diff --git a/spec/System/TestAttacks_spec.lua b/spec/System/TestAttacks_spec.lua index 2b02031668..c79e00738e 100644 --- a/spec/System/TestAttacks_spec.lua +++ b/spec/System/TestAttacks_spec.lua @@ -74,7 +74,7 @@ describe("TestAttacks", function() -- Test against Quarterstaff Strike (skill slot 1) build.skillsTab:PasteSocketGroup("Quarterstaff Strike 1/0 1\nArmour Break I 1/0 1\nShock 1/0 1\nBiting Frost I 1/0 1") runCallback("OnFrame") - build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnite I 1/0 1\nDaze 1/0 1\nShock Conduction I 1/0 1") + build.skillsTab:PasteSocketGroup("Falling Thunder 1/0 1\nIgnite I 1/0 1\nDaze 1/0 1\nShock Conduction 1/0 1") runCallback("OnFrame") build.configTab:BuildModList() diff --git a/spec/System/TestItemMods_spec.lua b/spec/System/TestItemMods_spec.lua index bb2029102d..e29122b662 100644 --- a/spec/System/TestItemMods_spec.lua +++ b/spec/System/TestItemMods_spec.lua @@ -493,8 +493,8 @@ describe("TetsItemMods", function() build.itemsTab:CreateDisplayItemFromRaw([[ Rarity: RARE Armour Chest - Glorious Plate - Armour: 534 + Champion Cuirass + Armour: 526 Crafted: true Prefix: None Prefix: None @@ -502,7 +502,7 @@ describe("TetsItemMods", function() Suffix: None Suffix: None Suffix: None - Quality: 0 + Quality: 18 LevelReq: 65 Implicits: 0 ]]) diff --git a/spec/System/TestItemParse_spec.lua b/spec/System/TestItemParse_spec.lua index 2de3505d6e..40bd27167f 100644 --- a/spec/System/TestItemParse_spec.lua +++ b/spec/System/TestItemParse_spec.lua @@ -42,6 +42,25 @@ describe("TestItemParse", function() assert.are.equals("40f9711d5bd7ad2bcbddaf71c705607aef0eecd3dcadaafec6c0192f79b82863", item.uniqueID) end) + it("Unique ID line is not parsed as a modifier", function() + local item = new("Item", [[ + Rarity: Unique + Evergrasping Ring + Pearl Ring + Unique ID: 5d96bc922c2ae073676c4149a2ecf0ebd0951f213ef894895bd2afe206845539 + Item Level: 66 + LevelReq: 32 + Implicits: 1 + 7% increased Cast Speed + +91 to maximum Mana + Allies in your Presence Gain 22% of Damage as Extra Chaos Damage + Enemies in your Presence Gain 8% of Damage as Extra Chaos Damage + ]]) + + assert.are.equals("5d96bc922c2ae073676c4149a2ecf0ebd0951f213ef894895bd2afe206845539", item.uniqueID) + assert.are.equals(3, #item.explicitModLines) + end) + it("Item Level", function() local item = new("Item", raw("Item Level: 10")) assert.are.equals(10, item.itemLevel) diff --git a/spec/System/TestSkills_spec.lua b/spec/System/TestSkills_spec.lua index 5d1cab3827..6b9d590ec9 100644 --- a/spec/System/TestSkills_spec.lua +++ b/spec/System/TestSkills_spec.lua @@ -7,6 +7,27 @@ describe("TestSkills", function() -- newBuild() takes care of resetting everything in setup() end) + local function selectActiveSkillById(socketGroup, skillId) + local socketGroupIndex + for index, group in ipairs(build.skillsTab.socketGroupList) do + if group == socketGroup then + socketGroupIndex = index + break + end + end + for index, activeSkill in ipairs(socketGroup.displaySkillList) do + if activeSkill.activeEffect.grantedEffect.id == skillId then + build.mainSocketGroup = socketGroupIndex + build.calcsTab.input.skill_number = socketGroupIndex + socketGroup.mainActiveSkill = index + socketGroup.mainActiveSkillCalcs = index + build.buildFlag = true + runCallback("OnFrame") + return activeSkill + end + end + end + it("uses granted effect minion list when active skill minion list is missing", function() local srcInstance = { statSet = { }, skillPart = { }, nameSpec = "Spectre: Test" } @@ -343,6 +364,7 @@ describe("TestSkills", function() it("Test corrupted blood config", function() build.skillsTab:PasteSocketGroup("Seismic Cry 20/0 1\nCorrupting Cry I 1/0 1") runCallback("OnFrame") + selectActiveSkillById(build.skillsTab.socketGroupList[#build.skillsTab.socketGroupList], "TriggeredCorruptingCryPlayer") local baseCorruptingCryDps = build.calcsTab.mainOutput.CorruptingBloodDPS -- placeholder/input is 10 @@ -357,6 +379,26 @@ describe("TestSkills", function() assert.True(baseCorruptingCryDps == build.calcsTab.mainOutput.CorruptingBloodDPS) end) + it("support-granted active skills inherit the linked active skill level", function() + local function getCorruptingCryDps(socketGroupText) + newBuild() + build.skillsTab:PasteSocketGroup(socketGroupText) + runCallback("OnFrame") + + local activeSkill = selectActiveSkillById(build.skillsTab.socketGroupList[#build.skillsTab.socketGroupList], "TriggeredCorruptingCryPlayer") + assert.is_not_nil(activeSkill) + assert.are.equals(20, activeSkill.activeEffect.level) + assert.are.equals("TriggeredCorruptingCryPlayer", build.calcsTab.mainEnv.player.mainSkill.activeEffect.grantedEffect.id) + return build.calcsTab.mainOutput.CorruptingBloodDPS + end + + local warcryFirstDps = getCorruptingCryDps("Seismic Cry 20/0 1\nCorrupting Cry I 1/0 1") + local supportFirstDps = getCorruptingCryDps("Corrupting Cry I 1/0 1\nSeismic Cry 20/0 1") + + assert.is_not_nil(warcryFirstDps) + assert.are.equals(warcryFirstDps, supportFirstDps) + end) + it("Flame Breath attack speed scales DPS and is not capped by its channel cooldown", function() build.itemsTab:CreateDisplayItemFromRaw([[ New Item @@ -442,7 +484,7 @@ describe("TestSkills", function() assert.is_not_nil(arcSkill) assert.are.equals(2, arcSkill.skillModList:GetMultiplier("SupportCount", arcSkill.skillCfg)) - assert.are.equals(3, arcSkill.skillModList:Sum("BASE", arcSkill.skillCfg, "GemSupportLevel")) + assert.are.equals(2, arcSkill.skillModList:Sum("BASE", arcSkill.skillCfg, "GemSupportLevel")) end) it("Test Elemental Conflux element selection", function() diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index c4c404f68a..8806bcc92c 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -1004,7 +1004,7 @@ function ImportTabClass:ImportItemsAndSkills(charData) return charData -- For the wrapper end -local rarityMap = { [0] = "NORMAL", "MAGIC", "RARE", "UNIQUE", [9] = "RELIC", [10] = "RELIC" } +local rarityMap = { [0] = "NORMAL", "MAGIC", "RARE", "UNIQUE", [9] = "RELIC", [10] = "RELIC", [13] = "RARE" } local slotMap = { ["Weapon"] = "Weapon 1", ["Offhand"] = "Weapon 2", ["Weapon2"] = "Weapon 1 Swap", ["Offhand2"] = "Weapon 2 Swap", ["Helm"] = "Helmet", ["BodyArmour"] = "Body Armour", ["Gloves"] = "Gloves", ["Boots"] = "Boots", ["Amulet"] = "Amulet", ["Ring"] = "Ring 1", ["Ring2"] = "Ring 2", ["Ring3"] = "Ring 3", ["Belt"] = "Belt", ["IncursionArmLeft"] = "Arm 2", ["IncursionArmRight"] = "Arm 1", ["IncursionLegLeft"] = "Leg 2", ["IncursionLegRight"] = "Leg 1" } function ImportTabClass:ImportItem(itemData, slotName) diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index 846c19ceb7..6a4da19a2e 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -511,6 +511,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) if specName then if specName == "Unique ID" then self.uniqueID = specVal + goto continue elseif specName == "Item Level" then self.itemLevel = specToNumber(specVal) elseif specName == "Requires Class" then diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index f490b94b80..6ae291da39 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -2337,6 +2337,11 @@ function ItemsTabClass:CraftItem() implicitIndex = implicitIndex + 1 end end + if base.base.variantList then + item.variantList = copyTable(base.base.variantList, true) + item.variant = 1 + item.baseLines = { } + end if base.base.type == "Jewel" and base.base.subType == "Radius" then item.jewelRadiusLabel = "Small" end diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index dd4e81518c..4f742f7496 100644 --- a/src/Data/Bases/amulet.lua +++ b/src/Data/Bases/amulet.lua @@ -41,7 +41,7 @@ itemBases["Lunar Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, implicit = "+(20-30) to maximum Energy Shield", - implicitModTypes = { { "energy_shield", "defences" }, }, + implicitModTypes = { { "defences", "energy_shield" }, }, req = { level = 14, }, } itemBases["Bloodstone Amulet"] = { @@ -76,9 +76,68 @@ itemBases["Pearlescent Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, implicit = "+(7-10)% to all Elemental Resistances", - implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, req = { level = 30, }, } +itemBases["Veridical Chain"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + implicit = "+(30-40) to maximum Runic Ward", + implicitModTypes = { { "runic_ward" }, }, + req = { level = 18, }, +} +itemBases["Runemastered Veridical Chain"] = { + type = "Amulet", + tags = { amulet = true, default = true, runeforged = true, }, + implicit = "+(30-40) to maximum Runic Ward\n+(2-3)% to Maximum Cold Resistance", + implicitModTypes = { { "runic_ward" }, { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, + req = { level = 18, }, +} +itemBases["Runemastered Veridical Chain"] = { + type = "Amulet", + tags = { amulet = true, default = true, runeforged = true, }, + implicit = "+(30-40) to maximum Runic Ward\n+(1-2) to Level of all Cold Skills", + implicitModTypes = { { "runic_ward" }, { "elemental", "cold", "gem" }, }, + req = { level = 18, }, +} +itemBases["Runemastered Veridical Chain"] = { + type = "Amulet", + tags = { amulet = true, default = true, runeforged = true, }, + implicit = "(15-20)% increased maximum Runic Ward", + implicitModTypes = { { "runic_ward" }, }, + req = { }, +} +itemBases["Lament Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + variantList = { "Arctic Armour", "Herald of Ash", "Herald of Ice", "Herald of Thunder", "Plague Bearer", "Barrier Invocation", "Lingering Illusion", "Ghost Dance", "Mana Remnants", "Magma Barrier", "Raging Spirits", "Wind Dancer", "Cast on Minion Death", "Scavenged Plating", "War Banner", "Defiance Banner", "Dread Banner", "Time of Need", "Attrition", "Charge Regulation", "Shard Scavenger", "Overwhelming Presence", "Alchemist's Boon", "Reaper's Invocation", "Berserk", "Herald of Plague", "Herald of Blood", "Withering Presence", "Ravenous Swarm", "Combat Frenzy", "Trail of Caltrops", "Convalescence", "Iron Ward", "Siphon Elements", "Briarpatch", "Savage Fury", "Barkskin", }, + implicit = "-1 Prefix Modifier allowed\n{variant:1}Grants Skill: Level (1-20) Arctic Armour\n{variant:2}Grants Skill: Level (1-20) Herald of Ash\n{variant:3}Grants Skill: Level (1-20) Herald of Ice\n{variant:4}Grants Skill: Level (1-20) Herald of Thunder\n{variant:5}Grants Skill: Level (1-20) Plague Bearer\n{variant:6}Grants Skill: Level (1-20) Barrier Invocation\n{variant:7}Grants Skill: Level (1-20) Lingering Illusion\n{variant:8}Grants Skill: Level (1-20) Ghost Dance\n{variant:9}Grants Skill: Level (1-20) Mana Remnants\n{variant:10}Grants Skill: Level (1-20) Magma Barrier\n{variant:11}Grants Skill: Level (1-20) Raging Spirits\n{variant:12}Grants Skill: Level (1-20) Wind Dancer\n{variant:13}Grants Skill: Level (1-20) Cast on Minion Death\n{variant:14}Grants Skill: Level (1-20) Scavenged Plating\n{variant:15}Grants Skill: Level (1-20) War Banner\n{variant:16}Grants Skill: Level (1-20) Defiance Banner\n{variant:17}Grants Skill: Level (1-20) Dread Banner\n{variant:18}Grants Skill: Level (1-20) Time of Need\n{variant:19}Grants Skill: Level (1-20) Attrition\n{variant:20}Grants Skill: Level (1-20) Charge Regulation\n{variant:21}Grants Skill: Level (1-20) Shard Scavenger\n{variant:22}Grants Skill: Level (1-20) Overwhelming Presence\n{variant:23}Grants Skill: Level (1-20) Alchemist's Boon\n{variant:24}Grants Skill: Level (1-20) Reaper's Invocation\n{variant:25}Grants Skill: Level (1-20) Berserk\n{variant:26}Grants Skill: Level (1-20) Herald of Plague\n{variant:27}Grants Skill: Level (1-20) Herald of Blood\n{variant:28}Grants Skill: Level (1-20) Withering Presence\n{variant:29}Grants Skill: Level (1-20) Ravenous Swarm\n{variant:30}Grants Skill: Level (1-20) Combat Frenzy\n{variant:31}Grants Skill: Level (1-20) Trail of Caltrops\n{variant:32}Grants Skill: Level (1-20) Convalescence\n{variant:33}Grants Skill: Level (1-20) Iron Ward\n{variant:34}Grants Skill: Level (1-20) Siphon Elements\n{variant:35}Grants Skill: Level (1-20) Briarpatch\n{variant:36}Grants Skill: Level (1-20) Savage Fury\n{variant:37}Grants Skill: Level (1-20) Barkskin", + implicitModTypes = { { }, }, + req = { level = 42, }, +} +itemBases["Portent Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + variantList = { "Wolf Pack", "Blink", "Elemental Invocation", "Elemental Conflux", "Sacrifice", "Mirage Archer", "Feral Invocation", }, + implicit = "-1 Suffix Modifier allowed\n{variant:1}Grants Skill: Level (1-20) Wolf Pack\n{variant:2}Grants Skill: Level (1-20) Blink\n{variant:3}Grants Skill: Level (1-20) Elemental Invocation\n{variant:4}Grants Skill: Level (1-20) Elemental Conflux\n{variant:5}Grants Skill: Level (1-20) Sacrifice\n{variant:6}Grants Skill: Level (1-20) Mirage Archer\n{variant:7}Grants Skill: Level (1-20) Feral Invocation", + implicitModTypes = { { }, }, + req = { level = 42, }, +} +itemBases["Absent Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + variantList = { "Cast on Elemental Ailment", "Cast on Critical", "Cast on Dodge", "Rhoa Mount", "Archmage", "Trinity", "Eternal Rage", }, + implicit = "-1 Prefix Modifier allowed\n-1 Suffix Modifier allowed\n{variant:1}Grants Skill: Level (1-20) Cast on Elemental Ailment\n{variant:2}Grants Skill: Level (1-20) Cast on Critical\n{variant:3}Grants Skill: Level (1-20) Cast on Dodge\n{variant:4}Grants Skill: Level (1-20) Rhoa Mount\n{variant:5}Grants Skill: Level (1-20) Archmage\n{variant:6}Grants Skill: Level (1-20) Trinity\n{variant:7}Grants Skill: Level (1-20) Eternal Rage", + implicitModTypes = { { }, { }, }, + req = { level = 49, }, +} +itemBases["Corona Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + implicit = "This item gains bonuses from Socketed Items as though it was a Helmet", + implicitModTypes = { { }, }, + req = { level = 40, }, +} itemBases["Dusk Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, @@ -107,10 +166,17 @@ itemBases["Tenebrous Amulet"] = { implicitModTypes = { { }, { }, }, req = { }, } +itemBases["Twisted Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, }, + implicit = "-1 Prefix Modifier allowed", + implicitModTypes = { { }, }, + req = { }, +} itemBases["Distorted Amulet"] = { type = "Amulet", tags = { amulet = true, default = true, }, - implicit = "-1 Prefix Modifier allowed\n-1 Suffix Modifier allowed", - implicitModTypes = { { }, { }, }, + implicit = "-1 Suffix Modifier allowed", + implicitModTypes = { { }, }, req = { }, } diff --git a/src/Data/Bases/axe.lua b/src/Data/Bases/axe.lua index df2545ff16..d83e4746f6 100644 --- a/src/Data/Bases/axe.lua +++ b/src/Data/Bases/axe.lua @@ -8,7 +8,7 @@ itemBases["Dull Hatchet"] = { socketLimit = 3, tags = { axe = true, default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 4, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 4, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { }, } itemBases["Hook Axe"] = { @@ -18,7 +18,7 @@ itemBases["Hook Axe"] = { tags = { axe = true, default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Grants 1 Rage on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 5, PhysicalMax = 14, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 5, PhysicalMax = 14, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { str = 9, }, } itemBases["Bearded Axe"] = { @@ -27,7 +27,7 @@ itemBases["Bearded Axe"] = { socketLimit = 3, tags = { axe = true, default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 8, PhysicalMax = 21, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 8, PhysicalMax = 21, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 10, str = 17, dex = 9, }, } itemBases["Extended Cleaver"] = { @@ -37,7 +37,7 @@ itemBases["Extended Cleaver"] = { tags = { axe = true, default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Has no Accuracy Penalty from Range", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 8, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 8, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 16, str = 25, dex = 12, }, } itemBases["Bandit Hatchet"] = { @@ -46,7 +46,7 @@ itemBases["Bandit Hatchet"] = { socketLimit = 3, tags = { axe = true, default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 13, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 13, PhysicalMax = 31, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 20, str = 30, dex = 14, }, } itemBases["Crescent Axe"] = { @@ -55,7 +55,7 @@ itemBases["Crescent Axe"] = { socketLimit = 3, tags = { axe = true, default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 18, PhysicalMax = 37, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 18, PhysicalMax = 37, CritChanceBase = 6.5, AttackRateBase = 1.4, Range = 13, }, req = { level = 26, str = 38, dex = 17, }, } itemBases["Carving Hatchet"] = { @@ -64,7 +64,7 @@ itemBases["Carving Hatchet"] = { socketLimit = 3, tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 44, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 19, PhysicalMax = 44, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 33, str = 47, dex = 20, }, } itemBases["Sacrificial Axe"] = { @@ -74,7 +74,7 @@ itemBases["Sacrificial Axe"] = { tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicit = "Gain (28-35) Mana per enemy killed", implicitModTypes = { { "resource", "mana" }, }, - weapon = { PhysicalMin = 20, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 20, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 37, str = 52, dex = 22, }, } itemBases["Boarding Hatchet"] = { @@ -83,7 +83,7 @@ itemBases["Boarding Hatchet"] = { socketLimit = 3, tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 24, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 24, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 45, str = 63, dex = 26, }, } itemBases["Fury Cleaver"] = { @@ -93,7 +93,7 @@ itemBases["Fury Cleaver"] = { tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "10% increased Damage taken", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 30, PhysicalMax = 62, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 30, PhysicalMax = 62, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 48, str = 67, dex = 27, }, } itemBases["Battle Axe"] = { @@ -102,7 +102,7 @@ itemBases["Battle Axe"] = { socketLimit = 3, tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 28, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 28, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 52, str = 72, dex = 29, }, } itemBases["Profane Cleaver"] = { @@ -111,7 +111,7 @@ itemBases["Profane Cleaver"] = { socketLimit = 3, tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 26, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 26, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 54, str = 75, dex = 30, }, } itemBases["Dread Hatchet"] = { @@ -120,7 +120,7 @@ itemBases["Dread Hatchet"] = { socketLimit = 3, tags = { axe = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 34, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 34, PhysicalMax = 79, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 65, str = 89, dex = 36, }, } @@ -130,7 +130,7 @@ itemBases["Splitting Greataxe"] = { socketLimit = 4, tags = { axe = true, default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 8, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 8, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { }, } itemBases["Light Halberd"] = { @@ -139,7 +139,7 @@ itemBases["Light Halberd"] = { socketLimit = 4, tags = { axe = true, default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 10, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, + weapon = { PhysicalMin = 10, PhysicalMax = 25, CritChanceBase = 5, AttackRateBase = 1.25, Range = 15, }, req = { str = 9, }, } itemBases["Executioner Greataxe"] = { @@ -149,7 +149,7 @@ itemBases["Executioner Greataxe"] = { tags = { axe = true, default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Culling Strike", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 10, str = 17, dex = 9, }, } itemBases["Arched Greataxe"] = { @@ -158,7 +158,7 @@ itemBases["Arched Greataxe"] = { socketLimit = 4, tags = { axe = true, default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 17, PhysicalMax = 59, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, + weapon = { PhysicalMin = 17, PhysicalMax = 59, CritChanceBase = 5, AttackRateBase = 1.15, Range = 15, }, req = { level = 16, str = 25, dex = 12, }, } itemBases["Elegant Glaive"] = { @@ -167,7 +167,7 @@ itemBases["Elegant Glaive"] = { socketLimit = 4, tags = { axe = true, default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 64, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 19, PhysicalMax = 64, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 20, str = 30, dex = 14, }, } itemBases["Savage Greataxe"] = { @@ -177,7 +177,7 @@ itemBases["Savage Greataxe"] = { tags = { axe = true, default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Gain (34-43) Life per enemy killed", implicitModTypes = { { "resource", "life" }, }, - weapon = { PhysicalMin = 23, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 23, PhysicalMax = 70, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 27, str = 39, dex = 17, }, } itemBases["Rending Halberd"] = { @@ -186,7 +186,7 @@ itemBases["Rending Halberd"] = { socketLimit = 4, tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 27, PhysicalMax = 91, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 27, PhysicalMax = 91, CritChanceBase = 6.5, AttackRateBase = 1.2, Range = 15, }, req = { level = 33, str = 47, dex = 20, }, } itemBases["Jagged Greataxe"] = { @@ -196,7 +196,7 @@ itemBases["Jagged Greataxe"] = { tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicit = "(15-25)% chance to cause Bleeding on Hit", implicitModTypes = { { "bleed", "physical", "attack", "ailment" }, }, - weapon = { PhysicalMin = 43, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, }, + weapon = { PhysicalMin = 43, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.15, Range = 15, }, req = { level = 40, str = 56, dex = 23, }, } itemBases["Reaver Glaive"] = { @@ -205,7 +205,7 @@ itemBases["Reaver Glaive"] = { socketLimit = 4, tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 43, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 43, PhysicalMax = 113, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 45, str = 63, dex = 26, }, } itemBases["Ember Greataxe"] = { @@ -214,7 +214,7 @@ itemBases["Ember Greataxe"] = { socketLimit = 4, tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { FireMin = 58, FireMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { FireMin = 58, FireMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 50, str = 70, dex = 28, }, } itemBases["Ceremonial Halberd"] = { @@ -224,7 +224,7 @@ itemBases["Ceremonial Halberd"] = { tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Cannot use Projectile Attacks", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 53, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 53, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 52, str = 72, dex = 29, }, } itemBases["Monument Greataxe"] = { @@ -233,7 +233,7 @@ itemBases["Monument Greataxe"] = { socketLimit = 4, tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 48, PhysicalMax = 143, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 48, PhysicalMax = 143, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 57, str = 79, dex = 32, }, } itemBases["Vile Greataxe"] = { @@ -242,6 +242,6 @@ itemBases["Vile Greataxe"] = { socketLimit = 4, tags = { axe = true, default = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 59, PhysicalMax = 155, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 59, PhysicalMax = 155, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 65, str = 89, dex = 36, }, } diff --git a/src/Data/Bases/belt.lua b/src/Data/Bases/belt.lua index 69e07a4f8e..f88d45a8c1 100644 --- a/src/Data/Bases/belt.lua +++ b/src/Data/Bases/belt.lua @@ -39,15 +39,15 @@ itemBases["Long Belt"] = { charmLimit = 0, tags = { belt = true, default = true, }, implicit = "(15-20)% increased Charm Effect Duration\nHas (1-3) Charm Slots", - implicitModTypes = { { }, }, + implicitModTypes = { { "charm" }, }, req = { level = 20, }, } itemBases["Plate Belt"] = { type = "Belt", charmLimit = 0, tags = { belt = true, default = true, }, - implicit = "+(100-140) to Armour\nHas (1-3) Charm Slots", - implicitModTypes = { { "armour", "defences" }, }, + implicit = "+(140-180) to Armour\nHas (1-3) Charm Slots", + implicitModTypes = { { "defences", "armour" }, }, req = { level = 24, }, } itemBases["Ornate Belt"] = { @@ -55,7 +55,7 @@ itemBases["Ornate Belt"] = { charmLimit = 0, tags = { belt = true, default = true, }, implicit = "(10-15)% reduced Charm Charges used\nHas (1-3) Charm Slots", - implicitModTypes = { { }, }, + implicitModTypes = { { "charm" }, }, req = { level = 31, }, } itemBases["Mail Belt"] = { @@ -71,7 +71,7 @@ itemBases["Double Belt"] = { charmLimit = 0, tags = { belt = true, default = true, }, implicit = "(20-30)% increased Charm Charges gained\nHas (1-3) Charm Slots", - implicitModTypes = { { }, }, + implicitModTypes = { { "charm" }, }, req = { level = 44, }, } itemBases["Heavy Belt"] = { @@ -82,6 +82,38 @@ itemBases["Heavy Belt"] = { implicitModTypes = { { }, }, req = { level = 50, }, } +itemBases["Runemastered Heavy Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, runeforged = true, }, + implicit = "(20-30)% increased Stun Threshold\n(15-25)% Life Recovery from Flasks also applies to Runic Ward\nHas (1-3) Charm Slots", + implicitModTypes = { { }, { }, }, + req = { level = 50, }, +} +itemBases["Runemastered Heavy Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, runeforged = true, }, + implicit = "(20-30)% increased Stun Threshold\n(20-40)% increased Runic Ward Regeneration Rate\nHas (1-3) Charm Slots", + implicitModTypes = { { }, { "runic_ward" }, }, + req = { level = 50, }, +} +itemBases["Runemastered Heavy Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, runeforged = true, }, + implicit = "(20-30)% increased Stun Threshold\nRunic Ward recovery can can Overflow maximum Runic Ward\nHas (1-3) Charm Slots", + implicitModTypes = { { }, { }, }, + req = { level = 50, }, +} +itemBases["Runemastered Heavy Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, runeforged = true, }, + implicit = "(20-30)% increased Stun Threshold\nFlasks gain (0.5-1) charges per Second\nHas (1-3) Charm Slots", + implicitModTypes = { { }, { }, }, + req = { level = 50, }, +} itemBases["Utility Belt"] = { type = "Belt", charmLimit = 0, @@ -98,3 +130,35 @@ itemBases["Fine Belt"] = { implicitModTypes = { { }, }, req = { level = 62, }, } +itemBases["Stalking Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, }, + implicit = "Has 1 Charm Slot\nThis item gains bonuses from Socketed Items as though it was Boots\nHas (1-3) Charm Slots", + implicitModTypes = { { "charm" }, { }, }, + req = { level = 40, }, +} +itemBases["Invoking Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, }, + implicit = "Has 1 Charm Slot\n(8-12)% increased Cast Speed\nHas (1-3) Charm Slots", + implicitModTypes = { { "charm" }, { "caster_speed", "caster", "speed" }, }, + req = { level = 32, }, +} +itemBases["Sinew Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, }, + implicit = "Has 1 Charm Slot\n+(15-20) to Strength\nHas (1-3) Charm Slots", + implicitModTypes = { { "charm" }, { "attribute" }, }, + req = { level = 32, }, +} +itemBases["Forking Belt"] = { + type = "Belt", + charmLimit = 0, + tags = { belt = true, default = true, }, + implicit = "Has 1 Charm Slot\nAdds 1 to (20-30) Lightning damage to Attacks\nHas (1-3) Charm Slots", + implicitModTypes = { { "charm" }, { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + req = { level = 32, }, +} diff --git a/src/Data/Bases/body.lua b/src/Data/Bases/body.lua index b02bdfdb49..79f1768669 100644 --- a/src/Data/Bases/body.lua +++ b/src/Data/Bases/body.lua @@ -20,7 +20,7 @@ itemBases["Fur Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 60, MovementPenalty = 0.05, }, + armour = { Armour = 66, MovementPenalty = 0.05, }, req = { str = 10, }, } itemBases["Iron Cuirass"] = { @@ -30,7 +30,7 @@ itemBases["Iron Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 96, MovementPenalty = 0.05, }, + armour = { Armour = 115, MovementPenalty = 0.05, }, req = { level = 11, str = 21, }, } itemBases["Raider Plate"] = { @@ -40,7 +40,7 @@ itemBases["Raider Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 121, MovementPenalty = 0.05, }, + armour = { Armour = 150, MovementPenalty = 0.05, }, req = { level = 16, str = 28, }, } itemBases["Maraketh Cuirass"] = { @@ -50,7 +50,7 @@ itemBases["Maraketh Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 141, MovementPenalty = 0.05, }, + armour = { Armour = 178, MovementPenalty = 0.05, }, req = { level = 20, str = 34, }, } itemBases["Steel Plate"] = { @@ -60,7 +60,7 @@ itemBases["Steel Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 177, MovementPenalty = 0.05, }, + armour = { Armour = 228, MovementPenalty = 0.05, }, req = { level = 27, str = 45, }, } itemBases["Full Plate"] = { @@ -70,7 +70,7 @@ itemBases["Full Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 208, MovementPenalty = 0.05, }, + armour = { Armour = 270, MovementPenalty = 0.05, }, req = { level = 33, str = 54, }, } itemBases["Vaal Cuirass"] = { @@ -80,7 +80,7 @@ itemBases["Vaal Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 228, MovementPenalty = 0.05, }, + armour = { Armour = 298, MovementPenalty = 0.05, }, req = { level = 37, str = 60, }, } itemBases["Juggernaut Plate"] = { @@ -90,7 +90,7 @@ itemBases["Juggernaut Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 269, MovementPenalty = 0.05, }, + armour = { Armour = 355, MovementPenalty = 0.05, }, req = { level = 45, str = 72, }, } itemBases["Chieftain Cuirass"] = { @@ -100,7 +100,7 @@ itemBases["Chieftain Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 294, MovementPenalty = 0.05, }, + armour = { Armour = 390, MovementPenalty = 0.05, }, req = { level = 50, str = 80, }, } itemBases["Colosseum Plate"] = { @@ -110,7 +110,7 @@ itemBases["Colosseum Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 304, MovementPenalty = 0.05, }, + armour = { Armour = 404, MovementPenalty = 0.05, }, req = { level = 52, str = 83, }, } itemBases["Champion Cuirass"] = { @@ -120,7 +120,7 @@ itemBases["Champion Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 335, MovementPenalty = 0.05, }, + armour = { Armour = 446, MovementPenalty = 0.05, }, req = { level = 58, str = 92, }, } itemBases["Glorious Plate"] = { @@ -130,7 +130,7 @@ itemBases["Glorious Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 534, MovementPenalty = 0.05, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, req = { level = 65, str = 121, }, } itemBases["Conqueror Plate"] = { @@ -141,7 +141,7 @@ itemBases["Conqueror Plate"] = { tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicit = "(30-40)% increased Stun Threshold", implicitModTypes = { { }, }, - armour = { Armour = 445, MovementPenalty = 0.05, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, req = { level = 68, str = 121, }, } itemBases["Abyssal Cuirass"] = { @@ -152,7 +152,7 @@ itemBases["Abyssal Cuirass"] = { tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicit = "Regenerate (1.5-2.5)% of maximum Life per second", implicitModTypes = { { "resource", "life" }, }, - armour = { Armour = 445, MovementPenalty = 0.05, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, req = { level = 73, str = 121, }, } itemBases["Barbarian Plate"] = { @@ -162,7 +162,7 @@ itemBases["Barbarian Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 269, MovementPenalty = 0.05, }, + armour = { Armour = 355, MovementPenalty = 0.05, }, req = { level = 45, str = 72, }, } itemBases["Rugged Cuirass"] = { @@ -172,7 +172,7 @@ itemBases["Rugged Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 284, MovementPenalty = 0.05, }, + armour = { Armour = 376, MovementPenalty = 0.05, }, req = { level = 48, str = 77, }, } itemBases["Sandsworn Cuirass"] = { @@ -182,7 +182,7 @@ itemBases["Sandsworn Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 299, MovementPenalty = 0.05, }, + armour = { Armour = 397, MovementPenalty = 0.05, }, req = { level = 51, str = 82, }, } itemBases["Elegant Plate"] = { @@ -192,7 +192,7 @@ itemBases["Elegant Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 315, MovementPenalty = 0.05, }, + armour = { Armour = 418, MovementPenalty = 0.05, }, req = { level = 54, str = 86, }, } itemBases["Heavy Plate"] = { @@ -202,7 +202,7 @@ itemBases["Heavy Plate"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 340, MovementPenalty = 0.05, }, + armour = { Armour = 453, MovementPenalty = 0.05, }, req = { level = 59, str = 94, }, } itemBases["Stone Cuirass"] = { @@ -212,7 +212,7 @@ itemBases["Stone Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 355, MovementPenalty = 0.05, }, + armour = { Armour = 474, MovementPenalty = 0.05, }, req = { level = 62, str = 98, }, } itemBases["Soldier Cuirass"] = { @@ -222,7 +222,7 @@ itemBases["Soldier Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 534, MovementPenalty = 0.05, }, + armour = { Armour = 570, MovementPenalty = 0.05, }, req = { level = 65, str = 121, }, } itemBases["Ornate Plate"] = { @@ -233,7 +233,7 @@ itemBases["Ornate Plate"] = { tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicit = "Regenerate (1.5-2.5)% of maximum Life per second", implicitModTypes = { { "resource", "life" }, }, - armour = { Armour = 445, MovementPenalty = 0.05, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, req = { level = 70, str = 121, }, } itemBases["Utzaal Cuirass"] = { @@ -244,7 +244,7 @@ itemBases["Utzaal Cuirass"] = { tags = { armour = true, body_armour = true, default = true, str_armour = true, }, implicit = "(30-40)% increased Stun Threshold", implicitModTypes = { { }, }, - armour = { Armour = 445, MovementPenalty = 0.05, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, req = { level = 75, str = 121, }, } itemBases["Warlord Cuirass"] = { @@ -254,10 +254,316 @@ itemBases["Warlord Cuirass"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_armour = true, }, implicit = "+(15-25)% of Armour also applies to Elemental Damage", - implicitModTypes = { { "armour", "defences", "elemental" }, }, - armour = { Armour = 445, MovementPenalty = 0.05, }, + implicitModTypes = { { "defences", "armour", "elemental" }, }, + armour = { Armour = 496, MovementPenalty = 0.05, }, + req = { level = 80, str = 121, }, +} +itemBases["Runeforged Rusted Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 45, Ward = 29, MovementPenalty = 0.05, }, + req = { }, +} +itemBases["Runeforged Fur Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 66, Ward = 33, MovementPenalty = 0.05, }, + req = { str = 10, }, +} +itemBases["Runeforged Iron Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 115, Ward = 43, MovementPenalty = 0.05, }, + req = { level = 11, str = 21, }, +} +itemBases["Runeforged Raider Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 150, Ward = 53, MovementPenalty = 0.05, }, + req = { level = 16, str = 28, }, +} +itemBases["Runeforged Maraketh Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 178, Ward = 61, MovementPenalty = 0.05, }, + req = { level = 20, str = 34, }, +} +itemBases["Runeforged Steel Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 228, Ward = 64, MovementPenalty = 0.05, }, + req = { level = 27, str = 45, }, +} +itemBases["Runeforged Full Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 270, Ward = 69, MovementPenalty = 0.05, }, + req = { level = 33, str = 54, }, +} +itemBases["Runeforged Vaal Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 298, Ward = 70, MovementPenalty = 0.05, }, + req = { level = 37, str = 60, }, +} +itemBases["Runeforged Juggernaut Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 355, Ward = 76, MovementPenalty = 0.05, }, + req = { level = 45, str = 72, }, +} +itemBases["Runeforged Chieftain Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 390, Ward = 69, MovementPenalty = 0.05, }, + req = { level = 50, str = 80, }, +} +itemBases["Runeforged Colosseum Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 356, MovementPenalty = 0.05, }, + req = { level = 52, str = 83, }, +} +itemBases["Runeforged Champion Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicit = "+(750-1000) to maximum Runic Ward", + implicitModTypes = { { "runic_ward" }, }, + armour = { MovementPenalty = 0.05, }, + req = { level = 58, str = 92, }, +} +itemBases["Runeforged Glorious Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 430, MovementPenalty = 0.05, }, + req = { level = 65, str = 121, }, +} +itemBases["Runeforged Conqueror Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicit = "(30-40)% increased Stun Threshold", + implicitModTypes = { { }, }, + armour = { Armour = 595, MovementPenalty = 0.05, }, + req = { level = 68, str = 121, }, +} +itemBases["Runeforged Abyssal Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicit = "Regenerate (1.5-2.5)% of maximum Life per second", + implicitModTypes = { { "resource", "life" }, }, + armour = { Ward = 430, MovementPenalty = 0.05, }, + req = { level = 73, str = 121, }, +} +itemBases["Runeforged Elegant Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 397, Ward = 73, MovementPenalty = 0.05, }, + req = { level = 54, str = 86, }, +} +itemBases["Runeforged Heavy Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 340, Ward = 158, MovementPenalty = 0.05, }, + req = { level = 59, str = 94, }, +} +itemBases["Runeforged Stone Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 403, Ward = 103, MovementPenalty = 0.05, }, + req = { level = 62, str = 98, }, +} +itemBases["Runeforged Soldier Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 173, Ward = 365, MovementPenalty = 0.05, }, + req = { level = 65, str = 121, }, +} +itemBases["Runeforged Ornate Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicit = "Regenerate (1.5-2.5)% of maximum Life per second", + implicitModTypes = { { "resource", "life" }, }, + armour = { Armour = 273, Ward = 236, MovementPenalty = 0.05, }, + req = { level = 70, str = 121, }, +} +itemBases["Runeforged Utzaal Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, }, + implicit = "(30-40)% increased Stun Threshold", + implicitModTypes = { { }, }, + armour = { Armour = 421, Ward = 107, MovementPenalty = 0.05, }, + req = { level = 75, str = 121, }, +} +itemBases["Runeforged Warlord Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicit = "+(15-25)% of Armour also applies to Elemental Damage", + implicitModTypes = { { "defences", "armour", "elemental" }, }, + armour = { Armour = 446, Ward = 86, MovementPenalty = 0.05, }, req = { level = 80, str = 121, }, } +itemBases["Runeforged Fur Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 275, Ward = 69, MovementPenalty = 0.05, }, + req = { level = 38, str = 61, }, +} +itemBases["Runemastered Rusted Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 244, Ward = 110, MovementPenalty = 0.05, }, + req = { level = 38, str = 61, }, +} +itemBases["Runemastered Iron Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 260, Ward = 55, MovementPenalty = 0.05, }, + req = { level = 38, str = 61, }, +} +itemBases["Runemastered Raider Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 61, Ward = 221, MovementPenalty = 0.05, }, + req = { level = 38, str = 61, }, +} +itemBases["Runemastered Maraketh Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 275, Ward = 28, MovementPenalty = 0.05, }, + req = { level = 38, str = 61, }, +} +itemBases["Runemastered Steel Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 271, Ward = 43, MovementPenalty = 0.05, }, + req = { level = 40, str = 65, }, +} +itemBases["Runemastered Full Plate"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 231, Ward = 126, MovementPenalty = 0.05, }, + req = { level = 45, str = 72, }, +} +itemBases["Runemastered Vaal Cuirass"] = { + type = "Body Armour", + subType = "Armour", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 340, Ward = 93, MovementPenalty = 0.05, }, + req = { level = 55, str = 87, }, +} itemBases["Leather Vest"] = { type = "Body Armour", @@ -276,7 +582,7 @@ itemBases["Quilted Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 44, MovementPenalty = 0.03, }, + armour = { Evasion = 49, MovementPenalty = 0.03, }, req = { dex = 10, }, } itemBases["Pathfinder Coat"] = { @@ -286,7 +592,7 @@ itemBases["Pathfinder Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 78, MovementPenalty = 0.03, }, + armour = { Evasion = 96, MovementPenalty = 0.03, }, req = { level = 11, dex = 21, }, } itemBases["Shrouded Vest"] = { @@ -296,7 +602,7 @@ itemBases["Shrouded Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 102, MovementPenalty = 0.03, }, + armour = { Evasion = 128, MovementPenalty = 0.03, }, req = { level = 16, dex = 28, }, } itemBases["Rhoahide Coat"] = { @@ -306,7 +612,7 @@ itemBases["Rhoahide Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 131, MovementPenalty = 0.03, }, + armour = { Evasion = 168, MovementPenalty = 0.03, }, req = { level = 22, dex = 37, }, } itemBases["Studded Vest"] = { @@ -316,7 +622,7 @@ itemBases["Studded Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 150, MovementPenalty = 0.03, }, + armour = { Evasion = 194, MovementPenalty = 0.03, }, req = { level = 26, dex = 43, }, } itemBases["Scout's Vest"] = { @@ -326,7 +632,7 @@ itemBases["Scout's Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 184, MovementPenalty = 0.03, }, + armour = { Evasion = 240, MovementPenalty = 0.03, }, req = { level = 33, dex = 54, }, } itemBases["Serpentscale Coat"] = { @@ -336,7 +642,7 @@ itemBases["Serpentscale Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 198, MovementPenalty = 0.03, }, + armour = { Evasion = 260, MovementPenalty = 0.03, }, req = { level = 36, dex = 59, }, } itemBases["Corsair Vest"] = { @@ -346,7 +652,7 @@ itemBases["Corsair Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 242, MovementPenalty = 0.03, }, + armour = { Evasion = 320, MovementPenalty = 0.03, }, req = { level = 45, dex = 72, }, } itemBases["Smuggler Coat"] = { @@ -356,7 +662,7 @@ itemBases["Smuggler Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 271, MovementPenalty = 0.03, }, + armour = { Evasion = 359, MovementPenalty = 0.03, }, req = { level = 51, dex = 82, }, } itemBases["Strider Vest"] = { @@ -366,7 +672,7 @@ itemBases["Strider Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 275, MovementPenalty = 0.03, }, + armour = { Evasion = 366, MovementPenalty = 0.03, }, req = { level = 52, dex = 83, }, } itemBases["Hardleather Coat"] = { @@ -376,7 +682,7 @@ itemBases["Hardleather Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 295, MovementPenalty = 0.03, }, + armour = { Evasion = 392, MovementPenalty = 0.03, }, req = { level = 56, dex = 89, }, } itemBases["Exquisite Vest"] = { @@ -386,7 +692,7 @@ itemBases["Exquisite Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 487, MovementPenalty = 0.03, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 65, dex = 121, }, } itemBases["Mail Coat"] = { @@ -397,7 +703,7 @@ itemBases["Mail Coat"] = { tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicit = "(20-30)% reduced Slowing Potency of Debuffs on You", implicitModTypes = { { }, }, - armour = { Evasion = 406, MovementPenalty = 0.03, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 68, dex = 121, }, } itemBases["Armoured Vest"] = { @@ -407,8 +713,8 @@ itemBases["Armoured Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicit = "(30-40)% increased Elemental Ailment Threshold", - implicitModTypes = { { }, }, - armour = { Evasion = 406, MovementPenalty = 0.03, }, + implicitModTypes = { { "ailment" }, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 73, dex = 121, }, } itemBases["Patchwork Vest"] = { @@ -418,7 +724,7 @@ itemBases["Patchwork Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 242, MovementPenalty = 0.03, }, + armour = { Evasion = 320, MovementPenalty = 0.03, }, req = { level = 45, dex = 72, }, } itemBases["Hunting Coat"] = { @@ -428,7 +734,7 @@ itemBases["Hunting Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 256, MovementPenalty = 0.03, }, + armour = { Evasion = 339, MovementPenalty = 0.03, }, req = { level = 48, dex = 77, }, } itemBases["Riding Coat"] = { @@ -438,7 +744,7 @@ itemBases["Riding Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 271, MovementPenalty = 0.03, }, + armour = { Evasion = 359, MovementPenalty = 0.03, }, req = { level = 51, dex = 82, }, } itemBases["Layered Vest"] = { @@ -448,7 +754,7 @@ itemBases["Layered Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 285, MovementPenalty = 0.03, }, + armour = { Evasion = 379, MovementPenalty = 0.03, }, req = { level = 54, dex = 86, }, } itemBases["Runner Vest"] = { @@ -458,7 +764,7 @@ itemBases["Runner Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 309, MovementPenalty = 0.03, }, + armour = { Evasion = 412, MovementPenalty = 0.03, }, req = { level = 59, dex = 94, }, } itemBases["Lizardscale Coat"] = { @@ -468,7 +774,7 @@ itemBases["Lizardscale Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 324, MovementPenalty = 0.03, }, + armour = { Evasion = 432, MovementPenalty = 0.03, }, req = { level = 62, dex = 98, }, } itemBases["Swiftstalker Coat"] = { @@ -479,7 +785,7 @@ itemBases["Swiftstalker Coat"] = { tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicit = "(20-30)% reduced Slowing Potency of Debuffs on You", implicitModTypes = { { }, }, - armour = { Evasion = 406, MovementPenalty = 0.03, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 65, dex = 121, }, } itemBases["Slipstrike Vest"] = { @@ -489,7 +795,7 @@ itemBases["Slipstrike Vest"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 487, MovementPenalty = 0.03, }, + armour = { Evasion = 519, MovementPenalty = 0.03, }, req = { level = 70, dex = 121, }, } itemBases["Wyrmscale Coat"] = { @@ -499,8 +805,8 @@ itemBases["Wyrmscale Coat"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, dex_armour = true, }, implicit = "(30-40)% increased Elemental Ailment Threshold", - implicitModTypes = { { }, }, - armour = { Evasion = 406, MovementPenalty = 0.03, }, + implicitModTypes = { { "ailment" }, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 75, dex = 121, }, } itemBases["Corsair Coat"] = { @@ -511,79 +817,425 @@ itemBases["Corsair Coat"] = { tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, }, implicit = "5% increased Movement Speed", implicitModTypes = { { "speed" }, }, - armour = { Evasion = 406, MovementPenalty = 0.03, }, + armour = { Evasion = 451, MovementPenalty = 0.03, }, req = { level = 80, dex = 121, }, } - -itemBases["Tattered Robe"] = { +itemBases["Runeforged Leather Vest"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 28, MovementPenalty = 0.03, }, + armour = { Evasion = 30, Ward = 29, MovementPenalty = 0.03, }, req = { }, } -itemBases["Feathered Robe"] = { +itemBases["Runeforged Quilted Vest"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 35, MovementPenalty = 0.03, }, - req = { level = 5, int = 11, }, + armour = { Evasion = 49, Ward = 33, MovementPenalty = 0.03, }, + req = { dex = 10, }, } -itemBases["Hexer's Robe"] = { +itemBases["Runeforged Pathfinder Coat"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 44, MovementPenalty = 0.03, }, - req = { level = 11, int = 21, }, + armour = { Evasion = 96, Ward = 43, MovementPenalty = 0.03, }, + req = { level = 11, dex = 21, }, } -itemBases["Bone Raiment"] = { +itemBases["Runeforged Shrouded Vest"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 52, MovementPenalty = 0.03, }, - req = { level = 16, int = 28, }, + armour = { Evasion = 128, Ward = 53, MovementPenalty = 0.03, }, + req = { level = 16, dex = 28, }, } -itemBases["Silk Robe"] = { +itemBases["Runeforged Rhoahide Coat"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 61, MovementPenalty = 0.03, }, - req = { level = 22, int = 37, }, + armour = { Evasion = 168, Ward = 65, MovementPenalty = 0.03, }, + req = { level = 22, dex = 37, }, } -itemBases["Keth Raiment"] = { +itemBases["Runeforged Studded Vest"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 70, MovementPenalty = 0.03, }, - req = { level = 28, int = 47, }, + armour = { Evasion = 194, Ward = 62, MovementPenalty = 0.03, }, + req = { level = 26, dex = 43, }, } -itemBases["Votive Raiment"] = { +itemBases["Runeforged Scout's Vest"] = { type = "Body Armour", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, int_armour = true, vaal_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 78, MovementPenalty = 0.03, }, - req = { level = 33, int = 54, }, + armour = { Evasion = 240, Ward = 69, MovementPenalty = 0.03, }, + req = { level = 33, dex = 54, }, +} +itemBases["Runeforged Serpentscale Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 260, Ward = 69, MovementPenalty = 0.03, }, + req = { level = 36, dex = 59, }, +} +itemBases["Runeforged Corsair Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 320, Ward = 76, MovementPenalty = 0.03, }, + req = { level = 45, dex = 72, }, +} +itemBases["Runeforged Smuggler Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 359, Ward = 70, MovementPenalty = 0.03, }, + req = { level = 51, dex = 82, }, +} +itemBases["Runeforged Strider Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 356, MovementPenalty = 0.03, }, + req = { level = 52, dex = 83, }, +} +itemBases["Runeforged Hardleather Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 378, MovementPenalty = 0.03, }, + req = { level = 56, dex = 89, }, +} +itemBases["Runeforged Exquisite Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 65, dex = 85, int = 85, }, +} +itemBases["Runeforged Mail Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicit = "(20-30)% reduced Slowing Potency of Debuffs on You", + implicitModTypes = { { }, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 68, dex = 121, }, +} +itemBases["Runeforged Armoured Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicit = "(30-40)% increased Elemental Ailment Threshold", + implicitModTypes = { { "ailment" }, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 73, dex = 121, }, +} +itemBases["Runeforged Layered Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 360, Ward = 73, MovementPenalty = 0.03, }, + req = { level = 54, dex = 86, }, +} +itemBases["Runeforged Runner Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 350, Ward = 119, MovementPenalty = 0.03, }, + req = { level = 59, dex = 94, }, +} +itemBases["Runeforged Lizardscale Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 324, Ward = 144, MovementPenalty = 0.03, }, + req = { level = 62, dex = 98, }, +} +itemBases["Runeforged Swiftstalker Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicit = "(20-30)% reduced Slowing Potency of Debuffs on You", + implicitModTypes = { { }, }, + armour = { Evasion = 429, Ward = 64, MovementPenalty = 0.03, }, + req = { level = 65, dex = 121, }, +} +itemBases["Runeforged Slipstrike Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 144, Ward = 378, MovementPenalty = 0.03, }, + req = { level = 70, dex = 121, }, +} +itemBases["Runeforged Wyrmscale Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicit = "(30-40)% increased Elemental Ailment Threshold", + implicitModTypes = { { "ailment" }, }, + armour = { Evasion = 248, Ward = 236, MovementPenalty = 0.03, }, + req = { level = 75, dex = 121, }, +} +itemBases["Runeforged Corsair Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 384, Ward = 107, MovementPenalty = 0.03, }, + req = { level = 80, dex = 121, }, +} +itemBases["Runemastered Leather Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 82, Ward = 165, MovementPenalty = 0.03, }, + req = { level = 38, dex = 61, }, +} +itemBases["Runemastered Quilted Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 178, Ward = 152, MovementPenalty = 0.03, }, + req = { level = 38, dex = 61, }, +} +itemBases["Runemastered Pathfinder Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 219, Ward = 55, MovementPenalty = 0.03, }, + req = { level = 38, dex = 61, }, +} +itemBases["Runemastered Shrouded Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 164, Ward = 138, MovementPenalty = 0.03, }, + req = { level = 38, dex = 61, }, +} +itemBases["Runemastered Rhoahide Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 219, Ward = 69, MovementPenalty = 0.03, }, + req = { level = 38, dex = 61, }, +} +itemBases["Runemastered Studded Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 301, Ward = 29, MovementPenalty = 0.03, }, + req = { level = 40, dex = 65, }, +} +itemBases["Runemastered Scout's Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 270, Ward = 130, MovementPenalty = 0.03, }, + req = { level = 55, dex = 87, }, +} +itemBases["Runemastered Serpentscale Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 385, Ward = 19, MovementPenalty = 0.03, }, + req = { level = 55, dex = 87, }, +} +itemBases["Runemastered Smuggler Coat"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 406, Ward = 86, MovementPenalty = 0.03, }, + req = { level = 65, dex = 103, }, +} +itemBases["Runemastered Strider Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 384, Ward = 107, MovementPenalty = 0.03, }, + req = { level = 70, dex = 103, }, +} +itemBases["Runemastered Exquisite Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 338, Ward = 86, MovementPenalty = 0.03, }, + req = { level = 70, dex = 121, }, +} +itemBases["Runemastered Armoured Vest"] = { + type = "Body Armour", + subType = "Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_armour = true, runeforged = true, }, + implicit = "(30-40)% increased Elemental Ailment Threshold", + implicitModTypes = { { "ailment" }, }, + armour = { Evasion = 361, Ward = 129, MovementPenalty = 0.03, }, + req = { level = 80, dex = 121, }, +} + +itemBases["Tattered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 28, MovementPenalty = 0.03, }, + req = { }, +} +itemBases["Feathered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 35, MovementPenalty = 0.03, }, + req = { level = 5, int = 11, }, +} +itemBases["Hexer's Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, MovementPenalty = 0.03, }, + req = { level = 11, int = 21, }, +} +itemBases["Bone Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 54, MovementPenalty = 0.03, }, + req = { level = 16, int = 28, }, +} +itemBases["Silk Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 64, MovementPenalty = 0.03, }, + req = { level = 22, int = 37, }, +} +itemBases["Keth Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 74, MovementPenalty = 0.03, }, + req = { level = 28, int = 47, }, +} +itemBases["Votive Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 83, MovementPenalty = 0.03, }, + req = { level = 33, int = 54, }, } itemBases["Altar Robe"] = { type = "Body Armour", @@ -592,7 +1244,7 @@ itemBases["Altar Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 89, MovementPenalty = 0.03, }, + armour = { EnergyShield = 95, MovementPenalty = 0.03, }, req = { level = 40, int = 65, }, } itemBases["Elementalist Robe"] = { @@ -602,7 +1254,7 @@ itemBases["Elementalist Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 97, MovementPenalty = 0.03, }, + armour = { EnergyShield = 103, MovementPenalty = 0.03, }, req = { level = 45, int = 72, }, } itemBases["Mystic Raiment"] = { @@ -612,7 +1264,7 @@ itemBases["Mystic Raiment"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 103, MovementPenalty = 0.03, }, + armour = { EnergyShield = 110, MovementPenalty = 0.03, }, req = { level = 49, int = 78, }, } itemBases["Imperial Robe"] = { @@ -622,7 +1274,7 @@ itemBases["Imperial Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 108, MovementPenalty = 0.03, }, + armour = { EnergyShield = 115, MovementPenalty = 0.03, }, req = { level = 52, int = 83, }, } itemBases["Plated Raiment"] = { @@ -632,7 +1284,7 @@ itemBases["Plated Raiment"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 117, MovementPenalty = 0.03, }, + armour = { EnergyShield = 126, MovementPenalty = 0.03, }, req = { level = 58, int = 92, }, } itemBases["Havoc Raiment"] = { @@ -642,7 +1294,7 @@ itemBases["Havoc Raiment"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 184, MovementPenalty = 0.03, }, + armour = { EnergyShield = 138, MovementPenalty = 0.03, }, req = { level = 65, int = 121, }, } itemBases["Enlightened Robe"] = { @@ -653,7 +1305,7 @@ itemBases["Enlightened Robe"] = { tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicit = "(40-50)% increased Mana Regeneration Rate", implicitModTypes = { { "resource", "mana" }, }, - armour = { EnergyShield = 153, MovementPenalty = 0.03, }, + armour = { EnergyShield = 138, MovementPenalty = 0.03, }, req = { level = 68, int = 121, }, } itemBases["Arcane Raiment"] = { @@ -662,9 +1314,9 @@ itemBases["Arcane Raiment"] = { quality = 20, socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, - implicit = "(40-50)% faster start of Energy Shield Recharge", - implicitModTypes = { { "energy_shield", "defences" }, }, - armour = { EnergyShield = 153, MovementPenalty = 0.03, }, + implicit = "(20-25)% increased Energy Shield Recharge Rate", + implicitModTypes = { { "defences", "energy_shield" }, }, + armour = { EnergyShield = 138, MovementPenalty = 0.03, }, req = { level = 73, int = 121, }, } itemBases["Avian Robe"] = { @@ -674,7 +1326,7 @@ itemBases["Avian Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 97, MovementPenalty = 0.03, }, + armour = { EnergyShield = 103, MovementPenalty = 0.03, }, req = { level = 45, int = 72, }, } itemBases["Cursespeaker's Robe"] = { @@ -684,7 +1336,7 @@ itemBases["Cursespeaker's Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 101, MovementPenalty = 0.03, }, + armour = { EnergyShield = 109, MovementPenalty = 0.03, }, req = { level = 48, int = 77, }, } itemBases["Luxurious Robe"] = { @@ -694,7 +1346,7 @@ itemBases["Luxurious Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 106, MovementPenalty = 0.03, }, + armour = { EnergyShield = 114, MovementPenalty = 0.03, }, req = { level = 51, int = 82, }, } itemBases["River Raiment"] = { @@ -704,7 +1356,7 @@ itemBases["River Raiment"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 111, MovementPenalty = 0.03, }, + armour = { EnergyShield = 119, MovementPenalty = 0.03, }, req = { level = 54, int = 86, }, } itemBases["Adherent's Raiment"] = { @@ -714,7 +1366,7 @@ itemBases["Adherent's Raiment"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 119, MovementPenalty = 0.03, }, + armour = { EnergyShield = 127, MovementPenalty = 0.03, }, req = { level = 59, int = 94, }, } itemBases["Ceremonial Robe"] = { @@ -724,7 +1376,7 @@ itemBases["Ceremonial Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 123, MovementPenalty = 0.03, }, + armour = { EnergyShield = 132, MovementPenalty = 0.03, }, req = { level = 62, int = 98, }, } itemBases["Vile Robe"] = { @@ -734,7 +1386,7 @@ itemBases["Vile Robe"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 184, MovementPenalty = 0.03, }, + armour = { EnergyShield = 171, MovementPenalty = 0.03, }, req = { level = 65, int = 121, }, } itemBases["Flowing Raiment"] = { @@ -754,8 +1406,8 @@ itemBases["Sacramental Robe"] = { quality = 20, socketLimit = 4, tags = { armour = true, body_armour = true, default = true, int_armour = true, }, - implicit = "(40-50)% faster start of Energy Shield Recharge", - implicitModTypes = { { "energy_shield", "defences" }, }, + implicit = "(20-25)% increased Energy Shield Recharge Rate", + implicitModTypes = { { "defences", "energy_shield" }, }, armour = { EnergyShield = 153, MovementPenalty = 0.03, }, req = { level = 75, int = 121, }, } @@ -770,8 +1422,354 @@ itemBases["Feathered Raiment"] = { armour = { EnergyShield = 153, MovementPenalty = 0.03, }, req = { level = 80, int = 121, }, } - -itemBases["Chain Mail"] = { +itemBases["Runeforged Tattered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 28, Ward = 29, MovementPenalty = 0.03, }, + req = { }, +} +itemBases["Runeforged Feathered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 35, Ward = 35, MovementPenalty = 0.03, }, + req = { level = 5, int = 11, }, +} +itemBases["Runeforged Hexer's Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, Ward = 43, MovementPenalty = 0.03, }, + req = { level = 11, int = 21, }, +} +itemBases["Runeforged Bone Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 54, Ward = 53, MovementPenalty = 0.03, }, + req = { level = 16, int = 28, }, +} +itemBases["Runeforged Silk Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 64, Ward = 65, MovementPenalty = 0.03, }, + req = { level = 22, int = 37, }, +} +itemBases["Runeforged Keth Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 74, Ward = 66, MovementPenalty = 0.03, }, + req = { level = 28, int = 47, }, +} +itemBases["Runeforged Votive Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 83, Ward = 69, MovementPenalty = 0.03, }, + req = { level = 33, int = 54, }, +} +itemBases["Runeforged Altar Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 95, Ward = 75, MovementPenalty = 0.03, }, + req = { level = 40, int = 65, }, +} +itemBases["Runeforged Elementalist Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 103, Ward = 76, MovementPenalty = 0.03, }, + req = { level = 45, int = 72, }, +} +itemBases["Runeforged Mystic Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 110, Ward = 68, MovementPenalty = 0.03, }, + req = { level = 49, int = 78, }, +} +itemBases["Runeforged Imperial Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 356, MovementPenalty = 0.03, }, + req = { level = 52, int = 83, }, +} +itemBases["Runeforged Plated Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 390, MovementPenalty = 0.03, }, + req = { level = 58, int = 92, }, +} +itemBases["Runeforged Havoc Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 65, int = 121, }, +} +itemBases["Runeforged Enlightened Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicit = "(40-50)% increased Mana Regeneration Rate", + implicitModTypes = { { "resource", "mana" }, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 68, int = 121, }, +} +itemBases["Runeforged Arcane Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicit = "(20-25)% increased Energy Shield Recharge Rate", + implicitModTypes = { { "defences", "energy_shield" }, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, + req = { level = 73, int = 121, }, +} +itemBases["Runeforged River Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 113, Ward = 73, MovementPenalty = 0.03, }, + req = { level = 54, int = 86, }, +} +itemBases["Runeforged Adherent's Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 102, Ward = 138, MovementPenalty = 0.03, }, + req = { level = 59, int = 94, }, +} +itemBases["Runeforged Ceremonial Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 113, Ward = 103, MovementPenalty = 0.03, }, + req = { level = 62, int = 98, }, +} +itemBases["Runeforged Vile Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 41, Ward = 387, MovementPenalty = 0.03, }, + req = { level = 65, int = 121, }, +} +itemBases["Runeforged Flowing Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicit = "(30-40)% increased Runic Ward Regeneration Rate", + implicitModTypes = { { "runic_ward" }, }, + armour = { EnergyShield = 76, Ward = 236, MovementPenalty = 0.03, }, + req = { level = 70, int = 121, }, +} +itemBases["Runeforged Sacramental Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicit = "(20-25)% increased Energy Shield Recharge Rate", + implicitModTypes = { { "defences", "energy_shield" }, }, + armour = { EnergyShield = 138, Ward = 64, MovementPenalty = 0.03, }, + req = { level = 75, int = 121, }, +} +itemBases["Runeforged Feathered Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicit = "(5-10)% of Damage is taken from Mana before Life", + implicitModTypes = { { "resource", "life", "mana" }, }, + armour = { EnergyShield = 124, Ward = 133, MovementPenalty = 0.03, }, + req = { level = 80, int = 121, }, +} +itemBases["Runemastered Tattered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 9, Ward = 138, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Feathered Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 55, Ward = 99, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Hexer's Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 64, Ward = 83, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Bone Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 46, Ward = 138, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Silk Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 27, Ward = 110, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Keth Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 73, Ward = 55, MovementPenalty = 0.03, }, + req = { level = 38, int = 61, }, +} +itemBases["Runemastered Votive Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 48, Ward = 186, MovementPenalty = 0.03, }, + req = { level = 55, int = 87, }, +} +itemBases["Runemastered Altar Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 72, Ward = 149, MovementPenalty = 0.03, }, + req = { level = 55, int = 87, }, +} +itemBases["Runemastered Elementalist Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 96, Ward = 75, MovementPenalty = 0.03, }, + req = { level = 55, int = 87, }, +} +itemBases["Runemastered Plated Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 124, Ward = 43, MovementPenalty = 0.03, }, + req = { level = 65, int = 103, }, +} +itemBases["Runemastered Havoc Raiment"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 96, Ward = 129, MovementPenalty = 0.03, }, + req = { level = 70, int = 121, }, +} +itemBases["Runemastered Enlightened Robe"] = { + type = "Body Armour", + subType = "Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, int_armour = true, runeforged = true, }, + implicit = "(40-50)% increased Mana Regeneration Rate", + implicitModTypes = { { "resource", "mana" }, }, + armour = { EnergyShield = 124, Ward = 86, MovementPenalty = 0.03, }, + req = { level = 75, int = 121, }, +} + +itemBases["Chain Mail"] = { type = "Body Armour", subType = "Armour/Evasion", quality = 20, @@ -788,7 +1786,7 @@ itemBases["Rogue Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 53, Evasion = 43, MovementPenalty = 0.04, }, + armour = { Armour = 63, Evasion = 53, MovementPenalty = 0.04, }, req = { level = 11, str = 13, dex = 13, }, } itemBases["Vagabond Armour"] = { @@ -798,7 +1796,7 @@ itemBases["Vagabond Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, Evasion = 56, MovementPenalty = 0.04, }, + armour = { Armour = 83, Evasion = 71, MovementPenalty = 0.04, }, req = { level = 16, str = 17, dex = 17, }, } itemBases["Cloaked Mail"] = { @@ -808,7 +1806,7 @@ itemBases["Cloaked Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 95, Evasion = 83, MovementPenalty = 0.04, }, + armour = { Armour = 121, Evasion = 107, MovementPenalty = 0.04, }, req = { level = 26, str = 25, dex = 25, }, } itemBases["Explorer Armour"] = { @@ -818,7 +1816,7 @@ itemBases["Explorer Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 114, Evasion = 101, MovementPenalty = 0.04, }, + armour = { Armour = 149, Evasion = 132, MovementPenalty = 0.04, }, req = { level = 33, str = 31, dex = 31, }, } itemBases["Scale Mail"] = { @@ -828,7 +1826,7 @@ itemBases["Scale Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 125, Evasion = 112, MovementPenalty = 0.04, }, + armour = { Armour = 164, Evasion = 147, MovementPenalty = 0.04, }, req = { level = 37, str = 34, dex = 34, }, } itemBases["Knight Armour"] = { @@ -838,7 +1836,7 @@ itemBases["Knight Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 148, Evasion = 133, MovementPenalty = 0.04, }, + armour = { Armour = 195, Evasion = 176, MovementPenalty = 0.04, }, req = { level = 45, str = 41, dex = 41, }, } itemBases["Ancestral Mail"] = { @@ -848,7 +1846,7 @@ itemBases["Ancestral Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 162, Evasion = 146, MovementPenalty = 0.04, }, + armour = { Armour = 214, Evasion = 194, MovementPenalty = 0.04, }, req = { level = 50, str = 44, dex = 44, }, } itemBases["Lamellar Mail"] = { @@ -858,7 +1856,7 @@ itemBases["Lamellar Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 167, Evasion = 151, MovementPenalty = 0.04, }, + armour = { Armour = 222, Evasion = 201, MovementPenalty = 0.04, }, req = { level = 52, str = 46, dex = 46, }, } itemBases["Gladiator Armour"] = { @@ -868,7 +1866,7 @@ itemBases["Gladiator Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 184, Evasion = 167, MovementPenalty = 0.04, }, + armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, req = { level = 58, str = 51, dex = 51, }, } itemBases["Heroic Armour"] = { @@ -879,7 +1877,7 @@ itemBases["Heroic Armour"] = { tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(60-80) to maximum Life", implicitModTypes = { { "resource", "life" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 65, str = 67, dex = 67, }, } itemBases["Tournament Mail"] = { @@ -889,8 +1887,8 @@ itemBases["Tournament Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Fire Resistance", - implicitModTypes = { { "elemental", "fire", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 68, str = 67, dex = 67, }, } itemBases["Tournament Mail"] = { @@ -900,8 +1898,8 @@ itemBases["Tournament Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Cold Resistance", - implicitModTypes = { { "elemental", "cold", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 68, str = 67, dex = 67, }, } itemBases["Tournament Mail"] = { @@ -911,8 +1909,8 @@ itemBases["Tournament Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Lightning Resistance", - implicitModTypes = { { "elemental", "lightning", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 68, str = 67, dex = 67, }, } itemBases["Slayer Armour"] = { @@ -922,7 +1920,7 @@ itemBases["Slayer Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 294, Evasion = 268, MovementPenalty = 0.04, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 73, str = 67, dex = 67, }, } itemBases["Ring Mail"] = { @@ -932,7 +1930,7 @@ itemBases["Ring Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 148, Evasion = 133, MovementPenalty = 0.04, }, + armour = { Armour = 195, Evasion = 176, MovementPenalty = 0.04, }, req = { level = 45, str = 41, dex = 41, }, } itemBases["Scoundrel Armour"] = { @@ -942,7 +1940,7 @@ itemBases["Scoundrel Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 156, Evasion = 141, MovementPenalty = 0.04, }, + armour = { Armour = 207, Evasion = 187, MovementPenalty = 0.04, }, req = { level = 48, str = 43, dex = 43, }, } itemBases["Wanderer Armour"] = { @@ -952,7 +1950,7 @@ itemBases["Wanderer Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 165, Evasion = 149, MovementPenalty = 0.04, }, + armour = { Armour = 218, Evasion = 197, MovementPenalty = 0.04, }, req = { level = 51, str = 45, dex = 45, }, } itemBases["Mantled Mail"] = { @@ -962,7 +1960,7 @@ itemBases["Mantled Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 173, Evasion = 157, MovementPenalty = 0.04, }, + armour = { Armour = 230, Evasion = 208, MovementPenalty = 0.04, }, req = { level = 54, str = 48, dex = 48, }, } itemBases["Trailblazer Armour"] = { @@ -972,7 +1970,7 @@ itemBases["Trailblazer Armour"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 187, Evasion = 170, MovementPenalty = 0.04, }, + armour = { Armour = 249, Evasion = 226, MovementPenalty = 0.04, }, req = { level = 59, str = 52, dex = 52, }, } itemBases["Golden Mail"] = { @@ -982,7 +1980,7 @@ itemBases["Golden Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 195, Evasion = 178, MovementPenalty = 0.04, }, + armour = { Armour = 261, Evasion = 237, MovementPenalty = 0.04, }, req = { level = 62, str = 54, dex = 54, }, } itemBases["Dastard Armour"] = { @@ -993,7 +1991,7 @@ itemBases["Dastard Armour"] = { tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(60-80) to maximum Life", implicitModTypes = { { "resource", "life" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + armour = { Armour = 303, Evasion = 276, MovementPenalty = 0.04, }, req = { level = 65, str = 67, dex = 67, }, } itemBases["Shrouded Mail"] = { @@ -1003,8 +2001,8 @@ itemBases["Shrouded Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Fire Resistance", - implicitModTypes = { { "elemental", "fire", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 70, str = 67, dex = 67, }, } itemBases["Shrouded Mail"] = { @@ -1014,8 +2012,8 @@ itemBases["Shrouded Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Cold Resistance", - implicitModTypes = { { "elemental", "cold", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 70, str = 67, dex = 67, }, } itemBases["Shrouded Mail"] = { @@ -1025,8 +2023,8 @@ itemBases["Shrouded Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicit = "+(20-25)% to Lightning Resistance", - implicitModTypes = { { "elemental", "lightning", "resistance" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + implicitModTypes = { { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 70, str = 67, dex = 67, }, } itemBases["Death Mail"] = { @@ -1036,7 +2034,7 @@ itemBases["Death Mail"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 294, Evasion = 268, MovementPenalty = 0.04, }, + armour = { Armour = 313, Evasion = 285, MovementPenalty = 0.04, }, req = { level = 75, str = 67, dex = 67, }, } itemBases["Thane Mail"] = { @@ -1047,38 +2045,378 @@ itemBases["Thane Mail"] = { tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_dex_armour = true, }, implicit = "Hits against you have (15-25)% reduced Critical Damage Bonus", implicitModTypes = { { "damage", "critical" }, }, - armour = { Armour = 245, Evasion = 223, MovementPenalty = 0.04, }, + armour = { Armour = 273, Evasion = 248, MovementPenalty = 0.04, }, req = { level = 80, str = 67, dex = 67, }, } - -itemBases["Pilgrim Vestments"] = { +itemBases["Runeforged Chain Mail"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 25, EnergyShield = 16, MovementPenalty = 0.04, }, + armour = { Armour = 25, Evasion = 16, Ward = 29, MovementPenalty = 0.04, }, req = { }, } -itemBases["Pelt Mantle"] = { +itemBases["Runeforged Rogue Armour"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 50, EnergyShield = 23, MovementPenalty = 0.04, }, - req = { level = 10, str = 12, int = 12, }, + armour = { Armour = 63, Evasion = 53, Ward = 43, MovementPenalty = 0.04, }, + req = { level = 11, str = 13, dex = 13, }, } -itemBases["Mail Vestments"] = { +itemBases["Runeforged Vagabond Armour"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, EnergyShield = 28, MovementPenalty = 0.04, }, + armour = { Armour = 83, Evasion = 71, Ward = 53, MovementPenalty = 0.04, }, + req = { level = 16, str = 17, dex = 17, }, +} +itemBases["Runeforged Cloaked Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 121, Evasion = 107, Ward = 73, MovementPenalty = 0.04, }, + req = { level = 26, str = 25, dex = 25, }, +} +itemBases["Runeforged Explorer Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 149, Evasion = 132, Ward = 74, MovementPenalty = 0.04, }, + req = { level = 33, str = 31, dex = 31, }, +} +itemBases["Runeforged Scale Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 164, Evasion = 147, Ward = 78, MovementPenalty = 0.04, }, + req = { level = 37, str = 34, dex = 34, }, +} +itemBases["Runeforged Knight Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 195, Evasion = 176, Ward = 85, MovementPenalty = 0.04, }, + req = { level = 45, str = 41, dex = 41, }, +} +itemBases["Runeforged Ancestral Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 214, Evasion = 194, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 50, str = 44, dex = 44, }, +} +itemBases["Runeforged Lamellar Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 356, MovementPenalty = 0.04, }, + req = { level = 52, str = 46, dex = 46, }, +} +itemBases["Runeforged Gladiator Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 390, MovementPenalty = 0.04, }, + req = { level = 58, str = 51, dex = 51, }, +} +itemBases["Runeforged Heroic Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(60-80) to maximum Life", + implicitModTypes = { { "resource", "life" }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, dex = 67, }, +} +itemBases["Runeforged Tournament Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Fire Resistance", + implicitModTypes = { { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 68, str = 67, dex = 67, }, +} +itemBases["Runeforged Tournament Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Cold Resistance", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 68, str = 67, dex = 67, }, +} +itemBases["Runeforged Tournament Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Lightning Resistance", + implicitModTypes = { { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 68, str = 67, dex = 67, }, +} +itemBases["Runeforged Slayer Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 218, Evasion = 199, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 73, str = 67, dex = 67, }, +} +itemBases["Runeforged Mantled Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 218, Evasion = 198, Ward = 73, MovementPenalty = 0.04, }, + req = { level = 54, str = 48, dex = 48, }, +} +itemBases["Runeforged Trailblazer Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 187, Evasion = 170, Ward = 158, MovementPenalty = 0.04, }, + req = { level = 59, str = 52, dex = 52, }, +} +itemBases["Runeforged Golden Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 235, Evasion = 214, Ward = 124, MovementPenalty = 0.04, }, + req = { level = 62, str = 54, dex = 54, }, +} +itemBases["Runeforged Dastard Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(60-80) to maximum Life", + implicitModTypes = { { "resource", "life" }, }, + armour = { Armour = 150, Evasion = 137, Ward = 236, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, dex = 67, }, +} +itemBases["Runeforged Shrouded Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Fire Resistance", + implicitModTypes = { { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, }, + armour = { Armour = 232, Evasion = 211, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, dex = 67, }, +} +itemBases["Runeforged Shrouded Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Cold Resistance", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, + armour = { Armour = 232, Evasion = 211, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, dex = 67, }, +} +itemBases["Runeforged Shrouded Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(20-25)% to Lightning Resistance", + implicitModTypes = { { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, }, + armour = { Armour = 232, Evasion = 211, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, dex = 67, }, +} +itemBases["Runeforged Death Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 68, Evasion = 62, Ward = 408, MovementPenalty = 0.04, }, + req = { level = 75, str = 67, dex = 67, }, +} +itemBases["Runeforged Thane Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicit = "Hits against you have (15-25)% reduced Critical Damage Bonus", + implicitModTypes = { { "damage", "critical" }, }, + armour = { Armour = 259, Evasion = 236, Ward = 64, MovementPenalty = 0.04, }, + req = { level = 80, str = 67, dex = 67, }, +} +itemBases["Runemastered Chain Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 151, Evasion = 135, Ward = 55, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, dex = 35, }, +} +itemBases["Runemastered Rogue Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 118, Evasion = 105, Ward = 83, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, dex = 35, }, +} +itemBases["Runemastered Vagabond Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 143, Evasion = 128, Ward = 41, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, dex = 35, }, +} +itemBases["Runemastered Cloaked Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 114, Evasion = 102, Ward = 115, MovementPenalty = 0.04, }, + req = { level = 40, str = 36, dex = 36, }, +} +itemBases["Runemastered Explorer Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 199, Evasion = 180, Ward = 56, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, dex = 49, }, +} +itemBases["Runemastered Scale Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 187, Evasion = 170, Ward = 75, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, dex = 49, }, +} +itemBases["Runemastered Knight Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 175, Evasion = 159, Ward = 93, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, dex = 49, }, +} +itemBases["Runemastered Ancestral Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 191, Evasion = 174, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 65, str = 57, dex = 57, }, +} +itemBases["Runemastered Heroic Armour"] = { + type = "Body Armour", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_armour = true, }, + implicit = "+(60-80) to maximum Life", + implicitModTypes = { { "resource", "life" }, }, + armour = { Armour = 136, Evasion = 124, Ward = 215, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, dex = 67, }, +} + +itemBases["Pilgrim Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 25, EnergyShield = 16, MovementPenalty = 0.04, }, + req = { }, +} +itemBases["Pelt Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 59, EnergyShield = 24, MovementPenalty = 0.04, }, + req = { level = 10, str = 12, int = 12, }, +} +itemBases["Mail Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 83, EnergyShield = 30, MovementPenalty = 0.04, }, req = { level = 16, str = 17, int = 17, }, } itemBases["Shaman Mantle"] = { @@ -1088,7 +2426,7 @@ itemBases["Shaman Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, EnergyShield = 39, MovementPenalty = 0.04, }, + armour = { Armour = 129, EnergyShield = 41, MovementPenalty = 0.04, }, req = { level = 28, str = 26, int = 26, }, } itemBases["Ironclad Vestments"] = { @@ -1098,7 +2436,7 @@ itemBases["Ironclad Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 114, EnergyShield = 43, MovementPenalty = 0.04, }, + armour = { Armour = 149, EnergyShield = 46, MovementPenalty = 0.04, }, req = { level = 33, str = 31, int = 31, }, } itemBases["Sacrificial Mantle"] = { @@ -1108,7 +2446,7 @@ itemBases["Sacrificial Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 123, EnergyShield = 46, MovementPenalty = 0.04, }, + armour = { Armour = 160, EnergyShield = 48, MovementPenalty = 0.04, }, req = { level = 36, str = 33, int = 33, }, } itemBases["Cleric Vestments"] = { @@ -1118,7 +2456,7 @@ itemBases["Cleric Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 148, EnergyShield = 53, MovementPenalty = 0.04, }, + armour = { Armour = 195, EnergyShield = 57, MovementPenalty = 0.04, }, req = { level = 45, str = 41, int = 41, }, } itemBases["Tideseer Mantle"] = { @@ -1128,7 +2466,7 @@ itemBases["Tideseer Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 165, EnergyShield = 58, MovementPenalty = 0.04, }, + armour = { Armour = 218, EnergyShield = 63, MovementPenalty = 0.04, }, req = { level = 51, str = 45, int = 45, }, } itemBases["Gilded Vestments"] = { @@ -1138,7 +2476,7 @@ itemBases["Gilded Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 167, EnergyShield = 59, MovementPenalty = 0.04, }, + armour = { Armour = 222, EnergyShield = 63, MovementPenalty = 0.04, }, req = { level = 52, str = 46, int = 46, }, } itemBases["Venerated Mantle"] = { @@ -1148,7 +2486,7 @@ itemBases["Venerated Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 173, EnergyShield = 61, MovementPenalty = 0.04, }, + armour = { Armour = 230, EnergyShield = 65, MovementPenalty = 0.04, }, req = { level = 54, str = 48, int = 48, }, } itemBases["Revered Vestments"] = { @@ -1158,8 +2496,8 @@ itemBases["Revered Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicit = "+1% to all Maximum Elemental Resistances", - implicitModTypes = { { "elemental", "resistance" }, }, - armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, req = { level = 65, str = 67, int = 67, }, } itemBases["Corvus Mantle"] = { @@ -1170,7 +2508,7 @@ itemBases["Corvus Mantle"] = { tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicit = "+(20-30) to Spirit", implicitModTypes = { { }, }, - armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, req = { level = 68, str = 67, int = 67, }, } itemBases["Zenith Vestments"] = { @@ -1180,7 +2518,7 @@ itemBases["Zenith Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 294, EnergyShield = 101, MovementPenalty = 0.04, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, req = { level = 73, str = 67, int = 67, }, } itemBases["Templar Vestments"] = { @@ -1190,7 +2528,7 @@ itemBases["Templar Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 148, EnergyShield = 53, MovementPenalty = 0.04, }, + armour = { Armour = 195, EnergyShield = 57, MovementPenalty = 0.04, }, req = { level = 45, str = 41, int = 41, }, } itemBases["Bearskin Mantle"] = { @@ -1200,7 +2538,7 @@ itemBases["Bearskin Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 156, EnergyShield = 56, MovementPenalty = 0.04, }, + armour = { Armour = 207, EnergyShield = 60, MovementPenalty = 0.04, }, req = { level = 48, str = 43, int = 43, }, } itemBases["Chain Vestments"] = { @@ -1210,7 +2548,7 @@ itemBases["Chain Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 165, EnergyShield = 58, MovementPenalty = 0.04, }, + armour = { Armour = 218, EnergyShield = 63, MovementPenalty = 0.04, }, req = { level = 51, str = 45, int = 45, }, } itemBases["Occultist Mantle"] = { @@ -1220,7 +2558,7 @@ itemBases["Occultist Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 173, EnergyShield = 61, MovementPenalty = 0.04, }, + armour = { Armour = 230, EnergyShield = 65, MovementPenalty = 0.04, }, req = { level = 54, str = 48, int = 48, }, } itemBases["Plated Vestments"] = { @@ -1230,7 +2568,7 @@ itemBases["Plated Vestments"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 187, EnergyShield = 65, MovementPenalty = 0.04, }, + armour = { Armour = 249, EnergyShield = 70, MovementPenalty = 0.04, }, req = { level = 59, str = 52, int = 52, }, } itemBases["Heartcarver Mantle"] = { @@ -1240,287 +2578,892 @@ itemBases["Heartcarver Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 195, EnergyShield = 68, MovementPenalty = 0.04, }, + armour = { Armour = 261, EnergyShield = 73, MovementPenalty = 0.04, }, req = { level = 62, str = 54, int = 54, }, } -itemBases["Wolfskin Mantle"] = { +itemBases["Wolfskin Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 313, EnergyShield = 87, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, int = 67, }, +} +itemBases["Conjurer Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, + implicit = "+(20-30) to Spirit", + implicitModTypes = { { }, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, int = 67, }, +} +itemBases["Death Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, + req = { level = 75, str = 67, int = 67, }, +} +itemBases["Seastorm Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_int_armour = true, }, + implicit = "(8-14)% of Damage taken Recouped as Life", + implicitModTypes = { { "resource", "life" }, }, + armour = { Armour = 273, EnergyShield = 76, MovementPenalty = 0.04, }, + req = { level = 80, str = 67, int = 67, }, +} +itemBases["Runeforged Pilgrim Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 25, EnergyShield = 16, Ward = 29, MovementPenalty = 0.04, }, + req = { }, +} +itemBases["Runeforged Pelt Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 59, EnergyShield = 24, Ward = 41, MovementPenalty = 0.04, }, + req = { level = 10, str = 12, int = 12, }, +} +itemBases["Runeforged Mail Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 83, EnergyShield = 30, Ward = 53, MovementPenalty = 0.04, }, + req = { level = 16, str = 17, int = 17, }, +} +itemBases["Runeforged Shaman Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 129, EnergyShield = 41, Ward = 77, MovementPenalty = 0.04, }, + req = { level = 28, str = 26, int = 26, }, +} +itemBases["Runeforged Ironclad Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 149, EnergyShield = 46, Ward = 74, MovementPenalty = 0.04, }, + req = { level = 33, str = 31, int = 31, }, +} +itemBases["Runeforged Sacrificial Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 160, EnergyShield = 48, Ward = 77, MovementPenalty = 0.04, }, + req = { level = 36, str = 33, int = 33, }, +} +itemBases["Runeforged Cleric Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 195, EnergyShield = 57, Ward = 85, MovementPenalty = 0.04, }, + req = { level = 45, str = 41, int = 41, }, +} +itemBases["Runeforged Tideseer Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 218, EnergyShield = 63, Ward = 87, MovementPenalty = 0.04, }, + req = { level = 51, str = 45, int = 45, }, +} +itemBases["Runeforged Gilded Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 356, MovementPenalty = 0.04, }, + req = { level = 52, str = 46, int = 46, }, +} +itemBases["Runeforged Venerated Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 367, MovementPenalty = 0.04, }, + req = { level = 54, str = 48, int = 48, }, +} +itemBases["Runeforged Revered Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, int = 67, }, +} +itemBases["Runeforged Corvus Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+(20-30) to Spirit", + implicitModTypes = { { }, }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 68, str = 67, int = 67, }, +} +itemBases["Runeforged Zenith Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 430, MovementPenalty = 0.04, }, + req = { level = 73, str = 67, int = 67, }, +} +itemBases["Runeforged Occultist Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 184, EnergyShield = 52, Ward = 128, MovementPenalty = 0.04, }, + req = { level = 54, str = 48, int = 48, }, +} +itemBases["Runeforged Plated Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 187, EnergyShield = 53, Ward = 158, MovementPenalty = 0.04, }, + req = { level = 59, str = 52, int = 52, }, +} +itemBases["Runeforged Heartcarver Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 222, EnergyShield = 62, Ward = 103, MovementPenalty = 0.04, }, + req = { level = 62, str = 54, int = 54, }, +} +itemBases["Runeforged Wolfskin Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 63, EnergyShield = 17, Ward = 417, MovementPenalty = 0.04, }, + req = { level = 65, str = 67, int = 67, }, +} +itemBases["Runeforged Conjurer Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+(20-30) to Spirit", + implicitModTypes = { { }, }, + armour = { Armour = 232, EnergyShield = 64, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, int = 67, }, +} +itemBases["Runeforged Death Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Armour = 164, EnergyShield = 45, Ward = 215, MovementPenalty = 0.04, }, + req = { level = 75, str = 67, int = 67, }, +} +itemBases["Runeforged Seastorm Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicit = "(8-14)% of Damage taken Recouped as Life", + implicitModTypes = { { "resource", "life" }, }, + armour = { Armour = 68, EnergyShield = 19, Ward = 344, MovementPenalty = 0.04, }, + req = { level = 80, str = 67, int = 67, }, +} +itemBases["Runemastered Pilgrim Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, ezomyte_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 202, EnergyShield = 60, Ward = 55, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, int = 35, }, +} +itemBases["Runemastered Mail Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 118, EnergyShield = 35, Ward = 83, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, int = 35, }, +} +itemBases["Runemastered Shaman Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 141, EnergyShield = 42, Ward = 44, MovementPenalty = 0.04, }, + req = { level = 38, str = 35, int = 35, }, +} +itemBases["Runemastered Ironclad Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 210, EnergyShield = 60, Ward = 37, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, int = 49, }, +} +itemBases["Runemastered Sacrificial Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 210, EnergyShield = 60, Ward = 37, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, int = 49, }, +} +itemBases["Runemastered Cleric Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 187, EnergyShield = 53, Ward = 75, MovementPenalty = 0.04, }, + req = { level = 55, str = 49, int = 49, }, +} +itemBases["Runemastered Tideseer Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 55, EnergyShield = 15, Ward = 129, MovementPenalty = 0.04, }, + req = { level = 65, str = 57, int = 57, }, +} +itemBases["Runemastered Gilded Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 218, EnergyShield = 61, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 65, str = 57, int = 57, }, +} +itemBases["Runemastered Revered Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances\n(30-50)% increased effect of Arcane Surge on you", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, { "resource", "mana", "caster" }, }, + armour = { Armour = 232, EnergyShield = 64, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, int = 67, }, +} +itemBases["Runemastered Revered Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances\n(10-15)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, { }, }, + armour = { Armour = 199, EnergyShield = 88, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 70, str = 57, int = 85, }, +} +itemBases["Runemastered Revered Vestments"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+1% to all Maximum Elemental Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Armour = 164, EnergyShield = 45, Ward = 301, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, int = 67, }, +} +itemBases["Runemastered Corvus Mantle"] = { + type = "Body Armour", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_int_armour = true, }, + implicit = "+(20-30) to Spirit", + implicitModTypes = { { }, }, + armour = { Armour = 218, EnergyShield = 61, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 70, str = 67, int = 67, }, +} + +itemBases["Hermit Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 16, EnergyShield = 16, MovementPenalty = 0.03, }, + req = { }, +} +itemBases["Waxed Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 53, EnergyShield = 25, MovementPenalty = 0.03, }, + req = { level = 11, dex = 13, int = 13, }, +} +itemBases["Marabout Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 71, EnergyShield = 30, MovementPenalty = 0.03, }, + req = { level = 16, dex = 17, int = 17, }, +} +itemBases["Wayfarer Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 114, EnergyShield = 41, MovementPenalty = 0.03, }, + req = { level = 28, dex = 26, int = 26, }, +} +itemBases["Anchorite Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 132, EnergyShield = 46, MovementPenalty = 0.03, }, + req = { level = 33, dex = 31, int = 31, }, +} +itemBases["Scalper's Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 154, EnergyShield = 51, MovementPenalty = 0.03, }, + req = { level = 39, dex = 35, int = 35, }, +} +itemBases["Scoundrel Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 176, EnergyShield = 57, MovementPenalty = 0.03, }, + req = { level = 45, dex = 41, int = 41, }, +} +itemBases["Ascetic Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 197, EnergyShield = 63, MovementPenalty = 0.03, }, + req = { level = 51, dex = 45, int = 45, }, +} +itemBases["Clandestine Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 201, EnergyShield = 63, MovementPenalty = 0.03, }, + req = { level = 52, dex = 46, int = 46, }, +} +itemBases["Monastic Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 216, EnergyShield = 67, MovementPenalty = 0.03, }, + req = { level = 56, dex = 50, int = 50, }, +} +itemBases["Torment Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 65, dex = 67, int = 67, }, +} +itemBases["Devout Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicit = "+(7-13)% to Chaos Resistance", + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 68, dex = 67, int = 67, }, +} +itemBases["Assassin Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 73, dex = 67, int = 67, }, +} +itemBases["Ascetic Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 176, EnergyShield = 57, MovementPenalty = 0.03, }, + req = { level = 45, dex = 41, int = 41, }, +} +itemBases["Oiled Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 187, EnergyShield = 60, MovementPenalty = 0.03, }, + req = { level = 48, dex = 43, int = 43, }, +} +itemBases["Evangelist Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 197, EnergyShield = 63, MovementPenalty = 0.03, }, + req = { level = 51, dex = 45, int = 45, }, +} +itemBases["Itinerant Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 208, EnergyShield = 65, MovementPenalty = 0.03, }, + req = { level = 54, dex = 48, int = 48, }, +} +itemBases["Hatungo Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 226, EnergyShield = 70, MovementPenalty = 0.03, }, + req = { level = 59, dex = 52, int = 52, }, +} +itemBases["Hawker's Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Evasion = 237, EnergyShield = 73, MovementPenalty = 0.03, }, + req = { level = 62, dex = 54, int = 54, }, +} +itemBases["Sleek Jacket"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 294, EnergyShield = 101, MovementPenalty = 0.04, }, - req = { level = 65, str = 67, int = 67, }, + armour = { Evasion = 285, EnergyShield = 87, MovementPenalty = 0.03, }, + req = { level = 65, dex = 67, int = 67, }, } -itemBases["Conjurer Mantle"] = { +itemBases["Rambler Jacket"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, - implicit = "+(20-30) to Spirit", - implicitModTypes = { { }, }, - armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, }, - req = { level = 70, str = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicit = "+(7-13)% to Chaos Resistance", + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 70, dex = 67, int = 67, }, } -itemBases["Death Mantle"] = { +itemBases["Falconer's Jacket"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, str_int_armour = true, }, - implicit = "+1% to all Maximum Elemental Resistances", - implicitModTypes = { { "elemental", "resistance" }, }, - armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, }, - req = { level = 75, str = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 75, dex = 67, int = 67, }, } -itemBases["Seastorm Mantle"] = { +itemBases["Austere Garb"] = { type = "Body Armour", - subType = "Armour/Energy Shield", + subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, karui_basetype = true, str_int_armour = true, }, - implicit = "(8-14)% of Damage taken Recouped as Life", - implicitModTypes = { { "resource", "life" }, }, - armour = { Armour = 245, EnergyShield = 84, MovementPenalty = 0.04, }, - req = { level = 80, str = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, + implicit = "(10-15)% reduced Elemental Ailment Duration on you", + implicitModTypes = { { "elemental", "ailment" }, }, + armour = { Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 80, dex = 67, int = 67, }, } - -itemBases["Hermit Garb"] = { +itemBases["Runeforged Hermit Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 16, EnergyShield = 16, MovementPenalty = 0.03, }, + armour = { Evasion = 16, EnergyShield = 16, Ward = 29, MovementPenalty = 0.03, }, req = { }, } -itemBases["Waxed Jacket"] = { +itemBases["Runeforged Waxed Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 43, EnergyShield = 24, MovementPenalty = 0.03, }, + armour = { Evasion = 53, EnergyShield = 25, Ward = 43, MovementPenalty = 0.03, }, req = { level = 11, dex = 13, int = 13, }, } -itemBases["Marabout Garb"] = { +itemBases["Runeforged Marabout Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 56, EnergyShield = 28, MovementPenalty = 0.03, }, + armour = { Evasion = 71, EnergyShield = 30, Ward = 53, MovementPenalty = 0.03, }, req = { level = 16, dex = 17, int = 17, }, } -itemBases["Wayfarer Jacket"] = { +itemBases["Runeforged Wayfarer Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 88, EnergyShield = 39, MovementPenalty = 0.03, }, + armour = { Evasion = 114, EnergyShield = 41, Ward = 77, MovementPenalty = 0.03, }, req = { level = 28, dex = 26, int = 26, }, } -itemBases["Anchorite Garb"] = { +itemBases["Runeforged Anchorite Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, vaal_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 101, EnergyShield = 43, MovementPenalty = 0.03, }, + armour = { Evasion = 132, EnergyShield = 46, Ward = 74, MovementPenalty = 0.03, }, req = { level = 33, dex = 31, int = 31, }, } -itemBases["Scalper's Jacket"] = { +itemBases["Runeforged Scalper's Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, vaal_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 117, EnergyShield = 48, MovementPenalty = 0.03, }, + armour = { Evasion = 154, EnergyShield = 51, Ward = 82, MovementPenalty = 0.03, }, req = { level = 39, dex = 35, int = 35, }, } -itemBases["Scoundrel Jacket"] = { +itemBases["Runeforged Scoundrel Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 133, EnergyShield = 53, MovementPenalty = 0.03, }, + armour = { Evasion = 176, EnergyShield = 57, Ward = 85, MovementPenalty = 0.03, }, req = { level = 45, dex = 41, int = 41, }, } -itemBases["Ascetic Garb"] = { +itemBases["Runeforged Ascetic Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 149, EnergyShield = 58, MovementPenalty = 0.03, }, + armour = { Evasion = 197, EnergyShield = 63, Ward = 87, MovementPenalty = 0.03, }, req = { level = 51, dex = 45, int = 45, }, } -itemBases["Clandestine Jacket"] = { +itemBases["Runeforged Clandestine Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 151, EnergyShield = 59, MovementPenalty = 0.03, }, + armour = { Ward = 356, MovementPenalty = 0.03, }, req = { level = 52, dex = 46, int = 46, }, } -itemBases["Monastic Garb"] = { +itemBases["Runeforged Monastic Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 162, EnergyShield = 63, MovementPenalty = 0.03, }, + armour = { Ward = 378, MovementPenalty = 0.03, }, req = { level = 56, dex = 50, int = 50, }, } -itemBases["Torment Jacket"] = { +itemBases["Runeforged Torment Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 268, EnergyShield = 101, MovementPenalty = 0.03, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, req = { level = 65, dex = 67, int = 67, }, } -itemBases["Devout Garb"] = { +itemBases["Runeforged Devout Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicit = "+(7-13)% to Chaos Resistance", - implicitModTypes = { { "chaos", "resistance" }, }, - armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, }, + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, req = { level = 68, dex = 67, int = 67, }, } -itemBases["Assassin Garb"] = { +itemBases["Runeforged Assassin Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicit = "5% increased Movement Speed", implicitModTypes = { { "speed" }, }, - armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, }, + armour = { Ward = 430, MovementPenalty = 0.03, }, req = { level = 73, dex = 67, int = 67, }, } -itemBases["Ascetic Garb"] = { +itemBases["Runeforged Itinerant Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 133, EnergyShield = 53, MovementPenalty = 0.03, }, - req = { level = 45, dex = 41, int = 41, }, + armour = { Evasion = 188, EnergyShield = 59, Ward = 92, MovementPenalty = 0.03, }, + req = { level = 54, dex = 48, int = 48, }, } -itemBases["Oiled Jacket"] = { +itemBases["Runeforged Hatungo Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 141, EnergyShield = 56, MovementPenalty = 0.03, }, - req = { level = 48, dex = 43, int = 43, }, + armour = { Evasion = 170, EnergyShield = 53, Ward = 158, MovementPenalty = 0.03, }, + req = { level = 59, dex = 52, int = 52, }, } -itemBases["Evangelist Garb"] = { +itemBases["Runeforged Hawker's Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 149, EnergyShield = 58, MovementPenalty = 0.03, }, - req = { level = 51, dex = 45, int = 45, }, + armour = { Evasion = 202, EnergyShield = 62, Ward = 103, MovementPenalty = 0.03, }, + req = { level = 62, dex = 54, int = 54, }, } -itemBases["Itinerant Jacket"] = { +itemBases["Runeforged Sleek Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 157, EnergyShield = 61, MovementPenalty = 0.03, }, - req = { level = 54, dex = 48, int = 48, }, + armour = { Evasion = 69, EnergyShield = 21, Ward = 395, MovementPenalty = 0.03, }, + req = { level = 65, dex = 67, int = 67, }, } -itemBases["Hatungo Garb"] = { +itemBases["Runeforged Rambler Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, + implicit = "+(7-13)% to Chaos Resistance", + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, + armour = { Evasion = 211, EnergyShield = 64, Ward = 107, MovementPenalty = 0.03, }, + req = { level = 70, dex = 67, int = 67, }, +} +itemBases["Runeforged Falconer's Jacket"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 164, EnergyShield = 50, Ward = 189, MovementPenalty = 0.03, }, + req = { level = 75, dex = 67, int = 67, }, +} +itemBases["Runeforged Austere Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, runeforged = true, }, + implicit = "(10-15)% reduced Elemental Ailment Duration on you", + implicitModTypes = { { "elemental", "ailment" }, }, + armour = { Evasion = 236, EnergyShield = 72, Ward = 86, MovementPenalty = 0.03, }, + req = { level = 80, dex = 67, int = 67, }, +} +itemBases["Runemastered Hermit Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 170, EnergyShield = 65, MovementPenalty = 0.03, }, - req = { level = 59, dex = 52, int = 52, }, + armour = { Evasion = 135, EnergyShield = 45, Ward = 28, MovementPenalty = 0.03, }, + req = { level = 38, dex = 35, int = 35, }, } -itemBases["Hawker's Jacket"] = { +itemBases["Runemastered Waxed Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 178, EnergyShield = 68, MovementPenalty = 0.03, }, - req = { level = 62, dex = 54, int = 54, }, + armour = { Evasion = 113, EnergyShield = 38, Ward = 69, MovementPenalty = 0.03, }, + req = { level = 38, dex = 35, int = 35, }, } -itemBases["Sleek Jacket"] = { +itemBases["Runemastered Marabout Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Evasion = 268, EnergyShield = 101, MovementPenalty = 0.03, }, - req = { level = 65, dex = 67, int = 67, }, + armour = { Evasion = 90, EnergyShield = 30, Ward = 110, MovementPenalty = 0.03, }, + req = { level = 38, dex = 35, int = 35, }, } -itemBases["Rambler Jacket"] = { +itemBases["Runemastered Wayfarer Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, - implicit = "+(7-13)% to Chaos Resistance", - implicitModTypes = { { "chaos", "resistance" }, }, - armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, }, - req = { level = 70, dex = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 134, EnergyShield = 44, Ward = 43, MovementPenalty = 0.03, }, + req = { level = 40, dex = 36, int = 36, }, } -itemBases["Falconer's Jacket"] = { +itemBases["Runemastered Anchorite Garb"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, }, - implicit = "5% increased Movement Speed", - implicitModTypes = { { "speed" }, }, - armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, }, - req = { level = 75, dex = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 138, EnergyShield = 43, Ward = 130, MovementPenalty = 0.03, }, + req = { level = 55, dex = 49, int = 49, }, } -itemBases["Austere Garb"] = { +itemBases["Runemastered Scalper's Jacket"] = { type = "Body Armour", subType = "Evasion/Energy Shield", quality = 20, socketLimit = 4, - tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, karui_basetype = true, }, - implicit = "(10-15)% reduced Elemental Ailment Duration on you", - implicitModTypes = { { "elemental", "ailment" }, }, - armour = { Evasion = 223, EnergyShield = 84, MovementPenalty = 0.03, }, - req = { level = 80, dex = 67, int = 67, }, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 170, EnergyShield = 53, Ward = 75, MovementPenalty = 0.03, }, + req = { level = 55, dex = 49, int = 49, }, +} +itemBases["Runemastered Assassin Garb"] = { + type = "Body Armour", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, dex_int_armour = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 223, EnergyShield = 68, Ward = 43, MovementPenalty = 0.03, }, + req = { level = 73, dex = 67, int = 67, }, } itemBases["Grand Regalia"] = { @@ -1530,7 +3473,7 @@ itemBases["Grand Regalia"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, str_dex_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 135, Evasion = 123, EnergyShield = 46, MovementPenalty = 0.04, }, + armour = { Armour = 182, Evasion = 165, EnergyShield = 50, MovementPenalty = 0.04, }, req = { level = 65, str = 41, dex = 41, int = 41, }, } itemBases["Sacrificial Regalia"] = { @@ -1541,7 +3484,192 @@ itemBases["Sacrificial Regalia"] = { tags = { armour = true, body_armour = true, default = true, str_dex_int_armour = true, }, implicit = "+1 to Level of all Corrupted Skill Gems", implicitModTypes = { { "gem" }, }, - armour = { Armour = 269, Evasion = 245, EnergyShield = 93, MovementPenalty = 0.03, }, + armour = { Armour = 273, Evasion = 248, EnergyShield = 76, MovementPenalty = 0.03, }, + req = { level = 65, str = 72, dex = 72, int = 72, }, +} +itemBases["Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 182, Evasion = 165, EnergyShield = 50, MovementPenalty = 0.04, }, + req = { level = 65, str = 41, dex = 41, int = 41, }, +} +itemBases["Runeforged Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 232, Evasion = 211, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 65, str = 61, dex = 61, }, +} +itemBases["Runeforged Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Evasion = 211, EnergyShield = 64, Ward = 107, MovementPenalty = 0.03, }, + req = { level = 65, dex = 61, int = 61, }, +} +itemBases["Runeforged Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 232, EnergyShield = 64, Ward = 107, MovementPenalty = 0.04, }, + req = { level = 65, str = 61, int = 61, }, +} +itemBases["Runeforged Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 136, Evasion = 124, EnergyShield = 38, Ward = 215, MovementPenalty = 0.04, }, + req = { level = 65, str = 41, dex = 41, int = 41, }, +} +itemBases["Runemastered Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 421, Ward = 150, MovementPenalty = 0.04, }, + req = { level = 65, str = 112, }, +} +itemBases["Runemastered Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Evasion = 384, Ward = 150, MovementPenalty = 0.03, }, + req = { level = 65, dex = 112, }, +} +itemBases["Runemastered Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { EnergyShield = 117, Ward = 150, MovementPenalty = 0.04, }, + req = { level = 65, int = 112, }, +} +itemBases["Runemastered Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Armour = 136, Evasion = 124, EnergyShield = 38, Ward = 322, MovementPenalty = 0.04, }, + req = { level = 65, str = 41, dex = 41, int = 41, }, +} +itemBases["Runefather's Grasping Mail"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "Can roll Ring Modifiers\nCatalysts can be applied to this item", + implicitModTypes = { { }, { }, }, + armour = { Ward = 550, }, + req = { level = 65, str = 57, dex = 57, int = 57, }, +} +itemBases["Runeforged Grand Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 182, Evasion = 165, EnergyShield = 50, Ward = 215, MovementPenalty = 0.04, }, + req = { level = 65, str = 41, dex = 41, int = 41, }, +} +itemBases["Runeforged Sacrificial Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "+1 to Level of all Corrupted Skill Gems", + implicitModTypes = { { "gem" }, }, + armour = { Armour = 200, Evasion = 182, EnergyShield = 56, Ward = 301, MovementPenalty = 0.03, }, + req = { level = 65, str = 72, dex = 72, int = 72, }, +} +itemBases["Runeforged Sacrificial Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "+1 to Level of all Corrupted Skill Gems\n1% increased Maximum Life for each Corrupted Item Equipped", + implicitModTypes = { { "gem" }, { "resource", "life" }, }, + armour = { Armour = 273, Evasion = 248, Ward = 129, MovementPenalty = 0.03, }, + req = { level = 65, str = 80, dex = 80, }, +} +itemBases["Runeforged Sacrificial Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "+1 to Level of all Corrupted Skill Gems\n+1% to all Resistances for each Corrupted Item Equipped", + implicitModTypes = { { "gem" }, { "resistance" }, }, + armour = { Evasion = 248, EnergyShield = 76, Ward = 129, MovementPenalty = 0.03, }, + req = { level = 65, dex = 80, int = 80, }, +} +itemBases["Runeforged Sacrificial Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "+1 to Level of all Corrupted Skill Gems\n(2-4)% increased Chaos Damage for each Corrupted Item Equipped", + implicitModTypes = { { "gem" }, { "chaos_damage", "damage", "chaos" }, }, + armour = { Armour = 273, EnergyShield = 76, Ward = 129, MovementPenalty = 0.03, }, + req = { level = 65, str = 80, int = 80, }, +} +itemBases["Runemastered Grand Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 145, Evasion = 132, EnergyShield = 40, Ward = 86, MovementPenalty = 0.04, }, + req = { level = 65, str = 41, dex = 41, int = 41, }, +} +itemBases["Runemastered Sacrificial Regalia"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicit = "+1 to Level of all Corrupted Skill Gems", + implicitModTypes = { { "gem" }, }, + armour = { Armour = 136, Evasion = 124, EnergyShield = 38, Ward = 215, MovementPenalty = 0.03, }, req = { level = 65, str = 72, dex = 72, int = 72, }, } itemBases["Garment"] = { @@ -1554,6 +3682,26 @@ itemBases["Garment"] = { armour = { }, req = { }, } +itemBases["Runeforged Garment"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 100, }, + req = { }, +} +itemBases["Runemastered Garment"] = { + type = "Body Armour", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 4, + tags = { armour = true, body_armour = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 99, }, + req = { level = 38, }, +} itemBases["Golden Mantle"] = { type = "Body Armour", @@ -1561,7 +3709,7 @@ itemBases["Golden Mantle"] = { socketLimit = 4, tags = { armour = true, body_armour = true, default = true, demigods = true, not_for_sale = true, str_dex_int_armour = true, }, implicit = "+(15-25)% to all Elemental Resistances", - implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, }, - armour = { Armour = 51, Evasion = 44, EnergyShield = 21, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, + armour = { Armour = 216, Evasion = 187, EnergyShield = 74, }, req = { level = 20, str = 7, dex = 7, int = 7, }, } diff --git a/src/Data/Bases/boots.lua b/src/Data/Bases/boots.lua index 31512ab3bc..3c9b600523 100644 --- a/src/Data/Bases/boots.lua +++ b/src/Data/Bases/boots.lua @@ -20,7 +20,7 @@ itemBases["Iron Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 47, }, + armour = { Armour = 57, }, req = { level = 11, str = 17, }, } itemBases["Bronze Greaves"] = { @@ -30,7 +30,7 @@ itemBases["Bronze Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 60, }, + armour = { Armour = 74, }, req = { level = 16, str = 23, }, } itemBases["Trimmed Greaves"] = { @@ -40,7 +40,7 @@ itemBases["Trimmed Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 87, }, + armour = { Armour = 112, }, req = { level = 27, str = 38, }, } itemBases["Stone Greaves"] = { @@ -50,7 +50,7 @@ itemBases["Stone Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 102, }, + armour = { Armour = 133, }, req = { level = 33, str = 45, }, } itemBases["Reefsteel Greaves"] = { @@ -60,7 +60,7 @@ itemBases["Reefsteel Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 132, }, + armour = { Armour = 174, }, req = { level = 45, str = 60, }, } itemBases["Monument Greaves"] = { @@ -70,7 +70,7 @@ itemBases["Monument Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 150, }, + armour = { Armour = 199, }, req = { level = 52, str = 69, }, } itemBases["Totemic Greaves"] = { @@ -80,7 +80,7 @@ itemBases["Totemic Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 182, }, + armour = { Armour = 244, }, req = { level = 65, str = 86, }, } itemBases["Plated Greaves"] = { @@ -90,7 +90,7 @@ itemBases["Plated Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 132, }, + armour = { Armour = 174, }, req = { level = 45, str = 60, }, } itemBases["Lionheart Greaves"] = { @@ -100,7 +100,7 @@ itemBases["Lionheart Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 147, }, + armour = { Armour = 195, }, req = { level = 51, str = 68, }, } itemBases["Elegant Greaves"] = { @@ -110,7 +110,7 @@ itemBases["Elegant Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 155, }, + armour = { Armour = 206, }, req = { level = 54, str = 72, }, } itemBases["Carved Greaves"] = { @@ -120,7 +120,7 @@ itemBases["Carved Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 167, }, + armour = { Armour = 223, }, req = { level = 59, str = 78, }, } itemBases["Bulwark Greaves"] = { @@ -130,7 +130,7 @@ itemBases["Bulwark Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 182, }, + armour = { Armour = 244, }, req = { level = 65, str = 86, }, } itemBases["Ornate Greaves"] = { @@ -140,7 +140,7 @@ itemBases["Ornate Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 200, }, + armour = { Armour = 256, }, req = { level = 70, str = 93, }, } itemBases["Vaal Greaves"] = { @@ -150,7 +150,7 @@ itemBases["Vaal Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 219, }, + armour = { Armour = 268, }, req = { level = 75, str = 101, }, } itemBases["Tasalian Greaves"] = { @@ -160,9 +160,203 @@ itemBases["Tasalian Greaves"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 237, }, + armour = { Armour = 280, }, req = { level = 80, str = 108, }, } +itemBases["Runeforged Rough Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 22, Ward = 14, }, + req = { }, +} +itemBases["Runeforged Iron Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 57, Ward = 21, }, + req = { level = 11, str = 17, }, +} +itemBases["Runeforged Bronze Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 74, Ward = 26, }, + req = { level = 16, str = 23, }, +} +itemBases["Runeforged Trimmed Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 112, Ward = 31, }, + req = { level = 27, str = 38, }, +} +itemBases["Runeforged Stone Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 133, Ward = 36, }, + req = { level = 33, str = 45, }, +} +itemBases["Runeforged Reefsteel Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 174, Ward = 39, }, + req = { level = 45, str = 60, }, +} +itemBases["Runeforged Monument Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 175, }, + req = { level = 52, str = 69, }, +} +itemBases["Runeforged Totemic Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 211, }, + req = { level = 65, str = 86, }, +} +itemBases["Runeforged Elegant Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 185, Ward = 45, }, + req = { level = 54, str = 72, }, +} +itemBases["Runeforged Carved Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 167, Ward = 78, }, + req = { level = 59, str = 78, }, +} +itemBases["Runeforged Bulwark Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 219, Ward = 42, }, + req = { level = 65, str = 86, }, +} +itemBases["Runeforged Ornate Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 134, Ward = 116, }, + req = { level = 70, str = 93, }, +} +itemBases["Runeforged Vaal Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 244, Ward = 42, }, + req = { level = 75, str = 101, }, +} +itemBases["Runeforged Tasalian Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 85, Ward = 180, }, + req = { level = 80, str = 108, }, +} +itemBases["Runemastered Rough Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicit = "10% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 150, Ward = 27, }, + req = { level = 38, str = 51, }, +} +itemBases["Runemastered Iron Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 120, Ward = 27, }, + req = { level = 38, str = 51, }, +} +itemBases["Runemastered Bronze Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 135, Ward = 20, }, + req = { level = 38, str = 51, }, +} +itemBases["Runemastered Trimmed Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 79, Ward = 71, }, + req = { level = 40, str = 54, }, +} +itemBases["Runemastered Stone Greaves"] = { + type = "Boots", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 157, Ward = 46, }, + req = { level = 55, str = 73, }, +} itemBases["Rawhide Boots"] = { type = "Boots", @@ -181,7 +375,7 @@ itemBases["Laced Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, ezomyte_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 38, }, + armour = { Evasion = 47, }, req = { level = 11, dex = 17, }, } itemBases["Embossed Boots"] = { @@ -191,7 +385,7 @@ itemBases["Embossed Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 50, }, + armour = { Evasion = 63, }, req = { level = 16, dex = 23, }, } itemBases["Steeltoe Boots"] = { @@ -201,7 +395,7 @@ itemBases["Steeltoe Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 79, }, + armour = { Evasion = 102, }, req = { level = 28, dex = 39, }, } itemBases["Lizardscale Boots"] = { @@ -211,7 +405,7 @@ itemBases["Lizardscale Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 90, }, + armour = { Evasion = 118, }, req = { level = 33, dex = 45, }, } itemBases["Flared Boots"] = { @@ -221,7 +415,7 @@ itemBases["Flared Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 119, }, + armour = { Evasion = 157, }, req = { level = 45, dex = 60, }, } itemBases["Leatherplate Boots"] = { @@ -231,7 +425,7 @@ itemBases["Leatherplate Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 135, }, + armour = { Evasion = 180, }, req = { level = 52, dex = 69, }, } itemBases["Embroidered Boots"] = { @@ -241,7 +435,7 @@ itemBases["Embroidered Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 166, }, + armour = { Evasion = 222, }, req = { level = 65, dex = 86, }, } itemBases["Bound Boots"] = { @@ -251,7 +445,7 @@ itemBases["Bound Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 119, }, + armour = { Evasion = 157, }, req = { level = 45, dex = 60, }, } itemBases["Sleek Boots"] = { @@ -261,7 +455,7 @@ itemBases["Sleek Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 133, }, + armour = { Evasion = 177, }, req = { level = 51, dex = 68, }, } itemBases["Studded Boots"] = { @@ -271,7 +465,7 @@ itemBases["Studded Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 140, }, + armour = { Evasion = 186, }, req = { level = 54, dex = 72, }, } itemBases["Serpentscale Boots"] = { @@ -281,7 +475,7 @@ itemBases["Serpentscale Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 152, }, + armour = { Evasion = 203, }, req = { level = 59, dex = 78, }, } itemBases["Cinched Boots"] = { @@ -291,7 +485,7 @@ itemBases["Cinched Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 166, }, + armour = { Evasion = 222, }, req = { level = 65, dex = 86, }, } itemBases["Cavalry Boots"] = { @@ -301,7 +495,7 @@ itemBases["Cavalry Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 183, }, + armour = { Evasion = 233, }, req = { level = 70, dex = 93, }, } itemBases["Dragonscale Boots"] = { @@ -311,7 +505,7 @@ itemBases["Dragonscale Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 200, }, + armour = { Evasion = 244, }, req = { level = 75, dex = 101, }, } itemBases["Drakeskin Boots"] = { @@ -321,9 +515,201 @@ itemBases["Drakeskin Boots"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 216, }, + armour = { Evasion = 255, }, + req = { level = 80, dex = 108, }, +} +itemBases["Runeforged Rawhide Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 15, Ward = 14, }, + req = { }, +} +itemBases["Runeforged Laced Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 47, Ward = 21, }, + req = { level = 11, dex = 17, }, +} +itemBases["Runeforged Embossed Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 63, Ward = 26, }, + req = { level = 16, dex = 23, }, +} +itemBases["Runeforged Steeltoe Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 102, Ward = 32, }, + req = { level = 28, dex = 39, }, +} +itemBases["Runeforged Lizardscale Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 118, Ward = 36, }, + req = { level = 33, dex = 45, }, +} +itemBases["Runeforged Flared Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 157, Ward = 39, }, + req = { level = 45, dex = 60, }, +} +itemBases["Runeforged Leatherplate Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 175, }, + req = { level = 52, dex = 69, }, +} +itemBases["Runeforged Embroidered Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 211, }, + req = { level = 65, dex = 86, }, +} +itemBases["Runeforged Studded Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 177, Ward = 36, }, + req = { level = 54, dex = 72, }, +} +itemBases["Runeforged Serpentscale Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 162, Ward = 68, }, + req = { level = 59, dex = 78, }, +} +itemBases["Runeforged Cinched Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 200, Ward = 42, }, + req = { level = 65, dex = 86, }, +} +itemBases["Runeforged Cavalry Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 122, Ward = 116, }, + req = { level = 70, dex = 93, }, +} +itemBases["Runeforged Dragonscale Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 211, Ward = 53, }, + req = { level = 75, dex = 101, }, +} +itemBases["Runeforged Drakeskin Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 89, Ward = 169, }, req = { level = 80, dex = 108, }, } +itemBases["Runemastered Laced Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 54, Ward = 81, }, + req = { level = 38, dex = 51, }, +} +itemBases["Runemastered Embossed Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 94, Ward = 41, }, + req = { level = 38, dex = 51, }, +} +itemBases["Runemastered Steeltoe Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 113, Ward = 28, }, + req = { level = 40, dex = 54, }, +} +itemBases["Runemastered Lizardscale Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 99, Ward = 42, }, + req = { level = 40, dex = 54, }, +} +itemBases["Runemastered Cinched Boots"] = { + type = "Boots", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 178, Ward = 74, }, + req = { level = 65, dex = 86, }, +} itemBases["Straw Sandals"] = { type = "Boots", @@ -352,7 +738,7 @@ itemBases["Lattice Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 25, }, + armour = { EnergyShield = 27, }, req = { level = 16, int = 23, }, } itemBases["Silk Slippers"] = { @@ -362,7 +748,7 @@ itemBases["Silk Slippers"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 34, }, + armour = { EnergyShield = 36, }, req = { level = 27, int = 38, }, } itemBases["Feathered Sandals"] = { @@ -372,7 +758,7 @@ itemBases["Feathered Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 38, }, + armour = { EnergyShield = 41, }, req = { level = 33, int = 45, }, } itemBases["Flax Sandals"] = { @@ -382,7 +768,7 @@ itemBases["Flax Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 48, }, + armour = { EnergyShield = 51, }, req = { level = 45, int = 60, }, } itemBases["Studded Sandals"] = { @@ -392,7 +778,7 @@ itemBases["Studded Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 53, }, + armour = { EnergyShield = 57, }, req = { level = 52, int = 69, }, } itemBases["Elaborate Sandals"] = { @@ -402,7 +788,7 @@ itemBases["Elaborate Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 63, }, + armour = { EnergyShield = 68, }, req = { level = 65, int = 86, }, } itemBases["Laced Sandals"] = { @@ -412,7 +798,7 @@ itemBases["Laced Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 48, }, + armour = { EnergyShield = 51, }, req = { level = 45, int = 60, }, } itemBases["Bangled Sandals"] = { @@ -422,7 +808,7 @@ itemBases["Bangled Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 52, }, + armour = { EnergyShield = 56, }, req = { level = 51, int = 68, }, } itemBases["Elegant Slippers"] = { @@ -432,7 +818,7 @@ itemBases["Elegant Slippers"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 54, }, + armour = { EnergyShield = 58, }, req = { level = 54, int = 72, }, } itemBases["Dunerunner Sandals"] = { @@ -442,7 +828,7 @@ itemBases["Dunerunner Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 58, }, + armour = { EnergyShield = 63, }, req = { level = 59, int = 78, }, } itemBases["Bound Sandals"] = { @@ -452,7 +838,7 @@ itemBases["Bound Sandals"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 63, }, + armour = { EnergyShield = 68, }, req = { level = 65, int = 86, }, } itemBases["Luxurious Slippers"] = { @@ -462,7 +848,7 @@ itemBases["Luxurious Slippers"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 69, }, + armour = { EnergyShield = 73, }, req = { level = 70, int = 93, }, } itemBases["Sandsworn Sandals"] = { @@ -470,151 +856,497 @@ itemBases["Sandsworn Sandals"] = { subType = "Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, int_armour = true, }, + tags = { armour = true, boots = true, default = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 78, }, + req = { level = 75, int = 101, }, +} +itemBases["Sekhema Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 83, }, + req = { level = 80, int = 108, }, +} +itemBases["Runeforged Straw Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 14, Ward = 14, }, + req = { }, +} +itemBases["Runeforged Wrapped Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 22, Ward = 21, }, + req = { level = 11, int = 17, }, +} +itemBases["Runeforged Lattice Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 27, Ward = 26, }, + req = { level = 16, int = 23, }, +} +itemBases["Runeforged Silk Slippers"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 36, Ward = 31, }, + req = { level = 27, int = 38, }, +} +itemBases["Runeforged Feathered Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 41, Ward = 36, }, + req = { level = 33, int = 45, }, +} +itemBases["Runeforged Flax Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 51, Ward = 39, }, + req = { level = 45, int = 60, }, +} +itemBases["Runeforged Studded Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 175, }, + req = { level = 52, int = 69, }, +} +itemBases["Runeforged Elaborate Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 211, }, + req = { level = 65, int = 86, }, +} +itemBases["Runeforged Elegant Slippers"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 50, Ward = 54, }, + req = { level = 54, int = 72, }, +} +itemBases["Runeforged Dunerunner Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 56, Ward = 49, }, + req = { level = 59, int = 78, }, +} +itemBases["Runeforged Bound Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 61, Ward = 42, }, + req = { level = 65, int = 86, }, +} +itemBases["Runeforged Luxurious Slippers"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 37, Ward = 116, }, + req = { level = 70, int = 93, }, +} +itemBases["Runeforged Sandsworn Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 66, Ward = 49, }, + req = { level = 75, int = 101, }, +} +itemBases["Runeforged Sekhema Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 22, Ward = 184, }, + req = { level = 80, int = 108, }, +} +itemBases["Runemastered Straw Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { EnergyShield = 45, Ward = 34, }, + req = { level = 38, int = 51, }, +} +itemBases["Runemastered Wrapped Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, int_armour = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { EnergyShield = 41, Ward = 41, }, + req = { level = 38, int = 51, }, +} +itemBases["Runemastered Lattice Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { EnergyShield = 34, Ward = 34, }, + req = { level = 38, int = 51, }, +} +itemBases["Runemastered Silk Slippers"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 36, Ward = 54, }, + req = { level = 38, int = 51, }, +} +itemBases["Runemastered Feathered Sandals"] = { + type = "Boots", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 33, Ward = 42, }, + req = { level = 40, int = 54, }, +} + +itemBases["Mail Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 22, Evasion = 17, }, + req = { level = 6, str = 7, dex = 7, }, +} +itemBases["Braced Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 41, Evasion = 35, }, + req = { level = 16, str = 14, dex = 14, }, +} +itemBases["Stacked Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 73, Evasion = 65, }, + req = { level = 33, str = 26, dex = 26, }, +} +itemBases["Covered Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 96, Evasion = 86, }, + req = { level = 45, str = 34, dex = 34, }, +} +itemBases["Flexile Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 109, Evasion = 99, }, + req = { level = 52, str = 38, dex = 38, }, +} +itemBases["Bold Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 134, Evasion = 122, }, + req = { level = 65, str = 47, dex = 47, }, +} +itemBases["Soldiering Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 96, Evasion = 86, }, + req = { level = 45, str = 34, dex = 34, }, +} +itemBases["Goldwork Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 107, Evasion = 97, }, + req = { level = 51, str = 38, dex = 38, }, +} +itemBases["Bastion Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 123, Evasion = 111, }, + req = { level = 59, str = 44, dex = 44, }, +} +itemBases["Veteran Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 134, Evasion = 122, }, + req = { level = 65, str = 47, dex = 47, }, +} +itemBases["Noble Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 141, Evasion = 128, }, + req = { level = 70, str = 51, dex = 51, }, +} +itemBases["Fortress Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 75, }, - req = { level = 75, int = 101, }, + armour = { Armour = 147, Evasion = 134, }, + req = { level = 75, str = 56, dex = 56, }, } -itemBases["Sekhema Sandals"] = { +itemBases["Blacksteel Sabatons"] = { type = "Boots", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, boots = true, default = true, karui_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 82, }, - req = { level = 80, int = 108, }, + armour = { Armour = 154, Evasion = 140, }, + req = { level = 80, str = 59, dex = 59, }, } - -itemBases["Mail Sabatons"] = { +itemBases["Runeforged Mail Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 19, Evasion = 15, }, + armour = { Armour = 22, Evasion = 17, Ward = 18, }, req = { level = 6, str = 7, dex = 7, }, } -itemBases["Braced Sabatons"] = { +itemBases["Runeforged Braced Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, maraketh_basetype = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 33, Evasion = 28, }, + armour = { Armour = 41, Evasion = 35, Ward = 26, }, req = { level = 16, str = 14, dex = 14, }, } -itemBases["Stacked Sabatons"] = { +itemBases["Runeforged Stacked Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, vaal_basetype = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 56, Evasion = 50, }, + armour = { Armour = 73, Evasion = 65, Ward = 34, }, req = { level = 33, str = 26, dex = 26, }, } -itemBases["Covered Sabatons"] = { +itemBases["Runeforged Covered Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, karui_basetype = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 73, Evasion = 65, }, + armour = { Armour = 96, Evasion = 86, Ward = 39, }, req = { level = 45, str = 34, dex = 34, }, } -itemBases["Flexile Sabatons"] = { +itemBases["Runeforged Flexile Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 82, Evasion = 74, }, + armour = { Ward = 175, }, req = { level = 52, str = 38, dex = 38, }, } -itemBases["Bold Sabatons"] = { +itemBases["Runeforged Bold Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, Evasion = 91, }, + armour = { Ward = 211, }, req = { level = 65, str = 47, dex = 47, }, } -itemBases["Soldiering Sabatons"] = { +itemBases["Runeforged Bastion Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 73, Evasion = 65, }, - req = { level = 45, str = 34, dex = 34, }, + armour = { Armour = 116, Evasion = 106, Ward = 39, }, + req = { level = 59, str = 44, dex = 44, }, } -itemBases["Goldwork Sabatons"] = { +itemBases["Runeforged Veteran Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 81, Evasion = 73, }, - req = { level = 51, str = 38, dex = 38, }, + armour = { Armour = 127, Evasion = 116, Ward = 42, }, + req = { level = 65, str = 47, dex = 47, }, } -itemBases["Bastion Sabatons"] = { +itemBases["Runeforged Noble Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 92, Evasion = 84, }, - req = { level = 59, str = 44, dex = 44, }, + armour = { Armour = 80, Evasion = 73, Ward = 116, }, + req = { level = 70, str = 51, dex = 51, }, } -itemBases["Veteran Sabatons"] = { +itemBases["Runeforged Fortress Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, Evasion = 91, }, - req = { level = 65, str = 47, dex = 47, }, + armour = { Armour = 121, Evasion = 110, Ward = 63, }, + req = { level = 75, str = 56, dex = 56, }, } -itemBases["Noble Sabatons"] = { +itemBases["Runeforged Blacksteel Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 110, Evasion = 101, }, - req = { level = 70, str = 51, dex = 51, }, + armour = { Armour = 40, Evasion = 37, Ward = 190, }, + req = { level = 80, str = 59, dex = 59, }, } -itemBases["Fortress Sabatons"] = { +itemBases["Runemastered Mail Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, str_dex_armour = true, }, - implicitModTypes = { }, - armour = { Armour = 120, Evasion = 110, }, - req = { level = 75, str = 56, dex = 56, }, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_dex_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 50, Evasion = 44, Ward = 54, }, + req = { level = 38, str = 29, dex = 29, }, } -itemBases["Blacksteel Sabatons"] = { +itemBases["Runemastered Braced Sabatons"] = { type = "Boots", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, boots = true, default = true, karui_basetype = true, str_dex_armour = true, }, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 66, Evasion = 59, Ward = 34, }, + req = { level = 38, str = 29, dex = 29, }, +} +itemBases["Runemastered Stacked Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicit = "10% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 173, Evasion = 155, Ward = 21, }, + req = { level = 40, str = 30, dex = 30, }, +} +itemBases["Runemastered Covered Sabatons"] = { + type = "Boots", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 130, Evasion = 119, }, - req = { level = 80, str = 59, dex = 59, }, + armour = { Armour = 69, Evasion = 63, Ward = 73, }, + req = { level = 55, str = 41, dex = 41, }, } itemBases["Padded Leggings"] = { @@ -624,7 +1356,7 @@ itemBases["Padded Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 18, EnergyShield = 9, }, + armour = { Armour = 20, EnergyShield = 10, }, req = { level = 5, str = 7, int = 7, }, } itemBases["Secured Leggings"] = { @@ -634,7 +1366,7 @@ itemBases["Secured Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, maraketh_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 33, EnergyShield = 14, }, + armour = { Armour = 41, EnergyShield = 15, }, req = { level = 16, str = 14, int = 14, }, } itemBases["Pelt Leggings"] = { @@ -644,7 +1376,7 @@ itemBases["Pelt Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 56, EnergyShield = 21, }, + armour = { Armour = 73, EnergyShield = 22, }, req = { level = 33, str = 26, int = 26, }, } itemBases["Weaver Leggings"] = { @@ -654,7 +1386,7 @@ itemBases["Weaver Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 73, EnergyShield = 26, }, + armour = { Armour = 96, EnergyShield = 28, }, req = { level = 45, str = 34, int = 34, }, } itemBases["Gilt Leggings"] = { @@ -664,7 +1396,7 @@ itemBases["Gilt Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 82, EnergyShield = 29, }, + armour = { Armour = 109, EnergyShield = 31, }, req = { level = 52, str = 38, int = 38, }, } itemBases["Pious Leggings"] = { @@ -674,7 +1406,7 @@ itemBases["Pious Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, EnergyShield = 35, }, + armour = { Armour = 134, EnergyShield = 37, }, req = { level = 65, str = 47, int = 47, }, } itemBases["Adherent Leggings"] = { @@ -684,7 +1416,7 @@ itemBases["Adherent Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 73, EnergyShield = 26, }, + armour = { Armour = 96, EnergyShield = 28, }, req = { level = 45, str = 34, int = 34, }, } itemBases["Bound Leggings"] = { @@ -694,7 +1426,7 @@ itemBases["Bound Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 81, EnergyShield = 29, }, + armour = { Armour = 107, EnergyShield = 31, }, req = { level = 51, str = 38, int = 38, }, } itemBases["Shamanistic Leggings"] = { @@ -704,7 +1436,7 @@ itemBases["Shamanistic Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 92, EnergyShield = 32, }, + armour = { Armour = 123, EnergyShield = 34, }, req = { level = 59, str = 44, int = 44, }, } itemBases["Faithful Leggings"] = { @@ -714,7 +1446,7 @@ itemBases["Faithful Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, EnergyShield = 35, }, + armour = { Armour = 134, EnergyShield = 37, }, req = { level = 65, str = 47, int = 47, }, } itemBases["Apostle Leggings"] = { @@ -724,7 +1456,7 @@ itemBases["Apostle Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 110, EnergyShield = 38, }, + armour = { Armour = 134, EnergyShield = 37, }, req = { level = 70, str = 51, int = 51, }, } itemBases["Warlock Leggings"] = { @@ -734,7 +1466,7 @@ itemBases["Warlock Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 120, EnergyShield = 42, }, + armour = { Armour = 134, EnergyShield = 37, }, req = { level = 75, str = 56, int = 56, }, } itemBases["Cryptic Leggings"] = { @@ -744,9 +1476,130 @@ itemBases["Cryptic Leggings"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 130, EnergyShield = 45, }, + armour = { Armour = 134, EnergyShield = 37, }, + req = { level = 80, str = 59, int = 59, }, +} +itemBases["Runeforged Padded Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, ezomyte_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 20, EnergyShield = 10, Ward = 17, }, + req = { level = 5, str = 7, int = 7, }, +} +itemBases["Runeforged Secured Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 41, EnergyShield = 15, Ward = 26, }, + req = { level = 16, str = 14, int = 14, }, +} +itemBases["Runeforged Pelt Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 73, EnergyShield = 22, Ward = 34, }, + req = { level = 33, str = 26, int = 26, }, +} +itemBases["Runeforged Weaver Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 96, EnergyShield = 28, Ward = 39, }, + req = { level = 45, str = 34, int = 34, }, +} +itemBases["Runeforged Gilt Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 175, }, + req = { level = 52, str = 38, int = 38, }, +} +itemBases["Runeforged Pious Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 211, }, + req = { level = 65, str = 47, int = 47, }, +} +itemBases["Runeforged Shamanistic Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 110, EnergyShield = 31, Ward = 49, }, + req = { level = 59, str = 44, int = 44, }, +} +itemBases["Runeforged Faithful Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 121, EnergyShield = 34, Ward = 42, }, + req = { level = 65, str = 47, int = 47, }, +} +itemBases["Runeforged Apostle Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 74, EnergyShield = 20, Ward = 116, }, + req = { level = 70, str = 51, int = 51, }, +} +itemBases["Runeforged Warlock Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 134, EnergyShield = 37, Ward = 42, }, + req = { level = 75, str = 56, int = 56, }, +} +itemBases["Runeforged Cryptic Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 34, EnergyShield = 9, Ward = 201, }, req = { level = 80, str = 59, int = 59, }, } +itemBases["Runemastered Secured Leggings"] = { + type = "Boots", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Armour = 58, EnergyShield = 17, Ward = 41, }, + req = { level = 38, str = 29, int = 29, }, +} itemBases["Frayed Shoes"] = { type = "Boots", @@ -755,7 +1608,7 @@ itemBases["Frayed Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, ezomyte_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 13, EnergyShield = 9, }, + armour = { Evasion = 15, EnergyShield = 10, }, req = { level = 5, dex = 7, int = 7, }, } itemBases["Threaded Shoes"] = { @@ -765,7 +1618,7 @@ itemBases["Threaded Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 28, EnergyShield = 14, }, + armour = { Evasion = 35, EnergyShield = 15, }, req = { level = 16, dex = 14, int = 14, }, } itemBases["Hunting Shoes"] = { @@ -775,7 +1628,7 @@ itemBases["Hunting Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 50, EnergyShield = 21, }, + armour = { Evasion = 65, EnergyShield = 22, }, req = { level = 33, dex = 26, int = 26, }, } itemBases["Steelpoint Shoes"] = { @@ -785,7 +1638,7 @@ itemBases["Steelpoint Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 65, EnergyShield = 26, }, + armour = { Evasion = 86, EnergyShield = 28, }, req = { level = 45, dex = 34, int = 34, }, } itemBases["Velour Shoes"] = { @@ -795,7 +1648,7 @@ itemBases["Velour Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 74, EnergyShield = 29, }, + armour = { Evasion = 99, EnergyShield = 31, }, req = { level = 52, dex = 38, int = 38, }, } itemBases["Bladed Shoes"] = { @@ -805,7 +1658,7 @@ itemBases["Bladed Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 91, EnergyShield = 35, }, + armour = { Evasion = 122, EnergyShield = 37, }, req = { level = 65, dex = 47, int = 47, }, } itemBases["Wayfarer Shoes"] = { @@ -815,7 +1668,7 @@ itemBases["Wayfarer Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 65, EnergyShield = 26, }, + armour = { Evasion = 86, EnergyShield = 28, }, req = { level = 45, dex = 34, int = 34, }, } itemBases["Silverbuckled Shoes"] = { @@ -825,7 +1678,7 @@ itemBases["Silverbuckled Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 73, EnergyShield = 29, }, + armour = { Evasion = 97, EnergyShield = 31, }, req = { level = 51, dex = 38, int = 38, }, } itemBases["Treerunner Shoes"] = { @@ -835,7 +1688,7 @@ itemBases["Treerunner Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 84, EnergyShield = 32, }, + armour = { Evasion = 111, EnergyShield = 34, }, req = { level = 59, dex = 44, int = 44, }, } itemBases["Wanderer Shoes"] = { @@ -845,7 +1698,7 @@ itemBases["Wanderer Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 91, EnergyShield = 35, }, + armour = { Evasion = 122, EnergyShield = 37, }, req = { level = 65, dex = 47, int = 47, }, } itemBases["Charmed Shoes"] = { @@ -855,7 +1708,7 @@ itemBases["Charmed Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 101, EnergyShield = 38, }, + armour = { Evasion = 128, EnergyShield = 39, }, req = { level = 70, dex = 51, int = 51, }, } itemBases["Quickslip Shoes"] = { @@ -865,7 +1718,7 @@ itemBases["Quickslip Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, }, implicitModTypes = { }, - armour = { Evasion = 110, EnergyShield = 42, }, + armour = { Evasion = 134, EnergyShield = 41, }, req = { level = 75, dex = 56, int = 56, }, } itemBases["Daggerfoot Shoes"] = { @@ -875,9 +1728,150 @@ itemBases["Daggerfoot Shoes"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, dex_int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 119, EnergyShield = 45, }, + armour = { Evasion = 140, EnergyShield = 43, }, + req = { level = 80, dex = 59, int = 59, }, +} +itemBases["Runeforged Frayed Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, ezomyte_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 15, EnergyShield = 10, Ward = 17, }, + req = { level = 5, dex = 7, int = 7, }, +} +itemBases["Runeforged Threaded Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 35, EnergyShield = 15, Ward = 26, }, + req = { level = 16, dex = 14, int = 14, }, +} +itemBases["Runeforged Hunting Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 65, EnergyShield = 22, Ward = 34, }, + req = { level = 33, dex = 26, int = 26, }, +} +itemBases["Runeforged Steelpoint Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 86, EnergyShield = 28, Ward = 39, }, + req = { level = 45, dex = 34, int = 34, }, +} +itemBases["Runeforged Velour Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 175, }, + req = { level = 52, dex = 38, int = 38, }, +} +itemBases["Runeforged Bladed Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 211, }, + req = { level = 65, dex = 47, int = 47, }, +} +itemBases["Runeforged Treerunner Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 95, EnergyShield = 29, Ward = 58, }, + req = { level = 59, dex = 44, int = 44, }, +} +itemBases["Runeforged Wanderer Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 110, EnergyShield = 34, Ward = 42, }, + req = { level = 65, dex = 47, int = 47, }, +} +itemBases["Runeforged Charmed Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 67, EnergyShield = 20, Ward = 116, }, + req = { level = 70, dex = 51, int = 51, }, +} +itemBases["Runeforged Quickslip Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 128, EnergyShield = 39, Ward = 32, }, + req = { level = 75, dex = 56, int = 56, }, +} +itemBases["Runeforged Daggerfoot Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 34, EnergyShield = 10, Ward = 194, }, req = { level = 80, dex = 59, int = 59, }, } +itemBases["Runemastered Threaded Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicit = "5% increased Movement Speed", + implicitModTypes = { { "speed" }, }, + armour = { Evasion = 55, EnergyShield = 19, Ward = 34, }, + req = { level = 38, dex = 29, int = 29, }, +} +itemBases["Runemastered Hunting Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 70, EnergyShield = 23, Ward = 28, }, + req = { level = 40, dex = 30, int = 30, }, +} +itemBases["Runemastered Velour Shoes"] = { + type = "Boots", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, dex_int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 85, EnergyShield = 26, Ward = 63, }, + req = { level = 65, dex = 47, int = 47, }, +} itemBases["Grand Cuisses"] = { type = "Boots", @@ -886,7 +1880,27 @@ itemBases["Grand Cuisses"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, str_dex_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 66, Evasion = 60, EnergyShield = 23, }, + armour = { Armour = 89, Evasion = 81, EnergyShield = 25, }, + req = { level = 65, str = 34, dex = 34, int = 34, }, +} +itemBases["Runeforged Grand Cuisses"] = { + type = "Boots", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 67, Evasion = 61, EnergyShield = 19, Ward = 53, }, + req = { level = 65, str = 34, dex = 34, int = 34, }, +} +itemBases["Runemastered Grand Cuisses"] = { + type = "Boots", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, boots = true, default = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 45, Evasion = 41, EnergyShield = 12, Ward = 106, }, req = { level = 65, str = 34, dex = 34, int = 34, }, } @@ -896,7 +1910,7 @@ itemBases["Golden Caligae"] = { socketLimit = 3, tags = { armour = true, boots = true, default = true, demigods = true, not_for_sale = true, }, implicit = "+(8-16)% to all Elemental Resistances", - implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, armour = { }, req = { level = 12, }, } diff --git a/src/Data/Bases/bow.lua b/src/Data/Bases/bow.lua index 7d5d9fe410..261812b246 100644 --- a/src/Data/Bases/bow.lua +++ b/src/Data/Bases/bow.lua @@ -25,7 +25,7 @@ itemBases["Warden Bow"] = { quality = 20, socketLimit = 4, tags = { bow = true, default = true, ezomyte_basetype = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "(20-30)% chance to Chain an additional time", + implicit = "(25-35)% chance to Chain an additional time", implicitModTypes = { { }, }, weapon = { PhysicalMin = 12, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, }, req = { level = 11, dex = 23, }, @@ -83,7 +83,7 @@ itemBases["Artillery Bow"] = { tags = { bow = true, default = true, karui_basetype = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "50% reduced Projectile Range", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 39, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, }, + weapon = { PhysicalMin = 39, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, }, req = { level = 45, dex = 80, }, } itemBases["Tribal Bow"] = { @@ -136,7 +136,7 @@ itemBases["Protector Bow"] = { quality = 20, socketLimit = 4, tags = { bow = true, default = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "(20-30)% chance to Chain an additional time", + implicit = "(25-35)% chance to Chain an additional time", implicitModTypes = { { }, }, weapon = { PhysicalMin = 35, PhysicalMax = 53, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, }, req = { level = 48, dex = 86, }, @@ -178,6 +178,71 @@ itemBases["Militant Bow"] = { weapon = { PhysicalMin = 46, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, req = { level = 62, dex = 109, }, } +itemBases["Runeforged Crude Bow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { ChaosMin = 42, ChaosMax = 62, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, + req = { level = 55, dex = 97, }, +} +itemBases["Runeforged Shortbow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.25, Range = 120, }, + req = { level = 38, dex = 68, }, +} +itemBases["Runeforged Shortbow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Projectiles have 50% chance for an additional Projectile when Forking", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 44, PhysicalMax = 81, CritChanceBase = 5, AttackRateBase = 1.4, Range = 120, }, + req = { level = 55, dex = 97, }, +} +itemBases["Runeforged Recurve Bow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, maraketh_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 41, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, }, + req = { level = 40, dex = 72, }, +} +itemBases["Runeforged Composite Bow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, maraketh_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 53, PhysicalMax = 88, CritChanceBase = 5, AttackRateBase = 1.2, Range = 120, }, + req = { level = 55, dex = 97, }, +} +itemBases["Runeforged Dualstring Bow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, maraketh_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "+50% Surpassing chance to fire an additional Arrow", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 45, PhysicalMax = 83, CritChanceBase = 6.5, AttackRateBase = 1.15, Range = 120, }, + req = { level = 55, dex = 97, }, +} +itemBases["Runeforged Zealot Bow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 44, PhysicalMax = 67, ChaosMin = 7, ChaosMax = 19, CritChanceBase = 10, AttackRateBase = 1.2, Range = 120, }, + req = { level = 55, dex = 97, }, +} itemBases["Ironwood Shortbow"] = { type = "Bow", quality = 20, @@ -201,7 +266,7 @@ itemBases["Guardian Bow"] = { quality = 20, socketLimit = 4, tags = { bow = true, default = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "(20-30)% chance to Chain an additional time", + implicit = "(25-35)% chance to Chain an additional time", implicitModTypes = { { }, }, weapon = { PhysicalMin = 53, PhysicalMax = 88, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, }, req = { level = 77, dex = 163, }, @@ -241,6 +306,15 @@ itemBases["Obliterator Bow"] = { tags = { bow = true, default = true, karui_basetype = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "50% reduced Projectile Range", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.15, Range = 120, }, + weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.1, Range = 120, }, req = { level = 78, dex = 163, }, } +itemBases["Heartwood Shortbow"] = { + type = "Bow", + quality = 20, + socketLimit = 4, + tags = { bow = true, default = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.25, Range = 120, }, + req = { level = 67, dex = 134, }, +} diff --git a/src/Data/Bases/crossbow.lua b/src/Data/Bases/crossbow.lua index d80c606cd7..7723ac8f1e 100644 --- a/src/Data/Bases/crossbow.lua +++ b/src/Data/Bases/crossbow.lua @@ -181,6 +181,69 @@ itemBases["Bleak Crossbow"] = { weapon = { PhysicalMin = 27, PhysicalMax = 109, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, }, req = { level = 62, str = 60, dex = 60, }, } +itemBases["Runeforged Makeshift Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 41, PhysicalMax = 77, ColdMin = 33, ColdMax = 63, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.8, }, + req = { level = 38, str = 39, dex = 39, }, +} +itemBases["Runeforged Tense Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 44, PhysicalMax = 83, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, }, + req = { level = 38, str = 39, dex = 39, }, +} +itemBases["Runemastered Tense Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.6, }, + req = { level = 55, str = 54, dex = 54, }, +} +itemBases["Runeforged Sturdy Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, ezomyte_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 4, PhysicalMax = 41, LightningMin = 26, LightningMax = 234, LightningMax = 67, CritChanceBase = 7, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.85, }, + req = { level = 38, str = 39, dex = 39, }, +} +itemBases["Runeforged Dyad Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, maraketh_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 32, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 1.1, }, + req = { level = 40, str = 40, dex = 40, }, +} +itemBases["Runemastered Dyad Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, maraketh_basetype = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 43, PhysicalMax = 171, CritChanceBase = 7, AttackRateBase = 1.6, Range = 120, ReloadTimeBase = 0.75, }, + req = { level = 65, str = 63, dex = 63, }, +} +itemBases["Runeforged Bombard Crossbow"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { crossbow = true, default = true, ranged = true, runeforged = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 21, PhysicalMax = 85, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.75, }, + req = { level = 55, str = 54, dex = 54, }, +} itemBases["Stout Crossbow"] = { type = "Crossbow", quality = 20, @@ -248,3 +311,13 @@ itemBases["Elegant Crossbow"] = { weapon = { PhysicalMin = 31, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.65, Range = 120, ReloadTimeBase = 0.85, }, req = { level = 78, str = 89, dex = 89, }, } +itemBases["Trarthan Cannon"] = { + type = "Crossbow", + quality = 20, + socketLimit = 4, + tags = { cannon = true, crossbow = true, default = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Cannot load or fire Ammunition", + implicitModTypes = { { "skill" }, }, + weapon = { PhysicalMin = 58, PhysicalMax = 134, CritChanceBase = 5, AttackRateBase = 1.4, Range = 120, }, + req = { level = 65, str = 114, dex = 63, }, +} diff --git a/src/Data/Bases/flail.lua b/src/Data/Bases/flail.lua index 7f44b5a656..157ca13ed4 100644 --- a/src/Data/Bases/flail.lua +++ b/src/Data/Bases/flail.lua @@ -8,7 +8,7 @@ itemBases["Splintered Flail"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { }, } itemBases["Chain Flail"] = { @@ -17,7 +17,7 @@ itemBases["Chain Flail"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 8, PhysicalMax = 14, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 8, PhysicalMax = 14, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 6, str = 12, }, } itemBases["Holy Flail"] = { @@ -26,7 +26,7 @@ itemBases["Holy Flail"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 10, PhysicalMax = 17, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 10, PhysicalMax = 17, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 11, str = 18, int = 9, }, } itemBases["Iron Flail"] = { @@ -35,7 +35,7 @@ itemBases["Iron Flail"] = { socketLimit = 3, tags = { default = true, flail = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 16, str = 25, int = 12, }, } itemBases["Twin Flail"] = { @@ -45,7 +45,7 @@ itemBases["Twin Flail"] = { tags = { default = true, flail = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Bifurcates Critical Hits", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 8, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 8, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, req = { level = 20, str = 30, int = 14, }, } itemBases["Slender Flail"] = { @@ -54,7 +54,7 @@ itemBases["Slender Flail"] = { socketLimit = 3, tags = { default = true, flail = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 8, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 8, AttackRateBase = 1.5, Range = 13, }, req = { level = 26, str = 38, int = 17, }, } itemBases["Stone Flail"] = { @@ -64,7 +64,7 @@ itemBases["Stone Flail"] = { tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicit = "Unblockable", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 23, PhysicalMax = 38, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 23, PhysicalMax = 38, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 33, str = 47, int = 20, }, } itemBases["Ring Flail"] = { @@ -73,7 +73,7 @@ itemBases["Ring Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 23, PhysicalMax = 44, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 23, PhysicalMax = 44, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 38, str = 54, int = 23, }, } itemBases["Guarded Flail"] = { @@ -82,7 +82,7 @@ itemBases["Guarded Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 10, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, req = { level = 45, str = 63, int = 26, }, } itemBases["Icicle Flail"] = { @@ -91,7 +91,7 @@ itemBases["Icicle Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { ColdMin = 24, ColdMax = 55, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { ColdMin = 24, ColdMax = 55, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 47, str = 66, int = 27, }, } itemBases["Tearing Flail"] = { @@ -100,7 +100,7 @@ itemBases["Tearing Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 27, PhysicalMax = 56, CritChanceBase = 12.5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 27, PhysicalMax = 56, CritChanceBase = 12.5, AttackRateBase = 1.4, Range = 13, }, req = { level = 52, str = 72, int = 29, }, } itemBases["Great Flail"] = { @@ -109,7 +109,7 @@ itemBases["Great Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 35, PhysicalMax = 58, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 35, PhysicalMax = 58, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 58, str = 80, int = 32, }, } itemBases["Abyssal Flail"] = { @@ -118,6 +118,6 @@ itemBases["Abyssal Flail"] = { socketLimit = 3, tags = { default = true, flail = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 36, PhysicalMax = 66, CritChanceBase = 10, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 36, PhysicalMax = 66, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, req = { level = 65, str = 89, int = 36, }, } diff --git a/src/Data/Bases/focus.lua b/src/Data/Bases/focus.lua index 56129e62da..a3c352f077 100644 --- a/src/Data/Bases/focus.lua +++ b/src/Data/Bases/focus.lua @@ -27,7 +27,7 @@ itemBases["Antler Focus"] = { socketLimit = 3, tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 17, }, + armour = { EnergyShield = 18, }, req = { level = 10, int = 17, }, } itemBases["Engraved Focus"] = { @@ -36,7 +36,7 @@ itemBases["Engraved Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 21, }, + armour = { EnergyShield = 22, }, req = { level = 16, int = 25, }, } itemBases["Tonal Focus"] = { @@ -45,7 +45,7 @@ itemBases["Tonal Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 25, }, + armour = { EnergyShield = 26, }, req = { level = 22, int = 33, }, } itemBases["Crystal Focus"] = { @@ -54,7 +54,7 @@ itemBases["Crystal Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 28, }, + armour = { EnergyShield = 29, }, req = { level = 26, int = 38, }, } itemBases["Voodoo Focus"] = { @@ -63,7 +63,7 @@ itemBases["Voodoo Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 32, }, + armour = { EnergyShield = 34, }, req = { level = 33, int = 48, }, } itemBases["Plumed Focus"] = { @@ -72,7 +72,7 @@ itemBases["Plumed Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 34, }, + armour = { EnergyShield = 36, }, req = { level = 36, int = 52, }, } itemBases["Runed Focus"] = { @@ -81,7 +81,7 @@ itemBases["Runed Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 40, }, + armour = { EnergyShield = 42, }, req = { level = 45, int = 64, }, } itemBases["Whorl Focus"] = { @@ -90,7 +90,7 @@ itemBases["Whorl Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 43, }, + armour = { EnergyShield = 47, }, req = { level = 51, int = 73, }, } itemBases["Elegant Focus"] = { @@ -99,7 +99,7 @@ itemBases["Elegant Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 44, }, + armour = { EnergyShield = 47, }, req = { level = 52, int = 74, }, } itemBases["Attuned Focus"] = { @@ -108,7 +108,7 @@ itemBases["Attuned Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 47, }, + armour = { EnergyShield = 51, }, req = { level = 57, int = 81, }, } itemBases["Magus Focus"] = { @@ -117,7 +117,7 @@ itemBases["Magus Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 52, }, + armour = { EnergyShield = 56, }, req = { level = 65, int = 91, }, } itemBases["Wreath Focus"] = { @@ -126,7 +126,7 @@ itemBases["Wreath Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 40, }, + armour = { EnergyShield = 42, }, req = { level = 45, int = 64, }, } itemBases["Staghorn Focus"] = { @@ -135,7 +135,7 @@ itemBases["Staghorn Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 42, }, + armour = { EnergyShield = 45, }, req = { level = 48, int = 69, }, } itemBases["Jingling Focus"] = { @@ -144,7 +144,7 @@ itemBases["Jingling Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 43, }, + armour = { EnergyShield = 47, }, req = { level = 51, int = 73, }, } itemBases["Arrayed Focus"] = { @@ -153,7 +153,7 @@ itemBases["Arrayed Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 45, }, + armour = { EnergyShield = 49, }, req = { level = 54, int = 77, }, } itemBases["Cultist Focus"] = { @@ -162,7 +162,7 @@ itemBases["Cultist Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 49, }, + armour = { EnergyShield = 52, }, req = { level = 59, int = 83, }, } itemBases["Hallowed Focus"] = { @@ -171,7 +171,7 @@ itemBases["Hallowed Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 53, }, + armour = { EnergyShield = 57, }, req = { level = 61, int = 86, }, } itemBases["Druidic Focus"] = { @@ -180,7 +180,7 @@ itemBases["Druidic Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 58, }, + armour = { EnergyShield = 62, }, req = { level = 65, int = 91, }, } itemBases["Leyline Focus"] = { @@ -189,7 +189,7 @@ itemBases["Leyline Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 66, }, + armour = { EnergyShield = 71, }, req = { level = 70, int = 99, }, } itemBases["Sacred Focus"] = { @@ -198,7 +198,7 @@ itemBases["Sacred Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 75, }, + armour = { EnergyShield = 81, }, req = { level = 75, int = 107, }, } itemBases["Tasalian Focus"] = { @@ -207,6 +207,258 @@ itemBases["Tasalian Focus"] = { socketLimit = 3, tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 85, }, + armour = { EnergyShield = 91, }, req = { level = 80, int = 115, }, } +itemBases["Runeforged Twig Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 12, Ward = 12, }, + req = { }, +} +itemBases["Runeforged Woven Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 15, Ward = 15, }, + req = { level = 6, int = 11, }, +} +itemBases["Runeforged Antler Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 18, Ward = 17, }, + req = { level = 10, int = 17, }, +} +itemBases["Runeforged Engraved Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 22, Ward = 22, }, + req = { level = 16, int = 25, }, +} +itemBases["Runeforged Tonal Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 26, Ward = 24, }, + req = { level = 22, int = 33, }, +} +itemBases["Runeforged Crystal Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 29, Ward = 25, }, + req = { level = 26, int = 38, }, +} +itemBases["Runeforged Voodoo Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 34, Ward = 28, }, + req = { level = 33, int = 48, }, +} +itemBases["Runeforged Plumed Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 36, Ward = 30, }, + req = { level = 36, int = 52, }, +} +itemBases["Runeforged Runed Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 42, Ward = 32, }, + req = { level = 45, int = 64, }, +} +itemBases["Runeforged Whorl Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 47, Ward = 34, }, + req = { level = 51, int = 73, }, +} +itemBases["Runeforged Elegant Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 146, }, + req = { level = 52, int = 74, }, +} +itemBases["Runeforged Attuned Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 157, }, + req = { level = 57, int = 81, }, +} +itemBases["Runeforged Magus Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 176, }, + req = { level = 65, int = 91, }, +} +itemBases["Runeforged Arrayed Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 41, Ward = 45, }, + req = { level = 54, int = 77, }, +} +itemBases["Runeforged Cultist Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 50, Ward = 32, }, + req = { level = 59, int = 83, }, +} +itemBases["Runeforged Hallowed Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 40, Ward = 58, }, + req = { level = 61, int = 86, }, +} +itemBases["Runeforged Druidic Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 51, Ward = 62, }, + req = { level = 65, int = 91, }, +} +itemBases["Runeforged Leyline Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 39, Ward = 114, }, + req = { level = 70, int = 99, }, +} +itemBases["Runeforged Sacred Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 65, Ward = 53, }, + req = { level = 75, int = 107, }, +} +itemBases["Runeforged Tasalian Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 24, Ward = 181, }, + req = { level = 80, int = 115, }, +} +itemBases["Runemastered Twig Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 38, Ward = 23, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Woven Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, Ward = 45, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Antler Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, focus = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, Ward = 34, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Engraved Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 38, Ward = 45, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Tonal Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 19, Ward = 57, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Crystal Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, Ward = 47, }, + req = { level = 40, int = 58, }, +} +itemBases["Runemastered Voodoo Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 40, Ward = 31, }, + req = { level = 55, int = 78, }, +} +itemBases["Runemastered Plumed Focus"] = { + type = "Focus", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, focus = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, Ward = 106, }, + req = { level = 75, int = 91, }, +} diff --git a/src/Data/Bases/gloves.lua b/src/Data/Bases/gloves.lua index 17f66889fe..4b16d8de0e 100644 --- a/src/Data/Bases/gloves.lua +++ b/src/Data/Bases/gloves.lua @@ -20,7 +20,7 @@ itemBases["Riveted Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 31, }, + armour = { Armour = 38, }, req = { level = 11, str = 16, }, } itemBases["Tempered Mitts"] = { @@ -30,7 +30,7 @@ itemBases["Tempered Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 40, }, + armour = { Armour = 49, }, req = { level = 16, str = 22, }, } itemBases["Bolstered Mitts"] = { @@ -40,7 +40,7 @@ itemBases["Bolstered Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 58, }, + armour = { Armour = 75, }, req = { level = 27, str = 35, }, } itemBases["Moulded Mitts"] = { @@ -50,7 +50,7 @@ itemBases["Moulded Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 68, }, + armour = { Armour = 89, }, req = { level = 33, str = 42, }, } itemBases["Detailed Mitts"] = { @@ -60,7 +60,7 @@ itemBases["Detailed Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 88, }, + armour = { Armour = 116, }, req = { level = 45, str = 56, }, } itemBases["Titan Mitts"] = { @@ -70,7 +70,7 @@ itemBases["Titan Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 100, }, + armour = { Armour = 132, }, req = { level = 52, str = 64, }, } itemBases["Grand Mitts"] = { @@ -80,7 +80,7 @@ itemBases["Grand Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 122, }, + armour = { Armour = 162, }, req = { level = 65, str = 80, }, } itemBases["Plated Mitts"] = { @@ -90,7 +90,7 @@ itemBases["Plated Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 88, }, + armour = { Armour = 116, }, req = { level = 45, str = 56, }, } itemBases["Elegant Mitts"] = { @@ -100,7 +100,7 @@ itemBases["Elegant Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 98, }, + armour = { Armour = 130, }, req = { level = 51, str = 64, }, } itemBases["Ancient Mitts"] = { @@ -110,7 +110,7 @@ itemBases["Ancient Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 103, }, + armour = { Armour = 137, }, req = { level = 54, str = 67, }, } itemBases["Feathered Mitts"] = { @@ -120,7 +120,7 @@ itemBases["Feathered Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 111, }, + armour = { Armour = 149, }, req = { level = 59, str = 73, }, } itemBases["Knightly Mitts"] = { @@ -130,7 +130,7 @@ itemBases["Knightly Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 122, }, + armour = { Armour = 162, }, req = { level = 65, str = 80, }, } itemBases["Ornate Mitts"] = { @@ -140,7 +140,7 @@ itemBases["Ornate Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 134, }, + armour = { Armour = 171, }, req = { level = 70, str = 87, }, } itemBases["Vaal Mitts"] = { @@ -150,7 +150,7 @@ itemBases["Vaal Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 146, }, + armour = { Armour = 179, }, req = { level = 75, str = 94, }, } itemBases["Massive Mitts"] = { @@ -160,9 +160,209 @@ itemBases["Massive Mitts"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 158, }, + armour = { Armour = 187, }, req = { level = 80, str = 101, }, } +itemBases["Runeforged Stocky Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 15, Ward = 10, }, + req = { }, +} +itemBases["Runeforged Riveted Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 38, Ward = 16, }, + req = { level = 11, str = 16, }, +} +itemBases["Runeforged Tempered Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 49, Ward = 17, }, + req = { level = 16, str = 22, }, +} +itemBases["Runeforged Bolstered Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 75, Ward = 21, }, + req = { level = 27, str = 35, }, +} +itemBases["Runeforged Moulded Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 89, Ward = 22, }, + req = { level = 33, str = 42, }, +} +itemBases["Runeforged Detailed Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 116, Ward = 26, }, + req = { level = 45, str = 56, }, +} +itemBases["Runeforged Titan Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 117, }, + req = { level = 52, str = 64, }, +} +itemBases["Runeforged Grand Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 141, }, + req = { level = 65, str = 80, }, +} +itemBases["Runeforged Ancient Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 103, Ward = 48, }, + req = { level = 54, str = 67, }, +} +itemBases["Runeforged Feathered Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 134, Ward = 32, }, + req = { level = 59, str = 73, }, +} +itemBases["Runeforged Knightly Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 146, Ward = 28, }, + req = { level = 65, str = 80, }, +} +itemBases["Runeforged Ornate Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 106, Ward = 63, }, + req = { level = 70, str = 87, }, +} +itemBases["Runeforged Vaal Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 162, Ward = 28, }, + req = { level = 75, str = 94, }, +} +itemBases["Runeforged Massive Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 49, Ward = 127, }, + req = { level = 80, str = 101, }, +} +itemBases["Runemastered Stocky Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 50, Ward = 45, }, + req = { level = 38, str = 48, }, +} +itemBases["Runemastered Riveted Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 80, Ward = 23, }, + req = { level = 38, str = 48, }, +} +itemBases["Runemastered Tempered Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 95, Ward = 23, }, + req = { level = 38, str = 48, }, +} +itemBases["Runemastered Bolstered Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 80, Ward = 27, }, + req = { level = 38, str = 48, }, +} +itemBases["Runemastered Moulded Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 70, Ward = 61, }, + req = { level = 55, str = 68, }, +} +itemBases["Runemastered Titan Mitts"] = { + type = "Gloves", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 114, Ward = 49, }, + req = { level = 65, str = 80, }, +} itemBases["Suede Bracers"] = { type = "Gloves", @@ -181,7 +381,7 @@ itemBases["Firm Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 26, }, + armour = { Evasion = 31, }, req = { level = 11, dex = 16, }, } itemBases["Bound Bracers"] = { @@ -191,7 +391,7 @@ itemBases["Bound Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 33, }, + armour = { Evasion = 42, }, req = { level = 16, dex = 22, }, } itemBases["Sectioned Bracers"] = { @@ -201,7 +401,7 @@ itemBases["Sectioned Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 52, }, + armour = { Evasion = 68, }, req = { level = 28, dex = 36, }, } itemBases["Spined Bracers"] = { @@ -211,7 +411,7 @@ itemBases["Spined Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 60, }, + armour = { Evasion = 79, }, req = { level = 33, dex = 42, }, } itemBases["Fine Bracers"] = { @@ -221,7 +421,7 @@ itemBases["Fine Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 79, }, + armour = { Evasion = 105, }, req = { level = 45, dex = 56, }, } itemBases["Hardened Bracers"] = { @@ -231,7 +431,7 @@ itemBases["Hardened Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 90, }, + armour = { Evasion = 120, }, req = { level = 52, dex = 64, }, } itemBases["Engraved Bracers"] = { @@ -241,7 +441,7 @@ itemBases["Engraved Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 111, }, + armour = { Evasion = 148, }, req = { level = 65, dex = 80, }, } itemBases["Hunting Bracers"] = { @@ -251,7 +451,7 @@ itemBases["Hunting Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 79, }, + armour = { Evasion = 105, }, req = { level = 45, dex = 56, }, } itemBases["Swift Bracers"] = { @@ -261,7 +461,7 @@ itemBases["Swift Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 89, }, + armour = { Evasion = 118, }, req = { level = 51, dex = 64, }, } itemBases["Refined Bracers"] = { @@ -271,7 +471,7 @@ itemBases["Refined Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 93, }, + armour = { Evasion = 124, }, req = { level = 54, dex = 67, }, } itemBases["Spiked Bracers"] = { @@ -281,7 +481,7 @@ itemBases["Spiked Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 101, }, + armour = { Evasion = 135, }, req = { level = 59, dex = 73, }, } itemBases["Stalking Bracers"] = { @@ -291,7 +491,7 @@ itemBases["Stalking Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 111, }, + armour = { Evasion = 148, }, req = { level = 65, dex = 80, }, } itemBases["Grand Bracers"] = { @@ -301,7 +501,7 @@ itemBases["Grand Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 122, }, + armour = { Evasion = 155, }, req = { level = 70, dex = 87, }, } itemBases["Barbed Bracers"] = { @@ -311,7 +511,7 @@ itemBases["Barbed Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 133, }, + armour = { Evasion = 163, }, req = { level = 75, dex = 94, }, } itemBases["Polished Bracers"] = { @@ -321,300 +521,860 @@ itemBases["Polished Bracers"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, gloves = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 144, }, + armour = { Evasion = 170, }, req = { level = 80, dex = 101, }, } - -itemBases["Torn Gloves"] = { +itemBases["Runeforged Suede Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 9, }, + armour = { Evasion = 10, Ward = 10, }, req = { }, } -itemBases["Sombre Gloves"] = { +itemBases["Runeforged Firm Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 15, }, - req = { level = 12, int = 17, }, + armour = { Evasion = 31, Ward = 16, }, + req = { level = 11, dex = 16, }, } -itemBases["Stitched Gloves"] = { +itemBases["Runeforged Bound Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 17, }, - req = { level = 16, int = 22, }, + armour = { Evasion = 42, Ward = 17, }, + req = { level = 16, dex = 22, }, } -itemBases["Jewelled Gloves"] = { +itemBases["Runeforged Sectioned Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 22, }, - req = { level = 26, int = 34, }, + armour = { Evasion = 68, Ward = 22, }, + req = { level = 28, dex = 36, }, } -itemBases["Intricate Gloves"] = { +itemBases["Runeforged Spined Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 26, }, - req = { level = 33, int = 42, }, + armour = { Evasion = 79, Ward = 22, }, + req = { level = 33, dex = 42, }, } -itemBases["Pauascale Gloves"] = { +itemBases["Runeforged Fine Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 32, }, - req = { level = 45, int = 56, }, + armour = { Evasion = 105, Ward = 26, }, + req = { level = 45, dex = 56, }, } -itemBases["Embroidered Gloves"] = { +itemBases["Runeforged Hardened Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 35, }, - req = { level = 52, int = 64, }, + armour = { Ward = 117, }, + req = { level = 52, dex = 64, }, } -itemBases["Adorned Gloves"] = { +itemBases["Runeforged Engraved Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 42, }, - req = { level = 65, int = 80, }, + armour = { Evasion = 133, Ward = 35, }, + req = { level = 65, dex = 80, }, } -itemBases["Ominous Gloves"] = { +itemBases["Runeforged Refined Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 32, }, - req = { level = 45, int = 56, }, + armour = { Evasion = 118, Ward = 24, }, + req = { level = 54, dex = 67, }, } -itemBases["Embellished Gloves"] = { +itemBases["Runeforged Spiked Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 35, }, - req = { level = 51, int = 64, }, + armour = { Evasion = 108, Ward = 45, }, + req = { level = 59, dex = 73, }, } -itemBases["Baroque Gloves"] = { +itemBases["Runeforged Stalking Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 36, }, - req = { level = 54, int = 67, }, + armour = { Evasion = 133, Ward = 28, }, + req = { level = 65, dex = 80, }, } -itemBases["Gold Gloves"] = { +itemBases["Runeforged Grand Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 39, }, - req = { level = 59, int = 73, }, + armour = { Evasion = 96, Ward = 63, }, + req = { level = 70, dex = 87, }, } -itemBases["Grim Gloves"] = { +itemBases["Runeforged Barbed Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 42, }, - req = { level = 65, int = 80, }, + armour = { Evasion = 141, Ward = 35, }, + req = { level = 75, dex = 94, }, } -itemBases["Opulent Gloves"] = { +itemBases["Runeforged Polished Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 46, }, - req = { level = 70, int = 87, }, + armour = { Evasion = 52, Ward = 120, }, + req = { level = 80, dex = 101, }, } -itemBases["Vaal Gloves"] = { +itemBases["Runemastered Suede Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 50, }, - req = { level = 75, int = 94, }, + armour = { Evasion = 63, Ward = 20, }, + req = { level = 38, dex = 48, }, } -itemBases["Sirenscale Gloves"] = { +itemBases["Runemastered Firm Bracers"] = { type = "Gloves", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 54, }, - req = { level = 80, int = 101, }, + armour = { Evasion = 63, Ward = 27, }, + req = { level = 38, dex = 48, }, } - -itemBases["Ringmail Gauntlets"] = { +itemBases["Runemastered Sectioned Bracers"] = { type = "Gloves", - subType = "Armour/Evasion", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Armour = 13, Evasion = 10, }, - req = { level = 6, str = 6, dex = 6, }, + armour = { Evasion = 76, Ward = 18, }, + req = { level = 38, dex = 48, }, } -itemBases["Layered Gauntlets"] = { +itemBases["Runemastered Spined Bracers"] = { type = "Gloves", - subType = "Armour/Evasion", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 22, Evasion = 18, }, - req = { level = 16, str = 13, dex = 13, }, + armour = { Evasion = 72, Ward = 18, }, + req = { level = 38, dex = 48, }, } -itemBases["Doubled Gauntlets"] = { +itemBases["Runemastered Fine Bracers"] = { type = "Gloves", - subType = "Armour/Evasion", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, gloves = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { Armour = 37, Evasion = 33, }, - req = { level = 33, str = 24, dex = 24, }, + armour = { Evasion = 52, Ward = 52, }, + req = { level = 45, dex = 56, }, } -itemBases["Plate Gauntlets"] = { - type = "Gloves", + +itemBases["Torn Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 9, }, + req = { }, +} +itemBases["Sombre Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 15, }, + req = { level = 12, int = 17, }, +} +itemBases["Stitched Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 18, }, + req = { level = 16, int = 22, }, +} +itemBases["Jewelled Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, }, + req = { level = 26, int = 34, }, +} +itemBases["Intricate Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 27, }, + req = { level = 33, int = 42, }, +} +itemBases["Pauascale Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 34, }, + req = { level = 45, int = 56, }, +} +itemBases["Embroidered Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 38, }, + req = { level = 52, int = 64, }, +} +itemBases["Adorned Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, }, + req = { level = 65, int = 80, }, +} +itemBases["Ominous Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 34, }, + req = { level = 45, int = 56, }, +} +itemBases["Embellished Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 37, }, + req = { level = 51, int = 64, }, +} +itemBases["Baroque Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 39, }, + req = { level = 54, int = 67, }, +} +itemBases["Gold Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 42, }, + req = { level = 59, int = 73, }, +} +itemBases["Grim Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, }, + req = { level = 65, int = 80, }, +} +itemBases["Opulent Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 48, }, + req = { level = 70, int = 87, }, +} +itemBases["Vaal Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 51, }, + req = { level = 75, int = 94, }, +} +itemBases["Sirenscale Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 54, }, + req = { level = 80, int = 101, }, +} +itemBases["Runeforged Torn Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 9, Ward = 10, }, + req = { }, +} +itemBases["Runeforged Sombre Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 15, Ward = 17, }, + req = { level = 12, int = 17, }, +} +itemBases["Runeforged Stitched Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 18, Ward = 17, }, + req = { level = 16, int = 22, }, +} +itemBases["Runeforged Jewelled Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 23, Ward = 20, }, + req = { level = 26, int = 34, }, +} +itemBases["Runeforged Intricate Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 27, Ward = 22, }, + req = { level = 33, int = 42, }, +} +itemBases["Runeforged Pauascale Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 34, Ward = 26, }, + req = { level = 45, int = 56, }, +} +itemBases["Runeforged Embroidered Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 117, }, + req = { level = 52, int = 64, }, +} +itemBases["Runeforged Adorned Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 141, }, + req = { level = 65, int = 80, }, +} +itemBases["Runeforged Baroque Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 33, Ward = 36, }, + req = { level = 54, int = 67, }, +} +itemBases["Runeforged Gold Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 31, Ward = 52, }, + req = { level = 59, int = 73, }, +} +itemBases["Runeforged Grim Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 41, Ward = 28, }, + req = { level = 65, int = 80, }, +} +itemBases["Runeforged Opulent Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 29, Ward = 63, }, + req = { level = 70, int = 87, }, +} +itemBases["Runeforged Vaal Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 47, Ward = 21, }, + req = { level = 75, int = 94, }, +} +itemBases["Runeforged Sirenscale Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 13, Ward = 128, }, + req = { level = 80, int = 101, }, +} +itemBases["Runemastered Torn Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 18, Ward = 36, }, + req = { level = 38, int = 48, }, +} +itemBases["Runemastered Sombre Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 24, Ward = 18, }, + req = { level = 39, int = 49, }, +} +itemBases["Runemastered Stitched Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 30, Ward = 23, }, + req = { level = 38, int = 48, }, +} +itemBases["Runemastered Jewelled Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 21, Ward = 27, }, + req = { level = 38, int = 48, }, +} +itemBases["Runemastered Intricate Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 47, Ward = 24, }, + req = { level = 55, int = 68, }, +} +itemBases["Runemastered Pauascale Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 30, Ward = 31, }, + req = { level = 55, int = 68, }, +} +itemBases["Runemastered Embroidered Gloves"] = { + type = "Gloves", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 26, Ward = 35, }, + req = { level = 52, int = 64, }, +} + +itemBases["Ringmail Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 14, Evasion = 11, }, + req = { level = 6, str = 6, dex = 6, }, +} +itemBases["Layered Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 27, Evasion = 23, }, + req = { level = 16, str = 13, dex = 13, }, +} +itemBases["Doubled Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 49, Evasion = 43, }, + req = { level = 33, str = 24, dex = 24, }, +} +itemBases["Plate Gauntlets"] = { + type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 48, Evasion = 44, }, + armour = { Armour = 64, Evasion = 58, }, req = { level = 45, str = 32, dex = 32, }, } -itemBases["Burnished Gauntlets"] = { +itemBases["Burnished Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 73, Evasion = 66, }, + req = { level = 52, str = 36, dex = 36, }, +} +itemBases["Ornate Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 89, Evasion = 81, }, + req = { level = 65, str = 44, dex = 44, }, +} +itemBases["Ironmail Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 64, Evasion = 58, }, + req = { level = 45, str = 32, dex = 32, }, +} +itemBases["Captain Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 72, Evasion = 65, }, + req = { level = 51, str = 35, dex = 35, }, +} +itemBases["Zealot Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 82, Evasion = 74, }, + req = { level = 59, str = 41, dex = 41, }, +} +itemBases["Steelmail Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 89, Evasion = 81, }, + req = { level = 65, str = 44, dex = 44, }, +} +itemBases["Commander Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 94, Evasion = 85, }, + req = { level = 70, str = 48, dex = 48, }, +} +itemBases["Cultist Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 98, Evasion = 90, }, + req = { level = 75, str = 52, dex = 52, }, +} +itemBases["Blacksteel Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 103, Evasion = 94, }, + req = { level = 80, str = 55, dex = 55, }, +} +itemBases["Runeforged Ringmail Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 14, Evasion = 11, Ward = 12, }, + req = { level = 6, str = 6, dex = 6, }, +} +itemBases["Runeforged Layered Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 27, Evasion = 23, Ward = 17, }, + req = { level = 16, str = 13, dex = 13, }, +} +itemBases["Runeforged Doubled Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 49, Evasion = 43, Ward = 24, }, + req = { level = 33, str = 24, dex = 24, }, +} +itemBases["Runeforged Plate Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 64, Evasion = 58, Ward = 27, }, + req = { level = 45, str = 32, dex = 32, }, +} +itemBases["Runeforged Burnished Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 117, }, + req = { level = 52, str = 36, dex = 36, }, +} +itemBases["Runeforged Ornate Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 141, }, + req = { level = 65, str = 44, dex = 44, }, +} +itemBases["Runeforged Zealot Gauntlets"] = { + type = "Gloves", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 78, Evasion = 71, Ward = 26, }, + req = { level = 59, str = 41, dex = 41, }, +} +itemBases["Runeforged Steelmail Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 55, Evasion = 50, }, - req = { level = 52, str = 36, dex = 36, }, + armour = { Armour = 80, Evasion = 73, Ward = 28, }, + req = { level = 65, str = 44, dex = 44, }, } -itemBases["Ornate Gauntlets"] = { +itemBases["Runeforged Commander Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, Evasion = 61, }, - req = { level = 65, str = 44, dex = 44, }, + armour = { Armour = 58, Evasion = 53, Ward = 63, }, + req = { level = 70, str = 48, dex = 48, }, } -itemBases["Ironmail Gauntlets"] = { +itemBases["Runeforged Cultist Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 48, Evasion = 44, }, - req = { level = 45, str = 32, dex = 32, }, + armour = { Armour = 85, Evasion = 77, Ward = 35, }, + req = { level = 75, str = 52, dex = 52, }, } -itemBases["Captain Gauntlets"] = { +itemBases["Runeforged Blacksteel Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 54, Evasion = 49, }, - req = { level = 51, str = 35, dex = 35, }, + armour = { Armour = 18, Evasion = 16, Ward = 141, }, + req = { level = 80, str = 55, dex = 55, }, } -itemBases["Zealot Gauntlets"] = { +itemBases["Runemastered Ringmail Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 61, Evasion = 56, }, - req = { level = 59, str = 41, dex = 41, }, + armour = { Armour = 44, Evasion = 39, Ward = 18, }, + req = { level = 38, str = 27, dex = 27, }, } -itemBases["Steelmail Gauntlets"] = { +itemBases["Runemastered Layered Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, Evasion = 61, }, - req = { level = 65, str = 44, dex = 44, }, + armour = { Armour = 52, Evasion = 47, Ward = 14, }, + req = { level = 38, str = 27, dex = 27, }, } -itemBases["Commander Gauntlets"] = { +itemBases["Runemastered Doubled Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 74, Evasion = 67, }, - req = { level = 70, str = 48, dex = 48, }, + armour = { Armour = 61, Evasion = 56, Ward = 24, }, + req = { level = 55, str = 38, dex = 38, }, } -itemBases["Cultist Gauntlets"] = { +itemBases["Runemastered Plate Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 80, Evasion = 73, }, - req = { level = 75, str = 52, dex = 52, }, + armour = { Armour = 69, Evasion = 63, Ward = 12, }, + req = { level = 55, str = 38, dex = 38, }, } -itemBases["Blacksteel Gauntlets"] = { +itemBases["Runemastered Burnished Gauntlets"] = { type = "Gloves", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 87, Evasion = 79, }, - req = { level = 80, str = 55, dex = 55, }, + armour = { Armour = 36, Evasion = 33, Ward = 58, }, + req = { level = 52, str = 36, dex = 36, }, } itemBases["Rope Cuffs"] = { @@ -624,7 +1384,7 @@ itemBases["Rope Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 12, EnergyShield = 6, }, + armour = { Armour = 13, EnergyShield = 6, }, req = { level = 5, str = 6, int = 6, }, } itemBases["Aged Cuffs"] = { @@ -634,7 +1394,7 @@ itemBases["Aged Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 22, EnergyShield = 9, }, + armour = { Armour = 27, EnergyShield = 10, }, req = { level = 16, str = 13, int = 13, }, } itemBases["Goldcast Cuffs"] = { @@ -644,17 +1404,17 @@ itemBases["Goldcast Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 37, EnergyShield = 14, }, + armour = { Armour = 49, EnergyShield = 15, }, req = { level = 33, str = 24, int = 24, }, } -itemBases["Verisium Cuffs"] = { +itemBases["Kalguuran Cuffs"] = { type = "Gloves", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 48, EnergyShield = 17, }, + armour = { Armour = 64, EnergyShield = 19, }, req = { level = 45, str = 32, int = 32, }, } itemBases["Righteous Cuffs"] = { @@ -664,7 +1424,7 @@ itemBases["Righteous Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 55, EnergyShield = 19, }, + armour = { Armour = 73, EnergyShield = 21, }, req = { level = 52, str = 36, int = 36, }, } itemBases["Signet Cuffs"] = { @@ -674,7 +1434,7 @@ itemBases["Signet Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, EnergyShield = 23, }, + armour = { Armour = 89, EnergyShield = 25, }, req = { level = 65, str = 44, int = 44, }, } itemBases["Braided Cuffs"] = { @@ -684,7 +1444,7 @@ itemBases["Braided Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 48, EnergyShield = 17, }, + armour = { Armour = 64, EnergyShield = 19, }, req = { level = 45, str = 32, int = 32, }, } itemBases["Heirloom Cuffs"] = { @@ -694,7 +1454,7 @@ itemBases["Heirloom Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 54, EnergyShield = 19, }, + armour = { Armour = 72, EnergyShield = 21, }, req = { level = 51, str = 35, int = 35, }, } itemBases["Ornate Cuffs"] = { @@ -704,7 +1464,7 @@ itemBases["Ornate Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 61, EnergyShield = 21, }, + armour = { Armour = 82, EnergyShield = 23, }, req = { level = 59, str = 41, int = 41, }, } itemBases["Bound Cuffs"] = { @@ -714,7 +1474,7 @@ itemBases["Bound Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 67, EnergyShield = 23, }, + armour = { Armour = 89, EnergyShield = 25, }, req = { level = 65, str = 44, int = 44, }, } itemBases["Ancient Cuffs"] = { @@ -724,7 +1484,7 @@ itemBases["Ancient Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 74, EnergyShield = 25, }, + armour = { Armour = 89, EnergyShield = 25, }, req = { level = 70, str = 48, int = 48, }, } itemBases["Gleaming Cuffs"] = { @@ -734,7 +1494,7 @@ itemBases["Gleaming Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 80, EnergyShield = 28, }, + armour = { Armour = 94, EnergyShield = 26, }, req = { level = 75, str = 52, int = 52, }, } itemBases["Adherent Cuffs"] = { @@ -744,9 +1504,159 @@ itemBases["Adherent Cuffs"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 87, EnergyShield = 30, }, + armour = { Armour = 98, EnergyShield = 27, }, + req = { level = 80, str = 55, int = 55, }, +} +itemBases["Runeforged Rope Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 13, EnergyShield = 6, Ward = 11, }, + req = { level = 5, str = 6, int = 6, }, +} +itemBases["Runeforged Aged Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 27, EnergyShield = 10, Ward = 17, }, + req = { level = 16, str = 13, int = 13, }, +} +itemBases["Runeforged Goldcast Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 49, EnergyShield = 15, Ward = 24, }, + req = { level = 33, str = 24, int = 24, }, +} +itemBases["Runeforged Kalguuran Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 64, EnergyShield = 19, Ward = 27, }, + req = { level = 45, str = 32, int = 32, }, +} +itemBases["Runeforged Righteous Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 117, }, + req = { level = 52, str = 36, int = 36, }, +} +itemBases["Runeforged Signet Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 141, }, + req = { level = 65, str = 44, int = 44, }, +} +itemBases["Runeforged Ornate Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 65, EnergyShield = 18, Ward = 45, }, + req = { level = 59, str = 41, int = 41, }, +} +itemBases["Runeforged Bound Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 80, EnergyShield = 22, Ward = 28, }, + req = { level = 65, str = 44, int = 44, }, +} +itemBases["Runeforged Ancient Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 58, EnergyShield = 16, Ward = 63, }, + req = { level = 70, str = 48, int = 48, }, +} +itemBases["Runeforged Gleaming Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 89, EnergyShield = 25, Ward = 28, }, + req = { level = 75, str = 52, int = 52, }, +} +itemBases["Runeforged Adherent Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 22, EnergyShield = 6, Ward = 134, }, req = { level = 80, str = 55, int = 55, }, } +itemBases["Runemastered Rope Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, gloves = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 33, EnergyShield = 10, Ward = 36, }, + req = { level = 38, str = 27, int = 27, }, +} +itemBases["Runemastered Aged Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 44, EnergyShield = 13, Ward = 18, }, + req = { level = 38, str = 27, int = 27, }, +} +itemBases["Runemastered Goldcast Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 77, EnergyShield = 22, Ward = 37, }, + req = { level = 55, str = 38, int = 38, }, +} +itemBases["Runemastered Verisium Cuffs"] = { + type = "Gloves", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 73, EnergyShield = 21, Ward = 12, }, + req = { level = 55, str = 38, int = 38, }, +} itemBases["Gauze Wraps"] = { type = "Gloves", @@ -755,7 +1665,7 @@ itemBases["Gauze Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 8, EnergyShield = 6, }, + armour = { Evasion = 9, EnergyShield = 6, }, req = { dex = 6, int = 6, }, } itemBases["Linen Wraps"] = { @@ -765,7 +1675,7 @@ itemBases["Linen Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 18, EnergyShield = 9, }, + armour = { Evasion = 23, EnergyShield = 10, }, req = { level = 16, dex = 13, int = 13, }, } itemBases["Spiral Wraps"] = { @@ -775,7 +1685,7 @@ itemBases["Spiral Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 33, EnergyShield = 14, }, + armour = { Evasion = 43, EnergyShield = 15, }, req = { level = 33, dex = 24, int = 24, }, } itemBases["Buckled Wraps"] = { @@ -785,7 +1695,7 @@ itemBases["Buckled Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 44, EnergyShield = 17, }, + armour = { Evasion = 58, EnergyShield = 19, }, req = { level = 45, dex = 32, int = 32, }, } itemBases["Furtive Wraps"] = { @@ -795,7 +1705,7 @@ itemBases["Furtive Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 50, EnergyShield = 19, }, + armour = { Evasion = 66, EnergyShield = 21, }, req = { level = 52, dex = 36, int = 36, }, } itemBases["Utility Wraps"] = { @@ -805,7 +1715,7 @@ itemBases["Utility Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 61, EnergyShield = 23, }, + armour = { Evasion = 81, EnergyShield = 25, }, req = { level = 65, dex = 44, int = 44, }, } itemBases["Bandage Wraps"] = { @@ -815,7 +1725,7 @@ itemBases["Bandage Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 44, EnergyShield = 17, }, + armour = { Evasion = 58, EnergyShield = 19, }, req = { level = 45, dex = 32, int = 32, }, } itemBases["Cambric Wraps"] = { @@ -825,7 +1735,7 @@ itemBases["Cambric Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 49, EnergyShield = 19, }, + armour = { Evasion = 65, EnergyShield = 21, }, req = { level = 51, dex = 35, int = 35, }, } itemBases["Adorned Wraps"] = { @@ -835,7 +1745,7 @@ itemBases["Adorned Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 56, EnergyShield = 21, }, + armour = { Evasion = 74, EnergyShield = 23, }, req = { level = 59, dex = 41, int = 41, }, } itemBases["War Wraps"] = { @@ -845,7 +1755,7 @@ itemBases["War Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 61, EnergyShield = 23, }, + armour = { Evasion = 94, EnergyShield = 29, }, req = { level = 65, dex = 44, int = 44, }, } itemBases["Elegant Wraps"] = { @@ -855,7 +1765,7 @@ itemBases["Elegant Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 67, EnergyShield = 25, }, + armour = { Evasion = 85, EnergyShield = 26, }, req = { level = 70, dex = 48, int = 48, }, } itemBases["Vaal Wraps"] = { @@ -865,7 +1775,7 @@ itemBases["Vaal Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, }, implicitModTypes = { }, - armour = { Evasion = 73, EnergyShield = 28, }, + armour = { Evasion = 90, EnergyShield = 27, }, req = { level = 75, dex = 52, int = 52, }, } itemBases["Secured Wraps"] = { @@ -875,9 +1785,169 @@ itemBases["Secured Wraps"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, gloves = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 79, EnergyShield = 30, }, + armour = { Evasion = 94, EnergyShield = 29, }, + req = { level = 80, dex = 55, int = 55, }, +} +itemBases["Runeforged Gauze Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 9, EnergyShield = 6, Ward = 11, }, + req = { dex = 6, int = 6, }, +} +itemBases["Runeforged Linen Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 23, EnergyShield = 10, Ward = 17, }, + req = { level = 16, dex = 13, int = 13, }, +} +itemBases["Runeforged Spiral Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 43, EnergyShield = 15, Ward = 24, }, + req = { level = 33, dex = 24, int = 24, }, +} +itemBases["Runeforged Buckled Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 58, EnergyShield = 19, Ward = 27, }, + req = { level = 45, dex = 32, int = 32, }, +} +itemBases["Runeforged Furtive Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 117, }, + req = { level = 52, dex = 36, int = 36, }, +} +itemBases["Runeforged Utility Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 141, }, + req = { level = 65, dex = 44, int = 44, }, +} +itemBases["Runeforged Adorned Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 63, EnergyShield = 20, Ward = 39, }, + req = { level = 59, dex = 41, int = 41, }, +} +itemBases["Runeforged War Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 73, EnergyShield = 22, Ward = 28, }, + req = { level = 65, dex = 44, int = 44, }, +} +itemBases["Runeforged Elegant Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 53, EnergyShield = 16, Ward = 63, }, + req = { level = 70, dex = 48, int = 48, }, +} +itemBases["Runeforged Vaal Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 81, EnergyShield = 25, Ward = 28, }, + req = { level = 75, dex = 52, int = 52, }, +} +itemBases["Runeforged Secured Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 18, EnergyShield = 5, Ward = 138, }, req = { level = 80, dex = 55, int = 55, }, } +itemBases["Runemastered Gauze Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 90, }, + req = { level = 38, dex = 27, int = 27, }, +} +itemBases["Runemastered Linen Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 37, EnergyShield = 12, Ward = 23, }, + req = { level = 38, dex = 27, int = 27, }, +} +itemBases["Runemastered Spiral Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 38, EnergyShield = 12, Ward = 67, }, + req = { level = 55, dex = 38, int = 38, }, +} +itemBases["Runemastered Furtive Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 56, EnergyShield = 17, Ward = 24, }, + req = { level = 55, dex = 38, int = 38, }, +} +itemBases["Runemastered Utility Wraps"] = { + type = "Gloves", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, gloves = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 49, EnergyShield = 15, Ward = 56, }, + req = { level = 65, dex = 44, int = 44, }, +} itemBases["Grand Manchettes"] = { type = "Gloves", @@ -886,7 +1956,27 @@ itemBases["Grand Manchettes"] = { socketLimit = 3, tags = { armour = true, default = true, gloves = true, str_dex_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 44, Evasion = 40, EnergyShield = 15, }, + armour = { Armour = 60, Evasion = 54, EnergyShield = 17, }, + req = { level = 65, str = 32, dex = 32, int = 32, }, +} +itemBases["Runeforged Grand Manchettes"] = { + type = "Gloves", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 15, Evasion = 14, EnergyShield = 4, Ward = 123, }, + req = { level = 65, str = 32, dex = 32, int = 32, }, +} +itemBases["Runemastered Grand Manchettes"] = { + type = "Gloves", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, gloves = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 30, Evasion = 27, EnergyShield = 8, Ward = 70, }, req = { level = 65, str = 32, dex = 32, int = 32, }, } diff --git a/src/Data/Bases/helmet.lua b/src/Data/Bases/helmet.lua index 31550b81df..4c52ffa75e 100644 --- a/src/Data/Bases/helmet.lua +++ b/src/Data/Bases/helmet.lua @@ -20,7 +20,7 @@ itemBases["Soldier Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 66, }, + armour = { Armour = 80, }, req = { level = 12, str = 19, }, } itemBases["Wrapped Greathelm"] = { @@ -30,7 +30,7 @@ itemBases["Wrapped Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 79, }, + armour = { Armour = 99, }, req = { level = 16, str = 25, }, } itemBases["Spired Greathelm"] = { @@ -40,7 +40,7 @@ itemBases["Spired Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 116, }, + armour = { Armour = 149, }, req = { level = 27, str = 40, }, } itemBases["Elite Greathelm"] = { @@ -50,7 +50,7 @@ itemBases["Elite Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 136, }, + armour = { Armour = 177, }, req = { level = 33, str = 48, }, } itemBases["Warrior Greathelm"] = { @@ -60,7 +60,7 @@ itemBases["Warrior Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 146, }, + armour = { Armour = 191, }, req = { level = 36, str = 52, }, } itemBases["Commander Greathelm"] = { @@ -70,7 +70,7 @@ itemBases["Commander Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 176, }, + armour = { Armour = 233, }, req = { level = 45, str = 64, }, } itemBases["Fierce Greathelm"] = { @@ -80,7 +80,7 @@ itemBases["Fierce Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 196, }, + armour = { Armour = 260, }, req = { level = 51, str = 73, }, } itemBases["Sentinel Greathelm"] = { @@ -90,7 +90,7 @@ itemBases["Sentinel Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 200, }, + armour = { Armour = 265, }, req = { level = 52, str = 74, }, } itemBases["Goliath Greathelm"] = { @@ -100,7 +100,7 @@ itemBases["Goliath Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 216, }, + armour = { Armour = 288, }, req = { level = 57, str = 81, }, } itemBases["Guardian Greathelm"] = { @@ -110,7 +110,7 @@ itemBases["Guardian Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 243, }, + armour = { Armour = 325, }, req = { level = 65, str = 91, }, } itemBases["Corroded Greathelm"] = { @@ -120,7 +120,7 @@ itemBases["Corroded Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 176, }, + armour = { Armour = 233, }, req = { level = 45, str = 64, }, } itemBases["Mercenary Greathelm"] = { @@ -130,7 +130,7 @@ itemBases["Mercenary Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 186, }, + armour = { Armour = 246, }, req = { level = 48, str = 69, }, } itemBases["Homeguard Greathelm"] = { @@ -140,7 +140,7 @@ itemBases["Homeguard Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 196, }, + armour = { Armour = 260, }, req = { level = 51, str = 73, }, } itemBases["Elegant Greathelm"] = { @@ -150,7 +150,7 @@ itemBases["Elegant Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 206, }, + armour = { Armour = 274, }, req = { level = 54, str = 77, }, } itemBases["Noble Greathelm"] = { @@ -160,7 +160,7 @@ itemBases["Noble Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 223, }, + armour = { Armour = 297, }, req = { level = 59, str = 83, }, } itemBases["Warmonger Greathelm"] = { @@ -170,7 +170,7 @@ itemBases["Warmonger Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 243, }, + armour = { Armour = 325, }, req = { level = 65, str = 91, }, } itemBases["Masked Greathelm"] = { @@ -180,7 +180,7 @@ itemBases["Masked Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 267, }, + armour = { Armour = 341, }, req = { level = 70, str = 99, }, } itemBases["Paragon Greathelm"] = { @@ -190,7 +190,7 @@ itemBases["Paragon Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 292, }, + armour = { Armour = 357, }, req = { level = 75, str = 107, }, } itemBases["Imperial Greathelm"] = { @@ -200,9 +200,249 @@ itemBases["Imperial Greathelm"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_armour = true, }, implicitModTypes = { }, - armour = { Armour = 316, }, + armour = { Armour = 374, }, req = { level = 80, str = 115, }, } +itemBases["Runeforged Rusted Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 29, Ward = 19, }, + req = { }, +} +itemBases["Runeforged Soldier Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 80, Ward = 29, }, + req = { level = 12, str = 19, }, +} +itemBases["Runeforged Wrapped Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 99, Ward = 35, }, + req = { level = 16, str = 25, }, +} +itemBases["Runeforged Spired Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 149, Ward = 49, }, + req = { level = 27, str = 40, }, +} +itemBases["Runeforged Elite Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 177, Ward = 49, }, + req = { level = 33, str = 48, }, +} +itemBases["Runeforged Warrior Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 191, Ward = 50, }, + req = { level = 36, str = 52, }, +} +itemBases["Runeforged Commander Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 233, Ward = 56, }, + req = { level = 45, str = 64, }, +} +itemBases["Runeforged Fierce Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 260, Ward = 57, }, + req = { level = 51, str = 73, }, +} +itemBases["Runeforged Sentinel Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 233, }, + req = { level = 52, str = 74, }, +} +itemBases["Runeforged Goliath Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 252, }, + req = { level = 57, str = 81, }, +} +itemBases["Runeforged Guardian Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Ward = 282, }, + req = { level = 65, str = 91, }, +} +itemBases["Runeforged Elegant Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 247, Ward = 60, }, + req = { level = 54, str = 77, }, +} +itemBases["Runeforged Noble Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 223, Ward = 104, }, + req = { level = 59, str = 83, }, +} +itemBases["Runeforged Warmonger Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 292, Ward = 56, }, + req = { level = 65, str = 91, }, +} +itemBases["Runeforged Masked Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 260, Ward = 85, }, + req = { level = 70, str = 99, }, +} +itemBases["Runeforged Paragon Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 341, Ward = 42, }, + req = { level = 75, str = 107, }, +} +itemBases["Runeforged Imperial Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 114, Ward = 240, }, + req = { level = 80, str = 115, }, +} +itemBases["Runemastered Rusted Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 360, Ward = 36, }, + req = { level = 38, str = 54, }, +} +itemBases["Runemastered Soldier Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 140, Ward = 54, }, + req = { level = 38, str = 54, }, +} +itemBases["Runemastered Wrapped Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 170, Ward = 27, }, + req = { level = 38, str = 54, }, +} +itemBases["Runemastered Spired Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 115, Ward = 85, }, + req = { level = 40, str = 58, }, +} +itemBases["Runemastered Elite Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 209, Ward = 61, }, + req = { level = 55, str = 78, }, +} +itemBases["Runemastered Warrior Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 111, Ward = 147, }, + req = { level = 55, str = 78, }, +} +itemBases["Runemastered Fierce Greathelm"] = { + type = "Helmet", + subType = "Armour", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 334, Ward = 24, }, + req = { level = 55, str = 78, }, +} itemBases["Shabby Hood"] = { type = "Helmet", @@ -221,7 +461,7 @@ itemBases["Felt Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 48, }, + armour = { Evasion = 58, }, req = { level = 10, dex = 17, }, } itemBases["Lace Hood"] = { @@ -231,7 +471,7 @@ itemBases["Lace Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 67, }, + armour = { Evasion = 84, }, req = { level = 16, dex = 25, }, } itemBases["Swathed Cap"] = { @@ -241,7 +481,7 @@ itemBases["Swathed Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 98, }, + armour = { Evasion = 127, }, req = { level = 26, dex = 38, }, } itemBases["Hunter Hood"] = { @@ -251,7 +491,7 @@ itemBases["Hunter Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 121, }, + armour = { Evasion = 158, }, req = { level = 33, dex = 48, }, } itemBases["Viper Cap"] = { @@ -261,7 +501,7 @@ itemBases["Viper Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 136, }, + armour = { Evasion = 179, }, req = { level = 38, dex = 54, }, } itemBases["Corsair Cap"] = { @@ -271,7 +511,7 @@ itemBases["Corsair Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 158, }, + armour = { Evasion = 210, }, req = { level = 45, dex = 64, }, } itemBases["Leatherbound Hood"] = { @@ -281,7 +521,7 @@ itemBases["Leatherbound Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 174, }, + armour = { Evasion = 231, }, req = { level = 50, dex = 71, }, } itemBases["Velvet Cap"] = { @@ -291,7 +531,7 @@ itemBases["Velvet Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 181, }, + armour = { Evasion = 240, }, req = { level = 52, dex = 74, }, } itemBases["Covert Hood"] = { @@ -301,7 +541,7 @@ itemBases["Covert Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 193, }, + armour = { Evasion = 257, }, req = { level = 56, dex = 79, }, } itemBases["Armoured Cap"] = { @@ -311,7 +551,7 @@ itemBases["Armoured Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 222, }, + armour = { Evasion = 296, }, req = { level = 65, dex = 91, }, } itemBases["Rotted Hood"] = { @@ -321,7 +561,7 @@ itemBases["Rotted Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 158, }, + armour = { Evasion = 210, }, req = { level = 45, dex = 64, }, } itemBases["Wool Cap"] = { @@ -331,7 +571,7 @@ itemBases["Wool Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 168, }, + armour = { Evasion = 222, }, req = { level = 48, dex = 69, }, } itemBases["Narrow Hood"] = { @@ -341,7 +581,7 @@ itemBases["Narrow Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 177, }, + armour = { Evasion = 235, }, req = { level = 51, dex = 73, }, } itemBases["Wrapped Cap"] = { @@ -351,7 +591,7 @@ itemBases["Wrapped Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 187, }, + armour = { Evasion = 248, }, req = { level = 54, dex = 77, }, } itemBases["Deerstalker Hood"] = { @@ -361,7 +601,7 @@ itemBases["Deerstalker Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 203, }, + armour = { Evasion = 270, }, req = { level = 59, dex = 83, }, } itemBases["Woven Cap"] = { @@ -371,7 +611,7 @@ itemBases["Woven Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 222, }, + armour = { Evasion = 296, }, req = { level = 65, dex = 91, }, } itemBases["Desert Cap"] = { @@ -381,7 +621,7 @@ itemBases["Desert Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 244, }, + armour = { Evasion = 311, }, req = { level = 70, dex = 99, }, } itemBases["Trapper Hood"] = { @@ -391,7 +631,7 @@ itemBases["Trapper Hood"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 266, }, + armour = { Evasion = 326, }, req = { level = 75, dex = 107, }, } itemBases["Freebooter Cap"] = { @@ -401,551 +641,1515 @@ itemBases["Freebooter Cap"] = { socketLimit = 3, tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 288, }, + armour = { Evasion = 340, }, req = { level = 80, dex = 115, }, } - -itemBases["Twig Circlet"] = { +itemBases["Runeforged Shabby Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 19, }, + armour = { Evasion = 19, Ward = 19, }, req = { }, } -itemBases["Wicker Tiara"] = { +itemBases["Runeforged Felt Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 28, }, - req = { level = 10, int = 17, }, + armour = { Evasion = 58, Ward = 27, }, + req = { level = 10, dex = 17, }, } -itemBases["Beaded Circlet"] = { +itemBases["Runeforged Lace Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 34, }, - req = { level = 16, int = 25, }, + armour = { Evasion = 84, Ward = 35, }, + req = { level = 16, dex = 25, }, } -itemBases["Chain Tiara"] = { +itemBases["Runeforged Swathed Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 44, }, - req = { level = 26, int = 38, }, + armour = { Evasion = 127, Ward = 48, }, + req = { level = 26, dex = 38, }, } -itemBases["Feathered Tiara"] = { +itemBases["Runeforged Hunter Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 51, }, - req = { level = 33, int = 48, }, + armour = { Evasion = 158, Ward = 49, }, + req = { level = 33, dex = 48, }, } -itemBases["Gold Circlet"] = { +itemBases["Runeforged Viper Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 58, }, - req = { level = 40, int = 58, }, + armour = { Evasion = 179, Ward = 52, }, + req = { level = 38, dex = 54, }, } -itemBases["Vermeil Circlet"] = { +itemBases["Runeforged Corsair Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 63, }, - req = { level = 45, int = 64, }, + armour = { Evasion = 210, Ward = 56, }, + req = { level = 45, dex = 64, }, } -itemBases["Jade Tiara"] = { +itemBases["Runeforged Leatherbound Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 69, }, - req = { level = 50, int = 71, }, + armour = { Evasion = 231, Ward = 56, }, + req = { level = 50, dex = 71, }, } -itemBases["Noble Circlet"] = { +itemBases["Runeforged Velvet Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 71, }, - req = { level = 52, int = 74, }, + armour = { Ward = 233, }, + req = { level = 52, dex = 74, }, } -itemBases["Twilight Tiara"] = { +itemBases["Runeforged Covert Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 77, }, - req = { level = 58, int = 82, }, + armour = { Ward = 248, }, + req = { level = 56, dex = 79, }, } -itemBases["Magus Tiara"] = { +itemBases["Runeforged Armoured Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 84, }, - req = { level = 65, int = 91, }, + armour = { Ward = 282, }, + req = { level = 65, dex = 91, }, } -itemBases["Druidic Circlet"] = { +itemBases["Runeforged Wrapped Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 63, }, - req = { level = 45, int = 64, }, + armour = { Evasion = 211, Ward = 72, }, + req = { level = 54, dex = 77, }, } -itemBases["Avian Tiara"] = { +itemBases["Runeforged Deerstalker Hood"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 67, }, - req = { level = 48, int = 69, }, + armour = { Evasion = 216, Ward = 91, }, + req = { level = 59, dex = 83, }, } -itemBases["Desert Circlet"] = { +itemBases["Runeforged Woven Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, implicitModTypes = { }, - armour = { EnergyShield = 70, }, - req = { level = 51, int = 73, }, + armour = { Evasion = 281, Ward = 42, }, + req = { level = 65, dex = 91, }, } -itemBases["Sandsworn Tiara"] = { +itemBases["Runeforged Desert Cap"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 222, Ward = 99, }, + req = { level = 70, dex = 99, }, +} +itemBases["Runeforged Trapper Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 311, Ward = 42, }, + req = { level = 75, dex = 107, }, +} +itemBases["Runeforged Freebooter Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 104, Ward = 240, }, + req = { level = 80, dex = 115, }, +} +itemBases["Runeforged Lace Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, + implicit = "(30-50)% increased Ignite Magnitude", + implicitModTypes = { { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + armour = { Evasion = 90, Ward = 72, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Shabby Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 201, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Felt Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 134, Ward = 54, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Hunter Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 73, Ward = 75, }, + req = { level = 40, dex = 58, }, +} +itemBases["Runemastered Viper Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 139, Ward = 110, }, + req = { level = 55, dex = 78, }, +} +itemBases["Runemastered Corsair Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 202, Ward = 37, }, + req = { level = 55, dex = 78, }, +} +itemBases["Runemastered Leatherbound Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 266, Ward = 28, }, + req = { level = 65, dex = 91, }, +} +itemBases["Runemastered Velvet Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 222, Ward = 70, }, + req = { level = 65, dex = 91, }, +} +itemBases["Runemastered Covert Hood"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 129, Ward = 124, }, + req = { level = 56, dex = 79, }, +} +itemBases["Runemastered Armoured Cap"] = { + type = "Helmet", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 178, Ward = 113, }, + req = { level = 65, dex = 91, }, +} + +itemBases["Twig Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 19, }, + req = { }, +} +itemBases["Wicker Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 29, }, + req = { level = 10, int = 17, }, +} +itemBases["Beaded Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 35, }, + req = { level = 16, int = 25, }, +} +itemBases["Chain Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 47, }, + req = { level = 26, int = 38, }, +} +itemBases["Feathered Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 54, }, + req = { level = 33, int = 48, }, +} +itemBases["Gold Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 62, }, + req = { level = 40, int = 58, }, +} +itemBases["Vermeil Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 68, }, + req = { level = 45, int = 64, }, +} +itemBases["Jade Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 73, }, + req = { level = 50, int = 71, }, +} +itemBases["Noble Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 76, }, + req = { level = 52, int = 74, }, +} +itemBases["Twilight Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 82, }, + req = { level = 58, int = 82, }, +} +itemBases["Magus Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 90, }, + req = { level = 65, int = 91, }, +} +itemBases["Druidic Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 68, }, + req = { level = 45, int = 64, }, +} +itemBases["Avian Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 71, }, + req = { level = 48, int = 69, }, +} +itemBases["Desert Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 75, }, + req = { level = 51, int = 73, }, +} +itemBases["Sandsworn Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 78, }, + req = { level = 54, int = 77, }, +} +itemBases["Jungle Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 84, }, + req = { level = 59, int = 83, }, +} +itemBases["Skycrown Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 90, }, + req = { level = 65, int = 91, }, +} +itemBases["Sorcerous Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 97, }, + req = { level = 70, int = 99, }, +} +itemBases["Kamasan Tiara"] = { + type = "Helmet", + subType = "Energy Shield", quality = 20, socketLimit = 3, tags = { armour = true, default = true, helmet = true, int_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 73, }, - req = { level = 54, int = 77, }, + armour = { EnergyShield = 103, }, + req = { level = 75, int = 107, }, +} +itemBases["Ancestral Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 109, }, + req = { level = 80, int = 115, }, +} +itemBases["Runeforged Twig Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 19, Ward = 19, }, + req = { }, +} +itemBases["Runeforged Wicker Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 29, Ward = 27, }, + req = { level = 10, int = 17, }, +} +itemBases["Runeforged Beaded Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 35, Ward = 35, }, + req = { level = 16, int = 25, }, +} +itemBases["Runeforged Chain Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 47, Ward = 48, }, + req = { level = 26, int = 38, }, +} +itemBases["Runeforged Feathered Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 54, Ward = 49, }, + req = { level = 33, int = 48, }, +} +itemBases["Runeforged Gold Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 62, Ward = 55, }, + req = { level = 40, int = 58, }, +} +itemBases["Runeforged Vermeil Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 68, Ward = 56, }, + req = { level = 45, int = 64, }, +} +itemBases["Runeforged Jade Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 73, Ward = 56, }, + req = { level = 50, int = 71, }, +} +itemBases["Runeforged Noble Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 233, }, + req = { level = 52, int = 74, }, +} +itemBases["Runeforged Twilight Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 256, }, + req = { level = 58, int = 82, }, +} +itemBases["Runeforged Magus Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 282, }, + req = { level = 65, int = 91, }, +} +itemBases["Runeforged Sandsworn Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 74, Ward = 48, }, + req = { level = 54, int = 77, }, +} +itemBases["Runeforged Jungle Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 63, Ward = 104, }, + req = { level = 59, int = 83, }, +} +itemBases["Runeforged Skycrown Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 81, Ward = 56, }, + req = { level = 65, int = 91, }, +} +itemBases["Runeforged Sorcerous Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 63, Ward = 113, }, + req = { level = 70, int = 99, }, +} +itemBases["Runeforged Kamasan Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 95, Ward = 42, }, + req = { level = 75, int = 107, }, +} +itemBases["Runeforged Ancestral Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 32, Ward = 240, }, + req = { level = 80, int = 115, }, +} +itemBases["Runemastered Twig Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 48, Ward = 36, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Wicker Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, Ward = 45, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Beaded Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 24, Ward = 72, }, + req = { level = 38, int = 54, }, +} +itemBases["Runemastered Chain Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 62, }, + req = { level = 40, int = 58, }, +} +itemBases["Runemastered Feathered Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 32, Ward = 98, }, + req = { level = 55, int = 78, }, +} +itemBases["Runemastered Gold Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 16, Ward = 196, }, + req = { level = 55, int = 78, }, +} +itemBases["Runemastered Vermeil Circlet"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 67, Ward = 37, }, + req = { level = 55, int = 78, }, +} +itemBases["Runemastered Jade Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 45, Ward = 141, }, + req = { level = 65, int = 91, }, +} +itemBases["Runemastered Twilight Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 72, Ward = 56, }, + req = { level = 65, int = 91, }, +} +itemBases["Runemastered Magus Tiara"] = { + type = "Helmet", + subType = "Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, int_armour = true, runeforged = true, }, + implicitModTypes = { }, + armour = { EnergyShield = 68, Ward = 70, }, + req = { level = 65, int = 91, }, +} + +itemBases["Brimmed Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 26, Evasion = 20, }, + req = { level = 5, str = 7, dex = 7, }, +} +itemBases["Guarded Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 42, Evasion = 34, }, + req = { level = 11, str = 11, dex = 11, }, +} +itemBases["Visored Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 54, Evasion = 46, }, + req = { level = 16, str = 15, dex = 15, }, +} +itemBases["Cowled Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 80, Evasion = 70, }, + req = { level = 26, str = 22, dex = 22, }, +} +itemBases["Shielded Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 97, Evasion = 87, }, + req = { level = 33, str = 27, dex = 27, }, +} +itemBases["Closed Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 128, Evasion = 115, }, + req = { level = 45, str = 36, dex = 36, }, +} +itemBases["Decorated Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 146, Evasion = 132, }, + req = { level = 52, str = 41, dex = 41, }, +} +itemBases["Gallant Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 179, Evasion = 163, }, + req = { level = 65, str = 50, dex = 50, }, +} +itemBases["Domed Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 128, Evasion = 115, }, + req = { level = 45, str = 36, dex = 36, }, +} +itemBases["Engraved Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 136, Evasion = 122, }, + req = { level = 48, str = 38, dex = 38, }, +} +itemBases["Soldier Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 143, Evasion = 129, }, + req = { level = 51, str = 40, dex = 40, }, +} +itemBases["Cabalist Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 151, Evasion = 137, }, + req = { level = 54, str = 42, dex = 42, }, +} +itemBases["Cassis Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 163, Evasion = 149, }, + req = { level = 59, str = 46, dex = 46, }, +} +itemBases["Warded Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 179, Evasion = 163, }, + req = { level = 65, str = 50, dex = 50, }, +} +itemBases["Cryptic Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 188, Evasion = 171, }, + req = { level = 70, str = 54, dex = 54, }, +} +itemBases["Champion Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 197, Evasion = 179, }, + req = { level = 75, str = 59, dex = 59, }, +} +itemBases["Gladiatorial Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 206, Evasion = 187, }, + req = { level = 80, str = 63, dex = 63, }, } -itemBases["Jungle Tiara"] = { +itemBases["Runeforged Brimmed Helm"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 78, }, - req = { level = 59, int = 83, }, + armour = { Armour = 26, Evasion = 20, Ward = 26, }, + req = { level = 5, str = 7, dex = 7, }, } -itemBases["Skycrown Tiara"] = { +itemBases["Runeforged Guarded Helm"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 84, }, - req = { level = 65, int = 91, }, + armour = { Armour = 42, Evasion = 34, Ward = 32, }, + req = { level = 11, str = 11, dex = 11, }, } -itemBases["Sorcerous Tiara"] = { +itemBases["Runeforged Visored Helm"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 92, }, - req = { level = 70, int = 99, }, + armour = { Armour = 54, Evasion = 46, Ward = 35, }, + req = { level = 16, str = 15, dex = 15, }, } -itemBases["Kamasan Tiara"] = { +itemBases["Runeforged Cowled Helm"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { EnergyShield = 101, }, - req = { level = 75, int = 107, }, + armour = { Armour = 80, Evasion = 70, Ward = 41, }, + req = { level = 26, str = 22, dex = 22, }, } -itemBases["Ancestral Tiara"] = { +itemBases["Runeforged Shielded Helm"] = { type = "Helmet", - subType = "Energy Shield", + subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, int_armour = true, karui_basetype = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { EnergyShield = 109, }, - req = { level = 80, int = 115, }, + armour = { Armour = 97, Evasion = 87, Ward = 44, }, + req = { level = 33, str = 27, dex = 27, }, } - -itemBases["Brimmed Helm"] = { +itemBases["Runeforged Closed Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 23, Evasion = 18, }, - req = { level = 5, str = 7, dex = 7, }, + armour = { Armour = 128, Evasion = 115, Ward = 52, }, + req = { level = 45, str = 36, dex = 36, }, } -itemBases["Guarded Helm"] = { +itemBases["Runeforged Decorated Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 34, Evasion = 28, }, - req = { level = 11, str = 11, dex = 11, }, + armour = { Ward = 233, }, + req = { level = 52, str = 41, dex = 41, }, } -itemBases["Visored Helm"] = { +itemBases["Runeforged Gallant Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 44, Evasion = 37, }, - req = { level = 16, str = 15, dex = 15, }, + armour = { Ward = 282, }, + req = { level = 65, str = 50, dex = 50, }, } -itemBases["Cowled Helm"] = { +itemBases["Runeforged Cabalist Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 62, Evasion = 54, }, - req = { level = 26, str = 22, dex = 22, }, + armour = { Armour = 113, Evasion = 102, Ward = 96, }, + req = { level = 54, str = 42, dex = 42, }, } -itemBases["Shielded Helm"] = { +itemBases["Runeforged Gladiatorial Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 75, Evasion = 66, }, - req = { level = 33, str = 27, dex = 27, }, + armour = { Armour = 147, Evasion = 134, Ward = 65, }, + req = { level = 59, str = 46, dex = 46, }, } -itemBases["Closed Helm"] = { +itemBases["Runeforged Warded Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 97, Evasion = 87, }, - req = { level = 45, str = 36, dex = 36, }, + armour = { Armour = 166, Evasion = 151, Ward = 48, }, + req = { level = 65, str = 50, dex = 50, }, } -itemBases["Decorated Helm"] = { +itemBases["Runeforged Cryptic Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 110, Evasion = 99, }, - req = { level = 52, str = 41, dex = 41, }, + armour = { Armour = 143, Evasion = 130, Ward = 85, }, + req = { level = 70, str = 54, dex = 54, }, } -itemBases["Gallant Helm"] = { +itemBases["Runeforged Champion Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 134, Evasion = 122, }, - req = { level = 65, str = 50, dex = 50, }, + armour = { Armour = 179, Evasion = 163, Ward = 56, }, + req = { level = 75, str = 59, dex = 59, }, } -itemBases["Domed Helm"] = { +itemBases["Runeforged Gladiatorial Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 97, Evasion = 87, }, - req = { level = 45, str = 36, dex = 36, }, + armour = { Armour = 54, Evasion = 49, Ward = 254, }, + req = { level = 80, str = 63, dex = 63, }, } -itemBases["Engraved Helm"] = { +itemBases["Runemastered Brimmed Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 102, Evasion = 92, }, - req = { level = 48, str = 38, dex = 38, }, + armour = { Armour = 44, Evasion = 39, Ward = 109, }, + req = { level = 38, str = 31, dex = 31, }, } -itemBases["Soldier Helm"] = { +itemBases["Runemastered Guarded Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_dex_armour = true, }, implicitModTypes = { }, - armour = { Armour = 108, Evasion = 98, }, - req = { level = 51, str = 40, dex = 40, }, + armour = { Armour = 275, Evasion = 247, Ward = 36, }, + req = { level = 38, str = 31, dex = 31, }, } -itemBases["Cabalist Helm"] = { +itemBases["Runemastered Visored Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 77, Evasion = 69, Ward = 54, }, + req = { level = 38, str = 31, dex = 31, }, +} +itemBases["Runemastered Cowled Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 104, Evasion = 93, Ward = 19, }, + req = { level = 40, str = 32, dex = 32, }, +} +itemBases["Runemastered Shielded Helm"] = { + type = "Helmet", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 107, Evasion = 97, Ward = 122, }, + req = { level = 55, str = 43, dex = 43, }, +} +itemBases["Runemastered Decorated Helm"] = { type = "Helmet", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 161, Evasion = 146, Ward = 70, }, + req = { level = 65, str = 50, dex = 50, }, +} + +itemBases["Iron Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 26, EnergyShield = 13, }, + req = { level = 5, str = 7, int = 7, }, +} +itemBases["Horned Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 39, EnergyShield = 16, }, + req = { level = 10, str = 10, int = 10, }, +} +itemBases["Cultist Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 54, EnergyShield = 19, }, + req = { level = 16, str = 15, int = 15, }, +} +itemBases["Martyr Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 85, EnergyShield = 27, }, + req = { level = 28, str = 23, int = 23, }, +} +itemBases["Heavy Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Armour = 97, EnergyShield = 30, }, + req = { level = 33, str = 27, int = 27, }, +} +itemBases["Spiritbone Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 128, EnergyShield = 37, }, + req = { level = 45, str = 36, int = 36, }, +} +itemBases["Lavish Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 146, EnergyShield = 42, }, + req = { level = 52, str = 41, int = 41, }, +} +itemBases["Archon Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 179, EnergyShield = 50, }, + req = { level = 65, str = 50, int = 50, }, +} +itemBases["Mailed Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 128, EnergyShield = 37, }, + req = { level = 45, str = 36, int = 36, }, +} +itemBases["Forest Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 136, EnergyShield = 39, }, + req = { level = 48, str = 38, int = 38, }, +} +itemBases["Zealot Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 143, EnergyShield = 41, }, + req = { level = 51, str = 40, int = 40, }, +} +itemBases["Hallowed Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 151, EnergyShield = 43, }, + req = { level = 54, str = 42, int = 42, }, +} +itemBases["Inquisitor Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 163, EnergyShield = 46, }, + req = { level = 59, str = 46, int = 46, }, +} +itemBases["Druidic Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 179, EnergyShield = 50, }, + req = { level = 65, str = 50, int = 50, }, +} +itemBases["Saintly Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 188, EnergyShield = 52, }, + req = { level = 70, str = 54, int = 54, }, +} +itemBases["Divine Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 197, EnergyShield = 55, }, + req = { level = 75, str = 59, int = 59, }, +} +itemBases["Cryptic Crown"] = { + type = "Helmet", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 113, Evasion = 103, }, - req = { level = 54, str = 42, dex = 42, }, + armour = { Armour = 206, EnergyShield = 57, }, + req = { level = 80, str = 63, int = 63, }, } -itemBases["Gladiatoral Helm"] = { +itemBases["Runeforged Iron Crown"] = { type = "Helmet", - subType = "Armour/Evasion", + subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 123, Evasion = 111, }, - req = { level = 59, str = 46, dex = 46, }, + armour = { Armour = 26, EnergyShield = 13, Ward = 26, }, + req = { level = 5, str = 7, int = 7, }, } -itemBases["Warded Helm"] = { +itemBases["Runeforged Horned Crown"] = { type = "Helmet", - subType = "Armour/Evasion", + subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 134, Evasion = 122, }, - req = { level = 65, str = 50, dex = 50, }, + armour = { Armour = 39, EnergyShield = 16, Ward = 30, }, + req = { level = 10, str = 10, int = 10, }, } -itemBases["Cryptic Helm"] = { +itemBases["Runeforged Cultist Crown"] = { type = "Helmet", - subType = "Armour/Evasion", + subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 147, Evasion = 134, }, - req = { level = 70, str = 54, dex = 54, }, + armour = { Armour = 54, EnergyShield = 19, Ward = 35, }, + req = { level = 16, str = 15, int = 15, }, } -itemBases["Champion Helm"] = { +itemBases["Runeforged Martyr Crown"] = { type = "Helmet", - subType = "Armour/Evasion", + subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 160, Evasion = 146, }, - req = { level = 75, str = 59, dex = 59, }, + armour = { Armour = 85, EnergyShield = 27, Ward = 43, }, + req = { level = 28, str = 23, int = 23, }, } -itemBases["Gladiatorial Helm"] = { +itemBases["Runeforged Heavy Crown"] = { type = "Helmet", - subType = "Armour/Evasion", + subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_dex_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 174, Evasion = 159, }, - req = { level = 80, str = 63, dex = 63, }, + armour = { Armour = 97, EnergyShield = 30, Ward = 44, }, + req = { level = 33, str = 27, int = 27, }, } - -itemBases["Iron Crown"] = { +itemBases["Runeforged Spiritbone Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 23, EnergyShield = 12, }, - req = { level = 5, str = 7, int = 7, }, + armour = { Armour = 128, EnergyShield = 37, Ward = 52, }, + req = { level = 45, str = 36, int = 36, }, } -itemBases["Horned Crown"] = { +itemBases["Runeforged Lavish Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 33, EnergyShield = 15, }, - req = { level = 10, str = 10, int = 10, }, + armour = { Ward = 233, }, + req = { level = 52, str = 41, int = 41, }, } -itemBases["Cultist Crown"] = { +itemBases["Runeforged Archon Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 44, EnergyShield = 19, }, - req = { level = 16, str = 15, int = 15, }, + armour = { Ward = 282, }, + req = { level = 65, str = 50, int = 50, }, } -itemBases["Martyr Crown"] = { +itemBases["Runeforged Hallowed Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 66, EnergyShield = 25, }, - req = { level = 28, str = 23, int = 23, }, + armour = { Armour = 121, EnergyShield = 34, Ward = 84, }, + req = { level = 54, str = 42, int = 42, }, } -itemBases["Heavy Crown"] = { +itemBases["Runeforged Inquisitor Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, vaal_basetype = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 75, EnergyShield = 28, }, - req = { level = 33, str = 27, int = 27, }, + armour = { Armour = 155, EnergyShield = 44, Ward = 52, }, + req = { level = 59, str = 46, int = 46, }, } -itemBases["Spiritbone Crown"] = { +itemBases["Runeforged Druidic Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 97, EnergyShield = 35, }, - req = { level = 45, str = 36, int = 36, }, + armour = { Armour = 161, EnergyShield = 45, Ward = 56, }, + req = { level = 65, str = 50, int = 50, }, } -itemBases["Lavish Crown"] = { +itemBases["Runeforged Saintly Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 110, EnergyShield = 39, }, - req = { level = 52, str = 41, int = 41, }, + armour = { Armour = 125, EnergyShield = 35, Ward = 113, }, + req = { level = 70, str = 54, int = 54, }, } -itemBases["Archon Crown"] = { +itemBases["Runeforged Divine Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 134, EnergyShield = 46, }, - req = { level = 65, str = 50, int = 50, }, + armour = { Armour = 179, EnergyShield = 50, Ward = 56, }, + req = { level = 75, str = 59, int = 59, }, } -itemBases["Mailed Crown"] = { +itemBases["Runeforged Cryptic Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 97, EnergyShield = 35, }, - req = { level = 45, str = 36, int = 36, }, + armour = { Armour = 54, EnergyShield = 15, Ward = 254, }, + req = { level = 80, str = 63, int = 63, }, } -itemBases["Forest Crown"] = { +itemBases["Runemastered Iron Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 102, EnergyShield = 37, }, - req = { level = 48, str = 38, int = 38, }, + armour = { Armour = 72, EnergyShield = 21, Ward = 72, }, + req = { level = 38, str = 31, int = 31, }, } -itemBases["Zealot Crown"] = { +itemBases["Runemastered Horned Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, ezomyte_basetype = true, helmet = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 108, EnergyShield = 38, }, - req = { level = 51, str = 40, int = 40, }, + armour = { Armour = 83, EnergyShield = 25, Ward = 54, }, + req = { level = 38, str = 31, int = 31, }, } -itemBases["Hallowed Crown"] = { +itemBases["Runemastered Cultist Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 113, EnergyShield = 40, }, - req = { level = 54, str = 42, int = 42, }, + armour = { Armour = 165, EnergyShield = 50, Ward = 49, }, + req = { level = 38, str = 31, int = 31, }, } -itemBases["Inquisitor Crown"] = { +itemBases["Runemastered Martyr Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, maraketh_basetype = true, runeforged = true, str_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 123, EnergyShield = 43, }, - req = { level = 59, str = 46, int = 46, }, + armour = { Armour = 66, EnergyShield = 20, Ward = 81, }, + req = { level = 40, str = 32, int = 32, }, } -itemBases["Druidic Crown"] = { +itemBases["Runemastered Heavy Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_int_armour = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Armour = 134, EnergyShield = 46, }, - req = { level = 65, str = 50, int = 50, }, + armour = { Armour = 77, EnergyShield = 22, Ward = 122, }, + req = { level = 55, str = 43, int = 43, }, } -itemBases["Saintly Crown"] = { +itemBases["Runemastered Spiritbone Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, - implicitModTypes = { }, - armour = { Armour = 147, EnergyShield = 51, }, - req = { level = 70, str = 54, int = 54, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicit = "Has 3 Sockets", + implicitModTypes = { { }, }, + armour = { Armour = 116, EnergyShield = 32, Ward = 113, }, + req = { level = 65, str = 50, int = 50, }, } -itemBases["Divine Crown"] = { +itemBases["Runemastered Spiritbone Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, str_int_armour = true, }, - implicitModTypes = { }, - armour = { Armour = 160, EnergyShield = 55, }, - req = { level = 75, str = 59, int = 59, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicit = "(25-50)% increased Runic Ward Regeneration Rate\n+250 Intelligence Requirement\n100% reduced Duration of Curses on you", + implicitModTypes = { { "runic_ward" }, { }, { "caster", "curse" }, }, + armour = { Armour = 116, EnergyShield = 32, Ward = 113, }, + req = { level = 65, str = 50, int = 50, }, } -itemBases["Cryptic Crown"] = { +itemBases["Runemastered Spiritbone Crown"] = { type = "Helmet", subType = "Armour/Energy Shield", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, helmet = true, karui_basetype = true, str_int_armour = true, }, - implicitModTypes = { }, - armour = { Armour = 174, EnergyShield = 60, }, - req = { level = 80, str = 63, int = 63, }, + tags = { armour = true, default = true, helmet = true, karui_basetype = true, runeforged = true, str_int_armour = true, }, + implicit = "Every 5 seconds, gain a Verisium Infusion", + implicitModTypes = { { }, }, + armour = { Armour = 116, EnergyShield = 32, Ward = 113, }, + req = { level = 65, str = 50, int = 50, }, } itemBases["Hewn Mask"] = { @@ -955,7 +2159,7 @@ itemBases["Hewn Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 18, EnergyShield = 12, }, + armour = { Evasion = 20, EnergyShield = 13, }, req = { level = 5, dex = 7, int = 7, }, } itemBases["Face Mask"] = { @@ -965,7 +2169,7 @@ itemBases["Face Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 26, EnergyShield = 15, }, + armour = { Evasion = 32, EnergyShield = 16, }, req = { level = 10, dex = 10, int = 10, }, } itemBases["Hooded Mask"] = { @@ -975,7 +2179,7 @@ itemBases["Hooded Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 37, EnergyShield = 19, }, + armour = { Evasion = 46, EnergyShield = 19, }, req = { level = 16, dex = 15, int = 15, }, } itemBases["Veiled Mask"] = { @@ -985,7 +2189,7 @@ itemBases["Veiled Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 58, EnergyShield = 25, }, + armour = { Evasion = 75, EnergyShield = 27, }, req = { level = 28, dex = 23, int = 23, }, } itemBases["Tribal Mask"] = { @@ -995,7 +2199,7 @@ itemBases["Tribal Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, vaal_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 66, EnergyShield = 28, }, + armour = { Evasion = 87, EnergyShield = 30, }, req = { level = 33, dex = 27, int = 27, }, } itemBases["Solid Mask"] = { @@ -1005,7 +2209,7 @@ itemBases["Solid Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 87, EnergyShield = 35, }, + armour = { Evasion = 115, EnergyShield = 37, }, req = { level = 45, dex = 36, int = 36, }, } itemBases["Shaded Mask"] = { @@ -1015,7 +2219,7 @@ itemBases["Shaded Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 99, EnergyShield = 39, }, + armour = { Evasion = 132, EnergyShield = 42, }, req = { level = 52, dex = 41, int = 41, }, } itemBases["Death Mask"] = { @@ -1025,7 +2229,7 @@ itemBases["Death Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 122, EnergyShield = 46, }, + armour = { Evasion = 163, EnergyShield = 50, }, req = { level = 65, dex = 50, int = 50, }, } itemBases["Oak Mask"] = { @@ -1035,7 +2239,7 @@ itemBases["Oak Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 87, EnergyShield = 35, }, + armour = { Evasion = 115, EnergyShield = 37, }, req = { level = 45, dex = 36, int = 36, }, } itemBases["Bandit Mask"] = { @@ -1045,7 +2249,7 @@ itemBases["Bandit Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 92, EnergyShield = 37, }, + armour = { Evasion = 122, EnergyShield = 39, }, req = { level = 48, dex = 38, int = 38, }, } itemBases["Skulking Mask"] = { @@ -1055,7 +2259,7 @@ itemBases["Skulking Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 98, EnergyShield = 38, }, + armour = { Evasion = 129, EnergyShield = 41, }, req = { level = 51, dex = 40, int = 40, }, } itemBases["Pariah Mask"] = { @@ -1065,7 +2269,7 @@ itemBases["Pariah Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 103, EnergyShield = 40, }, + armour = { Evasion = 137, EnergyShield = 43, }, req = { level = 54, dex = 42, int = 42, }, } itemBases["Avian Mask"] = { @@ -1075,7 +2279,7 @@ itemBases["Avian Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 111, EnergyShield = 43, }, + armour = { Evasion = 149, EnergyShield = 46, }, req = { level = 59, dex = 46, int = 46, }, } itemBases["Brigand Mask"] = { @@ -1085,7 +2289,7 @@ itemBases["Brigand Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 122, EnergyShield = 46, }, + armour = { Evasion = 163, EnergyShield = 50, }, req = { level = 65, dex = 50, int = 50, }, } itemBases["Faridun Mask"] = { @@ -1095,7 +2299,7 @@ itemBases["Faridun Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 134, EnergyShield = 51, }, + armour = { Evasion = 171, EnergyShield = 52, }, req = { level = 70, dex = 54, int = 54, }, } itemBases["Soaring Mask"] = { @@ -1105,7 +2309,7 @@ itemBases["Soaring Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, }, implicitModTypes = { }, - armour = { Evasion = 146, EnergyShield = 55, }, + armour = { Evasion = 179, EnergyShield = 55, }, req = { level = 75, dex = 59, int = 59, }, } itemBases["Grinning Mask"] = { @@ -1115,9 +2319,219 @@ itemBases["Grinning Mask"] = { socketLimit = 3, tags = { armour = true, default = true, dex_int_armour = true, helmet = true, karui_basetype = true, }, implicitModTypes = { }, - armour = { Evasion = 159, EnergyShield = 60, }, + armour = { Evasion = 187, EnergyShield = 57, }, + req = { level = 80, dex = 63, int = 63, }, +} +itemBases["Runeforged Hewn Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 20, EnergyShield = 13, Ward = 26, }, + req = { level = 5, dex = 7, int = 7, }, +} +itemBases["Runeforged Face Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 32, EnergyShield = 16, Ward = 30, }, + req = { level = 10, dex = 10, int = 10, }, +} +itemBases["Runeforged Hooded Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 46, EnergyShield = 19, Ward = 35, }, + req = { level = 16, dex = 15, int = 15, }, +} +itemBases["Runeforged Veiled Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 75, EnergyShield = 27, Ward = 43, }, + req = { level = 28, dex = 23, int = 23, }, +} +itemBases["Runeforged Tribal Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 87, EnergyShield = 30, Ward = 44, }, + req = { level = 33, dex = 27, int = 27, }, +} +itemBases["Runeforged Solid Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 115, EnergyShield = 37, Ward = 52, }, + req = { level = 45, dex = 36, int = 36, }, +} +itemBases["Runeforged Shaded Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 233, }, + req = { level = 52, dex = 41, int = 41, }, +} +itemBases["Runeforged Death Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Ward = 282, }, + req = { level = 65, dex = 50, int = 50, }, +} +itemBases["Runeforged Pariah Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 123, EnergyShield = 39, Ward = 60, }, + req = { level = 54, dex = 42, int = 42, }, +} +itemBases["Runeforged Avian Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 119, EnergyShield = 37, Ward = 91, }, + req = { level = 59, dex = 46, int = 46, }, +} +itemBases["Runeforged Brigand Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 155, EnergyShield = 47, Ward = 42, }, + req = { level = 65, dex = 50, int = 50, }, +} +itemBases["Runeforged Faridun Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 122, EnergyShield = 37, Ward = 99, }, + req = { level = 70, dex = 54, int = 54, }, +} +itemBases["Runeforged Soaring Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 163, EnergyShield = 50, Ward = 56, }, + req = { level = 75, dex = 59, int = 59, }, +} +itemBases["Runeforged Grinning Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 49, EnergyShield = 15, Ward = 254, }, req = { level = 80, dex = 63, int = 63, }, } +itemBases["Runemastered Hewn Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 30, EnergyShield = 10, Ward = 54, }, + req = { level = 38, dex = 31, int = 31, }, +} +itemBases["Runemastered Face Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, ezomyte_basetype = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 118, EnergyShield = 40, Ward = 18, }, + req = { level = 38, dex = 31, int = 31, }, +} +itemBases["Runemastered Hooded Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 69, EnergyShield = 23, Ward = 54, }, + req = { level = 38, dex = 31, int = 31, }, +} +itemBases["Runemastered Veiled Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, maraketh_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 78, EnergyShield = 26, Ward = 57, }, + req = { level = 40, dex = 32, int = 32, }, +} +itemBases["Runemastered Tribal Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, vaal_basetype = true, }, + implicitModTypes = { }, + armour = { Evasion = 105, EnergyShield = 33, Ward = 47, }, + req = { level = 52, dex = 41, int = 41, }, +} +itemBases["Runemastered Solid Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, karui_basetype = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 125, EnergyShield = 39, Ward = 37, }, + req = { level = 55, dex = 43, int = 43, }, +} +itemBases["Runemastered Death Mask"] = { + type = "Helmet", + subType = "Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, dex_int_armour = true, helmet = true, runeforged = true, }, + implicitModTypes = { }, + armour = { Evasion = 130, EnergyShield = 40, Ward = 70, }, + req = { level = 65, dex = 50, int = 50, }, +} itemBases["Grand Visage"] = { type = "Helmet", @@ -1126,7 +2540,27 @@ itemBases["Grand Visage"] = { socketLimit = 3, tags = { armour = true, default = true, helmet = true, str_dex_int_armour = true, }, implicitModTypes = { }, - armour = { Armour = 88, Evasion = 80, EnergyShield = 30, }, + armour = { Armour = 119, Evasion = 109, EnergyShield = 33, }, + req = { level = 65, str = 36, dex = 36, int = 36, }, +} +itemBases["Runeforged Grand Visage"] = { + type = "Helmet", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 113, Evasion = 103, EnergyShield = 31, Ward = 56, }, + req = { level = 65, str = 36, dex = 36, int = 36, }, +} +itemBases["Runemastered Grand Visage"] = { + type = "Helmet", + subType = "Armour/Evasion/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, helmet = true, runeforged = true, str_dex_int_armour = true, }, + implicitModTypes = { }, + armour = { Armour = 77, Evasion = 71, EnergyShield = 22, Ward = 99, }, req = { level = 65, str = 36, dex = 36, int = 36, }, } @@ -1146,7 +2580,7 @@ itemBases["Golden Visage"] = { socketLimit = 3, tags = { armour = true, default = true, demigods = true, helmet = true, not_for_sale = true, }, implicit = "+(8-16)% to all Elemental Resistances", - implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, armour = { }, req = { level = 12, }, } diff --git a/src/Data/Bases/incursionlimb.lua b/src/Data/Bases/incursionlimb.lua index eb7b76c052..fca797da10 100644 --- a/src/Data/Bases/incursionlimb.lua +++ b/src/Data/Bases/incursionlimb.lua @@ -24,7 +24,7 @@ itemBases["Caster Arm"] = { subType = "Transcendent Arm", tags = { default = true, }, implicit = "(6-10)% increased Cast Speed", - implicitModTypes = { { "caster", "speed" }, }, + implicitModTypes = { { "caster_speed", "caster", "speed" }, }, req = { }, } itemBases["Decrepifying Arm"] = { @@ -40,7 +40,7 @@ itemBases["Deflective Arm"] = { subType = "Transcendent Arm", tags = { default = true, }, implicit = "(6-10)% increased Deflection Rating", - implicitModTypes = { { "evasion", "defences" }, }, + implicitModTypes = { { "defences", "evasion" }, }, req = { }, } itemBases["Commanding Arm"] = { @@ -48,7 +48,7 @@ itemBases["Commanding Arm"] = { subType = "Transcendent Arm", tags = { default = true, }, implicit = "(15-25)% increased Presence Area of Effect", - implicitModTypes = { { }, }, + implicitModTypes = { { "aura" }, }, req = { }, } itemBases["Evasive Leg"] = { @@ -56,7 +56,7 @@ itemBases["Evasive Leg"] = { subType = "Transcendent Leg", tags = { default = true, }, implicit = "(20-30)% increased Evasion Rating", - implicitModTypes = { { "evasion", "defences" }, }, + implicitModTypes = { { "defences", "evasion" }, }, req = { }, } itemBases["Sprinters Leg"] = { @@ -64,7 +64,7 @@ itemBases["Sprinters Leg"] = { subType = "Transcendent Leg", tags = { default = true, }, implicit = "(6-10)% increased Movement Speed while Sprinting", - implicitModTypes = { { }, }, + implicitModTypes = { { "speed" }, }, req = { }, } itemBases["Sturdy Leg"] = { diff --git a/src/Data/Bases/jewel.lua b/src/Data/Bases/jewel.lua index c1cc4ff3d6..3624b0969d 100644 --- a/src/Data/Bases/jewel.lua +++ b/src/Data/Bases/jewel.lua @@ -23,7 +23,7 @@ itemBases["Sapphire"] = { itemBases["Diamond"] = { type = "Jewel", hidden = true, - tags = { default = true, jewel = true, not_for_sale = true, }, + tags = { default = true, dexjewel = true, intjewel = true, jewel = true, not_for_sale = true, strjewel = true, }, implicitModTypes = { }, req = { }, } @@ -53,7 +53,7 @@ itemBases["Time-Lost Diamond"] = { type = "Jewel", subType = "Radius", hidden = true, - tags = { default = true, jewel = true, not_for_sale = true, radius_jewel = true, }, + tags = { default = true, dex_radius_jewel = true, int_radius_jewel = true, jewel = true, not_for_sale = true, radius_jewel = true, str_radius_jewel = true, }, implicitModTypes = { }, req = { }, } diff --git a/src/Data/Bases/mace.lua b/src/Data/Bases/mace.lua index f2845f3050..0c525473e8 100644 --- a/src/Data/Bases/mace.lua +++ b/src/Data/Bases/mace.lua @@ -8,7 +8,7 @@ itemBases["Wooden Club"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { }, } itemBases["Smithing Hammer"] = { @@ -17,7 +17,7 @@ itemBases["Smithing Hammer"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 5, PhysicalMax = 9, FireMin = 5, FireMax = 9, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 5, PhysicalMax = 9, FireMin = 5, FireMax = 9, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { str = 11, }, } itemBases["Slim Mace"] = { @@ -26,7 +26,7 @@ itemBases["Slim Mace"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 11, PhysicalMax = 17, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 11, PhysicalMax = 17, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 10, str = 21, }, } itemBases["Spiked Club"] = { @@ -35,7 +35,7 @@ itemBases["Spiked Club"] = { socketLimit = 3, tags = { default = true, mace = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 15, PhysicalMax = 24, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 15, PhysicalMax = 24, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 16, str = 31, }, } itemBases["Warpick"] = { @@ -45,7 +45,7 @@ itemBases["Warpick"] = { tags = { default = true, mace = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "+(5-10)% to Critical Damage Bonus", implicitModTypes = { { "damage", "attack", "critical" }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 24, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 18, PhysicalMax = 24, CritChanceBase = 7, AttackRateBase = 1.45, Range = 13, }, req = { level = 22, str = 41, }, } itemBases["Plated Mace"] = { @@ -54,7 +54,7 @@ itemBases["Plated Mace"] = { socketLimit = 3, tags = { default = true, mace = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 26, str = 48, }, } itemBases["Brigand Mace"] = { @@ -63,7 +63,7 @@ itemBases["Brigand Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 28, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 28, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 33, str = 60, }, } itemBases["Construct Hammer"] = { @@ -73,7 +73,7 @@ itemBases["Construct Hammer"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, vaal_basetype = true, weapon = true, }, implicit = "40% chance to Daze on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 31, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 31, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 36, str = 65, }, } itemBases["Morning Star"] = { @@ -82,7 +82,7 @@ itemBases["Morning Star"] = { socketLimit = 3, tags = { default = true, karui_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 6.5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 6.5, AttackRateBase = 1.45, Range = 13, }, req = { level = 45, str = 80, }, } itemBases["Jade Club"] = { @@ -92,7 +92,7 @@ itemBases["Jade Club"] = { tags = { default = true, karui_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Always Hits", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 31, PhysicalMax = 51, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 31, PhysicalMax = 51, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 49, str = 87, }, } itemBases["Lumen Mace"] = { @@ -101,7 +101,7 @@ itemBases["Lumen Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 52, str = 92, }, } itemBases["Execratus Hammer"] = { @@ -110,7 +110,7 @@ itemBases["Execratus Hammer"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 40, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 40, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 55, str = 97, }, } itemBases["Torment Club"] = { @@ -119,9 +119,68 @@ itemBases["Torment Club"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 65, str = 114, }, } +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "100% of Lightning Damage Converted to Cold Damage", + implicitModTypes = { { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + weapon = { ColdMin = 44, ColdMax = 209, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "+(1.5-2) metres to Melee Strike Range", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "(40-60)% increased Lightning Damage", + implicitModTypes = { { "elemental_damage", "damage", "elemental", "lightning" }, }, + weapon = { LightningMin = 85, LightningMax = 403, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "(50-100)% chance for Lightning Skills to Chain an additional time", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 44, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} +itemBases["Runemastered Torment Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 54, PhysicalMax = 91, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 124, }, +} itemBases["Kalguuran Forgehammer"] = { type = "One Hand Mace", quality = 20, @@ -129,7 +188,7 @@ itemBases["Kalguuran Forgehammer"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Has 3 Sockets", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 30, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 33, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 47, }, } itemBases["Calescent Hammer"] = { @@ -138,7 +197,7 @@ itemBases["Calescent Hammer"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 22, PhysicalMax = 37, FireMin = 22, FireMax = 37, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 22, PhysicalMax = 37, FireMin = 22, FireMax = 37, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 45, str = 80, }, } itemBases["Flared Mace"] = { @@ -147,7 +206,7 @@ itemBases["Flared Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 33, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 33, PhysicalMax = 50, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 48, str = 86, }, } itemBases["Battle Pick"] = { @@ -157,7 +216,7 @@ itemBases["Battle Pick"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "+(5-10)% to Critical Damage Bonus", implicitModTypes = { { "damage", "attack", "critical" }, }, - weapon = { PhysicalMin = 35, PhysicalMax = 47, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 35, PhysicalMax = 47, CritChanceBase = 7, AttackRateBase = 1.45, Range = 13, }, req = { level = 51, str = 91, }, } itemBases["Marching Mace"] = { @@ -166,16 +225,25 @@ itemBases["Marching Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 33, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 33, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 54, str = 96, }, } +itemBases["Runeforged Marching Mace"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 46, PhysicalMax = 96, CritChanceBase = 7.5, AttackRateBase = 1.4, Range = 13, }, + req = { level = 65, str = 114, }, +} itemBases["Bandit Mace"] = { type = "One Hand Mace", quality = 20, socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 45, PhysicalMax = 61, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 45, PhysicalMax = 61, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 59, str = 104, }, } itemBases["Structured Hammer"] = { @@ -185,16 +253,113 @@ itemBases["Structured Hammer"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "40% chance to Daze on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 49, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 49, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 62, str = 109, }, } +itemBases["Runeforged Wooden Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "(20-30)% increased Area of Effect for Attacks", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 83, PhysicalMax = 138, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 38, str = 68, }, +} +itemBases["Runemastered Wooden Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "(20-30)% increased Area of Effect for Attacks", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 132, PhysicalMax = 220, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 55, str = 97, }, +} +itemBases["Runeforged Slim Mace"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 48, PhysicalMax = 72, ColdMin = 48, ColdMax = 72, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, + req = { level = 38, str = 68, }, +} +itemBases["Runeforged Spiked Club"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 56, PhysicalMax = 93, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, + req = { level = 40, str = 72, }, +} +itemBases["Runeforged Warpick"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "(30-40)% increased effect of Fully Broken Armour", + implicitModTypes = { { "physical" }, }, + weapon = { PhysicalMin = 75, PhysicalMax = 102, CritChanceBase = 7, AttackRateBase = 1.45, Range = 13, }, + req = { level = 38, str = 68, }, +} +itemBases["Runeforged Kalguuran Forgehammer"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "Has 3 Sockets", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 59, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.75, Range = 13, }, + req = { level = 65, }, +} +itemBases["Runeforged Kalguuran Forgehammer"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "Has 3 Sockets", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 98, PhysicalMax = 163, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, }, +} +itemBases["Runeforged Kalguuran Forgehammer"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "Has 3 Sockets", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 59, PhysicalMax = 99, CritChanceBase = 10, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, }, +} +itemBases["Runeforged Kalguuran Forgehammer"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, runeforged = true, weapon = true, }, + implicit = "Has 3 Sockets\n+(100-150) to maximum Runic Ward", + implicitModTypes = { { }, { "runic_ward" }, }, + weapon = { PhysicalMin = 59, PhysicalMax = 99, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, }, +} +itemBases["Runeforged Morning Star"] = { + type = "One Hand Mace", + quality = 20, + socketLimit = 3, + tags = { default = true, karui_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { FireMin = 90, FireMax = 134, CritChanceBase = 6.5, AttackRateBase = 1.45, Range = 13, }, + req = { level = 65, str = 114, }, +} itemBases["Flanged Mace"] = { type = "One Hand Mace", quality = 20, socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 45, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 45, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 67, str = 134, }, } itemBases["Crown Mace"] = { @@ -203,7 +368,7 @@ itemBases["Crown Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 43, PhysicalMax = 89, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 43, PhysicalMax = 89, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 72, str = 149, }, } itemBases["Molten Hammer"] = { @@ -212,7 +377,7 @@ itemBases["Molten Hammer"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 35, PhysicalMax = 59, FireMin = 35, FireMax = 59, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 35, PhysicalMax = 59, FireMin = 35, FireMax = 59, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 77, str = 163, }, } itemBases["Strife Pick"] = { @@ -222,7 +387,7 @@ itemBases["Strife Pick"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "+(5-10)% to Critical Damage Bonus", implicitModTypes = { { "damage", "attack", "critical" }, }, - weapon = { PhysicalMin = 49, PhysicalMax = 66, CritChanceBase = 7, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 49, PhysicalMax = 66, CritChanceBase = 7, AttackRateBase = 1.45, Range = 13, }, req = { level = 78, str = 163, }, } itemBases["Fortified Hammer"] = { @@ -232,7 +397,7 @@ itemBases["Fortified Hammer"] = { tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "40% chance to Daze on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 60, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.4, Range = 11, }, + weapon = { PhysicalMin = 60, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.4, Range = 13, }, req = { level = 79, str = 163, }, } itemBases["Marauding Mace"] = { @@ -241,7 +406,7 @@ itemBases["Marauding Mace"] = { socketLimit = 3, tags = { default = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 51, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 51, PhysicalMax = 84, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 77, str = 163, }, } itemBases["Akoyan Club"] = { @@ -251,7 +416,7 @@ itemBases["Akoyan Club"] = { tags = { default = true, karui_basetype = true, mace = true, one_hand_weapon = true, onehand = true, weapon = true, }, implicit = "Always Hits", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 46, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.45, Range = 11, }, + weapon = { PhysicalMin = 46, PhysicalMax = 76, CritChanceBase = 5, AttackRateBase = 1.45, Range = 13, }, req = { level = 78, str = 163, }, } @@ -261,7 +426,7 @@ itemBases["Felled Greatclub"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 13, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 13, PhysicalMax = 18, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { }, } itemBases["Oak Greathammer"] = { @@ -271,7 +436,7 @@ itemBases["Oak Greathammer"] = { tags = { default = true, ezomyte_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Causes (20-40)% increased Stun Buildup", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 16, PhysicalMax = 30, CritChanceBase = 5, AttackRateBase = 1, Range = 13, }, + weapon = { PhysicalMin = 16, PhysicalMax = 30, CritChanceBase = 5, AttackRateBase = 1, Range = 15, }, req = { str = 11, }, } itemBases["Forge Maul"] = { @@ -281,7 +446,7 @@ itemBases["Forge Maul"] = { tags = { default = true, ezomyte_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Crushes Enemies on Hit", implicitModTypes = { { "physical" }, }, - weapon = { PhysicalMin = 26, PhysicalMax = 35, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 26, PhysicalMax = 35, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 11, str = 23, }, } itemBases["Studded Greatclub"] = { @@ -290,7 +455,7 @@ itemBases["Studded Greatclub"] = { socketLimit = 4, tags = { default = true, mace = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 32, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 32, PhysicalMax = 48, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 16, str = 31, }, } itemBases["Cultist Greathammer"] = { @@ -300,7 +465,7 @@ itemBases["Cultist Greathammer"] = { tags = { default = true, mace = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Strikes deal Splash Damage", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 36, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 36, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 22, str = 41, }, } itemBases["Temple Maul"] = { @@ -309,7 +474,7 @@ itemBases["Temple Maul"] = { socketLimit = 4, tags = { default = true, mace = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 28, str = 52, }, } itemBases["Leaden Greathammer"] = { @@ -318,7 +483,7 @@ itemBases["Leaden Greathammer"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 58, PhysicalMax = 78, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 58, PhysicalMax = 78, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 33, str = 60, }, } itemBases["Crumbling Maul"] = { @@ -328,7 +493,7 @@ itemBases["Crumbling Maul"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 62, PhysicalMax = 75, CritChanceBase = 8, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 62, PhysicalMax = 75, CritChanceBase = 8, AttackRateBase = 1.1, Range = 15, }, req = { level = 38, str = 68, }, } itemBases["Pointed Maul"] = { @@ -337,7 +502,7 @@ itemBases["Pointed Maul"] = { socketLimit = 4, tags = { default = true, karui_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 68, PhysicalMax = 102, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 68, PhysicalMax = 102, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 15, }, req = { level = 45, str = 80, }, } itemBases["Totemic Greatclub"] = { @@ -347,7 +512,7 @@ itemBases["Totemic Greatclub"] = { tags = { default = true, karui_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Warcries Empower an additional Attack", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 77, PhysicalMax = 105, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 77, PhysicalMax = 105, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 50, str = 89, }, } itemBases["Greatmace"] = { @@ -356,7 +521,7 @@ itemBases["Greatmace"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 74, PhysicalMax = 124, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 74, PhysicalMax = 124, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 52, str = 92, }, } itemBases["Precise Greathammer"] = { @@ -365,7 +530,7 @@ itemBases["Precise Greathammer"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 87, PhysicalMax = 118, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 87, PhysicalMax = 118, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 54, str = 96, }, } itemBases["Giant Maul"] = { @@ -374,7 +539,7 @@ itemBases["Giant Maul"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 96, PhysicalMax = 144, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 96, PhysicalMax = 144, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 65, str = 114, }, } itemBases["Snakewood Greathammer"] = { @@ -384,7 +549,7 @@ itemBases["Snakewood Greathammer"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Causes (20-40)% increased Stun Buildup", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 62, PhysicalMax = 115, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 45, str = 80, }, } itemBases["Blacksmith Maul"] = { @@ -394,7 +559,7 @@ itemBases["Blacksmith Maul"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Crushes Enemies on Hit", implicitModTypes = { { "physical" }, }, - weapon = { PhysicalMin = 75, PhysicalMax = 102, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 75, PhysicalMax = 102, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 48, str = 86, }, } itemBases["Zealot Greathammer"] = { @@ -404,7 +569,7 @@ itemBases["Zealot Greathammer"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Strikes deal Splash Damage", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 70, PhysicalMax = 95, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 70, PhysicalMax = 95, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 51, str = 91, }, } itemBases["Solemn Maul"] = { @@ -413,7 +578,7 @@ itemBases["Solemn Maul"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 59, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 59, PhysicalMax = 123, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 54, str = 96, }, } itemBases["Heavy Greathammer"] = { @@ -422,7 +587,7 @@ itemBases["Heavy Greathammer"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 94, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 94, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 59, str = 104, }, } itemBases["Disintegrating Maul"] = { @@ -432,9 +597,123 @@ itemBases["Disintegrating Maul"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 92, PhysicalMax = 112, CritChanceBase = 8, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 92, PhysicalMax = 112, CritChanceBase = 8, AttackRateBase = 1.1, Range = 15, }, req = { level = 62, str = 109, }, } +itemBases["Runeforged Felled Greatclub"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, ezomyte_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 146, PhysicalMax = 197, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, + req = { level = 38, str = 68, }, +} +itemBases["Runemastered Felled Greatclub"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, ezomyte_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 217, PhysicalMax = 293, CritChanceBase = 10, AttackRateBase = 1.1, Range = 15, }, + req = { level = 55, str = 97, }, +} +itemBases["Runeforged Oak Greathammer"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, ezomyte_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Causes (20-40)% increased Stun Buildup", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 73, PhysicalMax = 135, CritChanceBase = 5, AttackRateBase = 1, Range = 15, }, + req = { level = 38, str = 68, }, +} +itemBases["Runemastered Oak Greathammer"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, ezomyte_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Causes (20-40)% increased Stun Buildup", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 111, PhysicalMax = 207, CritChanceBase = 5, AttackRateBase = 1, Range = 15, }, + req = { level = 55, str = 97, }, +} +itemBases["Runeforged Forge Maul"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, ezomyte_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Crushes Enemies on Hit", + implicitModTypes = { { "physical" }, }, + weapon = { PhysicalMin = 147, PhysicalMax = 199, CritChanceBase = 10, AttackRateBase = 1.05, Range = 15, }, + req = { level = 40, str = 72, }, +} +itemBases["Runeforged Studded Greatclub"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, maraketh_basetype = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 23, PhysicalMax = 62, LightningMin = 70, LightningMax = 186, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, + req = { level = 38, str = 68, }, +} +itemBases["Runemastered Studded Greatclub"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, maraketh_basetype = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 15, PhysicalMax = 140, LightningMin = 46, LightningMax = 420, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, + req = { level = 55, str = 97, }, +} +itemBases["Runeforged Cultist Greathammer"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, maraketh_basetype = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Strikes deal Splash Damage\n(20-30)% increased Bleeding Duration", + implicitModTypes = { { "attack" }, { "bleed", "physical", "attack", "ailment" }, }, + weapon = { PhysicalMin = 144, PhysicalMax = 194, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, + req = { level = 40, str = 72, }, +} +itemBases["Runeforged Temple Maul"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, maraketh_basetype = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 64, PhysicalMax = 134, CritChanceBase = 5, AttackRateBase = 1.3, Range = 15, }, + req = { level = 55, str = 76, dex = 40, }, +} +itemBases["Runeforged Leaden Greathammer"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 132, PhysicalMax = 179, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, + req = { level = 55, str = 60, int = 50, }, +} +itemBases["Runeforged Crumbling Maul"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, + implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 105, PhysicalMax = 128, CritChanceBase = 8, AttackRateBase = 1.1, Range = 15, }, + req = { level = 55, str = 97, }, +} +itemBases["Runeforged Pointed Maul"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, karui_basetype = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Strikes deal Splash Damage", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 125, PhysicalMax = 188, CritChanceBase = 6.5, AttackRateBase = 1.1, Range = 15, }, + req = { level = 65, str = 114, }, +} itemBases["Anvil Maul"] = { type = "Two Hand Mace", quality = 20, @@ -442,7 +721,7 @@ itemBases["Anvil Maul"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Crushes Enemies on Hit", implicitModTypes = { { "physical" }, }, - weapon = { PhysicalMin = 101, PhysicalMax = 136, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 101, PhysicalMax = 136, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 67, str = 134, }, } itemBases["Sacred Maul"] = { @@ -451,7 +730,7 @@ itemBases["Sacred Maul"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 76, PhysicalMax = 158, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 76, PhysicalMax = 158, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, req = { level = 72, str = 149, }, } itemBases["Ironwood Greathammer"] = { @@ -461,7 +740,7 @@ itemBases["Ironwood Greathammer"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Causes (30-50)% increased Stun Buildup", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 105, PhysicalMax = 196, CritChanceBase = 5, AttackRateBase = 1, Range = 13, }, + weapon = { PhysicalMin = 105, PhysicalMax = 196, CritChanceBase = 5, AttackRateBase = 1, Range = 15, }, req = { level = 77, str = 163, }, } itemBases["Fanatic Greathammer"] = { @@ -471,7 +750,7 @@ itemBases["Fanatic Greathammer"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Strikes deal Splash Damage", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 101, PhysicalMax = 137, CritChanceBase = 5, AttackRateBase = 1.05, Range = 13, }, + weapon = { PhysicalMin = 101, PhysicalMax = 137, CritChanceBase = 5, AttackRateBase = 1.05, Range = 15, }, req = { level = 78, str = 163, }, } itemBases["Ruination Maul"] = { @@ -481,7 +760,7 @@ itemBases["Ruination Maul"] = { tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 104, PhysicalMax = 127, CritChanceBase = 8, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 104, PhysicalMax = 127, CritChanceBase = 8, AttackRateBase = 1.1, Range = 15, }, req = { level = 79, str = 163, }, } itemBases["Massive Greathammer"] = { @@ -490,7 +769,7 @@ itemBases["Massive Greathammer"] = { socketLimit = 4, tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 119, PhysicalMax = 161, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 119, PhysicalMax = 161, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 77, str = 163, }, } itemBases["Tawhoan Greatclub"] = { @@ -500,6 +779,53 @@ itemBases["Tawhoan Greatclub"] = { tags = { default = true, karui_basetype = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Warcries Empower an additional Attack", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 113, PhysicalMax = 153, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, + weapon = { PhysicalMin = 113, PhysicalMax = 153, CritChanceBase = 5, AttackRateBase = 1.1, Range = 15, }, req = { level = 78, str = 163, }, } +itemBases["Aberrant Sledge"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 74, PhysicalMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, + req = { level = 70, str = 163, }, +} +itemBases["Runemastered Aberrant Sledge"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 151, PhysicalMax = 315, CritChanceBase = 5, AttackRateBase = 1, Range = 15, }, + req = { level = 70, str = 163, }, +} +itemBases["Runemastered Aberrant Sledge"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Skills which create Fissures have a 50% chance to create an additional Fissure", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 74, PhysicalMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, + req = { level = 70, str = 163, }, +} +itemBases["Runemastered Aberrant Sledge"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "(200-300)% increased Freeze Buildup", + implicitModTypes = { { "elemental", "cold", "ailment" }, }, + weapon = { PhysicalMin = 74, PhysicalMax = 154, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, + req = { level = 70, str = 163, }, +} +itemBases["Runemastered Aberrant Sledge"] = { + type = "Two Hand Mace", + quality = 20, + socketLimit = 4, + tags = { default = true, mace = true, runeforged = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 29, PhysicalMax = 61, ColdMin = 118, ColdMax = 246, CritChanceBase = 5, AttackRateBase = 1.2, Range = 15, }, + req = { level = 70, str = 163, }, +} diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua index a11e6800f1..7d1ff10eea 100644 --- a/src/Data/Bases/ring.lua +++ b/src/Data/Bases/ring.lua @@ -27,28 +27,28 @@ itemBases["Ruby Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "+(20-30)% to Fire Resistance", - implicitModTypes = { { "elemental", "fire", "resistance" }, }, + implicitModTypes = { { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, }, req = { level = 8, }, } itemBases["Sapphire Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "+(20-30)% to Cold Resistance", - implicitModTypes = { { "elemental", "cold", "resistance" }, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, }, req = { level = 12, }, } itemBases["Topaz Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "+(20-30)% to Lightning Resistance", - implicitModTypes = { { "elemental", "lightning", "resistance" }, }, + implicitModTypes = { { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, }, req = { level = 16, }, } itemBases["Amethyst Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "+(7-13)% to Chaos Resistance", - implicitModTypes = { { "chaos", "resistance" }, }, + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, req = { level = 20, }, } itemBases["Emerald Ring"] = { @@ -62,14 +62,14 @@ itemBases["Pearl Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "(7-10)% increased Cast Speed", - implicitModTypes = { { "caster", "speed" }, }, + implicitModTypes = { { "caster_speed", "caster", "speed" }, }, req = { level = 32, }, } itemBases["Prismatic Ring"] = { type = "Ring", tags = { default = true, ring = true, }, implicit = "+(7-10)% to all Elemental Resistances", - implicitModTypes = { { "elemental", "fire", "cold", "lightning", "resistance" }, }, + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, }, req = { level = 35, }, } itemBases["Gold Ring"] = { @@ -93,6 +93,69 @@ itemBases["Abyssal Signet"] = { implicitModTypes = { { }, }, req = { }, } +itemBases["Two-Stone Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "+(12-16)% to Fire and Cold Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, }, + req = { }, +} +itemBases["Two-Stone Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "+(12-16)% to Fire and Lightning Resistances", + implicitModTypes = { { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, }, + req = { }, +} +itemBases["Two-Stone Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "+(12-16)% to Cold and Lightning Resistances", + implicitModTypes = { { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, }, + req = { }, +} +itemBases["Biostatic Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "+1% to all maximum Resistances", + implicitModTypes = { { "resistance" }, }, + req = { level = 52, }, +} +itemBases["Vitalic Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "(4-6)% increased maximum Life", + implicitModTypes = { { "resource", "life" }, }, + req = { level = 40, }, +} +itemBases["Mnemonic Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "(4-6)% increased maximum Mana", + implicitModTypes = { { "resource", "mana" }, }, + req = { level = 40, }, +} +itemBases["Kinetic Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "Adds (6-9) to (11-15) Physical Damage to Attacks", + implicitModTypes = { { "physical_damage", "damage", "physical", "attack" }, }, + req = { level = 40, }, +} +itemBases["Oneiric Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "(11-23)% increased Chaos Damage", + implicitModTypes = { { "chaos_damage", "damage", "chaos" }, }, + req = { level = 47, }, +} +itemBases["Grasping Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "This item gains bonuses from Socketed Items as though it was Gloves", + implicitModTypes = { { }, }, + req = { level = 40, }, +} itemBases["Ring"] = { type = "Ring", tags = { default = true, ring = true, }, @@ -130,7 +193,14 @@ itemBases["Tenebrous Ring"] = { itemBases["Breach Ring"] = { type = "Ring", tags = { default = true, ring = true, }, - implicit = "Maximum Quality is 40%", + implicit = "+20% to Maximum Quality", + implicitModTypes = { { }, }, + req = { level = 40, }, +} +itemBases["Refined Breach Ring"] = { + type = "Ring", + tags = { default = true, ring = true, }, + implicit = "+25% to Maximum Quality", implicitModTypes = { { }, }, req = { level = 40, }, } diff --git a/src/Data/Bases/shield.lua b/src/Data/Bases/shield.lua index fae340c376..4ff77a9780 100644 --- a/src/Data/Bases/shield.lua +++ b/src/Data/Bases/shield.lua @@ -22,7 +22,7 @@ itemBases["Painted Tower Shield"] = { tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 29, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 33, MovementPenalty = 0.03, }, req = { level = 6, str = 11, }, } itemBases["Braced Tower Shield"] = { @@ -33,7 +33,7 @@ itemBases["Braced Tower Shield"] = { tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 41, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 50, MovementPenalty = 0.03, }, req = { level = 12, str = 19, }, } itemBases["Barricade Tower Shield"] = { @@ -44,7 +44,7 @@ itemBases["Barricade Tower Shield"] = { tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 50, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 62, MovementPenalty = 0.03, }, req = { level = 16, str = 25, }, } itemBases["Effigial Tower Shield"] = { @@ -55,7 +55,7 @@ itemBases["Effigial Tower Shield"] = { tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 60, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 76, MovementPenalty = 0.03, }, req = { level = 21, str = 32, }, } itemBases["Rampart Tower Shield"] = { @@ -66,7 +66,7 @@ itemBases["Rampart Tower Shield"] = { tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 75, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 96, MovementPenalty = 0.03, }, req = { level = 28, str = 42, }, } itemBases["Heraldric Tower Shield"] = { @@ -77,7 +77,7 @@ itemBases["Heraldric Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 85, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 111, MovementPenalty = 0.03, }, req = { level = 33, str = 48, }, } itemBases["Stone Tower Shield"] = { @@ -88,7 +88,7 @@ itemBases["Stone Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 91, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 119, MovementPenalty = 0.03, }, req = { level = 36, str = 52, }, } itemBases["Crucible Tower Shield"] = { @@ -99,7 +99,7 @@ itemBases["Crucible Tower Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 110, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 145, MovementPenalty = 0.03, }, req = { level = 45, str = 64, }, } itemBases["Ancestor Tower Shield"] = { @@ -110,7 +110,7 @@ itemBases["Ancestor Tower Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 121, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 160, MovementPenalty = 0.03, }, req = { level = 50, str = 71, }, } itemBases["Phalanx Tower Shield"] = { @@ -121,7 +121,7 @@ itemBases["Phalanx Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 125, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 166, MovementPenalty = 0.03, }, req = { level = 52, str = 74, }, } itemBases["Defiant Tower Shield"] = { @@ -132,7 +132,7 @@ itemBases["Defiant Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 137, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 183, MovementPenalty = 0.03, }, req = { level = 58, str = 82, }, } itemBases["Blacksteel Tower Shield"] = { @@ -143,7 +143,7 @@ itemBases["Blacksteel Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 152, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 203, MovementPenalty = 0.03, }, req = { level = 65, str = 91, }, } itemBases["Aged Tower Shield"] = { @@ -154,7 +154,7 @@ itemBases["Aged Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 110, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 145, MovementPenalty = 0.03, }, req = { level = 45, str = 64, }, } itemBases["Metalworked Tower Shield"] = { @@ -165,7 +165,7 @@ itemBases["Metalworked Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 116, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 154, MovementPenalty = 0.03, }, req = { level = 48, str = 69, }, } itemBases["Cultist Tower Shield"] = { @@ -176,7 +176,7 @@ itemBases["Cultist Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 123, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 163, MovementPenalty = 0.03, }, req = { level = 51, str = 73, }, } itemBases["Bulwark Tower Shield"] = { @@ -187,7 +187,7 @@ itemBases["Bulwark Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 129, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 171, MovementPenalty = 0.03, }, req = { level = 54, str = 77, }, } itemBases["Noble Tower Shield"] = { @@ -198,7 +198,7 @@ itemBases["Noble Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 139, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 186, MovementPenalty = 0.03, }, req = { level = 59, str = 83, }, } itemBases["Goldworked Tower Shield"] = { @@ -209,7 +209,7 @@ itemBases["Goldworked Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 144, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 192, MovementPenalty = 0.03, }, req = { level = 61, str = 86, }, } itemBases["Royal Tower Shield"] = { @@ -220,7 +220,7 @@ itemBases["Royal Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 152, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 203, MovementPenalty = 0.03, }, req = { level = 65, str = 91, }, } itemBases["Fortress Tower Shield"] = { @@ -231,7 +231,7 @@ itemBases["Fortress Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 167, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 223, MovementPenalty = 0.03, }, req = { level = 70, str = 99, }, } itemBases["Vaal Tower Shield"] = { @@ -242,7 +242,7 @@ itemBases["Vaal Tower Shield"] = { tags = { armour = true, default = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 182, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 244, MovementPenalty = 0.03, }, req = { level = 75, str = 107, }, } itemBases["Tawhoan Tower Shield"] = { @@ -253,495 +253,1386 @@ itemBases["Tawhoan Tower Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 26, Armour = 197, MovementPenalty = 0.03, }, + armour = { BlockChance = 26, Armour = 264, MovementPenalty = 0.03, }, req = { level = 80, str = 115, }, } - -itemBases["Leather Buckler"] = { +itemBases["Runeforged Splintered Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 10, }, + armour = { BlockChance = 26, Armour = 18, Ward = 12, MovementPenalty = 0.03, }, req = { }, } -itemBases["Wooden Buckler"] = { +itemBases["Runeforged Painted Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 16, }, - req = { level = 5, dex = 10, }, + armour = { BlockChance = 26, Armour = 33, Ward = 15, MovementPenalty = 0.03, }, + req = { level = 6, str = 11, }, } -itemBases["Plated Buckler"] = { +itemBases["Runeforged Braced Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 26, }, - req = { level = 11, dex = 18, }, + armour = { BlockChance = 26, Armour = 50, Ward = 18, MovementPenalty = 0.03, }, + req = { level = 12, str = 19, }, } -itemBases["Iron Buckler"] = { +itemBases["Runeforged Barricade Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 33, }, - req = { level = 16, dex = 25, }, + armour = { BlockChance = 26, Armour = 62, Ward = 22, MovementPenalty = 0.03, }, + req = { level = 16, str = 25, }, } -itemBases["Ridged Buckler"] = { +itemBases["Runeforged Effigial Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 43, }, - req = { level = 22, dex = 33, }, + armour = { BlockChance = 26, Armour = 76, Ward = 25, MovementPenalty = 0.03, }, + req = { level = 21, str = 32, }, } -itemBases["Spiked Buckler"] = { +itemBases["Runeforged Rampart Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 49, }, - req = { level = 26, dex = 38, }, + armour = { BlockChance = 26, Armour = 96, Ward = 27, MovementPenalty = 0.03, }, + req = { level = 28, str = 42, }, } -itemBases["Ringed Buckler"] = { +itemBases["Runeforged Heraldric Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, vaal_basetype = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 60, }, - req = { level = 33, dex = 48, }, + armour = { BlockChance = 26, Armour = 111, Ward = 30, MovementPenalty = 0.03, }, + req = { level = 33, str = 48, }, } -itemBases["Edged Buckler"] = { +itemBases["Runeforged Stone Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, vaal_basetype = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 70, }, - req = { level = 39, dex = 56, }, + armour = { BlockChance = 26, Armour = 119, Ward = 33, MovementPenalty = 0.03, }, + req = { level = 36, str = 52, }, } -itemBases["Laminate Buckler"] = { +itemBases["Runeforged Crucible Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 79, }, - req = { level = 45, dex = 64, }, + armour = { BlockChance = 26, Armour = 145, Ward = 36, MovementPenalty = 0.03, }, + req = { level = 45, str = 64, }, } -itemBases["Pearl Buckler"] = { +itemBases["Runeforged Ancestor Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 87, }, - req = { level = 50, dex = 71, }, + armour = { BlockChance = 26, Ward = 148, MovementPenalty = 0.03, }, + req = { level = 50, str = 71, }, } -itemBases["Ornate Buckler"] = { +itemBases["Runeforged Phalanx Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 90, }, - req = { level = 52, dex = 74, }, + armour = { BlockChance = 26, Ward = 146, MovementPenalty = 0.03, }, + req = { level = 52, str = 74, }, } -itemBases["Array Buckler"] = { +itemBases["Runeforged Defiant Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 95, }, - req = { level = 55, dex = 78, }, + armour = { BlockChance = 26, Ward = 160, MovementPenalty = 0.03, }, + req = { level = 58, str = 82, }, } -itemBases["Aegis Buckler"] = { +itemBases["Runeforged Blacksteel Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 111, }, - req = { level = 65, dex = 91, }, + armour = { BlockChance = 26, Ward = 176, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Oak Buckler"] = { +itemBases["Runeforged Bulwark Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 79, }, - req = { level = 45, dex = 64, }, + armour = { BlockChance = 26, Armour = 137, Ward = 53, MovementPenalty = 0.03, }, + req = { level = 54, str = 77, }, } -itemBases["Painted Buckler"] = { +itemBases["Runeforged Noble Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 84, }, - req = { level = 48, dex = 69, }, + armour = { BlockChance = 26, Armour = 167, Ward = 41, MovementPenalty = 0.03, }, + req = { level = 59, str = 83, }, } -itemBases["Coiled Buckler"] = { +itemBases["Runeforged Goldworked Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 89, }, - req = { level = 51, dex = 73, }, + armour = { BlockChance = 26, Armour = 144, Ward = 58, MovementPenalty = 0.03, }, + req = { level = 61, str = 86, }, } -itemBases["Spikeward Buckler"] = { +itemBases["Runeforged Royal Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 93, }, - req = { level = 54, dex = 77, }, + armour = { BlockChance = 26, Armour = 183, Ward = 44, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Jingling Buckler"] = { +itemBases["Runeforged Fortress Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 101, }, - req = { level = 59, dex = 83, }, + armour = { BlockChance = 26, Armour = 132, Ward = 106, MovementPenalty = 0.03, }, + req = { level = 70, str = 99, }, } -itemBases["Bladeguard Buckler"] = { +itemBases["Runeforged Vaal Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 105, }, - req = { level = 61, dex = 86, }, + armour = { BlockChance = 26, Armour = 213, Ward = 35, MovementPenalty = 0.03, }, + req = { level = 75, str = 107, }, } -itemBases["Ornate Buckler"] = { +itemBases["Runeforged Tawhoan Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 111, }, - req = { level = 65, dex = 91, }, + armour = { BlockChance = 26, Armour = 71, Ward = 176, MovementPenalty = 0.03, }, + req = { level = 80, str = 115, }, } -itemBases["Gutspike Buckler"] = { +itemBases["Runemastered Splintered Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 122, }, - req = { level = 70, dex = 99, }, + armour = { BlockChance = 26, Armour = 100, Ward = 23, MovementPenalty = 0.03, }, + req = { level = 38, str = 54, }, } -itemBases["Ancient Buckler"] = { +itemBases["Runemastered Painted Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 133, }, - req = { level = 75, dex = 107, }, + armour = { BlockChance = 26, Armour = 63, Ward = 57, MovementPenalty = 0.03, }, + req = { level = 38, str = 54, }, } -itemBases["Desert Buckler"] = { +itemBases["Runemastered Braced Tower Shield"] = { type = "Shield", - subType = "Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, - implicit = "Grants Skill: Level (1-20) Parry", + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 20, Evasion = 144, }, - req = { level = 80, dex = 115, }, + armour = { BlockChance = 26, Armour = 88, Ward = 34, MovementPenalty = 0.03, }, + req = { level = 38, str = 54, }, } - -itemBases["Hardwood Targe"] = { +itemBases["Runemastered Barricade Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 10, Evasion = 7, MovementPenalty = 0.015, }, - req = { }, + armour = { BlockChance = 26, Armour = 94, Ward = 28, MovementPenalty = 0.03, }, + req = { level = 38, str = 54, }, } -itemBases["Pelage Targe"] = { +itemBases["Runemastered Effigial Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 18, Evasion = 14, MovementPenalty = 0.015, }, - req = { level = 8, str = 9, dex = 9, }, + armour = { BlockChance = 26, Ward = 113, MovementPenalty = 0.03, }, + req = { level = 38, str = 54, }, } -itemBases["Studded Targe"] = { +itemBases["Runemastered Rampart Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 27, Evasion = 23, MovementPenalty = 0.015, }, - req = { level = 16, str = 15, dex = 15, }, + armour = { BlockChance = 26, Armour = 98, Ward = 29, MovementPenalty = 0.03, }, + req = { level = 40, str = 58, }, } -itemBases["Crescent Targe"] = { +itemBases["Runemastered Heraldric Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 39, Evasion = 34, MovementPenalty = 0.015, }, - req = { level = 26, str = 22, dex = 22, }, + armour = { BlockChance = 26, Armour = 96, Ward = 42, MovementPenalty = 0.03, }, + req = { level = 50, str = 71, }, } -itemBases["Chiseled Targe"] = { +itemBases["Runemastered Crucible Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 47, Evasion = 41, MovementPenalty = 0.015, }, - req = { level = 33, str = 27, dex = 27, }, + armour = { BlockChance = 26, Ward = 250, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Feathered Targe"] = { +itemBases["Runemastered Crucible Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, - implicit = "Grants Skill: Level (1-20) Raise Shield", - implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 51, Evasion = 46, MovementPenalty = 0.015, }, - req = { level = 37, str = 30, dex = 30, }, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Recover (15-25) Runic Ward when you Block\nGrants Skill: Level (1-20) Raise Shield", + implicitModTypes = { { }, }, + armour = { BlockChance = 26, Armour = 100, Ward = 100, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Stratified Targe"] = { +itemBases["Runemastered Crucible Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, - implicit = "Grants Skill: Level (1-20) Raise Shield", + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 62, Evasion = 56, MovementPenalty = 0.015, }, - req = { level = 46, str = 37, dex = 37, }, + armour = { BlockChance = 26, Evasion = 148, Ward = 35, MovementPenalty = 0.03, }, + req = { level = 65, dex = 91, }, } -itemBases["Carved Targe"] = { +itemBases["Runemastered Crucible Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, - implicit = "Grants Skill: Level (1-20) Raise Shield", - implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 67, Evasion = 61, MovementPenalty = 0.015, }, - req = { level = 51, str = 40, dex = 40, }, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, + implicit = "(15-25)% of Damage is taken from Mana before Life\nGrants Skill: Level (1-20) Raise Shield", + implicitModTypes = { { "resource", "life", "mana" }, }, + armour = { BlockChance = 26, Armour = 162, Ward = 35, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Mosaic Targe"] = { +itemBases["Runemastered Blacksteel Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 69, Evasion = 62, MovementPenalty = 0.015, }, - req = { level = 52, str = 41, dex = 41, }, + armour = { BlockChance = 26, Armour = 102, Ward = 88, MovementPenalty = 0.03, }, + req = { level = 65, str = 91, }, } -itemBases["Aureate Targe"] = { +itemBases["Runemastered Vaal Tower Shield"] = { type = "Shield", - subType = "Armour/Evasion", + subType = "Armour", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_armour = true, str_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 74, Evasion = 68, MovementPenalty = 0.015, }, - req = { level = 57, str = 45, dex = 45, }, + armour = { BlockChance = 26, Armour = 203, Ward = 70, MovementPenalty = 0.03, }, + req = { level = 75, str = 107, }, } -itemBases["Grand Targe"] = { + +itemBases["Leather Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 10, }, + req = { }, +} +itemBases["Wooden Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 18, }, + req = { level = 5, dex = 10, }, +} +itemBases["Plated Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 31, }, + req = { level = 11, dex = 18, }, +} +itemBases["Iron Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 42, }, + req = { level = 16, dex = 25, }, +} +itemBases["Ridged Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 55, }, + req = { level = 22, dex = 33, }, +} +itemBases["Spiked Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 64, }, + req = { level = 26, dex = 38, }, +} +itemBases["Ringed Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 79, }, + req = { level = 33, dex = 48, }, +} +itemBases["Edged Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 92, }, + req = { level = 39, dex = 56, }, +} +itemBases["Laminate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 105, }, + req = { level = 45, dex = 64, }, +} +itemBases["Pearl Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 116, }, + req = { level = 50, dex = 71, }, +} +itemBases["Ornate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 120, }, + req = { level = 52, dex = 74, }, +} +itemBases["Array Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 126, }, + req = { level = 55, dex = 78, }, +} +itemBases["Aegis Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 148, }, + req = { level = 65, dex = 91, }, +} +itemBases["Oak Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 105, }, + req = { level = 45, dex = 64, }, +} +itemBases["Painted Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 111, }, + req = { level = 48, dex = 69, }, +} +itemBases["Coiled Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 118, }, + req = { level = 51, dex = 73, }, +} +itemBases["Spikeward Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 124, }, + req = { level = 54, dex = 77, }, +} +itemBases["Jingling Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 135, }, + req = { level = 59, dex = 83, }, +} +itemBases["Bladeguard Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 139, }, + req = { level = 61, dex = 86, }, +} +itemBases["Ornate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 148, }, + req = { level = 65, dex = 91, }, +} +itemBases["Gutspike Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 163, }, + req = { level = 70, dex = 99, }, +} +itemBases["Ancient Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 178, }, + req = { level = 75, dex = 107, }, +} +itemBases["Desert Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 192, }, + req = { level = 80, dex = 115, }, +} +itemBases["Runeforged Leather Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 10, Ward = 10, }, + req = { }, +} +itemBases["Runeforged Wooden Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 18, Ward = 11, }, + req = { level = 5, dex = 10, }, +} +itemBases["Runeforged Plated Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 31, Ward = 14, }, + req = { level = 11, dex = 18, }, +} +itemBases["Runeforged Iron Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 42, Ward = 17, }, + req = { level = 16, dex = 25, }, +} +itemBases["Runeforged Ridged Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 55, Ward = 21, }, + req = { level = 22, dex = 33, }, +} +itemBases["Runeforged Spiked Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 64, Ward = 20, }, + req = { level = 26, dex = 38, }, +} +itemBases["Runeforged Ringed Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 79, Ward = 24, }, + req = { level = 33, dex = 48, }, +} +itemBases["Runeforged Edged Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 92, Ward = 28, }, + req = { level = 39, dex = 56, }, +} +itemBases["Runeforged Laminate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 105, Ward = 29, }, + req = { level = 45, dex = 64, }, +} +itemBases["Runeforged Pearl Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 116, Ward = 29, }, + req = { level = 50, dex = 71, }, +} +itemBases["Runeforged Ornate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Ward = 117, }, + req = { level = 52, dex = 74, }, +} +itemBases["Runeforged Array Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Ward = 122, }, + req = { level = 55, dex = 78, }, +} +itemBases["Runeforged Aegis Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Ward = 141, }, + req = { level = 65, dex = 91, }, +} +itemBases["Runeforged Spikeward Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 99, Ward = 42, }, + req = { level = 54, dex = 77, }, +} +itemBases["Runeforged Jingling Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 122, Ward = 32, }, + req = { level = 59, dex = 83, }, +} +itemBases["Runeforged Bladeguard Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 104, Ward = 47, }, + req = { level = 61, dex = 86, }, +} +itemBases["Runeforged Ornate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 133, Ward = 35, }, + req = { level = 65, dex = 91, }, +} +itemBases["Runeforged Gutspike Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 96, Ward = 85, }, + req = { level = 70, dex = 99, }, +} +itemBases["Runeforged Ancient Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 148, Ward = 35, }, + req = { level = 75, dex = 107, }, +} +itemBases["Runeforged Desert Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, karui_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 59, Ward = 134, }, + req = { level = 80, dex = 115, }, +} +itemBases["Runemastered Leather Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 108, Ward = 36, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Wooden Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 90, Ward = 18, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Plated Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, ezomyte_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 67, Ward = 23, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Iron Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 45, Ward = 45, }, + req = { level = 38, dex = 54, }, +} +itemBases["Runemastered Ridged Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 66, Ward = 28, }, + req = { level = 40, dex = 58, }, +} +itemBases["Runemastered Spiked Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, maraketh_basetype = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 61, Ward = 33, }, + req = { level = 40, dex = 58, }, +} +itemBases["Runemastered Ornate Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 114, Ward = 12, }, + req = { level = 55, dex = 78, }, +} +itemBases["Runemastered Array Buckler"] = { + type = "Shield", + subType = "Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, dex_armour = true, dex_shield = true, runeforged = true, shield = true, }, + implicit = "Grants Skill: Level (1-20) Parry", + implicitModTypes = { }, + armour = { BlockChance = 20, Evasion = 103, Ward = 33, }, + req = { level = 60, dex = 85, }, +} + +itemBases["Hardwood Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 10, Evasion = 7, MovementPenalty = 0.015, }, + req = { }, +} +itemBases["Pelage Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 21, Evasion = 17, MovementPenalty = 0.015, }, + req = { level = 8, str = 9, dex = 9, }, +} +itemBases["Studded Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 34, Evasion = 29, MovementPenalty = 0.015, }, + req = { level = 16, str = 15, dex = 15, }, +} +itemBases["Crescent Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 50, Evasion = 44, MovementPenalty = 0.015, }, + req = { level = 26, str = 22, dex = 22, }, +} +itemBases["Chiseled Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 61, Evasion = 54, MovementPenalty = 0.015, }, + req = { level = 33, str = 27, dex = 27, }, +} +itemBases["Feathered Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 67, Evasion = 60, MovementPenalty = 0.015, }, + req = { level = 37, str = 30, dex = 30, }, +} +itemBases["Stratified Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 82, Evasion = 74, MovementPenalty = 0.015, }, + req = { level = 46, str = 37, dex = 37, }, +} +itemBases["Carved Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 89, Evasion = 81, MovementPenalty = 0.015, }, + req = { level = 51, str = 40, dex = 40, }, +} +itemBases["Mosaic Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 91, Evasion = 82, MovementPenalty = 0.015, }, + req = { level = 52, str = 41, dex = 41, }, +} +itemBases["Aureate Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 99, Evasion = 90, MovementPenalty = 0.015, }, + req = { level = 57, str = 45, dex = 45, }, +} +itemBases["Grand Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 112, Evasion = 102, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, dex = 50, }, +} +itemBases["Ironwood Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 80, Evasion = 72, MovementPenalty = 0.015, }, + req = { level = 45, str = 36, dex = 36, }, +} +itemBases["Fur-lined Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 85, Evasion = 76, MovementPenalty = 0.015, }, + req = { level = 48, str = 38, dex = 38, }, +} +itemBases["Mercenary Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 89, Evasion = 81, MovementPenalty = 0.015, }, + req = { level = 51, str = 40, dex = 40, }, +} +itemBases["Polished Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 94, Evasion = 85, MovementPenalty = 0.015, }, + req = { level = 54, str = 42, dex = 42, }, +} +itemBases["Stone Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 102, Evasion = 93, MovementPenalty = 0.015, }, + req = { level = 59, str = 46, dex = 46, }, +} +itemBases["Avian Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 107, Evasion = 97, MovementPenalty = 0.015, }, + req = { level = 62, str = 48, dex = 48, }, +} +itemBases["Mammoth Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 112, Evasion = 102, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, dex = 50, }, +} +itemBases["Baroque Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 123, Evasion = 112, MovementPenalty = 0.015, }, + req = { level = 70, str = 54, dex = 54, }, +} +itemBases["Soaring Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 134, Evasion = 122, MovementPenalty = 0.015, }, + req = { level = 75, str = 59, dex = 59, }, +} +itemBases["Golden Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 145, Evasion = 132, MovementPenalty = 0.015, }, + req = { level = 80, str = 63, dex = 63, }, +} +itemBases["Runeforged Hardwood Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 10, Evasion = 7, Ward = 12, MovementPenalty = 0.015, }, + req = { }, +} +itemBases["Runeforged Pelage Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 21, Evasion = 17, Ward = 17, MovementPenalty = 0.015, }, + req = { level = 8, str = 9, dex = 9, }, +} +itemBases["Runeforged Studded Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 34, Evasion = 29, Ward = 22, MovementPenalty = 0.015, }, + req = { level = 16, str = 15, dex = 15, }, +} +itemBases["Runeforged Crescent Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 50, Evasion = 44, Ward = 30, MovementPenalty = 0.015, }, + req = { level = 26, str = 22, dex = 22, }, +} +itemBases["Runeforged Chiseled Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 84, Evasion = 76, MovementPenalty = 0.015, }, - req = { level = 65, str = 50, dex = 50, }, + armour = { BlockChance = 25, Armour = 61, Evasion = 54, Ward = 33, MovementPenalty = 0.015, }, + req = { level = 33, str = 27, dex = 27, }, } -itemBases["Ironwood Targe"] = { +itemBases["Runeforged Feathered Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 61, Evasion = 54, MovementPenalty = 0.015, }, - req = { level = 45, str = 36, dex = 36, }, + armour = { BlockChance = 25, Armour = 67, Evasion = 60, Ward = 34, MovementPenalty = 0.015, }, + req = { level = 37, str = 30, dex = 30, }, } -itemBases["Fur-lined Targe"] = { +itemBases["Runeforged Stratified Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 64, Evasion = 58, MovementPenalty = 0.015, }, - req = { level = 48, str = 38, dex = 38, }, + armour = { BlockChance = 25, Armour = 82, Evasion = 74, Ward = 38, MovementPenalty = 0.015, }, + req = { level = 46, str = 37, dex = 37, }, } -itemBases["Mercenary Targe"] = { +itemBases["Runeforged Carved Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 67, Evasion = 61, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 89, Evasion = 81, Ward = 40, MovementPenalty = 0.015, }, req = { level = 51, str = 40, dex = 40, }, } -itemBases["Polished Targe"] = { +itemBases["Runeforged Mosaic Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 146, MovementPenalty = 0.015, }, + req = { level = 52, str = 41, dex = 41, }, +} +itemBases["Runeforged Aureate Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 157, MovementPenalty = 0.015, }, + req = { level = 57, str = 45, dex = 45, }, +} +itemBases["Runeforged Grand Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 176, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, dex = 50, }, +} +itemBases["Runeforged Polished Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 71, Evasion = 64, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 75, Evasion = 68, Ward = 53, MovementPenalty = 0.015, }, req = { level = 54, str = 42, dex = 42, }, } -itemBases["Stone Targe"] = { +itemBases["Runeforged Stone Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 77, Evasion = 70, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 92, Evasion = 84, Ward = 41, MovementPenalty = 0.015, }, req = { level = 59, str = 46, dex = 46, }, } -itemBases["Avian Targe"] = { +itemBases["Runeforged Avian Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 80, Evasion = 73, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 80, Evasion = 73, Ward = 59, MovementPenalty = 0.015, }, req = { level = 62, str = 48, dex = 48, }, } -itemBases["Mammoth Targe"] = { +itemBases["Runeforged Mammoth Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 84, Evasion = 76, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 101, Evasion = 92, Ward = 44, MovementPenalty = 0.015, }, req = { level = 65, str = 50, dex = 50, }, } -itemBases["Baroque Targe"] = { +itemBases["Runeforged Baroque Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 92, Evasion = 84, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 73, Evasion = 66, Ward = 106, MovementPenalty = 0.015, }, req = { level = 70, str = 54, dex = 54, }, } -itemBases["Soaring Targe"] = { +itemBases["Runeforged Soaring Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 100, Evasion = 91, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 106, Evasion = 97, Ward = 53, MovementPenalty = 0.015, }, req = { level = 75, str = 59, dex = 59, }, } -itemBases["Golden Targe"] = { +itemBases["Runeforged Golden Targe"] = { type = "Shield", subType = "Armour/Evasion", quality = 20, socketLimit = 3, - tags = { armour = true, default = true, karui_basetype = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 109, Evasion = 99, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 34, Evasion = 31, Ward = 185, MovementPenalty = 0.015, }, req = { level = 80, str = 63, dex = 63, }, } +itemBases["Runemastered Hardwood Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 44, Evasion = 39, Ward = 18, MovementPenalty = 0.015, }, + req = { level = 38, str = 31, dex = 31, }, +} +itemBases["Runemastered Crescent Targe"] = { + type = "Shield", + subType = "Armour/Evasion", + quality = 20, + socketLimit = 3, + tags = { armour = true, buckler = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_dex_armour = true, str_dex_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 41, Evasion = 37, Ward = 23, MovementPenalty = 0.015, }, + req = { level = 38, str = 31, dex = 31, }, +} itemBases["Blazon Crest Shield"] = { type = "Shield", @@ -762,7 +1653,7 @@ itemBases["Sigil Crest Shield"] = { tags = { armour = true, default = true, ezomyte_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 17, EnergyShield = 8, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 20, EnergyShield = 9, MovementPenalty = 0.015, }, req = { level = 7, str = 8, int = 8, }, } itemBases["Emblem Crest Shield"] = { @@ -773,7 +1664,7 @@ itemBases["Emblem Crest Shield"] = { tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 27, EnergyShield = 12, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 34, EnergyShield = 12, MovementPenalty = 0.015, }, req = { level = 16, str = 15, int = 15, }, } itemBases["Jingling Crest Shield"] = { @@ -784,7 +1675,7 @@ itemBases["Jingling Crest Shield"] = { tags = { armour = true, default = true, maraketh_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 41, EnergyShield = 16, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 53, EnergyShield = 17, MovementPenalty = 0.015, }, req = { level = 28, str = 23, int = 23, }, } itemBases["Sectarian Crest Shield"] = { @@ -795,7 +1686,7 @@ itemBases["Sectarian Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 47, EnergyShield = 18, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 61, EnergyShield = 19, MovementPenalty = 0.015, }, req = { level = 33, str = 27, int = 27, }, } itemBases["Omen Crest Shield"] = { @@ -806,7 +1697,7 @@ itemBases["Omen Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, vaal_basetype = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 50, EnergyShield = 19, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 66, EnergyShield = 20, MovementPenalty = 0.015, }, req = { level = 36, str = 30, int = 30, }, } itemBases["Wayward Crest Shield"] = { @@ -817,7 +1708,7 @@ itemBases["Wayward Crest Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 61, EnergyShield = 22, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 80, EnergyShield = 23, MovementPenalty = 0.015, }, req = { level = 45, str = 36, int = 36, }, } itemBases["Seer Crest Shield"] = { @@ -828,7 +1719,7 @@ itemBases["Seer Crest Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 66, EnergyShield = 24, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 88, EnergyShield = 25, MovementPenalty = 0.015, }, req = { level = 50, str = 39, int = 39, }, } itemBases["Stoic Crest Shield"] = { @@ -839,7 +1730,7 @@ itemBases["Stoic Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 69, EnergyShield = 24, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 91, EnergyShield = 26, MovementPenalty = 0.015, }, req = { level = 52, str = 41, int = 41, }, } itemBases["Empyreal Crest Shield"] = { @@ -850,7 +1741,7 @@ itemBases["Empyreal Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 74, EnergyShield = 26, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 99, EnergyShield = 28, MovementPenalty = 0.015, }, req = { level = 57, str = 45, int = 45, }, } itemBases["Deified Crest Shield"] = { @@ -861,7 +1752,7 @@ itemBases["Deified Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 84, EnergyShield = 29, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 112, EnergyShield = 31, MovementPenalty = 0.015, }, req = { level = 65, str = 50, int = 50, }, } itemBases["Painted Crest Shield"] = { @@ -872,7 +1763,7 @@ itemBases["Painted Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 61, EnergyShield = 22, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 80, EnergyShield = 23, MovementPenalty = 0.015, }, req = { level = 45, str = 36, int = 36, }, } itemBases["Engraved Crest Shield"] = { @@ -883,7 +1774,7 @@ itemBases["Engraved Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 64, EnergyShield = 23, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 85, EnergyShield = 24, MovementPenalty = 0.015, }, req = { level = 48, str = 38, int = 38, }, } itemBases["Descry Crest Shield"] = { @@ -894,7 +1785,7 @@ itemBases["Descry Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 67, EnergyShield = 24, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 89, EnergyShield = 26, MovementPenalty = 0.015, }, req = { level = 51, str = 40, int = 40, }, } itemBases["Dekharan Crest Shield"] = { @@ -905,7 +1796,7 @@ itemBases["Dekharan Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 71, EnergyShield = 25, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 94, EnergyShield = 27, MovementPenalty = 0.015, }, req = { level = 54, str = 42, int = 42, }, } itemBases["Quartered Crest Shield"] = { @@ -916,7 +1807,7 @@ itemBases["Quartered Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 77, EnergyShield = 27, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 102, EnergyShield = 29, MovementPenalty = 0.015, }, req = { level = 59, str = 46, int = 46, }, } itemBases["Glowering Crest Shield"] = { @@ -927,7 +1818,7 @@ itemBases["Glowering Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 80, EnergyShield = 28, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 107, EnergyShield = 30, MovementPenalty = 0.015, }, req = { level = 62, str = 48, int = 48, }, } itemBases["Intricate Crest Shield"] = { @@ -938,7 +1829,7 @@ itemBases["Intricate Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 84, EnergyShield = 29, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 112, EnergyShield = 31, MovementPenalty = 0.015, }, req = { level = 65, str = 50, int = 50, }, } itemBases["Sekheman Crest Shield"] = { @@ -949,7 +1840,7 @@ itemBases["Sekheman Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 92, EnergyShield = 32, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 123, EnergyShield = 34, MovementPenalty = 0.015, }, req = { level = 70, str = 54, int = 54, }, } itemBases["Vaal Crest Shield"] = { @@ -960,7 +1851,7 @@ itemBases["Vaal Crest Shield"] = { tags = { armour = true, default = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 100, EnergyShield = 35, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 134, EnergyShield = 37, MovementPenalty = 0.015, }, req = { level = 75, str = 59, int = 59, }, } itemBases["Blacksteel Crest Shield"] = { @@ -971,9 +1862,273 @@ itemBases["Blacksteel Crest Shield"] = { tags = { armour = true, default = true, karui_basetype = true, shield = true, str_int_armour = true, str_int_shield = true, }, implicit = "Grants Skill: Level (1-20) Raise Shield", implicitModTypes = { }, - armour = { BlockChance = 25, Armour = 109, EnergyShield = 37, MovementPenalty = 0.015, }, + armour = { BlockChance = 25, Armour = 145, EnergyShield = 40, MovementPenalty = 0.015, }, + req = { level = 80, str = 63, int = 63, }, +} +itemBases["Runeforged Blazon Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 10, EnergyShield = 6, Ward = 12, MovementPenalty = 0.015, }, + req = { }, +} +itemBases["Runeforged Sigil Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 20, EnergyShield = 9, Ward = 16, MovementPenalty = 0.015, }, + req = { level = 7, str = 8, int = 8, }, +} +itemBases["Runeforged Emblem Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 34, EnergyShield = 12, Ward = 22, MovementPenalty = 0.015, }, + req = { level = 16, str = 15, int = 15, }, +} +itemBases["Runeforged Jingling Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 53, EnergyShield = 17, Ward = 31, MovementPenalty = 0.015, }, + req = { level = 28, str = 23, int = 23, }, +} +itemBases["Runeforged Sectarian Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 61, EnergyShield = 19, Ward = 33, MovementPenalty = 0.015, }, + req = { level = 33, str = 27, int = 27, }, +} +itemBases["Runeforged Omen Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 66, EnergyShield = 20, Ward = 34, MovementPenalty = 0.015, }, + req = { level = 36, str = 30, int = 30, }, +} +itemBases["Runeforged Wayward Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 80, EnergyShield = 23, Ward = 38, MovementPenalty = 0.015, }, + req = { level = 45, str = 36, int = 36, }, +} +itemBases["Runeforged Seer Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 88, EnergyShield = 25, Ward = 40, MovementPenalty = 0.015, }, + req = { level = 50, str = 39, int = 39, }, +} +itemBases["Runeforged Stoic Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 146, MovementPenalty = 0.015, }, + req = { level = 52, str = 41, int = 41, }, +} +itemBases["Runeforged Empyreal Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 157, MovementPenalty = 0.015, }, + req = { level = 57, str = 45, int = 45, }, +} +itemBases["Runeforged Deified Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Ward = 176, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, int = 50, }, +} +itemBases["Runeforged Dekharan Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 75, EnergyShield = 21, Ward = 53, MovementPenalty = 0.015, }, + req = { level = 54, str = 42, int = 42, }, +} +itemBases["Runeforged Quartered Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 92, EnergyShield = 26, Ward = 41, MovementPenalty = 0.015, }, + req = { level = 59, str = 46, int = 46, }, +} +itemBases["Runeforged Glowering Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 80, EnergyShield = 22, Ward = 59, MovementPenalty = 0.015, }, + req = { level = 62, str = 48, int = 48, }, +} +itemBases["Runeforged Intricate Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 101, EnergyShield = 28, Ward = 44, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, int = 50, }, +} +itemBases["Runeforged Sekheman Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 73, EnergyShield = 20, Ward = 106, MovementPenalty = 0.015, }, + req = { level = 70, str = 54, int = 54, }, +} +itemBases["Runeforged Vaal Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 123, EnergyShield = 34, Ward = 26, MovementPenalty = 0.015, }, + req = { level = 75, str = 59, int = 59, }, +} +itemBases["Runeforged Blacksteel Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, karui_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 28, EnergyShield = 8, Ward = 194, MovementPenalty = 0.015, }, req = { level = 80, str = 63, int = 63, }, } +itemBases["Runemastered Blazon Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 43, EnergyShield = 13, Ward = 47, MovementPenalty = 0.015, }, + req = { level = 40, str = 32, int = 32, }, +} +itemBases["Runemastered Sigil Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, ezomyte_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 65, EnergyShield = 19, Ward = 12, MovementPenalty = 0.015, }, + req = { level = 40, str = 32, int = 32, }, +} +itemBases["Runemastered Emblem Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 48, EnergyShield = 14, Ward = 34, MovementPenalty = 0.015, }, + req = { level = 38, str = 31, int = 31, }, +} +itemBases["Runemastered Jingling Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, maraketh_basetype = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 41, EnergyShield = 12, Ward = 45, MovementPenalty = 0.015, }, + req = { level = 38, str = 31, int = 31, }, +} +itemBases["Runemastered Omen Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, vaal_basetype = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 42, EnergyShield = 12, Ward = 82, MovementPenalty = 0.015, }, + req = { level = 48, str = 38, int = 38, }, +} +itemBases["Runemastered Intricate Crest Shield"] = { + type = "Shield", + subType = "Armour/Energy Shield", + quality = 20, + socketLimit = 3, + tags = { armour = true, default = true, runeforged = true, shield = true, str_int_armour = true, str_int_shield = true, }, + implicit = "Grants Skill: Level (1-20) Raise Shield", + implicitModTypes = { }, + armour = { BlockChance = 25, Armour = 78, EnergyShield = 22, Ward = 62, MovementPenalty = 0.015, }, + req = { level = 65, str = 50, int = 50, }, +} itemBases["Golden Flame"] = { type = "Shield", @@ -981,7 +2136,7 @@ itemBases["Golden Flame"] = { socketLimit = 3, tags = { armour = true, default = true, demigods = true, not_for_sale = true, shield = true, }, implicit = "+(11-19)% to Chaos Resistance", - implicitModTypes = { { "chaos", "resistance" }, }, + implicitModTypes = { { "chaos_resistance", "chaos", "resistance" }, }, armour = { BlockChance = 25, }, req = { level = 15, }, } diff --git a/src/Data/Bases/spear.lua b/src/Data/Bases/spear.lua index c3d47556a4..2451fa9bdc 100644 --- a/src/Data/Bases/spear.lua +++ b/src/Data/Bases/spear.lua @@ -68,7 +68,7 @@ itemBases["Barbed Spear"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, spear = true, vaal_basetype = true, weapon = true, }, implicit = "Grants Skill: Spear Throw\nBleeding you inflict deals Damage (10-20)% faster", - implicitModTypes = { { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + implicitModTypes = { { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 38, CritChanceBase = 6, AttackRateBase = 1.5, Range = 15, }, req = { level = 33, str = 20, dex = 47, }, } @@ -178,7 +178,7 @@ itemBases["Jagged Spear"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, spear = true, weapon = true, }, implicit = "Grants Skill: Spear Throw\nBleeding you inflict deals Damage (10-20)% faster", - implicitModTypes = { { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + implicitModTypes = { { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 33, PhysicalMax = 61, CritChanceBase = 6, AttackRateBase = 1.5, Range = 15, }, req = { level = 59, str = 33, dex = 81, }, } @@ -192,6 +192,86 @@ itemBases["Massive Spear"] = { weapon = { PhysicalMin = 46, PhysicalMax = 69, CritChanceBase = 5, AttackRateBase = 1.4, Range = 15, }, req = { level = 62, str = 40, dex = 80, }, } +itemBases["Runeforged Hardwood Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw", + implicitModTypes = { }, + weapon = { PhysicalMin = 24, PhysicalMax = 45, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, }, + req = { level = 40, str = 23, dex = 56, }, +} +itemBases["Runeforged Ironhead Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw", + implicitModTypes = { }, + weapon = { PhysicalMin = 40, PhysicalMax = 54, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, }, + req = { level = 38, str = 23, dex = 54, }, +} +itemBases["Runemastered Ironhead Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw", + implicitModTypes = { }, + weapon = { PhysicalMin = 94, PhysicalMax = 127, CritChanceBase = 5, AttackRateBase = 1.25, Range = 15, }, + req = { level = 55, str = 31, dex = 76, }, +} +itemBases["Runeforged Hunting Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw\n(15-25)% chance to Maim on Hit", + implicitModTypes = { { "attack" }, }, + weapon = { PhysicalMin = 65, PhysicalMax = 108, CritChanceBase = 5, AttackRateBase = 1.55, Range = 15, }, + req = { level = 38, str = 23, dex = 54, }, +} +itemBases["Runeforged Winged Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw", + implicitModTypes = { }, + weapon = { LightningMin = 0, LightningMax = 125, CritChanceBase = 5, AttackRateBase = 1.7, Range = 15, }, + req = { level = 40, str = 23, dex = 56, }, +} +itemBases["Runeforged War Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw\n(25-35)% increased Projectile Speed with this Weapon", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 59, PhysicalMax = 98, CritChanceBase = 5, AttackRateBase = 1.6, Range = 15, }, + req = { level = 40, str = 23, dex = 56, }, +} +itemBases["Runeforged Forked Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw", + implicitModTypes = { }, + weapon = { PhysicalMin = 8, PhysicalMax = 57, CritChanceBase = 7, AttackRateBase = 1.6, Range = 15, }, + req = { level = 55, str = 31, dex = 76, }, +} +itemBases["Runeforged Barbed Spear"] = { + type = "Spear", + quality = 20, + socketLimit = 3, + tags = { default = true, one_hand_weapon = true, onehand = true, runeforged = true, spear = true, vaal_basetype = true, weapon = true, }, + implicit = "Grants Skill: Spear Throw\nBleeding you inflict deals Damage (10-20)% faster", + implicitModTypes = { { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, }, + weapon = { PhysicalMin = 26, PhysicalMax = 49, FireMin = 51, FireMax = 95, CritChanceBase = 6, AttackRateBase = 1.5, Range = 15, }, + req = { level = 55, str = 31, dex = 76, }, +} itemBases["Orichalcum Spear"] = { type = "Spear", quality = 20, @@ -258,7 +338,7 @@ itemBases["Spiked Spear"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, spear = true, weapon = true, }, implicit = "Grants Skill: Spear Throw\nBleeding you inflict deals Damage (10-20)% faster", - implicitModTypes = { { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + implicitModTypes = { { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, }, weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 6, AttackRateBase = 1.5, Range = 15, }, req = { level = 77, str = 50, dex = 127, }, } diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua index 5cd9590df1..b1a8382cb7 100644 --- a/src/Data/Bases/staff.lua +++ b/src/Data/Bases/staff.lua @@ -146,6 +146,15 @@ itemBases["Reflecting Staff"] = { implicitModTypes = { }, req = { }, } +itemBases["Perching Staff"] = { + type = "Staff", + quality = 20, + socketLimit = 4, + tags = { default = true, staff = true, twohand = true, }, + implicit = "Grants Skill: Level (1-20) Spiraling Conspiracy", + implicitModTypes = { }, + req = { }, +} itemBases["Wrapped Quarterstaff"] = { type = "Staff", @@ -154,7 +163,7 @@ itemBases["Wrapped Quarterstaff"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 7, PhysicalMax = 12, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 7, PhysicalMax = 12, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { }, } itemBases["Long Quarterstaff"] = { @@ -165,7 +174,7 @@ itemBases["Long Quarterstaff"] = { tags = { default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "16% increased Melee Strike Range with this weapon", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 9, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 9, PhysicalMax = 18, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { dex = 9, }, } itemBases["Gothic Quarterstaff"] = { @@ -175,7 +184,7 @@ itemBases["Gothic Quarterstaff"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 16, PhysicalMax = 26, CritChanceBase = 12, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 16, PhysicalMax = 26, CritChanceBase = 12, AttackRateBase = 1.4, Range = 14, }, req = { level = 11, dex = 18, int = 9, }, } itemBases["Crackling Quarterstaff"] = { @@ -185,7 +194,7 @@ itemBases["Crackling Quarterstaff"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 5, PhysicalMax = 22, LightningMin = 1, LightningMax = 35, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 5, PhysicalMax = 22, LightningMin = 1, LightningMax = 35, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 16, dex = 25, int = 12, }, } itemBases["Crescent Quarterstaff"] = { @@ -195,7 +204,7 @@ itemBases["Crescent Quarterstaff"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 39, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, }, + weapon = { PhysicalMin = 19, PhysicalMax = 39, CritChanceBase = 10, AttackRateBase = 1.5, Range = 14, }, req = { level = 20, dex = 30, int = 14, }, } itemBases["Steelpoint Quarterstaff"] = { @@ -205,7 +214,7 @@ itemBases["Steelpoint Quarterstaff"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 28, PhysicalMax = 51, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 28, PhysicalMax = 51, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 28, dex = 41, int = 18, }, } itemBases["Slicing Quarterstaff"] = { @@ -215,7 +224,7 @@ itemBases["Slicing Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 29, PhysicalMax = 60, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 29, PhysicalMax = 60, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 33, dex = 47, int = 20, }, } itemBases["Barrier Quarterstaff"] = { @@ -226,7 +235,7 @@ itemBases["Barrier Quarterstaff"] = { tags = { default = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, warstaff = true, weapon = true, }, implicit = "+(12-18)% to Block chance", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 35, PhysicalMax = 58, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 35, PhysicalMax = 58, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 37, dex = 52, int = 22, }, } itemBases["Hefty Quarterstaff"] = { @@ -237,7 +246,7 @@ itemBases["Hefty Quarterstaff"] = { tags = { default = true, karui_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "(20-50)% chance to Daze on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 39, PhysicalMax = 81, CritChanceBase = 10, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 39, PhysicalMax = 81, CritChanceBase = 10, AttackRateBase = 1.3, Range = 14, }, req = { level = 45, dex = 63, int = 26, }, } itemBases["Smooth Quarterstaff"] = { @@ -247,7 +256,7 @@ itemBases["Smooth Quarterstaff"] = { socketLimit = 4, tags = { default = true, karui_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 59, PhysicalMax = 79, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, }, + weapon = { PhysicalMin = 59, PhysicalMax = 79, CritChanceBase = 0, AttackRateBase = 1.5, Range = 14, }, req = { level = 49, dex = 68, int = 28, }, } itemBases["Anima Quarterstaff"] = { @@ -257,7 +266,7 @@ itemBases["Anima Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 47, PhysicalMax = 79, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 47, PhysicalMax = 79, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 52, dex = 72, int = 29, }, } itemBases["Graceful Quarterstaff"] = { @@ -267,7 +276,7 @@ itemBases["Graceful Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 47, PhysicalMax = 87, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 47, PhysicalMax = 87, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 56, dex = 77, int = 31, }, } itemBases["Wyrm Quarterstaff"] = { @@ -277,7 +286,7 @@ itemBases["Wyrm Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 57, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 57, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 65, dex = 89, int = 36, }, } itemBases["Reaching Quarterstaff"] = { @@ -288,7 +297,7 @@ itemBases["Reaching Quarterstaff"] = { tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "16% increased Melee Strike Range with this weapon", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 35, PhysicalMax = 72, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 45, dex = 63, int = 26, }, } itemBases["Barbarous Quarterstaff"] = { @@ -298,7 +307,7 @@ itemBases["Barbarous Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 42, PhysicalMax = 71, CritChanceBase = 12, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 42, PhysicalMax = 71, CritChanceBase = 12, AttackRateBase = 1.4, Range = 14, }, req = { level = 48, dex = 67, int = 27, }, } itemBases["Arcing Quarterstaff"] = { @@ -308,7 +317,7 @@ itemBases["Arcing Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 14, PhysicalMax = 55, LightningMin = 1, LightningMax = 75, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 14, PhysicalMax = 55, LightningMin = 1, LightningMax = 75, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 51, dex = 71, int = 29, }, } itemBases["Waxing Quarterstaff"] = { @@ -318,7 +327,7 @@ itemBases["Waxing Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 39, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, }, + weapon = { PhysicalMin = 39, PhysicalMax = 82, CritChanceBase = 10, AttackRateBase = 1.5, Range = 14, }, req = { level = 54, dex = 75, int = 30, }, } itemBases["Bladed Quarterstaff"] = { @@ -328,7 +337,7 @@ itemBases["Bladed Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 59, dex = 81, int = 33, }, } itemBases["Guardian Quarterstaff"] = { @@ -339,7 +348,7 @@ itemBases["Guardian Quarterstaff"] = { tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "+(12-18)% to Block chance", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 52, PhysicalMax = 86, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 52, PhysicalMax = 86, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 62, dex = 85, int = 34, }, } itemBases["Sinister Quarterstaff"] = { @@ -349,7 +358,7 @@ itemBases["Sinister Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 55, PhysicalMax = 91, CritChanceBase = 12, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 55, PhysicalMax = 91, CritChanceBase = 12, AttackRateBase = 1.4, Range = 14, }, req = { level = 67, dex = 104, int = 41, }, } itemBases["Lunar Quarterstaff"] = { @@ -359,7 +368,7 @@ itemBases["Lunar Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 50, PhysicalMax = 103, CritChanceBase = 10, AttackRateBase = 1.5, Range = 13, }, + weapon = { PhysicalMin = 50, PhysicalMax = 103, CritChanceBase = 10, AttackRateBase = 1.5, Range = 14, }, req = { level = 72, dex = 115, int = 46, }, } itemBases["Striking Quarterstaff"] = { @@ -370,7 +379,7 @@ itemBases["Striking Quarterstaff"] = { tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "16% increased Melee Strike Range with this weapon", implicitModTypes = { { "attack" }, }, - weapon = { PhysicalMin = 53, PhysicalMax = 111, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 53, PhysicalMax = 111, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 77, dex = 127, int = 50, }, } itemBases["Bolting Quarterstaff"] = { @@ -380,7 +389,7 @@ itemBases["Bolting Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 24, PhysicalMax = 97, LightningMin = 1, LightningMax = 100, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 24, PhysicalMax = 97, LightningMin = 1, LightningMax = 100, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 78, dex = 127, int = 50, }, } itemBases["Aegis Quarterstaff"] = { @@ -391,7 +400,7 @@ itemBases["Aegis Quarterstaff"] = { tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "+(12-18)% to Block chance", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 58, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 58, PhysicalMax = 97, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 79, dex = 127, int = 50, }, } itemBases["Razor Quarterstaff"] = { @@ -401,7 +410,7 @@ itemBases["Razor Quarterstaff"] = { socketLimit = 4, tags = { default = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 65, PhysicalMax = 108, CritChanceBase = 10, AttackRateBase = 1.4, Range = 13, }, + weapon = { PhysicalMin = 65, PhysicalMax = 108, CritChanceBase = 10, AttackRateBase = 1.4, Range = 14, }, req = { level = 77, dex = 127, int = 50, }, } itemBases["Skullcrusher Quarterstaff"] = { @@ -412,7 +421,7 @@ itemBases["Skullcrusher Quarterstaff"] = { tags = { default = true, karui_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicit = "(20-50)% chance to Daze on Hit", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 59, PhysicalMax = 122, CritChanceBase = 10, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 59, PhysicalMax = 122, CritChanceBase = 10, AttackRateBase = 1.3, Range = 14, }, req = { level = 75, dex = 127, int = 50, }, } itemBases["Dreaming Quarterstaff"] = { @@ -422,6 +431,6 @@ itemBases["Dreaming Quarterstaff"] = { socketLimit = 4, tags = { default = true, karui_basetype = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 99, PhysicalMax = 133, CritChanceBase = 0, AttackRateBase = 1.5, Range = 13, }, + weapon = { PhysicalMin = 99, PhysicalMax = 133, CritChanceBase = 0, AttackRateBase = 1.5, Range = 14, }, req = { level = 78, dex = 127, int = 50, }, } diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua index bf6b8fcb12..ca4e35b211 100644 --- a/src/Data/Bases/sword.lua +++ b/src/Data/Bases/sword.lua @@ -9,7 +9,7 @@ itemBases["Golden Blade"] = { tags = { default = true, demigods = true, not_for_sale = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicit = "+(16-24) to all Attributes", implicitModTypes = { { "attribute" }, }, - weapon = { PhysicalMin = 3, PhysicalMax = 28, CritChanceBase = 5, AttackRateBase = 1.1, Range = 11, }, + weapon = { PhysicalMin = 3, PhysicalMax = 28, CritChanceBase = 5, AttackRateBase = 1.1, Range = 13, }, req = { }, } itemBases["Energy Blade One Handed"] = { @@ -18,7 +18,7 @@ itemBases["Energy Blade One Handed"] = { socketLimit = 3, tags = { default = true, not_for_sale = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 11, }, + weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 13, }, req = { }, } itemBases["Shortsword"] = { @@ -27,7 +27,7 @@ itemBases["Shortsword"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { }, } itemBases["Broadsword"] = { @@ -36,7 +36,7 @@ itemBases["Broadsword"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 8, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, }, + weapon = { PhysicalMin = 8, PhysicalMax = 13, CritChanceBase = 5, AttackRateBase = 1.6, Range = 13, }, req = { level = 6, str = 9, dex = 9, }, } itemBases["Vampiric Blade"] = { @@ -45,7 +45,7 @@ itemBases["Vampiric Blade"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 11, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 11, PhysicalMax = 20, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 11, str = 14, dex = 14, }, } itemBases["Scimitar"] = { @@ -54,7 +54,7 @@ itemBases["Scimitar"] = { socketLimit = 3, tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 14, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 16, str = 19, dex = 19, }, } itemBases["Charred Shortsword"] = { @@ -63,7 +63,7 @@ itemBases["Charred Shortsword"] = { socketLimit = 3, tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 34, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, }, + weapon = { PhysicalMin = 19, PhysicalMax = 34, CritChanceBase = 5, AttackRateBase = 1.6, Range = 13, }, req = { level = 21, str = 23, dex = 23, }, } itemBases["Sickle Sword"] = { @@ -72,7 +72,7 @@ itemBases["Sickle Sword"] = { socketLimit = 3, tags = { default = true, maraketh_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 18, PhysicalMax = 38, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 28, str = 29, dex = 29, }, } itemBases["Falchion"] = { @@ -81,7 +81,7 @@ itemBases["Falchion"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 27, PhysicalMax = 37, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 27, PhysicalMax = 37, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 33, str = 34, dex = 34, }, } itemBases["Treasured Blade"] = { @@ -90,7 +90,7 @@ itemBases["Treasured Blade"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 27, PhysicalMax = 45, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 27, PhysicalMax = 45, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 40, str = 40, dex = 40, }, } itemBases["Cutlass"] = { @@ -99,7 +99,7 @@ itemBases["Cutlass"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 33, PhysicalMax = 49, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 45, str = 45, dex = 45, }, } itemBases["Runic Shortsword"] = { @@ -108,7 +108,7 @@ itemBases["Runic Shortsword"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 26, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.65, Range = 11, }, + weapon = { PhysicalMin = 26, PhysicalMax = 55, CritChanceBase = 5, AttackRateBase = 1.65, Range = 13, }, req = { level = 50, str = 49, dex = 49, }, } itemBases["Messer"] = { @@ -117,7 +117,7 @@ itemBases["Messer"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.6, Range = 11, }, + weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 5, AttackRateBase = 1.6, Range = 13, }, req = { level = 52, str = 51, dex = 51, }, } itemBases["Commander Sword"] = { @@ -126,7 +126,7 @@ itemBases["Commander Sword"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.5, Range = 11, }, + weapon = { PhysicalMin = 36, PhysicalMax = 60, CritChanceBase = 5, AttackRateBase = 1.5, Range = 13, }, req = { level = 54, str = 53, dex = 53, }, } itemBases["Dark Blade"] = { @@ -135,7 +135,7 @@ itemBases["Dark Blade"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 43, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 43, PhysicalMax = 65, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { level = 65, str = 63, dex = 63, }, } itemBases["Golden Blade"] = { @@ -144,7 +144,7 @@ itemBases["Golden Blade"] = { socketLimit = 3, tags = { default = true, ezomyte_basetype = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 11, }, + weapon = { PhysicalMin = 6, PhysicalMax = 9, CritChanceBase = 5, AttackRateBase = 1.55, Range = 13, }, req = { }, } @@ -155,7 +155,7 @@ itemBases["Energy Blade One Handed"] = { socketLimit = 3, tags = { default = true, not_for_sale = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 11, }, + weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.7, Range = 13, }, req = { }, } @@ -165,7 +165,7 @@ itemBases["Keyblade"] = { socketLimit = 4, tags = { default = true, not_for_sale = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 16, }, req = { }, } itemBases["Energy Blade Two Handed"] = { @@ -174,7 +174,7 @@ itemBases["Energy Blade Two Handed"] = { socketLimit = 4, tags = { default = true, not_for_sale = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, }, + weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 16, }, req = { }, } itemBases["Corroded Longsword"] = { @@ -183,7 +183,7 @@ itemBases["Corroded Longsword"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 9, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 9, PhysicalMax = 16, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { }, } itemBases["Iron Greatsword"] = { @@ -192,7 +192,7 @@ itemBases["Iron Greatsword"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 13, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, + weapon = { PhysicalMin = 13, PhysicalMax = 23, CritChanceBase = 5, AttackRateBase = 1.35, Range = 16, }, req = { level = 6, str = 9, dex = 9, }, } itemBases["Blessed Claymore"] = { @@ -201,7 +201,7 @@ itemBases["Blessed Claymore"] = { socketLimit = 4, tags = { default = true, ezomyte_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 19, PhysicalMax = 32, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 11, str = 14, dex = 14, }, } itemBases["Broad Greatsword"] = { @@ -210,7 +210,7 @@ itemBases["Broad Greatsword"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 25, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, + weapon = { PhysicalMin = 25, PhysicalMax = 42, CritChanceBase = 5, AttackRateBase = 1.25, Range = 16, }, req = { level = 16, str = 19, dex = 19, }, } itemBases["Rippled Greatsword"] = { @@ -219,7 +219,7 @@ itemBases["Rippled Greatsword"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 22, str = 24, dex = 24, }, } itemBases["Arced Longsword"] = { @@ -228,7 +228,7 @@ itemBases["Arced Longsword"] = { socketLimit = 4, tags = { default = true, maraketh_basetype = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 31, PhysicalMax = 58, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, + weapon = { PhysicalMin = 31, PhysicalMax = 58, CritChanceBase = 5, AttackRateBase = 1.35, Range = 16, }, req = { level = 28, str = 29, dex = 29, }, } itemBases["Stone Greatsword"] = { @@ -237,7 +237,7 @@ itemBases["Stone Greatsword"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 40, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 40, PhysicalMax = 67, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 33, str = 34, dex = 34, }, } itemBases["Obsidian Greatsword"] = { @@ -246,7 +246,7 @@ itemBases["Obsidian Greatsword"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 49, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, + weapon = { PhysicalMin = 49, PhysicalMax = 73, CritChanceBase = 5, AttackRateBase = 1.25, Range = 16, }, req = { level = 36, str = 37, dex = 37, }, } itemBases["Keen Greatsword"] = { @@ -255,7 +255,7 @@ itemBases["Keen Greatsword"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 45, PhysicalMax = 94, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 45, str = 45, dex = 45, }, } itemBases["Ancient Greatblade"] = { @@ -264,7 +264,7 @@ itemBases["Ancient Greatblade"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 55, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.25, Range = 13, }, + weapon = { PhysicalMin = 55, PhysicalMax = 103, CritChanceBase = 5, AttackRateBase = 1.25, Range = 16, }, req = { level = 49, str = 49, dex = 49, }, } itemBases["Flanged Greatblade"] = { @@ -273,7 +273,7 @@ itemBases["Flanged Greatblade"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 51, PhysicalMax = 106, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 51, PhysicalMax = 106, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 52, str = 51, dex = 51, }, } itemBases["Regalia Longsword"] = { @@ -282,7 +282,7 @@ itemBases["Regalia Longsword"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 61, PhysicalMax = 92, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, }, + weapon = { PhysicalMin = 61, PhysicalMax = 92, CritChanceBase = 5, AttackRateBase = 1.35, Range = 16, }, req = { level = 54, str = 53, dex = 53, }, } itemBases["Ultra Greatsword"] = { @@ -291,7 +291,7 @@ itemBases["Ultra Greatsword"] = { socketLimit = 4, tags = { default = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 72, PhysicalMax = 119, CritChanceBase = 5, AttackRateBase = 1.3, Range = 13, }, + weapon = { PhysicalMin = 72, PhysicalMax = 119, CritChanceBase = 5, AttackRateBase = 1.3, Range = 16, }, req = { level = 65, str = 63, dex = 63, }, } @@ -302,7 +302,7 @@ itemBases["Energy Blade Two Handed"] = { socketLimit = 4, tags = { default = true, not_for_sale = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, }, + weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 16, }, req = { }, } itemBases["Keyblade"] = { @@ -312,6 +312,6 @@ itemBases["Keyblade"] = { socketLimit = 4, tags = { default = true, not_for_sale = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicitModTypes = { }, - weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, }, + weapon = { PhysicalMin = 1, PhysicalMax = 1, CritChanceBase = 5, AttackRateBase = 1.2, Range = 16, }, req = { }, } diff --git a/src/Data/Bases/talisman.lua b/src/Data/Bases/talisman.lua index 2f4d8bf778..715f70efa0 100644 --- a/src/Data/Bases/talisman.lua +++ b/src/Data/Bases/talisman.lua @@ -32,7 +32,7 @@ itemBases["Familial Talisman"] = { quality = 20, tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Minions deal (30-50)% increased Damage", - implicitModTypes = { { "damage", "minion" }, }, + implicitModTypes = { { "minion_damage", "damage", "minion" }, }, weapon = { PhysicalMin = 20, PhysicalMax = 34, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 16, str = 21, int = 16, }, } @@ -48,7 +48,7 @@ itemBases["Primal Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "+(10-15)% to Block chance", + implicit = "+(14-18)% to Block chance", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 31, PhysicalMax = 46, CritChanceBase = 9, AttackRateBase = 1.3, Range = 12, }, req = { level = 28, str = 34, int = 25, }, @@ -57,7 +57,7 @@ itemBases["Rabid Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, - implicit = "+(8-12) to Maximum Rage", + implicit = "+(7-10) to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 31, PhysicalMax = 58, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 34, str = 40, int = 29, }, @@ -74,7 +74,7 @@ itemBases["Voltfang Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "(15-25)% increased Magnitude of Shock you inflict", + implicit = "(20-30)% increased Magnitude of Shock you inflict", implicitModTypes = { { "elemental", "lightning", "ailment" }, }, weapon = { PhysicalMin = 16, PhysicalMax = 91, LightningMin = 6, LightningMax = 39, CritChanceBase = 8, AttackRateBase = 1.3, Range = 12, }, req = { level = 46, str = 53, int = 38, }, @@ -91,7 +91,7 @@ itemBases["Roaring Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "+(8-12) to Maximum Rage", + implicit = "+(7-10) to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 57, PhysicalMax = 96, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 58, str = 66, int = 47, }, @@ -117,7 +117,7 @@ itemBases["Howling Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "+(10-15)% to Block chance", + implicit = "+(14-18)% to Block chance", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 52, PhysicalMax = 78, CritChanceBase = 9, AttackRateBase = 1.3, Range = 12, }, req = { level = 55, str = 63, int = 45, }, @@ -126,7 +126,7 @@ itemBases["Fury Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, - implicit = "+(8-12) to Maximum Rage", + implicit = "+(7-10) to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 49, PhysicalMax = 91, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 59, str = 67, int = 48, }, @@ -139,6 +139,56 @@ itemBases["Cruel Talisman"] = { weapon = { PhysicalMin = 62, PhysicalMax = 103, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 63, str = 72, int = 51, }, } +itemBases["Runeforged Changeling Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 91, PhysicalMax = 151, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, + req = { level = 38, str = 45, int = 32, }, +} +itemBases["Runeforged Nettle Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 51, PhysicalMax = 86, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, }, + req = { level = 38, str = 45, int = 32, }, +} +itemBases["Runemastered Nettle Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 68, PhysicalMax = 114, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, }, + req = { level = 55, str = 63, int = 45, }, +} +itemBases["Runeforged Familial Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, maraketh_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Minions deal (30-50)% increased Damage", + implicitModTypes = { { "minion_damage", "damage", "minion" }, }, + weapon = { PhysicalMin = 54, PhysicalMax = 91, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, + req = { level = 38, str = 45, int = 32, }, +} +itemBases["Runemastered Familial Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, maraketh_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, + implicit = "Minions deal (51-100)% increased Damage", + implicitModTypes = { { "minion_damage", "damage", "minion" }, }, + weapon = { PhysicalMin = 73, PhysicalMax = 122, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, + req = { level = 55, str = 63, int = 45, }, +} +itemBases["Runeforged Vicious Talisman"] = { + type = "Talisman", + quality = 20, + tags = { default = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, + implicitModTypes = { }, + weapon = { PhysicalMin = 123, PhysicalMax = 205, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, + req = { level = 65, str = 74, int = 52, }, +} itemBases["Spiny Talisman"] = { type = "Talisman", quality = 20, @@ -161,7 +211,7 @@ itemBases["Fang Talisman"] = { quality = 20, tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, implicit = "Minions deal (30-50)% increased Damage", - implicitModTypes = { { "damage", "minion" }, }, + implicitModTypes = { { "minion_damage", "damage", "minion" }, }, weapon = { PhysicalMin = 70, PhysicalMax = 116, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 77, str = 89, int = 68, }, } @@ -177,7 +227,7 @@ itemBases["Alpha Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "+(10-15)% to Block chance", + implicit = "+(14-18)% to Block chance", implicitModTypes = { { "block" }, }, weapon = { PhysicalMin = 63, PhysicalMax = 94, CritChanceBase = 9, AttackRateBase = 1.3, Range = 12, }, req = { level = 75, str = 98, int = 72, }, @@ -186,7 +236,7 @@ itemBases["Maji Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, }, - implicit = "+(8-12) to Maximum Rage", + implicit = "+(7-10) to Maximum Rage", implicitModTypes = { { }, }, weapon = { PhysicalMin = 61, PhysicalMax = 114, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, }, req = { level = 79, str = 100, int = 67, }, @@ -203,7 +253,7 @@ itemBases["Thunder Talisman"] = { type = "Talisman", quality = 20, tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, }, - implicit = "(15-25)% increased Magnitude of Shock you inflict", + implicit = "(20-30)% increased Magnitude of Shock you inflict", implicitModTypes = { { "elemental", "lightning", "ailment" }, }, weapon = { PhysicalMin = 23, PhysicalMax = 130, LightningMin = 9, LightningMax = 56, CritChanceBase = 8, AttackRateBase = 1.3, Range = 12, }, req = { level = 77, str = 102, int = 72, }, diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua index 481b632eae..128ccf69a8 100644 --- a/src/Data/Bases/wand.lua +++ b/src/Data/Bases/wand.lua @@ -119,3 +119,47 @@ itemBases["Dueling Wand"] = { implicitModTypes = { }, req = { }, } +itemBases["Twisted Wand"] = { + type = "Wand", + quality = 20, + socketLimit = 3, + tags = { default = true, onehand = true, wand = true, }, + implicit = "Grants Skill: Level (1-20) Coiling Bolts", + implicitModTypes = { }, + req = { }, +} +itemBases["Runic Fork"] = { + type = "Wand", + quality = 20, + socketLimit = 3, + tags = { default = true, onehand = true, wand = true, }, + implicitModTypes = { }, + req = { }, +} +itemBases["Runemastered Runic Fork"] = { + type = "Wand", + quality = 20, + socketLimit = 3, + tags = { default = true, onehand = true, runeforged = true, wand = true, }, + implicit = "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", + implicitModTypes = { { "caster" }, }, + req = { }, +} +itemBases["Runemastered Runic Fork"] = { + type = "Wand", + quality = 20, + socketLimit = 3, + tags = { default = true, onehand = true, runeforged = true, wand = true, }, + implicit = "(30-50)% increased Mana Regeneration Rate", + implicitModTypes = { { "resource", "mana" }, }, + req = { }, +} +itemBases["Runemastered Runic Fork"] = { + type = "Wand", + quality = 20, + socketLimit = 3, + tags = { default = true, onehand = true, runeforged = true, wand = true, }, + implicit = "+300 to maximum Runic Ward", + implicitModTypes = { { "runic_ward" }, }, + req = { }, +} diff --git a/src/Data/Costs.lua b/src/Data/Costs.lua index 512d2d871e..b1f2502ba4 100644 --- a/src/Data/Costs.lua +++ b/src/Data/Costs.lua @@ -27,72 +27,90 @@ return { Divisor = 1, }, [5] = { + Resource = "Ward", + Stat = "base_ward_cost", + ResourceString = "{0} Ward", + Divisor = 1, + }, + [6] = { Resource = "ManaPercent", Stat = "base_mana_cost_%", ResourceString = "{0}% Mana", Divisor = 1, }, - [6] = { + [7] = { Resource = "LifePercent", Stat = "base_life_cost_%", ResourceString = "{0}% Life", Divisor = 1, }, - [7] = { + [8] = { + Resource = "WardPercent", + Stat = "base_ward_cost_%", + ResourceString = "{0}% Ward", + Divisor = 1, + }, + [9] = { Resource = "UnreservedManaPercent", Stat = "base_unreserved_mana_cost_%", ResourceString = "{0}% Unreserved Mana ", Divisor = 1, }, - [8] = { + [10] = { Resource = "ManaPerMinute", Stat = "base_mana_cost_per_minute", ResourceString = "{0} Mana per second", Divisor = 60, }, - [9] = { + [11] = { Resource = "LifePerMinute", Stat = "base_life_cost_per_minute", ResourceString = "{0} Life per second", Divisor = 60, }, - [10] = { + [12] = { Resource = "ManaPercentPerMinute", Stat = "base_mana_cost_%_per_minute", ResourceString = "{0}% Mana per second", Divisor = 60, }, - [11] = { + [13] = { Resource = "LifePercentPerMinute", Stat = "base_life_cost_%_per_minute", ResourceString = "{0}% Life per second", Divisor = 60, }, - [12] = { + [14] = { Resource = "ESPerMinute", Stat = "base_es_cost_per_minute", ResourceString = "{0} Energy Shield per second", Divisor = 60, }, - [13] = { + [15] = { Resource = "ESPercentPerMinute", Stat = "base_es_cost_%_per_minute", ResourceString = "{0}% Energy Shield per second", Divisor = 60, }, - [14] = { + [16] = { Resource = "ESPercent", Stat = "base_es_cost_%", ResourceString = "{0}% Energy Shield", Divisor = 1, }, - [15] = { + [17] = { Resource = "RagePerMinute", Stat = "base_rage_cost_per_minute", ResourceString = "{0} Rage per second", Divisor = 60, }, - [16] = { + [18] = { + Resource = "WardPerMinute", + Stat = "base_ward_cost_per_minute", + ResourceString = "{0} Ward per second", + Divisor = 60, + }, + [19] = { Resource = "Soul", Stat = " ", ResourceString = "{0} Souls Per Use", diff --git a/src/Data/Essence.lua b/src/Data/Essence.lua index 7b1e5d6e89..719debc493 100644 --- a/src/Data/Essence.lua +++ b/src/Data/Essence.lua @@ -2,18 +2,18 @@ -- Item data (c) Grinding Gear Games return { - ["Metadata/Items/Currency/CurrencyLesserEssenceLife"] = { name = "Lesser Essence of the Body", type = "Life", tierLevel = 13, mods = { ["Helmet"] = "IncreasedLife3", ["Body Armour"] = "IncreasedLife3", ["Gloves"] = "IncreasedLife3", ["Boots"] = "IncreasedLife3", ["Shield"] = "IncreasedLife3", ["Belt"] = "IncreasedLife3", ["Buckler"] = "IncreasedLife3", ["Focus"] = "IncreasedLife3", ["Ring"] = "IncreasedLife2", ["Amulet"] = "IncreasedLife2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceMana"] = { name = "Lesser Essence of the Mind", type = "Mana", tierLevel = 13, mods = { ["Belt"] = "IncreasedMana3", ["Boots"] = "IncreasedMana3", ["Gloves"] = "IncreasedMana3", ["Helmet"] = "IncreasedMana3", ["Amulet"] = "IncreasedMana3", ["Ring"] = "IncreasedMana3", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceDefences"] = { name = "Lesser Essence of Enhancement", type = "Defences", tierLevel = 20, mods = { ["Helmet"] = "EssenceDisplayDefences1", ["Body Armour"] = "EssenceDisplayDefences1", ["Gloves"] = "EssenceDisplayDefences1", ["Boots"] = "EssenceDisplayDefences1", ["Shield"] = "EssenceDisplayDefences1", ["Buckler"] = "EssenceDisplayDefences1", ["Focus"] = "EssenceDisplayDefences1", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssencePhysical"] = { name = "Lesser Essence of Abrasion", type = "Physical", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedPhysicalDamage2", ["One Hand Axe"] = "LocalAddedPhysicalDamage2", ["One Hand Mace"] = "LocalAddedPhysicalDamage2", ["Spear"] = "LocalAddedPhysicalDamage2", ["Dagger"] = "LocalAddedPhysicalDamage2", ["Bow"] = "LocalAddedPhysicalDamage2", ["Flail"] = "LocalAddedPhysicalDamage2", ["Two Hand Sword"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedPhysicalDamageTwoHand2", ["Warstaff"] = "LocalAddedPhysicalDamageTwoHand2", ["Crossbow"] = "LocalAddedPhysicalDamageTwoHand2", ["Talisman"] = "LocalAddedPhysicalDamageTwoHand2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceFire"] = { name = "Lesser Essence of Flames", type = "Fire", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedFireDamage2", ["One Hand Axe"] = "LocalAddedFireDamage2", ["One Hand Mace"] = "LocalAddedFireDamage2", ["Spear"] = "LocalAddedFireDamage2", ["Dagger"] = "LocalAddedFireDamage2", ["Bow"] = "LocalAddedFireDamage2", ["Flail"] = "LocalAddedFireDamage2", ["Two Hand Sword"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedFireDamageTwoHand2", ["Warstaff"] = "LocalAddedFireDamageTwoHand2", ["Crossbow"] = "LocalAddedFireDamageTwoHand2", ["Talisman"] = "LocalAddedFireDamageTwoHand2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceCold"] = { name = "Lesser Essence of Ice", type = "Cold", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedColdDamage2", ["One Hand Axe"] = "LocalAddedColdDamage2", ["One Hand Mace"] = "LocalAddedColdDamage2", ["Spear"] = "LocalAddedColdDamage2", ["Dagger"] = "LocalAddedColdDamage2", ["Bow"] = "LocalAddedColdDamage2", ["Flail"] = "LocalAddedColdDamage2", ["Two Hand Sword"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedColdDamageTwoHand2", ["Warstaff"] = "LocalAddedColdDamageTwoHand2", ["Crossbow"] = "LocalAddedColdDamageTwoHand2", ["Talisman"] = "LocalAddedColdDamageTwoHand2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceLightning"] = { name = "Lesser Essence of Electricity", type = "Lightning", tierLevel = 13, mods = { ["One Hand Sword"] = "LocalAddedLightningDamage2", ["One Hand Axe"] = "LocalAddedLightningDamage2", ["One Hand Mace"] = "LocalAddedLightningDamage2", ["Spear"] = "LocalAddedLightningDamage2", ["Dagger"] = "LocalAddedLightningDamage2", ["Bow"] = "LocalAddedLightningDamage2", ["Flail"] = "LocalAddedLightningDamage2", ["Two Hand Sword"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedLightningDamageTwoHand2", ["Warstaff"] = "LocalAddedLightningDamageTwoHand2", ["Crossbow"] = "LocalAddedLightningDamageTwoHand2", ["Talisman"] = "LocalAddedLightningDamageTwoHand2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceLife"] = { name = "Lesser Essence of the Body", type = "Life", tierLevel = 12, mods = { ["Helmet"] = "IncreasedLife3", ["Body Armour"] = "IncreasedLife3", ["Gloves"] = "IncreasedLife3", ["Boots"] = "IncreasedLife3", ["Shield"] = "IncreasedLife3", ["Belt"] = "IncreasedLife3", ["Buckler"] = "IncreasedLife3", ["Focus"] = "IncreasedLife3", ["Ring"] = "IncreasedLife2", ["Amulet"] = "IncreasedLife2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceMana"] = { name = "Lesser Essence of the Mind", type = "Mana", tierLevel = 12, mods = { ["Belt"] = "IncreasedMana3", ["Boots"] = "IncreasedMana3", ["Gloves"] = "IncreasedMana3", ["Helmet"] = "IncreasedMana3", ["Amulet"] = "IncreasedMana3", ["Ring"] = "IncreasedMana3", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceDefences"] = { name = "Lesser Essence of Enhancement", type = "Defences", tierLevel = 16, mods = { ["Helmet"] = "EssenceDisplayDefences1", ["Body Armour"] = "EssenceDisplayDefences1", ["Gloves"] = "EssenceDisplayDefences1", ["Boots"] = "EssenceDisplayDefences1", ["Shield"] = "EssenceDisplayDefences1", ["Buckler"] = "EssenceDisplayDefences1", ["Focus"] = "EssenceDisplayDefences1", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssencePhysical"] = { name = "Lesser Essence of Abrasion", type = "Physical", tierLevel = 12, mods = { ["One Hand Sword"] = "LocalAddedPhysicalDamage2", ["One Hand Axe"] = "LocalAddedPhysicalDamage2", ["One Hand Mace"] = "LocalAddedPhysicalDamage2", ["Spear"] = "LocalAddedPhysicalDamage2", ["Dagger"] = "LocalAddedPhysicalDamage2", ["Bow"] = "LocalAddedPhysicalDamage2", ["Flail"] = "LocalAddedPhysicalDamage2", ["Two Hand Sword"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedPhysicalDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedPhysicalDamageTwoHand2", ["Warstaff"] = "LocalAddedPhysicalDamageTwoHand2", ["Crossbow"] = "LocalAddedPhysicalDamageTwoHand2", ["Talisman"] = "LocalAddedPhysicalDamageTwoHand2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceFire"] = { name = "Lesser Essence of Flames", type = "Fire", tierLevel = 12, mods = { ["One Hand Sword"] = "LocalAddedFireDamage2", ["One Hand Axe"] = "LocalAddedFireDamage2", ["One Hand Mace"] = "LocalAddedFireDamage2", ["Spear"] = "LocalAddedFireDamage2", ["Dagger"] = "LocalAddedFireDamage2", ["Bow"] = "LocalAddedFireDamage2", ["Flail"] = "LocalAddedFireDamage2", ["Two Hand Sword"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedFireDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedFireDamageTwoHand2", ["Warstaff"] = "LocalAddedFireDamageTwoHand2", ["Crossbow"] = "LocalAddedFireDamageTwoHand2", ["Talisman"] = "LocalAddedFireDamageTwoHand2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceCold"] = { name = "Lesser Essence of Ice", type = "Cold", tierLevel = 12, mods = { ["One Hand Sword"] = "LocalAddedColdDamage2", ["One Hand Axe"] = "LocalAddedColdDamage2", ["One Hand Mace"] = "LocalAddedColdDamage2", ["Spear"] = "LocalAddedColdDamage2", ["Dagger"] = "LocalAddedColdDamage2", ["Bow"] = "LocalAddedColdDamage2", ["Flail"] = "LocalAddedColdDamage2", ["Two Hand Sword"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedColdDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedColdDamageTwoHand2", ["Warstaff"] = "LocalAddedColdDamageTwoHand2", ["Crossbow"] = "LocalAddedColdDamageTwoHand2", ["Talisman"] = "LocalAddedColdDamageTwoHand2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceLightning"] = { name = "Lesser Essence of Electricity", type = "Lightning", tierLevel = 12, mods = { ["One Hand Sword"] = "LocalAddedLightningDamage2", ["One Hand Axe"] = "LocalAddedLightningDamage2", ["One Hand Mace"] = "LocalAddedLightningDamage2", ["Spear"] = "LocalAddedLightningDamage2", ["Dagger"] = "LocalAddedLightningDamage2", ["Bow"] = "LocalAddedLightningDamage2", ["Flail"] = "LocalAddedLightningDamage2", ["Two Hand Sword"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Axe"] = "LocalAddedLightningDamageTwoHand2", ["Two Hand Mace"] = "LocalAddedLightningDamageTwoHand2", ["Warstaff"] = "LocalAddedLightningDamageTwoHand2", ["Crossbow"] = "LocalAddedLightningDamageTwoHand2", ["Talisman"] = "LocalAddedLightningDamageTwoHand2", }, }, ["Metadata/Items/Currency/CurrencyLesserEssenceChaos"] = { name = "Lesser Essence of Ruin", type = "Chaos", tierLevel = 25, mods = { ["Helmet"] = "ChaosResist1", ["Body Armour"] = "ChaosResist1", ["Gloves"] = "ChaosResist1", ["Boots"] = "ChaosResist1", ["Shield"] = "ChaosResist1", ["Ring"] = "ChaosResist1", ["Amulet"] = "ChaosResist1", ["Belt"] = "ChaosResist1", ["Buckler"] = "ChaosResist1", ["Focus"] = "ChaosResist1", }, }, ["Metadata/Items/Currency/CurrencyLesserEssenceAttack"] = { name = "Lesser Essence of Battle", type = "Attack", tierLevel = 20, mods = { ["One Hand Sword"] = "LocalIncreasedAccuracy3", ["One Hand Axe"] = "LocalIncreasedAccuracy3", ["One Hand Mace"] = "LocalIncreasedAccuracy3", ["Two Hand Sword"] = "LocalIncreasedAccuracy3", ["Two Hand Axe"] = "LocalIncreasedAccuracy3", ["Two Hand Mace"] = "LocalIncreasedAccuracy3", ["Spear"] = "LocalIncreasedAccuracy3", ["Bow"] = "LocalIncreasedAccuracy3", ["Warstaff"] = "LocalIncreasedAccuracy3", ["Dagger"] = "LocalIncreasedAccuracy3", ["Crossbow"] = "LocalIncreasedAccuracy3", ["Flail"] = "LocalIncreasedAccuracy3", ["Talisman"] = "LocalIncreasedAccuracy3", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceCaster"] = { name = "Lesser Essence of Sorcery", type = "Caster", tierLevel = 13, mods = { ["Focus"] = "SpellDamageOnWeapon2", ["Wand"] = "SpellDamageOnWeapon2", ["Staff"] = "SpellDamageOnTwoHandWeapon2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceSpeed"] = { name = "Lesser Essence of Haste", type = "Speed", tierLevel = 25, mods = { ["One Hand Sword"] = "LocalIncreasedAttackSpeed3", ["One Hand Axe"] = "LocalIncreasedAttackSpeed3", ["One Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Two Hand Sword"] = "LocalIncreasedAttackSpeed3", ["Two Hand Axe"] = "LocalIncreasedAttackSpeed3", ["Two Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Spear"] = "LocalIncreasedAttackSpeed3", ["Warstaff"] = "LocalIncreasedAttackSpeed3", ["Dagger"] = "LocalIncreasedAttackSpeed3", ["Flail"] = "LocalIncreasedAttackSpeed3", ["Talisman"] = "LocalIncreasedAttackSpeed3", ["Bow"] = "LocalIncreasedAttackSpeed2", ["Crossbow"] = "LocalIncreasedAttackSpeed2", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceAttribute"] = { name = "Lesser Essence of the Infinite", type = "Attribute", tierLevel = 13, mods = { ["One Hand Sword"] = "EssenceDisplayAttributes1", ["One Hand Axe"] = "EssenceDisplayAttributes1", ["One Hand Mace"] = "EssenceDisplayAttributes1", ["Two Hand Sword"] = "EssenceDisplayAttributes1", ["Two Hand Axe"] = "EssenceDisplayAttributes1", ["Two Hand Mace"] = "EssenceDisplayAttributes1", ["Spear"] = "EssenceDisplayAttributes1", ["Bow"] = "EssenceDisplayAttributes1", ["Warstaff"] = "EssenceDisplayAttributes1", ["Dagger"] = "EssenceDisplayAttributes1", ["Helmet"] = "EssenceDisplayAttributes1", ["Body Armour"] = "EssenceDisplayAttributes1", ["Gloves"] = "EssenceDisplayAttributes1", ["Boots"] = "EssenceDisplayAttributes1", ["Shield"] = "EssenceDisplayAttributes1", ["Staff"] = "EssenceDisplayAttributes1", ["Wand"] = "EssenceDisplayAttributes1", ["Sceptre"] = "EssenceDisplayAttributes1", ["Ring"] = "EssenceDisplayAttributes1", ["Amulet"] = "EssenceDisplayAttributes1", ["Belt"] = "EssenceDisplayAttributes1", ["Quiver"] = "EssenceDisplayAttributes1", ["Crossbow"] = "EssenceDisplayAttributes1", ["Flail"] = "EssenceDisplayAttributes1", ["Talisman"] = "EssenceDisplayAttributes1", ["Focus"] = "EssenceDisplayAttributes1", ["Buckler"] = "EssenceDisplayAttributes1", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceCaster"] = { name = "Lesser Essence of Sorcery", type = "Caster", tierLevel = 12, mods = { ["Focus"] = "SpellDamageOnWeapon2", ["Wand"] = "SpellDamageOnWeapon2", ["Staff"] = "SpellDamageOnTwoHandWeapon2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceSpeed"] = { name = "Lesser Essence of Haste", type = "Speed", tierLevel = 22, mods = { ["One Hand Sword"] = "LocalIncreasedAttackSpeed3", ["One Hand Axe"] = "LocalIncreasedAttackSpeed3", ["One Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Two Hand Sword"] = "LocalIncreasedAttackSpeed3", ["Two Hand Axe"] = "LocalIncreasedAttackSpeed3", ["Two Hand Mace"] = "LocalIncreasedAttackSpeed3", ["Spear"] = "LocalIncreasedAttackSpeed3", ["Warstaff"] = "LocalIncreasedAttackSpeed3", ["Dagger"] = "LocalIncreasedAttackSpeed3", ["Flail"] = "LocalIncreasedAttackSpeed3", ["Talisman"] = "LocalIncreasedAttackSpeed3", ["Bow"] = "LocalIncreasedAttackSpeed2", ["Crossbow"] = "LocalIncreasedAttackSpeed2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceAttribute"] = { name = "Lesser Essence of the Infinite", type = "Attribute", tierLevel = 12, mods = { ["One Hand Sword"] = "EssenceDisplayAttributes1", ["One Hand Axe"] = "EssenceDisplayAttributes1", ["One Hand Mace"] = "EssenceDisplayAttributes1", ["Two Hand Sword"] = "EssenceDisplayAttributes1", ["Two Hand Axe"] = "EssenceDisplayAttributes1", ["Two Hand Mace"] = "EssenceDisplayAttributes1", ["Spear"] = "EssenceDisplayAttributes1", ["Bow"] = "EssenceDisplayAttributes1", ["Warstaff"] = "EssenceDisplayAttributes1", ["Dagger"] = "EssenceDisplayAttributes1", ["Helmet"] = "EssenceDisplayAttributes1", ["Body Armour"] = "EssenceDisplayAttributes1", ["Gloves"] = "EssenceDisplayAttributes1", ["Boots"] = "EssenceDisplayAttributes1", ["Shield"] = "EssenceDisplayAttributes1", ["Staff"] = "EssenceDisplayAttributes1", ["Wand"] = "EssenceDisplayAttributes1", ["Sceptre"] = "EssenceDisplayAttributes1", ["Ring"] = "EssenceDisplayAttributes1", ["Amulet"] = "EssenceDisplayAttributes1", ["Belt"] = "EssenceDisplayAttributes1", ["Quiver"] = "EssenceDisplayAttributes1", ["Crossbow"] = "EssenceDisplayAttributes1", ["Flail"] = "EssenceDisplayAttributes1", ["Talisman"] = "EssenceDisplayAttributes1", ["Focus"] = "EssenceDisplayAttributes1", ["Buckler"] = "EssenceDisplayAttributes1", }, }, ["Metadata/Items/Currency/CurrencyEssenceLife"] = { name = "Essence of the Body", type = "Life", tierLevel = 40, mods = { ["Belt"] = "IncreasedLife7", ["Body Armour"] = "IncreasedLife7", ["Helmet"] = "IncreasedLife7", ["Shield"] = "IncreasedLife7", ["Buckler"] = "IncreasedLife7", ["Amulet"] = "IncreasedLife6", ["Boots"] = "IncreasedLife6", ["Gloves"] = "IncreasedLife6", ["Ring"] = "IncreasedLife6", }, }, ["Metadata/Items/Currency/CurrencyEssenceMana"] = { name = "Essence of the Mind", type = "Mana", tierLevel = 40, mods = { ["Boots"] = "IncreasedMana6", ["Gloves"] = "IncreasedMana6", ["Helmet"] = "IncreasedMana6", ["Belt"] = "IncreasedMana6", ["Ring"] = "IncreasedMana7", ["Amulet"] = "IncreasedMana7", }, }, ["Metadata/Items/Currency/CurrencyEssenceDefences"] = { name = "Essence of Enhancement", type = "Defences", tierLevel = 40, mods = { ["Helmet"] = "EssenceDisplayDefences2", ["Body Armour"] = "EssenceDisplayDefences2", ["Gloves"] = "EssenceDisplayDefences2", ["Boots"] = "EssenceDisplayDefences2", ["Shield"] = "EssenceDisplayDefences2", ["Buckler"] = "EssenceDisplayDefences2", ["Focus"] = "EssenceDisplayDefences2", }, }, @@ -50,7 +50,7 @@ return { ["Metadata/Items/Currency/CurrencyPerfectEssenceCaster"] = { name = "Perfect Essence of Sorcery", type = "Caster", tierLevel = 72, mods = { ["Wand"] = "EssenceSpellSkillLevel1H1", ["Staff"] = "EssenceSpellSkillLevel2H1", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceSpeed"] = { name = "Perfect Essence of Haste", type = "Speed", tierLevel = 72, mods = { ["One Hand Sword"] = "EssenceOnslaughtonKill1", ["One Hand Axe"] = "EssenceOnslaughtonKill1", ["One Hand Mace"] = "EssenceOnslaughtonKill1", ["Two Hand Sword"] = "EssenceOnslaughtonKill1", ["Two Hand Axe"] = "EssenceOnslaughtonKill1", ["Two Hand Mace"] = "EssenceOnslaughtonKill1", ["Spear"] = "EssenceOnslaughtonKill1", ["Bow"] = "EssenceOnslaughtonKill1", ["Warstaff"] = "EssenceOnslaughtonKill1", ["Dagger"] = "EssenceOnslaughtonKill1", ["Crossbow"] = "EssenceOnslaughtonKill1", ["Flail"] = "EssenceOnslaughtonKill1", ["Talisman"] = "EssenceOnslaughtonKill1", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceAttribute"] = { name = "Perfect Essence of the Infinite", type = "Attribute", tierLevel = 72, mods = { ["Amulet"] = "EssenceDisplayAttributes5", }, }, - ["Metadata/Items/Currency/CurrencyCorruptedEssenceHysteria"] = { name = "Essence of Hysteria", type = "Hysteria", tierLevel = 1, mods = { ["Helmet"] = "GlobalMinionSpellSkillGemLevel1", ["Body Armour"] = "AttackerTakesDamage6", ["Gloves"] = "CriticalMultiplier4", ["Boots"] = "MovementVelocity5", ["Ring"] = "ManaRegeneration5", ["Amulet"] = "DamageTakenGainedAsLife4_", ["Belt"] = "StunThreshold10", ["Shield"] = "LocalBlockChance2", ["Buckler"] = "LocalBlockChance2", ["Quiver"] = "DamageWithBows5", ["Focus"] = "EnergyShieldRechargeRate4", }, }, + ["Metadata/Items/Currency/CurrencyCorruptedEssenceHysteria"] = { name = "Essence of Hysteria", type = "Hysteria", tierLevel = 1, mods = { ["Helmet"] = "GlobalMinionSpellSkillGemLevel1", ["Body Armour"] = "AttackerTakesDamage6", ["Gloves"] = "CriticalMultiplier4", ["Boots"] = "MovementVelocity5", ["Ring"] = "ManaRegeneration5", ["Amulet"] = "DamageTakenGainedAsLife4_", ["Belt"] = "StunThreshold10", ["Shield"] = "LocalBlockChance2", ["Buckler"] = "LocalBlockChance2", ["Quiver"] = "DamageWithBows5", ["Focus"] = "EnergyShieldRechargeRate5______", }, }, ["Metadata/Items/Currency/CurrencyCorruptedEssenceDelirium"] = { name = "Essence of Delirium", type = "Delirium", tierLevel = 1, mods = { ["Body Armour"] = "EssenceGrantedPassive", }, }, ["Metadata/Items/Currency/CurrencyCorruptedEssenceHorror"] = { name = "Essence of Horror", type = "Horror", tierLevel = 1, mods = { ["Gloves"] = "EssenceLocalRuneAndSoulCoreEffect1", ["Boots"] = "EssenceLocalRuneAndSoulCoreEffect1", }, }, ["Metadata/Items/Currency/CurrencyCorruptedEssenceInsanity"] = { name = "Essence of Insanity", type = "Insanity", tierLevel = 1, mods = { ["Belt"] = "EssenceCorruptForTwoEnchantments1", }, }, @@ -59,15 +59,16 @@ return { ["Metadata/Items/Currency/CurrencyGreaterEssenceCritical"] = { name = "Greater Essence of Seeking", type = "Critical", tierLevel = 60, mods = { ["One Hand Sword"] = "LocalCriticalStrikeChance4", ["One Hand Axe"] = "LocalCriticalStrikeChance4", ["One Hand Mace"] = "LocalCriticalStrikeChance4", ["Two Hand Sword"] = "LocalCriticalStrikeChance4", ["Two Hand Axe"] = "LocalCriticalStrikeChance4", ["Two Hand Mace"] = "LocalCriticalStrikeChance4", ["Spear"] = "LocalCriticalStrikeChance4", ["Bow"] = "LocalCriticalStrikeChance4", ["Warstaff"] = "LocalCriticalStrikeChance4", ["Dagger"] = "LocalCriticalStrikeChance4", ["Crossbow"] = "LocalCriticalStrikeChance4", ["Flail"] = "LocalCriticalStrikeChance4", ["Talisman"] = "LocalCriticalStrikeChance4", ["Focus"] = "SpellCriticalStrikeChance4", ["Wand"] = "SpellCriticalStrikeChance4", ["Staff"] = "SpellCriticalStrikeChanceTwoHand4", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceCritical"] = { name = "Perfect Essence of Seeking", type = "Critical", tierLevel = 72, mods = { ["Body Armour"] = "EssenceReducedCriticalDamageAgainstYou1", }, }, ["Metadata/Items/Currency/CurrencyCorruptedEssenceAbyss"] = { name = "Essence of the Abyss", type = "Abyss", tierLevel = 1, mods = { }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceFireResist"] = { name = "Lesser Essence of Insulation", type = "FireResist", tierLevel = 13, mods = { ["Helmet"] = "FireResist2", ["Body Armour"] = "FireResist2", ["Gloves"] = "FireResist2", ["Boots"] = "FireResist2", ["Shield"] = "FireResist2", ["Ring"] = "FireResist2", ["Amulet"] = "FireResist2", ["Belt"] = "FireResist2", ["Buckler"] = "FireResist2", ["Focus"] = "FireResist2", }, }, + ["Metadata/Items/Currency/CurrencyCorruptedEssenceBreach"] = { name = "Essence of the Breach", type = "Breach", tierLevel = 1, mods = { ["Ring"] = "EssenceBreach", ["Amulet"] = "EssenceBreach", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceFireResist"] = { name = "Lesser Essence of Insulation", type = "FireResist", tierLevel = 12, mods = { ["Helmet"] = "FireResist2", ["Body Armour"] = "FireResist2", ["Gloves"] = "FireResist2", ["Boots"] = "FireResist2", ["Shield"] = "FireResist2", ["Ring"] = "FireResist2", ["Amulet"] = "FireResist2", ["Belt"] = "FireResist2", ["Buckler"] = "FireResist2", ["Focus"] = "FireResist2", }, }, ["Metadata/Items/Currency/CurrencyEssenceFireResist"] = { name = "Essence of Insulation", type = "FireResist", tierLevel = 40, mods = { ["Helmet"] = "FireResist4", ["Body Armour"] = "FireResist4", ["Gloves"] = "FireResist4", ["Boots"] = "FireResist4", ["Shield"] = "FireResist4", ["Ring"] = "FireResist4", ["Amulet"] = "FireResist4", ["Belt"] = "FireResist4", ["Buckler"] = "FireResist4", ["Focus"] = "FireResist4", }, }, ["Metadata/Items/Currency/CurrencyGreaterEssenceFireResist"] = { name = "Greater Essence of Insulation", type = "FireResist", tierLevel = 60, mods = { ["Helmet"] = "FireResist6", ["Body Armour"] = "FireResist6", ["Gloves"] = "FireResist6", ["Boots"] = "FireResist6", ["Shield"] = "FireResist6", ["Ring"] = "FireResist6", ["Amulet"] = "FireResist6", ["Belt"] = "FireResist6", ["Buckler"] = "FireResist6", ["Focus"] = "FireResist6", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceFireResist"] = { name = "Perfect Essence of Insulation", type = "FireResist", tierLevel = 72, mods = { ["Belt"] = "EssenceFireRecoupLife1", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceColdResist"] = { name = "Lesser Essence of Thawing", type = "ColdResist", tierLevel = 13, mods = { ["Helmet"] = "ColdResist2", ["Body Armour"] = "ColdResist2", ["Gloves"] = "ColdResist2", ["Boots"] = "ColdResist2", ["Shield"] = "ColdResist2", ["Ring"] = "ColdResist2", ["Amulet"] = "ColdResist2", ["Belt"] = "ColdResist2", ["Buckler"] = "ColdResist2", ["Focus"] = "ColdResist2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceColdResist"] = { name = "Lesser Essence of Thawing", type = "ColdResist", tierLevel = 12, mods = { ["Helmet"] = "ColdResist2", ["Body Armour"] = "ColdResist2", ["Gloves"] = "ColdResist2", ["Boots"] = "ColdResist2", ["Shield"] = "ColdResist2", ["Ring"] = "ColdResist2", ["Amulet"] = "ColdResist2", ["Belt"] = "ColdResist2", ["Buckler"] = "ColdResist2", ["Focus"] = "ColdResist2", }, }, ["Metadata/Items/Currency/CurrencyEssenceColdResist"] = { name = "Essence of Thawing", type = "ColdResist", tierLevel = 40, mods = { ["Helmet"] = "ColdResist4", ["Body Armour"] = "ColdResist4", ["Gloves"] = "ColdResist4", ["Boots"] = "ColdResist4", ["Shield"] = "ColdResist4", ["Ring"] = "ColdResist4", ["Amulet"] = "ColdResist4", ["Belt"] = "ColdResist4", ["Buckler"] = "ColdResist4", ["Focus"] = "ColdResist4", }, }, ["Metadata/Items/Currency/CurrencyGreaterEssenceColdResist"] = { name = "Greater Essence of Thawing", type = "ColdResist", tierLevel = 60, mods = { ["Helmet"] = "ColdResist6", ["Body Armour"] = "ColdResist6", ["Gloves"] = "ColdResist6", ["Boots"] = "ColdResist6", ["Shield"] = "ColdResist6", ["Ring"] = "ColdResist6", ["Amulet"] = "ColdResist6", ["Belt"] = "ColdResist6", ["Buckler"] = "ColdResist6", ["Focus"] = "ColdResist6", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceColdResist"] = { name = "Perfect Essence of Thawing", type = "ColdResist", tierLevel = 72, mods = { ["Helmet"] = "EssenceColdRecoupLife1", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceLightningResist"] = { name = "Lesser Essence of Grounding", type = "LightningResist", tierLevel = 13, mods = { ["Helmet"] = "LightningResist2", ["Body Armour"] = "LightningResist2", ["Gloves"] = "LightningResist2", ["Boots"] = "LightningResist2", ["Shield"] = "LightningResist2", ["Ring"] = "LightningResist2", ["Amulet"] = "LightningResist2", ["Belt"] = "LightningResist2", ["Buckler"] = "LightningResist2", ["Focus"] = "LightningResist2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceLightningResist"] = { name = "Lesser Essence of Grounding", type = "LightningResist", tierLevel = 12, mods = { ["Helmet"] = "LightningResist2", ["Body Armour"] = "LightningResist2", ["Gloves"] = "LightningResist2", ["Boots"] = "LightningResist2", ["Shield"] = "LightningResist2", ["Ring"] = "LightningResist2", ["Amulet"] = "LightningResist2", ["Belt"] = "LightningResist2", ["Buckler"] = "LightningResist2", ["Focus"] = "LightningResist2", }, }, ["Metadata/Items/Currency/CurrencyEssenceLightningResist"] = { name = "Essence of Grounding", type = "LightningResist", tierLevel = 40, mods = { ["Helmet"] = "LightningResist4", ["Body Armour"] = "LightningResist4", ["Gloves"] = "LightningResist4", ["Boots"] = "LightningResist4", ["Shield"] = "LightningResist4", ["Ring"] = "LightningResist4", ["Amulet"] = "LightningResist4", ["Belt"] = "LightningResist4", ["Buckler"] = "LightningResist4", ["Focus"] = "LightningResist4", }, }, ["Metadata/Items/Currency/CurrencyGreaterEssenceLightningResist"] = { name = "Greater Essence of Grounding", type = "LightningResist", tierLevel = 60, mods = { ["Helmet"] = "LightningResist6", ["Body Armour"] = "LightningResist6", ["Gloves"] = "LightningResist6", ["Boots"] = "LightningResist6", ["Shield"] = "LightningResist6", ["Ring"] = "LightningResist6", ["Amulet"] = "LightningResist6", ["Belt"] = "LightningResist6", ["Buckler"] = "LightningResist6", ["Focus"] = "LightningResist6", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceLightningResist"] = { name = "Perfect Essence of Grounding", type = "LightningResist", tierLevel = 72, mods = { ["Gloves"] = "EssenceLightningRecoupLife1", }, }, @@ -79,7 +80,7 @@ return { ["Metadata/Items/Currency/CurrencyEssenceRarity"] = { name = "Essence of Opulence", type = "Rarity", tierLevel = 40, mods = { ["Helmet"] = "ItemFoundRarityIncrease2", ["Ring"] = "ItemFoundRarityIncrease2", ["Amulet"] = "ItemFoundRarityIncrease2", ["Boots"] = "ItemFoundRarityIncrease2", ["Gloves"] = "ItemFoundRarityIncrease2", }, }, ["Metadata/Items/Currency/CurrencyGreaterEssenceRarity"] = { name = "Greater Essence of Opulence", type = "Rarity", tierLevel = 65, mods = { ["Helmet"] = "ItemFoundRarityIncrease3", ["Ring"] = "ItemFoundRarityIncrease3", ["Amulet"] = "ItemFoundRarityIncrease3", ["Boots"] = "ItemFoundRarityIncrease3", ["Gloves"] = "ItemFoundRarityIncrease3", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceRarity"] = { name = "Perfect Essence of Opulence", type = "Rarity", tierLevel = 72, mods = { ["Gloves"] = "EssenceGoldDropped1", }, }, - ["Metadata/Items/Currency/CurrencyLesserEssenceAlly"] = { name = "Lesser Essence of Command", type = "Ally", tierLevel = 13, mods = { ["Sceptre"] = "NearbyAlliesAllDamage2", }, }, + ["Metadata/Items/Currency/CurrencyLesserEssenceAlly"] = { name = "Lesser Essence of Command", type = "Ally", tierLevel = 12, mods = { ["Sceptre"] = "NearbyAlliesAllDamage2", }, }, ["Metadata/Items/Currency/CurrencyEssenceAlly"] = { name = "Essence of Command", type = "Ally", tierLevel = 40, mods = { ["Sceptre"] = "NearbyAlliesAllDamage4", }, }, ["Metadata/Items/Currency/CurrencyGreaterEssenceAlly"] = { name = "Greater Essence of Command", type = "Ally", tierLevel = 65, mods = { ["Sceptre"] = "NearbyAlliesAllDamage6", }, }, ["Metadata/Items/Currency/CurrencyPerfectEssenceAlly"] = { name = "Perfect Essence of Command", type = "Ally", tierLevel = 72, mods = { ["Sceptre"] = "EssenceAuraEffect1", }, }, diff --git a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua index c9b4b87e0a..d3769b7260 100644 --- a/src/Data/FlavourText.lua +++ b/src/Data/FlavourText.lua @@ -169,27 +169,36 @@ return { }, }, [22] = { + id = "FourUniqueBodyDex16", + name = "The Auspex", + text = { + "\"The boy is a bad omen,\" he cried. \"Ravens gather", + "before him!\" That night, a new raven appeared, and", + "shadowed the Auspex for the rest of his days.", + }, + }, + [23] = { id = "FourUniqueBodyInt1", name = "Ghostwrithe", text = { "Faith springs abundant at the edge of death.", }, }, - [23] = { + [24] = { id = "FourUniqueBodyInt2", name = "Bitterbloom", text = { "The soul cannot flourish in a doubting mind.", }, }, - [24] = { + [25] = { id = "FourUniqueBodyInt3", name = "The Black Doubt", text = { "Suspicion is a sinister shadow slithering in the soul.", }, }, - [25] = { + [26] = { id = "FourUniqueBodyInt4", name = "Necromantle", text = { @@ -197,14 +206,14 @@ return { "the armies of Saresh were just as relentless.", }, }, - [26] = { + [27] = { id = "FourUniqueBodyInt5", name = "Cloak of Flame", text = { "He who sows an ember shall reap an inferno.", }, }, - [27] = { + [28] = { id = "FourUniqueBodyInt6", name = "Prayers for Rain", text = { @@ -213,14 +222,14 @@ return { "should the opportunity arise.", }, }, - [28] = { + [29] = { id = "FourUniqueBodyInt7", name = "Tetzlapokal's Desire", text = { "A faith born of flesh.", }, }, - [29] = { + [30] = { id = "FourUniqueBodyInt8", name = "The Covenant", text = { @@ -228,14 +237,14 @@ return { "My Price is your Blood", }, }, - [30] = { + [31] = { id = "FourUniqueBodyInt9", name = "Gloamgown", text = { "The tale-women of old knew how to build anticipation.", }, }, - [31] = { + [32] = { id = "FourUniqueBodyInt12", name = "Vis Mortis", text = { @@ -245,7 +254,7 @@ return { "Zealots in mortis enslaved", }, }, - [32] = { + [33] = { id = "FourUniqueBodyInt13", name = "Cloak of Defiance", text = { @@ -259,7 +268,7 @@ return { "Of the Defiant Heart.", }, }, - [33] = { + [34] = { id = "FourUniqueBodyInt14", name = "Silks of Veneration", text = { @@ -269,7 +278,7 @@ return { "but not the way the Templar believed.", }, }, - [34] = { + [35] = { id = "FourUniqueBodyStrDex1", name = "Coat of Red", text = { @@ -278,7 +287,7 @@ return { "there was a price to pay...", }, }, - [35] = { + [36] = { id = "FourUniqueBodyStrDex2", name = "The Barrow Dweller", text = { @@ -287,14 +296,14 @@ return { "forever cold.", }, }, - [36] = { + [37] = { id = "FourUniqueBodyStrDex3", name = "Irongrasp", text = { "A power unknown aids your own.", }, }, - [37] = { + [38] = { id = "FourUniqueBodyStrDex4", name = "Pariah's Embrace", text = { @@ -302,7 +311,7 @@ return { "their companionship all the more.", }, }, - [38] = { + [39] = { id = "FourUniqueBodyStrDex5", name = "Belly of the Beast", text = { @@ -310,7 +319,7 @@ return { "Than the Belly of the Beast", }, }, - [39] = { + [40] = { id = "FourUniqueBodyStrDex6", name = "Doryani's Prototype", text = { @@ -319,7 +328,7 @@ return { "- Dominus, High Templar", }, }, - [40] = { + [41] = { id = "FourUniqueBodyStrDex7", name = "Widow's Reign", text = { @@ -328,7 +337,7 @@ return { "the sky was clear, but it was raining.", }, }, - [41] = { + [42] = { id = "FourUniqueBodyStrDex8", name = "Lightning Coil", text = { @@ -337,7 +346,7 @@ return { "but it was Valako that tamed the broken sky.", }, }, - [42] = { + [43] = { id = "FourUniqueBodyStrDex9", name = "The Fallen Formation", text = { @@ -346,7 +355,7 @@ return { "- Artair, last survivor of the Ogham rebellion", }, }, - [43] = { + [44] = { id = "FourUniqueBodyStrDex11", name = "The Coming Calamity", text = { @@ -356,14 +365,23 @@ return { "By your hand they dance and bend, wield them and brook no end.", }, }, - [44] = { + [45] = { + id = "FourUniqueBodyStrDex14", + name = "The Sunken Vessel", + text = { + "\"What are you lot looking at? We're", + "under fire! Get to your stations!\"", + "- Captain Sventura, the Unlucky", + }, + }, + [46] = { id = "FourUniqueBodyStrInt1_", name = "Enfolding Dawn", text = { "The gleam of the night and howling teeth alike could not abate the rising of the sun.", }, }, - [45] = { + [47] = { id = "FourUniqueBodyStrInt3", name = "Icetomb", text = { @@ -372,14 +390,17 @@ return { "the world will perish in ice.", }, }, - [46] = { + [48] = { id = "FourUniqueBodyStrInt4", - name = "Husk of Dreams", + name = "Reverie", text = { - "Yes... but what if?", + "\"Do not despair! Give yourself to the woods!", + "Become empty, and the Goddess will find you.", + "From within her roots... you shall be restored.\"", + "- Cirel of Caer Tarth", }, }, - [47] = { + [49] = { id = "FourUniqueBodyStrInt5", name = "Voll's Protector", text = { @@ -387,7 +408,7 @@ return { "Voll proved disastrous in times of peace.", }, }, - [48] = { + [50] = { id = "FourUniqueBodyStrInt6", name = "Soul Mantle", text = { @@ -395,7 +416,7 @@ return { "long after they have been made", }, }, - [49] = { + [51] = { id = "FourUniqueBodyStrInt7", name = "The Mutable Star", text = { @@ -403,7 +424,7 @@ return { "the Twilight Order endured in secret.", }, }, - [50] = { + [52] = { id = "FourUniqueBodyStrInt8", name = "Waveshaper", text = { @@ -413,7 +434,7 @@ return { "- Rakiata, Chieftain of the Tasalio Tribe", }, }, - [51] = { + [53] = { id = "FourUniqueBodyStrInt9", name = "Couture of Crimson", text = { @@ -421,7 +442,15 @@ return { "peasants... sometimes, it's truer than any suspect.", }, }, - [52] = { + [54] = { + id = "FourUniqueBodyStrInt11", + name = "Geofri's Sanctuary", + text = { + "Faith does not make us invulnerable.", + "It makes us immortal.", + }, + }, + [55] = { id = "FourUniqueBodyStrInt12", name = "Sacrosanctum", text = { @@ -429,7 +458,32 @@ return { "instead to put their faith in each other.", }, }, - [53] = { + [56] = { + id = "FourUniqueBodyStrInt14", + name = "Loreweave", + text = { + "The collector need not even speak. Each ring", + "regaled them with tales of his conquest.", + }, + }, + [57] = { + id = "FourUniqueBodyStrInt15", + name = "The Unleashed", + text = { + "His latent potential unleashed itself, a beast", + "bursting from its shackles. Each strike of Farrow's", + "hammer rang out a song for the First Ones.", + }, + }, + [58] = { + id = "FourUniqueBodyStrInt16", + name = "Decree of Loyalty", + text = { + "\"Hold firm. Let no word but the Mothers' turn your head.", + "Through your unfaltering fealty, you achieve perfection.\"", + }, + }, + [59] = { id = "FourUniqueBodyDexInt1", name = "Apron of Emiran", text = { @@ -437,7 +491,7 @@ return { "- the Master Torturer's last words", }, }, - [54] = { + [60] = { id = "FourUniqueBodyDexInt2", name = "Gloomform", text = { @@ -445,7 +499,7 @@ return { "that thieves, murderers, and outcasts, sought refuge.", }, }, - [55] = { + [61] = { id = "FourUniqueBodyDexInt3", name = "Sierran Inheritance", text = { @@ -453,21 +507,21 @@ return { "live their entire lives in snow and ice.", }, }, - [56] = { + [62] = { id = "FourUniqueBodyDexInt4", name = "The Dancing Mirage", text = { "Be not where death falls.", }, }, - [57] = { + [63] = { id = "FourUniqueBodyDexInt5", name = "Redflare Conduit", text = { "In all things, control.", }, }, - [58] = { + [64] = { id = "FourUniqueBodyDexInt6", name = "Zerphi's Serape", text = { @@ -475,7 +529,7 @@ return { "The cure is simple.", }, }, - [59] = { + [65] = { id = "FourUniqueBodyDexInt13", name = "Cospri's Will", text = { @@ -484,13 +538,22 @@ return { "If they only knew the power I possess.", }, }, - [60] = { + [66] = { + id = "FourUniqueBodyDexInt14", + name = "Forgotten Warden", + text = { + "A gift from the Draíocht, lost in Darkness.", + "The bronze hums. The cloth sighs.", + "Living pieces of her, yearning to exist.", + }, + }, + [67] = { id = "FourUniqueBodyStrDexInt1", name = "Tabula Rasa", text = { }, }, - [61] = { + [68] = { id = "FourUniqueBodyStrDexInt2", name = "Atziri's Splendour", text = { @@ -499,21 +562,21 @@ return { "- Atziri, Queen of the Vaal", }, }, - [62] = { + [69] = { id = "FourUniqueHelmetStr1a", name = "Horns of Bynden", text = { "The younger brother waded into battle, shrugging off blows.", }, }, - [63] = { + [70] = { id = "FourUniqueHelmetStr1b", name = "Wings of Caelyn", text = { "The older brother retained calm in the midst of fury.", }, }, - [64] = { + [71] = { id = "FourUniqueHelmetStr2", name = "Ezomyte Peak", text = { @@ -521,7 +584,7 @@ return { "of glory, an eternity of death.", }, }, - [65] = { + [72] = { id = "FourUniqueHelmetStr3", name = "Black Sun Crest", text = { @@ -529,7 +592,7 @@ return { "are the ones who dwell in total darkness.", }, }, - [66] = { + [73] = { id = "FourUniqueHelmetStr4", name = "Thrillsteel", text = { @@ -537,14 +600,14 @@ return { "moments of blood and battle, we truly live.", }, }, - [67] = { + [74] = { id = "FourUniqueHelmetStr5", name = "Deidbell", text = { "May you never hear it toll.", }, }, - [68] = { + [75] = { id = "FourUniqueHelmetStr6", name = "Corona of the Red Sun", text = { @@ -552,35 +615,35 @@ return { "but all who witnessed shared in exultation.", }, }, - [69] = { + [76] = { id = "FourUniqueHelmetStr8", name = "Blood Price", text = { "An eye for an eye makes the whole world dead.", }, }, - [70] = { + [77] = { id = "FourUniqueHelmetDex1", name = "Innsmouth", text = { "Beyond madness lies inspiration.", }, }, - [71] = { + [78] = { id = "FourUniqueHelmetDex2", name = "Goldrim", text = { "No metal slips as easily through the fingers as gold.", }, }, - [72] = { + [79] = { id = "FourUniqueHelmetDex3", name = "Radiant Grief", text = { "No man burns alone.", }, }, - [73] = { + [80] = { id = "FourUniqueHelmetDex5", name = "Elevore", text = { @@ -588,7 +651,7 @@ return { "by a ravenous hunger for all things mystical.", }, }, - [74] = { + [81] = { id = "FourUniqueHelmetDex6", name = "Constricting Command", text = { @@ -598,7 +661,7 @@ return { "- Viper Napuatzi, instructing Royal Commander Nezahul", }, }, - [75] = { + [82] = { id = "FourUniqueHelmetDex7", name = "The Black Insignia", text = { @@ -606,7 +669,7 @@ return { "pushing their luck right to the end.", }, }, - [76] = { + [83] = { id = "FourUniqueHelmetDex8", name = "Starkonja's Head", text = { @@ -614,7 +677,7 @@ return { "but merely a long sleep made eternal.", }, }, - [77] = { + [84] = { id = "FourUniqueHelmetDex9", name = "Heatshiver", text = { @@ -623,14 +686,14 @@ return { "You will be repaid.", }, }, - [78] = { + [85] = { id = "FourUniqueHelmetDex10", name = "Myris Uxor", text = { "The end always comes sooner than we think.", }, }, - [79] = { + [86] = { id = "FourUniqueHelmetDex11", name = "Alpha's Howl", text = { @@ -639,7 +702,7 @@ return { "With the blood of the weak", }, }, - [80] = { + [87] = { id = "FourUniqueHelmetInt1", name = "Crown of Thorns", text = { @@ -647,14 +710,14 @@ return { "The spikes point out and in, you know.", }, }, - [81] = { + [88] = { id = "FourUniqueHelmetInt2", name = "The Devouring Diadem", text = { "The spirit hungers for the flesh.", }, }, - [82] = { + [89] = { id = "FourUniqueHelmetInt3", name = "Visage of Ayah", text = { @@ -662,7 +725,7 @@ return { "They command a power all their own.", }, }, - [83] = { + [90] = { id = "FourUniqueHelmetInt4", name = "Forbidden Gaze", text = { @@ -670,7 +733,7 @@ return { "lest your passions stir.", }, }, - [84] = { + [91] = { id = "FourUniqueHelmetInt5", name = "Mask of the Stitched Demon", text = { @@ -679,7 +742,7 @@ return { "It is our duty to return to the gods what was once theirs.", }, }, - [85] = { + [92] = { id = "FourUniqueHelmetInt6", name = "Atziri's Disdain", text = { @@ -687,7 +750,7 @@ return { "their very lives. She looked on with impatience.", }, }, - [86] = { + [93] = { id = "FourUniqueHelmetInt7", name = "Crown of Eyes", text = { @@ -697,7 +760,7 @@ return { "your mind is destroyed.", }, }, - [87] = { + [94] = { id = "FourUniqueHelmetInt8", name = "Scold's Bridle", text = { @@ -706,7 +769,7 @@ return { "- Shavronne of Umbra", }, }, - [88] = { + [95] = { id = "FourUniqueHelmetInt11", name = "Indigon", text = { @@ -714,14 +777,14 @@ return { "the mind's limits end.", }, }, - [89] = { + [96] = { id = "FourUniqueHelmetStrDex1", name = "Greymake", text = { "In the end, even heroes fade away.", }, }, - [90] = { + [97] = { id = "FourUniqueHelmetStrDex2", name = "Erian's Cobble", text = { @@ -729,14 +792,14 @@ return { "equipment gets out of hand.", }, }, - [91] = { + [98] = { id = "FourUniqueHelmetStrDex3", name = "Ironride", text = { "Let the rider's aim be true.", }, }, - [92] = { + [99] = { id = "FourUniqueHelmetStrDex4", name = "The Smiling Knight", text = { @@ -744,14 +807,14 @@ return { "their own personal mockeries, most cruel.", }, }, - [93] = { + [100] = { id = "FourUniqueHelmetStrDex5", name = "The Vile Knight", text = { "Familiarity breeds contempt.", }, }, - [94] = { + [101] = { id = "FourUniqueHelmetStrDex7", name = "The Bringer of Rain", text = { @@ -759,21 +822,29 @@ return { "\"Sacred ground, watered with tears of blood!\"", }, }, - [95] = { + [102] = { + id = "FourUniqueHelmetStrDex9_", + name = "Decree of Acuity", + text = { + "\"Focus. Hone your mind. Your lessers rely on the tangible.", + "Shed your senses, and raze them from this physical realm.\"", + }, + }, + [103] = { id = "FourUniqueHelmetStrInt1", name = "Crown of the Victor", text = { "An endless river of bodies lie in the wake of ambition.", }, }, - [96] = { + [104] = { id = "FourUniqueHelmetStrInt2", name = "Bronzebeard", text = { "Heavy is the head.", }, }, - [97] = { + [105] = { id = "FourUniqueHelmetStrInt3", name = "Crown of the Pale King", text = { @@ -783,7 +854,7 @@ return { "feed on your pain.", }, }, - [98] = { + [106] = { id = "FourUniqueHelmetStrInt4", name = "Veil of the Night", text = { @@ -793,28 +864,36 @@ return { "And bloom steel flowers of victory.", }, }, - [99] = { + [107] = { id = "FourUniqueHelmetStrInt5", name = "Cornathaum", text = { "Pain brings clarity.", }, }, - [100] = { + [108] = { id = "FourUniqueHelmetStrInt6", name = "The Deepest Tower", text = { "Death crawls in darkness, closer than we think.", }, }, - [101] = { + [109] = { + id = "FourUniqueHelmetStrInt9", + name = "Vestige of Darkness", + text = { + "\"Your covetous hands bring the Unlight", + "ever closer to consuming your realm.\"", + }, + }, + [110] = { id = "FourUniqueHelmetDexInt1", name = "The Hollow Mask", text = { - "The roots take hold within...", + "The roots burrow deeper, unveiling the wood's bounty...", }, }, - [102] = { + [111] = { id = "FourUniqueHelmetDexInt2", name = "Mask of the Sanguimancer", text = { @@ -822,14 +901,14 @@ return { "remains lost... but his power does not.", }, }, - [103] = { + [112] = { id = "FourUniqueHelmetDexInt3", name = "Leer Cast", text = { "For none of us are as cruel as all of us.", }, }, - [104] = { + [113] = { id = "FourUniqueHelmetDexInt4", name = "Atsak's Sight", text = { @@ -837,7 +916,7 @@ return { "only in the depths of the harshest sandstorms.", }, }, - [105] = { + [114] = { id = "FourUniqueHelmetDexInt5", name = "The Vertex", text = { @@ -845,7 +924,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [106] = { + [115] = { id = "FourUniqueHelmetDexInt6", name = "The Three Dragons", text = { @@ -856,7 +935,7 @@ return { "- From 'The Three Dragons' by Victario of Sarn", }, }, - [107] = { + [116] = { id = "FourUniqueHelmetDexInt8", name = "Mind of the Council", text = { @@ -868,7 +947,16 @@ return { "They know your mind, because they remember", }, }, - [108] = { + [117] = { + id = "FourUniqueGlovesStr1", + name = "Facebreaker", + text = { + "\"You think us savages?\" mused the Red Wolf, as", + "he pulled teeth from the Eternal's skull. \"I will", + "show your kind the way of tooth and claw.\"", + }, + }, + [118] = { id = "FourUniqueGlovesStr2", name = "Treefingers", text = { @@ -876,7 +964,7 @@ return { "are not flesh and blood.", }, }, - [109] = { + [119] = { id = "FourUniqueGlovesStr3", name = "Lochtonial Caress", text = { @@ -884,14 +972,14 @@ return { "Surrender to me, and I will grant you everything.", }, }, - [110] = { + [120] = { id = "FourUniqueGlovesStr4", name = "Dreadfist", text = { "What is worse, the sting of the past, the pain of the present, or the fear of the future?", }, }, - [111] = { + [121] = { id = "FourUniqueGlovesStr5", name = "Atziri's Acuity", text = { @@ -900,7 +988,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [112] = { + [122] = { id = "FourUniqueGlovesStr7", name = "Empire's Grasp", text = { @@ -909,14 +997,14 @@ return { "- Emperor Chitus", }, }, - [113] = { + [123] = { id = "FourUniqueGlovesDex1_", name = "Northpaw", text = { "Fight with the ferocity of the First Ones.", }, }, - [114] = { + [124] = { id = "FourUniqueGlovesDex2", name = "Grip of Winter", text = { @@ -924,14 +1012,14 @@ return { "ash began to fall, and a chill set in...", }, }, - [115] = { + [125] = { id = "FourUniqueGlovesDex4", name = "Idle Hands", text = { "The devil finds work for idle hands.", }, }, - [116] = { + [126] = { id = "FourUniqueGlovesDex5", name = "Snakebite", text = { @@ -941,7 +1029,7 @@ return { "And the skill of compulsion.", }, }, - [117] = { + [127] = { id = "FourUniqueGlovesDex6", name = "Maligaro's Virtuosity", text = { @@ -949,7 +1037,14 @@ return { "with great speed and terrible consequences.", }, }, - [118] = { + [128] = { + id = "FourUniqueGlovesDex9", + name = "Horror's Flight", + text = { + "If fear doesn't kill you, I will.", + }, + }, + [129] = { id = "FourUniqueGlovesInt1", name = "Painter's Servant", text = { @@ -959,14 +1054,14 @@ return { "just to capture thee.", }, }, - [119] = { + [130] = { id = "FourUniqueGlovesInt2", name = "Candlemaker", text = { "You can be the wick or the wax. Either way, your light goes out and mine goes on.", }, }, - [120] = { + [131] = { id = "FourUniqueGlovesInt3", name = "Doedre's Tenure", text = { @@ -974,14 +1069,14 @@ return { "she surpassed her master in pure malevolence.", }, }, - [121] = { + [132] = { id = "FourUniqueGlovesInt4", name = "Kitoko's Current", text = { "Reality is a puzzle. Ingenuity is power.", }, }, - [122] = { + [133] = { id = "FourUniqueGlovesInt5", name = "Demon Stitcher", text = { @@ -991,42 +1086,42 @@ return { "The first Vaal.", }, }, - [123] = { + [134] = { id = "FourUniqueGlovesInt6", name = "Nightscale", text = { "Diamora sings not for hunger, but for longing.", }, }, - [124] = { + [135] = { id = "FourUniqueGlovesInt7", name = "Leopold's Applause", text = { "\"Keep smiling. The deepest cut comes not from insults, but from false praise.\"", }, }, - [125] = { + [136] = { id = "FourUniqueGlovesStrDex1", name = "Jarngreipr", text = { "The whispers of the old gods hum through the iron. They demand a hero.", }, }, - [126] = { + [137] = { id = "FourUniqueGlovesStrDex2", name = "Aurseize", text = { "Wealth is not to be borne lightly.", }, }, - [127] = { + [138] = { id = "FourUniqueGlovesStrDex3", name = "Deathblow", text = { "Anticipation is a gift.", }, }, - [128] = { + [139] = { id = "FourUniqueGlovesStrDex4", name = "Valako's Vice", text = { @@ -1034,14 +1129,14 @@ return { "Valako rode the clouds of ash into the thundering sky.", }, }, - [129] = { + [140] = { id = "FourUniqueGlovesStrDex5", name = "Aerisvane's Wings", text = { "The strongest souls are forged through struggle and defeat.", }, }, - [130] = { + [141] = { id = "FourUniqueGlovesStrInt1", name = "Gravebind", text = { @@ -1050,21 +1145,21 @@ return { "You'll still know the truth.", }, }, - [131] = { + [142] = { id = "FourUniqueGlovesStrInt2", name = "Shackles of the Wretched", text = { "Captivity breeds creativity.", }, }, - [132] = { + [143] = { id = "FourUniqueGlovesStrInt3", name = "Blueflame Bracers", text = { "The secret was lost with its maker.", }, }, - [133] = { + [144] = { id = "FourUniqueGlovesStrInt4", name = "The Prisoner's Manacles", text = { @@ -1072,14 +1167,14 @@ return { "His greatest success took three entire legions to capture.", }, }, - [134] = { + [145] = { id = "FourUniqueGlovesDexInt1", name = "Plaguefinger", text = { "Ulcers, scabs, and pocks, the third army makes its claim.", }, }, - [135] = { + [146] = { id = "FourUniqueGlovesDexInt2", name = "Killjoy", text = { @@ -1087,7 +1182,7 @@ return { "- Jeffry, Torturer's Apprentice", }, }, - [136] = { + [147] = { id = "FourUniqueGlovesDexInt5", name = "Essentia Sanguis", text = { @@ -1095,7 +1190,7 @@ return { "giving birth to four lightning children of hate.", }, }, - [137] = { + [148] = { id = "FourUniqueGlovesDexInt6", name = "Thunderfist", text = { @@ -1104,35 +1199,35 @@ return { "Into the hearts of Man", }, }, - [138] = { + [149] = { id = "FourUniqueBootsStr1", name = "Legionstride", text = { "A wall of steel and muscle.", }, }, - [139] = { + [150] = { id = "FourUniqueBootsStr2", name = "Corpsewade", text = { "Natural decay can be twisted to dark ends.", }, }, - [140] = { + [151] = { id = "FourUniqueBootsStr3", name = "The Infinite Pursuit", text = { "We move to be closer to her, but the distance yet grows.", }, }, - [141] = { + [152] = { id = "FourUniqueBootsStr4", name = "Trampletoe", text = { "The truly mighty are never outnumbered.", }, }, - [142] = { + [153] = { id = "FourUniqueBootsStr5", name = "Birth of Fury", text = { @@ -1140,14 +1235,14 @@ return { "so too shall your enemies fear you.", }, }, - [143] = { + [154] = { id = "FourUniqueBootsDex2", name = "Briarpatch", text = { "The druids walk the Grelwood without fear.", }, }, - [144] = { + [155] = { id = "FourUniqueBootsDex3", name = "Gamblesprint", text = { @@ -1155,7 +1250,7 @@ return { "unknown and snarled to the very last.", }, }, - [145] = { + [156] = { id = "FourUniqueBootsDex4", name = "Thunderstep", text = { @@ -1163,7 +1258,7 @@ return { "the world hearkens.", }, }, - [146] = { + [157] = { id = "FourUniqueBootsDex5", name = "Bushwhack", text = { @@ -1171,7 +1266,7 @@ return { "Erian learned to hunt to survive.", }, }, - [147] = { + [158] = { id = "FourUniqueBootsDex9", name = "Atziri's Step", text = { @@ -1180,21 +1275,21 @@ return { "- Atziri, Queen of the Vaal", }, }, - [148] = { + [159] = { id = "FourUniqueBootsInt1", name = "Luminous Pace", text = { "Blessed are those who tend the Grove.", }, }, - [149] = { + [160] = { id = "FourUniqueBootsInt2", name = "Wanderlust", text = { "All the world is my home.", }, }, - [150] = { + [161] = { id = "FourUniqueBootsInt3", name = "Bones of Ullr", text = { @@ -1202,14 +1297,14 @@ return { "the living fear to tread.", }, }, - [151] = { + [162] = { id = "FourUniqueBootsInt4", name = "Wondertrap", text = { "Wonders abound at death's door.", }, }, - [152] = { + [163] = { id = "FourUniqueBootsInt5", name = "Windscream", text = { @@ -1217,14 +1312,14 @@ return { "The haunting screams, a maddening hell", }, }, - [153] = { + [164] = { id = "FourUniqueBootsStrDex1", name = "The Knight-errant", text = { "Some search forever for their path.", }, }, - [154] = { + [165] = { id = "FourUniqueBootsStrDex2", name = "Darkray Vectors", text = { @@ -1234,14 +1329,14 @@ return { "- Azmerian legend", }, }, - [155] = { + [166] = { id = "FourUniqueBootsStrDex3", name = "Obern's Bastion", text = { "The storm cannot sway those of sure footing.", }, }, - [156] = { + [167] = { id = "FourUniqueBootsStrDex4", name = "Shankgonne", text = { @@ -1250,7 +1345,7 @@ return { "meself, if it weren't for that damn leg of his... crafty shite...\"", }, }, - [157] = { + [168] = { id = "FourUniqueBootsStrInt2", name = "Wake of Destruction", text = { @@ -1258,7 +1353,15 @@ return { "Flee before the walking storm.", }, }, - [158] = { + [169] = { + id = "FourUniqueBootsStrInt9", + name = "Decree of Flight", + text = { + "\"Soar. Be swift. Let none trespass here, from", + "above or below, lest your purpose be forfeit.\"", + }, + }, + [170] = { id = "FourUniqueBootsDexInt2", name = "Ghostmarch", text = { @@ -1266,7 +1369,7 @@ return { "On their hopeless, last endeavour.", }, }, - [159] = { + [171] = { id = "FourUniqueBootsDexInt3", name = "Powertread", text = { @@ -1274,7 +1377,7 @@ return { "was as elegant as it was deadly.", }, }, - [160] = { + [172] = { id = "FourUniqueShieldStr1", name = "Dionadair", text = { @@ -1282,7 +1385,7 @@ return { "the Ezomytes was to catch them unaware.", }, }, - [161] = { + [173] = { id = "FourUniqueShieldStr2", name = "Wulfsbane", text = { @@ -1290,14 +1393,14 @@ return { "legacy of cunning and power.", }, }, - [162] = { + [174] = { id = "FourUniqueShieldStr3", name = "Doomgate", text = { "Welcome to Wraeclast.", }, }, - [163] = { + [175] = { id = "FourUniqueShieldStr4", name = "Window to Paradise", text = { @@ -1305,28 +1408,28 @@ return { "the Saviour will build Utopia.\"", }, }, - [164] = { + [176] = { id = "FourUniqueShieldStr5", name = "The Wailing Wall", text = { "Some stories are never told.", }, }, - [165] = { + [177] = { id = "FourUniqueShieldStr6", name = "Lycosidae", text = { "A true predator does not chase; It waits.", }, }, - [166] = { + [178] = { id = "FourUniqueShieldStr7", name = "Redblade Banner", text = { "Blood shed is blood shared.", }, }, - [167] = { + [179] = { id = "FourUniqueShieldStr8", name = "The Surrender", text = { @@ -1335,7 +1438,7 @@ return { "and so we give up our flesh.", }, }, - [168] = { + [180] = { id = "FourUniqueShieldStr13", name = "Chernobog's Pillar", text = { @@ -1345,7 +1448,18 @@ return { "There is no flame", }, }, - [169] = { + [181] = { + id = "FourUniqueShieldStr14", + name = "Nightfall", + text = { + "\"Upon plains of endless chill,", + "They Who Never Tire... dominate.", + "They Who Never Surrender... terrify.", + "And They Who Lay Beneath... wait for Nightfall.\"", + "- Tul, She That Silences", + }, + }, + [182] = { id = "FourUniqueShieldStrDex1", name = "Arvil's Wheel", text = { @@ -1354,42 +1468,51 @@ return { "at body and mind.", }, }, - [170] = { + [183] = { id = "FourUniqueShieldStrDex2", name = "Merit of Service", text = { "Lead by example, and you shall never be alone.", }, }, - [171] = { + [184] = { id = "FourUniqueShieldStrDex4", name = "Feathered Fortress", text = { "Ride the western wind, and take flight.", }, }, - [172] = { + [185] = { + id = "FourUniqueShieldStrDex12", + name = "Eyes of the Runefather", + text = { + "From aeons past, Dannig felt the Runefather's", + "gaze, challenging him. There is no honour in ease.", + "True greatness is torn from the jaws of defeat.", + }, + }, + [186] = { id = "FourUniqueShieldStrInt1", name = "Alkem Eira", text = { "May your resolve never waver.", }, }, - [173] = { + [187] = { id = "FourUniqueShieldStrInt2", name = "Oaksworn", text = { "The druids swore to protect the Grelwood with their very lives.", }, }, - [174] = { + [188] = { id = "FourUniqueShieldStrInt3", name = "Saffell's Frame", text = { "A swift mind solves problems before they occur.", }, }, - [175] = { + [189] = { id = "FourUniqueShieldStrInt4", name = "Crest of Ardura", text = { @@ -1397,14 +1520,14 @@ return { "the Ardura were the first to answer.", }, }, - [176] = { + [190] = { id = "FourUniqueShieldStrInt5", name = "Prism Guardian", text = { "When blood is paid, the weak think twice.", }, }, - [177] = { + [191] = { id = "FourUniqueShieldStrInt6", name = "Rise of the Phoenix", text = { @@ -1412,7 +1535,7 @@ return { "for I am the phoenix, forever radiant in glory.", }, }, - [178] = { + [192] = { id = "FourUniqueShieldDex1", name = "Dunkelhalt", text = { @@ -1422,7 +1545,7 @@ return { "Nay, villain, a man never bleeds alone.\"", }, }, - [179] = { + [193] = { id = "FourUniqueShieldDex2", name = "Nocturne", text = { @@ -1430,7 +1553,7 @@ return { "but neither knows the other exists...", }, }, - [180] = { + [194] = { id = "FourUniqueShieldDex3", name = "Rondel de Ezo", text = { @@ -1438,7 +1561,7 @@ return { "will lose his will. Then, you've won.\"", }, }, - [181] = { + [195] = { id = "FourUniqueShieldDex4", name = "Bloodbarrier", text = { @@ -1446,14 +1569,14 @@ return { "where countless voices scream...", }, }, - [182] = { + [196] = { id = "FourUniqueShieldDex5", name = "Kaltenhalt", text = { "Cold, miserable and alone... but alive.", }, }, - [183] = { + [197] = { id = "FourUniqueShieldDex6", name = "Silverthorne", text = { @@ -1461,14 +1584,14 @@ return { "feign weakness to open up a lethal blow.", }, }, - [184] = { + [198] = { id = "FourUniqueShieldDex11_", name = "Calgyra's Arc", text = { "\"There is nowhere my vengeance cannot find you.\"", }, }, - [185] = { + [199] = { id = "FourUniqueShieldDex12", name = "Sunsplinter", text = { @@ -1477,14 +1600,14 @@ return { "- Wranga, tale-woman of the Wahida akhara", }, }, - [186] = { + [200] = { id = "FourUniqueFocus1", name = "Deathrattle", text = { "The cry of death whispers in the wind.", }, }, - [187] = { + [201] = { id = "FourUniqueFocus2", name = "Threaded Light", text = { @@ -1493,7 +1616,7 @@ return { "The reason, remembered.", }, }, - [188] = { + [202] = { id = "FourUniqueFocus3", name = "Effigy of Cruelty", text = { @@ -1501,21 +1624,21 @@ return { "still exist somewhere in the dark...", }, }, - [189] = { + [203] = { id = "FourUniqueFocus4", name = "Carrion Call", text = { "Obedience stretches beyond the grave.", }, }, - [190] = { + [204] = { id = "FourUniqueFocus5", name = "Serpent's Lesson", text = { "Sinuous, entwined... inextricable.", }, }, - [191] = { + [205] = { id = "FourUniqueFocus6", name = "The Eternal Spark", text = { @@ -1523,14 +1646,14 @@ return { "her motionless dance the pulse of bliss", }, }, - [192] = { + [206] = { id = "FourUniqueFocus7", name = "Apep's Supremacy", text = { "Give him your body, and your burdens will follow.", }, }, - [193] = { + [207] = { id = "FourUniqueFocus8", name = "Rathpith Globe", text = { @@ -1538,7 +1661,7 @@ return { "and left a mountain of twitching dead.", }, }, - [194] = { + [208] = { id = "FourUniqueQuiver1", name = "Asphyxia's Wrath", text = { @@ -1548,7 +1671,7 @@ return { "Upon the frozen wasteland.", }, }, - [195] = { + [209] = { id = "FourUniqueQuiver2_", name = "Blackgleam", text = { @@ -1556,14 +1679,14 @@ return { "Hissing arrows from the dark.", }, }, - [196] = { + [210] = { id = "FourUniqueQuiver3", name = "The Lethal Draw", text = { "Life and death ooze from the same sap.", }, }, - [197] = { + [211] = { id = "FourUniqueQuiver5", name = "Rearguard", text = { @@ -1571,7 +1694,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [198] = { + [212] = { id = "FourUniqueQuiver6", name = "Murkshaft", text = { @@ -1580,7 +1703,7 @@ return { "- Selassie of the Black Fen", }, }, - [199] = { + [213] = { id = "FourUniqueQuiver8", name = "Cadiro's Gambit", text = { @@ -1589,7 +1712,7 @@ return { "- Cadiro Perandus", }, }, - [200] = { + [214] = { id = "FourUniqueQuiver12", name = "Drillneck", text = { @@ -1597,7 +1720,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [201] = { + [215] = { id = "FourUniqueAmulet1", name = "Igniferis", text = { @@ -1605,7 +1728,7 @@ return { "A light unbroken, endlessly reborn.", }, }, - [202] = { + [216] = { id = "FourUniqueAmulet2", name = "Idol of Uldurn", text = { @@ -1613,7 +1736,7 @@ return { "in Oriath, so long as it remained private.", }, }, - [203] = { + [217] = { id = "FourUniqueAmulet3", name = "The Everlasting Gaze", text = { @@ -1621,21 +1744,21 @@ return { "they believed Lunaris had not abandoned them.", }, }, - [204] = { + [218] = { id = "FourUniqueAmulet4", name = "Ungil's Harmony", text = { "Gentle anger, raging calm.", }, }, - [205] = { + [219] = { id = "FourUniqueAmulet5", name = "Revered Resin", text = { "The sacred sap flows slowly, but surely.", }, }, - [206] = { + [220] = { id = "FourUniqueAmulet6", name = "Carnage Heart", text = { @@ -1643,14 +1766,14 @@ return { "its thirst has only begun.", }, }, - [207] = { + [221] = { id = "FourUniqueAmulet7", name = "Surefooted Sigil", text = { "Natural grace is born, not earned.", }, }, - [208] = { + [222] = { id = "FourUniqueAmulet8", name = "Defiance of Destiny", text = { @@ -1658,7 +1781,7 @@ return { "but lasts a lifetime... and beyond.", }, }, - [209] = { + [223] = { id = "FourUniqueAmulet9", name = "Stone of Lazhwar", text = { @@ -1666,14 +1789,14 @@ return { "I am not.", }, }, - [210] = { + [224] = { id = "FourUniqueAmulet10_", name = "Ligurium Talisman", text = { "Healing the soul requires sacrifice.", }, }, - [211] = { + [225] = { id = "FourUniqueAmulet12", name = "Rondel of Fragility", text = { @@ -1681,21 +1804,21 @@ return { "for they care not for their own survival.", }, }, - [212] = { + [226] = { id = "FourUniqueAmulet13", name = "The Anvil", text = { "Forge your Perseverance on the Anvil of Faith.", }, }, - [213] = { + [227] = { id = "FourUniqueAmulet14", name = "Yoke of Suffering", text = { "Let the unrepentant be dragged ever downwards by the weight of their sins.", }, }, - [214] = { + [228] = { id = "FourUniqueAmulet15_", name = "Astramentis", text = { @@ -1705,7 +1828,7 @@ return { "And into darkness send it.", }, }, - [215] = { + [229] = { id = "FourUniqueAmulet16", name = "Fixation of Yix", text = { @@ -1713,7 +1836,7 @@ return { "that he wanted to hold his family close...", }, }, - [216] = { + [230] = { id = "FourUniqueAmulet17", name = "Beacon of Azis", text = { @@ -1722,7 +1845,7 @@ return { "It was Solerai herself.", }, }, - [217] = { + [231] = { id = "FourUniqueAmulet18", name = "Fireflower", text = { @@ -1730,14 +1853,14 @@ return { "Fire, they learn, springs from agony.", }, }, - [218] = { + [232] = { id = "FourUniqueAmulet19_", name = "Eye of Chayula", text = { "Never blinking, always watching.", }, }, - [219] = { + [233] = { id = "FourUniqueAmulet20", name = "Serpent's Egg", text = { @@ -1745,21 +1868,38 @@ return { "the Sekhemas took a single hostage as punishment.", }, }, - [220] = { + [234] = { id = "FourUniqueAmulet21", name = "Hinekora's Sight", text = { "Remember the past, anticipate the future.", }, }, - [221] = { + [235] = { + id = "FourUniqueAmulet22", + name = "Eventide Petals", + text = { + "Dannig sculpted the Verisium to evoke the", + "night-blooming lotus of Middengard's stygian peaks,", + "which grow only where ash meets the snow and stars.", + }, + }, + [236] = { + id = "FourUniqueAmulet23", + name = "Immaculate Adherence", + text = { + "To stray is to condemn this world to sin.", + }, + }, + [237] = { id = "FourUniqueRing1", name = "Blackheart", text = { - "Fear is highly infectious.", + "If evil must always exist, so be it.", + "Embrace it. Become its master.", }, }, - [222] = { + [238] = { id = "FourUniqueRing2a", name = "Icefang Orbit", text = { @@ -1767,7 +1907,7 @@ return { "Trarthan ice snakes must take great care with the volatile substance.", }, }, - [223] = { + [239] = { id = "FourUniqueRing2b", name = "Venopuncture", text = { @@ -1775,14 +1915,14 @@ return { "but few have the resolve to attempt it.", }, }, - [224] = { + [240] = { id = "FourUniqueRing3", name = "Prized Pain", text = { "Agony brings clarity to those of pure mind.", }, }, - [225] = { + [241] = { id = "FourUniqueRing4", name = "Glowswarm", text = { @@ -1791,28 +1931,28 @@ return { "blissfully unaware of their flight from the sirens.", }, }, - [226] = { + [242] = { id = "FourUniqueRing5", name = "Doedre's Damning", text = { "Where her mouth should have been there was only a whirling, black void.", }, }, - [227] = { + [243] = { id = "FourUniqueRing6", name = "Seed of Cataclysm", text = { "The dawn of a new era is set into motion", }, }, - [228] = { + [244] = { id = "FourUniqueRing7", name = "Cracklecreep", text = { "Fear the fire that spreads like a plague.", }, }, - [229] = { + [245] = { id = "FourUniqueRing8", name = "Blistering Bond", text = { @@ -1820,7 +1960,7 @@ return { "Excruciating pain is simply a byproduct of certain... necessary methods.\"", }, }, - [230] = { + [246] = { id = "FourUniqueRing10", name = "Polcirkeln", text = { @@ -1830,7 +1970,7 @@ return { "Sing Meginord's song!", }, }, - [231] = { + [247] = { id = "FourUniqueRing11", name = "Dream Fragments", text = { @@ -1838,7 +1978,7 @@ return { "And awoke its Master.", }, }, - [232] = { + [248] = { id = "FourUniqueRing12", name = "Whisper of the Brotherhood", text = { @@ -1846,14 +1986,14 @@ return { "to return all that was once given.", }, }, - [233] = { + [249] = { id = "FourUniqueRing13", name = "Levinstone", text = { "Highgate held other secrets.", }, }, - [234] = { + [250] = { id = "FourUniqueRing14", name = "The Burrower", text = { @@ -1863,7 +2003,7 @@ return { "It lies in our minds", }, }, - [235] = { + [251] = { id = "FourUniqueRing15", name = "Call of the Brotherhood", text = { @@ -1872,7 +2012,7 @@ return { "across any distance of time or travel.", }, }, - [236] = { + [252] = { id = "FourUniqueRing16", name = "Ming's Heart", text = { @@ -1882,7 +2022,7 @@ return { "He placed his Heart", }, }, - [237] = { + [253] = { id = "FourUniqueRing17", name = "Blackflame", text = { @@ -1890,7 +2030,7 @@ return { "by whose light night is borne.", }, }, - [238] = { + [254] = { id = "FourUniqueRing18", name = "Original Sin", text = { @@ -1898,7 +2038,7 @@ return { "but on the vilification and hatred of another.", }, }, - [239] = { + [255] = { id = "FourUniqueRing19", name = "Vigilant View", text = { @@ -1906,14 +2046,14 @@ return { "together as one, shoulder to shoulder.", }, }, - [240] = { + [256] = { id = "FourUniqueRing20", name = "Death Rush", text = { "To truly appreciate life you must be there when it ends", }, }, - [241] = { + [257] = { id = "FourUniqueRing21", name = "Thief's Torment", text = { @@ -1926,7 +2066,7 @@ return { "A blessing is often a curse.", }, }, - [242] = { + [258] = { id = "FourUniqueRing22", name = "Evergrasping Ring", text = { @@ -1934,7 +2074,7 @@ return { "Death comes to those who reach", }, }, - [243] = { + [259] = { id = "FourUniqueRing23", name = "Heartbound Loop", text = { @@ -1943,35 +2083,85 @@ return { "fading mind was her broken, shattered scream.", }, }, - [244] = { + [260] = { id = "FourUniqueRing24", name = "Snakepit", text = { "They wrap around you until your blood turns as cold as theirs.", }, }, - [245] = { + [261] = { id = "FourUniqueRing25", name = "Gifts from Above", text = { "God blesses those who bless themselves.", }, }, - [246] = { + [262] = { + id = "FourUniqueRing26a", + name = "Berek's Grip", + text = { + "\"Berek hid from Storm's lightning wrath", + "In the embrace of oblivious Frost", + "Repelled by ice, blinded by blizzards", + "Storm raged in vain", + "While Berek slept.\"", + "- Berek and the Untamed", + }, + }, + [263] = { + id = "FourUniqueRing26b", + name = "Berek's Pass", + text = { + "\"From Frost's ice-bound pass", + "Berek taunted and jeered", + "Until furious Flame scaled the mountain", + "Berek escaped through the thaw", + "And Frost's tortured moans.\"", + "- Berek and the Untamed", + }, + }, + [264] = { + id = "FourUniqueRing26c", + name = "Berek's Respite", + text = { + "\"With Flame licking at his heels", + "Berek berated the clouds", + "Until vengeful Storm spewed forth his rains", + "And Berek held on tight", + "As Fire screamed and steamed", + "And fled.\"", + "- Berek and the Untamed", + }, + }, + [265] = { + id = "FourUniqueRing27", + name = "The Taming", + text = { + "\"Moon after moon did Berek make fools", + "Of the great and Untamed Three", + "Until malice for a Brother", + "Slew the hatred of the Other", + "And Berek did hunt", + "Alone and free.\"", + "- Berek and the Untamed", + }, + }, + [266] = { id = "FourUniqueRing28", name = "Perandus Seal", text = { "A pact with Prospero always comes at a price.", }, }, - [247] = { + [267] = { id = "FourUniqueRing29", name = "Andvarius", text = { "Danger is the price of wealth.", }, }, - [248] = { + [268] = { id = "FourUniqueRing30", name = "Ventor's Gamble", text = { @@ -1981,14 +2171,14 @@ return { "And Ventor met his latest trophy.", }, }, - [249] = { + [269] = { id = "FourUniqueRing32", name = "Kalandra's Touch", text = { "Power is a matter of perspective.", }, }, - [250] = { + [270] = { id = "FourUniqueRing33", name = "Grip of Kulemak", text = { @@ -1996,7 +2186,16 @@ return { "Let the Abyss coil within.", }, }, - [251] = { + [271] = { + id = "FourUniqueRing34", + name = "Veilpiercer", + text = { + "The tribe revelled wildly, unaware that each fruit", + "they ate further bound their continuity to the fog's.", + "In time, the merest touch could break their reality.", + }, + }, + [272] = { id = "FourUniqueBelt1", name = "Meginord's Girdle", text = { @@ -2004,7 +2203,7 @@ return { "the great Meginord of the north.", }, }, - [252] = { + [273] = { id = "FourUniqueBelt2", name = "Midnight Braid", text = { @@ -2012,7 +2211,7 @@ return { "which persistence grows.", }, }, - [253] = { + [274] = { id = "FourUniqueBelt3", name = "Keelhaul", text = { @@ -2020,7 +2219,7 @@ return { "there exists a flow...", }, }, - [254] = { + [275] = { id = "FourUniqueBelt4", name = "Umbilicus Immortalis", text = { @@ -2028,21 +2227,21 @@ return { "- Icius Perandus, Antiquities Collection, Item 3", }, }, - [255] = { + [276] = { id = "FourUniqueBelt5", name = "Birthright Buckle", text = { "Some families have peculiar gifts...", }, }, - [256] = { + [277] = { id = "FourUniqueBelt6", name = "Byrnabas", text = { "The Brinerot sail without fear of storms.", }, }, - [257] = { + [278] = { id = "FourUniqueBelt8", name = "Soul Tether", text = { @@ -2051,28 +2250,28 @@ return { "desperately cling to any other source of life.", }, }, - [258] = { + [279] = { id = "FourUniqueBelt9", name = "Infernoclasp", text = { "Tempered by the forbidden flame.", }, }, - [259] = { + [280] = { id = "FourUniqueBelt10", name = "Goregirdle", text = { "Bleeding just means you're still alive.", }, }, - [260] = { + [281] = { id = "FourUniqueBelt12", name = "Ryslatha's Coil", text = { "All creatures have the potential for greatness or unequivocal failure.", }, }, - [261] = { + [282] = { id = "FourUniqueBelt13", name = "Coward's Legacy", text = { @@ -2080,21 +2279,21 @@ return { "Face it, or curse your bloodline for all eternity.", }, }, - [262] = { + [283] = { id = "FourUniqueBelt15", name = "Bijouborne", text = { "Trifle not with the trinket mage.", }, }, - [263] = { + [284] = { id = "FourUniqueBelt17", name = "Waistgate", text = { "Clever artifice is not always complex.", }, }, - [264] = { + [285] = { id = "FourUniqueBelt18_", name = "Headhunter", text = { @@ -2104,14 +2303,22 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [265] = { + [286] = { + id = "FourUniqueBelt19", + name = "Cat O' Nine Tails", + text = { + "A Templar thinks he's righteous for flogging", + "himself once for every ten lashings he gives.", + }, + }, + [287] = { id = "FourUniqueBelt21", name = "Shavronne's Satchel", text = { "Bring mystery to life. Again and again.", }, }, - [266] = { + [288] = { id = "FourUniqueBelt23", name = "Darkness Enthroned", text = { @@ -2121,7 +2328,15 @@ return { "No conqueror, no conquered, only searing Light.", }, }, - [267] = { + [289] = { + id = "FourUniqueBelt24", + name = "Mageblood", + text = { + "Rivers of power coursed through their veins.", + "Now, that power is yours, for good or ill.", + }, + }, + [290] = { id = "FourUniqueLifeFlask1", name = "Blood of the Warrior", text = { @@ -2130,7 +2345,15 @@ return { "will more than survive the coming battle... you will thrive.\"", }, }, - [268] = { + [291] = { + id = "FourUniqueLifeFlask2", + name = "Opportunity", + text = { + "\"Calculations complete, and He is assembled.", + "Our immaculate tactics are set in motion.\"", + }, + }, + [292] = { id = "FourUniqueManaFlask1", name = "Lavianga's Spirits", text = { @@ -2139,21 +2362,30 @@ return { "- Lavianga, former advisor to Kaom", }, }, - [269] = { + [293] = { + id = "FourUniqueManaFlask2", + name = "Uhtred's Chalice", + text = { + "Uhtred drank. Verisium burned through his veins.", + "He gazed at death's face. With all his strength,", + "he turned instead to the stars, and witnessed Truth.", + }, + }, + [294] = { id = "FourUniqueOneHandMace1", name = "Brynhand's Mark", text = { "The mark of the smith was widely known.", }, }, - [270] = { + [295] = { id = "FourUniqueOneHandMace2", name = "Wylund's Stake", text = { "Shaped metal never forgets the forge.", }, }, - [271] = { + [296] = { id = "FourUniqueOneHandMace3", name = "Frostbreath", text = { @@ -2161,7 +2393,7 @@ return { "Robbing breath from the weak and worthless.", }, }, - [272] = { + [297] = { id = "FourUniqueOneHandMace4", name = "Trenchtimbre", text = { @@ -2169,7 +2401,7 @@ return { "It was earned by comrades in arms.", }, }, - [273] = { + [298] = { id = "FourUniqueOneHandMace5", name = "Sculpted Suffering", text = { @@ -2177,14 +2409,14 @@ return { "and every moment in the light was agony.", }, }, - [274] = { + [299] = { id = "FourUniqueOneHandMace6", name = "Seeing Stars", text = { "Within lies a window.", }, }, - [275] = { + [300] = { id = "FourUniqueOneHandMace7", name = "Nebuloch", text = { @@ -2193,14 +2425,42 @@ return { "But time would not touch the fiend.", }, }, - [276] = { + [301] = { + id = "FourUniqueOneHandMace9", + name = "Brutus' Lead Sprinkler", + text = { + "\"A sprinkle of liquid encouragement is often", + "required to garnish the perfect confession.\"", + "- Brutus, Warden of Axiom", + }, + }, + [302] = { id = "FourUniqueOneHandMace13", name = "Mjölner", text = { "Look the storm in the eye and you will have its respect.", }, }, - [277] = { + [303] = { + id = "FourUniqueOneHandMace14", + name = "Sadist's Mercy", + text = { + "\"You mortals are insidious. You repress your", + "evil, or deny it exists. Liars! When I open", + "your heads, that violence floods out.\"", + "- The Raven Trickster", + }, + }, + [304] = { + id = "FourUniqueOneHandMace15", + name = "Serle's Grit", + text = { + "A common soldier from a common family kept hammering into the night", + "after each grueling march, his eyes afire with starlight and determination.", + "Few suspected that he would one day become the greatest among them.", + }, + }, + [305] = { id = "FourUniqueTwoHandMace1", name = "Hoghunt", text = { @@ -2209,7 +2469,7 @@ return { "stop their flight and settle in Phaaryl.", }, }, - [278] = { + [306] = { id = "FourUniqueTwoHandMace2", name = "Hrimnor's Hymn", text = { @@ -2218,42 +2478,42 @@ return { "- Hrimnor of the Ezomytes.", }, }, - [279] = { + [307] = { id = "FourUniqueTwoHandMace3", name = "Trephina", text = { "The art of surgery advances one mistake at a time.", }, }, - [280] = { + [308] = { id = "FourUniqueTwoHandMace4", name = "Brain Rattler", text = { "The mind may have no limits, but the skull sure does.", }, }, - [281] = { + [309] = { id = "FourUniqueTwoHandMace5", name = "The Empty Roar", text = { "Secrecy and silence are powers all their own.", }, }, - [282] = { + [310] = { id = "FourUniqueTwoHandMace6", name = "Shyaba", text = { "Be not deceived by the treachery of men.", }, }, - [283] = { + [311] = { id = "FourUniqueTwoHandMace7", name = "Chober Chaber", text = { "The faithful may continue to serve, even after death.", }, }, - [284] = { + [312] = { id = "FourUniqueTwoHandMace8", name = "Quecholli", text = { @@ -2262,7 +2522,7 @@ return { "- Doryani of the Vaal", }, }, - [285] = { + [313] = { id = "FourUniqueTwoHandMace9", name = "Tidebreaker", text = { @@ -2272,7 +2532,7 @@ return { "and the Brine King's domain will grow.", }, }, - [286] = { + [314] = { id = "FourUniqueTwoHandMace10", name = "Marohi Erqi", text = { @@ -2281,7 +2541,7 @@ return { "Divine - he should have made it a test of skill!\"", }, }, - [287] = { + [315] = { id = "FourUniqueTwoHandMace13", name = "The Hammer of Faith", text = { @@ -2290,14 +2550,21 @@ return { "One day, justice would fall upon them...", }, }, - [288] = { + [316] = { + id = "FourUniqueTwoHandMace14", + name = "Twisted Empyrean", + text = { + "Infinite mutations over endless eons borne upon it in a singular moment.", + }, + }, + [317] = { id = "FourUniqueSpear1", name = "Splinter of Lorrata", text = { "The Baleful Gem's corruption lingers still...", }, }, - [289] = { + [318] = { id = "FourUniqueSpear2", name = "Tyranny's Grip", text = { @@ -2305,21 +2572,21 @@ return { "but rebels of every culture stood together as one.", }, }, - [290] = { + [319] = { id = "FourUniqueSpear3", name = "Chainsting", text = { "The Sacred Hunt ends with mercy.", }, }, - [291] = { + [320] = { id = "FourUniqueSpear4", name = "Skysliver", text = { "Heads fall to the sand, just as the star fell from the sky", }, }, - [292] = { + [321] = { id = "FourUniqueSpear5", name = "Daevata's Wind", text = { @@ -2327,7 +2594,7 @@ return { "but vengeance now.\" - Dimos, Advisor to General Titucius", }, }, - [293] = { + [322] = { id = "FourUniqueSpear6", name = "Tangletongue", text = { @@ -2335,7 +2602,7 @@ return { "- Wranga, tale-woman of the Wahida akhara", }, }, - [294] = { + [323] = { id = "FourUniqueSpear7", name = "Saitha's Spear", text = { @@ -2343,7 +2610,7 @@ return { "fused to her hand by her last mistake.", }, }, - [295] = { + [324] = { id = "FourUniqueSpear13", name = "Spire of Ire", text = { @@ -2351,7 +2618,7 @@ return { "but Maligaro never got a chance to use it...", }, }, - [296] = { + [325] = { id = "FourUniqueSpear14", name = "Atziri's Contempt", text = { @@ -2361,14 +2628,21 @@ return { "and adoration... I deserve it. I am their Queen.\"", }, }, - [297] = { + [326] = { + id = "FourUniqueSpear15", + name = "The Ordained", + text = { + "May the Lightless drown in the violence of His devotion.", + }, + }, + [327] = { id = "FourUniqueQuarterstaff1", name = "The Blood Thorn", text = { "Touch not the thorn, for only blood and pain await.", }, }, - [298] = { + [328] = { id = "FourUniqueQuarterstaff2", name = "Pillar of the Caged God", text = { @@ -2378,7 +2652,7 @@ return { "Deft as the needle doubt", }, }, - [299] = { + [329] = { id = "FourUniqueQuarterstaff3", name = "The Sentry", text = { @@ -2386,14 +2660,14 @@ return { "Erian was asleep at his post.", }, }, - [300] = { + [330] = { id = "FourUniqueQuarterstaff5", name = "Matsya", text = { "In our tales, and in our hearts, the rivers still flow.", }, }, - [301] = { + [331] = { id = "FourUniqueQuarterstaff6", name = "Nazir's Judgement", text = { @@ -2401,7 +2675,16 @@ return { "never let your enemy have a clear moment.", }, }, - [302] = { + [332] = { + id = "FourUniqueQuarterstaff14", + name = "Duality", + text = { + "Dannig saw Seren in his mind's eye, a public ornament of", + "extravagance. Until she bore Cadigan a son and vanished.", + "Decadence covering brutality, like all Kalguuran customs.", + }, + }, + [333] = { id = "FourUniqueWand1", name = "The Wicked Quill", text = { @@ -2409,14 +2692,14 @@ return { "the pages torn to a million pieces.", }, }, - [303] = { + [334] = { id = "FourUniqueWand2", name = "Sanguine Diviner", text = { "One way or another, it will find what it seeks.", }, }, - [304] = { + [335] = { id = "FourUniqueWand3", name = "Lifesprig", text = { @@ -2425,7 +2708,7 @@ return { "Life endures in Wraeclast.", }, }, - [305] = { + [336] = { id = "FourUniqueWand4", name = "Adonia's Ego", text = { @@ -2434,28 +2717,49 @@ return { "\"You think me powerless without my wand? Insult me again!\"", }, }, - [306] = { + [337] = { id = "FourUniqueWand5", name = "Enezun's Charge", text = { "He alone was welcome in the sacred spaces of the Titans.", }, }, - [307] = { + [338] = { id = "FourUniqueWand7", name = "Cursecarver", text = { - "Lost in the Black Fen, Erian hoped that dawn would save him. He had no idea how far away the light truly was.", + "Lost in the Black Fen, Erian hoped that dawn would save him.", + "He had no idea how far away the light truly was.", }, }, - [308] = { + [339] = { + id = "FourUniqueWand15", + name = "Liminal Coil", + text = { + "In that moment, Viridi's bones became", + "branches, weaving over the Darkness.", + "She coiled around the nothing,", + "trapping it within her everything.", + }, + }, + [340] = { + id = "FourUniqueWand16", + name = "Runeseeker's Call", + text = { + "Smithed from ancient metal", + "wrought from the very stars.", + "It is a means to call upon them,", + "for one capable of wielding it.", + }, + }, + [341] = { id = "FourUniqueStaff1", name = "Dusk Vigil", text = { "The candlemass tradition was born in a time of darkness and fear.", }, }, - [309] = { + [342] = { id = "FourUniqueStaff2", name = "Taryn's Shiver", text = { @@ -2465,14 +2769,14 @@ return { "Shiver in pain at the frozen dawn.", }, }, - [310] = { + [343] = { id = "FourUniqueStaff3", name = "Earthbound", text = { "An ancient Azmeri staff, overgrown by roots...", }, }, - [311] = { + [344] = { id = "FourUniqueStaff5", name = "The Searing Touch", text = { @@ -2480,14 +2784,14 @@ return { "Rule a world, bathed in flame.", }, }, - [312] = { + [345] = { id = "FourUniqueStaff6", name = "Sire of Shards", text = { "That which was broken may yet break.", }, }, - [313] = { + [346] = { id = "FourUniqueStaff13", name = "The Unborn Lich", text = { @@ -2497,7 +2801,7 @@ return { "Not all of his abominations survive.", }, }, - [314] = { + [347] = { id = "FourUniqueStaff14", name = "The Whispering Ice", text = { @@ -2507,14 +2811,23 @@ return { "- Weylam Roth", }, }, - [315] = { + [348] = { id = "FourUniqueStaff17", name = "Atziri's Rule", text = { "Bow before her... or suffer the most gruelling death imaginable.", }, }, - [316] = { + [349] = { + id = "FourUniqueStaff18", + name = "The Raven's Flock", + text = { + "\"Where the boy went, ravens gathered,", + "feasting on misery. His vile influence", + "spread, swift as the carnage they wrought.\"", + }, + }, + [350] = { id = "FourUniqueBow1", name = "Widowhail", text = { @@ -2523,7 +2836,7 @@ return { "healing, no revenge. There was only... emptiness.\"", }, }, - [317] = { + [351] = { id = "FourUniqueBow2", name = "Quill Rain", text = { @@ -2532,7 +2845,15 @@ return { "- Rigwald of the Ezomytes", }, }, - [318] = { + [352] = { + id = "FourUniqueBow3", + name = "Ironbound", + text = { + "Each crest was a Thane's word, bolted to Ivor's bow.", + "They would join the Count's side, or die by his hands.", + }, + }, + [353] = { id = "FourUniqueBow4", name = "Splinterheart", text = { @@ -2541,7 +2862,7 @@ return { "lest they return with a strange new purpose.", }, }, - [319] = { + [354] = { id = "FourUniqueBow5", name = "Doomfletch", text = { @@ -2552,7 +2873,7 @@ return { "- Koralus Doomfletch", }, }, - [320] = { + [355] = { id = "FourUniqueBow6", name = "Death's Harp", text = { @@ -2562,7 +2883,7 @@ return { "The Reaper's Song, the Harp of Death.", }, }, - [321] = { + [356] = { id = "FourUniqueBow7", name = "Voltaxic Rift", text = { @@ -2571,14 +2892,14 @@ return { "arcane power. There was no escape, no shelter. Only despair.", }, }, - [322] = { + [357] = { id = "FourUniqueBow8", name = "Slivertongue", text = { "A hundred blind heads, each seeking the taste of prey on the air.", }, }, - [323] = { + [358] = { id = "FourUniqueBow9", name = "Fairgraves' Curse", text = { @@ -2586,7 +2907,7 @@ return { "souls just as easily as flesh.", }, }, - [324] = { + [359] = { id = "FourUniqueBow13_", name = "Lioneye's Glare", text = { @@ -2595,7 +2916,16 @@ return { "- General Marceus Lioneye", }, }, - [325] = { + [360] = { + id = "FourUniqueBow14", + name = "Periphery", + text = { + "As the Maji approached the edge of Nothingness, she strung", + "fragments of the Wildwood's carcass together. When she", + "nocked her arrow, she pulled upon the elements of life itself.", + }, + }, + [361] = { id = "FourUniqueCrossbow1", name = "Mist Whisper", text = { @@ -2603,7 +2933,7 @@ return { "All the travelers had to give him was their devotion...", }, }, - [326] = { + [362] = { id = "FourUniqueCrossbow2", name = "Rampart Raptor", text = { @@ -2612,7 +2942,7 @@ return { "- anonymous Brotherhood of Silence report", }, }, - [327] = { + [363] = { id = "FourUniqueCrossbow5", name = "Double Vision", text = { @@ -2620,7 +2950,7 @@ return { "hot day is harsh, but the chill night is far worse.", }, }, - [328] = { + [364] = { id = "FourUniqueCrossbow13", name = "The Last Lament", text = { @@ -2630,7 +2960,18 @@ return { "- Adamantia Brektov, the Composer", }, }, - [329] = { + [365] = { + id = "FourUniqueCrossbow14", + name = "Redemption", + text = { + "\"The time has passed for diplomacy!", + "If they will not respect House Azadi,", + "then let them die gloriously... and loudly.", + "We are the masters of the Death Trades!\"", + "- Ratha Azadi", + }, + }, + [366] = { id = "FourUniqueSceptre1", name = "The Dark Defiler", text = { @@ -2638,7 +2979,7 @@ return { "his undead armies from the front.", }, }, - [330] = { + [367] = { id = "FourUniqueSceptre4", name = "Font of Power", text = { @@ -2646,7 +2987,7 @@ return { "for they have a much higher purpose.", }, }, - [331] = { + [368] = { id = "FourUniqueSceptre6", name = "Guiding Palm", text = { @@ -2656,7 +2997,7 @@ return { "- Book of the Benevolent Dreamer, Histories 220:5", }, }, - [332] = { + [369] = { id = "FourUniqueSceptre6a", name = "Guiding Palm of the Heart", text = { @@ -2665,7 +3006,7 @@ return { "The Dreamer declared, casting out the lingering dark embers within him.", }, }, - [333] = { + [370] = { id = "FourUniqueSceptre6b", name = "Guiding Palm of the Eye", text = { @@ -2675,7 +3016,7 @@ return { "The Dreamer whispered with fogging breath, ice creeping down his hand.", }, }, - [334] = { + [371] = { id = "FourUniqueSceptre6c", name = "Guiding Palm of the Mind", text = { @@ -2685,7 +3026,7 @@ return { "The Dreamer mused with aching heart, as remnants of forking tendrils burst forth.", }, }, - [335] = { + [372] = { id = "FourUniqueSceptre6d", name = "Palm of the Dreamer", text = { @@ -2695,7 +3036,15 @@ return { "- The Benevolent Dreamer", }, }, - [336] = { + [373] = { + id = "FourUniqueSceptre14", + name = "Sylvan's Effigy", + text = { + "Darkness howls through ancient bones, a wistful cry", + "on hollow winds. The moon listens. The pack gathers.", + }, + }, + [374] = { id = "FourUniqueTalisman1", name = "Amor Mandragora", text = { @@ -2704,7 +3053,16 @@ return { "island, Cirel of Tarth stood waiting to greet them.", }, }, - [337] = { + [375] = { + id = "FourUniqueTalisman2", + name = "Spiteful Floret", + text = { + "If you see the blushing tree of the northern woods,", + "remember: \"Blossoms of red, the tree's been fed.", + "Blossoms of white, prepare for a fight.\"", + }, + }, + [376] = { id = "FourUniqueTalisman4", name = "Hysseg's Claw", text = { @@ -2713,7 +3071,7 @@ return { "It is a debt they have never forgotten.", }, }, - [338] = { + [377] = { id = "FourUniqueTalisman8", name = "The Flesh Poppet", text = { @@ -2722,7 +3080,16 @@ return { "'cooperate' with their enemies... forcefully.", }, }, - [339] = { + [378] = { + id = "FourUniqueTalisman10", + name = "Surge of the Tide", + text = { + "\"A traditional hatungo does not carry an axe,", + "it is true. But as Narumoa showed us, there", + "are many ways to crush one's enemy...\"", + }, + }, + [379] = { id = "FourUniqueTalisman14", name = "Fury of the King", text = { @@ -2731,7 +3098,7 @@ return { "and discover the fate of his children.", }, }, - [340] = { + [380] = { id = "FourUniqueCharm1", name = "Nascent Hope", text = { @@ -2739,7 +3106,7 @@ return { "life found a way. The Spirit always provides.\"", }, }, - [341] = { + [381] = { id = "FourUniqueCharm2", name = "Sanguis Heroum", text = { @@ -2747,7 +3114,7 @@ return { "It remembers those that stood in defiance.", }, }, - [342] = { + [382] = { id = "FourUniqueCharm3", name = "Arakaali's Gift", text = { @@ -2755,7 +3122,7 @@ return { "needed never fear her sting.", }, }, - [343] = { + [383] = { id = "FourUniqueCharm4", name = "Beira's Anguish", text = { @@ -2763,7 +3130,7 @@ return { "She was clad in ice, but the village was ash.", }, }, - [344] = { + [384] = { id = "FourUniqueCharm5", name = "The Black Cat", text = { @@ -2771,7 +3138,7 @@ return { "is the one that refuses to do any actual work.", }, }, - [345] = { + [385] = { id = "FourUniqueCharm6", name = "For Utopia", text = { @@ -2779,7 +3146,7 @@ return { "The Saviour will rise, and mankind will be free.\"", }, }, - [346] = { + [386] = { id = "FourUniqueCharm7", name = "The Fall of the Axe", text = { @@ -2788,14 +3155,14 @@ return { "- Vorm, the Twice-Pardoned", }, }, - [347] = { + [387] = { id = "FourUniqueCharm8", name = "Ngamahu's Chosen", text = { "Kaom was not known for his restraint.", }, }, - [348] = { + [388] = { id = "FourUniqueCharm9", name = "Breath of the Mountains", text = { @@ -2805,7 +3172,7 @@ return { "- Mutewind saying", }, }, - [349] = { + [389] = { id = "FourUniqueCharm10", name = "Valako's Roar", text = { @@ -2813,7 +3180,7 @@ return { "Flashes of light show only swinging axes... and a grin.", }, }, - [350] = { + [390] = { id = "FourUniqueCharm11", name = "Forsaken Bangle", text = { @@ -2821,7 +3188,7 @@ return { "They bore this burden to empower their hidden Order.", }, }, - [351] = { + [391] = { id = "FourUniquePinnacle1", name = "Morior Invictus", text = { @@ -2829,28 +3196,28 @@ return { "They stood against the end.", }, }, - [352] = { + [392] = { id = "FourUniquePinnacle2", name = "Solus Ipse", text = { "One warrior alone survived to face the Arbiter.", }, }, - [353] = { + [393] = { id = "FourUniquePinnacle3", name = "Sine Aequo", text = { "The greatest warrior of his era fought with honour.", }, }, - [354] = { + [394] = { id = "FourUniquePinnacle4", name = "Ab Aeterno", text = { "His enemy was for endurance forged. His own waned.", }, }, - [355] = { + [395] = { id = "FourUniquePinnacle5", name = "Sacred Flame", text = { @@ -2858,7 +3225,7 @@ return { "Life always springs anew.", }, }, - [356] = { + [396] = { id = "FourUniqueSanctum1", name = "Temporalis", text = { @@ -2866,14 +3233,14 @@ return { "mastered was Time itself.", }, }, - [357] = { + [397] = { id = "FourUniqueSanctum2", name = "Sandstorm Visage", text = { "A fell wind brings death.", }, }, - [358] = { + [398] = { id = "FourUniqueSanctum3", name = "Blessed Bonds", text = { @@ -2882,31 +3249,34 @@ return { "One day, spring will return the rains.\"", }, }, - [359] = { + [399] = { id = "FourUniqueSanctum4a", - name = "Sekhema's Resolve", + name = "Safrin's Resolve", text = { - "Though the summer of centuries burns the", - "Vastiri to dust, we remain, unchanged.", + "The Vaal protected those who integrated into their", + "culture. Many neighbours became one. Sekhema Safrin", + "vowed the Maraketh identity would remain resolute.", }, }, - [360] = { + [400] = { id = "FourUniqueSanctum4b", - name = "Sekhema's Resolve", + name = "Eshtera's Path", text = { - "Though the Winter of the World shrouded the", - "Vastiri in ice, we remained, unchanged.", + "During the Winter of the World, her akhara began", + "shepherding jingakh across the harsh Vastiri. Sekhema", + "Eshtera planted the seeds of Maraketh diplomacy.", }, }, - [361] = { + [401] = { id = "FourUniqueSanctum4c", - name = "Sekhema's Resolve", + name = "Zaida's Longevity", text = { - "Though the rains refuse to return to a dry", - "Vastiri, we shall remain, unchanged.", + "The relative peace under the fledgling Empire saw", + "the first Sekhema to choose, in her resplendent age and", + "wisdom, to step down. The role of Zaitema was born.", }, }, - [362] = { + [402] = { id = "FourUniqueUltimatum1", name = "Glimpse of Chaos", text = { @@ -2914,28 +3284,28 @@ return { "only under the blessed veil of ignorance.", }, }, - [363] = { + [403] = { id = "FourUniqueUltimatum2", name = "Zerphi's Genesis", text = { "The most horrifying ideas often begin with a simple innovation.", }, }, - [364] = { + [404] = { id = "FourUniqueUltimatum3", name = "Mahuxotl's Machination", text = { "The Banished Architect sought to employ the darkest secrets of the Vaal.", }, }, - [365] = { + [405] = { id = "FourUniqueUltimatum4", name = "Hateforge", text = { "The first Karui born on the fringes of the Vaal empire developed a blood fever born of corruption.", }, }, - [366] = { + [406] = { id = "FourUniqueExpedition1", name = "Svalinn", text = { @@ -2943,7 +3313,7 @@ return { "but it was the smiths who delved into the secrets it held.", }, }, - [367] = { + [407] = { id = "FourUniqueExpedition2", name = "Keeper of the Arc", text = { @@ -2951,7 +3321,7 @@ return { "and calculation, not unprovable promises.", }, }, - [368] = { + [408] = { id = "FourUniqueExpedition3_", name = "Olroth's Resolve", text = { @@ -2961,7 +3331,7 @@ return { "he fights for you!", }, }, - [369] = { + [409] = { id = "FourUniqueExpedition4", name = "Olrovasara", text = { @@ -2969,14 +3339,14 @@ return { "- Fourth Tenet of the Knights of the Sun", }, }, - [370] = { + [410] = { id = "FourUniqueDelirium1", name = "Assailum", text = { "A moment of calm before the battle can end the war.", }, }, - [371] = { + [411] = { id = "FourUniqueDelirium2", name = "Perfidy", text = { @@ -2984,21 +3354,21 @@ return { "What hope have you?", }, }, - [372] = { + [412] = { id = "FourUniqueDelirium3", name = "Melting Maelstrom", text = { "What is life, but a dreamlike spiral of panic?", }, }, - [373] = { + [413] = { id = "FourUniqueDelirium4", name = "Collapsing Horizon", text = { "The edges bend, the world flexes, the infinite spills into view.", }, }, - [374] = { + [414] = { id = "FourUniqueDelirium5", name = "Strugglescream", text = { @@ -3006,7 +3376,7 @@ return { "but the shadows eventually become home.", }, }, - [375] = { + [415] = { id = "FourUniqueRitual1", name = "The Burden of Shadows", text = { @@ -3014,7 +3384,7 @@ return { "Every moment is a struggle to exist.", }, }, - [376] = { + [416] = { id = "FourUniqueRitual2", name = "Beetlebite", text = { @@ -3022,7 +3392,7 @@ return { "in the shadow of his presence.", }, }, - [377] = { + [417] = { id = "FourUniqueRitual3", name = "Ingenuity", text = { @@ -3030,7 +3400,7 @@ return { "the Maji more than they ever expected.", }, }, - [378] = { + [418] = { id = "FourUniqueRitual4", name = "Pragmatism", text = { @@ -3038,7 +3408,7 @@ return { "one must be ever vigilant.", }, }, - [379] = { + [419] = { id = "FourUniqueBreach1_", name = "Skin of the Loyal", text = { @@ -3046,7 +3416,7 @@ return { "A net woven to keep safe the bones of the Lords.", }, }, - [380] = { + [420] = { id = "FourUniqueBreach2", name = "Hand of Wisdom and Action", text = { @@ -3055,7 +3425,7 @@ return { "Fragments of the whole that washes clean the skies.", }, }, - [381] = { + [421] = { id = "FourUniqueBreach3", name = "Beyond Reach", text = { @@ -3063,7 +3433,7 @@ return { "that protects us from ourselves.", }, }, - [382] = { + [422] = { id = "FourUniqueBreach4a", name = "Xoph's Blood", text = { @@ -3071,7 +3441,7 @@ return { "Through us he carries his burning message.", }, }, - [383] = { + [423] = { id = "FourUniqueBreach4b", name = "Choir of the Storm", text = { @@ -3080,7 +3450,7 @@ return { "And the fool was unwritten.", }, }, - [384] = { + [424] = { id = "FourUniqueBreach4c", name = "The Pandemonius", text = { @@ -3088,7 +3458,7 @@ return { "beneath which all are buried.", }, }, - [385] = { + [425] = { id = "FourUniqueSpirit1", name = "Rite of Passage", text = { @@ -3096,7 +3466,7 @@ return { "Azmeri must prove themselves before the Spirit.", }, }, - [386] = { + [426] = { id = "FourUniqueCorruption1", name = "The Gnashing Sash", text = { @@ -3105,7 +3475,7 @@ return { "- Rantings of a Templar prisoner, page fourteen", }, }, - [387] = { + [427] = { id = "FourUniqueCorruption2", name = "Bursting Decay", text = { @@ -3114,7 +3484,7 @@ return { "- Rantings of a Templar prisoner, page thirty", }, }, - [388] = { + [428] = { id = "FourUniqueCorruption3", name = "Death Articulated", text = { @@ -3123,28 +3493,28 @@ return { "- Rantings of a Templar prisoner, page ninety-four", }, }, - [389] = { + [429] = { id = "FourUniqueJewel1", name = "Grand Spectrum", text = { "A wellspring of vitality bubbling from within.", }, }, - [390] = { + [430] = { id = "FourUniqueJewel2", name = "Grand Spectrum", text = { "An indomitable force of control.", }, }, - [391] = { + [431] = { id = "FourUniqueJewel3", name = "Grand Spectrum", text = { "Skin like steel tempered by bright flames.", }, }, - [392] = { + [432] = { id = "FourUniqueJewel4", name = "Megalomaniac", text = { @@ -3152,7 +3522,7 @@ return { "than everyone else, make sure you are.", }, }, - [393] = { + [433] = { id = "FourUniqueJewel5", name = "Heroic Tragedy", text = { @@ -3160,7 +3530,7 @@ return { "but that bravery became the doom at their door.", }, }, - [394] = { + [434] = { id = "FourUniqueJewel6", name = "From Nothing", text = { @@ -3168,7 +3538,7 @@ return { "breathing deep with joy the exquisite light of meaning.", }, }, - [395] = { + [435] = { id = "FourUniqueJewel7", name = "Controlled Metamorphosis", text = { @@ -3176,14 +3546,14 @@ return { "We broke free from the chains within.", }, }, - [396] = { + [436] = { id = "FourUniqueJewel8", name = "Prism of Belief", text = { "Entropy can be reversed.", }, }, - [397] = { + [437] = { id = "FourUniqueJewel9", name = "The Adorned", text = { @@ -3192,14 +3562,14 @@ return { "now nothing more than a passing wonder.", }, }, - [398] = { + [438] = { id = "FourUniqueJewel10", name = "Against the Darkness", text = { "After the fires, in the depths of the Winter of the World, all life in the Vastiri banded together. Whether serpent, hyena, human, or golem, hated enemies clasped hand to claw, built refuge, and fought side by side against the Abyssals. Thus, the Third Pact was born.", }, }, - [399] = { + [439] = { id = "FourUniqueJewel11", name = "Undying Hate", text = { @@ -3207,7 +3577,7 @@ return { "but that desperation made them monstrous.", }, }, - [400] = { + [440] = { id = "FourUniqueJewel12", name = "Heart of the Well", text = { @@ -3215,7 +3585,7 @@ return { "forever sinking under the weight of the newly dead.", }, }, - [401] = { + [441] = { id = "FourUniqueJewel13", name = "Flesh Crucible", text = { @@ -3224,7 +3594,23 @@ return { "lung. You never know what Vaal technology will cost you...\"", }, }, - [402] = { + [442] = { + id = "FourUniqueJewel14_", + name = "Split Personality", + text = { + "\"Try on another life. See how it fits. You'll", + "find that your one life is utterly inadequate.\"", + "- He of Many Names and Many Faces", + }, + }, + [443] = { + id = "FourUniqueJewel15", + name = "Voices", + text = { + "Only a madman would ignore a god's instructions.", + }, + }, + [444] = { id = "VaalLimbReplacements", name = "Transcendent Limb", text = { diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index e688908da6..54fd08707d 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -18,9 +18,10 @@ return { cold = true, duration = true, nova = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Cold, Duration, Nova", + tagString = "AoE, Cold, Duration, Nova, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -60,8 +61,6 @@ return { grantedEffectId = "MoltenCrashPlayer", additionalStatSet1 = "MoltenCrashFissurePlayer", tags = { - strength = true, - intelligence = true, grants_active_skill = true, attack = true, shapeshift = true, @@ -74,9 +73,9 @@ return { gemType = "Attack", tagString = "Shapeshift, Bear, AoE, Melee, Slam, Travel", weaponRequirements = "Talisman", - reqStr = 50, + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, @@ -120,9 +119,10 @@ return { physical = true, fire = true, detonator = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Fire, Detonator", + tagString = "AoE, Physical, Fire, Detonator, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -135,16 +135,18 @@ return { gameId = "Metadata/Items/Gems/SkillGemVolatileDead", variantId = "VolatileDead", grantedEffectId = "VolatileDeadPlayer", - additionalStatSet1 = "VolatileDeadIgniteAuraPlayer", + additionalStatSet1 = "VolatileDeadExplosionPlayer", + additionalStatSet2 = "VolatileDeadIgniteAuraPlayer", tags = { intelligence = true, grants_active_skill = true, spell = true, area = true, fire = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Fire", + tagString = "AoE, Fire, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -683,9 +685,10 @@ return { projectile = true, lightning = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Lightning, Duration", + tagString = "Projectile, Lightning, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -876,9 +879,10 @@ return { area = true, duration = true, curse = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Duration, Curse", + tagString = "AoE, Duration, Curse, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -898,9 +902,10 @@ return { area = true, duration = true, curse = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Duration, Curse", + tagString = "AoE, Duration, Curse, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -941,9 +946,10 @@ return { chaos = true, duration = true, curse = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Chaos, Duration, Curse", + tagString = "AoE, Chaos, Duration, Curse, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -964,9 +970,10 @@ return { lightning = true, duration = true, remnant = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Lightning, Duration, Remnant", + tagString = "AoE, Lightning, Duration, Remnant, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -986,9 +993,10 @@ return { area = true, physical = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Duration", + tagString = "AoE, Physical, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1096,10 +1104,11 @@ return { sustained = true, fire = true, duration = true, + repeatable = true, storm = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Fire, Duration, Storm", + tagString = "AoE, Sustained, Fire, Duration, Repeatable, Storm", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1168,10 +1177,10 @@ return { projectile = true, lightning = true, chaining = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Chaining, Barrageable", + tagString = "AoE, Projectile, Lightning, Chaining, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -1270,8 +1279,6 @@ return { grantedEffectId = "ValakosChargePlayer", additionalStatSet1 = "ValakosChargeArcPlayer", tags = { - strength = true, - dexterity = true, grants_active_skill = true, spell = true, area = true, @@ -1281,8 +1288,8 @@ return { }, gemType = "Spell", tagString = "AoE, Trigger, Lightning, Chaining", - reqStr = 50, - reqDex = 50, + reqStr = 0, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -1300,9 +1307,10 @@ return { projectile = true, lightning = true, chaining = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Lightning, Chaining", + tagString = "Projectile, Lightning, Chaining, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1496,9 +1504,10 @@ return { fire = true, duration = true, curse = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Lightning, Cold, Fire, Duration, Curse", + tagString = "AoE, Lightning, Cold, Fire, Duration, Curse, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -1779,9 +1788,10 @@ return { lightning = true, duration = true, chaining = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Sustained, Lightning, Duration, Chaining", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Chaining, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2047,8 +2057,6 @@ return { variantId = "ShatteringSpite", grantedEffectId = "ShatteringSpitePlayer", tags = { - strength = true, - dexterity = true, grants_active_skill = true, attack = true, area = true, @@ -2059,8 +2067,33 @@ return { gemType = "Attack", tagString = "AoE, Physical, Lightning, Fire", weaponRequirements = "Spear", - reqStr = 25, - reqDex = 75, + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRighteousDescent"] = { + name = "Righteous Descent", + baseTypeName = "Righteous Descent", + gameId = "Metadata/Items/Gems/SkillGemRighteousDescent", + variantId = "RighteousDescent", + grantedEffectId = "RighteousDescentPlayer", + additionalStatSet1 = "RighteousDescentPlayerBoosted", + tags = { + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + physical = true, + lightning = true, + travel = true, + }, + gemType = "Attack", + tagString = "AoE, Melee, Slam, Physical, Lightning, Travel", + reqStr = 0, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -2133,9 +2166,10 @@ return { chaining = true, orb = true, remnant = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb, Remnant", + tagString = "AoE, Sustained, Lightning, Duration, Chaining, Orb, Remnant, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2180,9 +2214,10 @@ return { area = true, chaos = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Chaos, Duration", + tagString = "AoE, Chaos, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2226,9 +2261,10 @@ return { projectile = true, chaos = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Chaos, Duration", + tagString = "Projectile, Chaos, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2293,9 +2329,10 @@ return { area = true, projectile = true, cold = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Cold", + tagString = "AoE, Projectile, Cold, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2500,6 +2537,76 @@ return { Tier = 13, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemAzmerianWolf"] = { + name = "Azmerian Wolf", + baseTypeName = "Azmerian Wolf", + gameId = "Metadata/Items/Gems/SkillGemAzmerianWolf", + variantId = "AzmerianWolf", + grantedEffectId = "SummonAzmerianWolfPlayer", + additionalGrantedEffectId1 = "CommandPackleaderPlayer", + tags = { + grants_active_skill = true, + minion = true, + companion = true, + persistent = true, + physical = true, + }, + gemType = "Minion", + tagString = "Companion, Persistent, Physical", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMistRaven"] = { + name = "Mist Raven", + baseTypeName = "Mist Raven", + gameId = "Metadata/Items/Gems/SkillGemMistRaven", + variantId = "MistRaven", + grantedEffectId = "SummonMistRavenPlayer", + additionalGrantedEffectId1 = "CommandMistRavenPlayer", + tags = { + grants_active_skill = true, + minion = true, + companion = true, + persistent = true, + physical = true, + chaos = true, + }, + gemType = "Minion", + tagString = "Companion, Persistent, Physical, Chaos", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSpiralingConspiracy"] = { + name = "Spiraling Conspiracy", + baseTypeName = "Spiraling Conspiracy", + gameId = "Metadata/Items/Gems/SkillGemSpiralingConspiracy", + variantId = "SpiralingConspiracy", + grantedEffectId = "SummonSpiralingConspiracyPlayer", + additionalGrantedEffectId1 = "CommandMadFlightPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + minion = true, + persistent = true, + area = true, + physical = true, + chaos = true, + duration = true, + }, + gemType = "Minion", + tagString = "Persistent, AoE, Physical, Chaos, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemWildfireSupport"] = { name = "Wildfire", gameId = "Metadata/Items/Gems/SupportGemWildfire", @@ -2804,9 +2911,10 @@ return { physical = true, duration = true, curse = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Duration, Curse", + tagString = "AoE, Physical, Duration, Curse, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -2846,9 +2954,10 @@ return { projectile = true, chaos = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Chaos, Duration", + tagString = "Projectile, Chaos, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3156,7 +3265,7 @@ return { reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 4, + Tier = 5, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemInfernalLegionSupportThree"] = { @@ -3176,7 +3285,7 @@ return { reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 5, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemSiegeBallista"] = { @@ -3194,12 +3303,13 @@ return { totem = true, area = true, projectile = true, + sustained = true, fire = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "Totem, AoE, Projectile, Fire, Duration, Barrageable", + tagString = "Totem, AoE, Projectile, Sustained, Fire, Duration, Repeatable", weaponRequirements = "Crossbow", reqStr = 50, reqDex = 50, @@ -3327,6 +3437,27 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemSigilOfLife"] = { + name = "Rite of Restoration", + baseTypeName = "Rite of Restoration", + gameId = "Metadata/Items/Gems/SkillGemSigilOfLife", + variantId = "SigilOfLife", + grantedEffectId = "SacredGroundPlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + duration = true, + stages = true, + }, + gemType = "Spell", + tagString = "AoE, Duration, Staged", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemFlameWall"] = { name = "Flame Wall", baseTypeName = "Flame Wall", @@ -3342,9 +3473,10 @@ return { area = true, fire = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Fire, Duration", + tagString = "AoE, Fire, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3387,9 +3519,10 @@ return { area = true, chaos = true, payoff = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Chaos, Payoff", + tagString = "AoE, Chaos, Payoff, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3409,9 +3542,10 @@ return { physical = true, duration = true, chaining = true, + repeatable = true, }, gemType = "Spell", - tagString = "Physical, Duration, Chaining", + tagString = "Physical, Duration, Chaining, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -3894,10 +4028,10 @@ return { area = true, projectile = true, lightning = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Barrageable", + tagString = "AoE, Projectile, Lightning, Repeatable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -3920,10 +4054,10 @@ return { projectile = true, cold = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Cold, Duration, Barrageable", + tagString = "AoE, Projectile, Cold, Duration, Repeatable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -4411,9 +4545,10 @@ return { spell = true, area = true, cold = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Cold", + tagString = "AoE, Cold, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4517,6 +4652,31 @@ return { Tier = 1, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemCrushingFear"] = { + name = "Crushing Fear", + baseTypeName = "Crushing Fear", + gameId = "Metadata/Items/Gems/SkillGemCrushingFear", + variantId = "CrushingFear", + grantedEffectId = "CrushingFearPlayer", + additionalStatSet1 = "CrushingFearNovaPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + melee = true, + strike = true, + physical = true, + chaos = true, + }, + gemType = "Attack", + tagString = "AoE, Melee, Strike, Physical, Chaos", + weaponRequirements = "Quarterstaff", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemShatteringPalm"] = { name = "Shattering Palm", baseTypeName = "Shattering Palm", @@ -4602,8 +4762,6 @@ return { variantId = "HyenaCackle", grantedEffectId = "HyenaCacklePlayer", tags = { - strength = true, - intelligence = true, grants_active_skill = true, minion = true, companion = true, @@ -4612,9 +4770,9 @@ return { }, gemType = "Minion", tagString = "Companion, Persistent, Physical", - reqStr = 50, + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, @@ -4715,9 +4873,9 @@ return { gameId = "Metadata/Items/Gems/SkillGemWolfPounce", variantId = "WolfPounce", grantedEffectId = "WolfPouncePlayer", - additionalGrantedEffectId1 = "SupportCrossSlashPlayer", + additionalGrantedEffectId1 = "SupportWolfPouncePlayer", additionalGrantedEffectId2 = "WolfPounceMarkPlayer", - additionalGrantedEffectId3 = "WolfCrossSlashWolfPlayer", + additionalGrantedEffectId3 = "WolfPounceSummonWolfPlayer", grantedEffectDisplayOrder = { 0, 2, 3 }, tags = { strength = true, @@ -4757,9 +4915,10 @@ return { spell = true, area = true, lightning = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Lightning", + tagString = "AoE, Lightning, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -4835,7 +4994,7 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemShockConductionSupport"] = { - name = "Shock Conduction I", + name = "Shock Conduction", gameId = "Metadata/Items/Gems/SupportGemCoursingCurrent", variantId = "ShockConductionSupport", grantedEffectId = "SupportShockConductionPlayer", @@ -4869,7 +5028,7 @@ return { reqStr = 0, reqDex = 0, reqInt = 100, - Tier = 5, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemLastingFrostSupport"] = { @@ -5367,10 +5526,9 @@ return { grants_active_skill = true, buff = true, persistent = true, - duration = true, }, gemType = "Buff", - tagString = "Persistent, Duration", + tagString = "Persistent", reqStr = 0, reqDex = 50, reqInt = 50, @@ -5385,18 +5543,18 @@ return { grantedEffectId = "AncestralWarriorTotemPlayer", additionalGrantedEffectId1 = "SupportAncestralWarriorTotemPlayer", tags = { + totem = true, strength = true, grants_active_skill = true, attack = true, - totem = true, area = true, melee = true, duration = true, conditional = true, meta = true, }, - gemType = "Attack", - tagString = "Totem, AoE, Melee, Duration, Conditional, Meta", + gemType = "Totem", + tagString = "Attack, AoE, Melee, Duration, Conditional, Meta", weaponRequirements = "One Hand Mace, Two Hand Mace", reqStr = 100, reqDex = 0, @@ -5412,17 +5570,17 @@ return { grantedEffectId = "SummonMetaTotemSpellTotemPlayer", additionalGrantedEffectId1 = "SupportMetaTotemSpellTotemPlayer", tags = { + totem = true, strength = true, intelligence = true, grants_active_skill = true, spell = true, - totem = true, duration = true, conditional = true, meta = true, }, - gemType = "Spell", - tagString = "Totem, Duration, Conditional, Meta", + gemType = "Totem", + tagString = "Spell, Duration, Conditional, Meta", reqStr = 50, reqDex = 0, reqInt = 50, @@ -5574,10 +5732,9 @@ return { buff = true, area = true, duration = true, - barrageable = true, }, gemType = "Minion", - tagString = "Buff, AoE, Duration, Barrageable", + tagString = "Buff, AoE, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5736,9 +5893,33 @@ return { spell = true, projectile = true, chaos = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Chaos", + tagString = "Projectile, Chaos, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 100, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemCoilingBolts"] = { + name = "Coiling Bolts", + baseTypeName = "Coiling Bolts", + gameId = "Metadata/Items/Gems/SkillGemCoilingBolts", + variantId = "CoilingBolts", + grantedEffectId = "CoilingBoltsPlayer", + additionalStatSet1 = "CoilingBoltsChaosPlayer", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + projectile = true, + chaos = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "Projectile, Chaos, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5784,12 +5965,11 @@ return { spell = true, area = true, projectile = true, - sustained = true, physical = true, channelling = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Sustained, Physical, Channelling", + tagString = "AoE, Projectile, Physical, Channelling", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5810,9 +5990,10 @@ return { physical = true, duration = true, nova = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Duration, Nova", + tagString = "AoE, Physical, Duration, Nova, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5904,9 +6085,10 @@ return { area = true, physical = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "Minion, AoE, Physical, Duration", + tagString = "Minion, AoE, Physical, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -5930,10 +6112,10 @@ return { channelling = true, detonator = true, stages = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Fire, Channelling, Detonator, Staged, Barrageable", + tagString = "AoE, Projectile, Fire, Channelling, Detonator, Staged, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -5956,10 +6138,10 @@ return { projectile = true, chaos = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Chaos, Duration, Barrageable", + tagString = "AoE, Projectile, Chaos, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -5981,9 +6163,10 @@ return { area = true, projectile = true, fire = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Fire", + tagString = "AoE, Projectile, Fire, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -6004,11 +6187,11 @@ return { area = true, projectile = true, chaos = true, - barrageable = true, + repeatable = true, plant = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Chaos, Barrageable, Plant", + tagString = "AoE, Projectile, Chaos, Repeatable, Plant", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6031,10 +6214,10 @@ return { projectile = true, lightning = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Duration, Barrageable", + tagString = "AoE, Projectile, Lightning, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6050,20 +6233,19 @@ return { grantedEffectId = "PhantasmalArrowPlayer", additionalStatSet1 = "PhantasmalArrowExplosionPlayer", tags = { - dexterity = true, grants_active_skill = true, attack = true, area = true, projectile = true, fire = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Fire, Duration, Barrageable", + tagString = "AoE, Projectile, Fire, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, - reqDex = 100, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -6083,10 +6265,10 @@ return { sustained = true, lightning = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6111,10 +6293,10 @@ return { cold = true, channelling = true, payoff = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Cold, Channelling, Payoff, Barrageable", + tagString = "AoE, Projectile, Cold, Channelling, Payoff, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6139,10 +6321,10 @@ return { fire = true, chaos = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Fire, Chaos, Duration, Barrageable", + tagString = "AoE, Projectile, Fire, Chaos, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6166,9 +6348,10 @@ return { fire = true, duration = true, orb = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Fire, Duration, Orb", + tagString = "AoE, Sustained, Fire, Duration, Orb, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -6190,9 +6373,10 @@ return { area = true, projectile = true, fire = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Fire", + tagString = "AoE, Projectile, Fire, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -6213,10 +6397,10 @@ return { projectile = true, lightning = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Duration, Barrageable", + tagString = "AoE, Projectile, Lightning, Duration, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6242,9 +6426,10 @@ return { fire = true, payoff = true, remnant = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Lightning, Cold, Fire, Payoff, Remnant", + tagString = "AoE, Lightning, Cold, Fire, Payoff, Remnant, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -6366,6 +6551,7 @@ return { }, gemType = "Buff", tagString = "Attack, Persistent, AoE, Melee, Trigger, Fire", + weaponRequirements = "Any Shield", reqStr = 100, reqDex = 0, reqInt = 0, @@ -6384,9 +6570,10 @@ return { spell = true, projectile = true, cold = true, + repeatable = true, }, gemType = "Spell", - tagString = "Projectile, Cold", + tagString = "Projectile, Cold, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -6408,11 +6595,11 @@ return { projectile = true, chaos = true, duration = true, - barrageable = true, + repeatable = true, plant = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Chaos, Duration, Barrageable, Plant", + tagString = "AoE, Projectile, Chaos, Duration, Repeatable, Plant", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -6632,6 +6819,30 @@ return { Tier = 2, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemEonyrsThunderSupport"] = { + name = "Eonyr's Thunder", + gameId = "Metadata/Items/Gems/SupportGemEonyrsThunder", + variantId = "EonyrsThunderSupport", + grantedEffectId = "SupportEonyrsThunderPlayer", + additionalGrantedEffectId1 = "TriggeredLightningDetonateDeadPlayer", + tags = { + support = true, + grants_active_skill = true, + lineage = true, + spell = true, + area = true, + trigger = true, + lightning = true, + }, + gemType = "Support", + gemFamily = "Electrocute", + tagString = "Lineage, Spell, AoE, Trigger, Lightning", + reqStr = 0, + reqDex = 100, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, ["Metadata/Items/Gems/SkillGemRagingSpirits"] = { name = "Raging Spirits", baseTypeName = "Raging Spirits", @@ -6793,11 +7004,11 @@ return { area = true, projectile = true, duration = true, - barrageable = true, + repeatable = true, wind = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Duration, Barrageable, Wind", + tagString = "AoE, Projectile, Duration, Repeatable, Wind", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -6843,10 +7054,10 @@ return { fire = true, duration = true, detonator = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Fire, Duration, Detonator, Barrageable", + tagString = "AoE, Projectile, Fire, Duration, Detonator, Repeatable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -7117,9 +7328,10 @@ return { area = true, chaos = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Chaos, Duration", + tagString = "AoE, Chaos, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -7155,17 +7367,17 @@ return { grantedEffectId = "DarkEffigyPlayer", additionalGrantedEffectId1 = "DarkEffigyProjectilePlayer", tags = { + totem = true, intelligence = true, grants_active_skill = true, spell = true, - totem = true, area = true, projectile = true, chaos = true, duration = true, }, - gemType = "Spell", - tagString = "Totem, AoE, Projectile, Chaos, Duration", + gemType = "Totem", + tagString = "Spell, AoE, Projectile, Chaos, Duration", reqStr = 0, reqDex = 0, reqInt = 100, @@ -7320,14 +7532,19 @@ return { gameId = "Metadata/Items/Gem/SupportGemDecayingHex", variantId = "DecayingHexSupport", grantedEffectId = "SupportDecayingHexPlayer", + additionalGrantedEffectId1 = "TriggeredDecayingHexPlayer", tags = { support = true, + grants_active_skill = true, + spell = true, + trigger = true, chaos = true, + duration = true, curse = true, }, gemType = "Support", gemFamily = "Decaying Hex", - tagString = "Chaos, Curse", + tagString = "Spell, Trigger, Chaos, Duration, Curse", reqStr = 0, reqDex = 0, reqInt = 100, @@ -7673,9 +7890,10 @@ return { area = true, physical = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Duration", + tagString = "AoE, Physical, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -7715,8 +7933,6 @@ return { grantedEffectDisplayOrder = { 1 }, tags = { buff = true, - strength = true, - dexterity = true, grants_active_skill = true, persistent = true, area = true, @@ -7727,8 +7943,8 @@ return { }, gemType = "Buff", tagString = "Persistent, AoE, Physical, Fire, Detonator, Travel", - reqStr = 50, - reqDex = 50, + reqStr = 0, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -7923,9 +8139,10 @@ return { projectile = true, fire = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Fire, Duration", + tagString = "AoE, Projectile, Fire, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -7947,9 +8164,10 @@ return { projectile = true, lightning = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Lightning, Duration", + tagString = "AoE, Projectile, Lightning, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -8621,10 +8839,10 @@ return { attack = true, area = true, projectile = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Barrageable", + tagString = "AoE, Projectile, Repeatable", weaponRequirements = "Spear", reqStr = 0, reqDex = 0, @@ -8642,10 +8860,10 @@ return { grants_active_skill = true, attack = true, projectile = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "Projectile, Barrageable", + tagString = "Projectile, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 0, @@ -8676,6 +8894,30 @@ return { Tier = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemPlayerDefaultGrenadeLauncher"] = { + name = "Grenade", + baseTypeName = "Grenade", + gameId = "Metadata/Items/Gem/SkillGemPlayerDefaultGrenadeLauncher", + variantId = "PlayerDefaultGrenadeLauncher", + grantedEffectId = "MeleeGrenadeLauncherPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + grenade = true, + physical = true, + duration = true, + }, + gemType = "Attack", + tagString = "AoE, Projectile, Grenade, Physical, Duration", + weaponRequirements = "Crossbow", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemAscendancyLifeRemnants"] = { name = "Life Remnants", baseTypeName = "Life Remnants", @@ -9228,58 +9470,171 @@ return { Tier = 0, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemMirageDeadeye"] = { - name = "Mirage Deadeye", - baseTypeName = "Mirage Deadeye", - gameId = "Metadata/Items/Gem/SkillGemAscendancyMirageDeadeye", - variantId = "MirageDeadeye", - grantedEffectId = "MetaMirageDeadeyePlayer", - additionalGrantedEffectId1 = "SupportMirageDeadeyePlayer", - additionalGrantedEffectId2 = "MirageDeadeyeSpawnPlayer", - grantedEffectDisplayOrder = { 1, 2 }, + ["Metadata/Items/Gems/SkillGemVividStampede"] = { + name = "Vivid Stampede", + baseTypeName = "Vivid Stampede", + gameId = "Metadata/Items/Gem/SkillGemAscendancyVividStampede", + variantId = "VividStampede", + grantedEffectId = "VividStampedePlayer", tags = { - buff = true, grants_active_skill = true, - persistent = true, + attack = true, + area = true, trigger = true, + lightning = true, duration = true, - meta = true, }, - gemType = "Buff", - tagString = "Persistent, Trigger, Duration, Meta", - weaponRequirements = "Spear, Bow, Crossbow", + gemType = "Attack", + tagString = "AoE, Trigger, Lightning, Duration", + weaponRequirements = "Any Martial Weapon, Unarmed", reqStr = 0, reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemInevitableAgony"] = { - name = "Inevitable Agony", - baseTypeName = "Inevitable Agony", - gameId = "Metadata/Items/Gem/SkillGemAscendancyInevitableAgony", - variantId = "InevitableAgony", - grantedEffectId = "InevitableAgonyPlayer", + ["Metadata/Items/Gems/SkillGemWildProtector"] = { + name = "Wild Protector", + baseTypeName = "Wild Protector", + gameId = "Metadata/Items/Gem/SkillGemWildProtector", + variantId = "WildProtector", + grantedEffectId = "WildProtectorPlayer", tags = { grants_active_skill = true, - spell = true, - area = true, - duration = true, - curse = true, + minion = true, + companion = true, + persistent = true, + physical = true, }, - gemType = "Spell", - tagString = "AoE, Duration, Curse", + gemType = "Minion", + tagString = "Companion, Persistent, Physical", reqStr = 0, reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, - ["Metadata/Items/Gems/SkillGemMetaDeadeyeMarks"] = { - name = "Called Shots", - baseTypeName = "Called Shots", - gameId = "Metadata/Items/Gem/SkillGemAscendanyMetaDeadeyeMarks", - variantId = "MetaDeadeyeMarks", + ["Metadata/Items/Gems/SkillGemHollowForm"] = { + name = "Hollow Form", + baseTypeName = "Hollow Form", + gameId = "Metadata/Items/Gem/SkillGemAscendancyHollowForm", + variantId = "HollowForm", + grantedEffectId = "MetaHollowFormPlayer", + additionalGrantedEffectId1 = "SupportHollowFormPlayer", + tags = { + grants_active_skill = true, + attack = true, + melee = true, + sustained = true, + channelling = true, + meta = true, + }, + gemType = "Attack", + tagString = "Melee, Sustained, Channelling, Meta", + weaponRequirements = "Any Melee Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemHollowFocus"] = { + name = "Hollow Focus", + baseTypeName = "Hollow Focus", + gameId = "Metadata/Items/Gem/SkillGemAscendancyHollowFocus", + variantId = "HollowFocus", + grantedEffectId = "HollowFocusPlayer", + additionalStatSet1 = "HollowFocusNovaPlayer", + tags = { + grants_active_skill = true, + attack = true, + buff = true, + persistent = true, + area = true, + duration = true, + }, + gemType = "Attack", + tagString = "Buff, Persistent, AoE, Duration", + weaponRequirements = "Any Melee Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemHollowResonance"] = { + name = "Hollow Resonance", + baseTypeName = "Hollow Resonance", + gameId = "Metadata/Items/Gem/SkillGemAscendancyHollowResonance", + variantId = "HollowResonance", + grantedEffectId = "HollowResonancePlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + trigger = true, + }, + gemType = "Attack", + tagString = "AoE, Trigger", + weaponRequirements = "Any non-Talisman Melee Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMirageDeadeye"] = { + name = "Mirage Deadeye", + baseTypeName = "Mirage Deadeye", + gameId = "Metadata/Items/Gem/SkillGemAscendancyMirageDeadeye", + variantId = "MirageDeadeye", + grantedEffectId = "MetaMirageDeadeyePlayer", + additionalGrantedEffectId1 = "SupportMirageDeadeyePlayer", + additionalGrantedEffectId2 = "MirageDeadeyeSpawnPlayer", + grantedEffectDisplayOrder = { 1, 2 }, + tags = { + buff = true, + grants_active_skill = true, + persistent = true, + trigger = true, + duration = true, + meta = true, + }, + gemType = "Buff", + tagString = "Persistent, Trigger, Duration, Meta", + weaponRequirements = "Spear, Bow, Crossbow", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemInevitableAgony"] = { + name = "Inevitable Agony", + baseTypeName = "Inevitable Agony", + gameId = "Metadata/Items/Gem/SkillGemAscendancyInevitableAgony", + variantId = "InevitableAgony", + grantedEffectId = "InevitableAgonyPlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + duration = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "AoE, Duration, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMetaDeadeyeMarks"] = { + name = "Called Shots", + baseTypeName = "Called Shots", + gameId = "Metadata/Items/Gem/SkillGemAscendanyMetaDeadeyeMarks", + variantId = "MetaDeadeyeMarks", grantedEffectId = "MetaDeadeyeMarksPlayer", additionalGrantedEffectId1 = "SupportMetaDeadeyeMarksPlayer", tags = { @@ -9653,15 +10008,18 @@ return { gameId = "Metadata/Items/Gems/SupportGemCorruptingCry", variantId = "CorruptingCrySupport", grantedEffectId = "SupportCorruptingCryPlayer", + additionalGrantedEffectId1 = "TriggeredCorruptingCryPlayer", tags = { support = true, + grants_active_skill = true, warcry = true, + trigger = true, physical = true, duration = true, }, gemType = "Support", gemFamily = "Corrupting Cry", - tagString = "Warcry, Physical, Duration", + tagString = "Warcry, Trigger, Physical, Duration", reqStr = 100, reqDex = 0, reqInt = 0, @@ -9673,15 +10031,18 @@ return { gameId = "Metadata/Items/Gems/SupportGemCorruptingCryTwo", variantId = "CorruptingCrySupportTwo", grantedEffectId = "SupportCorruptingCryPlayerTwo", + additionalGrantedEffectId1 = "TriggeredCorruptingCryTwoPlayer", tags = { support = true, + grants_active_skill = true, warcry = true, + trigger = true, physical = true, duration = true, }, gemType = "Support", gemFamily = "Corrupting Cry", - tagString = "Warcry, Physical, Duration", + tagString = "Warcry, Trigger, Physical, Duration", reqStr = 100, reqDex = 0, reqInt = 0, @@ -9693,16 +10054,19 @@ return { gameId = "Metadata/Items/Gems/SupportGemCorruptingCryThree", variantId = "CorruptingCrySupportThree", grantedEffectId = "SupportCorruptingCryPlayerThree", + additionalGrantedEffectId1 = "TriggeredCorruptingCryThreePlayer", tags = { support = true, + grants_active_skill = true, lineage = true, warcry = true, + trigger = true, physical = true, duration = true, }, gemType = "Support", gemFamily = "Corrupting Cry", - tagString = "Lineage, Warcry, Physical, Duration", + tagString = "Lineage, Warcry, Trigger, Physical, Duration", reqStr = 100, reqDex = 0, reqInt = 0, @@ -9869,10 +10233,10 @@ return { lightning = true, chaining = true, payoff = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Lightning, Chaining, Payoff, Barrageable", + tagString = "AoE, Projectile, Lightning, Chaining, Payoff, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -10534,32 +10898,6 @@ return { Tier = 3, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemDoedresUndoingSupport"] = { - name = "Doedre's Undoing", - gameId = "Metadata/Items/Gem/SupportGemDoedresUndoing", - variantId = "DoedresUndoingSupport", - grantedEffectId = "SupportDoedresUndoingPlayer", - additionalGrantedEffectId1 = "TriggeredCurseZoneHazardExplosionPlayer", - tags = { - support = true, - grants_active_skill = true, - lineage = true, - spell = true, - area = true, - trigger = true, - chaos = true, - curse = true, - hazard = true, - }, - gemType = "Support", - gemFamily = "Cursed Ground", - tagString = "Lineage, Spell, AoE, Trigger, Chaos, Curse, Hazard", - reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 0, - naturalMaxLevel = 1, - }, ["Metadata/Items/Gems/SkillGemHayoxisFulminationSupport"] = { name = "Hayoxi's Fulmination", gameId = "Metadata/Items/Gem/SupportGemHayoxisFulmination", @@ -10598,11 +10936,30 @@ return { support = true, lineage = true, warcry = true, - area = true, }, gemType = "Support", gemFamily = "Zerphi's Legacy", - tagString = "Lineage, Warcry, AoE", + tagString = "Lineage, Warcry", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemHelbrymsHideSupport"] = { + name = "Helbrym's Hide", + gameId = "Metadata/Items/Gem/SupportGemHelbrymsHide", + variantId = "HelbrymsHideSupport", + grantedEffectId = "SupportHelbrymsHidePlayer", + tags = { + support = true, + lineage = true, + shapeshift = true, + buff = true, + }, + gemType = "Support", + gemFamily = "Helbrym's Hide", + tagString = "Lineage, Shapeshift, Buff", reqStr = 100, reqDex = 0, reqInt = 0, @@ -10738,10 +11095,10 @@ return { attack = true, projectile = true, cold = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "Projectile, Cold, Barrageable", + tagString = "Projectile, Cold, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -10917,10 +11274,9 @@ return { grants_active_skill = true, buff = true, persistent = true, - duration = true, }, gemType = "Buff", - tagString = "Persistent, Duration", + tagString = "Persistent", reqStr = 75, reqDex = 0, reqInt = 25, @@ -11159,11 +11515,11 @@ return { projectile = true, physical = true, duration = true, - barrageable = true, + repeatable = true, wind = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Physical, Duration, Barrageable, Wind", + tagString = "AoE, Projectile, Physical, Duration, Repeatable, Wind", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -11173,7 +11529,7 @@ return { }, ["Metadata/Items/Gems/SkillGemChargeRegulation"] = { name = "Charge Regulation", - baseTypeName = "Charge Infusion", + baseTypeName = "Charge Regulation", gameId = "Metadata/Items/Gem/SkillGemChargeInfusion", variantId = "ChargeRegulation", grantedEffectId = "ChargeRegulationPlayer", @@ -11669,9 +12025,10 @@ return { area = true, projectile = true, cold = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Cold", + tagString = "AoE, Projectile, Cold, Repeatable", weaponRequirements = "Bow", reqStr = 0, reqDex = 100, @@ -11853,8 +12210,6 @@ return { additionalGrantedEffectId1 = "SupportMetaCastOnBlockPlayer", tags = { buff = true, - strength = true, - intelligence = true, grants_active_skill = true, persistent = true, trigger = true, @@ -11862,9 +12217,9 @@ return { }, gemType = "Buff", tagString = "Persistent, Trigger, Meta", - reqStr = 50, + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, @@ -11900,6 +12255,7 @@ return { grantedEffectId = "GatheringStormPlayer", additionalStatSet1 = "GatheringStormPerfectPlayer", additionalStatSet2 = "GatheringStormExplodePlayer", + additionalStatSet3 = "GatheringStormExplodeBetterPlayer", tags = { dexterity = true, intelligence = true, @@ -12923,7 +13279,7 @@ return { projectile = true, }, gemType = "Support", - gemFamily = "Additional Projectiles", + gemFamily = "Additional Projectiles, Seal", tagString = "Attack, Projectile", reqStr = 0, reqDex = 100, @@ -12959,11 +13315,10 @@ return { attack = true, projectile = true, lightning = true, - chaining = true, }, gemType = "Support", gemFamily = "Volt", - tagString = "Attack, Projectile, Lightning, Chaining", + tagString = "Attack, Projectile, Lightning", reqStr = 0, reqDex = 100, reqInt = 0, @@ -13331,24 +13686,6 @@ return { Tier = 1, naturalMaxLevel = 1, }, - ["Metadata/Items/Gems/SkillGemNadirSupport"] = { - name = "Nadir", - gameId = "Metadata/Items/Gem/SupportGemNadir", - variantId = "NadirSupport", - grantedEffectId = "SupportNadirPlayer", - tags = { - support = true, - stages = true, - }, - gemType = "Support", - gemFamily = "Nadir", - tagString = "Staged", - reqStr = 0, - reqDex = 0, - reqInt = 100, - Tier = 0, - naturalMaxLevel = 1, - }, ["Metadata/Items/Gems/SkillGemAbidingHexSupport"] = { name = "Abiding Hex", gameId = "Metadata/Items/Gem/SupportGemAbidingHex", @@ -13741,7 +14078,7 @@ return { reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 2, + Tier = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemRetreatSupport"] = { @@ -14754,7 +15091,7 @@ return { reqStr = 100, reqDex = 0, reqInt = 0, - Tier = 2, + Tier = 1, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemBrinkSupportTwo"] = { @@ -15393,9 +15730,10 @@ return { area = true, trigger = true, lightning = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Trigger, Lightning", + tagString = "AoE, Trigger, Lightning, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -15416,11 +15754,11 @@ return { area = true, projectile = true, duration = true, - barrageable = true, + repeatable = true, wind = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Duration, Barrageable, Wind", + tagString = "AoE, Projectile, Duration, Repeatable, Wind", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -15453,7 +15791,7 @@ return { reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 7, + Tier = 9, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemCullTheWeak"] = { @@ -15599,7 +15937,7 @@ return { reqStr = 0, reqDex = 100, reqInt = 0, - Tier = 9, + Tier = 7, naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemSpearOfSolaris"] = { @@ -15647,10 +15985,10 @@ return { sustained = true, lightning = true, duration = true, - barrageable = true, + repeatable = true, }, gemType = "Attack", - tagString = "AoE, Projectile, Sustained, Lightning, Duration, Barrageable", + tagString = "AoE, Projectile, Sustained, Lightning, Duration, Repeatable", weaponRequirements = "Spear", reqStr = 0, reqDex = 100, @@ -15838,8 +16176,6 @@ return { grantedEffectId = "MetaCastLightningSpellOnHitPlayer", additionalGrantedEffectId1 = "SupportMetaCastLightningSpellOnHitPlayer", tags = { - strength = true, - intelligence = true, grants_active_skill = true, buff = true, persistent = true, @@ -15849,9 +16185,9 @@ return { }, gemType = "Buff", tagString = "Persistent, Trigger, Lightning, Meta", - reqStr = 50, + reqStr = 0, reqDex = 0, - reqInt = 50, + reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, @@ -15886,8 +16222,6 @@ return { grantedEffectId = "GeminiSurgePlayer", additionalStatSet1 = "GeminiSurgeFirePlayer", tags = { - strength = true, - dexterity = true, grants_active_skill = true, attack = true, area = true, @@ -15897,8 +16231,8 @@ return { }, gemType = "Attack", tagString = "AoE, Trigger, Cold, Fire", - reqStr = 50, - reqDex = 50, + reqStr = 0, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -16050,10 +16384,11 @@ return { sustained = true, physical = true, duration = true, + repeatable = true, plant = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Physical, Duration, Plant", + tagString = "AoE, Sustained, Physical, Duration, Repeatable, Plant", reqStr = 50, reqDex = 0, reqInt = 50, @@ -16184,10 +16519,11 @@ return { cold = true, duration = true, payoff = true, + repeatable = true, storm = true, }, gemType = "Spell", - tagString = "AoE, Sustained, Cold, Duration, Payoff, Storm", + tagString = "AoE, Sustained, Cold, Duration, Payoff, Repeatable, Storm", reqStr = 0, reqDex = 0, reqInt = 100, @@ -16227,8 +16563,6 @@ return { additionalGrantedEffectId1 = "CrossbowRequiemPlayer", grantedEffectDisplayOrder = { 1, 0 }, tags = { - strength = true, - dexterity = true, grants_active_skill = true, attack = true, area = true, @@ -16240,8 +16574,8 @@ return { gemType = "Attack", tagString = "AoE, Ammunition, Projectile, Cold, Conditional", weaponRequirements = "Crossbow", - reqStr = 50, - reqDex = 50, + reqStr = 0, + reqDex = 0, reqInt = 0, Tier = 0, naturalMaxLevel = 20, @@ -16364,13 +16698,12 @@ return { buff = true, wolf = true, area = true, - melee = true, trigger = true, cold = true, duration = true, }, gemType = "Warcry", - tagString = "Attack, Shapeshift, Buff, Werewolf, AoE, Melee, Trigger, Cold, Duration", + tagString = "Attack, Shapeshift, Buff, Werewolf, AoE, Trigger, Cold, Duration", weaponRequirements = "Talisman", reqStr = 50, reqDex = 0, @@ -17063,10 +17396,11 @@ return { support = true, lineage = true, attack = true, + conditional = true, }, gemType = "Support", gemFamily = "Garukhan's Resolve", - tagString = "Lineage, Attack", + tagString = "Lineage, Attack, Conditional", reqStr = 0, reqDex = 100, reqInt = 0, @@ -17255,12 +17589,11 @@ return { tags = { support = true, lineage = true, - spell = true, storm = true, }, gemType = "Support", gemFamily = "Advancing Storm, Overabundance", - tagString = "Lineage, Spell, Storm", + tagString = "Lineage, Storm", reqStr = 0, reqDex = 0, reqInt = 100, @@ -17282,12 +17615,11 @@ return { area = true, melee = true, slam = true, - sustained = true, fire = true, duration = true, }, gemType = "Attack", - tagString = "AoE, Melee, Slam, Sustained, Fire, Duration", + tagString = "AoE, Melee, Slam, Fire, Duration", weaponRequirements = "One Hand Mace, Two Hand Mace", reqStr = 100, reqDex = 0, @@ -17325,10 +17657,10 @@ return { grantedEffectId = "MetaMortarCannonPlayer", additionalGrantedEffectId1 = "SupportMortarCannonPlayer", tags = { + totem = true, strength = true, dexterity = true, grants_active_skill = true, - totem = true, grenade = true, duration = true, meta = true, @@ -17375,6 +17707,25 @@ return { Tier = 13, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemPrimalBounty"] = { + name = "Primal Bounty", + baseTypeName = "Primal Bounty", + gameId = "Metadata/Items/Gem/SkillGemPrimalBounty", + variantId = "PrimalBounty", + grantedEffectId = "PrimalBountyPlayer", + tags = { + grants_active_skill = true, + buff = true, + trigger = true, + }, + gemType = "Buff", + tagString = "Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemFeastOfFlesh"] = { name = "Feast of Flesh", baseTypeName = "Feast of Flesh", @@ -17388,9 +17739,10 @@ return { buff = true, area = true, nova = true, + repeatable = true, }, gemType = "Spell", - tagString = "Buff, AoE, Nova", + tagString = "Buff, AoE, Nova, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -17485,8 +17837,6 @@ return { additionalStatSet1 = "CracklingPalmBoltPlayer", tags = { buff = true, - dexterity = true, - intelligence = true, grants_active_skill = true, attack = true, persistent = true, @@ -17497,8 +17847,8 @@ return { tagString = "Attack, Persistent, AoE, Lightning", weaponRequirements = "Unarmed", reqStr = 0, - reqDex = 50, - reqInt = 50, + reqDex = 0, + reqInt = 0, Tier = 0, naturalMaxLevel = 20, }, @@ -17560,9 +17910,10 @@ return { physical = true, chaos = true, duration = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Physical, Chaos, Duration", + tagString = "AoE, Physical, Chaos, Duration, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -17609,9 +17960,10 @@ return { projectile = true, cold = true, payoff = true, + repeatable = true, }, gemType = "Spell", - tagString = "AoE, Projectile, Cold, Payoff", + tagString = "AoE, Projectile, Cold, Payoff, Repeatable", reqStr = 0, reqDex = 0, reqInt = 100, @@ -17717,6 +18069,31 @@ return { Tier = 13, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemTheStarsAnswer"] = { + name = "The Stars Answer", + baseTypeName = "The Stars Answer", + gameId = "Metadata/Items/Gems/SkillGemTheStarsAnswer", + variantId = "TheStarsAnswer", + grantedEffectId = "TheStarsAnswerPlayer", + additionalGrantedEffectId1 = "TheStarsAnswerCometPlayer", + tags = { + grants_active_skill = true, + spell = true, + buff = true, + area = true, + trigger = true, + physical = true, + cold = true, + duration = true, + }, + gemType = "Spell", + tagString = "Buff, AoE, Trigger, Physical, Cold, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemApocalypse"] = { name = "Apocalypse", baseTypeName = "Apocalypse", @@ -18077,12 +18454,11 @@ return { grantedEffectId = "SupportAdvancingStormPlayer", tags = { support = true, - spell = true, storm = true, }, gemType = "Support", gemFamily = "Advancing Storm", - tagString = "Spell, Storm", + tagString = "Storm", reqStr = 0, reqDex = 0, reqInt = 100, @@ -18098,10 +18474,11 @@ return { support = true, warcry = true, area = true, + conditional = true, }, gemType = "Support", gemFamily = "Echoing Cry", - tagString = "Warcry, AoE", + tagString = "Warcry, AoE, Conditional", reqStr = 100, reqDex = 0, reqInt = 0, @@ -18327,4 +18704,1311 @@ return { Tier = 5, naturalMaxLevel = 1, }, + ["Metadata/Items/Gems/SkillGemMinionMeleeSplashSupport"] = { + name = "Minion Splash I", + gameId = "Metadata/Items/Gems/SupportGemMinionMeleeSplash", + variantId = "MinionMeleeSplashSupport", + grantedEffectId = "SupportMinionMeleeSplashPlayer", + tags = { + support = true, + attack = true, + minion = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Minion Area of Effect", + tagString = "Attack, Minion, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 2, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemMinionMeleeSplashSupportTwo"] = { + name = "Minion Splash II", + gameId = "Metadata/Items/Gems/SupportGemMinionMeleeSplashTwo", + variantId = "MinionMeleeSplashSupportTwo", + grantedEffectId = "SupportMinionMeleeSplashPlayerTwo", + tags = { + support = true, + attack = true, + minion = true, + melee = true, + strike = true, + }, + gemType = "Support", + gemFamily = "Minion Area of Effect", + tagString = "Attack, Minion, Melee, Strike", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 5, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArchonOfChayula"] = { + name = "Archon of Chayula", + baseTypeName = "Archon of Chayula", + gameId = "Metadata/Items/Gems/SkillGemArchonOfChayula", + variantId = "ArchonOfChayula", + grantedEffectId = "ArchonOfChayulaPlayer", + additionalGrantedEffectId1 = "ArchonOfChayulaTornadoPlayer", + tags = { + buff = true, + grants_active_skill = true, + attack = true, + area = true, + trigger = true, + physical = true, + chaos = true, + duration = true, + conditional = true, + storm = true, + }, + gemType = "Buff", + tagString = "Attack, AoE, Trigger, Physical, Chaos, Duration, Conditional, Storm", + weaponRequirements = "Any Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemAncientGifts"] = { + name = "Wildwood's Gifts", + baseTypeName = "Wildwood's Gifts", + gameId = "Metadata/Items/Gems/SkillGemAncientGifts", + variantId = "AncientGifts", + grantedEffectId = "AncientGiftsPlayer", + tags = { + grants_active_skill = true, + buff = true, + persistent = true, + remnant = true, + }, + gemType = "Buff", + tagString = "Persistent, Remnant", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemStarbornOnslaught"] = { + name = "Starborn Onslaught", + baseTypeName = "Starborn Onslaught", + gameId = "Metadata/Items/Gems/SkillGemStarbornOnslaught", + variantId = "StarbornOnslaught", + grantedEffectId = "StarbornOnslaughtPlayer", + additionalStatSet1 = "StarbornOnslaughtExplosions", + tags = { + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + physical = true, + cold = true, + duration = true, + }, + gemType = "Attack", + tagString = "AoE, Melee, Slam, Physical, Cold, Duration", + weaponRequirements = "Two Hand Mace", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemAzmerianSwarm"] = { + name = "Azmerian Swarms", + baseTypeName = "Azmerian Swarms", + gameId = "Metadata/Items/Gems/SkillGemAzmerianSwarm", + variantId = "AzmerianSwarm", + grantedEffectId = "AzmerianSwarmPlayer", + tags = { + buff = true, + grants_active_skill = true, + minion = true, + persistent = true, + physical = true, + lightning = true, + cold = true, + fire = true, + duration = true, + }, + gemType = "Buff", + tagString = "Minion, Persistent, Physical, Lightning, Cold, Fire, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemNightfallShieldThrow"] = { + name = "Soaring Midnight", + baseTypeName = "Soaring Midnight", + gameId = "Metadata/Items/Gems/SkillGemGlacialClash", + variantId = "NightfallShieldThrow", + grantedEffectId = "NightfallSoaringMidnightPlayer", + additionalGrantedEffectId1 = "NightfallEmbraceTheFallPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + projectile = true, + physical = true, + cold = true, + travel = true, + }, + gemType = "Attack", + tagString = "AoE, Melee, Slam, Projectile, Physical, Cold, Travel", + weaponRequirements = "Any Shield", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSpiritVessel"] = { + name = "Spirit Vessel", + baseTypeName = "Spirit Vessel", + gameId = "Metadata/Items/Gems/SkillGemSpiritVessel", + variantId = "SpiritVessel", + grantedEffectId = "SpiritVesselPlayer", + additionalGrantedEffectId1 = "SpiritVesselSupport", + tags = { + grants_active_skill = true, + minion = true, + companion = true, + persistent = true, + meta = true, + }, + gemType = "Minion", + tagString = "Companion, Persistent, Meta", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemHerDeclarationSupport"] = { + name = "Her Declaration", + gameId = "Metadata/Items/Gem/SupportGemHerDeclaration", + variantId = "HerDeclarationSupport", + grantedEffectId = "SupportHerDeclarationPlayer", + tags = { + support = true, + lineage = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Her Declaration", + tagString = "Lineage, Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPrototypeSeventeenSupport"] = { + name = "Prototype Seventeen", + gameId = "Metadata/Items/Gem/SupportGemPrototypeSeventeen", + variantId = "PrototypeSeventeenSupport", + grantedEffectId = "SupportPrototypeSeventeenPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Prototype", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemSeraphsHeartSupport"] = { + name = "Seraph's Heart", + gameId = "Metadata/Items/Gem/SupportGemSeraphsHeart", + variantId = "SeraphsHeartSupport", + grantedEffectId = "SupportSeraphsHeartPlayer", + tags = { + support = true, + lineage = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Seraph's Heart", + tagString = "Lineage, Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUhtredsRiteSupport"] = { + name = "Uhtred's Rite", + gameId = "Metadata/Items/Gem/SupportGemUhtredsRite", + variantId = "UhtredsRiteSupport", + grantedEffectId = "SupportUhtredsRitePlayer", + tags = { + support = true, + lineage = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Uhtred's Rite", + tagString = "Lineage, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTrickstersShardSupport"] = { + name = "Trickster's Shard", + gameId = "Metadata/Items/Gem/SupportGemTrickstersShard", + variantId = "TrickstersShardSupport", + grantedEffectId = "SupportTrickstersShardPlayer", + additionalGrantedEffectId1 = "TriggeredFracturedSelfPlayer", + tags = { + support = true, + grants_active_skill = true, + lineage = true, + spell = true, + area = true, + trigger = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Spell Echo", + tagString = "Lineage, Spell, AoE, Trigger, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemArbitersReachSupport"] = { + name = "Arbiter's Reach", + gameId = "Metadata/Items/Gem/SupportGemArbitersReach", + variantId = "ArbitersReachSupport", + grantedEffectId = "ArbitersReachWardPlayer", + tags = { + support = true, + lineage = true, + buff = true, + persistent = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Arbiter's Reach", + tagString = "Lineage, Buff, Persistent, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTangmazusThuribleSupport"] = { + name = "Tangmazu's Thurible", + gameId = "Metadata/Items/Gem/SupportGemTangmazusThurible", + variantId = "TangmazusThuribleSupport", + grantedEffectId = "SupportTangMazusThuriblePlayer", + tags = { + support = true, + lineage = true, + minion = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Hulking Minions", + tagString = "Lineage, Minion, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemMidnightStar"] = { + name = "Midnight Zenith", + baseTypeName = "Midnight Zenith", + gameId = "Metadata/Items/Gems/SkillGemMidnightStar", + variantId = "MidnightStar", + grantedEffectId = "MidnightStarPlayer", + additionalStatSet1 = "MidnightStarIceCrystalDetonate", + tags = { + grants_active_skill = true, + buff = true, + persistent = true, + area = true, + cold = true, + duration = true, + }, + gemType = "Buff", + tagString = "Persistent, AoE, Cold, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemEshsProwessSupport"] = { + name = "Esh's Prowess", + gameId = "Metadata/Items/Gem/SupportGemEshsProwess", + variantId = "EshsProwessSupport", + grantedEffectId = "SupportEshsProwess", + tags = { + support = true, + lineage = true, + lightning = true, + }, + gemType = "Support", + gemFamily = "Mastery", + tagString = "Lineage, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemBreachlordsAmalgamSupport"] = { + name = "Breachlord's Amalgam", + gameId = "Metadata/Items/Gem/SupportGemBreachlordsAmalgam", + variantId = "BreachlordsAmalgamSupport", + grantedEffectId = "SupportBreachlordsAmalgam", + tags = { + support = true, + lineage = true, + projectile = true, + lightning = true, + cold = true, + }, + gemType = "Support", + gemFamily = "Grants Cooldown", + tagString = "Lineage, Projectile, Lightning, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVruunsAftermathSupport"] = { + name = "Vruun's Aftermath", + gameId = "Metadata/Items/Gem/SupportGemVruunsAftermath", + variantId = "VruunsAftermathSupport", + grantedEffectId = "SupportVruunsAftermath", + tags = { + support = true, + lineage = true, + warcry = true, + }, + gemType = "Support", + gemFamily = "Vruun's Aftermath", + tagString = "Lineage, Warcry", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVruunsInevitabilitySupport"] = { + name = "Vruun's Inevitability", + gameId = "Metadata/Items/Gem/SupportGemVruunsInevitability", + variantId = "VruunsInevitabilitySupport", + grantedEffectId = "SupportVruunsInevitability", + tags = { + support = true, + lineage = true, + attack = true, + melee = true, + conditional = true, + }, + gemType = "Support", + gemFamily = "Increased Area of Effect", + tagString = "Lineage, Attack, Melee, Conditional", + reqStr = 100, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemUhtredsConstellationSupport"] = { + name = "Uhtred's Constellation", + gameId = "Metadata/Items/Gem/SupportGemUhtredsConstellation", + variantId = "UhtredsConstellationSupport", + grantedEffectId = "SupportUhtredsConstellation", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Second Wind", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemMedvedsFellingSupport"] = { + name = "Medved's Felling", + gameId = "Metadata/Items/Gem/SupportGemMedvedsFelling", + variantId = "MedvedsFellingSupport", + grantedEffectId = "SupportMedvedsFelling", + tags = { + support = true, + lineage = true, + attack = true, + melee = true, + }, + gemType = "Support", + gemFamily = "Rage", + tagString = "Lineage, Attack, Melee", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVoranasSiegeSupport"] = { + name = "Vorana's Siege", + gameId = "Metadata/Items/Gem/SupportGemVoranasSiege", + variantId = "VoranasSiegeSupport", + grantedEffectId = "SupportVoranasSiege", + tags = { + support = true, + lineage = true, + area = true, + }, + gemType = "Support", + gemFamily = "Increased Area of Effect, Concentrated Area", + tagString = "Lineage, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStyrnsMountainSupport"] = { + name = "Styrn's Mountain", + gameId = "Metadata/Items/Gem/SupportGemStyrnsMountain", + variantId = "StyrnsMountainSupport", + grantedEffectId = "SupportStyrnsMountain", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Styrn's Mountain", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemStyrnsFerocitySupport"] = { + name = "Styrn's Ferocity", + gameId = "Metadata/Items/Gem/SupportGemStyrnsFerocity", + variantId = "StyrnsFerocitySupport", + grantedEffectId = "SupportStyrnsFerocity", + tags = { + support = true, + lineage = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Armour Break", + tagString = "Lineage, Physical", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemCathasBrillianceSupport"] = { + name = "Catha's Brilliance", + gameId = "Metadata/Items/Gem/SupportGemCathasBrilliance", + variantId = "CathasBrillianceSupport", + grantedEffectId = "SupportCathasBrilliance", + tags = { + support = true, + lineage = true, + minion = true, + area = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Infernal Legion", + tagString = "Lineage, Minion, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemMorrigansInsightSupport"] = { + name = "Morrigan's Insight", + gameId = "Metadata/Items/Gem/SupportGemMorrigansInsight", + variantId = "MorrigansInsightSupport", + grantedEffectId = "SupportMorrigansInsight", + additionalGrantedEffectId1 = "TriggeredMorrigansInsightPlayer", + tags = { + support = true, + grants_active_skill = true, + lineage = true, + trigger = true, + cold = true, + duration = true, + payoff = true, + }, + gemType = "Support", + gemFamily = "Biting Frost", + tagString = "Lineage, Trigger, Cold, Duration, Payoff", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemTulsAvalancheSupport"] = { + name = "Tul's Avalanche", + gameId = "Metadata/Items/Gem/SupportGemTulsAvalanche", + variantId = "TulsAvalancheSupport", + grantedEffectId = "SupportTulsAvalanche", + tags = { + support = true, + lineage = true, + spell = true, + area = true, + }, + gemType = "Support", + gemFamily = "Spell Echo, Seal", + tagString = "Lineage, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemConcussiveRunesSupport"] = { + name = "Concussive Runes", + gameId = "Metadata/Items/Gems/SupportGemConcussiveRunes", + variantId = "ConcussiveRunesSupport", + grantedEffectId = "SupportConcussiveRunesPlayer", + additionalGrantedEffectId1 = "ConcussiveRunesPlayer", + tags = { + support = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + trigger = true, + }, + gemType = "Support", + gemFamily = "Concussive Runes", + tagString = "Attack, AoE, Melee, Slam, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemLeylines"] = { + name = "Leylines", + baseTypeName = "Leylines", + gameId = "Metadata/Items/Gems/SkillGemLeylines", + variantId = "Leylines", + grantedEffectId = "LeylinesPlayer", + tags = { + grants_active_skill = true, + buff = true, + persistent = true, + area = true, + duration = true, + }, + gemType = "Buff", + tagString = "Persistent, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFrostflameNova"] = { + name = "Frostflame Nova", + baseTypeName = "Frostflame Nova", + gameId = "Metadata/Items/Gems/SkillGemFrostflameNova", + variantId = "FrostflameNova", + grantedEffectId = "FrostflameNovaPlayer", + additionalStatSet1 = "FrostflameNovaColdHitPlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + cold = true, + fire = true, + nova = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "AoE, Cold, Fire, Nova, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemHollowShell"] = { + name = "Hollow Shell", + baseTypeName = "Hollow Shell", + gameId = "Metadata/Items/Gems/SkillGemHollowShell", + variantId = "HollowShell", + grantedEffectId = "HollowShellPlayer", + tags = { + grants_active_skill = true, + spell = true, + buff = true, + area = true, + nova = true, + }, + gemType = "Spell", + tagString = "Buff, AoE, Nova", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemMoltenShower"] = { + name = "Molten Shower", + baseTypeName = "Molten Shower", + gameId = "Metadata/Items/Gems/SkillGemMoltenShower", + variantId = "MoltenShower", + grantedEffectId = "TriggeredMoltenShowerPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + trigger = true, + fire = true, + }, + gemType = "Attack", + tagString = "AoE, Projectile, Trigger, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRunicInfusionSupport"] = { + name = "Runic Infusion", + gameId = "Metadata/Items/Gems/SupportGemRunicInfusion", + variantId = "RunicInfusionSupport", + grantedEffectId = "SupportRunicInfusionPlayer", + tags = { + support = true, + attack = true, + physical = true, + }, + gemType = "Support", + gemFamily = "Runic Infusion", + tagString = "Attack, Physical", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRuneforgedBladesSupport"] = { + name = "Runeforged Blades", + gameId = "Metadata/Items/Gems/SupportGemRuneforgedBlades", + variantId = "RuneforgedBladesSupport", + grantedEffectId = "SupportRuneforgedBladesPlayer", + additionalGrantedEffectId1 = "TriggeredRuneforgedBladesPlayer", + tags = { + support = true, + grants_active_skill = true, + attack = true, + projectile = true, + trigger = true, + payoff = true, + }, + gemType = "Support", + tagString = "Attack, Projectile, Trigger, Payoff", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemPoweredByVerisium"] = { + name = "Powered by Verisium", + baseTypeName = "Powered by Verisium", + gameId = "Metadata/Items/Gems/SkillGemPoweredByVerisium", + variantId = "PoweredByVerisium", + grantedEffectId = "PoweredByVerisiumPlayer", + tags = { + grants_active_skill = true, + spell = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRefutation"] = { + name = "Refutation", + baseTypeName = "Refutation", + gameId = "Metadata/Items/Gems/SkillGemRefutation", + variantId = "Refutation", + grantedEffectId = "RefutationPlayer", + tags = { + buff = true, + grants_active_skill = true, + spell = true, + duration = true, + repeatable = true, + }, + gemType = "Buff", + tagString = "Spell, Duration, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRepulsion"] = { + name = "Repulsion", + baseTypeName = "Repulsion", + gameId = "Metadata/Items/Gems/SkillGemRepulsion", + variantId = "Repulsion", + grantedEffectId = "CurseOfRepulsionPlayer", + additionalGrantedEffectId1 = "CurseOfRepulsionShockwavePlayer", + tags = { + grants_active_skill = true, + spell = true, + attack = true, + area = true, + trigger = true, + physical = true, + duration = true, + curse = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "Attack, AoE, Trigger, Physical, Duration, Curse, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemTriskelionCascade"] = { + name = "Triskelion Cascade", + baseTypeName = "Triskelion Cascade", + gameId = "Metadata/Items/Gems/SkillGemTriskelionCascade", + variantId = "TriskelionCascade", + grantedEffectId = "TriskelionCascadePlayer", + tags = { + grants_active_skill = true, + spell = true, + buff = true, + duration = true, + }, + gemType = "Spell", + tagString = "Buff, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSkyfall"] = { + name = "Skyfall", + baseTypeName = "Skyfall", + gameId = "Metadata/Items/Gems/SkillGemSkyfall", + variantId = "Skyfall", + grantedEffectId = "SkyfallPlayer", + additionalStatSet1 = "SkyfallInfusedPlayer", + tags = { + grants_active_skill = true, + spell = true, + minion = true, + area = true, + physical = true, + cold = true, + conditional = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "Minion, AoE, Physical, Cold, Conditional, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemDetonateLiving"] = { + name = "Detonate Living", + baseTypeName = "Detonate Living", + gameId = "Metadata/Items/Gems/SkillGemDetonateLiving", + variantId = "DetonateLiving", + grantedEffectId = "DetonateLivingPlayer", + additionalStatSet1 = "DetonateLivingExplodePlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + physical = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "AoE, Physical, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemAnimusExchange"] = { + name = "Animus Exchange", + baseTypeName = "Animus Exchange", + gameId = "Metadata/Items/Gems/SkillGemAnimusExchange", + variantId = "AnimusExchange", + grantedEffectId = "AnimusExchangePlayer", + tags = { + grants_active_skill = true, + spell = true, + }, + gemType = "Spell", + tagString = "", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemBitterDead"] = { + name = "Bitter Dead", + baseTypeName = "Bitter Dead", + gameId = "Metadata/Items/Gems/SkillGemBitterDead", + variantId = "BitterDead", + grantedEffectId = "BitterDeadPlayer", + additionalStatSet1 = "BitterDeadExplosionPlayer", + additionalStatSet2 = "BitterDeadChillAuraPlayer", + additionalStatSet3 = "BitterDeadRuneAuraPlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + cold = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "AoE, Cold, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemEternalMarch"] = { + name = "Eternal March", + baseTypeName = "Eternal March", + gameId = "Metadata/Items/Gems/SkillGemEternalMarch", + variantId = "EternalMarch", + grantedEffectId = "EternalMarchPlayer", + tags = { + grants_active_skill = true, + spell = true, + minion = true, + }, + gemType = "Spell", + tagString = "Minion", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemGrimPillars"] = { + name = "Grim Pillars", + baseTypeName = "Grim Pillars", + gameId = "Metadata/Items/Gems/SkillGemGrimPillars", + variantId = "GrimPillars", + grantedEffectId = "GrimPillarsPlayer", + additionalStatSet1 = "GrimPillarsExplodePlayer", + tags = { + grants_active_skill = true, + spell = true, + area = true, + cold = true, + duration = true, + nova = true, + }, + gemType = "Spell", + tagString = "AoE, Cold, Duration, Nova", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemVerisiumManifestation"] = { + name = "Verisium Manifestations", + baseTypeName = "Verisium Manifestations", + gameId = "Metadata/Items/Gems/SkillGemVerisiumManifestation", + variantId = "VerisiumManifestation", + grantedEffectId = "VerisiumManifestationPlayer", + additionalGrantedEffectId1 = "TriggeredManifestRunePlayer", + tags = { + buff = true, + grants_active_skill = true, + minion = true, + persistent = true, + duration = true, + }, + gemType = "Buff", + tagString = "Minion, Persistent, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRemnantsOfKalguur"] = { + name = "Remnants of Kalguur", + baseTypeName = "Remnants of Kalguur", + gameId = "Metadata/Items/Gems/SkillGemRemnantsOfKalguur", + variantId = "RemnantsOfKalguur", + grantedEffectId = "MetaRemnantsOfKalguurPlayer", + tags = { + grants_active_skill = true, + buff = true, + persistent = true, + remnant = true, + }, + gemType = "Buff", + tagString = "Persistent, Remnant", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemWardboundMinions"] = { + name = "Wardbound Minions", + baseTypeName = "Wardbound Minions", + gameId = "Metadata/Items/Gems/SkillGemWardboundMinions", + variantId = "WardboundMinions", + grantedEffectId = "WardboundMinionsPlayer", + tags = { + grants_active_skill = true, + spell = true, + minion = true, + duration = true, + repeatable = true, + }, + gemType = "Spell", + tagString = "Minion, Duration, Repeatable", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRunicExtractionSupport"] = { + name = "Runic Extraction", + gameId = "Metadata/Items/Gems/SupportGemRunicExtraction", + variantId = "RunicExtractionSupport", + grantedEffectId = "SupportRunicExtractionPlayer", + tags = { + support = true, + remnant = true, + }, + gemType = "Support", + gemFamily = "Runic Extraction", + tagString = "Remnant", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemFragmentsOfThePast"] = { + name = "Fragments Of The Past", + baseTypeName = "Fragments of the Past", + gameId = "Metadata/Items/Gems/SkillGemFragmentsOfThePast", + variantId = "FragmentsOfThePast", + grantedEffectId = "FragmentsOfThePastPlayer", + additionalGrantedEffectId1 = "FragmentsOfThePastFragmentPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + trigger = true, + sustained = true, + cold = true, + duration = true, + }, + gemType = "Attack", + tagString = "AoE, Projectile, Trigger, Sustained, Cold, Duration", + weaponRequirements = "Any Martial Weapon, Unarmed", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemConductiveRunes"] = { + name = "Conductive Runes", + baseTypeName = "Conductive Runes", + gameId = "Metadata/Items/Gems/SkillGemConductiveRunes", + variantId = "ConductiveRunes", + grantedEffectId = "ConductiveRunesPlayer", + additionalStatSet1 = "ConductiveRunesExplosionPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + lightning = true, + duration = true, + hazard = true, + }, + gemType = "Attack", + tagString = "AoE, Lightning, Duration, Hazard", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemAnimusSplinters"] = { + name = "Animus Splinters", + baseTypeName = "Animus Splinters", + gameId = "Metadata/Items/Gems/SkillGemAnimusSplinters", + variantId = "AnimusSplinters", + grantedEffectId = "MetaAnimusSplintersPlayer", + additionalGrantedEffectId1 = "SupportAnimusSplintersPlayer", + tags = { + grants_active_skill = true, + meta = true, + }, + gemType = "Meta", + tagString = "", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemScouringFlame"] = { + name = "Scouring Flame", + gameId = "Metadata/Items/Gems/SupportGemScouringFlame", + variantId = "ScouringFlame", + grantedEffectId = "SupportScouringFlamePlayer", + tags = { + support = true, + fire = true, + }, + gemType = "Support", + gemFamily = "Searing Flame", + tagString = "Fire", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemRunicReprieve"] = { + name = "Runic Reprieve", + baseTypeName = "Runic Reprieve", + gameId = "Metadata/Items/Gems/SkillGemRunicReprieve", + variantId = "RunicReprieve", + grantedEffectId = "RunicReprievePlayer", + tags = { + grants_active_skill = true, + spell = true, + channelling = true, + }, + gemType = "Spell", + tagString = "Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemFistOfKalguurSupport"] = { + name = "Fist Of Kalguur", + gameId = "Metadata/Items/Gems/SupportGemFistOfKalguur", + variantId = "FistOfKalguurSupport", + grantedEffectId = "SupportFistOfKalguurPlayer", + additionalGrantedEffectId1 = "TriggeredFistOfKalguurPlayer", + tags = { + support = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + slam = true, + trigger = true, + physical = true, + duration = true, + }, + gemType = "Support", + gemFamily = "Fist of War", + tagString = "Attack, AoE, Melee, Slam, Trigger, Physical, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemVoltaicBarrier"] = { + name = "Voltaic Barrier", + baseTypeName = "Voltaic Barrier", + gameId = "Metadata/Items/Gems/SkillGemVoltaicBarrier", + variantId = "VoltaicBarrier", + grantedEffectId = "VoltaicBarrierPlayer", + additionalGrantedEffectId1 = "VoltaicBarrierTriggeredChainLightningPlayer", + tags = { + grants_active_skill = true, + attack = true, + area = true, + trigger = true, + lightning = true, + chaining = true, + }, + gemType = "Attack", + tagString = "AoE, Trigger, Lightning, Chaining", + weaponRequirements = "Any non-Talisman Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemHealingRunesSupport"] = { + name = "Healing Runes", + gameId = "Metadata/Items/Gems/SupportGemHealingRunes", + variantId = "HealingRunesSupport", + grantedEffectId = "SupportHealingRunesPlayer", + tags = { + support = true, + buff = true, + persistent = true, + }, + gemType = "Support", + gemFamily = "Healing Runes", + tagString = "Buff, Persistent", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemOlrothsConvictionSupport"] = { + name = "Olroth's Conviction", + gameId = "Metadata/Items/Gems/SupportOlrothsConviction", + variantId = "OlrothsConvictionSupport", + grantedEffectId = "SupportOlrothsConvictionPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Olroth's Conviction", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, + ["Metadata/Items/Gems/SkillGemExplosiveTransmutation"] = { + name = "Explosive Transmutation", + baseTypeName = "Explosive Transmutation", + gameId = "Metadata/Items/Gems/SkillGemExplosiveTransmutation", + variantId = "ExplosiveTransmutation", + grantedEffectId = "ExplosiveTransmutationPlayer", + additionalGrantedEffectId1 = "TriggeredExplosiveTransmutationExplosionPlayer", + tags = { + buff = true, + grants_active_skill = true, + spell = true, + persistent = true, + area = true, + trigger = true, + physical = true, + lightning = true, + cold = true, + fire = true, + chaos = true, + }, + gemType = "Buff", + tagString = "Spell, Persistent, AoE, Trigger, Physical, Lightning, Cold, Fire, Chaos", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemRainOfBlades"] = { + name = "Rain of Blades", + baseTypeName = "Rain of Blades", + gameId = "Metadata/Items/Gems/SkillGemRainOfBlades", + variantId = "RainOfBlades", + grantedEffectId = "RainOfBladesPlayer", + additionalGrantedEffectId1 = "RainOfBladesTriggeredPlayer", + tags = { + grants_active_skill = true, + attack = true, + buff = true, + area = true, + trigger = true, + duration = true, + }, + gemType = "Attack", + tagString = "Buff, AoE, Trigger, Duration", + weaponRequirements = "Any Martial Weapon", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemOlrothsHubrisSupport"] = { + name = "Olroth's Hubris", + gameId = "Metadata/Items/Gems/SupportGemOlrothsHubris", + variantId = "OlrothsHubrisSupport", + grantedEffectId = "SupportOlrothsHubrisPlayer", + tags = { + support = true, + lineage = true, + }, + gemType = "Support", + gemFamily = "Runic Infusion", + tagString = "Lineage", + reqStr = 0, + reqDex = 0, + reqInt = 0, + Tier = 0, + naturalMaxLevel = 1, + }, } \ No newline at end of file diff --git a/src/Data/Global.lua b/src/Data/Global.lua index ea262f7458..104eaba23c 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -340,7 +340,7 @@ function MatchKeywordFlags(keywordFlags, modKeywordFlags) end -- Active skill types, used in ActiveSkills.dat and GrantedEffects.dat --- Names taken from ActiveSkillType.dat as of PoE 3.17 +-- Names taken from ActiveSkillType.dat SkillType = { Attack = 1, Spell = 2, @@ -425,7 +425,7 @@ SkillType = { CanHaveBlessing = 81, ProjectilesNotFromUser = 82, AttackInPlace = 83, - AttackInPlaceIsDefault = 83, + AttackInPlaceIsDefault = 84, Nova = 85, InstantNoRepeatWhenHeld = 86, InstantShiftAttackForLeftMouse = 87, @@ -475,61 +475,61 @@ SkillType = { ConsumesCharges = 131, ManualCooldownConsumption = 132, SupportedByHourglass = 133, - ConsumesFullyBrokenArmour = 134, - SkillConsumesFreeze = 135, - SkillConsumesIgnite = 136, - SkillConsumesShock = 137, - Wall = 138, - Persistent = 139, - UsableWhileMoving = 140, - CanBecomeArrowRain = 141, - MultipleReservation = 142, - SupportedByElementalDischarge = 143, - Limit = 144, - Singular = 145, - GeneratesCharges = 146, - EmpowersOtherSkill = 147, - PerformsFinalStrike = 148, - PerfectTiming = 149, - CanHaveMultipleOngoingSkillInstances = 150, - Sustained = 151, - ComboStacking = 152, - SupportedByComboFinisher = 153, - Offering = 154, - Retaliation = 155, - Shapeshift = 156, - Invocation = 157, - Grenade = 158, - NoDualWield = 159, - QuarterstaffSkill = 160, - SupportedByFountains = 161, - Jumping = 162, - CannotChain = 163, - CreatesGroundRune = 164, - CreatesFissure = 165, - SummonsAttackTotem = 166, - NonWeaponAttack = 167, - CreatesGroundEffect = 168, - SupportedByComboMastery = 169, - IceCrystal = 170, - SkillConsumesPowerChargesOnUse = 171, - SkillConsumesFrenzyChargesOnUse = 172, - SkillConsumesEnduranceChargesOnUse = 173, - SupportedByFerocity = 174, - SupportedByPotential = 175, - ProjectileNoCollision = 176, - SupportedByExcise = 177, - SupportedByExpanse = 178, - SupportedByExecrate = 179, - IsBlasphemy = 180, - PersistentShowsCastTime = 181, - GeneratesEnergy = 182, - GeneratesRemnants = 183, - CommandableMinion = 184, - Bow = 185, - AffectsPresence = 186, - GainsStages = 187, - HasSeals = 188, + SupportedByBreachlordsAmalgam = 134, + ConsumesFullyBrokenArmour = 135, + SkillConsumesFreeze = 136, + SkillConsumesIgnite = 137, + SkillConsumesShock = 138, + Wall = 139, + Persistent = 140, + UsableWhileMoving = 141, + CanBecomeArrowRain = 142, + MultipleReservation = 143, + SupportedByElementalDischarge = 144, + Limit = 145, + Singlular = 146, + GeneratesCharges = 147, + EmpowersOtherSkill = 148, + PerformsFinalStrike = 149, + PerfectTiming = 150, + CanHaveMultipleOngoingSkillInstances = 151, + Sustained = 152, + ComboStacking = 153, + SupportedByComboFinisher = 154, + Offering = 155, + Retaliation = 156, + Shapeshift = 157, + Invocation = 158, + Grenade = 159, + NoDualWield = 160, + Jumping = 161, + CannotChain = 162, + CreatesGroundRune = 163, + CreatesFissure = 164, + SummonsAttackTotem = 165, + NonWeaponAttack = 166, + CreatesGroundEffect = 167, + SupportedByComboMastery = 168, + IceCrystal = 169, + SkillConsumesPowerChargesOnUse = 170, + SkillConsumesFrenzyChargesOnUse = 171, + SkillConsumesEnduranceChargesOnUse = 172, + SupportedByFerocity = 173, + SupportedByPotential = 174, + ProjectileNoCollision = 175, + SupportedByExcise = 176, + SupportedByExpanse = 177, + SupportedByExecrate = 178, + IsBlasphemy = 179, + PersistentShowsCastTime = 180, + GeneratesEnergy = 181, + GeneratesRemnants = 182, + CommandableMinion = 183, + Bow = 184, + AffectsPresence = 185, + GainsStages = 186, + HasSeals = 187, + SupportedByExpand = 188, SupportedByUnleash = 189, SupportedBySalvo = 190, Spear = 191, @@ -583,24 +583,43 @@ SkillType = { FrozenSpite = 239, ObjectDurability = 240, Detonator = 241, - SupportedByOverabundanceThree = 242, - UnlimitedTotems = 243, - SupportedByHaemoCrystals = 244, - SupportedByFlamePillar = 245, - CanCreateStoneElementals = 246, - RemnantCannotBeShared = 247, - GamepadDoNotForceSkillAtLocation = 248, - GamepadDeflectable = 249, - GamepadForceAllowInteraction = 250, - Wyvern = 251, - Plant = 252, - Wind = 253, - SupportedByHayoxi = 254, - Storm = 255, - DisableUpdateActionLocationAfterRelease = 256, - InteractsWithElementalGround = 257, - SupportedByNovaProjectiles = 258, - Proxy = 259, + UnlimitedTotems = 242, + SupportedByHaemoCrystals = 243, + SupportedByFlamePillar = 244, + CanCreateStoneElementals = 245, + RemnantCannotBeShared = 246, + GamepadDoNotForceSkillAtLocation = 247, + GamepadDeflectable = 248, + GamepadForceAllowInteraction = 249, + Wyvern = 250, + Plant = 251, + Wind = 252, + SupportedByHayoxi = 253, + Storm = 254, + DisableUpdateActionLocationAfterRelease = 255, + InteractsWithElementalGround = 256, + SupportedByNovaProjectiles = 257, + UsedByProxy = 258, + SupportedByEchoingCry = 259, + SpecialAncestralBoost = 260, + Runic = 261, + ActiveBlock = 262, + SupportedByVruunsInevitablity = 263, + SupportedByTulsAvalanche = 264, + IndeterminateEmpowermentAmount = 265, + GamepadDoNotChannelSkillAtLocation = 266, + AffectedByCooldownRate = 267, + UsedByClone = 268, + SupportedByAncestralWarriorTotem = 269, + SupportedBySpellTotem = 270, + SupportedByBallistaTotem = 271, + SupportedByMortarTotem = 272, + SupportedByFeralInvocation = 273, + SupportedByMirageArcher = 274, + SupportedByMirageDeadeye = 275, + SupportedByHollowForm = 276, + SupportedByAnimusSplinters = 277, + HasNoCost = 278, } -- build reverse lookup @@ -613,4 +632,4 @@ GlobalCache = { cachedData = { MAIN = {}, CALCS = {}, CALCULATOR = {}, CACHE = {}, }, } -GlobalGemAssignments = { } \ No newline at end of file +GlobalGemAssignments = { } diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index dec02b08ec..ff7c0d3d99 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -638,7 +638,7 @@ minions["ManifestWeapon"] = { -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1] -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1] -- hide_buff_visuals [hide_buff_visuals = 1] - -- hide_mini_life_bar [hide_mini_life_bar = 1] + -- base_hide_mini_life_bar [base_hide_mini_life_bar = 1] -- set_use_melee_pattern_range [set_use_melee_pattern_range = 0] }, } @@ -670,7 +670,7 @@ minions["RavenousSwarm"] = { -- set_item_drop_slots [set_item_drop_slots = 0] -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0] mod("CurseImmune", "FLAG", 1, 0, 0), -- immune_to_curses [immune_to_curses = 1] - -- immune_to_auras_from_other_entities [immune_to_auras_from_other_entities = 1] + -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1] -- set_item_drop_slots [set_item_drop_slots = 0] -- mana_regeneration_rate_per_minute_% [mana_regeneration_rate_per_minute_% = 100] -- base_maximum_mana [base_maximum_mana = 100000] @@ -679,7 +679,6 @@ minions["RavenousSwarm"] = { mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0] mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0] mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0] - mod("HiddenMonster", "FLAG", 1, 0, 0), -- is_hidden_monster [is_hidden_monster = 1] mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1] mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1] mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1] @@ -734,7 +733,7 @@ minions["LivingLightning"] = { mod("Life", "OVERRIDE", 1, 0, 0), -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1] -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1] -- hide_buff_visuals [hide_buff_visuals = 1] - -- hide_mini_life_bar [hide_mini_life_bar = 1] + -- base_hide_mini_life_bar [base_hide_mini_life_bar = 1] }, } @@ -920,22 +919,17 @@ minions["WaterDjinn"] = { -- set_item_drop_slots [set_item_drop_slots = 0] -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0] -- no_blood_on_death [no_blood_on_death = 1] - mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1] -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1] - mod("Life", "OVERRIDE", 1, 0, 0), -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1] mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1] mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1] -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1] -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1] -- hide_buff_visuals [hide_buff_visuals = 1] - -- hide_mini_life_bar [hide_mini_life_bar = 1] -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1] -- set_cannot_die [set_cannot_die = 1] mod("StunDuration", "OVERRIDE", 5.6, 0, 0), -- set_base_heavy_stun_duration_ms [set_base_heavy_stun_duration_ms = 5600] -- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1] -- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1] - -- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1] - -- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1] }, } @@ -970,22 +964,17 @@ minions["FireDjinn"] = { -- set_item_drop_slots [set_item_drop_slots = 0] -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0] -- no_blood_on_death [no_blood_on_death = 1] - mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1] -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1] - mod("Life", "OVERRIDE", 1, 0, 0), -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1] mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1] mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1] -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1] -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1] -- hide_buff_visuals [hide_buff_visuals = 1] - -- hide_mini_life_bar [hide_mini_life_bar = 1] -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1] -- set_cannot_die [set_cannot_die = 1] mod("StunDuration", "OVERRIDE", 5.6, 0, 0), -- set_base_heavy_stun_duration_ms [set_base_heavy_stun_duration_ms = 5600] -- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1] -- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1] - -- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1] - -- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1] }, } @@ -1018,21 +1007,59 @@ minions["SandDjinn"] = { -- set_item_drop_slots [set_item_drop_slots = 0] -- set_action_attack_or_cast_time_uses_animation_length [set_action_attack_or_cast_time_uses_animation_length = 0] -- no_blood_on_death [no_blood_on_death = 1] - mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1] -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1] - mod("Life", "OVERRIDE", 1, 0, 0), -- set_base_maximum_life_is_one [set_base_maximum_life_is_one = 1] mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1] mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1] -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1] -- immune_to_auras_from_other_teams [immune_to_auras_from_other_teams = 1] -- hide_buff_visuals [hide_buff_visuals = 1] - -- hide_mini_life_bar [hide_mini_life_bar = 1] -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1] -- set_cannot_die [set_cannot_die = 1] mod("StunDuration", "OVERRIDE", 5.6, 0, 0), -- set_base_heavy_stun_duration_ms [set_base_heavy_stun_duration_ms = 5600] -- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1] -- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1] - -- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1] - -- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1] + }, +} + +minions["MistRaven"] = { + name = "Raven Conspiracy", + monsterTags = { "ranged", "Unarmed_onhit_audio", "very_slow_movement", }, + life = 1, + baseDamageIgnoresAttackSpeed = true, + fireResist = 0, + coldResist = 0, + lightningResist = 0, + chaosResist = 0, + damage = 0.67, + damageSpread = 0.2, + attackTime = 1, + attackRange = 6, + accuracy = 1, + baseMovementSpeed = 8, + spectreReservation = 50, + companionReservation = 30, + spawnLocation = { + }, + skillList = { + "ApplyTangmazuSwarmAuraPlayer", + "TangmazuMadFlightMinion", + }, + modList = { + mod("CurseImmune", "FLAG", 1, 0, 0), -- immune_to_curses [immune_to_curses = 1] + -- immune_to_auras_from_other_entities [immune_to_auras_from_other_entities = 1] + -- set_item_drop_slots [set_item_drop_slots = 0] + -- mana_regeneration_rate_per_minute_% [mana_regeneration_rate_per_minute_% = 100] + -- base_maximum_mana [base_maximum_mana = 100000] + -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1] + -- set_monster_do_not_fracture [set_monster_do_not_fracture = 1] + mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0] + mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0] + mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0] + mod("HiddenMonster", "FLAG", 1, 0, 0), -- is_hidden_monster [is_hidden_monster = 1] + mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1] + mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1] + mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1] + -- is_daemon [is_daemon = 1] + -- set_skill_can_be_active_blocked_from_all_directions [set_skill_can_be_active_blocked_from_all_directions = 1] }, } diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua index 59bd44539a..f481415fe7 100644 --- a/src/Data/Misc.lua +++ b/src/Data/Misc.lua @@ -4,13 +4,13 @@ local data = ... -- From DefaultMonsterStats.dat data.monsterEvasionTable = { 24, 30, 36, 43, 49, 56, 63, 70, 77, 84, 91, 98, 105, 113, 120, 128, 136, 144, 152, 160, 168, 176, 185, 193, 202, 211, 220, 229, 238, 247, 257, 266, 276, 286, 296, 306, 316, 326, 337, 347, 358, 369, 380, 391, 403, 414, 426, 438, 449, 462, 474, 486, 499, 511, 524, 537, 551, 564, 578, 591, 605, 619, 634, 648, 663, 677, 692, 708, 723, 738, 754, 770, 786, 803, 819, 836, 853, 870, 887, 905, 923, 941, 959, 977, 996, 1015, 1034, 1053, 1073, 1093, 1113, 1133, 1154, 1174, 1195, 1217, 1238, 1260, 1282, 1304, } data.monsterAccuracyTable = { 32, 35, 39, 43, 48, 52, 57, 62, 67, 72, 78, 84, 90, 96, 103, 110, 117, 124, 132, 140, 149, 158, 167, 176, 186, 196, 207, 218, 230, 242, 254, 267, 281, 295, 309, 325, 340, 356, 373, 391, 409, 428, 447, 468, 489, 511, 533, 557, 581, 606, 632, 659, 688, 717, 747, 778, 810, 844, 878, 914, 951, 990, 1030, 1071, 1114, 1158, 1204, 1251, 1300, 1351, 1403, 1457, 1514, 1572, 1632, 1694, 1758, 1824, 1893, 1964, 2038, 2114, 2192, 2273, 2357, 2444, 2534, 2626, 2722, 2821, 2923, 3029, 3138, 3251, 3368, 3488, 3613, 3741, 3874, 4011, } -data.monsterLifeTable = { 15, 20, 24, 28, 33, 38, 45, 50, 58, 67, 78, 89, 103, 118, 134, 158, 178, 200, 224, 249, 276, 305, 335, 366, 400, 434, 472, 510, 551, 593, 637, 683, 731, 790, 853, 921, 995, 1074, 1160, 1253, 1353, 1462, 1578, 1705, 1841, 1967, 2101, 2244, 2395, 2556, 2726, 2909, 3102, 3307, 3525, 3756, 4002, 4264, 4540, 4834, 5147, 5478, 5829, 6203, 6513, 6904, 7318, 7757, 8222, 8716, 9239, 9793, 10381, 11003, 11664, 12363, 13105, 13892, 14725, 15609, 16545, 17538, 18590, 19705, 20888, 22141, 23469, 24878, 26370, 27953, 29630, 31407, 33292, 35289, 37407, 39651, 42030, 44552, 47225, 50059, } +data.monsterLifeTable = { 15, 20, 24, 28, 33, 38, 45, 50, 58, 67, 78, 89, 103, 118, 134, 158, 178, 200, 224, 249, 276, 305, 335, 366, 400, 434, 472, 510, 551, 593, 637, 683, 731, 790, 853, 921, 995, 1074, 1160, 1253, 1353, 1462, 1578, 1705, 1841, 1967, 2101, 2244, 2395, 2556, 2726, 2909, 3102, 3307, 3525, 3756, 4002, 4264, 4540, 4834, 5147, 5478, 5829, 6203, 6555, 7079, 7646, 8257, 8918, 11148, 11984, 12882, 13849, 14887, 18609, 20005, 21505, 23118, 24852, 31065, 31997, 32956, 33945, 34963, 36012, 37093, 38206, 39352, 40532, 41748, 43001, 44291, 45619, 46988, 48398, 49850, 51345, 52885, 54472, 56106, } data.monsterAllyLifeTable = { 51, 83, 116, 150, 186, 223, 261, 300, 341, 382, 426, 471, 517, 565, 614, 665, 718, 772, 828, 886, 945, 1007, 1070, 1135, 1203, 1272, 1344, 1417, 1493, 1571, 1652, 1734, 1820, 1907, 1998, 2091, 2186, 2285, 2386, 2490, 2598, 2708, 2821, 2938, 3058, 3181, 3307, 3438, 3571, 3709, 3850, 3995, 4144, 4298, 4455, 4617, 4783, 4953, 5128, 5308, 5493, 5682, 5877, 6077, 6282, 6492, 6708, 6930, 7157, 7391, 7630, 7876, 8128, 8387, 8652, 8924, 9203, 9489, 9783, 10084, 10393, 10710, 11034, 11367, 11708, 12058, 12417, 12785, 13161, 13548, 13944, 14350, 14766, 15192, 15629, 16076, 16535, 17005, 17486, 17980, } data.monsterDamageTable = { 9.1599998474121, 10.260000228882, 11.390000343323, 12.569999694824, 13.779999732971, 15.029999732971, 16.319999694824, 17.64999961853, 19.020000457764, 20.440000534058, 21.89999961853, 23.409999847412, 24.969999313354, 26.569999694824, 28.229999542236, 29.930000305176, 31.690000534058, 33.5, 35.369998931885, 37.290000915527, 39.270000457764, 41.310001373291, 43.409999847412, 45.569999694824, 47.799999237061, 50.090000152588, 52.450000762939, 54.880001068115, 57.369998931885, 59.939998626709, 62.590000152588, 65.309997558594, 68.099998474121, 70.980003356934, 73.940002441406, 76.980003356934, 80.110000610352, 83.319999694824, 86.629997253418, 90.019996643066, 93.51000213623, 97.099998474121, 100.79000091553, 104.56999969482, 108.45999908447, 112.45999908447, 116.56999969482, 120.7799987793, 125.12000274658, 129.55999755859, 134.13000488281, 138.82000732422, 143.63999938965, 148.58000183105, 153.66000366211, 158.86999511719, 164.21000671387, 169.69999694824, 175.33999633789, 181.11999511719, 187.05000305176, 193.13999938965, 199.38000488281, 205.78999328613, 212.36000061035, 219.11000061035, 226.0299987793, 233.11999511719, 240.39999389648, 247.86000061035, 255.52000427246, 263.36999511719, 271.42001342773, 279.67999267578, 288.14001464844, 296.82000732422, 305.7200012207, 314.83999633789, 324.19000244141, 333.7799987793, 343.60000610352, 353.67001342773, 364, 374.57998657227, 385.42001342773, 396.5299987793, 407.92001342773, 419.57998657227, 431.54000854492, 443.79000854492, 456.33999633789, 469.20001220703, 482.38000488281, 495.86999511719, 509.70001220703, 523.85998535156, 538.36999511719, 553.22998046875, 568.46002197266, 584.04998779297, } data.monsterAllyDamageTable = { 3.1099998950958, 4.4200000762939, 5.8200001716614, 7.3099999427795, 8.9200000762939, 10.630000114441, 12.460000038147, 14.420000076294, 16.510000228882, 18.729999542236, 21.10000038147, 23.620000839233, 26.309999465942, 29.159999847412, 32.189998626709, 35.419998168945, 38.830001831055, 42.459999084473, 46.310001373291, 50.389999389648, 54.709999084473, 59.290000915527, 64.139999389648, 69.269996643066, 74.690002441406, 80.430000305176, 86.5, 92.910003662109, 99.690002441406, 106.83999633789, 114.40000152588, 122.37000274658, 130.78999328613, 139.66999816895, 149.03999328613, 158.91000366211, 169.32000732422, 180.28999328613, 191.86000061035, 204.03999328613, 216.86000061035, 230.36999511719, 244.60000610352, 259.57000732422, 275.32000732422, 291.89999389648, 309.33999633789, 327.69000244141, 346.98001098633, 367.26998901367, 388.58999633789, 411.01000976563, 434.57000732422, 459.32000732422, 485.32998657227, 512.65997314453, 541.34997558594, 571.48999023438, 603.14001464844, 636.36999511719, 671.26000976563, 707.86999511719, 746.29998779297, 786.63000488281, 828.94000244141, 873.34002685547, 919.90997314453, 968.76000976563, 1019.9899902344, 1073.7199707031, 1130.0600585938, 1189.1300048828, 1251.0600585938, 1315.9799804688, 1384.0300292969, 1455.3399658203, 1530.0799560547, 1608.4000244141, 1690.4599609375, 1776.4300537109, 1866.5, 1960.8399658203, 2059.6599121094, 2163.1599121094, 2271.5600585938, 2385.0600585938, 2503.9099121094, 2628.3601074219, 2758.6398925781, 2895.0300292969, 3037.8000488281, 3187.2399902344, 3343.6599121094, 3507.3500976563, 3678.6599121094, 3857.9299316406, 4045.5100097656, 4241.7700195313, 4447.1098632813, 4661.9301757813, } data.monsterArmourTable = { 3, 6, 8, 10, 13, 16, 19, 22, 26, 30, 34, 39, 43, 49, 54, 60, 67, 73, 81, 89, 97, 106, 116, 126, 137, 149, 161, 174, 189, 204, 220, 237, 255, 274, 295, 317, 340, 364, 391, 418, 448, 479, 512, 547, 585, 624, 666, 711, 758, 808, 861, 917, 976, 1039, 1105, 1176, 1250, 1329, 1412, 1500, 1594, 1692, 1796, 1906, 2023, 2146, 2276, 2413, 2558, 2712, 2874, 3044, 3225, 3416, 3617, 3829, 4053, 4290, 4540, 4803, 5081, 5375, 5684, 6011, 6355, 6718, 7101, 7505, 7930, 8379, 8852, 9351, 9877, 10431, 11015, 11630, 12279, 12962, 13682, 14441, } -data.monsterAilmentThresholdTable = { 15, 20, 24, 28, 34, 39, 46, 52, 60, 70, 81, 95, 110, 126, 144, 171, 193, 218, 245, 275, 306, 340, 376, 413, 455, 497, 543, 590, 641, 695, 752, 812, 874, 950, 1033, 1123, 1220, 1326, 1442, 1568, 1705, 1854, 2015, 2192, 2384, 2564, 2757, 2966, 3188, 3426, 3681, 3955, 4247, 4560, 4895, 5254, 5638, 6049, 6489, 6959, 7462, 8001, 8576, 9193, 9723, 10382, 11085, 11837, 12639, 13497, 14413, 15390, 16435, 17549, 18742, 20013, 21372, 22824, 24373, 26029, 27796, 29684, 31700, 33852, 36153, 38608, 41230, 44033, 47023, 50219, 53630, 57272, 61164, 65318, 69757, 74494, 79554, 84958, 90729, 96892, } -data.monsterPoiseThresholdTable = { 30, 40, 48, 57, 67, 79, 93, 106, 122, 142, 165, 192, 220, 254, 290, 344, 390, 437, 488, 542, 599, 659, 724, 791, 862, 937, 1015, 1097, 1183, 1273, 1367, 1464, 1567, 1660, 1758, 1864, 1976, 2093, 2219, 2352, 2494, 2644, 2804, 2971, 3150, 3369, 3598, 3846, 4109, 4387, 4685, 5002, 5338, 5697, 6078, 6485, 6915, 7377, 7866, 8386, 8940, 9528, 10153, 10819, 11376, 12648, 14061, 15634, 17382, 19326, 21492, 23897, 26573, 29553, 32864, 36550, 40649, 45211, 50282, 55927, 62209, 69197, 76969, 85615, 95241, 105954, 117866, 131122, 145878, 162291, 180568, 200887, 223518, 248690, 276705, 307880, 342574, 381187, 424158, 471974, } +data.monsterAilmentThresholdTable = { 15, 20, 24, 28, 34, 39, 46, 52, 60, 70, 81, 95, 110, 126, 144, 171, 193, 218, 245, 275, 306, 340, 376, 413, 455, 497, 543, 590, 641, 695, 752, 812, 874, 950, 1033, 1123, 1220, 1326, 1442, 1568, 1705, 1854, 2015, 2192, 2384, 2564, 2757, 2966, 3188, 3426, 3681, 3955, 4247, 4560, 4895, 5254, 5638, 6049, 6489, 6959, 7462, 8001, 8576, 9193, 9649, 10228, 10841, 11492, 12181, 18272, 19369, 20531, 21763, 23068, 34602, 36679, 38879, 41212, 43685, 65527, 68415, 71303, 74191, 77079, 79967, 82855, 85743, 88631, 91519, 94407, 97295, 100183, 103071, 105959, 108847, 111735, 114623, 117511, 120399, 123287, } +data.monsterPoiseThresholdTable = { 30, 40, 48, 57, 67, 79, 93, 106, 122, 142, 165, 192, 220, 254, 290, 344, 390, 437, 488, 542, 599, 659, 724, 791, 862, 937, 1015, 1097, 1183, 1273, 1367, 1464, 1567, 1660, 1758, 1864, 1976, 2093, 2219, 2352, 2494, 2644, 2804, 2971, 3150, 3369, 3598, 3846, 4109, 4387, 4685, 5002, 5338, 5697, 6078, 6485, 6915, 7377, 7866, 8386, 8940, 9528, 10153, 10819, 26703, 28651, 30662, 32890, 35192, 53405, 57263, 61392, 65810, 70537, 106973, 114630, 122820, 131580, 140949, 213635, 225270, 236905, 248540, 260175, 271810, 283445, 295080, 306715, 318350, 329985, 341620, 353255, 364890, 376525, 388160, 399795, 411430, 423065, 434700, 446335, } -- From MinionGemLevelScaling.dat data.minionLevelTable = { 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, } @@ -35,8 +35,10 @@ data.gameConstants = { ["MaxHideoutDoodads"] = 750, ["PassiveTreeJewelDistanceMultiplier"] = 1.2, ["PartyQuantityBonusPerAdditionalPlayer"] = 0.2, + ["PartyQuantityBonusPerAdditionalPlayerTencent"] = 0.16, ["PartyQuantityBonusPerAdditionalPlayerHardMode"] = 0.2, ["PartyRarityBonusPerAdditionalPlayer"] = 0, + ["PartyRarityBonusPerAdditionalPlayerTencent"] = 0, ["PartyRarityBonusPerAdditionalPlayerHardMode"] = 0, ["PartyUniqueBonusPerAdditionalPlayer"] = 0.3, ["LightStunMinimumChance"] = 15, @@ -111,13 +113,28 @@ data.gameConstants = { ["BaseFlammabilityDuration"] = 8, ["BaseFlammabilityDurationPlayer"] = 4, ["IgniteNonHitFlammabilityModifier"] = 0.8, - ["MinionsAreGiganticMagnitude"] = 20, + ["GiganticMagnitude"] = 20, ["NonHitFlammabilityPermyriadThresholdToIgnite"] = 5000, ["ShapeshiftVisualsDurationPlayer"] = 1.2, ["ShapeshiftRevertingAnimationDurationPlayer"] = 0, ["BriarpatchDurationSpeedWhenWet"] = -50, ["BriarpatchDamageTickSpeedWhenWet"] = 50, ["KeystoneAlternateESRecoveryPhysicalDamagePercentageRecoupedAsES"] = 5, + ["BaseMaximumRage"] = 30, + ["BaseRageLossPerMinute"] = 300, + ["BaseRageLossDelayMs"] = 4000, + ["ChronomancerDelayedSelfDamageDelayMs"] = 4000, + ["SpellEchoCascadeDelayMs"] = 500, + ["BaseWardRegenerationPercentPerMinute"] = 300, + ["DefaultLowStatusThresholdPercent"] = 35, + ["EffectiveMaxDamageForLeech"] = 40000, + ["RitualOfferedTributeRequirement"] = 30000, + ["RitualOfferedTributeRequirementQuest"] = 10000, + ["BaseMaximumInfusionCount"] = 3, + ["BaseInfusionDurationMs"] = 20000, + ["SupportGemGoldPrice"] = 228, + ["LineageSupportGemGoldPrice "] = 9091, + ["DivinityInherentRegenPercentPerMinute"] = 1500, } -- From Metadata/Characters/Character.ot data.characterConstants = { @@ -160,7 +177,6 @@ data.characterConstants = { ["minion_damage_taken_+%_from_arrow_traps_final"] = 0, ["minion_damage_taken_+%_from_guillotine_traps_final"] = -90, ["traps_explode_on_timeout"] = 1, - ["maximum_rage"] = 30, ["max_delve_degen_stacks"] = 5000, ["max_azurite_debuff_stacks"] = 10, ["melee_variation"] = 1, @@ -201,17 +217,12 @@ data.characterConstants = { ["crossbow_ammo_switch_time_ms"] = 300, ["light_stun_threshold_+%_final_per_number_of_times_stunned_in_past_duration_from_ot"] = 50, ["x_ms_for_number_of_times_stunned_in_past_duration_from_ot"] = 4000, - ["rage_loss_delay_ms"] = 4000, ["stun_base_duration_override_ms"] = 500, ["object_inherent_armour_break_amount_+%_final_against_normal_monsters"] = 200, ["object_inherent_armour_break_amount_+%_final_against_magic_monsters"] = 100, ["fixed_frost_wall_limit"] = 60, ["player_allow_dodge_roll_cancel"] = 1, - ["minimum_number_of_projectiles_to_fire_is_1"] = 1, - ["maximum_cold_infusion_stacks"] = 3, - ["maximum_fire_infusion_stacks"] = 3, - ["maximum_lightning_infusion_stacks"] = 3, - ["base_infusion_duration_ms"] = 20000, + ["object_innate_minimum_number_of_projectiles_to_fire_is_1"] = 1, ["maximum_caltrops_allowed"] = 20, ["maximum_briarpatches_allowed"] = 20, ["maximum_volatility_allowed_default"] = 200, @@ -225,6 +236,7 @@ data.characterConstants = { ["dodge_roll_sprint_turn_rate"] = 150, ["sprint_movement_speed_+%"] = 50, ["sprint_end_stun_linger_duration_ms"] = 200, + ["no_extra_bleeding_damage_while_moving"] = 1, ["base_speed"] = 37, } -- From Metadata/Monsters/Monster.ot @@ -261,15 +273,13 @@ data.monsterConstants = { ["maximum_energy_shield_+%_final_per_additional_player"] = 50, ["poise_threshold_+%_final_per_additional_player"] = 50, ["stun_base_duration_override_ms"] = 500, - ["bleeding_moving_damage_%_of_base_override"] = 200, + ["bleeding_moving_damage_%_of_base_override"] = 1, } -- From PlayerMinionIntrinsicStats.dat data.playerMinionIntrinsicStats = { ["stun_base_duration_override_ms"] = 500, ["global_always_hit"] = 1, ["base_critical_hit_damage_bonus"] = 70, - ["maximum_rage"] = 30, - ["rage_loss_delay_ms"] = 4000, ["attack_damage_final_permyriad_per_rage"] = 100, } -- From MonsterVarieties.dat combined with SkillTotemVariations.dat diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 9724787345..524bfaca78 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -9,7 +9,7 @@ c["(2-4)% chance to deal Double Damage"]={{[1]={[1]={globalLimit=100,globalLimit c["(2-4)% chance to deal Double Damage (25-35)% increased Physical Damage"]={{[1]={[1]={globalLimit=100,globalLimitKey="DamageDoubledLimit",type="Multiplier",var="DamageDoubled"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:DamageDoubled",type="OVERRIDE",value=1}},"(2-4)% chance to deal (25-35)% increased Physical Damage "} c["(2-4)% increased Magnitudes of Non-Curse Auras from your Skills"]={nil,"(2-4)% increased Magnitudes of Non-Curse Auras from your Skills "} c["(2-4)% increased maximum Life"]={nil,"(2-4)% increased maximum Life "} -c["(20-30)% increased Defences from Equipped Shield"]={nil,"(20-30)% increased Defences from Equipped Shield "} +c["(20-30)% increased Armour, Evasion and Energy Shield from Equipped Shield"]={nil,"(20-30)% increased Armour, Evasion and Energy Shield from Equipped Shield "} c["(25-35)% increased Chaos Damage"]={nil,"(25-35)% increased Chaos Damage "} c["(25-35)% increased Chaos Damage 25% chance to inflict Withered for 2 seconds on Hit"]={nil,"(25-35)% increased Chaos Damage 25% chance to inflict Withered for 2 seconds on Hit "} c["(25-35)% increased Cold Damage"]={nil,"(25-35)% increased Cold Damage "} @@ -43,7 +43,6 @@ c["(4-7)% increased Area of Effect"]={nil,"(4-7)% increased Area of Effect "} c["(4-7)% increased Skill Effect Duration"]={nil,"(4-7)% increased Skill Effect Duration "} c["(5-7)% chance to Blind Enemies on Hit"]={nil,"(5-7)% chance to Blind Enemies on Hit "} c["(6-10) Life gained when you Block"]={nil,"(6-10) Life gained when you Block "} -c["(6-10) Life gained when you Block +5% to Block chance"]={nil,"(6-10) Life gained when you Block +5% to Block chance "} c["(6-10)% increased Critical Damage Bonus"]={nil,"(6-10)% increased Critical Damage Bonus "} c["(6-10)% increased maximum Life"]={nil,"(6-10)% increased maximum Life "} c["(6-10)% increased maximum Life Regenerate (0.7-1.2)% of maximum Life per second"]={nil,"(6-10)% increased maximum Life Regenerate (0.7-1.2)% of maximum Life per second "} @@ -186,13 +185,14 @@ c["+100% of Armour applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,n c["+100% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}},nil} c["+100% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}},nil} c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil} +c["+102 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=102}},nil} c["+104 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=104}},nil} c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil} c["+111 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=111}},nil} +c["+113 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=113}},nil} c["+113 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=113}},nil} c["+113 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=113}},nil} c["+12 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=12}},nil} -c["+12 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=12}},nil} c["+12 to Spirit per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Spirit",type="BASE",value=12}},nil} c["+12 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=12}},nil} c["+12 to maximum Rage while Shapeshifted"]={{[1]={[1]={type="Condition",var="Shapeshifted"},flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=12}},nil} @@ -202,6 +202,7 @@ c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",valu c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},nil} c["+120 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=120}},nil} c["+120 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=120}},nil} +c["+124 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=124}},nil} c["+125 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=125}},nil} c["+125 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=125}},nil} c["+125 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=125}},nil} @@ -263,6 +264,7 @@ c["+1500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE" c["+16 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=16}},nil} c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil} c["+160 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=160}},nil} +c["+160 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=160}},nil} c["+17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}},nil} c["+17% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=17}},nil} c["+175 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=175}},nil} @@ -271,6 +273,7 @@ c["+175 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",t c["+18 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18}},nil} c["+18% to Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil} c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil} +c["+180 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=180}},nil} c["+19 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=19}},nil} c["+19% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=19}},nil} c["+2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=2}},nil} @@ -385,6 +388,8 @@ c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",t c["+3 to Level of all Alchemist's Boon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="alchemist's boon",value=3}}},nil} c["+3 to Level of all Ancestral Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral cry",value=3}}},nil} c["+3 to Level of all Ancestral Warrior Totem Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ancestral warrior totem",value=3}}},nil} +c["+3 to Level of all Animus Exchange Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="animus exchange",value=3}}},nil} +c["+3 to Level of all Animus Splinters Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="animus splinters",value=3}}},nil} c["+3 to Level of all Arc Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="arc",value=3}}},nil} c["+3 to Level of all Archmage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="archmage",value=3}}},nil} c["+3 to Level of all Arctic Armour Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="arctic armour",value=3}}},nil} @@ -398,6 +403,7 @@ c["+3 to Level of all Barkskin Skills"]={{[1]={flags=0,keywordFlags=0,name="GemP c["+3 to Level of all Barrage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="barrage",value=3}}},nil} c["+3 to Level of all Barrier Invocation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="barrier invocation",value=3}}},nil} c["+3 to Level of all Berserk Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="berserk",value=3}}},nil} +c["+3 to Level of all Bitter Dead Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="bitter dead",value=3}}},nil} c["+3 to Level of all Blasphemy Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="blasphemy",value=3}}},nil} c["+3 to Level of all Blink Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="blink",value=3}}},nil} c["+3 to Level of all Blood Hunt Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="blood hunt",value=3}}},nil} @@ -415,9 +421,11 @@ c["+3 to Level of all Cast on Minion Death Skills"]={{[1]={flags=0,keywordFlags= c["+3 to Level of all Charge Regulation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="charge regulation",value=3}}},nil} c["+3 to Level of all Charged Staff Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="charged staff",value=3}}},nil} c["+3 to Level of all Cluster Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cluster grenade",value=3}}},nil} +c["+3 to Level of all Coiling Bolts Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="coiling bolts",value=3}}},nil} c["+3 to Level of all Cold Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=3}}},nil} c["+3 to Level of all Combat Frenzy Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="combat frenzy",value=3}}},nil} c["+3 to Level of all Comet Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="comet",value=3}}},nil} +c["+3 to Level of all Conductive Runes Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="conductive runes",value=3}}},nil} c["+3 to Level of all Contagion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="contagion",value=3}}},nil} c["+3 to Level of all Convalescence Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="convalescence",value=3}}},nil} c["+3 to Level of all Cross Slash Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cross slash",value=3}}},nil} @@ -426,6 +434,7 @@ c["+3 to Level of all Dark Effigy Skills"]={{[1]={flags=0,keywordFlags=0,name="G c["+3 to Level of all Defiance Banner Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="defiance banner",value=3}}},nil} c["+3 to Level of all Despair Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="despair",value=3}}},nil} c["+3 to Level of all Detonate Dead Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="detonate dead",value=3}}},nil} +c["+3 to Level of all Detonate Living Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="detonate living",value=3}}},nil} c["+3 to Level of all Detonating Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="detonating arrow",value=3}}},nil} c["+3 to Level of all Devour Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="devour",value=3}}},nil} c["+3 to Level of all Disengage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="disengage",value=3}}},nil} @@ -444,10 +453,12 @@ c["+3 to Level of all Enfeeble Skills"]={{[1]={flags=0,keywordFlags=0,name="GemP c["+3 to Level of all Entangle Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="entangle",value=3}}},nil} c["+3 to Level of all Escape Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="escape shot",value=3}}},nil} c["+3 to Level of all Essence Drain Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="essence drain",value=3}}},nil} +c["+3 to Level of all Eternal March Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="eternal march",value=3}}},nil} c["+3 to Level of all Eternal Rage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="eternal rage",value=3}}},nil} c["+3 to Level of all Explosive Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="explosive grenade",value=3}}},nil} c["+3 to Level of all Explosive Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="explosive shot",value=3}}},nil} c["+3 to Level of all Explosive Spear Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="explosive spear",value=3}}},nil} +c["+3 to Level of all Explosive Transmutation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="explosive transmutation",value=3}}},nil} c["+3 to Level of all Eye of Winter Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="eye of winter",value=3}}},nil} c["+3 to Level of all Falling Thunder Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="falling thunder",value=3}}},nil} c["+3 to Level of all Fangs of Frost Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fangs of frost",value=3}}},nil} @@ -464,12 +475,14 @@ c["+3 to Level of all Flicker Strike Skills"]={{[1]={flags=0,keywordFlags=0,name c["+3 to Level of all Forge Hammer Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="forge hammer",value=3}}},nil} c["+3 to Level of all Fortifying Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fortifying cry",value=3}}},nil} c["+3 to Level of all Fragmentation Rounds Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fragmentation rounds",value=3}}},nil} +c["+3 to Level of all Fragments Of The Past Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fragments of the past",value=3}}},nil} c["+3 to Level of all Freezing Mark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="freezing mark",value=3}}},nil} c["+3 to Level of all Freezing Salvo Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="freezing salvo",value=3}}},nil} c["+3 to Level of all Frost Bomb Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost bomb",value=3}}},nil} c["+3 to Level of all Frost Darts Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost darts",value=3}}},nil} c["+3 to Level of all Frost Wall Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frost wall",value=3}}},nil} c["+3 to Level of all Frostbolt Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frostbolt",value=3}}},nil} +c["+3 to Level of all Frostflame Nova Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frostflame nova",value=3}}},nil} c["+3 to Level of all Frozen Locus Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="frozen locus",value=3}}},nil} c["+3 to Level of all Furious Slam Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="furious slam",value=3}}},nil} c["+3 to Level of all Fury of the Mountain Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="fury of the mountain",value=3}}},nil} @@ -482,6 +495,7 @@ c["+3 to Level of all Glacial Bolt Skills"]={{[1]={flags=0,keywordFlags=0,name=" c["+3 to Level of all Glacial Cascade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="glacial cascade",value=3}}},nil} c["+3 to Level of all Glacial Lance Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="glacial lance",value=3}}},nil} c["+3 to Level of all Grim Feast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="grim feast",value=3}}},nil} +c["+3 to Level of all Grim Pillars Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="grim pillars",value=3}}},nil} c["+3 to Level of all Hailstorm Rounds Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="hailstorm rounds",value=3}}},nil} c["+3 to Level of all Hammer of the Gods Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="hammer of the gods",value=3}}},nil} c["+3 to Level of all Hand of Chayula Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="hand of chayula",value=3}}},nil} @@ -492,6 +506,7 @@ c["+3 to Level of all Herald of Plague Skills"]={{[1]={flags=0,keywordFlags=0,na c["+3 to Level of all Herald of Thunder Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="herald of thunder",value=3}}},nil} c["+3 to Level of all Hexblast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="hexblast",value=3}}},nil} c["+3 to Level of all High Velocity Rounds Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="high velocity rounds",value=3}}},nil} +c["+3 to Level of all Hollow Shell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="hollow shell",value=3}}},nil} c["+3 to Level of all Ice Nova Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice nova",value=3}}},nil} c["+3 to Level of all Ice Shards Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice shards",value=3}}},nil} c["+3 to Level of all Ice Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ice shot",value=3}}},nil} @@ -503,6 +518,7 @@ c["+3 to Level of all Infernal Cry Skills"]={{[1]={flags=0,keywordFlags=0,name=" c["+3 to Level of all Iron Ward Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="iron ward",value=3}}},nil} c["+3 to Level of all Killing Palm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="killing palm",value=3}}},nil} c["+3 to Level of all Leap Slam Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="leap slam",value=3}}},nil} +c["+3 to Level of all Leylines Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="leylines",value=3}}},nil} c["+3 to Level of all Lightning Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning arrow",value=3}}},nil} c["+3 to Level of all Lightning Conduit Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning conduit",value=3}}},nil} c["+3 to Level of all Lightning Rod Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning rod",value=3}}},nil} @@ -520,7 +536,6 @@ c["+3 to Level of all Mantra of Destruction Skills"]={{[1]={flags=0,keywordFlags c["+3 to Level of all Melee Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="melee",value=3}}},nil} c["+3 to Level of all Minion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="minion",value=3}}},nil} c["+3 to Level of all Mirage Archer Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mirage archer",value=3}}},nil} -c["+3 to Level of all Mirage Deadeye Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mirage deadeye",value=3}}},nil} c["+3 to Level of all Molten Blast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="molten blast",value=3}}},nil} c["+3 to Level of all Mortar Cannon Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mortar cannon",value=3}}},nil} c["+3 to Level of all Oil Barrage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="oil barrage",value=3}}},nil} @@ -534,10 +549,13 @@ c["+3 to Level of all Plague Bearer Skills"]={{[1]={flags=0,keywordFlags=0,name= c["+3 to Level of all Plasma Blast Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="plasma blast",value=3}}},nil} c["+3 to Level of all Poisonburst Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="poisonburst arrow",value=3}}},nil} c["+3 to Level of all Pounce Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pounce",value=3}}},nil} +c["+3 to Level of all Powered by Verisium Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="powered by verisium",value=3}}},nil} c["+3 to Level of all Primal Strikes Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="primal strikes",value=3}}},nil} c["+3 to Level of all Profane Ritual Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="profane ritual",value=3}}},nil} +c["+3 to Level of all Projectile Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="projectile",value=3}}},nil} c["+3 to Level of all Raging Spirits Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="raging spirits",value=3}}},nil} c["+3 to Level of all Rain of Arrows Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rain of arrows",value=3}}},nil} +c["+3 to Level of all Rain of Blades Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rain of blades",value=3}}},nil} c["+3 to Level of all Raise Zombie Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="raise zombie",value=3}}},nil} c["+3 to Level of all Rake Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rake",value=3}}},nil} c["+3 to Level of all Rampage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rampage",value=3}}},nil} @@ -545,10 +563,14 @@ c["+3 to Level of all Rapid Assault Skills"]={{[1]={flags=0,keywordFlags=0,name= c["+3 to Level of all Rapid Shot Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rapid shot",value=3}}},nil} c["+3 to Level of all Ravenous Swarm Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="ravenous swarm",value=3}}},nil} c["+3 to Level of all Reaper's Invocation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="reaper's invocation",value=3}}},nil} +c["+3 to Level of all Refutation Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="refutation",value=3}}},nil} +c["+3 to Level of all Remnants of Kalguur Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="remnants of kalguur",value=3}}},nil} c["+3 to Level of all Rend Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rend",value=3}}},nil} +c["+3 to Level of all Repulsion Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="repulsion",value=3}}},nil} c["+3 to Level of all Resonating Shield Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="resonating shield",value=3}}},nil} c["+3 to Level of all Rolling Magma Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rolling magma",value=3}}},nil} c["+3 to Level of all Rolling Slam Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="rolling slam",value=3}}},nil} +c["+3 to Level of all Runic Reprieve Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="runic reprieve",value=3}}},nil} c["+3 to Level of all Sacrifice Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sacrifice",value=3}}},nil} c["+3 to Level of all Scavenged Plating Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="scavenged plating",value=3}}},nil} c["+3 to Level of all Seismic Cry Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="seismic cry",value=3}}},nil} @@ -570,6 +592,7 @@ c["+3 to Level of all Skeletal Frost Mage Skills"]={{[1]={flags=0,keywordFlags=0 c["+3 to Level of all Skeletal Reaver Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal reaver",value=3}}},nil} c["+3 to Level of all Skeletal Sniper Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal sniper",value=3}}},nil} c["+3 to Level of all Skeletal Storm Mage Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skeletal storm mage",value=3}}},nil} +c["+3 to Level of all Skyfall Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="skyfall",value=3}}},nil} c["+3 to Level of all Snap Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="snap",value=3}}},nil} c["+3 to Level of all Snipe Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="snipe",value=3}}},nil} c["+3 to Level of all Sniper's Mark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sniper's mark",value=3}}},nil} @@ -605,17 +628,21 @@ c["+3 to Level of all Toxic Domain Skills"]={{[1]={flags=0,keywordFlags=0,name=" c["+3 to Level of all Toxic Growth Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="toxic growth",value=3}}},nil} c["+3 to Level of all Trail of Caltrops Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="trail of caltrops",value=3}}},nil} c["+3 to Level of all Trinity Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="trinity",value=3}}},nil} +c["+3 to Level of all Triskelion Cascade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="triskelion cascade",value=3}}},nil} c["+3 to Level of all Twister Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="twister",value=3}}},nil} c["+3 to Level of all Unearth Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="unearth",value=3}}},nil} c["+3 to Level of all Vaulting Impact Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vaulting impact",value=3}}},nil} +c["+3 to Level of all Verisium Manifestations Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="verisium manifestations",value=3}}},nil} c["+3 to Level of all Vine Arrow Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vine arrow",value=3}}},nil} c["+3 to Level of all Volcanic Fissure Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="volcanic fissure",value=3}}},nil} c["+3 to Level of all Volcano Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="volcano",value=3}}},nil} +c["+3 to Level of all Voltaic Barrier Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="voltaic barrier",value=3}}},nil} c["+3 to Level of all Voltaic Grenade Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="voltaic grenade",value=3}}},nil} c["+3 to Level of all Voltaic Mark Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="voltaic mark",value=3}}},nil} c["+3 to Level of all Vulnerability Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vulnerability",value=3}}},nil} c["+3 to Level of all Walking Calamity Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="walking calamity",value=3}}},nil} c["+3 to Level of all War Banner Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="war banner",value=3}}},nil} +c["+3 to Level of all Wardbound Minions Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="wardbound minions",value=3}}},nil} c["+3 to Level of all Wave of Frost Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="wave of frost",value=3}}},nil} c["+3 to Level of all Whirling Assault Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="whirling assault",value=3}}},nil} c["+3 to Level of all Whirling Slash Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="whirling slash",value=3}}},nil} @@ -675,7 +702,6 @@ c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="Eleme c["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil} c["+36 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=36}},nil} c["+37% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=37}},nil} -c["+39 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=39}},nil} c["+4 to Ailment Threshold per Dexterity"]={{[1]={[1]={stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="AilmentThreshold",type="BASE",value=4}},nil} c["+4 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=4}},nil} c["+4 to Level of Despair Skills"]={{[1]={[1]={skillName="Despair",type="SkillName"},flags=0,keywordFlags=0,name="SupportedGemProperty",type="LIST",value={key="level",keyword="grants_active_skill",value=4}}},nil} @@ -725,14 +751,12 @@ c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil} c["+40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}},nil} c["+400 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=400}},nil} -c["+45 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=45}},nil} c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil} c["+45 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=45}},nil} c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil} c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil} c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil} c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil} -c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil} c["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil} c["+5 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=5}},nil} c["+5 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5}},nil} @@ -755,6 +779,7 @@ c["+5% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningRe c["+5% to Maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil} c["+5% to Maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil} c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil} +c["+5% to Quality of all Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyOfScaledMod="value",keyword="all",value=5}}},nil} c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil} c["+5% to all Maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5}},nil} c["+5% to maximum Block chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=5}},nil} @@ -779,14 +804,15 @@ c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningR c["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil} c["+500 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil} c["+52 to Spirit"]={{[1]={flags=0,keywordFlags=0,name="Spirit",type="BASE",value=52}},nil} +c["+53 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=53}},nil} c["+53 to maximum Life per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="BASE",value=53}},nil} c["+54 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=54}},nil} c["+55 to maximum Mana per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil} +c["+57 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=57}},nil} c["+57 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=57}},nil} +c["+59 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=59}},nil} c["+6 to Level of all Cold Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="cold",[2]="spell"},value=6}}},nil} c["+6 to Level of all Fire Spell Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="fire",[2]="spell"},value=6}}},nil} -c["+6 to Level of all Melee Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="melee",value=6}}},nil} -c["+6 to Level of all Projectile Skills"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="projectile",value=6}}},nil} c["+6 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=6},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=6}},nil} c["+6 to all Attributes per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Str",type="BASE",value=6},[2]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=6},[3]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Int",type="BASE",value=6},[4]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="All",type="BASE",value=6}},nil} c["+6% of Armour also applies to Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=6},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=6}},nil} @@ -808,7 +834,6 @@ c["+60 to maximum Mana per Socket filled"]={{[1]={[1]={type="Multiplier",var="Ru c["+600 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=600}},nil} c["+600 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=600}},nil} c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil} -c["+64 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=64}},nil} c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil} c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil} c["+67 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=67}},nil} @@ -826,14 +851,12 @@ c["+70 to Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",ty c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil} c["+70 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil} c["+70% to Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=70}},nil} -c["+72 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=72}},nil} c["+75 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=75}},nil} c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=75},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=75}},nil} c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil} c["+75 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=75}},nil} c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil} c["+75% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=75}},nil} -c["+76 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=76}},nil} c["+77 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=77}},nil} c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil} c["+8 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=8}},nil} @@ -863,12 +886,14 @@ c["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",v c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil} c["+85 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=85}},nil} c["+86 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=86}},nil} +c["+87 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=87}},nil} +c["+88 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=88}},nil} +c["+9 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=9}},nil} c["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil} c["+90 to Stun Threshold per Socket filled"]={{[1]={[1]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="StunThreshold",type="BASE",value=90}},nil} c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil} c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil} c["+92 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=92}},nil} -c["+93 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=93}},nil} c["+94 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=94}},nil} c["-0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=-0.2}}," seconds to current Recharge delay per Combo expended when using Skills "} c["-1 metre to Dodge Roll distance if you've Dodge Rolled Recently"]={{}," metre to Dodge Roll distance "} @@ -895,6 +920,8 @@ c["-15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["-15% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-15}},nil} c["-17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-17}},nil} c["-20 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=-20}},nil} +c["-20% increased Spirit Reservation Efficiency"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="BASE",value=-20}}," increased "} +c["-20% increased Spirit Reservation Efficiency 40% increased Reservation Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="BASE",value=-20}}," increased 40% increased Reservation Efficiency "} c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil} c["-200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-200}},nil} c["-250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-250}},nil} @@ -941,6 +968,7 @@ c["1% increased Attack Speed per 20 Dexterity"]={{[1]={[1]={div=20,stat="Dex",ty c["1% increased Attack Speed per 20 Spirit"]={{[1]={[1]={div=20,stat="Spirit",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} c["1% increased Attack Speed per 400 Accuracy Rating, up to 20%"]={{[1]={[1]={div=400,limit=20,limitTotal=true,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} +c["1% increased Chaos Damage over Time per Volatility"]={{[1]={flags=0,keywordFlags=268435456,name="ChaosDamage",type="INC",value=1}}," per Volatility "} c["1% increased Cooldown Recovery Rate per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=1}},nil} c["1% increased Critical Damage Bonus per 50 current Life"]={{[1]={[1]={div=50,stat="LifeUnreserved",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=1}},nil} c["1% increased Damage per 1% Chance to Block"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil} @@ -1100,7 +1128,7 @@ c["10% increased Flask and Charm Charges gained"]={{[1]={flags=0,keywordFlags=0, c["10% increased Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=10}},nil} c["10% increased Freeze Threshold"]={{[1]={flags=0,keywordFlags=0,name="FreezeThreshold",type="INC",value=10}},nil} c["10% increased Global Defences per Socket filled"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=10}},nil} -c["10% increased Grenade Area of Effect"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} +c["10% increased Grenade Area of Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Hazard Area of Effect"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil} c["10% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=10}},nil} @@ -1131,6 +1159,7 @@ c["10% increased Melee Critical Hit Chance"]={{[1]={flags=256,keywordFlags=0,nam c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil} c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil} +c["10% increased Movement Speed while Sprinting"]={{[1]={[1]={type="Condition",var="Sprinting"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil} c["10% increased Movement Speed while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil} c["10% increased Parried Debuff Magnitude"]={{}," Parried Debuff Magnitude "} c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil} @@ -1223,8 +1252,9 @@ c["10% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Cur c["10% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-10}},nil} c["10% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-10}},nil} c["100 Passive Skill Points become Weapon Set Skill Points"]={{[1]={flags=0,keywordFlags=0,name="PassivePointsToWeaponSetPoints",type="BASE",value=100}},nil} -c["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30"]={{},"% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30 "} -c["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"]={{},"% 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 "} +c["100% Surpassing chance per enemy Power to gain"]={{},"% Surpassing chance per enemy Power to gain "} +c["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy if"]={{},"% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy if "} +c["100% 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"]={{},"% 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 "} c["100% chance to Daze Enemies whose Hits you Block with a raised Shield"]={{[1]={flags=0,keywordFlags=0,name="DazeChance",type="BASE",value=100}}," Enemies whose Hits you Block with a raised Shield "} c["100% chance to Pierce an Enemy"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=100}},nil} c["100% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=100}},nil} @@ -1346,7 +1376,7 @@ c["12% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Dama c["12% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["12% increased Damage with Crossbows"]={{[1]={flags=67108868,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["12% increased Damage with Hits against Enemies affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},flags=0,keywordFlags=262144,name="Damage",type="INC",value=12}},nil} -c["12% increased Damage with Plant Skills"]={{[1]={[1]={skillType=252,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} +c["12% increased Damage with Plant Skills"]={{[1]={[1]={skillType=251,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["12% increased Effect of your Mark Skills"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=12}},nil} c["12% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=12}},nil} c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil} @@ -1357,7 +1387,7 @@ c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil} c["12% increased Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=12}},nil} c["12% increased Global Defences per Socket filled"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="RunesSocketedIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=12}},nil} -c["12% increased Grenade Damage"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} +c["12% increased Grenade Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["12% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=12}},nil} c["12% increased Immobilisation buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyImmobilisationBuildup",type="INC",value=12}},nil} c["12% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=12}},nil} @@ -1496,7 +1526,7 @@ c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type=" c["15% increased Charm Charges gained"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGained",type="INC",value=15}},nil} c["15% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15}},nil} c["15% increased Chill and Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=15}},nil} -c["15% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil} +c["15% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}," forSkills "} c["15% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=15}},nil} c["15% increased Cost Efficiency of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=15}},nil} c["15% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=15}},nil} @@ -1639,7 +1669,7 @@ c["15% reduced Charm Charges used"]={{[1]={flags=0,keywordFlags=0,name="CharmCha c["15% reduced Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=-15}},nil} c["15% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-15}},nil} c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} -c["15% reduced Grenade Detonation Time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=-15}},nil} +c["15% reduced Grenade Detonation Time"]={{[1]={[1]={skillType=159,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=-15}},nil} c["15% reduced Magnitude of Ignite on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteEffect",type="INC",value=-15}},nil} c["15% reduced Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=-15}},nil} c["15% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "} @@ -1688,7 +1718,7 @@ c["16% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="Mana c["16% increased Mana Regeneration Rate while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=16}},nil} c["16% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=16}},nil} c["16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=16}},nil} -c["16% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=16},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=16}},nil} +c["16% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=16},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=16}},nil} c["16% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=16}},nil} c["16% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil} c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil} @@ -1842,6 +1872,7 @@ c["20% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true, c["20% increased Armour if you've consumed an Endurance Charge Recently"]={{[1]={[1]={limit=1,type="Multiplier",var="RemovableEnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} c["20% increased Armour while Surrounded"]={{[1]={[1]={type="Condition",var="Surrounded"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} c["20% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} +c["20% increased Armour, Evasion and Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"]={{[1]={[1]={type="Condition",var="CompanionInPresence"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Attack Damage if you have been Heavy Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil} @@ -1885,7 +1916,6 @@ c["20% increased Damage for each type of Elemental Ailment on Enemy"]={{[1]={[1] c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Crossbows"]={{[1]={flags=67108868,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Hits against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil} -c["20% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Deflection Rating"]={{[1]={flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=20}},nil} c["20% increased Deflection Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="DeflectionRating",type="INC",value=20}},nil} c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} @@ -1952,7 +1982,7 @@ c["20% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Con c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Melee Damage against Heavy Stunned enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Melee Damage against Immobilised Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Immobilised"},flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["20% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=20},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=20}},nil} +c["20% increased Melee Strike Range with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="MeleeWeaponRange",type="INC",value=20},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="UnarmedRange",type="INC",value=20}},nil} c["20% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} c["20% increased Movement Speed while affected by an Ailment"]={{[1]={[1]={type="Condition",varList={[1]="Bleeding",[2]="Poisoned",[3]="Ignited",[4]="Chilled",[5]="Frozen",[6]="Shocked",[7]="Electrocuted"}},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} @@ -2058,7 +2088,6 @@ c["20% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debu c["20% reduced Slowing Potency of Debuffs on You 6% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}}," Slowing Potency of Debuffs on You 6% reduced Penalty from using Skills "} c["20% reduced Slowing Potency of Debuffs on You 8% reduced Movement Speed Penalty from using Skills while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}}," Slowing Potency of Debuffs on You 8% reduced Penalty from using Skills "} c["20% reduced Slowing Potency of Debuffs on You Buffs on you expire 10% slower"]={{}," Slowing Potency of Debuffs on You Buffs on you expire 10% slower "} -c["20% reduced Spirit Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="SpiritReservationEfficiency",type="INC",value=-20}},nil} c["20% reduced Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=-20}},nil} c["20% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-20}},nil} c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil} @@ -2111,6 +2140,9 @@ c["25 to 35 Fire Thorns damage"]={{[1]={flags=32,keywordFlags=0,name="FireMin",t c["25% Chance to gain a Charge when you kill an enemy"]={nil,"a Charge "} c["25% Chance to gain a Charge when you kill an enemy Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life"]={nil,"a Charge Creates Ignited Ground when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life "} c["25% Chance to gain a Charge when you kill an enemy Energy Shield Recharge starts on use"]={nil,"a Charge Energy Shield Recharge starts on use "} +c["25% Chance to revive a random Permanent Minion whenever you use a Command Skill"]={{}," to revive a random Permanent whenever you use a Command Skill "} +c["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"]={{}," to revive a random Permanent whenever you use a Command Skill 25% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill "} +c["25% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"]={{},"% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill "} c["25% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "} c["25% chance for Attacks to Maim on Hit against Poisoned Enemies 25% increased Magnitude of Poison you inflict"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=1,keywordFlags=2097152,name="AilmentMagnitude",type="BASE",value=25}}," to Maim on Hit 25% increased "} c["25% chance for Lightning Damage with Hits to be Lucky"]={{[1]={flags=0,keywordFlags=0,name="LightningLuckyHitsChance",type="BASE",value=25}},nil} @@ -2120,7 +2152,6 @@ c["25% chance for Trigger skills to refund half of Energy Spent"]={{}," for Trig c["25% chance on Consuming a Shock on an Enemy to reapply it"]={{}," on Consuming a Shock on an Enemy to reapply it "} c["25% chance on Shocking Enemies to created Shocked Ground"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnShockedGround"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=20}},nil} c["25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"]={{}," that when Volatility on you explodes, you regain an equivalent amount of Volatility "} -c["25% chance to Chain an additional time"]={{[1]={flags=0,keywordFlags=0,name="ChainChance",type="BASE",value=25}},nil} c["25% chance to Intimidate Enemies for 4 seconds on Hit"]={{}," to Intimidate Enemies "} c["25% chance to Maim on Hit"]={{}," to Maim "} c["25% chance to Maim on Hit Adds 17 to 28 Physical Damage"]={{[1]={flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to Maim Adds 17 to 28 "} @@ -2237,7 +2268,7 @@ c["25% increased Parried Debuff Magnitude"]={{}," Parried Debuff Magnitude "} c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil} c["25% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=25}},nil} c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} -c["25% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} +c["25% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil} c["25% increased Reload Speed"]={{[1]={flags=1,keywordFlags=0,name="ReloadSpeed",type="INC",value=25}},nil} c["25% increased Reservation Efficiency of Companion Skills"]={{[1]={[1]={skillType=219,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=25}},nil} @@ -2290,7 +2321,7 @@ c["25% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name= c["25% reduced Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=-25}},nil} c["25% reduced Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=-25}},nil} c["25% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-25}},nil} -c["25% reduced Grenade Detonation Time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=-25}},nil} +c["25% reduced Grenade Detonation Time"]={{[1]={[1]={skillType=159,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=-25}},nil} c["25% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-25}},nil} c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil} c["25% reduced Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-25}},nil} @@ -2497,7 +2528,7 @@ c["30% increased Pin Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyPinBuild c["30% increased Presence Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="PresenceArea",type="INC",value=30}},nil} c["30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]={{[1]={[1]={type="Condition",var="HitMeleeRecently"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil} c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil} -c["30% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil} +c["30% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil} c["30% increased Rarity of Items Dropped by Enemies killed with a Critical Hit"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}}," by Enemies killed with a Critical Hit "} c["30% increased Rarity of Items Dropped by Enemies killed with a Critical Hit You have Consecrated Ground around you while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}}," by Enemies killed with a Critical Hit You have Consecrated Ground around you "} c["30% increased Reservation Efficiency of Skills which create Undead Minions"]={{[1]={[1]={skillType=127,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=30}},nil} @@ -2591,6 +2622,7 @@ c["333% increased effect of Socketed Soul Cores"]={{[1]={flags=0,keywordFlags=0, c["35 Life Regeneration per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=35}},nil} c["35 to 53 Physical Thorns damage"]={{[1]={flags=32,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=32,keywordFlags=0,name="PhysicalMax",type="BASE",value=53}},nil} c["35% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"]={{},"% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill "} +c["35% chance to Chain an additional time"]={{[1]={flags=0,keywordFlags=0,name="ChainChance",type="BASE",value=35}},nil} c["35% increased Attack Damage while you have an Ally in your Presence"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=1,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["35% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=35}},nil} c["35% increased Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="INC",value=35}},nil} @@ -2609,7 +2641,7 @@ c["35% increased Magnitude of Ignite against Poisoned enemies"]={{}," Magnitude c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil} c["35% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil} c["35% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil} -c["35% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=35}},nil} +c["35% increased Projectile Speed with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=35}},nil} c["35% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=35}},nil} c["35% increased Spell Area Damage"]={{[1]={flags=514,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["35% increased Stun Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyHeavyStunBuildup",type="INC",value=35}},nil} @@ -2703,7 +2735,8 @@ c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name= c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil} c["40% increased Cold Damage while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil} c["40% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} -c["40% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} +c["40% increased Cooldown Recovery Rate for Grenade Skills"]={{[1]={[1]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}}," forSkills "} +c["40% increased Cooldown Recovery Rate for Grenade Skills 80% reduced Grenade Damage"]={{[1]={[1]={skillType=159,type="SkillType"},[2]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}}," forSkills 80% reduced Damage "} c["40% increased Critical Damage Bonus"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil} c["40% increased Critical Damage Bonus against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil} c["40% increased Critical Damage Bonus with One Handed Melee Weapons"]={{[1]={flags=21474836484,keywordFlags=0,name="CritMultiplier",type="INC",value=40}},nil} @@ -2857,6 +2890,7 @@ c["5% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,nam c["5% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=5}},nil} c["5% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil} +c["5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},[3]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil} c["5% increased Attack Critical Hit Chance per 10 Tribute"]={{[1]={[1]={actor="parent",div=10,stat="Tribute",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Attack Damage for each Minion in your Presence, up to a maximum of 80%"]={{[1]={[1]={limit=80,limitTotal=true,type="Multiplier",var="MinionPresenceCount"},flags=1,keywordFlags=0,name="Damage",type="INC",value=5}},nil} @@ -2875,7 +2909,6 @@ c["5% increased Critical Hit Chance"]={{[1]={flags=0,keywordFlags=0,name="CritCh c["5% increased Culling Strike Threshold"]={{[1]={flags=0,keywordFlags=0,name="CullPercent",type="INC",value=5}},nil} c["5% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Damage taken while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil} -c["5% increased Defences from Equipped Shield per 25 Tribute"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},[3]={actor="parent",div=25,stat="Tribute",type="PerStat"},flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil} c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil} c["5% increased Duration of Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil} c["5% increased Experience gain"]={{}," Experience gain "} @@ -2988,7 +3021,7 @@ c["50% increased Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskC c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil} c["50% increased Flask Mana Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecoveryRate",type="INC",value=50}},nil} c["50% increased Freeze Buildup"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeBuildup",type="INC",value=50}},nil} -c["50% increased Grenade Detonation Time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=50}},nil} +c["50% increased Grenade Detonation Time"]={{[1]={[1]={skillType=159,type="SkillType"},flags=0,keywordFlags=0,name="DetonationTime",type="INC",value=50}},nil} c["50% increased Hazard Area of Effect"]={{[1]={[1]={skillType=203,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil} c["50% increased Ignite Magnitude"]={{[1]={flags=0,keywordFlags=8388608,name="AilmentMagnitude",type="INC",value=50}},nil} c["50% increased Immobilisation buildup against Constructs"]={{[1]={flags=0,keywordFlags=0,name="EnemyImmobilisationBuildup",type="INC",value=50}}," against Constructs "} @@ -3075,6 +3108,8 @@ c["50% reduced Shock duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfS c["50% reduced Slowing Potency of Debuffs on You"]={{}," Slowing Potency of Debuffs on You "} c["50% reduced Slowing Potency of Debuffs on You 20 to 30 Physical Thorns damage"]={{[1]={flags=32,keywordFlags=0,name="Damage",type="INC",value=-50}}," Slowing Potency of Debuffs on You 20 to 30 Physical "} c["50% reduced bonuses gained from Equipped Focus"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromFocus",type="INC",value=-50}},nil} +c["50% reduced effect of Archon Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=-50}}," of Archon Buffs on you "} +c["50% reduced effect of Archon Buffs on you Archon Buffs have no recovery period after you lose one"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=-50}}," of Archon Buffs on you Archon Buffs have no recovery period after you lose one "} c["50% reduced effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil} c["50% reduced effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-50}},nil} c["50% reduced effect of Withered on you"]={{[1]={flags=0,keywordFlags=0,name="WitherEffectOnSelf",type="INC",value=-50}},nil} @@ -3373,7 +3408,7 @@ c["80% increased bonuses gained from Equipped Rings"]={{[1]={flags=0,keywordFlag c["80% less Knockback Distance for Blocked Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="MORE",value=-80}}," for Blocked Hits "} c["80% of Maximum Mana is Converted to twice that much Armour"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}}," is Converted to twice that much Armour "} c["80% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-80}},nil} -c["80% reduced Grenade Damage"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-80}},nil} +c["80% reduced Grenade Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Grenade",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-80}},nil} c["800% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=800}},nil} c["800% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=800}},nil} c["82% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=82}},nil} @@ -3614,17 +3649,880 @@ c["Allies in your Presence have 50% increased Critical Hit Chance"]={{[1]={flags c["Allies in your Presence have 6% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=6},onlyAllies=true}}},nil} c["Allies in your Presence have 6% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=6},onlyAllies=true}}},nil} c["Allies in your Presence have Block Chance equal to yours"]={nil,"Block Chance equal to yours "} +c["Allocates Abasement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="abasement"}},nil} +c["Allocates Acceleration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="acceleration"}},nil} +c["Allocates Adaptable Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adaptable assault"}},nil} +c["Allocates Adaptive Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adaptive skin"}},nil} +c["Allocates Admonisher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="admonisher"}},nil} +c["Allocates Adrenaline Rush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adrenaline rush"}},nil} +c["Allocates Advanced Munitions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="advanced munitions"}},nil} +c["Allocates Adverse Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="adverse growth"}},nil} +c["Allocates Afterimage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="afterimage"}},nil} +c["Allocates Aftershocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aftershocks"}},nil} +c["Allocates Against the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="against the elements"}},nil} +c["Allocates Aggravation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aggravation"}},nil} +c["Allocates Agile Sprinter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile sprinter"}},nil} +c["Allocates Agile Succession"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agile succession"}},nil} +c["Allocates Agonising Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="agonising calamity"}},nil} +c["Allocates Alchemical Oil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="alchemical oil"}},nil} +c["Allocates All For One"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all for one"}},nil} +c["Allocates All Natural"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="all natural"}},nil} +c["Allocates Altered Brain Chemistry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="altered brain chemistry"}},nil} +c["Allocates Alternating Current"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="alternating current"}},nil} +c["Allocates Among the Hordes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="among the hordes"}},nil} +c["Allocates Ancestral Alacrity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral alacrity"}},nil} +c["Allocates Ancestral Artifice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral artifice"}},nil} +c["Allocates Ancestral Conduits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral conduits"}},nil} +c["Allocates Ancestral Mending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral mending"}},nil} +c["Allocates Ancestral Reach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral reach"}},nil} +c["Allocates Ancestral Unity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancestral unity"}},nil} +c["Allocates Ancient Aegis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ancient aegis"}},nil} +c["Allocates Anticipation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="anticipation"}},nil} +c["Allocates Apocalypse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="apocalypse"}},nil} +c["Allocates Arcane Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane alchemy"}},nil} +c["Allocates Arcane Blossom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane blossom"}},nil} +c["Allocates Arcane Intensity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane intensity"}},nil} +c["Allocates Arcane Mixtures"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane mixtures"}},nil} +c["Allocates Arcane Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane nature"}},nil} +c["Allocates Arcane Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arcane remnants"}},nil} +c["Allocates Archon of Undeath"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of undeath"}},nil} +c["Allocates Archon of the Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the blizzard"}},nil} +c["Allocates Archon of the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="archon of the storm"}},nil} +c["Allocates Arsonist"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="arsonist"}},nil} +c["Allocates Artillery Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="artillery strike"}},nil} +c["Allocates Asceticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="asceticism"}},nil} +c["Allocates Aspiring Genius"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="aspiring genius"}},nil} +c["Allocates At your Command"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="at your command"}},nil} +c["Allocates Augmented Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="augmented flesh"}},nil} +c["Allocates Authority"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="authority"}},nil} +c["Allocates Avoiding Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="avoiding deflection"}},nil} +c["Allocates Back in Action"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="back in action"}},nil} +c["Allocates Backup Plan"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="backup plan"}},nil} +c["Allocates Bannerman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bannerman"}},nil} +c["Allocates Barbaric Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="barbaric strength"}},nil} +c["Allocates Barrier of Venarius"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="barrier of venarius"}},nil} +c["Allocates Bashing Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bashing beast"}},nil} +c["Allocates Bastion of Light"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bastion of light"}},nil} +c["Allocates Battle Fever"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle fever"}},nil} +c["Allocates Battle Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="battle trance"}},nil} +c["Allocates Bear's Roar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bear's roar"}},nil} +c["Allocates Beastial Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beastial skin"}},nil} +c["Allocates Beef"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="beef"}},nil} +c["Allocates Behemoth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="behemoth"}},nil} +c["Allocates Bestial Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bestial rage"}},nil} +c["Allocates Bhatair's Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bhatair's storm"}},nil} +c["Allocates Biting Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="biting frost"}},nil} +c["Allocates Blade Catcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade catcher"}},nil} +c["Allocates Blade Flurry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blade flurry"}},nil} +c["Allocates Blazing Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blazing arms"}},nil} +c["Allocates Bleeding Out"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bleeding out"}},nil} +c["Allocates Blessing of the Moon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blessing of the moon"}},nil} +c["Allocates Blinding Flash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blinding flash"}},nil} +c["Allocates Blinding Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blinding strike"}},nil} +c["Allocates Blood Rush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood rush"}},nil} +c["Allocates Blood Tearing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood tearing"}},nil} +c["Allocates Blood Transfusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood transfusion"}},nil} +c["Allocates Blood of Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood of rage"}},nil} +c["Allocates Blood of the Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blood of the wolf"}},nil} +c["Allocates Bloodletting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodletting"}},nil} +c["Allocates Bloodthirsty"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bloodthirsty"}},nil} +c["Allocates Blurred Motion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="blurred motion"}},nil} +c["Allocates Bolstering Yell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bolstering yell"}},nil} +c["Allocates Bond of the Ape"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the ape"}},nil} +c["Allocates Bond of the Cat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the cat"}},nil} +c["Allocates Bond of the Mamba"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the mamba"}},nil} +c["Allocates Bond of the Owl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the owl"}},nil} +c["Allocates Bond of the Viper"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the viper"}},nil} +c["Allocates Bond of the Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bond of the wolf"}},nil} +c["Allocates Bonded Precision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bonded precision"}},nil} +c["Allocates Bone Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bone chains"}},nil} +c["Allocates Boon of the Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="boon of the beast"}},nil} +c["Allocates Boundless Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="boundless growth"}},nil} +c["Allocates Bounty Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bounty hunter"}},nil} +c["Allocates Branching Bolts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="branching bolts"}},nil} +c["Allocates Bravado"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bravado"}},nil} +c["Allocates Breakage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breakage"}},nil} +c["Allocates Breaking Blows"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breaking blows"}},nil} +c["Allocates Breaking Point"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breaking point"}},nil} +c["Allocates Breath of Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of fire"}},nil} +c["Allocates Breath of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of ice"}},nil} +c["Allocates Breath of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="breath of lightning"}},nil} +c["Allocates Brinerot Ferocity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brinerot ferocity"}},nil} +c["Allocates Bringer of Order"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="bringer of order"}},nil} +c["Allocates Briny Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="briny carapace"}},nil} +c["Allocates Brush Off"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brush off"}},nil} +c["Allocates Brute Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="brute strength"}},nil} +c["Allocates Building Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="building toxins"}},nil} +c["Allocates Burn Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burn away"}},nil} +c["Allocates Burning Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burning nature"}},nil} +c["Allocates Burning Strikes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burning strikes"}},nil} +c["Allocates Burnout"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="burnout"}},nil} +c["Allocates Cacophony"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cacophony"}},nil} +c["Allocates Captivating Companionship"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="captivating companionship"}},nil} +c["Allocates Careful Aim"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful aim"}},nil} +c["Allocates Careful Assassin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful assassin"}},nil} +c["Allocates Careful Consideration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="careful consideration"}},nil} +c["Allocates Carved Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="carved earth"}},nil} +c["Allocates Casting Cascade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="casting cascade"}},nil} +c["Allocates Catalysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catalysis"}},nil} +c["Allocates Catapult"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="catapult"}},nil} +c["Allocates Chakra of Breathing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of breathing"}},nil} +c["Allocates Chakra of Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of elements"}},nil} +c["Allocates Chakra of Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of impact"}},nil} +c["Allocates Chakra of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of life"}},nil} +c["Allocates Chakra of Rhythm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of rhythm"}},nil} +c["Allocates Chakra of Sight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of sight"}},nil} +c["Allocates Chakra of Stability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of stability"}},nil} +c["Allocates Chakra of Thought"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chakra of thought"}},nil} +c["Allocates Channelled Heritage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="channelled heritage"}},nil} +c["Allocates Chilled to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chilled to the bone"}},nil} +c["Allocates Chillproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chillproof"}},nil} +c["Allocates Chronomancy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="chronomancy"}},nil} +c["Allocates Cirel of Tarth's Light"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cirel of tarth's light"}},nil} +c["Allocates Clear Space"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="clear space"}},nil} +c["Allocates Climate Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="climate change"}},nil} +c["Allocates Close Confines"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="close confines"}},nil} +c["Allocates Cluster Bombs"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cluster bombs"}},nil} +c["Allocates Coated Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coated arms"}},nil} +c["Allocates Cold Coat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cold coat"}},nil} +c["Allocates Cold Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cold nature"}},nil} +c["Allocates Colossal Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="colossal weapon"}},nil} +c["Allocates Coming Calamity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coming calamity"}},nil} +c["Allocates Commanding Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="commanding rage"}},nil} +c["Allocates Conall the Hunted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conall the hunted"}},nil} +c["Allocates Concussive Attack"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="concussive attack"}},nil} +c["Allocates Conductive Embrace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conductive embrace"}},nil} +c["Allocates Conservative Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="conservative casting"}},nil} +c["Allocates Consistent Intake"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="consistent intake"}},nil} +c["Allocates Constricting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="constricting"}},nil} +c["Allocates Controlled Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="controlled chaos"}},nil} +c["Allocates Controlling Magic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="controlling magic"}},nil} +c["Allocates Convalescence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="convalescence"}},nil} +c["Allocates Cooked"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cooked"}},nil} +c["Allocates Core of the Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="core of the guardian"}},nil} +c["Allocates Counterstancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="counterstancing"}},nil} +c["Allocates Coursing Energy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="coursing energy"}},nil} +c["Allocates Cranial Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cranial impact"}},nil} +c["Allocates Craving Slaughter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="craving slaughter"}},nil} +c["Allocates Cremating Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremating cries"}},nil} +c["Allocates Cremation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cremation"}},nil} +c["Allocates Crippling Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crippling toxins"}},nil} +c["Allocates Critical Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="critical exploit"}},nil} +c["Allocates Cross Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cross strike"}},nil} +c["Allocates Cruel Methods"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cruel methods"}},nil} +c["Allocates Crushing Judgement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crushing judgement"}},nil} +c["Allocates Crushing Verdict"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crushing verdict"}},nil} +c["Allocates Crystal Elixir"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystal elixir"}},nil} +c["Allocates Crystalline Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline flesh"}},nil} +c["Allocates Crystalline Resistance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystalline resistance"}},nil} +c["Allocates Crystallised Immunities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="crystallised immunities"}},nil} +c["Allocates Cull the Hordes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cull the hordes"}},nil} +c["Allocates Curved Weapon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="curved weapon"}},nil} +c["Allocates Cut to the Bone"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="cut to the bone"}},nil} +c["Allocates Dangerous Blossom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dangerous blossom"}},nil} +c["Allocates Dark Entries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dark entries"}},nil} +c["Allocates Dark Entropy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dark entropy"}},nil} +c["Allocates Dazing Blocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dazing blocks"}},nil} +c["Allocates Dead can Dance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dead can dance"}},nil} +c["Allocates Deadly Flourish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly flourish"}},nil} +c["Allocates Deadly Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly force"}},nil} +c["Allocates Deadly Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deadly invocations"}},nil} +c["Allocates Deafening Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deafening cries"}},nil} +c["Allocates Death from Afar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="death from afar"}},nil} +c["Allocates Decisive Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decisive retreat"}},nil} +c["Allocates Decrepifying Curse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="decrepifying curse"}},nil} +c["Allocates Deep Freeze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep freeze"}},nil} +c["Allocates Deep Trance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep trance"}},nil} +c["Allocates Deep Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deep wounds"}},nil} +c["Allocates Defensive Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive reflexes"}},nil} +c["Allocates Defensive Stance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defensive stance"}},nil} +c["Allocates Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="defiance"}},nil} +c["Allocates Delayed Danger"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="delayed danger"}},nil} +c["Allocates Demolitionist"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="demolitionist"}},nil} +c["Allocates Dependable Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dependable ward"}},nil} +c["Allocates Desensitisation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desensitisation"}},nil} +c["Allocates Desert's Scorn"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desert's scorn"}},nil} +c["Allocates Desperate Times"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="desperate times"}},nil} +c["Allocates Deterioration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="deterioration"}},nil} +c["Allocates Determined Precision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="determined precision"}},nil} +c["Allocates Devastation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="devastation"}},nil} +c["Allocates Dimensional Weakspot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dimensional weakspot"}},nil} +c["Allocates Direct Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="direct approach"}},nil} +c["Allocates Disciplined Training"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="disciplined training"}},nil} +c["Allocates Disorientation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="disorientation"}},nil} +c["Allocates Dispatch Foes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dispatch foes"}},nil} +c["Allocates Distant Dreamer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distant dreamer"}},nil} +c["Allocates Distracted Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracted target"}},nil} +c["Allocates Distracting Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="distracting presence"}},nil} +c["Allocates Dizzying Hits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dizzying hits"}},nil} +c["Allocates Dizzying Sweep"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dizzying sweep"}},nil} +c["Allocates Dominion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dominion"}},nil} +c["Allocates Dominus' Providence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dominus' providence"}},nil} +c["Allocates Doomsayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="doomsayer"}},nil} +c["Allocates Draiocht Cleansing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="draiocht cleansing"}},nil} +c["Allocates Dread Engineer's Concoction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dread engineer's concoction"}},nil} +c["Allocates Dreamcatcher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dreamcatcher"}},nil} +c["Allocates Drenched"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="drenched"}},nil} +c["Allocates Dynamism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="dynamism"}},nil} +c["Allocates Easy Going"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy going"}},nil} +c["Allocates Easy Target"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="easy target"}},nil} +c["Allocates Echoing Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing flames"}},nil} +c["Allocates Echoing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing frost"}},nil} +c["Allocates Echoing Pulse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing pulse"}},nil} +c["Allocates Echoing Thunder"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="echoing thunder"}},nil} +c["Allocates Effervescent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="effervescent"}},nil} +c["Allocates Efficient Alchemy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient alchemy"}},nil} +c["Allocates Efficient Casting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient casting"}},nil} +c["Allocates Efficient Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient contraptions"}},nil} +c["Allocates Efficient Inscriptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient inscriptions"}},nil} +c["Allocates Efficient Killing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient killing"}},nil} +c["Allocates Efficient Loading"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="efficient loading"}},nil} +c["Allocates Eldritch Will"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eldritch will"}},nil} +c["Allocates Electric Amplification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric amplification"}},nil} +c["Allocates Electric Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electric blood"}},nil} +c["Allocates Electrified Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrified claw"}},nil} +c["Allocates Electrifying Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying daze"}},nil} +c["Allocates Electrifying Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrifying nature"}},nil} +c["Allocates Electrocuting Exposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocuting exposure"}},nil} +c["Allocates Electrocution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrocution"}},nil} +c["Allocates Electrotherapy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="electrotherapy"}},nil} +c["Allocates Embodiment of Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of death"}},nil} +c["Allocates Embodiment of Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of frost"}},nil} +c["Allocates Embodiment of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embodiment of lightning"}},nil} +c["Allocates Emboldened Avatar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldened avatar"}},nil} +c["Allocates Emboldening Casts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldening casts"}},nil} +c["Allocates Emboldening Lead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="emboldening lead"}},nil} +c["Allocates Embracing Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="embracing frost"}},nil} +c["Allocates Empowering Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering infusions"}},nil} +c["Allocates Empowering Remains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remains"}},nil} +c["Allocates Empowering Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="empowering remnants"}},nil} +c["Allocates Encompassing Domain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="encompassing domain"}},nil} +c["Allocates Endless Blizzard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless blizzard"}},nil} +c["Allocates Endless Circuit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endless circuit"}},nil} +c["Allocates Endurance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endurance"}},nil} +c["Allocates Endured Suffering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="endured suffering"}},nil} +c["Allocates Enduring Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring archon"}},nil} +c["Allocates Enduring Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enduring deflection"}},nil} +c["Allocates Energise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energise"}},nil} +c["Allocates Energising Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising archon"}},nil} +c["Allocates Energising Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="energising deflection"}},nil} +c["Allocates Engineered Blaze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="engineered blaze"}},nil} +c["Allocates Enhanced Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced barrier"}},nil} +c["Allocates Enhanced Reflexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhanced reflexes"}},nil} +c["Allocates Enhancing Attacks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enhancing attacks"}},nil} +c["Allocates Entropic Incarnation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="entropic incarnation"}},nil} +c["Allocates Enveloping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="enveloping presence"}},nil} +c["Allocates Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="equilibrium"}},nil} +c["Allocates Eroding Chains"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="eroding chains"}},nil} +c["Allocates Erraticism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="erraticism"}},nil} +c["Allocates Escalating Mayhem"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating mayhem"}},nil} +c["Allocates Escalating Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalating toxins"}},nil} +c["Allocates Escalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escalation"}},nil} +c["Allocates Escape Strategy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escape strategy"}},nil} +c["Allocates Escape Velocity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="escape velocity"}},nil} +c["Allocates Essence Infusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="essence infusion"}},nil} +c["Allocates Ether Flow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ether flow"}},nil} +c["Allocates Event Horizon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="event horizon"}},nil} +c["Allocates Everlasting Glory"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting glory"}},nil} +c["Allocates Everlasting Infusions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="everlasting infusions"}},nil} +c["Allocates Evocational Practitioner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="evocational practitioner"}},nil} +c["Allocates Expendable Army"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="expendable army"}},nil} +c["Allocates Exploit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit"}},nil} +c["Allocates Exploit the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exploit the elements"}},nil} +c["Allocates Explosive Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive empowerment"}},nil} +c["Allocates Explosive Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="explosive impact"}},nil} +c["Allocates Exposed to the Cosmos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the cosmos"}},nil} +c["Allocates Exposed to the Inferno"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the inferno"}},nil} +c["Allocates Exposed to the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="exposed to the storm"}},nil} +c["Allocates Extinguishing Exhalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="extinguishing exhalation"}},nil} +c["Allocates Falcon Dive"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon dive"}},nil} +c["Allocates Falcon Technique"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="falcon technique"}},nil} +c["Allocates Fan the Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fan the flames"}},nil} +c["Allocates Far Sighted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="far sighted"}},nil} +c["Allocates Fast Acting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fast acting toxins"}},nil} +c["Allocates Fast Metabolism"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fast metabolism"}},nil} +c["Allocates Fate Finding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fate finding"}},nil} +c["Allocates Fated End"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fated end"}},nil} +c["Allocates Favourable Odds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="favourable odds"}},nil} +c["Allocates Fearful Paralysis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fearful paralysis"}},nil} +c["Allocates Feathered Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feathered fletching"}},nil} +c["Allocates Feel the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="feel the earth"}},nil} +c["Allocates Fervour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fervour"}},nil} +c["Allocates Final Barrage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="final barrage"}},nil} +c["Allocates Finality"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finality"}},nil} +c["Allocates Finesse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finesse"}},nil} +c["Allocates Finish Them"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finish them"}},nil} +c["Allocates Finishing Blows"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="finishing blows"}},nil} +c["Allocates Firestarter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="firestarter"}},nil} +c["Allocates First Approach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="first approach"}},nil} +c["Allocates First Principle of the Hollow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="first principle of the hollow"}},nil} +c["Allocates First Teachings of the Keeper"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="first teachings of the keeper"}},nil} +c["Allocates Flamewalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flamewalker"}},nil} +c["Allocates Flare"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flare"}},nil} +c["Allocates Flash Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flash storm"}},nil} +c["Allocates Flashy Parrying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flashy parrying"}},nil} +c["Allocates Fleshcrafting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fleshcrafting"}},nil} +c["Allocates Flip the Script"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flip the script"}},nil} +c["Allocates Flow of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flow of life"}},nil} +c["Allocates Flow of Time"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="flow of time"}},nil} +c["Allocates Focused Channel"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="focused channel"}},nil} +c["Allocates Focused Thrust"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="focused thrust"}},nil} +c["Allocates For the Jugular"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="for the jugular"}},nil} +c["Allocates Forces of Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forces of nature"}},nil} +c["Allocates Forcewave"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forcewave"}},nil} +c["Allocates Forthcoming"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="forthcoming"}},nil} +c["Allocates Fortified Aegis"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortified aegis"}},nil} +c["Allocates Fortified Location"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortified location"}},nil} +c["Allocates Fortifying Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fortifying blood"}},nil} +c["Allocates Frantic Fighter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic fighter"}},nil} +c["Allocates Frantic Reach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic reach"}},nil} +c["Allocates Frantic Swings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frantic swings"}},nil} +c["Allocates Frazzled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frazzled"}},nil} +c["Allocates Freedom of Movement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="freedom of movement"}},nil} +c["Allocates Frenetic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frenetic"}},nil} +c["Allocates Frightening Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frightening shield"}},nil} +c["Allocates Frostwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frostwalker"}},nil} +c["Allocates Frozen Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frozen claw"}},nil} +c["Allocates Frozen Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="frozen limit"}},nil} +c["Allocates Full Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full recovery"}},nil} +c["Allocates Full Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="full salvo"}},nil} +c["Allocates Fulmination"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="fulmination"}},nil} +c["Allocates Gem Enthusiast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gem enthusiast"}},nil} +c["Allocates General Electric"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general electric"}},nil} +c["Allocates General's Bindings"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="general's bindings"}},nil} +c["Allocates Giantslayer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="giantslayer"}},nil} +c["Allocates Gigantic Following"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gigantic following"}},nil} +c["Allocates Glaciation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glaciation"}},nil} +c["Allocates Glancing Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glancing deflection"}},nil} +c["Allocates Glazed Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glazed flesh"}},nil} +c["Allocates Glorious Anticipation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="glorious anticipation"}},nil} +c["Allocates Goring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="goring"}},nil} +c["Allocates Grace of the Ancestors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grace of the ancestors"}},nil} +c["Allocates Gravedigger"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="gravedigger"}},nil} +c["Allocates Greatest Defence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="greatest defence"}},nil} +c["Allocates Grenadier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grenadier"}},nil} +c["Allocates Grip of Evil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grip of evil"}},nil} +c["Allocates Grit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="grit"}},nil} +c["Allocates Growing Peril"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="growing peril"}},nil} +c["Allocates Growing Swarm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="growing swarm"}},nil} +c["Allocates Guided Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guided hand"}},nil} +c["Allocates Guts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guts"}},nil} +c["Allocates Guttural Roar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="guttural roar"}},nil} +c["Allocates Haemorrhaging Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="haemorrhaging cuts"}},nil} +c["Allocates Hail"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hail"}},nil} +c["Allocates Hale Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale heart"}},nil} +c["Allocates Hale Traveller"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hale traveller"}},nil} +c["Allocates Hallowed"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hallowed"}},nil} +c["Allocates Hardened Wood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hardened wood"}},nil} +c["Allocates Harmonic Generator"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harmonic generator"}},nil} +c["Allocates Harness the Elements"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harness the elements"}},nil} +c["Allocates Harsh Winter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="harsh winter"}},nil} +c["Allocates Hastening Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hastening barrier"}},nil} +c["Allocates Headshot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="headshot"}},nil} +c["Allocates Heart Tissue"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heart tissue"}},nil} +c["Allocates Heartbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartbreaking"}},nil} +c["Allocates Heartstopping"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping"}},nil} +c["Allocates Heartstopping Presence"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heartstopping presence"}},nil} +c["Allocates Heatproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heatproof"}},nil} +c["Allocates Heavy Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy ammunition"}},nil} +c["Allocates Heavy Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy armour"}},nil} +c["Allocates Heavy Buffer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy buffer"}},nil} +c["Allocates Heavy Contact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy contact"}},nil} +c["Allocates Heavy Drinker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy drinker"}},nil} +c["Allocates Heavy Frost"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy frost"}},nil} +c["Allocates Heavy Weaponry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="heavy weaponry"}},nil} +c["Allocates Hefty Unit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hefty unit"}},nil} +c["Allocates Hidden Barb"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hidden barb"}},nil} +c["Allocates Hide of the Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hide of the bear"}},nil} +c["Allocates High Alert"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="high alert"}},nil} +c["Allocates Hindered Capabilities"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindered capabilities"}},nil} +c["Allocates Hindering Obstacles"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hindering obstacles"}},nil} +c["Allocates Holy Protector"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="holy protector"}},nil} +c["Allocates Honourless"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="honourless"}},nil} +c["Allocates Howling Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="howling beast"}},nil} +c["Allocates Hulking Smash"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hulking smash"}},nil} +c["Allocates Hunker Down"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunker down"}},nil} +c["Allocates Hunter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter"}},nil} +c["Allocates Hunter's Talisman"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunter's talisman"}},nil} +c["Allocates Hunting Companion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="hunting companion"}},nil} +c["Allocates Ice Walls"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ice walls"}},nil} +c["Allocates Icebreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="icebreaker"}},nil} +c["Allocates Ichlotl's Inferno"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ichlotl's inferno"}},nil} +c["Allocates Ignore Pain"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ignore pain"}},nil} +c["Allocates Illuminated Crown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="illuminated crown"}},nil} +c["Allocates Imbibed Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="imbibed power"}},nil} +c["Allocates Immaterial"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immaterial"}},nil} +c["Allocates Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immolation"}},nil} +c["Allocates Immortal Infamy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immortal infamy"}},nil} +c["Allocates Immortal Thirst"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="immortal thirst"}},nil} +c["Allocates Impact Area"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impact area"}},nil} +c["Allocates Impact Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impact force"}},nil} +c["Allocates Impair"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impair"}},nil} +c["Allocates Impending Doom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impending doom"}},nil} +c["Allocates Impenetrable Shell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="impenetrable shell"}},nil} +c["Allocates In Your Face"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="in your face"}},nil} +c["Allocates In the Thick of It"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="in the thick of it"}},nil} +c["Allocates Incendiary"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="incendiary"}},nil} +c["Allocates Incision"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="incision"}},nil} +c["Allocates Inescapable Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inescapable cold"}},nil} +c["Allocates Inevitable Rupture"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inevitable rupture"}},nil} +c["Allocates Infernal Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infernal limit"}},nil} +c["Allocates Infused Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused flesh"}},nil} +c["Allocates Infused Limits"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infused limits"}},nil} +c["Allocates Infusing Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infusing power"}},nil} +c["Allocates Infusion of Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="infusion of power"}},nil} +c["Allocates Ingenuity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ingenuity"}},nil} +c["Allocates Inherited Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inherited strength"}},nil} +c["Allocates Initiative"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="initiative"}},nil} +c["Allocates Inner Faith"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inner faith"}},nil} +c["Allocates Insightfulness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insightfulness"}},nil} +c["Allocates Inspiring Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring ally"}},nil} +c["Allocates Inspiring Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="inspiring leader"}},nil} +c["Allocates Instability"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="instability"}},nil} +c["Allocates Insulated Treads"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insulated treads"}},nil} +c["Allocates Insulating Hide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="insulating hide"}},nil} +c["Allocates Intense Dose"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="intense dose"}},nil} +c["Allocates Intense Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="intense flames"}},nil} +c["Allocates Internal Bleeding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="internal bleeding"}},nil} +c["Allocates Investing Energies"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="investing energies"}},nil} +c["Allocates Invigorating Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating archon"}},nil} +c["Allocates Invigorating Grandeur"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating grandeur"}},nil} +c["Allocates Invigorating Hate"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invigorating hate"}},nil} +c["Allocates Invocated Echoes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated echoes"}},nil} +c["Allocates Invocated Efficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated efficiency"}},nil} +c["Allocates Invocated Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="invocated limit"}},nil} +c["Allocates Iron Slippers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="iron slippers"}},nil} +c["Allocates Irreparable"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="irreparable"}},nil} +c["Allocates Jack of all Trades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="jack of all trades"}},nil} +c["Allocates Javelin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="javelin"}},nil} +c["Allocates Kaom's Blessing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kaom's blessing"}},nil} +c["Allocates Kept at Bay"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kept at bay"}},nil} +c["Allocates Killer Instinct"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="killer instinct"}},nil} +c["Allocates Kite Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="kite runner"}},nil} +c["Allocates Knight of Chitus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="knight of chitus"}},nil} +c["Allocates Knight of Izaro"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="knight of izaro"}},nil} +c["Allocates Knight of Tarcus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="knight of tarcus"}},nil} +c["Allocates Last Stand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="last stand"}},nil} +c["Allocates Lasting Boons"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting boons"}},nil} +c["Allocates Lasting Incantations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting incantations"}},nil} +c["Allocates Lasting Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting toxins"}},nil} +c["Allocates Lasting Trauma"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lasting trauma"}},nil} +c["Allocates Lavianga's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lavianga's brew"}},nil} +c["Allocates Lay Siege"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lay siege"}},nil} +c["Allocates Lead by Example"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lead by example"}},nil} +c["Allocates Leaping Ambush"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leaping ambush"}},nil} +c["Allocates Leather Bound Gauntlets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leather bound gauntlets"}},nil} +c["Allocates Leeching Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="leeching toxins"}},nil} +c["Allocates Left Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="left hand of darkness"}},nil} +c["Allocates Left Ventricle"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="left ventricle"}},nil} +c["Allocates Licking Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="licking wounds"}},nil} +c["Allocates Lifelong Friend"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lifelong friend"}},nil} +c["Allocates Light on your Feet"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="light on your feet"}},nil} +c["Allocates Lightning Quick"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning quick"}},nil} +c["Allocates Lightning Rod"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lightning rod"}},nil} +c["Allocates Lingering Horror"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering horror"}},nil} +c["Allocates Lingering Whispers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lingering whispers"}},nil} +c["Allocates Living Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="living death"}},nil} +c["Allocates Lockdown"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lockdown"}},nil} +c["Allocates Locked On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="locked on"}},nil} +c["Allocates Lone Warrior"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lone warrior"}},nil} +c["Allocates Long Distance Relationship"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="long distance relationship"}},nil} +c["Allocates Loose Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="loose flesh"}},nil} +c["Allocates Lord of Horrors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lord of horrors"}},nil} +c["Allocates Lord of the Squall"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lord of the squall"}},nil} +c["Allocates Low Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="low tolerance"}},nil} +c["Allocates Lucidity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lucidity"}},nil} +c["Allocates Lucky Rabbit Foot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lucky rabbit foot"}},nil} +c["Allocates Lust for Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lust for power"}},nil} +c["Allocates Lust for Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="lust for sacrifice"}},nil} +c["Allocates Made to Last"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="made to last"}},nil} +c["Allocates Madness in the Bones"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="madness in the bones"}},nil} +c["Allocates Magnum Opus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="magnum opus"}},nil} +c["Allocates Maiming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="maiming strike"}},nil} +c["Allocates Manifold Method"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="manifold method"}},nil} +c["Allocates Marathon Runner"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marathon runner"}},nil} +c["Allocates Marked Agility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked agility"}},nil} +c["Allocates Marked for Death"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for death"}},nil} +c["Allocates Marked for Sickness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="marked for sickness"}},nil} +c["Allocates Martial Artistry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="martial artistry"}},nil} +c["Allocates Mass Hysteria"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mass hysteria"}},nil} +c["Allocates Mass Rejuvenation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mass rejuvenation"}},nil} +c["Allocates Master Fletching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master fletching"}},nil} +c["Allocates Master of Hexes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="master of hexes"}},nil} +c["Allocates Material Solidification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="material solidification"}},nil} +c["Allocates Mauling Stuns"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mauling stuns"}},nil} +c["Allocates Meat Recycling"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="meat recycling"}},nil} +c["Allocates Melding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melding"}},nil} +c["Allocates Melting Flames"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="melting flames"}},nil} +c["Allocates Mending Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mending deflection"}},nil} +c["Allocates Mental Alacrity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental alacrity"}},nil} +c["Allocates Mental Perseverance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental perseverance"}},nil} +c["Allocates Mental Toughness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mental toughness"}},nil} +c["Allocates Mind Eraser"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mind eraser"}},nil} +c["Allocates Molten Being"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten being"}},nil} +c["Allocates Molten Carapace"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten carapace"}},nil} +c["Allocates Molten Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="molten claw"}},nil} +c["Allocates Moment of Truth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="moment of truth"}},nil} +c["Allocates Momentum"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="momentum"}},nil} +c["Allocates Morgana, the Storm Seer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="morgana, the storm seer"}},nil} +c["Allocates Multi Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="multi shot"}},nil} +c["Allocates Multitasking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="multitasking"}},nil} +c["Allocates Mutewind Agility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mutewind agility"}},nil} +c["Allocates Mystic Avalanche"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mystic avalanche"}},nil} +c["Allocates Mystical Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="mystical rage"}},nil} +c["Allocates Natural Immunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="natural immunity"}},nil} +c["Allocates Nature's Bite"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nature's bite"}},nil} +c["Allocates Near Sighted"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near sighted"}},nil} +c["Allocates Near at Hand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="near at hand"}},nil} +c["Allocates Necromantic Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necromantic ward"}},nil} +c["Allocates Necrotic Touch"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotic touch"}},nil} +c["Allocates Necrotised Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="necrotised flesh"}},nil} +c["Allocates Nimble Strength"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nimble strength"}},nil} +c["Allocates Nourishing Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nourishing ally"}},nil} +c["Allocates Nurturing Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="nurturing guardian"}},nil} +c["Allocates Off-Balancing Retort"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="off-balancing retort"}},nil} +c["Allocates One For All"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one for all"}},nil} +c["Allocates One With Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with flame"}},nil} +c["Allocates One with the River"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the river"}},nil} +c["Allocates One with the Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="one with the storm"}},nil} +c["Allocates Overexposure"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overexposure"}},nil} +c["Allocates Overflowing Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overflowing power"}},nil} +c["Allocates Overheating Blow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overheating blow"}},nil} +c["Allocates Overload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overload"}},nil} +c["Allocates Overwhelm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelm"}},nil} +c["Allocates Overwhelming Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overwhelming strike"}},nil} +c["Allocates Overzealous"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="overzealous"}},nil} +c["Allocates Pack Encouragement"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pack encouragement"}},nil} +c["Allocates Paragon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="paragon"}},nil} +c["Allocates Paranoia"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="paranoia"}},nil} +c["Allocates Passthrough Rounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="passthrough rounds"}},nil} +c["Allocates Patient Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="patient barrier"}},nil} +c["Allocates Perfect Opportunity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfect opportunity"}},nil} +c["Allocates Perfectly Placed Knife"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perfectly placed knife"}},nil} +c["Allocates Perforation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perforation"}},nil} +c["Allocates Perpetual Freeze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="perpetual freeze"}},nil} +c["Allocates Personal Touch"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="personal touch"}},nil} +c["Allocates Pierce the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pierce the heart"}},nil} +c["Allocates Piercing Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="piercing claw"}},nil} +c["Allocates Piercing Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="piercing shot"}},nil} +c["Allocates Pile On"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pile on"}},nil} +c["Allocates Pin and Run"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin and run"}},nil} +c["Allocates Pin their Motivation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pin their motivation"}},nil} +c["Allocates Pinpoint Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pinpoint shot"}},nil} +c["Allocates Pliable Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pliable flesh"}},nil} +c["Allocates Pocket Sand"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pocket sand"}},nil} +c["Allocates Polished Iron"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="polished iron"}},nil} +c["Allocates Polymathy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="polymathy"}},nil} +c["Allocates Potent Incantation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="potent incantation"}},nil} +c["Allocates Power Conduction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power conduction"}},nil} +c["Allocates Power Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="power shots"}},nil} +c["Allocates Precise Invocations"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise invocations"}},nil} +c["Allocates Precise Point"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise point"}},nil} +c["Allocates Precise Volatility"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precise volatility"}},nil} +c["Allocates Precision Salvo"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="precision salvo"}},nil} +c["Allocates Preemptive Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="preemptive strike"}},nil} +c["Allocates Presence Present"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="presence present"}},nil} +c["Allocates Preservation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="preservation"}},nil} +c["Allocates Pressure Points"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pressure points"}},nil} +c["Allocates Price of Freedom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="price of freedom"}},nil} +c["Allocates Primal Growth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal growth"}},nil} +c["Allocates Primal Protection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal protection"}},nil} +c["Allocates Primal Rage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal rage"}},nil} +c["Allocates Primal Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primal sundering"}},nil} +c["Allocates Primed to Explode"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="primed to explode"}},nil} +c["Allocates Prism Guard"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prism guard"}},nil} +c["Allocates Profane Commander"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="profane commander"}},nil} +c["Allocates Proficiency"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="proficiency"}},nil} +c["Allocates Projectile Bulwark"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="projectile bulwark"}},nil} +c["Allocates Proliferating Weeds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="proliferating weeds"}},nil} +c["Allocates Prolonged Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prolonged assault"}},nil} +c["Allocates Prolonged Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="prolonged fury"}},nil} +c["Allocates Protraction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="protraction"}},nil} +c["Allocates Psychic Fragmentation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="psychic fragmentation"}},nil} +c["Allocates Punctured Lung"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="punctured lung"}},nil} +c["Allocates Puppet Master chance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="puppet master chance"}},nil} +c["Allocates Pure Chaos"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure chaos"}},nil} +c["Allocates Pure Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="pure power"}},nil} +c["Allocates Push the Advantage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="push the advantage"}},nil} +c["Allocates Quick Fingers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick fingers"}},nil} +c["Allocates Quick Recovery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="quick recovery"}},nil} +c["Allocates Rallying Form"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rallying form"}},nil} +c["Allocates Rallying Icon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rallying icon"}},nil} +c["Allocates Rapid Reload"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid reload"}},nil} +c["Allocates Rapid Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rapid strike"}},nil} +c["Allocates Rattled"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rattled"}},nil} +c["Allocates Raw Mana"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="raw mana"}},nil} +c["Allocates Reaching Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaching strike"}},nil} +c["Allocates Reaving"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reaving"}},nil} +c["Allocates Redblade Discipline"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="redblade discipline"}},nil} +c["Allocates Refills"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refills"}},nil} +c["Allocates Refocus"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="refocus"}},nil} +c["Allocates Regenerative Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="regenerative flesh"}},nil} +c["Allocates Reinforced Rallying"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinforced rallying"}},nil} +c["Allocates Reinvigoration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reinvigoration"}},nil} +c["Allocates Relentless Fallen"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="relentless fallen"}},nil} +c["Allocates Remnant Attraction"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="remnant attraction"}},nil} +c["Allocates Repeating Explosives"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repeating explosives"}},nil} +c["Allocates Replenishing Horde"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="replenishing horde"}},nil} +c["Allocates Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reprisal"}},nil} +c["Allocates Repulsion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="repulsion"}},nil} +c["Allocates Resolute Reach"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolute reach"}},nil} +c["Allocates Resolute Reprisal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolute reprisal"}},nil} +c["Allocates Resolution"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resolution"}},nil} +c["Allocates Restless Dead"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="restless dead"}},nil} +c["Allocates Resurging Archon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="resurging archon"}},nil} +c["Allocates Retaliation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="retaliation"}},nil} +c["Allocates Return to Nature"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="return to nature"}},nil} +c["Allocates Reusable Ammunition"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reusable ammunition"}},nil} +c["Allocates Revenge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="revenge"}},nil} +c["Allocates Reverberating Parry"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reverberating parry"}},nil} +c["Allocates Reverberation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="reverberation"}},nil} +c["Allocates Right Hand of Darkness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="right hand of darkness"}},nil} +c["Allocates Roaring Cries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roaring cries"}},nil} +c["Allocates Roil"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roil"}},nil} +c["Allocates Roll and Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="roll and strike"}},nil} +c["Allocates Ruin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ruin"}},nil} +c["Allocates Ruinic Helm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="ruinic helm"}},nil} +c["Allocates Run and Gun"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="run and gun"}},nil} +c["Allocates Rupturing Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rupturing pins"}},nil} +c["Allocates Rusted Pins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="rusted pins"}},nil} +c["Allocates Sacrificial Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sacrificial blood"}},nil} +c["Allocates Sand in the Eyes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sand in the eyes"}},nil} +c["Allocates Sanguimantic Rituals"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguimantic rituals"}},nil} +c["Allocates Sanguine Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sanguine tolerance"}},nil} +c["Allocates Saqawal's Guidance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="saqawal's guidance"}},nil} +c["Allocates Saqawal's Hide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="saqawal's hide"}},nil} +c["Allocates Saqawal's Talon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="saqawal's talon"}},nil} +c["Allocates Savagery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savagery"}},nil} +c["Allocates Savoured Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savoured blood"}},nil} +c["Allocates Savouring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="savouring"}},nil} +c["Allocates Scales of the Wyvern"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="scales of the wyvern"}},nil} +c["Allocates Searing Heat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="searing heat"}},nil} +c["Allocates Secrets of the Orb"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="secrets of the orb"}},nil} +c["Allocates Seeing Stars"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="seeing stars"}},nil} +c["Allocates Self Immolation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self immolation"}},nil} +c["Allocates Self Mortification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="self mortification"}},nil} +c["Allocates Serrated Edges"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="serrated edges"}},nil} +c["Allocates Shadow Dancing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shadow dancing"}},nil} +c["Allocates Sharp Sight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sharp sight"}},nil} +c["Allocates Sharpened Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sharpened claw"}},nil} +c["Allocates Shatter Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shatter palm"}},nil} +c["Allocates Shattered Crystal"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattered crystal"}},nil} +c["Allocates Shattering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering"}},nil} +c["Allocates Shattering Blow"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering blow"}},nil} +c["Allocates Shattering Daze"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shattering daze"}},nil} +c["Allocates Shedding Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shedding skin"}},nil} +c["Allocates Shield Expertise"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shield expertise"}},nil} +c["Allocates Shifted Strikes"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shifted strikes"}},nil} +c["Allocates Shimmering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering"}},nil} +c["Allocates Shimmering Mirage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shimmering mirage"}},nil} +c["Allocates Shocking Limit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shocking limit"}},nil} +c["Allocates Shockproof"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockproof"}},nil} +c["Allocates Shockwaves"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shockwaves"}},nil} +c["Allocates Short Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="short shot"}},nil} +c["Allocates Shrapnel"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shrapnel"}},nil} +c["Allocates Shredding Contraptions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding contraptions"}},nil} +c["Allocates Shredding Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="shredding force"}},nil} +c["Allocates Sic 'Em"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sic 'em"}},nil} +c["Allocates Sigil of Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of fire"}},nil} +c["Allocates Sigil of Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of ice"}},nil} +c["Allocates Sigil of Lightning"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sigil of lightning"}},nil} +c["Allocates Silent Guardian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="silent guardian"}},nil} +c["Allocates Singular Purpose"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="singular purpose"}},nil} +c["Allocates Siphon"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="siphon"}},nil} +c["Allocates Sitting Duck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sitting duck"}},nil} +c["Allocates Skullcrusher"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="skullcrusher"}},nil} +c["Allocates Sling Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sling shots"}},nil} +c["Allocates Slippery Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slippery ice"}},nil} +c["Allocates Slow Burn"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="slow burn"}},nil} +c["Allocates Smoke Inhalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="smoke inhalation"}},nil} +c["Allocates Sniper"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sniper"}},nil} +c["Allocates Snowpiercer"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="snowpiercer"}},nil} +c["Allocates Soul Bloom"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="soul bloom"}},nil} +c["Allocates Spaghettification"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spaghettification"}},nil} +c["Allocates Specialised Shots"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="specialised shots"}},nil} +c["Allocates Spectral Ward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spectral ward"}},nil} +c["Allocates Spell Haste"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spell haste"}},nil} +c["Allocates Spellblade"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spellblade"}},nil} +c["Allocates Spike Pit"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spike pit"}},nil} +c["Allocates Spiked Armour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked armour"}},nil} +c["Allocates Spiked Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiked shield"}},nil} +c["Allocates Spiral into Depression"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into depression"}},nil} +c["Allocates Spiral into Insanity"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into insanity"}},nil} +c["Allocates Spiral into Mania"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spiral into mania"}},nil} +c["Allocates Spirit Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit bond"}},nil} +c["Allocates Spirit of the Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the bear"}},nil} +c["Allocates Spirit of the Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the wolf"}},nil} +c["Allocates Spirit of the Wyvern"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spirit of the wyvern"}},nil} +c["Allocates Splintering Force"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splintering force"}},nil} +c["Allocates Splinters"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splinters"}},nil} +c["Allocates Split Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split shot"}},nil} +c["Allocates Split the Earth"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="split the earth"}},nil} +c["Allocates Splitting Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="splitting ground"}},nil} +c["Allocates Spray and Pray"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spray and pray"}},nil} +c["Allocates Spreading Shocks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="spreading shocks"}},nil} +c["Allocates Stacking Toxins"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stacking toxins"}},nil} +c["Allocates Staggering Palm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering palm"}},nil} +c["Allocates Staggering Wounds"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staggering wounds"}},nil} +c["Allocates Stand Ground"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand ground"}},nil} +c["Allocates Stand and Deliver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stand and deliver"}},nil} +c["Allocates Stars Aligned"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stars aligned"}},nil} +c["Allocates Staunch Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunch deflection"}},nil} +c["Allocates Staunching"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="staunching"}},nil} +c["Allocates Steadfast Resolve"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steadfast resolve"}},nil} +c["Allocates Steady Footing"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="steady footing"}},nil} +c["Allocates Stigmata"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stigmata"}},nil} +c["Allocates Stimulants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stimulants"}},nil} +c["Allocates Storm Driven"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm driven"}},nil} +c["Allocates Storm Surge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm surge"}},nil} +c["Allocates Storm Swell"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm swell"}},nil} +c["Allocates Storm's Rebuke"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="storm's rebuke"}},nil} +c["Allocates Stormbreaker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormbreaker"}},nil} +c["Allocates Stormcharged"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormcharged"}},nil} +c["Allocates Stormwalker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stormwalker"}},nil} +c["Allocates Strike True"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strike true"}},nil} +c["Allocates Stripped Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stripped defences"}},nil} +c["Allocates Strong Chin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="strong chin"}},nil} +c["Allocates Struck Through"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="struck through"}},nil} +c["Allocates Stupefy"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stupefy"}},nil} +c["Allocates Sturdy Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sturdy ally"}},nil} +c["Allocates Stylebender"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="stylebender"}},nil} +c["Allocates Subterfuge Mask"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="subterfuge mask"}},nil} +c["Allocates Succour"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="succour"}},nil} +c["Allocates Sudden Escalation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sudden escalation"}},nil} +c["Allocates Sudden Infuriation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sudden infuriation"}},nil} +c["Allocates Suffusion"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="suffusion"}},nil} +c["Allocates Sundering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="sundering"}},nil} +c["Allocates Supportive Ancestors"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="supportive ancestors"}},nil} +c["Allocates Surging Beast"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="surging beast"}},nil} +c["Allocates Surging Currents"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="surging currents"}},nil} +c["Allocates Swift Blocking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift blocking"}},nil} +c["Allocates Swift Claw"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift claw"}},nil} +c["Allocates Swift Flight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift flight"}},nil} +c["Allocates Swift Interruption"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="swift interruption"}},nil} +c["Allocates Symbol of Defiance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="symbol of defiance"}},nil} +c["Allocates Tactical Retreat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tactical retreat"}},nil} +c["Allocates Tainted Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tainted strike"}},nil} +c["Allocates Taste for Blood"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taste for blood"}},nil} +c["Allocates Taut Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="taut flesh"}},nil} +c["Allocates Tempered Defences"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered defences"}},nil} +c["Allocates Tempered Mind"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tempered mind"}},nil} +c["Allocates Temporal Mastery"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="temporal mastery"}},nil} +c["Allocates Tenfold Attacks"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tenfold attacks"}},nil} +c["Allocates Thaumaturgic Generator"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thaumaturgic generator"}},nil} +c["Allocates The Ancient Serpent"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the ancient serpent"}},nil} +c["Allocates The Fabled Stag"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the fabled stag"}},nil} +c["Allocates The Frenzied Bear"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the frenzied bear"}},nil} +c["Allocates The Great Boar"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the great boar"}},nil} +c["Allocates The Howling Primate"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the howling primate"}},nil} +c["Allocates The Molten One's Gift"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the molten one's gift"}},nil} +c["Allocates The Noble Wolf"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the noble wolf"}},nil} +c["Allocates The Power Within"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the power within"}},nil} +c["Allocates The Quick Fox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the quick fox"}},nil} +c["Allocates The Raging Ox"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the raging ox"}},nil} +c["Allocates The Soul Meridian"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the soul meridian"}},nil} +c["Allocates The Spring Hare"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the spring hare"}},nil} +c["Allocates The Wild Cat"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the wild cat"}},nil} +c["Allocates The Winter Owl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="the winter owl"}},nil} +c["Allocates Thickened Arteries"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thickened arteries"}},nil} +c["Allocates Thicket Warding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thicket warding"}},nil} +c["Allocates Thin Ice"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thin ice"}},nil} +c["Allocates Thirst for Endurance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst for endurance"}},nil} +c["Allocates Thirst for Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirst for power"}},nil} +c["Allocates Thirsting Ally"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thirsting ally"}},nil} +c["Allocates Thornhide"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thornhide"}},nil} +c["Allocates Thousand Cuts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thousand cuts"}},nil} +c["Allocates Thrill of Battle"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of battle"}},nil} +c["Allocates Thrill of the Fight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thrill of the fight"}},nil} +c["Allocates Throatseeker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="throatseeker"}},nil} +c["Allocates Thunderstruck"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="thunderstruck"}},nil} +c["Allocates Tides of Change"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tides of change"}},nil} +c["Allocates Time Manipulation"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="time manipulation"}},nil} +c["Allocates Titanic"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="titanic"}},nil} +c["Allocates Tolerant Equipment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tolerant equipment"}},nil} +c["Allocates Total Incineration"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="total incineration"}},nil} +c["Allocates Touch the Arcane"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="touch the arcane"}},nil} +c["Allocates Towering Shield"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="towering shield"}},nil} +c["Allocates Toxic Sludge"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="toxic sludge"}},nil} +c["Allocates Toxic Tolerance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="toxic tolerance"}},nil} +c["Allocates Trained Deflection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained deflection"}},nil} +c["Allocates Trained Turrets"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trained turrets"}},nil} +c["Allocates Tribal Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tribal fury"}},nil} +c["Allocates Trick Shot"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="trick shot"}},nil} +c["Allocates True Strike"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="true strike"}},nil} +c["Allocates Tukohama's Brew"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="tukohama's brew"}},nil} +c["Allocates Turn the Clock Back"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock back"}},nil} +c["Allocates Turn the Clock Forward"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="turn the clock forward"}},nil} +c["Allocates Unbending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbending"}},nil} +c["Allocates Unbothering Cold"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbothering cold"}},nil} +c["Allocates Unbound Forces"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbound forces"}},nil} +c["Allocates Unbreakable"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbreakable"}},nil} +c["Allocates Unbreaking"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unbreaking"}},nil} +c["Allocates Unerring Impact"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unerring impact"}},nil} +c["Allocates Unexpected Finesse"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unexpected finesse"}},nil} +c["Allocates Unfettered"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unfettered"}},nil} +c["Allocates Unforgiving"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unforgiving"}},nil} +c["Allocates Unhindered"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unhindered"}},nil} +c["Allocates Unimpeded"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unimpeded"}},nil} +c["Allocates Unleash Fire"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unleash fire"}},nil} +c["Allocates Unnatural Resilience"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unnatural resilience"}},nil} +c["Allocates Unsight"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unsight"}},nil} +c["Allocates Unspoken Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unspoken bond"}},nil} +c["Allocates Unstable Bond"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstable bond"}},nil} +c["Allocates Unstoppable Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unstoppable barrier"}},nil} +c["Allocates Unyielding"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="unyielding"}},nil} +c["Allocates Urgent Call"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="urgent call"}},nil} +c["Allocates Utility Ordnance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utility ordnance"}},nil} +c["Allocates Utmost Offering"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="utmost offering"}},nil} +c["Allocates Vale Shelter"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vale shelter"}},nil} +c["Allocates Vengeance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeance"}},nil} +c["Allocates Vengeful Fury"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vengeful fury"}},nil} +c["Allocates Versatile Arms"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="versatile arms"}},nil} +c["Allocates Viciousness"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="viciousness"}},nil} +c["Allocates Vigilance"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigilance"}},nil} +c["Allocates Vigorous Remnants"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vigorous remnants"}},nil} +c["Allocates Vile Mending"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vile mending"}},nil} +c["Allocates Vocal Empowerment"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vocal empowerment"}},nil} +c["Allocates Void"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="void"}},nil} +c["Allocates Volatile Grenades"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="volatile grenades"}},nil} +c["Allocates Volcanic Skin"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="volcanic skin"}},nil} +c["Allocates Voll's Protection"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="voll's protection"}},nil} +c["Allocates Voracious"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="voracious"}},nil} +c["Allocates Vulgar Methods"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="vulgar methods"}},nil} +c["Allocates Waning Hindrances"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waning hindrances"}},nil} +c["Allocates Warding Fetish"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding fetish"}},nil} +c["Allocates Warding Potions"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warding potions"}},nil} +c["Allocates Warlord Berserker"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord berserker"}},nil} +c["Allocates Warlord Leader"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warlord leader"}},nil} +c["Allocates Warm the Heart"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="warm the heart"}},nil} +c["Allocates Wary Dodging"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wary dodging"}},nil} +c["Allocates Wasting"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wasting"}},nil} +c["Allocates Wasting Casts"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wasting casts"}},nil} +c["Allocates Watchtowers"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="watchtowers"}},nil} +c["Allocates Waters of Life"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="waters of life"}},nil} +c["Allocates Well of Power"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="well of power"}},nil} +c["Allocates Wellspring"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wellspring"}},nil} +c["Allocates Whirling Assault"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="whirling assault"}},nil} +c["Allocates Wide Barrier"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wide barrier"}},nil} +c["Allocates Widespread Coverage"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="widespread coverage"}},nil} +c["Allocates Wild Storm"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wild storm"}},nil} +c["Allocates Wither Away"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wither away"}},nil} +c["Allocates Wolf's Howl"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wolf's howl"}},nil} +c["Allocates Woodland Aspect"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="woodland aspect"}},nil} +c["Allocates Wrapped Quiver"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wrapped quiver"}},nil} +c["Allocates Wyvern's Breath"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="wyvern's breath"}},nil} +c["Allocates Zone of Control"]={{[1]={flags=0,keywordFlags=0,name="GrantedPassive",type="LIST",value="zone of control"}},nil} c["Alternating every 5 seconds:"]={nil,"Alternating every 5 seconds: "} c["Alternating every 5 seconds: Take 30% less Damage from Hits"]={nil,"Alternating every 5 seconds: Take 30% less Damage from Hits "} c["Alternating every 5 seconds: Take 40% less Damage from Hits"]={nil,"Alternating every 5 seconds: Take 40% less Damage from Hits "} c["Always Hits"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil} -c["Always Poison on Hit with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=8192,keywordFlags=0,name="PoisonChance",type="OVERRIDE",value=100}},nil} +c["Always Poison on Hit with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=8192,keywordFlags=0,name="PoisonChance",type="OVERRIDE",value=100}},nil} c["Always deals Critical Hits against Heavy Stunned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HeavyStunned"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ancestral Bond"}},nil} c["Ancestrally Boosted Attacks deal 16% increased Damage"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostDamage",type="INC",value=16}},nil} c["Ancestrally Boosted Attacks deal 30% increased Damage"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostDamage",type="INC",value=30}},nil} c["Ancestrally Boosted Attacks deal 8% increased Damage"]={{[1]={flags=1,keywordFlags=0,name="AncestralBoostDamage",type="INC",value=8}},nil} -c["Any number of Poisons from this Weapon can affect a target at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=167,type="SkillType"},flags=0,keywordFlags=0,name="PoisonStacks",type="OVERRIDE",value=math.huge}},nil} +c["Any number of Poisons from this Weapon can affect a target at the same time"]={{[1]={flags=0,keywordFlags=0,name="PoisonCanStack",type="FLAG",value=true},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={neg=true,skillType=166,type="SkillType"},flags=0,keywordFlags=0,name="PoisonStacks",type="OVERRIDE",value=math.huge}},nil} c["Apply 10 Critical Weakness to Enemies when Consuming a Mark on them"]={{[1]={flags=0,keywordFlags=0,name="ApplyCriticalWeakness",type="FLAG",value=true}},nil} c["Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised"]={nil,"Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised "} c["Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeLifeRegen",type="FLAG",value=true}},nil} @@ -3634,6 +4532,7 @@ c["Archon Buffs also grant +30% Critical Hit Chance"]={nil,"Archon Buffs also gr c["Archon Buffs also grant +50% Critical Damage Bonus"]={nil,"Archon Buffs also grant +50% Critical Damage Bonus "} c["Archon Buffs also grant +50% Critical Damage Bonus Archon Buffs also grant +30% Critical Hit Chance"]={nil,"Archon Buffs also grant +50% Critical Damage Bonus Archon Buffs also grant +30% Critical Hit Chance "} c["Archon Buffs also grant 10% increased Movement Speed"]={nil,"Archon Buffs also grant 10% increased Movement Speed "} +c["Archon Buffs have no recovery period after you lose one"]={nil,"Archon Buffs have no recovery period after you lose one "} c["Archon recovery period expires 10% faster"]={nil,"Archon recovery period expires 10% faster "} c["Archon recovery period expires 10% faster 10% increased effect of Archon Buffs on you"]={nil,"Archon recovery period expires 10% faster 10% increased effect of Archon Buffs on you "} c["Archon recovery period expires 25% faster"]={nil,"Archon recovery period expires 25% faster "} @@ -3684,7 +4583,7 @@ c["Attacks used by Totems have 4% increased Attack Speed per Summoned Totem"]={{ c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil} c["Attacks used by Totems have 6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=6}},nil} c["Attacks using your Weapons have Added Physical Damage equal"]={nil,"Added Physical Damage equal "} -c["Attacks using your Weapons have Added Physical Damage equal to 25% of the Accuracy Rating on the Weapon"]={{[1]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1},[3]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[4]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=167,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1}},nil} +c["Attacks using your Weapons have Added Physical Damage equal to 25% of the Accuracy Rating on the Weapon"]={{[1]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=166,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={percent="25",stat="AccuracyOnWeapon 1",type="PercentStat"},[2]={neg=true,skillType=166,type="SkillType"},[3]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1},[3]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=166,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[4]={[1]={percent="25",stat="AccuracyOnWeapon 2",type="PercentStat"},[2]={neg=true,skillType=166,type="SkillType"},[3]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=1}},nil} c["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=15}},nil} c["Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"]={{[1]={flags=17179869184,keywordFlags=0,name="AilmentChance",type="INC",value=20}},nil} c["Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element"]={{[1]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil} @@ -3742,6 +4641,8 @@ c["Bleeding you inflict is Aggravated"]={{[1]={flags=0,keywordFlags=0,name="Enem c["Bleeding you inflict on Cursed targets is Aggravated"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:BleedAggravated",type="FLAG",value=true}}}},nil} c["Bleeding you inflict on Pinned Enemies is Aggravated"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Pinned"},flags=0,keywordFlags=0,name="Condition:BleedAggravated",type="FLAG",value=true}}}},nil} c["Blind Chilled enemies on Hit"]={nil,"Blind Chilled enemies on Hit "} +c["Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised"]={nil,"Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised "} +c["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"]={nil,"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 "} c["Blind Enemies when they Stun you"]={nil,"Blind Enemies when they Stun you "} c["Blind Targets when you Poison them"]={nil,"Blind Targets when you Poison them "} c["Blind does not affect your Light Radius"]={nil,"Blind does not affect your Light Radius "} @@ -3792,9 +4693,9 @@ c["Bulwark"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Bu c["Burning Enemies you kill have a 5% chance to Explode, dealing a"]={nil,"Burning Enemies you kill have a 5% chance to Explode, dealing a "} c["Burning Enemies you kill have a 5% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,keyOfScaledMod="value",type="Fire",value=5}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Can Allocate Passive Skills from the Sorceress's starting point"]={nil,"Can Allocate Passive Skills from the Sorceress's starting point "} -c["Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Points"]={nil,"Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Points "} +c["Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Point"]={nil,"Can Allocate Passive Skills from the Sorceress's starting point Grants 4 Passive Skill Point "} c["Can Allocate Passive Skills from the Warrior's starting point"]={nil,"Can Allocate Passive Skills from the Warrior's starting point "} -c["Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Points"]={nil,"Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Points "} +c["Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Point"]={nil,"Can Allocate Passive Skills from the Warrior's starting point Grants 4 Passive Skill Point "} c["Can Attack as though using a Quarterstaff while both of your hand slots are empty"]={nil,"Can Attack as though using a Quarterstaff while both of your hand slots are empty "} c["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:"]={nil,"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: "} c["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"]={nil,"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 "} @@ -3884,6 +4785,7 @@ c["Chaos Resistance is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="Cha c["Chaos Resistance is zero"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="OVERRIDE",value=0}},nil} c["Charms applied to you have 1% increased Effect per 10 Tribute"]={nil,"Charms applied to you have 1% increased Effect per 10 Tribute "} c["Charms applied to you have 10% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="CharmEffect",type="INC",value=10}},nil} +c["Charms applied to you have 100% increased Effect per empty Charm slot"]={nil,"Charms applied to you have 100% increased Effect per empty Charm slot "} c["Charms applied to you have 25% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="CharmEffect",type="INC",value=25}},nil} c["Charms gain 0.15 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGenerated",type="BASE",value=0.15}},nil} c["Charms gain 0.5 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="CharmChargesGenerated",type="BASE",value=0.5}},nil} @@ -4012,7 +4914,6 @@ c["Damaging Ailments deal damage 12% faster"]={{[1]={flags=0,keywordFlags=0,name c["Damaging Ailments deal damage 4% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=4},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=4}},nil} c["Damaging Ailments deal damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteFaster",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5},[3]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=5}},nil} c["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"]={nil,"Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition "} -c["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition Grants Skill: Abyssal Apparition"]={nil,"Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition Grants Skill: Abyssal Apparition "} c["Dance with Death"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Dance with Death"}},nil} c["Darkness Reservation lasts for 5 seconds"]={nil,"Darkness Reservation lasts for 5 seconds "} c["Darkness Reservation lasts for 5 seconds +10 to Maximum Darkness per Level"]={nil,"Darkness Reservation lasts for 5 seconds +10 to Maximum Darkness per Level "} @@ -4065,9 +4966,9 @@ c["Dodge Roll avoids all Hits"]={nil,"Dodge Roll avoids all Hits "} c["Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds"]={nil,"Dodge Roll avoids all Hits 10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds "} c["Dodge Roll cannot Avoid Damage"]={{},nil} c["Dodge Roll passes through Enemies"]={nil,"Dodge Roll passes through Enemies "} -c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more "} -c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended "} -c["Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster"]={nil,"Dodging can expend up to 3 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster "} +c["Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more"]={nil,"Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more "} +c["Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended"]={nil,"Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended "} +c["Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster"]={nil,"Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more Empowerment effect per additional Feather expended Gain Owl Feathers 50% faster "} c["Double Activation Delay of Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseDelay",type="MORE",value=100}},nil} c["Double Adaptation Effect"]={{[1]={[1]={globalLimit=100,globalLimitKey="LocalEffectDoubledLimit",type="Multiplier",var="LocalEffectDoubled"},flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:LocalEffectDoubled",type="OVERRIDE",value=1}}," Adaptation "} c["Double Stun Threshold while Shield is Raised"]={{[1]={[1]={globalLimit=100,globalLimitKey="StunThresholdDoubledLimit",type="Multiplier",var="StunThresholdDoubled"},flags=0,keywordFlags=0,name="StunThreshold",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:StunThresholdDoubled",type="OVERRIDE",value=1}}," while Shield is Raised "} @@ -4148,6 +5049,9 @@ c["Enemies in your Presence killed by anyone count as being killed by you instea c["Enemies near Enemies you Mark are Blinded"]={nil,"Enemies near Enemies you Mark are Blinded "} c["Enemies near Enemies you Mark are Blinded Enemies you Mark cannot deal Critical Hits"]={nil,"Enemies near Enemies you Mark are Blinded Enemies you Mark cannot deal Critical Hits "} c["Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"]={nil,"Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds "} +c["Enemies standing on Chilled Ground take 25% increased Fire Damage"]={nil,"Enemies standing on Chilled Ground take 25% increased Fire Damage "} +c["Enemies standing on Chilled Ground take 25% increased Fire Damage Enemies standing on Ignited Ground take 25% increased Cold Damage"]={nil,"Enemies standing on Chilled Ground take 25% increased Fire Damage Enemies standing on Ignited Ground take 25% increased Cold Damage "} +c["Enemies standing on Ignited Ground take 25% increased Cold Damage"]={nil,"Enemies standing on Ignited Ground take 25% increased Cold Damage "} c["Enemies take 10% increased Damage for each Elemental Ailment type among"]={nil,"Enemies take 10% increased Damage for each Elemental Ailment type among "} c["Enemies take 10% increased Damage for each Elemental Ailment type among your Ailments on them"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[8]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil} c["Enemies take 18% increased Damage for each Elemental Ailment type among your Ailments on them"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}},[8]={[1]={actor="enemy",type="ActorCondition",var="Electrocuted"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=18}}}},nil} @@ -4204,6 +5108,7 @@ c["Every 3 seconds during Effect, deal 50% of Mana spent in those seconds as Cha c["Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life"]={nil,"Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life "} c["Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration"]={nil,"Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration "} c["Every Rage also grants 1% increased Armour"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil} +c["Every Rage also grants 1% increased Evasion Rating"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil} c["Every Rage also grants 1% increased Fire Damage"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=1}},nil} c["Every Rage also grants 1% increased Stun Threshold"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=1}},nil} c["Every Rage also grants 2% increased Spell Damage"]={{[1]={[1]={type="Multiplier",var="RageEffect"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil} @@ -4227,6 +5132,7 @@ c["Expend all Vivid Wisps to trigger Vivid Stampede when you Attack Grants Skill c["Expend an Owl Feather when you Dodge to trigger Primal Bounty"]={nil,"Expend an Owl Feather when you Dodge to trigger Primal Bounty "} c["Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty"]={nil,"Expend an Owl Feather when you Dodge to trigger Primal Bounty Grants Skill: Primal Bounty "} c["Exposure you inflict lowers Resistances by an additional 5%"]={{[1]={flags=0,keywordFlags=0,name="ExtraExposure",type="BASE",value=5}},nil} +c["Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis"]={nil,"Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis "} c["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil} c["Fire Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties "} c["Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties"]={nil,"Fire Resistance is unaffected by Area Penalties Lightning Resistance is unaffected by Area Penalties "} @@ -4235,7 +5141,8 @@ c["Fissure Skills have +1 to Limit"]={nil,"Fissure Skills have +1 to Limit "} c["Flammability Magnitude is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="EnemyIgniteChanceDoubledLimit",type="Multiplier",var="EnemyIgniteChanceDoubled"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:EnemyIgniteChanceDoubled",type="OVERRIDE",value=1}},nil} c["Flasks do not recover Life"]={nil,"Flasks do not recover Life "} c["Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent"]={nil,"Flasks do not recover Life Gain 1 Life Flask Charge per 2% Life spent "} -c["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\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={nil,"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\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way "} +c["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"]={nil,"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 "} +c["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"]={nil,"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 "} c["Flasks gain 0.17 charges per Second"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.17}},nil} c["For each colour of Socketed Support Gem that is most numerous, gain:"]={{},nil} c["Fork an additional time"]={nil,"Fork an additional time "} @@ -4244,6 +5151,7 @@ c["Fork an additional time Chain an additional time Chain from Terrain an additi c["Fork an additional time Chain an additional time Chain from Terrain an additional time Cannot collide with targets"]={nil,"Fork an additional time Chain an additional time Chain from Terrain an additional time Cannot collide with targets "} c["Frenzy or Power Charge"]={nil,"Frenzy or Power Charge "} c["Fully Armour Broken enemies you kill with Hits Shatter"]={nil,"Fully Armour Broken enemies you kill with Hits Shatter "} +c["Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits"]={nil,"Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits "} c["Fully Broken Armour you inflict also increases Fire Damage Taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourBreakFireDamageTaken",type="FLAG",value=true}},nil} c["Fully Broken Armour you inflict increases all Damage Taken from Hits instead"]={{[1]={[1]={effectName="ImplodingImpacts",effectType="Buff",type="GlobalEffect"},flags=0,keywordFlags=0,name="FullyBrokenArmourIncreasesAllDamageFromHits",type="FLAG",value=true}},nil} c["Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveGamblesprint",type="FLAG",value=true}},nil} @@ -4251,7 +5159,8 @@ c["Gain 1 Druidic Prowess for every 20 total Rage spent"]={{}," Druidic Prowess c["Gain 1 Endurance Charge every second if you've been Hit Recently"]={{}," Endurance Charge every second "} c["Gain 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "} c["Gain 1 Life Flask Charge per 2% Life spent"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 2% Life spent "} -c["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\nGain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"]={{[1]={flags=4,keywordFlags=0,name="LifeAsPhysical",type="BASE",value=1}}," Flask Charge per 2% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed\nGain 1% of damage per Charge consumed this way "} +c["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"]={{[1]={flags=4,keywordFlags=0,name="Life",type="BASE",value=1}}," Flask Charge per 2% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed "} +c["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"]={{[1]={flags=4,keywordFlags=0,name="LifeAsPhysical",type="BASE",value=1}}," Flask Charge per 2% Life spent ting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed Gain 1% of damage per Charge consumed this way "} c["Gain 1 Rage on Melee Axe Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage when your Hit Ignites a target"]={{}," Rage when your Hit Ignites a target "} @@ -4488,16 +5397,18 @@ c["Glorifying the defilement of 8000 souls in tribute to Ulaman"]={{[1]={flags=0 c["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and"]={nil,"Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and "} c["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"]={nil,"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 "} c["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"]={nil,"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 "} +c["Grant Elemental Archon to your Minions for 5 seconds when they Revive"]={nil,"Grant Elemental Archon to your Minions for 5 seconds when they Revive "} c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil} c["Grants 1 additional Skill Slot"]={{[1]={flags=0,keywordFlags=0,name="SkillSlots",type="BASE",value=1}},nil} -c["Grants 4 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=4}},nil} +c["Grants 2 additional Skill Slots"]={{[1]={flags=0,keywordFlags=0,name="SkillSlots",type="BASE",value=2}},nil} +c["Grants 4 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=4}},nil} c["Grants Onslaught during effect"]={nil,"Grants Onslaught during effect "} c["Grants Sands of Time"]={nil,"Grants Sands of Time "} -c["Grants Skill: Abyssal Apparition"]={nil,nil} c["Grants Skill: Acidic Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AcidicConcoctionPlayer"}}},nil} c["Grants Skill: Align Fate"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AlignFatePlayer"}}},nil} c["Grants Skill: Ancestral Spirits"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AncestralSpiritsPlayer"}}},nil} c["Grants Skill: Apocalypse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ApocalypsePlayer"}}},nil} +c["Grants Skill: Archon of Chayula"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ArchonOfChayulaPlayer"}}},nil} c["Grants Skill: Bleeding Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BleedingConcoctionPlayer"}}},nil} c["Grants Skill: Blood Boil"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BloodBoilPlayer"}}},nil} c["Grants Skill: Called Shots"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaDeadeyeMarksPlayer"}}},nil} @@ -4510,9 +5421,9 @@ c["Grants Skill: Encase in Jade"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill c["Grants Skill: Explosive Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ExplosiveConcoctionPlayer"}}},nil} c["Grants Skill: Fire Spell on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaCastFireSpellOnHitPlayer"}}},nil} c["Grants Skill: Fulminating Concoction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="FulminatingConcoctionPlayer"}}},nil} -c["Grants Skill: Hollow Focus"]={nil,nil} -c["Grants Skill: Hollow Form"]={nil,nil} -c["Grants Skill: Hollow Resonance"]={nil,nil} +c["Grants Skill: Hollow Focus"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="HollowFocusPlayer"}}},nil} +c["Grants Skill: Hollow Form"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="MetaHollowFormPlayer"}}},nil} +c["Grants Skill: Hollow Resonance"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="HollowResonancePlayer"}}},nil} c["Grants Skill: Inevitable Agony"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="InevitableAgonyPlayer"}}},nil} c["Grants Skill: Into the Breach"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IntoTheBreachPlayer"}}},nil} c["Grants Skill: Kelari's Deception"]={nil,nil} @@ -4629,7 +5540,7 @@ c["Grants Skill: Navira's Oasis"]={nil,nil} c["Grants Skill: Navira's Well"]={nil,nil} c["Grants Skill: Navira, the Last Mirage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonWaterDjinnPlayer"}}},nil} c["Grants Skill: Parry"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ParryPlayer"}}},nil} -c["Grants Skill: Primal Bounty"]={nil,nil} +c["Grants Skill: Primal Bounty"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="PrimalBountyPlayer"}}},nil} c["Grants Skill: Raise Shield"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="ShieldBlockPlayer"}}},nil} c["Grants Skill: Ritual Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="RitualSacrificePlayer"}}},nil} c["Grants Skill: Ruzhan's Fury"]={nil,nil} @@ -4647,9 +5558,10 @@ c["Grants Skill: Time Freeze"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",t c["Grants Skill: Time Snap"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TimeSnapPlayer"}}},nil} c["Grants Skill: Unbound Avatar"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="UnboundAvatarPlayer"}}},nil} c["Grants Skill: Virtuous Barrier"]={nil,nil} -c["Grants Skill: Vivid Stampede"]={nil,nil} +c["Grants Skill: Vivid Stampede"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="VividStampedePlayer"}}},nil} c["Grants Skill: Void Illusion"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="VoidIllusionPlayer"}}},nil} -c["Grants Skill: Wild Protector"]={nil,nil} +c["Grants Skill: Wild Protector"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="WildProtectorPlayer"}}},nil} +c["Grants Thaumaturgical Dynamism"]={nil,"Grants Thaumaturgical Dynamism "} c["Grants Unravelling"]={{[1]={flags=0,keywordFlags=0,name="Unravelling",type="FLAG",value=true}},nil} c["Grants a Frenzy Charge on use"]={nil,"Grants a Frenzy Charge on use "} c["Grants a Power Charge on use"]={nil,"Grants a Power Charge on use "} @@ -4659,9 +5571,9 @@ c["Grants effect of Guided Meteoric Shrine"]={nil,"Grants effect of Guided Meteo c["Grants effect of Guided Tempest Shrine"]={nil,"Grants effect of Guided Tempest Shrine "} c["Grants up to your maximum Rage on use"]={nil,"Grants up to your maximum Rage on use "} c["Green: 40% less Movement Speed Penalty from using Skills while Moving"]={nil,"Green: 40% less Movement Speed Penalty from using Skills while Moving "} -c["Grenade Skills Fire an additional Projectile"]={{[1]={[1]={skillType=158,type="SkillType"},flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} -c["Grenade Skills have +1 Cooldown Use"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=1}},nil} -c["Grenades have 15% chance to activate a second time"]={{[1]={[1]={skillType=158,type="SkillType"},flags=0,keywordFlags=0,name="GrenadeActivateTwice",type="BASE",value=15}},nil} +c["Grenade Skills Fire an additional Projectile"]={{[1]={[1]={skillType=159,type="SkillType"},flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} +c["Grenade Skills have +1 Cooldown Use"]={{[1]={[1]={skillType=159,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=1}},nil} +c["Grenades have 15% chance to activate a second time"]={{[1]={[1]={skillType=159,type="SkillType"},flags=0,keywordFlags=0,name="GrenadeActivateTwice",type="BASE",value=15}},nil} c["Has 2 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=2}},nil} c["Has 2 Charm Slots"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=2}},nil} c["Has 3 Charm Slot"]={{[1]={flags=0,keywordFlags=0,name="CharmLimit",type="BASE",value=3}},nil} @@ -4792,6 +5704,7 @@ c["Invoked Spells consume 50% less Energy"]={nil,"Invoked Spells consume 50% les c["Iron Grip"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil} c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil} c["Iron Will"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1},[2]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil} +c["Jewel Socket"]={nil,"Jewel Socket "} c["Knockback direction is reversed"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="MORE",value=-200}},nil} c["Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2097152,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil} c["Knocks Back Enemies on Hit"]={nil,"Knocks Back Enemies on Hit "} @@ -4871,7 +5784,6 @@ c["Lose 5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="Ene c["Lose 5% of maximum Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeDegenPercent",type="BASE",value=5}},nil} c["Lose 5% of maximum Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=5}},nil} c["Lose Elemental Archon on reaching maximum Infernal Flame"]={nil,"Lose Elemental Archon on reaching maximum Infernal Flame "} -c["Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"]={nil,"Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings "} c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "} c["Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second"]={nil,"Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second "} c["Lose all Infernal Flame on reaching maximum Infernal Flame"]={nil,"Lose all Infernal Flame on reaching maximum Infernal Flame "} @@ -5027,6 +5939,8 @@ c["Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% c["Modifiers to Maximum Block Chance instead apply to Maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="MaxBlockChanceModsApplyMaxResist",type="FLAG",value=true}},nil} c["Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireMaxResConvertToCold",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="FireMaxResConvertToLightning",type="BASE",value=100}},nil} c["Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry"]={{[1]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="FreezeBuildupInsteadOfStunBuildup",type="FLAG",value=true},[2]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="CannotStun",type="FLAG",value=true},[3]={[1]={includeTransfigured=true,skillName="Parry",type="SkillName"},flags=0,keywordFlags=0,name="CannotHeavyStun",type="FLAG",value=true}},nil} +c["Mountain's Teachings on Immobilising an enemy if"]={nil,"Mountain's Teachings on Immobilising an enemy if "} +c["Mountain's Teachings on Immobilising an enemy if you have the Way of the Mountain Ascendancy Passive Skill"]={nil,"Mountain's Teachings on Immobilising an enemy if you have the Way of the Mountain Ascendancy Passive Skill "} c["Moving while Bleeding doesn't cause you to take extra damage"]={nil,"Moving while Bleeding doesn't cause you to take extra damage "} c["Nearby Allies and Enemies Share Charges with you"]={nil,"Nearby Allies and Enemies Share Charges with you "} c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "} @@ -5055,11 +5969,11 @@ c["Non-Keystone Passive Skills in Medium Radius of allocated Keystone Passive Sk c["Non-Minion Skills have 50% less Reservation Efficiency"]={{[1]={[1]={neg=true,skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="MORE",value=-50}},nil} c["Non-Unique Time-Lost Jewels have 40% increased radius"]={nil,"Non-Unique Time-Lost Jewels have 40% increased radius "} c["Oasis"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Oasis"}},nil} -c["Offering Skills have 15% increased Buff effect"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=15}},nil} -c["Offering Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} -c["Offering Skills have 20% increased Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} -c["Offering Skills have 30% increased Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} -c["Offering Skills have 30% reduced Duration"]={{[1]={[1]={skillType=154,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}},nil} +c["Offering Skills have 15% increased Buff effect"]={{[1]={[1]={skillType=155,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=15}},nil} +c["Offering Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=155,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["Offering Skills have 20% increased Duration"]={{[1]={[1]={skillType=155,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} +c["Offering Skills have 30% increased Duration"]={{[1]={[1]={skillType=155,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} +c["Offering Skills have 30% reduced Duration"]={{[1]={[1]={skillType=155,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}},nil} c["Offerings cannot be damaged if they have been created Recently"]={nil,"Offerings cannot be damaged if they have been created Recently "} c["Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]={{[1]={flags=0,keywordFlags=0,name="UnwillingOffering",type="FLAG",value=true},[2]={[1]={skillNameList={[1]="Bone Offering",[2]="Pain Offering",[3]="Soul Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={[1]={limit=20,type="Multiplier",var="UnwillingOfferingPower"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=1}}}},nil} c["Offerings have 15% increased Maximum Life"]={nil,"Offerings have 15% increased Maximum Life "} @@ -5131,7 +6045,7 @@ c["Passives in radius of Whispers of Doom can be Allocated without being connect c["Passives in radius of Wildsurge Incantation can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="wildsurge incantation"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="wildsurge incantation",value=true}}},nil} c["Passives in radius of Zealot's Oath can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="fromNothingKeystone",value="zealot's oath"}},[2]={flags=0,keywordFlags=0,name="FromNothingKeystones",type="LIST",value={key="zealot's oath",value=true}}},nil} c["Permanently Intimidate enemies on Block"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Intimidated",type="FLAG",value=true}}}},nil} -c["Persistent Buffs have 50% less Reservation"]={{[1]={[1]={skillType=139,type="SkillType"},[2]={skillType=5,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-50}},nil} +c["Persistent Buffs have 50% less Reservation"]={{[1]={[1]={skillType=140,type="SkillType"},[2]={skillType=5,type="SkillType"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-50}},nil} c["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvasionAppliesToPhysicalDamageTaken",type="BASE",value=100}},nil} c["Physical Damage is Pinning"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanPin",type="FLAG",value=true}},nil} c["Physical Spell Critical Hits build Pin"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2,keywordFlags=16,name="CanPin",type="FLAG",value=true}},nil} @@ -5200,7 +6114,8 @@ c["Projectiles have 50% chance for an additional Projectile when Forking 25% inc c["Projectiles have 6% chance to Chain an additional time from terrain"]={{[1]={flags=1024,keywordFlags=0,name="TerrainChainChance",type="BASE",value=6}},nil} c["Projectiles have 64% increased Critical Hit chance for each time they have Pierced"]={{[1]={flags=1024,keywordFlags=0,name="CritChance",type="INC",value=64}}," for each time they have Pierced "} c["Projectiles have 75% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=75}}," for an additional when Forking "} -c["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"]={{[1]={[1]={skillType=160,type="SkillType"},flags=0,keywordFlags=0,name="Multiplier:ExtraConsumablePowerCharges",type="BASE",value=1}},nil} +c["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=1,keywordFlags=0,name="Multiplier:ExtraConsumablePowerCharges",type="BASE",value=1}},nil} +c["Raise Shield inflicts Parried for 2 seconds on Hit"]={nil,"inflicts Parried for 2 seconds on Hit "} c["Recoup 5% of damage taken by your Totems as Life"]={nil,"Recoup 5% of damage taken by your Totems as Life "} c["Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence"]={nil,"Recoup 5% of damage taken by your Totems as Life Each Totem applies 2% increased Damage taken to Enemies in their Presence "} c["Recover 1% of maximum Life on Kill"]={{[1]={[1]={percent=1,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil} @@ -5295,8 +6210,8 @@ c["Remnants can be collected from 50% further away All Flames of Chayula that yo c["Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple"]={nil,"Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Purple "} c["Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red"]={nil,"Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Red "} c["Remnants can be collected from 50% further away Remnants you create reappear once, 3 seconds after being collected"]={nil,"Remnants can be collected from 50% further away Remnants you create reappear once, 3 seconds after being collected "} -c["Remnants have 2% increased effect per 10 Tribute"]={nil,"Remnants have 2% increased effect per 10 Tribute "} c["Remnants you create have 10% increased effect"]={nil,"Remnants you create have 10% increased effect "} +c["Remnants you create have 2% increased effect per 10 Tribute"]={nil,"Remnants you create have 2% increased effect per 10 Tribute "} c["Remnants you create have 50% increased effect"]={nil,"Remnants you create have 50% increased effect "} c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away "} c["Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Blue"]={nil,"Remnants you create have 50% increased effect Remnants can be collected from 50% further away All Flames of Chayula that you manifest are Blue "} @@ -5324,12 +6239,13 @@ c["Sacrifice 300 Life to not consume the last bolt when firing"]={{[1]={[1]={inc c["Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=5}}," when you Cast a "} c["Sacrifice 5% of maximum Energy Shield when you Cast a Spell Spells for which this Sacrifice was fully made deal 30% more Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=5}}," when you Cast a Spells for which this Sacrifice was fully made deal 30% more Damage "} c["Sacrificing Energy Shield does not interrupt Recharge"]={nil,"Sacrificing Energy Shield does not interrupt Recharge "} -c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell\nSpells for which this Sacrifice was fully made deal 30% more Damage"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell\nSpells for which this Sacrifice was fully made deal 30% more Damage "} +c["Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell"]={nil,"Sacrificing Energy Shield does not interrupt Recharge Sacrifice 5% of maximum Energy Shield when you Cast a Spell "} +c["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"]={nil,"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 "} c["Scarred Faith"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Scarred Faith"}},nil} c["Sealed Skills have 10% increased Seal gain frequency"]={nil,"Sealed Skills have 10% increased Seal gain frequency "} c["Sealed Skills have 25% increased Seal gain frequency"]={nil,"Sealed Skills have 25% increased Seal gain frequency "} -c["Shapeshift Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=156,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} -c["Shapeshift Skills have 30% increased Skill Effect Duration"]={{[1]={[1]={skillType=156,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} +c["Shapeshift Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=157,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} +c["Shapeshift Skills have 30% increased Skill Effect Duration"]={{[1]={[1]={skillType=157,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} c["Share Charges with Allies in your Presence"]={nil,"Share Charges with "} c["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"]={nil,"Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius "} c["Shocks you when you reach maximum Power Charges"]={nil,"Shocks you when you reach maximum Power Charges "} @@ -5340,7 +6256,7 @@ c["Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostBase",type= c["Skills can build and retain Combo regardless of Weapon Set"]={nil,"Skills can build and retain Combo regardless of Weapon Set "} c["Skills can build and retain Combo regardless of Weapon Set Gain Combo from all Attack Hits"]={nil,"Skills can build and retain Combo regardless of Weapon Set Gain Combo from all Attack Hits "} c["Skills deal 20% increased Damage per Connected Red Support Gem"]={{[1]={flags=0,keywordFlags=0,name="SkillDamageIncreasedPerRedSupport",type="FLAG",value=20}},nil} -c["Skills deal 8% increased Damage per Combo consumed, up to 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="ComboStacks"},[2]={skillType=152,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil} +c["Skills deal 8% increased Damage per Combo consumed, up to 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="ComboStacks"},[2]={skillType=153,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs"]={nil,"Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs "} c["Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence"]={{}," Glory every 2 seconds for each Rare or Unique monster in your Presence "} @@ -5399,7 +6315,7 @@ c["Stags have 20% more Shock Magnitude per leap"]={nil,"Stags have 20% more Shoc c["Storm and Plant Spells:"]={nil,"Storm and Plant Spells: "} c["Storm and Plant Spells: deal 50% more damage"]={nil,"Storm and Plant Spells: deal 50% more damage "} c["Storm and Plant Spells: deal 50% more damage cost 50% less"]={{},"Storm and Plant Spells: deal 50% more damage % less "} -c["Storm and Plant Spells: deal 50% more damage cost 50% less have 75% less duration"]={{[1]={[1]={skillTypeList={[1]=255,[2]=252},type="SkillType"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=50},[2]={[1]={skillTypeList={[1]=255,[2]=252},type="SkillType"},flags=0,keywordFlags=131072,name="Cost",type="MORE",value=-50},[3]={[1]={skillTypeList={[1]=255,[2]=252},type="SkillType"},flags=0,keywordFlags=131072,name="Duration",type="MORE",value=-75}},nil} +c["Storm and Plant Spells: deal 50% more damage cost 50% less have 75% less duration"]={{[1]={[1]={skillTypeList={[1]=254,[2]=251},type="SkillType"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=50},[2]={[1]={skillTypeList={[1]=254,[2]=251},type="SkillType"},flags=0,keywordFlags=131072,name="Cost",type="MORE",value=-50},[3]={[1]={skillTypeList={[1]=254,[2]=251},type="SkillType"},flags=0,keywordFlags=131072,name="Duration",type="MORE",value=-75}},nil} c["Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills"]={{[1]={flags=0,keywordFlags=0,name="StrengthSatisfiesMeleeWeaponsAndSkills",type="FLAG",value=true}},nil} c["Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage"]={nil,"Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage "} c["Strikes deal Splash Damage"]={nil,"Strikes deal Splash Damage "} @@ -5444,6 +6360,7 @@ c["Temporary Minion Skills have +2 to Limit of Minions summoned"]={{[1]={[1]={ba c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil} c["The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted"]={nil,"The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted "} c["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"]={nil,"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 "} +c["The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted"]={nil,"The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted "} c["There is no Limit on the number of Banners you can place"]={nil,"There is no Limit on the number of Banners you can place "} c["This Flask cannot be Used but applies its Effect constantly"]={nil,"This Flask cannot be Used but applies its Effect constantly "} c["This Flask cannot be Used but applies its Effect constantly 80% reduced Amount Recovered"]={nil,"This Flask cannot be Used but applies its Effect constantly 80% reduced Amount Recovered "} @@ -5574,6 +6491,7 @@ c["While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover t c["While you are not on Low Mana, you and Allies in your Presence have Unholy Might"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil} c["Whispers of Doom"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Whispers of Doom"}},nil} c["Wildsurge Incantation"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Wildsurge Incantation"}},nil} +c["Withered also causes enemies to deal 1% reduced Damage"]={nil,"Withered also causes enemies to deal 1% reduced Damage "} c["Withered you inflict has infinite Duration"]={nil,"Withered you inflict has infinite Duration "} c["You and Allies in your Presence have +23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}}}},nil} c["You and Allies in your Presence have 12% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}}}},nil} @@ -5645,7 +6563,7 @@ c["Your Critical Hits do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,n c["Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Magnitude",type="INC",value=20}},nil} c["Your Damage with Critical Hits is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritLucky",type="FLAG",value=true}},nil} c["Your Heavy Stun buildup empties 1% faster per 10 Tribute"]={nil,"Your Heavy Stun buildup empties 1% faster per 10 Tribute "} -c["Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Defences from Equipped Shield per 25 Tribute"]={nil,"Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Defences from Equipped Shield per 25 Tribute "} +c["Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute"]={nil,"Your Heavy Stun buildup empties 1% faster per 10 Tribute 5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute "} c["Your Heavy Stun buildup empties 50% faster"]={nil,"Your Heavy Stun buildup empties 50% faster "} c["Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"]={nil,"Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently "} c["Your Hits are Crushing Blows"]={nil,"Your Hits are Crushing Blows "} @@ -5683,6 +6601,7 @@ c["until you take no Damage to Life for 5 seconds"]={nil,"until you take no Dama c["until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved"]={nil,"until you take no Damage to Life for 5 seconds Life that would be lost by taking Damage is instead Reserved "} c["you Shapeshift to an Animal form"]={nil,"you Shapeshift to an Animal form "} c["you Shapeshift to an Animal form Modifiers gained this way are lost after 30 seconds or when you next Shapeshift"]={nil,"you Shapeshift to an Animal form Modifiers gained this way are lost after 30 seconds or when you next Shapeshift "} +c["you have the Way of the Mountain Ascendancy Passive Skill"]={nil,"the Way of the Mountain Ascendancy Passive Skill "} c["your maximum Life as Physical damage per second"]={nil,"your maximum Life as Physical damage per second "} c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "} c["your maximum number of Power Charges +1 to Maximum Power Charges"]={nil,"your maximum number of Power Charges +1 to Maximum Power Charges "} diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua index 9d03df6151..c2022eb82a 100644 --- a/src/Data/ModCharm.lua +++ b/src/Data/ModCharm.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, - ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 903 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, - ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 903 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, - ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 903 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, - ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 903 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, - ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 901 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, - ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 901 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, - ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 901 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, - ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 901 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, - ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 901 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, - ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 901 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, - ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 901 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, - ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 901 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, - ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 902 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, - ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 902 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, - ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 902 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, - ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 902 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, - ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 902 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, - ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 902 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, - ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 902 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, - ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 902 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, - ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 900 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, - ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 900 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, - ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 900 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, - ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 900 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, - ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 900 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, - ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 900 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, + ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 927 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, + ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 927 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, + ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 927 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, + ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 927 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, + ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 925 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, + ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 925 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, + ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 925 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, + ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 925 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, + ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 925 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, + ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 925 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, + ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 925 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, + ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 925 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, + ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 926 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, + ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 926 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, + ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 926 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, + ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 926 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, + ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 926 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, + ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 926 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, + ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 926 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, + ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 926 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, + ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 924 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, + ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 924 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, + ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 924 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, + ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 924 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, + ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 924 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, + ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 924 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, } \ No newline at end of file diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 0600b5acfb..6db67c201e 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -2,131 +2,131 @@ -- Item data (c) Grinding Gear Games return { - ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, - ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, - ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, - ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, - ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, - ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, - ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, - ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, - ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 9646 }, 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 = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, - ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, - ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, - ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, - ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2614 }, 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 = { 2615 }, 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 = { 4283 }, 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 = { 6476 }, 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 = { 1486 }, 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 = { 1491 }, 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 = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 827 }, 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 = { 2878 }, 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 = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, 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 = { 1617 }, 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 = { 969 }, 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 = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, - ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, - ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, - ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, - ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 947 }, 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 = { 948 }, 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 = { 949 }, 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 = { 4552 }, 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 = { 9897 }, 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 = { 6451 }, 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 = { 6452 }, 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 = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 821 }, 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 = { 853 }, 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 = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, - ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, - ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, - ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, - ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, - ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, - ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, - ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, - ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, - ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 919 }, 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 = { 918 }, 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 = { 985 }, 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 = { 7131 }, 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 = { 2153 }, 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 = { 7334 }, 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 = { 7239 }, 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 = { 7320 }, 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 = { 1937 }, 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 = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, - ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, - ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, - ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, - ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, - ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 892 }, 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 = { 1001 }, 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 = { 8970 }, 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 = { 947 }, level = 1, group = "Strength", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, - ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, - ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, - ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 6850 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", "default" }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2884 }, 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 = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, - ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, 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 = { 1572 }, 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 = { 5987 }, 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 = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, + ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, + ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, + ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, + ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, + ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, + ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, + ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, + ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 1005 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, + ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, + ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, + ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 881 }, 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 = { 883 }, 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 = { 885 }, 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 = { 10213 }, 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 = { 1023 }, 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 = { 1013 }, 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 = { 1019 }, 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" }, } }, + ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, + ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, + ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, + ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, + ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, + ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, + ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2723 }, 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 = { 2724 }, 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 = { 4397 }, 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 = { 6894 }, 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 = { 1557 }, 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 = { 1562 }, 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 = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, + ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 835 }, 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 = { 2981 }, 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 = { 2982 }, 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 = { 4735 }, 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 = { 1689 }, 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 = { 1035 }, 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 = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, + ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1517 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, + ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1518 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, + ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, + ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, + ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, + ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 991 }, 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 = { 992 }, 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 = { 993 }, 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 = { 4679 }, 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 = { 10493 }, 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 = { 6869 }, 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 = { 6870 }, 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 = { 6866 }, 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 = { 829 }, 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 = { 870 }, 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 = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, + ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, + ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, + ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, + ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, + ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, + ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, + ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, + ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, + ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 945 }, 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 = { 944 }, 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 = { 1051 }, 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 = { 7575 }, 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 = { 2262 }, 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 = { 7787 }, 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 = { 7679 }, 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 = { 7772 }, 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 = { 2011 }, 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 = { 876 }, 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 = { 876 }, 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" }, } }, + ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 989 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, + ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, + ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, + ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, + ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, + ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, + ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, + ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, + ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 917 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, + ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 918 }, 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 = { 916 }, 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 = { 1067 }, 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 = { 9502 }, 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 = { 991 }, level = 1, group = "Strength", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, + ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, + ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, + ["CorruptionJewelFireResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, + ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, 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 = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, 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 = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, + ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7278 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, + ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10549 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2717 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2987 }, 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 = { 2374 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, + ["SpecialCorruptionAreaOfEffect1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, + ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, 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 = { 4666 }, 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 = { 1643 }, 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 = { 6387 }, 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 = { 1670 }, 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/ModFlask.lua b/src/Data/ModFlask.lua index 22a5d669c1..1442952a24 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,82 +2,82 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 913 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 913 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 913 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 913 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 913 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 905 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 905 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 905 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 905 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 905 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 905 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 905 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 912 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 912 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 912 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 905, 911 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, - ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 910 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 910 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 910 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 910 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 910 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 656 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 659, 659.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 669 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, - ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 661, 661.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 663, 663.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 667 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 623, 743 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 623, 744 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 623, 742 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 623, 673, 673.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 623, 740 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 937 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 937 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 937 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 937 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 937 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 929 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 929 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 929 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 929 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 929 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 929 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 929 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 936 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 936 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 936 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 929, 935 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, + ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 934 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 934 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 934 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 934 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 934 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 664 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 667, 667.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 677 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, + ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 669, 669.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 671, 671.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 675 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 632, 751 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 632, 752 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 632, 750 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 632, 681, 681.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 632, 748 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index 0c2a2c7d54..2107ea74af 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -2,16 +2,16 @@ -- Item data (c) Grinding Gear Games return { - ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 866 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 9465 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, - ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2878 }, 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 = { 8594 }, 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 = { 7532 }, 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 = { 970 }, 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 = { 1064 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, - ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 941 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 5721 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, - ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 883 }, 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 = { 10028 }, 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 = { 2981 }, 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 = { 9119 }, 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 = { 7994 }, 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 = { 1036 }, 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 = { 1132 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, + ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 984 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, + ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 986 }, 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 = { 2374 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, + ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6105 }, 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 = { 1068 }, 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 bf43d94a50..9fe332810f 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -2,1724 +2,2553 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 947 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 947 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 947 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 947 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 947 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 947 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 947 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 947 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 948 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 948 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 948 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 948 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 948 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 948 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 948 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 948 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 949 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 949 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 949 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 949 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 949 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 949 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 949 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 949 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 946 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 946 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 946 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 946 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 946 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 946 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 946 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 958 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 958 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 958 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 958 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 958 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 958 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 958 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 959 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 959 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 959 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 959 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 959 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 959 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 959 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 960 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 960 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 960 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 960 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 960 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 960 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 960 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 957 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 957 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 957 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 957 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 957 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 957 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 895 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 895 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 895 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 895 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 895 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 895 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 961 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 961 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 961 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 961 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 961 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 961 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 869 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 869 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 869 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 869 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 869 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 869 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 869 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 869 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 869 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 869 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 869 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, - ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 869 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, - ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 870 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, - ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 870 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 870 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, - ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 872 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, - ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 872 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, - ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 872 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-42) to Armour", statOrder = { 863 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(23-42) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(43-54) to Armour", statOrder = { 863 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(43-54) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(55-81) to Armour", statOrder = { 863 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(55-81) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(82-106) to Armour", statOrder = { 863 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(82-106) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(107-138) to Armour", statOrder = { 863 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(107-138) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(139-168) to Armour", statOrder = { 863 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(139-168) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(169-195) to Armour", statOrder = { 863 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(169-195) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(196-224) to Armour", statOrder = { 863 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(196-224) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(225-255) to Armour", statOrder = { 863 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(225-255) to Armour" }, } }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-15) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(8-15) to Evasion Rating" }, } }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(16-33) to Evasion Rating", statOrder = { 865 }, level = 11, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(16-33) to Evasion Rating" }, } }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(34-44) to Evasion Rating", statOrder = { 865 }, level = 16, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(34-44) to Evasion Rating" }, } }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(45-69) to Evasion Rating", statOrder = { 865 }, level = 25, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(45-69) to Evasion Rating" }, } }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(70-93) to Evasion Rating", statOrder = { 865 }, level = 33, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(70-93) to Evasion Rating" }, } }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(94-123) to Evasion Rating", statOrder = { 865 }, level = 46, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(94-123) to Evasion Rating" }, } }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(124-151) to Evasion Rating", statOrder = { 865 }, level = 54, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(124-151) to Evasion Rating" }, } }, - ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(152-176) to Evasion Rating", statOrder = { 865 }, level = 65, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(152-176) to Evasion Rating" }, } }, - ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(177-203) to Evasion Rating", statOrder = { 865 }, level = 70, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(177-203) to Evasion Rating" }, } }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 867 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 867 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 867 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 867 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 867 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 867 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 867 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 867 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 867 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 864 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 864 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 864 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 864 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 864 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 864 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 864 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 866 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 866 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 866 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 866 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 866 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 866 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 866 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 868 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 868 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 868 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 868 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 868 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 868 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-50) to Armour", statOrder = { 831 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(28-50) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(51-68) to Armour", statOrder = { 831 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(51-68) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-82) to Armour", statOrder = { 831 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(69-82) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-102) to Armour", statOrder = { 831 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(83-102) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(103-122) to Armour", statOrder = { 831 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(103-122) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(123-160) to Armour", statOrder = { 831 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(123-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(161-202) to Armour", statOrder = { 831 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(161-202) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(203-225) to Armour", statOrder = { 831 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(203-225) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(226-256) to Armour", statOrder = { 831 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(226-256) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(257-276) to Armour", statOrder = { 831 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(257-276) to Armour" }, } }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-39) to Evasion Rating", statOrder = { 832 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(19-39) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(40-56) to Evasion Rating", statOrder = { 832 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(40-56) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(57-70) to Evasion Rating", statOrder = { 832 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(57-70) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(71-88) to Evasion Rating", statOrder = { 832 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(71-88) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(89-107) to Evasion Rating", statOrder = { 832 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(108-142) to Evasion Rating", statOrder = { 832 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-142) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(143-181) to Evasion Rating", statOrder = { 832 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(143-181) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(182-204) to Evasion Rating", statOrder = { 832 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(182-204) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(205-232) to Evasion Rating", statOrder = { 832 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(205-232) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(233-251) to Evasion Rating", statOrder = { 832 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(233-251) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 833 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 833 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 833 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 833 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 833 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 833 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 833 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 833 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 833 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 833 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(8-14) to Armour", "+(6-9) to Evasion Rating", statOrder = { 831, 832 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [53045048] = { "+(6-9) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(15-35) to Armour", "+(10-30) to Evasion Rating", statOrder = { 831, 832 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [53045048] = { "+(10-30) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(36-53) to Armour", "+(31-46) to Evasion Rating", statOrder = { 831, 832 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [53045048] = { "+(31-46) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(54-65) to Armour", "+(47-57) to Evasion Rating", statOrder = { 831, 832 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [53045048] = { "+(47-57) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(66-78) to Armour", "+(58-69) to Evasion Rating", statOrder = { 831, 832 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [53045048] = { "+(58-69) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(79-98) to Armour", "+(70-88) to Evasion Rating", statOrder = { 831, 832 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [53045048] = { "+(70-88) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(99-117) to Armour", "+(89-107) to Evasion Rating", statOrder = { 831, 832 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [53045048] = { "+(89-107) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(118-138) to Armour", "+(108-126) to Evasion Rating", statOrder = { 831, 832 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [53045048] = { "+(108-126) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(8-14) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 831, 833 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(15-35) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 831, 833 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(36-53) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 831, 833 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(54-65) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 831, 833 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(66-78) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 831, 833 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(79-98) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 831, 833 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(99-117) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 831, 833 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(118-138) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 831, 833 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-9) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(6-9) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-30) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(10-30) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(31-46) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 832, 833 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(31-46) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(47-57) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 832, 833 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(47-57) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(58-69) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 832, 833 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(58-69) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(70-88) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 832, 833 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(70-88) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(89-107) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 832, 833 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(108-126) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 832, 833 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-126) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 834 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 834 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 834 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 834 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 834 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 834 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 834 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 835 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 835 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 835 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 835 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 835 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 835 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 835 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 835 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 836 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 836 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 836 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 836 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 836 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 836 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 836 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 836 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 837 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 837 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 837 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 837 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 837 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 837 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 837 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 837 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 838 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 838 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 838 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 838 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 838 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 838 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 838 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, - ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 834, 994 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 834, 994 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 834, 994 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 834, 994 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 834, 994 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 834, 994 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 835, 994 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 835, 994 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 835, 994 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 835, 994 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 835, 994 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 835, 994 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 836, 994 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 836, 994 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 836, 994 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 836, 994 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 836, 994 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 836, 994 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 837, 994 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 837, 994 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 837, 994 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 837, 994 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 837, 994 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 837, 994 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 838, 994 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 838, 994 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 838, 994 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 838, 994 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 838, 994 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 838, 994 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 839, 994 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 839, 994 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 839, 994 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 839, 994 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 839, 994 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 839, 994 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 834, 869 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 834, 869 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 834, 869 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 834, 869 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 834, 869 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 834, 869 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 835, 869 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 835, 869 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 835, 869 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 835, 869 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 835, 869 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 835, 869 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 836, 869 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 836, 869 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 836, 869 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 836, 869 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 836, 869 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 836, 869 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 837, 869 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 837, 869 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 837, 869 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 837, 869 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 837, 869 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 837, 869 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 838, 869 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 838, 869 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 838, 869 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 838, 869 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 838, 869 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 838, 869 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 839, 869 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 839, 869 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 839, 869 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 839, 869 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 839, 869 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 839, 869 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 834, 871 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 834, 871 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 834, 871 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 834, 871 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 834, 871 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 834, 871 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 835, 871 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 835, 871 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 835, 871 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 835, 871 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 835, 871 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 835, 871 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 836, 871 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 836, 871 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 836, 871 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 836, 871 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 836, 871 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 836, 871 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 837, 871 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 837, 871 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 837, 871 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 837, 871 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 837, 871 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 837, 871 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 838, 871 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 838, 871 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 838, 871 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 838, 871 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 838, 871 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 838, 871 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 839, 871 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 839, 871 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 839, 871 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 839, 871 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 839, 871 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 839, 871 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(7-11) to Armour", "(6-13)% increased Armour", statOrder = { 831, 834 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(7-11) to Armour" }, } }, - ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(12-29) to Armour", "(14-20)% increased Armour", statOrder = { 831, 834 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(12-29) to Armour" }, } }, - ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-39) to Armour", "(21-26)% increased Armour", statOrder = { 831, 834 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-39) to Armour" }, } }, - ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(40-53) to Armour", "(27-32)% increased Armour", statOrder = { 831, 834 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(40-53) to Armour" }, } }, - ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(54-69) to Armour", "(33-38)% increased Armour", statOrder = { 831, 834 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(54-69) to Armour" }, } }, - ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(70-86) to Armour", "(39-42)% increased Armour", statOrder = { 831, 834 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(70-86) to Armour" }, } }, - ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(5-8) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 832, 835 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(5-8) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(9-24) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 832, 835 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(9-24) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(25-34) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 832, 835 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(25-34) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(35-47) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 832, 835 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(35-47) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(48-62) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 832, 835 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(48-62) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(63-79) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 832, 835 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(63-79) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 833, 836 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 833, 836 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 833, 836 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 833, 836 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 833, 836 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 833, 836 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(4-6) to Armour", "+(3-5) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(3-5) to Evasion Rating" }, [3484657501] = { "+(4-6) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(7-15) to Armour", "+(6-12) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(6-12) to Evasion Rating" }, [3484657501] = { "+(7-15) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(16-20) to Armour", "+(13-17) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(13-17) to Evasion Rating" }, [3484657501] = { "+(16-20) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(21-27) to Armour", "+(18-24) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(18-24) to Evasion Rating" }, [3484657501] = { "+(21-27) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(28-34) to Armour", "+(25-31) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(25-31) to Evasion Rating" }, [3484657501] = { "+(28-34) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(35-43) to Armour", "+(32-39) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(32-39) to Evasion Rating" }, [3484657501] = { "+(35-43) to Armour" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(4-6) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(4-6) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(7-15) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(7-15) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(16-20) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(16-20) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(21-27) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(21-27) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(28-34) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(28-34) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(35-43) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(35-43) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(3-5) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(3-5) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(6-12) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(13-17) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(13-17) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(18-24) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(18-24) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(25-31) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(25-31) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(32-39) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(32-39) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 921 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 921 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 921 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 921 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, - ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, - ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 994 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, - ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 994 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, - ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 994 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, - ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 994 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, - ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 994 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, - ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 994 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, - ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 994 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, - ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 994 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, - ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 994 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, - ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 994 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 827 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 827 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 827 }, 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 = { 827 }, 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 = { 827 }, 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 = { 9653 }, 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 = { 9653 }, 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 (15-23) Physical Thorns damage", statOrder = { 9653 }, 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 (15-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, 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 (35-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 9653 }, 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 (97-145) Physical Thorns damage", statOrder = { 9653 }, 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 (97-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (146-220) Physical Thorns damage", statOrder = { 9653 }, 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 (146-220) Physical Thorns damage" }, } }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 843 }, 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 = { 843 }, 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 = { 843 }, 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" }, } }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 843 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 843 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 843 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 843 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 844 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 844 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 844 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 844 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 844 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 844 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 844 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 845 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 845 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 845 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 845 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 845 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 845 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 845 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 846 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 846 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 846 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 846 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 846 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 846 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 846 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 846 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 882 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 882 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 882 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 882 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 882 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 882 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 882 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 882 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 882 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 883 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 883 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 883 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 883 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 883 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 883 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 883 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 883 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 883 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 884 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 884 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 884 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 884 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 884 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 884 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 884 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 884 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 885 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 885 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 885 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 885 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 885 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 885 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 885 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 885 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 885 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 821 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 821 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 821 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 821 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 821 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 821 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 821 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 821, 826 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 821, 826 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 821, 826 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 821, 826 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 821, 826 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 821, 826 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 821, 826 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 821, 826 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, - ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, - ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 881 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, - ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 881 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, - ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 881 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, - ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 881 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, - ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 881 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, - ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 881 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, - ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 881 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 853, 871 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 853, 871 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 853, 871 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 853, 871 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 853, 871 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 853, 871 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, - ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, - ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 854 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 854 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 854 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 854 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 854 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 854 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 854 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 854 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 854, 871 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 854, 871 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 854, 871 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 854, 871 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 854, 871 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 854, 871 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 854, 871 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, - ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 931 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 931 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, - ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, - ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+(5-6) to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(5-6) to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+7 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+7 to Level of all Melee Skills" }, } }, - ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+(5-6) to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+(5-6) to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+7 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+7 to Level of all Projectile Skills" }, } }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 968 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 968 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 968 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 968 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 968 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 968 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 968 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 968 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 968 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 968 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, - ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 896 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 896 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 896 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 896 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 896 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 896 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 896 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 896 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 896 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, - ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 81, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 972 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 972 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 972 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 972 }, level = 68, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 972 }, level = 81, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, - ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 81, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 68, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 81, group = "ManaLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 975 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 975 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 975 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 975 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 975 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 975 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 975 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 980 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 980 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 980 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 980 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 980 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 980 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 974 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 974 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 974 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 974 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 941 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 941 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 941 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 919 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 919 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 919 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 919 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 919 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 919 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 919 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 893 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 893 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 893 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 893 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 894 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 894 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 894 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 894 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, - ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, - ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 862 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, - ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 862 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, - ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 862 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, - ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 862 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, - ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 862 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, - ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 862 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, - ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 862 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, - ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 862 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 826 }, level = 11, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 826 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 826 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 826 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 826 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 826 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 826 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 826 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 826 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 890 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 890 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 890 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 890 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 890 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 890 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 890 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 933 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 933 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 933 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 933 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 933 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 933 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 917 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 917 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 917 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 917 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 917 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, - ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, - ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, - ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 891 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 891 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 891 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 891 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 891 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 891 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 937 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 937 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 937 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 937 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 937 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 937 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 918 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 918 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 918 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 918 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 918 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, - ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, - ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 892 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 892 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 892 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 892 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 892 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 892 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 916 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 916 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 916 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 916 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 916 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 916 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 916 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 916 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 916 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 916 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 862, 1003 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 862, 1003 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 862, 1003 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 826, 1003 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 826, 1003 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 826, 1003 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, - ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 976, 1003 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 976, 1003 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 976, 1003 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, - ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, - ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 830 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, - ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 830 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, - ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 830 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, - ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 830 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, - ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 830 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, - ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 830 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, - ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 874 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, - ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 874 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, - ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 874 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, - ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 874 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, - ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 874 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, - ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 874 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, - ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, - ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 874 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, - ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(30-36)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(30-36)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 842 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 842 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 842 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 842 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 842 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 842 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 842 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 842, 871 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 842, 871 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 842, 871 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 842, 871 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 842, 871 }, 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 = { 842, 871 }, 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 = { 842, 871 }, 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 = { 9209 }, 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 = { 9209 }, 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 = { 9209 }, 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 = { 9209 }, 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 = { 9209 }, 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 = { 1000 }, 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 = { 1000 }, 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 = { 1000 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1000 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, - ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 996 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 996 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 996 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 996 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 999 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 999 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 999 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 999 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 999 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, - ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 997 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 997 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 997 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 997 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 998 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 998 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 998 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 998 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 951 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 951 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 951 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 951 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 951 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 953 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 953 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 954 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 954 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 955 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 955 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 956 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 956 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, - ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(26-30)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(31-35)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(36-40)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(41-45)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(46-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(46-50)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(51-55)% increased Energy Shield Recharge Rate" }, } }, - ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, - ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 964 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 964 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 964 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 964 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 964 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, - ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1001 }, 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 = { 945 }, 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 = { 945 }, 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 = { 5137 }, 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 = { 5137 }, 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 = { 5137 }, 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 = { 5137 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 943 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 943 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 878 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 878 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 878 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 878 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, 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 = { 6216 }, 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 = { 6216 }, 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 = { 6216 }, 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 = { 6216 }, 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 = { 6216 }, 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 = { 982 }, 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 = { 982 }, 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 = { 982 }, 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 = { 982 }, 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 = { 982 }, 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 = { 982 }, 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 = { 5227 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5227 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5227 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5227 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5227 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5227 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5229 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5229 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5229 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5229 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5229 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, - ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 944 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, - ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 944 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 988 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 988 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 988 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 988 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, - ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 990 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 990 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 990 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 990 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 990 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, - ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 992 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, - ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 992 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, - ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 992 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, - ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 992 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, - ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 992 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, - ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 875 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, - ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 875 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 875 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, - ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 875 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, - ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 875 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 987 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 987 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 987 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 987 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 987 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, - ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 987 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, - ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 985 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, - ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 985 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, - ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 985 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, - ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 985 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, - ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 985 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, - ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 985 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, - ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, - ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 853 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, - ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, - ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, - ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, - ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 855 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 855 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, - ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, - ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, - ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, - ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 856 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 856 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, - ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, - ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, - ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 857 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 857 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, - ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, - ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 861 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 861 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 861 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 861 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 861 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 861 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, - ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1002 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, - ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1002 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, - ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, - ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 962 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, - ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 962 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, - ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 962 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, - ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 962 }, 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 = { 962 }, 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 = { 962 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7237 }, 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 = { 6048 }, 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 = { 6048 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 876 }, 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 = { 876 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 829 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 829 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 829 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2401 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2401 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2401 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1445 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1445 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1445 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1445 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1445 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1445 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1446 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1446 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1446 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1446 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2501 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2902 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 858 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1821 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2615 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2613 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2614 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 972 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 972 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 972 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 972 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 972 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 972 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1093 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1093 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1093 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1093 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1093 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2250 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2250 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2250 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2878 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2878 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2878 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 2967 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1225 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1225 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1225 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2786 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2786 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 858, 2786 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 402 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 399 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3879 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1621 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 388 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3820 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2800 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3821 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 398 }, 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 = { 3813 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "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 = { 3814 }, 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 = { 9130 }, 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 = { 3816 }, 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 = { 3817 }, 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 = { 3058 }, 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 = { 8287 }, 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 = { 5120 }, 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 = { 6315 }, 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 = { 3187 }, 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 = { 432 }, 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 = { 132 }, 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 = { 556 }, 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 = { 533, 533.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 = { 1557 }, 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 = { 6384 }, 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 = { 2481 }, 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 = { 430 }, 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 = { 2266 }, 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 = { 2266 }, 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 = { 2268 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, 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 = { 5687 }, 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 = { 8613 }, 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 = { 2177 }, 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 = { 7503 }, 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 = { 4522 }, 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 = { 4522 }, 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 = { 500 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 496 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 519 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 501 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 870 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 872 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Defences", statOrder = { 2486 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(20-30)% increased Global Defences" }, } }, - ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 849 }, 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 = { 851 }, 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 = { 851 }, 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 = { 6150 }, 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 = { 5307 }, 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 = { 7081 }, 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 = { 2124 }, 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", "+3 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, - ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+5 to Level of all Attack Skills" }, } }, - ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 922 }, 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 = { 922 }, 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 = { 7174 }, 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 = { 4582 }, 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 = { 4582 }, 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 = { 1080 }, 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 = { 1081 }, 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 = { 1082 }, 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 = { 950 }, 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 = { 6476 }, 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 = { 2472 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 991 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 991 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 991 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 991 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 991 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 991 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 991 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 991 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 992 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 992 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 992 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 992 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 992 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 992 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 992 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 992 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 993 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 993 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 993 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 993 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 993 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 993 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 993 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 993 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 990 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 990 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 990 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 990 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 990 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 990 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 990 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 990 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 1013 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 1013 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 1013 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 1013 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 1013 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 1013 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 1013 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 1019 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 1019 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 1019 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 1019 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 1019 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 1019 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 1019 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 1022 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 1022 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 1022 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 1022 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 1022 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 1022 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 1022 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1012 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1012 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1012 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1012 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1012 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1012 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 919 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 919 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 919 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 919 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 919 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 919 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 1023 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 1023 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 1023 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 1023 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 1023 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 1023 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 886 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 886 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 886 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 886 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 886 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 886 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 886 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 886 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 886 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 886 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 886 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, + ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 886 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, + ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 888 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, + ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 888 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 888 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 891 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, + ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 893 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, + ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 893 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, + ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 893 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-51) to Armour", statOrder = { 880 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(23-51) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(52-68) to Armour", statOrder = { 880 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(52-68) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-107) to Armour", statOrder = { 880 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(69-107) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(108-140) to Armour", statOrder = { 880 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(108-140) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(141-186) to Armour", statOrder = { 880 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(141-186) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(187-225) to Armour", statOrder = { 880 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(187-225) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(226-267) to Armour", statOrder = { 880 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(226-267) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(268-311) to Armour", statOrder = { 880 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(268-311) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(312-351) to Armour", statOrder = { 880 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(312-351) to Armour" }, } }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-17) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(8-17) to Evasion Rating" }, } }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(18-38) to Evasion Rating", statOrder = { 882 }, level = 11, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(18-38) to Evasion Rating" }, } }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(39-51) to Evasion Rating", statOrder = { 882 }, level = 16, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(39-51) to Evasion Rating" }, } }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(52-79) to Evasion Rating", statOrder = { 882 }, level = 25, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(52-79) to Evasion Rating" }, } }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(80-107) to Evasion Rating", statOrder = { 882 }, level = 33, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-107) to Evasion Rating" }, } }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(108-141) to Evasion Rating", statOrder = { 882 }, level = 46, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(108-141) to Evasion Rating" }, } }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(142-174) to Evasion Rating", statOrder = { 882 }, level = 54, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(142-174) to Evasion Rating" }, } }, + ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(175-202) to Evasion Rating", statOrder = { 882 }, level = 65, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(175-202) to Evasion Rating" }, } }, + ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(203-233) to Evasion Rating", statOrder = { 882 }, level = 70, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(203-233) to Evasion Rating" }, } }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 884 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 884 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 884 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 884 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 884 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 884 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 884 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 884 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 884 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 881 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 881 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 881 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 881 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 881 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 881 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 881 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 883 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 883 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 883 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 883 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 883 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 883 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 883 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 885 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 885 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 885 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 885 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 885 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 885 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 885 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-56) to Armour", statOrder = { 839 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(28-56) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(57-77) to Armour", statOrder = { 839 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(57-77) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(78-98) to Armour", statOrder = { 839 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(78-98) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(99-127) to Armour", statOrder = { 839 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(99-127) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(128-159) to Armour", statOrder = { 839 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(128-159) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(160-190) to Armour", statOrder = { 839 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(160-190) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(191-221) to Armour", statOrder = { 839 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(191-221) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(222-248) to Armour", statOrder = { 839 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(222-248) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(249-277) to Armour", statOrder = { 839 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(249-277) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(278-310) to Armour", statOrder = { 839 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(278-310) to Armour" }, } }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-46) to Evasion Rating", statOrder = { 840 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(19-46) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(47-66) to Evasion Rating", statOrder = { 840 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-66) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(67-87) to Evasion Rating", statOrder = { 840 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(67-87) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(88-116) to Evasion Rating", statOrder = { 840 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(88-116) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(117-146) to Evasion Rating", statOrder = { 840 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(117-146) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(147-176) to Evasion Rating", statOrder = { 840 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(147-176) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(177-207) to Evasion Rating", statOrder = { 840 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(177-207) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(208-234) to Evasion Rating", statOrder = { 840 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(208-234) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(235-261) to Evasion Rating", statOrder = { 840 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(235-261) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(262-300) to Evasion Rating", statOrder = { 840 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(262-300) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 842 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 842 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 842 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 842 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 842 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 842 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 842 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 842 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 842 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 842 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(9-16) to Armour", "+(6-10) to Evasion Rating", statOrder = { 839, 840 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [53045048] = { "+(6-10) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(17-46) to Armour", "+(11-41) to Evasion Rating", statOrder = { 839, 840 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [53045048] = { "+(11-41) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(47-71) to Armour", "+(42-64) to Evasion Rating", statOrder = { 839, 840 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [53045048] = { "+(42-64) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(72-85) to Armour", "+(65-78) to Evasion Rating", statOrder = { 839, 840 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [53045048] = { "+(65-78) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-102) to Armour", "+(79-94) to Evasion Rating", statOrder = { 839, 840 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [53045048] = { "+(79-94) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(103-127) to Armour", "+(95-119) to Evasion Rating", statOrder = { 839, 840 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [53045048] = { "+(95-119) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(128-149) to Armour", "+(120-141) to Evasion Rating", statOrder = { 839, 840 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [53045048] = { "+(120-141) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(150-170) to Armour", "+(142-161) to Evasion Rating", statOrder = { 839, 840 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [53045048] = { "+(142-161) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(9-16) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 839, 842 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(17-46) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 839, 842 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(47-71) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 839, 842 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(72-85) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 839, 842 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-102) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 839, 842 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(103-127) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 839, 842 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(128-149) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 839, 842 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(150-170) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 839, 842 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-10) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 840, 842 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(6-10) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(11-41) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 840, 842 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-41) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(42-64) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 840, 842 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(42-64) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(65-78) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 840, 842 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(65-78) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(79-94) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 840, 842 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(79-94) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(95-119) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 840, 842 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(95-119) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(120-141) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 840, 842 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(120-141) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(142-161) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 840, 842 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(142-161) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 845 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 845 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 845 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 845 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 845 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 845 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 845 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 845 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 847 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 847 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 847 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 847 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 847 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 847 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 847 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 847 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 848 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 848 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 848 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 848 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 848 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 848 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 848 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 848 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 849 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 849 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 849 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 849 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 849 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 849 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 849 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 849 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 850 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 850 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 850 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 850 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 850 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 850 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 850 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, + ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 845, 1060 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 845, 1060 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 845, 1060 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 845, 1060 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 845, 1060 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 845, 1060 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 847, 1060 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 847, 1060 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 847, 1060 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 847, 1060 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 847, 1060 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 847, 1060 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 848, 1060 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 848, 1060 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 848, 1060 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 848, 1060 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 848, 1060 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 848, 1060 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 849, 1060 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 849, 1060 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 849, 1060 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 849, 1060 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 849, 1060 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 849, 1060 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 850, 1060 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 850, 1060 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 850, 1060 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 850, 1060 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 850, 1060 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 850, 1060 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 851, 1060 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 851, 1060 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 851, 1060 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 851, 1060 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 851, 1060 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 851, 1060 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 845, 886 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 845, 886 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 845, 886 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 845, 886 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 845, 886 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 845, 886 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 847, 886 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 847, 886 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 847, 886 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 847, 886 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 847, 886 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 847, 886 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 848, 886 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 848, 886 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 848, 886 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 848, 886 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 848, 886 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 848, 886 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 849, 886 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 849, 886 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 849, 886 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 849, 886 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 849, 886 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 849, 886 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 850, 886 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 850, 886 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 850, 886 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 850, 886 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 850, 886 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 850, 886 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 851, 886 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 851, 886 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 851, 886 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 851, 886 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 851, 886 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 851, 886 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 845, 891 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 845, 891 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 845, 891 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 845, 891 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 845, 891 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 845, 891 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 847, 891 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 847, 891 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 847, 891 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 847, 891 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 847, 891 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 847, 891 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 848, 891 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 848, 891 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 848, 891 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 848, 891 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 848, 891 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 848, 891 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 849, 891 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 849, 891 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 849, 891 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 849, 891 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 849, 891 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 849, 891 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 850, 891 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 850, 891 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 850, 891 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 850, 891 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 850, 891 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 850, 891 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 851, 891 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 851, 891 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 851, 891 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 851, 891 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 851, 891 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 851, 891 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(5-9) to Armour", "(6-13)% increased Armour", statOrder = { 839, 845 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(5-9) to Armour" }, } }, + ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(10-29) to Armour", "(14-20)% increased Armour", statOrder = { 839, 845 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(10-29) to Armour" }, } }, + ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-41) to Armour", "(21-26)% increased Armour", statOrder = { 839, 845 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-41) to Armour" }, } }, + ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(42-57) to Armour", "(27-32)% increased Armour", statOrder = { 839, 845 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(42-57) to Armour" }, } }, + ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(58-75) to Armour", "(33-38)% increased Armour", statOrder = { 839, 845 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(58-75) to Armour" }, } }, + ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(76-95) to Armour", "(39-42)% increased Armour", statOrder = { 839, 845 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(76-95) to Armour" }, } }, + ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(4-6) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 840, 847 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(4-6) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(7-26) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 840, 847 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(7-26) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(27-38) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 840, 847 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(27-38) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(39-53) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 840, 847 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(39-53) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(54-70) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 840, 847 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(54-70) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(71-90) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 840, 847 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(71-90) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 842, 848 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 842, 848 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 842, 848 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 842, 848 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 842, 848 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 842, 848 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(3-5) to Armour", "+(2-3) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(2-3) to Evasion Rating" }, [3484657501] = { "+(3-5) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(6-16) to Armour", "+(4-14) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(4-14) to Evasion Rating" }, [3484657501] = { "+(6-16) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(17-23) to Armour", "+(15-21) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(15-21) to Evasion Rating" }, [3484657501] = { "+(17-23) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(24-32) to Armour", "+(22-29) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(22-29) to Evasion Rating" }, [3484657501] = { "+(24-32) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(33-41) to Armour", "+(30-39) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(30-39) to Evasion Rating" }, [3484657501] = { "+(33-41) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(42-52) to Armour", "+(40-50) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(40-50) to Evasion Rating" }, [3484657501] = { "+(42-52) to Armour" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(3-5) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(3-5) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(6-16) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(6-16) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(17-23) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-23) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(24-32) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(24-32) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(33-41) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(33-41) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(42-52) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(42-52) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(2-3) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(2-3) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(4-14) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(4-14) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(15-21) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(15-21) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(22-29) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-29) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(30-39) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(30-39) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(40-50) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 947 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 947 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 947 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 947 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 947 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, + ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, + ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 1060 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, + ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 1060 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, + ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 1060 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, + ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 1060 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, + ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 1060 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, + ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 1060 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, + ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 1060 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, + ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 1060 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, + ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 1060 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, + ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 1060 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 835 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 835 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 835 }, 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 = { 835 }, 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 = { 835 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 10220 }, 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 = { 857 }, 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 = { 857 }, 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 = { 857 }, 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" }, } }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 857 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 857 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 857 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 857 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 857 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 857 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 858 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 858 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 858 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 858 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 858 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 858 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 858 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 858 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 858 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 859 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 859 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 859 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 859 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 859 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 859 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 859 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 859 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 860 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 860 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 860 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 860 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 860 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 860 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 860 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 860 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 906 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 906 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 906 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 906 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 906 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 906 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 906 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 906 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 907 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 907 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 907 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 907 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 907 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 907 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 907 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 907 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 907 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 908 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 908 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 908 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 908 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 908 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 908 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 908 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 908 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 908 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 909 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 909 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 909 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 909 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 909 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 909 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 909 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 909 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 909 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 829 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 829 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 829 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 829 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 829 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 829 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 829 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 829, 834 }, level = 8, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 829, 834 }, level = 14, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 829, 834 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 829, 834 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 829, 834 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 829, 834 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 829, 834 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 829, 834 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, + ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, + ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 905 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, + ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 905 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, + ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 905 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, + ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 905 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, + ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 905 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, + ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 905 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, + ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 905 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 870, 891 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 870, 891 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 870, 891 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 870, 891 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 870, 891 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 870, 891 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, + ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, + ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 871 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 871 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 871 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 871 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 871 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 871 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 871 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 871 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 871, 891 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 871, 891 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 871, 891 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 871, 891 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 871, 891 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 871, 891 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 871, 891 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, + ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 971 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 971 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, + ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, + ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, + ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 1033 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 1033 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 1033 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 1033 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 1033 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 1033 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 1033 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 1033 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 1033 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 1033 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, + ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 920 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 920 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 920 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 920 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 920 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 920 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 920 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 920 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 920 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 920 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, + ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 65, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, + ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 65, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 65, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 1041 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 1041 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 1041 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 1041 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 1041 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 1041 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 1041 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 1046 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 1046 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 1046 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 1046 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 1046 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 1046 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 1046 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 1040 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 1040 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 1040 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 1040 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 984 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 984 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 984 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 945 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 945 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 945 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 945 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 945 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 945 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 945 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 917 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 917 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 917 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 917 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 918 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 918 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 918 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 918 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, + ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, + ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 879 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, + ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 879 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, + ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 879 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, + ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 879 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, + ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 879 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, + ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 879 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, + ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 879 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, + ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 879 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 834 }, level = 8, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 834 }, level = 13, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 834 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 834 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 834 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 834 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 834 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 834 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 834 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 834 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 914 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 914 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 914 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 914 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 914 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 914 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 914 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 914 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 975 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 975 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 975 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 975 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 975 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 975 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 943 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 943 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 943 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 943 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 943 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, + ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, + ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, + ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 915 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 915 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 915 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 915 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 915 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 915 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 979 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 979 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 979 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 979 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 979 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 979 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 944 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 944 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 944 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 944 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 944 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 944 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, + ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, + ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 916 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 916 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 916 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 916 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 916 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 916 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 940 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 940 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 940 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 940 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 940 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 940 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 940 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 940 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 940 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 940 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 879, 1069 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 879, 1069 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 879, 1069 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 834, 1069 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 834, 1069 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 834, 1069 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, + ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 1042, 1069 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 1042, 1069 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 1042, 1069 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, + ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, + ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 838 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, + ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 838 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, + ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 838 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, + ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 838 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, + ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 838 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, + ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 838 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, + ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 895 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, + ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 895 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, + ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 895 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, + ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 895 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, + ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 895 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, + ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 895 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, + ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, + ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 895 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, + ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(20-26)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(20-26)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 856 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 856 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 856 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 856 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 856 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 856 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 856 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 856, 891 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 856, 891 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 856, 891 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 856, 891 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 856, 891 }, 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 = { 856, 891 }, 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 = { 856, 891 }, 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 = { 9763 }, 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 = { 9763 }, 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 = { 9763 }, 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 = { 9763 }, 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 = { 9763 }, 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 = { 1066 }, 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 = { 1066 }, 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 = { 1066 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1066 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, + ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 1065 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 1065 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 1065 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 1065 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 1065 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, + ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 1063 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 1063 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 1063 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 1063 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 1063 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 1005 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 1005 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 1005 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 1005 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 1005 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 1008 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 1008 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 1009 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 1009 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, + ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(5-8)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(5-8)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(9-11)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(16-19)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-19)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(20-23)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-23)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(24-27)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-27)% increased Energy Shield Recharge Rate" }, } }, + ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, + ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 1027 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 1027 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 1027 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 1027 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 1027 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, + ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1067 }, 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 = { 989 }, 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 = { 989 }, 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 = { 5500 }, 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 = { 5500 }, 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 = { 5500 }, 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 = { 5500 }, 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 = { 5500 }, 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 = { 5500 }, 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 = { 987 }, 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 = { 987 }, 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 = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, + ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 899 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 899 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 899 }, 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 = { 899 }, 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 = { 899 }, 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 = { 6617 }, 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 = { 6617 }, 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 = { 6617 }, 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 = { 6617 }, 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 = { 6617 }, 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 = { 6617 }, 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 = { 1048 }, 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 = { 1048 }, 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 = { 1048 }, 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 = { 1048 }, 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 = { 1048 }, 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 = { 1048 }, 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 = { 5591 }, 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 = { 5591 }, 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 = { 5591 }, 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 = { 5591 }, 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 = { 5591 }, 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 = { 5591 }, 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 = { 5592 }, 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 = { 5592 }, 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 = { 5592 }, 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 = { 5592 }, 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 = { 5592 }, 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 = { 5592 }, 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 = { 988 }, 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 = { 988 }, 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 = { 1054 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 1054 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 1054 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 1054 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 1054 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, + ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 1056 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 1056 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 1056 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 1056 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 1056 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, + ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 1058 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, + ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 1058 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, + ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 1058 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, + ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 1058 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, + ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 1058 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, + ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 896 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, + ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 896 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, + ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 896 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, + ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 896 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, + ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 896 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 1053 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 1053 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 1053 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 1053 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 1053 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, + ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 1053 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, + ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 1051 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, + ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 1051 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, + ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 1051 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, + ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 1051 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, + ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 1051 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, + ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 1051 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, + ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, + ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, + ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, + ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 870 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, + ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, + ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, + ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, + ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, + ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 872 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, + ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 872 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, + ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, + ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, + ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, + ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 873 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, + ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 873 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, + ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, + ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, + ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, + ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 874 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 874 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, + ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, 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] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, 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] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, 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] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, 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] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, 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] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, 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] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, 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] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, 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] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, 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] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, 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] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, 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] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, 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] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, + ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, + ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 878 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 878 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 878 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 878 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 878 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 878 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, + ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1068 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, + ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1068 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, + ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1068 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, + ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 1025 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, + ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 1025 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, + ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 1025 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, + ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1025 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 6918 }, 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 = { 6918 }, 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 = { 6922 }, 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 = { 6922 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 6919 }, 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 = { 177 }, 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 = { 7677 }, 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 = { 6450 }, 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 = { 6450 }, 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 = { 614 }, 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 = { 897 }, 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 = { 897 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 837 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 837 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 837 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 837 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2195 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2505 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2505 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2505 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1517 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1517 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1517 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1517 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1517 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1517 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1518 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1518 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1518 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1518 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2598 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2599 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2600 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2601 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2602 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3006 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 875 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1894 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2724 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2722 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2723 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 1038 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 1038 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 1038 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 1038 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 1038 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1155 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1155 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1155 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1155 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1155 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2358 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2358 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2358 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2358 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2981 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2981 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2981 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3071 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1287 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1287 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1287 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2894 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2894 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 875, 2894 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 413 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 410 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3980 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2204 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1693 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 399 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3917 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2903 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3918 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 409 }, 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 = { 3910 }, 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 = { 3911 }, 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 = { 9673 }, 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 = { 3913 }, 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 = { 3914 }, 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 = { 3162 }, 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 = { 8800 }, 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 = { 5483 }, 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 = { 6719 }, 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 = { 3291 }, 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 = { 443 }, 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 = { 140 }, 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 = { 563 }, 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 = { 544, 544.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 = { 1628 }, 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 = { 6800 }, 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 = { 2581 }, 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 = { 441 }, 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 = { 2374 }, 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 = { 2374 }, 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 = { 2376 }, 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 = { 6070 }, 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 = { 9137 }, 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 = { 2286 }, 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 = { 7964 }, 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 = { 4649 }, 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 = { 4649 }, 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 = { 511 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 507 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 530 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 512 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, + ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 888 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 893 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, + ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(20-30)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, + ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 865 }, 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 = { 868 }, 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 = { 868 }, 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 = { 6552 }, 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 = { 5675 }, 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 = { 7526 }, 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 = { 2210 }, 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 = { 966 }, 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 = { 966 }, 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 = { 949 }, 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 = { 949 }, 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 = { 7614 }, 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 = { 4706 }, 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 = { 4706 }, 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 = { 998 }, 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 = { 999 }, 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 = { 1000 }, 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 = { 1004 }, 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 = { 6894 }, 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 = { 2572 }, 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 = { 1673 }, 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 = { 4314, 4314.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 = { 6567 }, 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 = { 4715 }, 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 = { 8984 }, 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 = { 8840 }, 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 = { 9759 }, 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 = { 3717 }, 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 = { 10206 }, 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 = { 8965 }, 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 = { 8977 }, 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 = { 8990 }, 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 = { 8994 }, 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 = { 869 }, 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 = { 863 }, 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 = { 867 }, 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 = { 9201 }, 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 = { 2470 }, 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 = { 6510 }, 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 = { 7361 }, 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 = { 9986 }, 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 = { 6538 }, 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 = { 7518 }, 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 = { 5661 }, 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 = { 4335 }, 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 = { 5551 }, 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 = { 9984 }, 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 = { 4334 }, 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 = { 5388 }, 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 = { 8999 }, 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 = { 9061 }, 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 = { 6022 }, 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 = { 9726 }, 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", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, 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 = { 889 }, 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 = { 10478 }, 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 = { 890 }, 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 = { 9641 }, 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 = { 9210 }, 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 = { 9210 }, 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 = { 4548 }, 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 = { 9642 }, 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 = { 854 }, 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 = { 854 }, 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 = { 889 }, 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 = { 9697 }, 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 = { 1068 }, 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 = { 4706 }, 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 = { 10206 }, 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 = { 986 }, 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 = { 984 }, 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 = { 6865 }, 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 = { 2358 }, 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 = { 4735 }, 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 = { 1643 }, 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 = { 6051 }, 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 = { 4334 }, 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 = { 2721 }, 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 = { 4249 }, 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 = { 6510 }, 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 = { 8977 }, 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 = { 9950 }, 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 = { 4483 }, 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 = { 895 }, 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 = { 7578 }, 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 = { 8840 }, 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 = { 177 }, 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 = { 44 }, 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 = { 891, 949 }, 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 = { 879, 945 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, 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 = { 891, 917 }, 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 = { 986, 9225 }, 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" }, } }, + ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 829, 1144 }, 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 = { 856, 1068 }, 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 = { 5386 }, 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 = { 6293 }, 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 = { 5556 }, 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 = { 4761 }, 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 = { 8804 }, 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 = { 2505 }, 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 = { 4165 }, 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 = { 7521 }, 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 = { 2376 }, 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 = { 4483 }, 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 = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4483 }, 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 = { 4483 }, 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 = { 4483 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 4666 }, 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 = { 4666 }, 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 = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "10% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, 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 = { 852 }, 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 = { 852 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 6029 }, 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 = { 852 }, 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 = { 852 }, 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 = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, + ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 866 }, 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 = { 866 }, 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 = { 866 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 9224 }, 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 = { 974 }, 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 = { 965, 974 }, 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 = { 1037, 1894 }, 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" }, } }, + ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, 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 = { 1511 }, 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 = { 1511 }, 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 = { 7421 }, 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 = { 7421 }, 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 = { 7421 }, 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 = { 7421 }, 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 = { 985 }, 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 = { 985 }, 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 = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1354 }, 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 = { 1354 }, 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 = { 1354 }, 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 = { 6894 }, 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 = { 6894 }, 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 = { 6894 }, 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 = { 1032 }, 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 = { 1032 }, 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 = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1012 }, 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 = { 1012 }, 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 = { 1012 }, 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 = { 4667 }, 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 = { 4667 }, 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 = { 4667 }, 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 = { 4667 }, 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 = { 4667 }, 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 = { 1010, 1023 }, 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 = { 1001 }, 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 = { 1008, 1023 }, 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" }, } }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1023 }, 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 = { 1003 }, 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 = { 1953 }, 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 = { 5804 }, 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 = { 4725 }, 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 = { 4648 }, 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 = { 4228 }, 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 = { 4541 }, 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 = { 1944 }, 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 = { 9237 }, 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 = { 7430 }, 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 = { 5945 }, 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 = { 1583 }, 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 = { 1177 }, 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 = { 6326, 6498, 6498.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 = { 6326, 6498, 6498.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 = { 3009 }, 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 = { 3009 }, 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 = { 3010 }, 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 = { 3010 }, 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 = { 4254, 4256 }, 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 = { 4254, 4256 }, 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 = { 6244, 6244.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 = { 6244, 6244.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 = { 1614 }, 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 = { 1614 }, 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 = { 2793 }, 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 = { 6487 }, 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 = { 1037 }, 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 = { 3271 }, 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 = { 3271 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1907 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1907, 2374 }, 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 = { 2721 }, 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 = { 2721 }, 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 = { 7422 }, 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 = { 7956 }, 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 = { 3847 }, 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 = { 3847 }, 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 = { 3847 }, 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 = { 5820 }, 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 = { 5820 }, 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 = { 2413 }, 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 = { 2413 }, 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 = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2474 }, 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 = { 3781 }, 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 = { 3781 }, 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 = { 9524 }, 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 = { 9524 }, 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 = { 10580 }, 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 = { 10580 }, 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 = { 5965 }, 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 = { 5965 }, 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 = { 8793 }, 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 = { 8793 }, 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 = { 9503 }, 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 = { 9503 }, 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 = { 5790 }, 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 = { 2529 }, 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 = { 5804 }, 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 = { 1012 }, 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 = { 4484 }, 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 = { 6102 }, 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 = { 6866 }, 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 = { 6869, 6870 }, 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 = { 891, 1155 }, 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 = { 9647 }, 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 = { 1043 }, 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 = { 4528 }, 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 = { 9869 }, 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 = { 4454 }, 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 = { 7421 }, 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 = { 4520 }, 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 = { 4658 }, 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 = { 1066 }, 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 = { 4453 }, 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 = { 9461 }, 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 = { 886 }, 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 = { 885 }, 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 = { 2926 }, 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 = { 2268 }, 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 = { 5577, 9462 }, 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 = { 5994, 9462 }, 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 = { 9129, 9462 }, 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 = { 1600 }, 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 = { 1598 }, 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 = { 3417 }, 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 = { 1602 }, 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 = { 1909 }, 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 = { 2747 }, 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 = { 6850 }, 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 = { 9260 }, 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 = { 4540 }, 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 = { 1718 }, 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 = { 1718 }, 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" }, } }, + ["MinionDamage3"] = { type = "Prefix", affix = "Schemer's", "Minions deal (13-15)% increased Damage", statOrder = { 1718 }, level = 33, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, + ["MinionDamage4"] = { type = "Prefix", affix = "Plotter's", "Minions deal (16-18)% increased Damage", statOrder = { 1718 }, level = 46, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, + ["MinionDamage5"] = { type = "Prefix", affix = "Conspirator's", "Minions deal (19-21)% increased Damage", statOrder = { 1718 }, level = 54, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, + ["MinionDamage6"] = { type = "Prefix", affix = "Exploiter's", "Minions deal (22-24)% increased Damage", statOrder = { 1718 }, level = 65, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, + ["MinionDamage7"] = { type = "Prefix", affix = "Manipulator's", "Minions deal (25-27)% increased Damage", statOrder = { 1718 }, level = 70, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, + ["MinionDamage8"] = { type = "Prefix", affix = "Puppeteer's", "Minions deal (28-31)% increased Damage", statOrder = { 1718 }, level = 82, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-31)% increased Damage" }, } }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Persuasion", "Minions have (5-7)% increased Movement Speed", statOrder = { 1526 }, level = 27, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-7)% increased Movement Speed" }, } }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Pressure", "Minions have (8-10)% increased Movement Speed", statOrder = { 1526 }, level = 48, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Coercion", "Minions have (11-13)% increased Movement Speed", statOrder = { 1526 }, level = 68, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-13)% increased Movement Speed" }, } }, + ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Compulsion", "Minions have (14-16)% increased Movement Speed", statOrder = { 1526 }, level = 77, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (14-16)% increased Movement Speed" }, } }, + ["MinionElementalResistance1"] = { type = "Suffix", affix = "of Numbness", "Minions have +(7-9)% to all Elemental Resistances", statOrder = { 2665 }, level = 22, 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 +(7-9)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance2"] = { type = "Suffix", affix = "of Dullness", "Minions have +(10-12)% to all Elemental Resistances", statOrder = { 2665 }, level = 38, 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 +(10-12)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance3"] = { type = "Suffix", affix = "of Desensitisation", "Minions have +(14-16)% to all Elemental Resistances", statOrder = { 2665 }, level = 49, 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 +(14-16)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2665 }, 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 = { 2665 }, 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 = { 2665 }, 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 = { 8968 }, 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 = { 8968 }, 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 = { 8968 }, 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 = { 8968 }, 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 = { 8995 }, 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 = { 8995 }, 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 = { 8995 }, 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 = { 8995 }, 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 = { 8995 }, 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 = { 8995 }, 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 = { 8997 }, 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 = { 8997 }, 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 = { 8997 }, 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 = { 8997 }, 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 = { 8997 }, 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 = { 8997 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 1025 }, 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 = { 9050 }, 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 = { 9050 }, 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 = { 9050 }, 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 = { 9050 }, 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 = { 8992 }, 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 = { 8992 }, 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 = { 8992 }, 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 = { 8992 }, 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 = { 8992 }, 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 = { 8992 }, 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 = { 971 }, 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 = { 971 }, 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 = { 9023 }, 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 = { 9023 }, 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 = { 9023 }, 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 = { 9023 }, 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 = { 9023 }, 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 = { 9023 }, 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 = { 9314 }, 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 = { 9314 }, 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 = { 9314 }, 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 = { 9314 }, 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 = { 9314 }, 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 = { 2757 }, 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 = { 2757 }, 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 = { 2757 }, 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" }, } }, + ["MinionAreaOfEffect4"] = { type = "Suffix", affix = "of Storming", "Minions have (17-20)% increased Area of Effect", statOrder = { 2757 }, level = 61, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (17-20)% increased Area of Effect" }, } }, + ["MinionAreaOfEffect5"] = { type = "Suffix", affix = "of Stampeding", "Minions have (21-24)% increased Area of Effect", statOrder = { 2757 }, level = 73, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (21-24)% increased Area of Effect" }, } }, + ["SpellDamageRing1"] = { type = "Prefix", affix = "Apprentice's", "(6-9)% increased Spell Damage", statOrder = { 870 }, level = 9, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(6-9)% increased Spell Damage" }, } }, + ["SpellDamageRing2"] = { type = "Prefix", affix = "Adept's", "(10-13)% increased Spell Damage", statOrder = { 870 }, level = 20, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-13)% increased Spell Damage" }, } }, + ["SpellDamageRing3"] = { type = "Prefix", affix = "Scholar's", "(14-17)% increased Spell Damage", statOrder = { 870 }, level = 31, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-17)% increased Spell Damage" }, } }, + ["SpellDamageRing4"] = { type = "Prefix", affix = "Professor's", "(18-21)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, + ["SpellDamageRing5"] = { type = "Prefix", affix = "Occultist's", "(22-25)% increased Spell Damage", statOrder = { 870 }, level = 55, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, + ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 870 }, 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 = { 870 }, 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 = { 870 }, 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 = { 4739 }, 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 = { 4739 }, 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 = { 4739 }, 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 = { 4739 }, 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 = { 4739 }, 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 = { 4739 }, 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 = { 2994 }, 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 = { 2994 }, 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 = { 2994 }, 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" }, } }, + ["ArcaneSurgeEffect4"] = { type = "Prefix", affix = "Passionate", "(33-39)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 79, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(33-39)% increased effect of Arcane Surge on you" }, } }, + ["SpellCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Menace", "(7-9)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 18, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(7-9)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Havoc", "(10-12)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 32, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-12)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Disaster", "(13-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 45, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(13-15)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Calamity", "(16-18)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 58, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(16-18)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Ruin", "(19-21)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 70, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(19-21)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Unmaking", "(22-25)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 81, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(22-25)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Ire", "(8-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 17, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(8-10)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Anger", "(11-13)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(11-13)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Rage", "(14-17)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(14-17)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, 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 = { 981 }, 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 = { 981 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 9958 }, 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 = { 2470 }, 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 = { 2470 }, 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 = { 2470 }, 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 = { 2470 }, 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 = { 5790 }, 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 = { 5790 }, 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 = { 5790 }, 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 = { 5790 }, 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 = { 5790 }, 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 = { 5320 }, 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 = { 5320 }, 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 = { 5320 }, 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 = { 5320 }, 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 = { 2374 }, 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 = { 2374 }, 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 = { 2374 }, 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 = { 2374 }, 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 = { 949 }, 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 = { 9950 }, 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 = { 9950 }, 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 = { 9950 }, 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 = { 9697 }, 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 = { 9697 }, 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 = { 9697 }, 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 = { 9697 }, 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 = { 9697 }, 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 = { 4736 }, 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 = { 4736 }, 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 = { 4736 }, 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" }, } }, + ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, + ["CastSpeedJewellery1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["CastSpeedJewellery2"] = { type = "Suffix", affix = "of Nimbleness", "(13-15)% increased Cast Speed", statOrder = { 986 }, level = 18, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, + ["CastSpeedJewellery3"] = { type = "Suffix", affix = "of Expertise", "(16-18)% increased Cast Speed", statOrder = { 986 }, level = 35, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, + ["CastSpeedJewellery4"] = { type = "Suffix", affix = "of Sortilege", "(19-21)% increased Cast Speed", statOrder = { 986 }, level = 51, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(19-21)% increased Cast Speed" }, } }, + ["CastSpeedJewellery5"] = { type = "Suffix", affix = "of Legerdemain", "(22-24)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(22-24)% increased Cast Speed" }, } }, + ["CastSpeedJewellery6"] = { type = "Suffix", affix = "of Prestidigitation", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 66, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["ConvertedSpellDamageGainedAsChaos1"] = { type = "Prefix", affix = "Impure", "Gain (13-15)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (13-15)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos2"] = { type = "Prefix", affix = "Tainted", "Gain (16-18)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (16-18)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos3"] = { type = "Prefix", affix = "Clouded", "Gain (19-21)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (19-21)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos4"] = { type = "Prefix", affix = "Darkened", "Gain (22-24)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (22-24)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos5"] = { type = "Prefix", affix = "Malignant", "Gain (25-27)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-27)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos6"] = { type = "Prefix", affix = "Vile", "Gain (28-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (28-30)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand1"] = { type = "Prefix", affix = "Impure", "Gain (26-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (26-30)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand2"] = { type = "Prefix", affix = "Tainted", "Gain (31-36)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (31-36)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand3"] = { type = "Prefix", affix = "Clouded", "Gain (37-42)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (37-42)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand4"] = { type = "Prefix", affix = "Darkened", "Gain (43-48)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (43-48)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand5"] = { type = "Prefix", affix = "Malignant", "Gain (49-54)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (49-54)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand6"] = { type = "Prefix", affix = "Vile", "Gain (55-60)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (55-60)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedEssenceDamageasExtraChaos1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (15-20)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedEssenceDamageasExtraChaos2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-33)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedLocalAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Adds (1-3) to (3-5) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-3) to (3-5) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Adds (3-5) to (7-11) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (3-5) to (7-11) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Adds (5-11) to (13-19) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-11) to (13-19) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Adds (11-19) to (23-29) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-19) to (23-29) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Adds (19-23) to (31-37) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (31-37) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Adds (23-31) to (41-53) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-31) to (41-53) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Adds (31-43) to (59-71) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-43) to (59-71) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Adds (43-59) to (73-97) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-59) to (73-97) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Adds (59-83) to (101-131) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-83) to (101-131) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage10"] = { type = "Prefix", affix = "Pestilent", "Adds (83-101) to (137-157) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (83-101) to (137-157) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Impure", "Adds (2-3) to (5-7) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (2-3) to (5-7) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand2"] = { type = "Prefix", affix = "Tainted", "Adds (5-9) to (11-17) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-9) to (11-17) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand3"] = { type = "Prefix", affix = "Clouded", "Adds (11-17) to (19-29) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-17) to (19-29) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand4"] = { type = "Prefix", affix = "Darkened", "Adds (19-29) to (31-41) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-29) to (31-41) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand5"] = { type = "Prefix", affix = "Malignant", "Adds (31-37) to (43-53) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-37) to (43-53) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand6"] = { type = "Prefix", affix = "Vile", "Adds (41-53) to (59-79) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (41-53) to (59-79) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand7"] = { type = "Prefix", affix = "Twisted", "Adds (59-71) to (83-107) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-71) to (83-107) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand8"] = { type = "Prefix", affix = "Malevolent", "Adds (73-97) to (113-149) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-97) to (113-149) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand9"] = { type = "Prefix", affix = "Baleful", "Adds (101-131) to (151-197) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (101-131) to (151-197) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand10"] = { type = "Prefix", affix = "Pestilent", "Adds (137-157) to (199-239) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (137-157) to (199-239) Chaos damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", statOrder = { 910 }, level = 1, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", statOrder = { 910 }, level = 8, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", statOrder = { 910 }, level = 16, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", statOrder = { 910 }, level = 33, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", statOrder = { 910 }, level = 46, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", statOrder = { 910 }, level = 54, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 910 }, 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 = { 910 }, 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 = { 910 }, 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 = { 7616 }, 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 = { 1023 }, 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 = { 9203 }, 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 = { 9203 }, 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 = { 9215 }, 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 = { 9215 }, 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 = { 9199 }, 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 = { 9199 }, 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 = { 1643 }, 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 = { 1643 }, 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 = { 1643 }, 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 = { 4666 }, 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 = { 4666 }, 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 = { 4666 }, 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)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% increased 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)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% increased 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)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% increased 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 = { 10028 }, 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 = { 10028 }, 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 = { 6186 }, 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 = { 6186 }, 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 = { 5589 }, 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 = { 5589 }, 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 = { 6085 }, 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 = { 6085 }, 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 = { 888 }, 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 = { 893 }, 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 = { 1416 }, 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 = { 4633 }, 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 = { 1004 }, 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 = { 6530 }, 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 = { 5660 }, 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 = { 7512 }, 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 = { 1023 }, 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 = { 886, 891 }, 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 = { 849, 894 }, 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 = { 850, 894 }, 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 = { 851, 894 }, 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 = { 845, 894 }, 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 = { 847, 894 }, 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 = { 848, 894 }, 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" }, } }, + ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(7-57) to maximum Mana", statOrder = { 849, 891 }, 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 = { 850, 891 }, 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 = { 851, 891 }, 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 = { 845, 891 }, 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 = { 847, 891 }, 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 = { 848, 891 }, 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 = { 9568 }, 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 = { 9568 }, 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 = { 10467 }, 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 = { 10467 }, 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 = { 10467 }, 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 = { 10470 }, 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 = { 10470 }, 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 = { 5224 }, 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 = { 5224 }, 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 = { 5224 }, 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 = { 6891 }, 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 = { 6891 }, 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 = { 4728 }, 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 = { 4728 }, 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 = { 9581 }, 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 = { 9581 }, 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 = { 6852 }, 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 = { 6852 }, 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 = { 2987 }, 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 = { 2987 }, 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 = { 3033 }, 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 = { 3033 }, 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 = { 10472 }, 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 = { 10472 }, 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 = { 2917 }, 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 = { 2917 }, 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 = { 4399 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4399 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, + ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, + ["DestructionInfluencePhysicalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(10-15)% increased Explicit Physical Modifier magnitudes", statOrder = { 43 }, level = 65, group = "DestructionInfluencePhysicalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1335369947] = { "(10-15)% increased Explicit Physical Modifier magnitudes" }, } }, + ["DestructionInfluenceFireModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Fire Modifier magnitudes", statOrder = { 39 }, level = 65, group = "DestructionInfluenceFireModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3574578302] = { "(15-20)% increased Explicit Fire Modifier magnitudes" }, } }, + ["DestructionInfluenceLightningModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Lightning Modifier magnitudes", statOrder = { 41 }, level = 65, group = "DestructionInfluenceLightningModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [3624940721] = { "(15-20)% increased Explicit Lightning Modifier magnitudes" }, } }, + ["DestructionInfluenceColdModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Cold Modifier magnitudes", statOrder = { 35 }, level = 65, group = "DestructionInfluenceColdModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3206904707] = { "(15-20)% increased Explicit Cold Modifier magnitudes" }, } }, + ["DestructionInfluenceElementalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 46 }, level = 65, group = "DestructionInfluenceElementalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [231689132] = { "(15-20)% increased Explicit Elemental Damage Modifier magnitudes" }, } }, + ["DestructionInfluenceChaosModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Chaos Modifier magnitudes", statOrder = { 34 }, level = 65, group = "DestructionInfluenceChaosModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3196512240] = { "(15-20)% increased Explicit Chaos Modifier magnitudes" }, } }, + ["DestructionInfluenceManaModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(25-30)% increased Explicit Mana Modifier magnitudes", statOrder = { 42 }, level = 65, group = "DestructionInfluenceManaModifierEffect", weightKey = { "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "crossbow", "warstaff", "talisman", "destruction", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3514984677] = { "(25-30)% increased Explicit Mana Modifier magnitudes" }, } }, + ["DestructionInfluenceSpeedModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(25-30)% increased Explicit Speed Modifier magnitudes", statOrder = { 45 }, level = 65, group = "DestructionInfluenceSpeedModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [363924732] = { "(25-30)% increased Explicit Speed Modifier magnitudes" }, } }, + ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 36 }, 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 = { 1076 }, 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 = { 1076 }, 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 = { 4797 }, 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 = { 4797 }, 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 = { 9457 }, 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 = { 9457 }, 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 = { 4249 }, 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 = { 4249 }, 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 = { 6054 }, 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 = { 6054 }, 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 = { 6051 }, 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 = { 6051 }, 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 = { 1037, 1894 }, 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 = { 1037, 1894 }, 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 = { 1893 }, 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 = { 10514 }, 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 = { 10514 }, 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 = { 2374 }, 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 = { 2374 }, 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 = { 6510 }, 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 = { 6510 }, 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 = { 1538 }, 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 = { 5910 }, 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 = { 1736 }, 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 = { 1736 }, 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 = { 1736 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, + ["MarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(15-24)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 45, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(15-24)% increased Effect of your Mark Skills" }, } }, + ["MarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(25-39)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 65, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(25-39)% increased Effect of your Mark Skills" }, } }, + ["MarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Speed", statOrder = { 896 }, level = 45, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-20)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Speed", statOrder = { 896 }, level = 65, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(21-30)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Speed", statOrder = { 896 }, level = 75, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(31-40)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "(16-21)% increased Critical Hit Chance", statOrder = { 975 }, level = 45, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-21)% increased Critical Hit Chance" }, } }, + ["MarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "(22-27)% increased Critical Hit Chance", statOrder = { 975 }, level = 65, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(22-27)% increased Critical Hit Chance" }, } }, + ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 975 }, 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 = { 1067 }, 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 = { 1067 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 5499 }, 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 = { 9502 }, 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 = { 9502 }, 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 = { 5502 }, 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 = { 5502 }, 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 = { 8787 }, 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 = { 8787 }, 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 = { 1944 }, 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 = { 1944 }, 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 = { 8788 }, 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 = { 8788 }, 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 = { 967 }, 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 = { 967 }, 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/ModJewel.lua b/src/Data/ModJewel.lua index 518a6d0d9e..be0a9674ab 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,365 +2,381 @@ -- Item data (c) Grinding Gear Games return { - ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, - ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, - ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, - ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, - ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, - ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, - ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, 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 = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, 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 = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, 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 = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, 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 = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, 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 = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, - ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, 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 = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, 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 = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, 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 = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, - ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(6-12)% increased Chaos Damage" }, } }, - ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, 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 = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, 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 = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, 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 = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, 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 = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, 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 = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, 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 = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, 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 = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, 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 = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, 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 = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, 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 = { 5530 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, - ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, - ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, 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 = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, 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 = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, 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 = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, 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 = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, 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 = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, 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 = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, 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 = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, 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 = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "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 = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, 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 = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, 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 = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, - ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, - ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, - ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, 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 = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, 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 = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, 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 = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, 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 = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, 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 = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, 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 = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, 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 = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, - ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, - ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, - ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, - ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, 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 = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, 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 = { 4605 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, 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 = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, 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 = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, - ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, - ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, 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 = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, - ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, 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 = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, 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 = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, 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 = { 7459 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, 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 = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, 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 = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, - ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, 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 = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, 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 = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, 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 = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, 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 = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, 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 = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, - ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+1 to Maximum Rage" }, } }, - ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, 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 = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, 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 = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, 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 = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, 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 = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, - ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, 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 = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, 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 = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, - ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, 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 = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, - ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, 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 = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, 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 = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, 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 = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, 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 = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, 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 = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, - ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, 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 = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, 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 = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, 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 = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [145497481] = { "(18-32)% increased Defences from Equipped Shield" }, } }, - ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, 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 = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, 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 = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, - ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, - ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, 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 = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, - ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, 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 = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, 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 = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, 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 = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, 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 = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "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 = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, 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 = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, 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 = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, - ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, - ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, 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 = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, - ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, 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 = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, 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 = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, 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 = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1870736574] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, 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 = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, 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 = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, 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 = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, 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 = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, 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 = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, 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 = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, 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 = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, 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 = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, 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 = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, 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 = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, 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 = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, 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 = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "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 = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (10-20)% increased Area of Effect" }, } }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, 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 = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, 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 = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, 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 = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, 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 = { 7304 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, 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 = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "(1-2)% increased Accuracy Rating" }, } }, - ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "(3-7)% increased chance to inflict Ailments" }, } }, - ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "(3-7)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [3409275777] = { "(2-3)% increased Elemental Ailment Threshold" }, } }, - ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "(2-3)% increased Area of Effect" }, } }, - ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, nodeType = 1, tradeHashes = { [3858398337] = { "(2-3)% increased Armour" }, } }, - ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Break (1-2)% increased Armour" }, } }, - ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "(5-10)% increased Armour Break Duration" }, } }, - ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "(3-7)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "(5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "(1-2)% increased Attack Damage" }, } }, - ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2822644689] = { "(1-2)% increased Attack Speed" }, } }, - ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Aura Skills have (1-3)% increased Magnitudes" }, } }, - ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "(2-3)% increased Damage with Axes" }, } }, - ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "(1-2)% increased Attack Speed with Axes" }, } }, - ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [944643028] = { "1% chance to inflict Bleeding on Hit" }, } }, - ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "(3-7)% increased Bleeding Duration" }, } }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "(3-5)% increased Blind Effect" }, } }, - ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "1% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "(1-3)% increased Block chance" }, } }, - ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "(2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "(1-2)% increased Accuracy Rating with Bows" }, } }, - ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "(2-3)% increased Damage with Bows" }, } }, - ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "(1-2)% increased Attack Speed with Bows" }, } }, - ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "(1-2)% increased Cast Speed" }, } }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "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 = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [3088348485] = { "(1-2)% increased Charm Effect Duration" }, } }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2320654813] = { "(3-7)% increased Charm Charges gained" }, } }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [3752589831] = { "(2-3)% increased Damage while you have an active Charm" }, } }, - ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "(1-2)% increased Chaos Damage" }, } }, - ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "(6-12)% increased Chill Duration on Enemies" }, } }, - ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "(1-2)% increased Cold Damage" }, } }, - ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Damage Penetrates (1-2)% Cold Resistance" }, } }, - ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "(1-3)% increased Cooldown Recovery Rate" }, } }, - ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "(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 = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "(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 = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "(3-7)% increased Critical Hit Chance" }, } }, - ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "(5-10)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "(5-10)% increased Critical Spell Damage Bonus" }, } }, - ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "(2-3)% increased Damage with Crossbows" }, } }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "(5-7)% increased Crossbow Reload Speed" }, } }, - ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "(1-2)% increased Attack Speed with Crossbows" }, } }, - ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "(3-6)% increased Area of Effect of Curses" }, } }, - ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "(2-4)% increased Curse Duration" }, } }, - ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [2770044702] = { "1% increased Curse Magnitudes" }, } }, - ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [4260437915] = { "(3-7)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "(2-3)% increased Damage with Daggers" }, } }, - ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "(1-2)% increased Attack Speed with Daggers" }, } }, - ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "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 = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "(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 = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "(3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "1% chance to Daze on Hit" }, } }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "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 = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, nodeType = 1, tradeHashes = { [3222402650] = { "(1-2)% increased Elemental Damage" }, } }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Empowered Attacks deal (2-3)% increased Damage" }, } }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Meta Skills gain (2-4)% increased Energy" }, } }, - ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHashes = { [3665922113] = { "(2-3)% increased maximum Energy Shield" }, } }, - ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHashes = { [3394832998] = { "(5-7)% faster start of Energy Shield Recharge" }, } }, - ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHashes = { [1552666713] = { "(2-3)% increased Energy Shield Recharge Rate" }, } }, - ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, nodeType = 1, tradeHashes = { [1994296038] = { "(2-3)% increased Evasion Rating" }, } }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Damaging Ailments deal damage (2-3)% faster" }, } }, - ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "(1-2)% increased Fire Damage" }, } }, - ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Damage Penetrates (1-2)% Fire Resistance" }, } }, - ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "(3-7)% increased Critical Hit Chance with Flails" }, } }, - ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "(1-2)% increased Damage with Flails" }, } }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "(3-5)% increased Flask Charges gained" }, } }, - ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "(1-2)% increased Flask Effect Duration" }, } }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHashes = { [3419203492] = { "(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 = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, - ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1087531620] = { "(5-10)% increased Freeze Buildup" }, } }, - ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [830345042] = { "(2-4)% increased Freeze Threshold" }, } }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [3065378291] = { "Herald Skills deal (2-4)% increased Damage" }, } }, - ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [394473632] = { "(2-3)% increased Flammability Magnitude" }, } }, - ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [253641217] = { "(3-7)% increased Ignite Magnitude" }, } }, - ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "(3-5)% increased Skill Effect Duration" }, } }, - ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "(3-7)% increased Knockback Distance" }, } }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "(2-3)% increased Life Recovery from Flasks" }, } }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [942519401] = { "(5-10)% increased Life Flask Charges gained" }, } }, - ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [3666476747] = { "(2-3)% increased amount of Life Leeched" }, } }, - ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Recover 1% of maximum Life on Kill" }, } }, - ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "1% of Damage taken Recouped as Life" }, } }, - ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [1185341308] = { "(3-5)% increased Life Regeneration rate" }, } }, - ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "(1-2)% increased Lightning Damage" }, } }, - ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Damage Penetrates (1-2)% Lightning Resistance" }, } }, - ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "(1-2)% increased Damage with Maces" }, } }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "(6-12)% increased Stun Buildup with Maces" }, } }, - ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "(1-2)% increased Mana Recovery from Flasks" }, } }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3171212276] = { "(5-10)% increased Mana Flask Charges gained" }, } }, - ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "(1-2)% increased amount of Mana Leeched" }, } }, - ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "(1-2)% increased Mana Regeneration Rate" }, } }, - ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, nodeType = 1, tradeHashes = { [2202308025] = { "Mark Skills have (2-3)% increased Use Speed" }, } }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, - ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [179541474] = { "(2-3)% increased Effect of your Mark Skills" }, } }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "+1 to Maximum Rage" }, } }, - ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "(1-2)% increased Melee Damage" }, } }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "(2-3)% increased Minion Accuracy Rating" }, } }, - ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Minions have (3-5)% increased Area of Effect" }, } }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Minions have (1-2)% increased Attack and Cast Speed" }, } }, - ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Minions have +(1-2)% to Chaos Resistance" }, } }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Minions have (5-10)% increased Critical Hit Chance" }, } }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Minions have (6-12)% increased Critical Damage Bonus" }, } }, - ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Minions deal (1-2)% increased Damage" }, } }, - ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Minions have (1-2)% increased maximum Life" }, } }, - ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Minions have (1-2)% additional Physical Damage Reduction" }, } }, - ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Minions have +(1-2)% to all Elemental Resistances" }, } }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Minions Revive (3-7)% faster" }, } }, - ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "1% increased Movement Speed" }, } }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2374711847] = { "Offering Skills have (6-12)% increased Duration" }, } }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2107703111] = { "Offerings have (2-3)% increased Maximum Life" }, } }, - ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "(1-2)% increased Global Physical Damage" }, } }, - ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "(5-10)% chance to Pierce an Enemy" }, } }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "(5-10)% increased Pin Buildup" }, } }, - ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2840989393] = { "1% chance to Poison on Hit" }, } }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "(3-7)% increased Magnitude of Poison you inflict" }, } }, - ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "(3-7)% increased Poison Duration" }, } }, - ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "(1-2)% increased Projectile Damage" }, } }, - ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "(2-3)% increased Projectile Speed" }, } }, - ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "(1-2)% increased Damage with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [127081978] = { "(5-10)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "(1-2)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "(2-3)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2969557004] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [713216632] = { "(8-15)% increased Defences from Equipped Shield" }, } }, - ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1039268420] = { "(2-3)% increased chance to Shock" }, } }, - ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "(2-3)% increased Shock Duration" }, } }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "(5-7)% increased Magnitude of Shock you inflict" }, } }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "(2-5)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "(1-2)% increased Attack Speed with Spears" }, } }, - ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "(5-10)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "(1-2)% increased Damage with Spears" }, } }, - ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, nodeType = 2, tradeHashes = { [2704905000] = { "(3-7)% increased Critical Hit Chance for Spells" }, } }, - ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "(1-2)% increased Spell Damage" }, } }, - ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "(5-10)% increased Stun Buildup" }, } }, - ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "(1-2)% increased Stun Threshold" }, } }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "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 = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "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 = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "(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 = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "(3-7)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "(1-2)% increased Damage with Swords" }, } }, - ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "(1-2)% increased Attack Speed with Swords" }, } }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "(2-3)% increased Thorns damage" }, } }, - ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "(2-3)% increased Totem Damage" }, } }, - ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "(2-3)% increased Totem Life" }, } }, - ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "(2-3)% increased Totem Placement speed" }, } }, - ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "(1-2)% increased Trap Damage" }, } }, - ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "(2-4)% increased Trap Throwing Speed" }, } }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Triggered Spells deal (2-3)% increased Spell Damage" }, } }, - ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1970067060] = { "(1-2)% increased Damage with Unarmed Attacks" }, } }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "(3-7)% increased Warcry Buff Effect" }, } }, - ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "(3-7)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "(2-3)% increased Damage with Warcries" }, } }, - ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "(2-3)% increased Warcry Speed" }, } }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "(2-4)% increased Weapon Swap Speed" }, } }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "(3-5)% increased Withered Magnitude" }, } }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "(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 = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "(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 = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "(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 = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1007380041] = { "(2-3)% increased Parry Damage" }, } }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "(5-10)% increased Parried Debuff Duration" }, } }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1495814176] = { "(8-12)% increased Stun Threshold while Parrying" }, } }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "1% chance to gain Volatility on Kill" }, } }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Companions deal (2-3)% increased Damage" }, } }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Companions have (2-3)% increased maximum Life" }, } }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "(2-3)% increased Hazard Damage" }, } }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "(3-5)% chance for Attack Hits to apply Incision" }, } }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "(8-12)% increased Glory generation for Banner Skills" }, } }, - ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Banner Skills have (2-3)% increased Area of Effect" }, } }, - ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Banner Skills have (3-4)% increased Duration" }, } }, - ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4032352472] = { "(8-12)% increased Presence Area of Effect" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "(1-2)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "(1-2)% increased Damage while Shapeshifted" }, } }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "(1-2)% increased Damage with Plant Skills" }, } }, - ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, 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 = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, 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 = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, + ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, + ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, + ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, + ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, + ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, + ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, + ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, + ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, + ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, + ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, + ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, + ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, 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 = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, 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 = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, 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 = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, 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 = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, 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 = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, 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 = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, + ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, + ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, 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 = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, 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 = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, 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 = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, 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 = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, 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 = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, 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 = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, 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 = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, 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 = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, 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 = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, 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 = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, 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 = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, 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 = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, 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 = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, 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 = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, 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 = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, 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 = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, 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 = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, 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 = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, 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 = { 5910 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, 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 = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, + ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, 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 = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, 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 = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, 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 = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, 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 = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, 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 = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, 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 = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, 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 = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, 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 = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, 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 = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, 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 = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, 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 = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, 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 = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, 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 = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, 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 = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, 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 = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, 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 = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, 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 = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, 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 = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, 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 = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, 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 = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, 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 = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, 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 = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, 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 = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, 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 = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, + ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, 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 = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, 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 = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, + ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, 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 = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, 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 = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, 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 = { 4732 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, 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 = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, 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 = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, 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 = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, 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 = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, 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 = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, + ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, + ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, 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 = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, 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 = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, 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 = { 7918 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, 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 = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, 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 = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, 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 = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, 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 = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, 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 = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, 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 = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, 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 = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, 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 = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, 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 = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, 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 = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, 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 = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, 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 = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, + ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, 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 = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, 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 = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, 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 = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, 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 = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, 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 = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, 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 = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, 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 = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, 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 = { 1025 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, 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 = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, 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 = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, 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 = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, + ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, 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 = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, 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 = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, 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 = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, 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 = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, 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 = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, 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 = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, 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 = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, 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 = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, 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 = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, + ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, 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 = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, 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 = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, 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 = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, 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 = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, 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 = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, 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 = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, + ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, 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 = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, 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 = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, 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 = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, 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 = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, + ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, + ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, 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 = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, + ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, 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 = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, 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 = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, 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 = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, 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 = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, 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 = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, 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 = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, 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 = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, + ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, + ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, 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 = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, + ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, 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 = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, 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 = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, 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 = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, 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 = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, 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 = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, 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 = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, 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 = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, 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 = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, 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 = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, 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 = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, 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 = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, 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 = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, 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 = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, 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 = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, 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 = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, 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 = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, 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 = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, 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 = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, 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 = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, 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 = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, 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 = { 4619 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, 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 = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, 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 = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, 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 = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, 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 = { 7757 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, 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 = { 7757 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, 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 = { 7752 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, 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 = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "(1-2)% increased Accuracy Rating" }, } }, + ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "(3-7)% increased chance to inflict Ailments" }, } }, + ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "(3-7)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [3409275777] = { "(2-3)% increased Elemental Ailment Threshold" }, } }, + ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3391917254] = { "(2-3)% increased Area of Effect" }, } }, + ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, nodeType = 1, tradeHashes = { [3858398337] = { "(2-3)% increased Armour" }, } }, + ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4089835882] = { "Break (1-2)% increased Armour" }, } }, + ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [504915064] = { "(5-10)% increased Armour Break Duration" }, } }, + ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [3865605585] = { "(3-7)% increased Critical Hit Chance for Attacks" }, } }, + ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, nodeType = 2, tradeHashes = { [1352561456] = { "(5-10)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1426522529] = { "(1-2)% increased Attack Damage" }, } }, + ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2822644689] = { "(1-2)% increased Attack Speed" }, } }, + ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [3243034867] = { "Aura Skills have (1-3)% increased Magnitudes" }, } }, + ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2508922991] = { "(2-3)% increased Damage with Axes" }, } }, + ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "(1-2)% increased Attack Speed with Axes" }, } }, + ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "1% chance to inflict Bleeding on Hit" }, } }, + ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "(3-7)% increased Bleeding Duration" }, } }, + ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "(3-5)% increased Blind Effect" }, } }, + ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "1% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "(1-3)% increased Block chance" }, } }, + ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "(2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, + ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [1285594161] = { "(1-2)% increased Accuracy Rating with Bows" }, } }, + ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "(2-3)% increased Damage with Bows" }, } }, + ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "(1-2)% increased Attack Speed with Bows" }, } }, + ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "(1-2)% increased Cast Speed" }, } }, + ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "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 = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "(1-2)% increased Charm Effect Duration" }, } }, + ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "(3-7)% increased Charm Charges gained" }, } }, + ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "(2-3)% increased Damage while you have an active Charm" }, } }, + ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "(1-2)% increased Chaos Damage" }, } }, + ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "(6-12)% increased Chill Duration on Enemies" }, } }, + ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "(1-2)% increased Cold Damage" }, } }, + ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Damage Penetrates (1-2)% Cold Resistance" }, } }, + ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "(1-3)% increased Cooldown Recovery Rate" }, } }, + ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "(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 = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "(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 = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "(3-7)% increased Critical Hit Chance" }, } }, + ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "(5-10)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "(5-10)% increased Critical Spell Damage Bonus" }, } }, + ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "(2-3)% increased Damage with Crossbows" }, } }, + ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "(5-7)% increased Crossbow Reload Speed" }, } }, + ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "(1-2)% increased Attack Speed with Crossbows" }, } }, + ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "(3-6)% increased Area of Effect of Curses" }, } }, + ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "(2-4)% increased Curse Duration" }, } }, + ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [2770044702] = { "1% increased Curse Magnitudes" }, } }, + ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [4260437915] = { "(3-7)% increased Critical Hit Chance with Daggers" }, } }, + ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "(2-3)% increased Damage with Daggers" }, } }, + ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "(1-2)% increased Attack Speed with Daggers" }, } }, + ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "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 = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "(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 = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "(3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "1% chance to Daze on Hit" }, } }, + ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "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 = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "(1-2)% increased Elemental Damage" }, } }, + ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Empowered Attacks deal (2-3)% increased Damage" }, } }, + ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Meta Skills gain (2-4)% increased Energy" }, } }, + ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "(2-3)% increased maximum Energy Shield" }, } }, + ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "(5-7)% faster start of Energy Shield Recharge" }, } }, + ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "(2-3)% increased Energy Shield Recharge Rate" }, } }, + ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "(2-3)% increased Evasion Rating" }, } }, + ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Damaging Ailments deal damage (2-3)% faster" }, } }, + ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "(1-2)% increased Fire Damage" }, } }, + ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Damage Penetrates (1-2)% Fire Resistance" }, } }, + ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "(3-7)% increased Critical Hit Chance with Flails" }, } }, + ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "(1-2)% increased Damage with Flails" }, } }, + ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "(3-5)% increased Flask Charges gained" }, } }, + ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "(1-2)% increased Flask Effect Duration" }, } }, + ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "(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 = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, + ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "(5-10)% increased Freeze Buildup" }, } }, + ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "(2-4)% increased Freeze Threshold" }, } }, + ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Herald Skills deal (2-4)% increased Damage" }, } }, + ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "(2-3)% increased Flammability Magnitude" }, } }, + ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "(3-7)% increased Ignite Magnitude" }, } }, + ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "(3-5)% increased Skill Effect Duration" }, } }, + ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "(3-7)% increased Knockback Distance" }, } }, + ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "(2-3)% increased Life Recovery from Flasks" }, } }, + ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "(5-10)% increased Life Flask Charges gained" }, } }, + ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "(2-3)% increased amount of Life Leeched" }, } }, + ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Recover 1% of maximum Life on Kill" }, } }, + ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "1% of Damage taken Recouped as Life" }, } }, + ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [1185341308] = { "(3-5)% increased Life Regeneration rate" }, } }, + ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "(1-2)% increased Lightning Damage" }, } }, + ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Damage Penetrates (1-2)% Lightning Resistance" }, } }, + ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "(1-2)% increased Damage with Maces" }, } }, + ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7918 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "(6-12)% increased Stun Buildup with Maces" }, } }, + ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "(1-2)% increased Mana Recovery from Flasks" }, } }, + ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "(5-10)% increased Mana Flask Charges gained" }, } }, + ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "(1-2)% increased amount of Mana Leeched" }, } }, + ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "(1-2)% increased Mana Regeneration Rate" }, } }, + ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Mark Skills have (2-3)% increased Use Speed" }, } }, + ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, + ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "(2-3)% increased Effect of your Mark Skills" }, } }, + ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "+1 to Maximum Rage" }, } }, + ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "(1-2)% increased Melee Damage" }, } }, + ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "(2-3)% increased Minion Accuracy Rating" }, } }, + ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Minions have (3-5)% increased Area of Effect" }, } }, + ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Minions have (1-2)% increased Attack and Cast Speed" }, } }, + ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Minions have +(1-2)% to Chaos Resistance" }, } }, + ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Minions have (5-10)% increased Critical Hit Chance" }, } }, + ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Minions have (6-12)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Minions deal (1-2)% increased Damage" }, } }, + ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Minions have (1-2)% increased maximum Life" }, } }, + ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Minions have (1-2)% additional Physical Damage Reduction" }, } }, + ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Minions have +(1-2)% to all Elemental Resistances" }, } }, + ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Minions Revive (3-7)% faster" }, } }, + ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "1% increased Movement Speed" }, } }, + ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Offering Skills have (6-12)% increased Duration" }, } }, + ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Offerings have (2-3)% increased Maximum Life" }, } }, + ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "(1-2)% increased Global Physical Damage" }, } }, + ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "(5-10)% chance to Pierce an Enemy" }, } }, + ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "(5-10)% increased Pin Buildup" }, } }, + ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "1% chance to Poison on Hit" }, } }, + ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "(3-7)% increased Magnitude of Poison you inflict" }, } }, + ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "(3-7)% increased Poison Duration" }, } }, + ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "(1-2)% increased Projectile Damage" }, } }, + ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "(2-3)% increased Projectile Speed" }, } }, + ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "(1-2)% increased Damage with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "(5-10)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "(1-2)% increased Attack Speed with Quarterstaves" }, } }, + ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "(2-3)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Gain 1 Rage on Melee Hit" }, } }, + ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "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 = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "(2-3)% increased chance to Shock" }, } }, + ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "(2-3)% increased Shock Duration" }, } }, + ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "(5-7)% increased Magnitude of Shock you inflict" }, } }, + ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "(2-5)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "(1-2)% increased Attack Speed with Spears" }, } }, + ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "(5-10)% increased Critical Damage Bonus with Spears" }, } }, + ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "(1-2)% increased Damage with Spears" }, } }, + ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, nodeType = 2, tradeHashes = { [2704905000] = { "(3-7)% increased Critical Hit Chance for Spells" }, } }, + ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "(1-2)% increased Spell Damage" }, } }, + ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "(5-10)% increased Stun Buildup" }, } }, + ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "(1-2)% increased Stun Threshold" }, } }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "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 = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "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 = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "(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 = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "(3-7)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "(1-2)% increased Damage with Swords" }, } }, + ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "(1-2)% increased Attack Speed with Swords" }, } }, + ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "(2-3)% increased Thorns damage" }, } }, + ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "(2-3)% increased Totem Damage" }, } }, + ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "(2-3)% increased Totem Life" }, } }, + ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "(2-3)% increased Totem Placement speed" }, } }, + ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "(1-2)% increased Trap Damage" }, } }, + ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "(2-4)% increased Trap Throwing Speed" }, } }, + ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Triggered Spells deal (2-3)% increased Spell Damage" }, } }, + ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "(1-2)% increased Damage with Unarmed Attacks" }, } }, + ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "(3-7)% increased Warcry Buff Effect" }, } }, + ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "(3-7)% increased Warcry Cooldown Recovery Rate" }, } }, + ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "(2-3)% increased Damage with Warcries" }, } }, + ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "(2-3)% increased Warcry Speed" }, } }, + ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "(2-4)% increased Weapon Swap Speed" }, } }, + ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "(3-5)% increased Withered Magnitude" }, } }, + ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "(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 = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "(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 = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "(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 = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "(2-3)% increased Parry Damage" }, } }, + ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "(5-10)% increased Parried Debuff Duration" }, } }, + ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "(8-12)% increased Stun Threshold while Parrying" }, } }, + ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "1% chance to gain Volatility on Kill" }, } }, + ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Companions deal (2-3)% increased Damage" }, } }, + ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Companions have (2-3)% increased maximum Life" }, } }, + ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "(2-3)% increased Hazard Damage" }, } }, + ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "(3-5)% chance for Attack Hits to apply Incision" }, } }, + ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "(8-12)% increased Glory generation for Banner Skills" }, } }, + ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4619 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Banner Skills have (2-3)% increased Area of Effect" }, } }, + ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Banner Skills have (3-4)% increased Duration" }, } }, + ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "(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 = { 7762, 7762.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "default", }, 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 = { 7763, 7763.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "default", }, 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 = { 7761, 7761.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "default", }, 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 = { 7783 }, level = 1, group = "LocalPrefixEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, + ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7784 }, level = 1, group = "LocalSuffixEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, + ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, + ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "+(5-7)% to Fire Resistance" }, } }, + ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "+(5-7)% to Cold Resistance" }, } }, + ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "+(5-7)% to Lightning Resistance" }, } }, + ["CraftedJewelRadiusChaosResistance"] = { type = "Suffix", affix = "", "+(4-5)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, nodeType = 2, tradeHashes = { [248192092] = { "+(4-5)% to Chaos Resistance" }, } }, + ["CraftedJewelMaximumChaosResistance"] = { type = "Suffix", affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 1, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, + ["CraftedJewelAdditionalPrefixAllowed"] = { type = "Suffix", affix = "", "+1 Prefix Modifier allowed", statOrder = { 18 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, + ["CraftedJewelAdditionalSuffixAllowed"] = { type = "Prefix", affix = "", "+1 Suffix Modifier allowed", statOrder = { 19 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, + ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4318 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "default", }, 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 = { 4315 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "default", }, 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 = { 4319 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "default", }, 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 = { 9875 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "(1-2)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5948 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "(1-2)% increased Damage while Shapeshifted" }, } }, + ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9445 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "(1-2)% increased Damage with Plant Skills" }, } }, + ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9875 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, 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 = { 5948 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, 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 = { 9445 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, 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/ModScalability.lua b/src/Data/ModScalability.lua index d48808b180..dbbf89cbb6 100644 --- a/src/Data/ModScalability.lua +++ b/src/Data/ModScalability.lua @@ -12,6 +12,7 @@ return { ["# Armour while stationary"] = { { isScalable = true } }, ["# Armour while you do not have Avatar of Fire"] = { { isScalable = false } }, ["# Beyond Uniques drop when the first Unique Monster from Beyond is slain"] = { { isScalable = true } }, + ["# Broken Boss Faces"] = { { isScalable = true } }, ["# Chaos Damage taken"] = { { isScalable = true } }, ["# Chaos Damage taken per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["# Charm Slot"] = { { isScalable = true } }, @@ -75,11 +76,10 @@ return { ["# additional Maps drop on Completing Area"] = { { isScalable = true } }, ["# additional Rare Monsters are spawned from Abysses"] = { { isScalable = true } }, ["# additional maximum Blade Flurry stages"] = { { isScalable = true } }, - ["# additional target"] = { { isScalable = true } }, - ["# additional targets"] = { { isScalable = true } }, - ["# fewer Portals to Area"] = { { isScalable = false } }, ["# maximum Energy Shield per 5 Strength"] = { { isScalable = true } }, ["# maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times"] = { { isScalable = true } }, + ["# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds"] = { { isScalable = true } }, + ["# maximum stacks of Puppet Master"] = { { isScalable = true } }, ["# metre to Dodge Roll distance"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["# metre to Dodge Roll distance if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["# metre to Dodge Roll distance if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, @@ -88,9 +88,24 @@ return { ["# metres to Dodge Roll distance if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["# metres to Dodge Roll distance if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["# metres to Dodge Roll distance while Surrounded"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range if you have Killed Recently"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range while Dual Wielding"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range while Holding a Shield"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range while Unarmed"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range while at Maximum Frenzy Charges"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with Axes"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with Daggers"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with Flails"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with One Handed Weapons"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with Swords"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike Range with Two Handed Weapons"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["# metres to Melee Strike range with Spears"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["# reduced Level Requirement"] = { { isScalable = true } }, ["# second to Flameblast and Incinerate Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["# second to Summon Skeleton Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["# second to current Energy Shield Recharge delay per Combo expended when using Skills"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["# seconds additional Base Duration per 100 Intelligence"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp" } } }, ["# seconds of Recovery"] = { { isScalable = true, formats = { "deciseconds_to_seconds" } } }, ["# seconds to Avian's Flight Duration"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp" } } }, @@ -101,7 +116,10 @@ return { ["# seconds to Flameblast and Incinerate Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["# seconds to Mirage Archer Duration"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["# seconds to Summon Skeleton Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["# seconds to current Energy Shield Recharge delay per Combo expended when using Skills"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, + ["# to # Added Attack Fire Damage per 25 Strength"] = { { isScalable = true }, { isScalable = true } }, ["# to # Added Attack Lightning Damage per 200 Accuracy Rating"] = { { isScalable = true }, { isScalable = true } }, + ["# to # Added Attack Physical Damage per 25 Strength"] = { { isScalable = true }, { isScalable = true } }, ["# to # Added Chaos Damage with Bow Attacks"] = { { isScalable = true }, { isScalable = true } }, ["# to # Added Chaos Damage with Claw Attacks"] = { { isScalable = true }, { isScalable = true } }, ["# to # Added Chaos Damage with Dagger Attacks"] = { { isScalable = true }, { isScalable = true } }, @@ -173,6 +191,7 @@ return { ["# to # Physical Thorns damage"] = { { isScalable = true }, { isScalable = true } }, ["# to # added Fire Damage against Burning Enemies"] = { { isScalable = true }, { isScalable = true } }, ["# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower"] = { { isScalable = true }, { isScalable = true } }, + ["# to # added Physical Thorns damage per Runic Plate"] = { { isScalable = true }, { isScalable = true } }, ["# to Accuracy Rating"] = { { isScalable = true } }, ["# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet"] = { { isScalable = true } }, ["# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius"] = { { isScalable = true } }, @@ -217,12 +236,14 @@ return { ["# to Counter-Thaumaturgy Level for Heists"] = { { isScalable = true } }, ["# to Deception Level for Heists"] = { { isScalable = true } }, ["# to Deflection Rating"] = { { isScalable = true } }, + ["# to Deflection Rating per 10 maximum Runic Ward"] = { { isScalable = true } }, + ["# to Deflection Rating per 50 missing Energy Shield"] = { { isScalable = true } }, ["# to Demolition Level for Heists"] = { { isScalable = true } }, ["# to Dexterity"] = { { isScalable = true } }, ["# to Dexterity and Intelligence"] = { { isScalable = true } }, ["# to Dexterity per 25 Tribute"] = { { isScalable = true } }, ["# to Dexterity per Allocated Mastery Passive Skill"] = { { isScalable = true } }, - ["# to Energy Shield per 8 Item Evasion Rating on Equipped Boots"] = { { isScalable = true } }, + ["# to Energy Shield per 8 Item Evasion on Equipped Boots"] = { { isScalable = true } }, ["# to Engineering Level for Heists"] = { { isScalable = true } }, ["# to Evasion Rating"] = { { isScalable = true } }, ["# to Evasion Rating and Energy Shield"] = { { isScalable = true } }, @@ -272,12 +293,6 @@ return { ["# to Level of Socketed Trap or Mine Gems"] = { { isScalable = true } }, ["# to Level of Socketed Vaal Gems"] = { { isScalable = true } }, ["# to Level of Socketed Warcry Gems"] = { { isScalable = true } }, - ["# to Level of Supported Aura Skill Gems"] = { { isScalable = true } }, - ["# to Level of Supported Cold Skills"] = { { isScalable = true } }, - ["# to Level of Supported Elemental Skill Gems"] = { { isScalable = true } }, - ["# to Level of Supported Fire Skills"] = { { isScalable = true } }, - ["# to Level of Supported Lightning Skills"] = { { isScalable = true } }, - ["# to Level of Supported Skill Gems"] = { { isScalable = true } }, ["# to Level of Temporal Chains Skills"] = { { isScalable = true } }, ["# to Level of Vulnerability Skills"] = { { isScalable = true } }, ["# to Level of all # Skills"] = { { isScalable = true }, { isScalable = true, formats = { "specific_skill" } } }, @@ -298,6 +313,7 @@ return { ["# 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 Physical Skills"] = { { isScalable = true } }, @@ -316,6 +332,7 @@ return { ["# to Level of all Vaal Skill Gems"] = { { isScalable = true } }, ["# to Level of dropped Reward Items"] = { { isScalable = true } }, ["# to Life Recovered"] = { { isScalable = true } }, + ["# to Limit for Elemental Skills"] = { { isScalable = true } }, ["# to Lockpicking Level for Heists"] = { { isScalable = true } }, ["# to Mana Recovered"] = { { isScalable = true } }, ["# to Maximum Blitz Charges"] = { { isScalable = true } }, @@ -354,25 +371,11 @@ return { ["# to Maximum Spirit Charges per Abyss Jewel affecting you"] = { { isScalable = true } }, ["# to Maximum Virulence"] = { { isScalable = true } }, ["# to Maximum number of Crab Barriers"] = { { isScalable = true } }, - ["# to Melee Strike Range"] = { { isScalable = true } }, - ["# to Melee Strike Range if you have Killed Recently"] = { { isScalable = true } }, - ["# to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds"] = { { isScalable = true } }, - ["# to Melee Strike Range per White Socket"] = { { isScalable = true } }, - ["# to Melee Strike Range while Dual Wielding"] = { { isScalable = true } }, ["# to Melee Strike Range while Fortified"] = { { isScalable = true } }, - ["# to Melee Strike Range while Holding a Shield"] = { { isScalable = true } }, - ["# to Melee Strike Range while Unarmed"] = { { isScalable = true } }, - ["# to Melee Strike Range while at Maximum Frenzy Charges"] = { { isScalable = true } }, ["# to Melee Strike Range while at least 5 Enemies are Nearby"] = { { isScalable = true } }, - ["# to Melee Strike Range with Axes"] = { { isScalable = true } }, ["# to Melee Strike Range with Claws"] = { { isScalable = true } }, - ["# to Melee Strike Range with Daggers"] = { { isScalable = true } }, - ["# to Melee Strike Range with Flails"] = { { isScalable = true } }, ["# to Melee Strike Range with Maces and Sceptres"] = { { isScalable = true } }, - ["# to Melee Strike Range with One Handed Weapons"] = { { isScalable = true } }, ["# to Melee Strike Range with Staves"] = { { isScalable = true } }, - ["# to Melee Strike Range with Swords"] = { { isScalable = true } }, - ["# to Melee Strike Range with Two Handed Weapons"] = { { isScalable = true } }, ["# to Minimum Endurance Charges"] = { { isScalable = true } }, ["# to Minimum Endurance Charges per Grand Spectrum"] = { { isScalable = true } }, ["# to Minimum Endurance Charges while on Low Life"] = { { isScalable = true } }, @@ -390,6 +393,8 @@ return { ["# to Spectre maximum Life"] = { { isScalable = true } }, ["# to Spirit"] = { { isScalable = true } }, ["# to Spirit for each of your empty Charm slots"] = { { isScalable = true } }, + ["# to Spirit per 2 Levels"] = { { isScalable = true } }, + ["# to Spirit per Idol socketed in your Equipment"] = { { isScalable = true } }, ["# to Spirit per Socket filled"] = { { isScalable = true } }, ["# to Spirit while you have at least 200 Dexterity"] = { { isScalable = true } }, ["# to Spirit while you have at least 200 Intelligence"] = { { isScalable = true } }, @@ -401,6 +406,7 @@ return { ["# to Strength per Allocated Mastery Passive Skill"] = { { isScalable = true } }, ["# to Strength, Dexterity or Intelligence"] = { { isScalable = true } }, ["# to Stun Threshold"] = { { isScalable = true } }, + ["# to Stun Threshold per 10 maximum Runic Ward"] = { { isScalable = true } }, ["# to Stun Threshold per Dexterity"] = { { isScalable = true } }, ["# to Stun Threshold per Socket filled"] = { { isScalable = true } }, ["# to Stun Threshold per Strength"] = { { isScalable = true } }, @@ -410,7 +416,6 @@ return { ["# to Total Mana Cost of Skills while affected by Clarity"] = { { isScalable = true } }, ["# to Totem Limit"] = { { isScalable = true } }, ["# to Trap Disarmament Level for Heists"] = { { isScalable = true } }, - ["# to Ward"] = { { isScalable = true } }, ["# to Weapon Range"] = { { isScalable = true } }, ["# to all Attributes"] = { { isScalable = true } }, ["# to all Attributes per Level"] = { { isScalable = true, formats = { "negate" } } }, @@ -420,7 +425,7 @@ return { ["# to maximum Divine Charges"] = { { isScalable = true } }, ["# to maximum Energy Shield"] = { { isScalable = true } }, ["# to maximum Energy Shield per 100 Reserved Life"] = { { isScalable = true } }, - ["# to maximum Energy Shield per 6 Item Evasion Rating on Equipped Body Armour"] = { { isScalable = true } }, + ["# to maximum Energy Shield per 6 Item Evasion on Equipped Body Armour"] = { { isScalable = true } }, ["# to maximum Fire Infusions"] = { { isScalable = true } }, ["# to maximum Fortification"] = { { isScalable = true } }, ["# to maximum Fortification while Focused"] = { { isScalable = true, formats = { "divide_by_five" } } }, @@ -428,12 +433,14 @@ return { ["# to maximum Fortification while stationary"] = { { isScalable = true, formats = { "divide_by_five" } } }, ["# to maximum Life"] = { { isScalable = true } }, ["# to maximum Life per 10 Levels"] = { { isScalable = true } }, + ["# to maximum Life per 8 Armour on Equipped Helmet"] = { { isScalable = true } }, ["# to maximum Life per Socket filled"] = { { isScalable = true } }, ["# 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 Socket filled"] = { { isScalable = true } }, ["# to maximum Rage while Shapeshifted"] = { { isScalable = true } }, + ["# to maximum Runic Ward"] = { { isScalable = true } }, ["# to maximum Sockets"] = { { isScalable = true } }, ["# to maximum Valour"] = { { isScalable = true } }, ["# to maximum number of Animated Weapons"] = { { isScalable = true } }, @@ -503,6 +510,7 @@ return { ["#% Chance to gain an additional Power Charge on Kill with Power Siphon"] = { { isScalable = true } }, ["#% Chance to gain up to maximum Endurance Charges when you take a Critical Hit"] = { { isScalable = true } }, ["#% Chance to inflict Cold Exposure on Hit with Cold Damage"] = { { isScalable = true } }, + ["#% Chance to revive a random Permanent Minion whenever you use a Command Skill"] = { { isScalable = true } }, ["#% Chaos Resistance against Damage Over Time"] = { { isScalable = true } }, ["#% Critical Damage Bonus while a Rare or Unique Enemy is Nearby"] = { { isScalable = true } }, ["#% Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -513,6 +521,7 @@ return { ["#% Global Critical Damage Bonus while you have no Frenzy Charges"] = { { isScalable = true } }, ["#% Global chance to Blind Enemies on Hit"] = { { isScalable = true } }, ["#% Less Critical Hit Chance"] = { { isScalable = true } }, + ["#% Life Recovery from Flasks also applies to Runic Ward"] = { { isScalable = true } }, ["#% Monster Chaos Resistance"] = { { isScalable = true } }, ["#% Monster Cold Resistance"] = { { isScalable = true } }, ["#% Monster Elemental Resistances"] = { { isScalable = true } }, @@ -527,6 +536,13 @@ return { ["#% Player Cold Resistance per 25% Alert Level"] = { { isScalable = true } }, ["#% Player Fire Resistance per 25% Alert Level"] = { { isScalable = true } }, ["#% Player Lightning Resistance per 25% Alert Level"] = { { isScalable = true } }, + ["#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"] = { { isScalable = true } }, + ["#% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of #\nLose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"] = { { isScalable = true }, { isScalable = true } }, + ["#% Surpassing chance per enemy Power to gain\nMountain's Teachings on Immobilising an enemy if\nyou have the Way of the Mountain Ascendancy Passive Skill"] = { { isScalable = true } }, + ["#% Surpassing chance to Birth an additional Catalyst of a different type when Birthing Catalysts"] = { { isScalable = true } }, + ["#% Surpassing chance to Birth an additional Catalyst of the same type\nwhen Birthing Catalysts"] = { { isScalable = true } }, + ["#% Surpassing chance to Birth an additional Item"] = { { isScalable = true } }, + ["#% Surpassing chance to Birth an additional Item of the same type"] = { { isScalable = true } }, ["#% Surpassing chance to fire an additional Arrow"] = { { isScalable = true } }, ["#% Surpassing chance to fire an additional Projectile"] = { { isScalable = true } }, ["#% Sweep Knockback Chance"] = { { isScalable = true } }, @@ -566,6 +582,15 @@ return { ["#% chance for Attack Hits to apply ten Incision"] = { { isScalable = true } }, ["#% chance for Attacks to Maim on Hit against Bleeding Enemies"] = { { isScalable = true } }, ["#% chance for Attacks to Maim on Hit against Poisoned Enemies"] = { { isScalable = true } }, + ["#% chance for Birthed Catalysts to be Jewel Catalysts"] = { { isScalable = true } }, + ["#% chance for Birthed Currency to be a Breachlord Sac"] = { { isScalable = true, formats = { "divide_by_one_hundred_1dp" } } }, + ["#% chance for Birthed Currency to be a Catalyst"] = { { isScalable = true } }, + ["#% chance for Birthed Currency to be a stack of Breach Splinters"] = { { isScalable = true } }, + ["#% chance for Birthed Currency to be an Altered Collarbone"] = { { isScalable = true } }, + ["#% chance for Birthed Currency to be an Essence of the Breach"] = { { isScalable = true } }, + ["#% chance for Birthed Items to be"] = { { isScalable = true } }, + ["#% chance for Birthed Items to have a Crafted Modifier"] = { { isScalable = true } }, + ["#% chance for Birthing to not consume Hiveblood"] = { { isScalable = true } }, ["#% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit"] = { { isScalable = true } }, ["#% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground"] = { { isScalable = true } }, ["#% chance for Blight Chests to contain an additional Reward"] = { { isScalable = true } }, @@ -598,12 +623,11 @@ return { ["#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock"] = { { isScalable = true } }, ["#% chance for Map Drops to be Duplicated"] = { { isScalable = true, formats = { "divide_by_ten_1dp" } } }, ["#% chance for Minions to be Created with maximum Frenzy Charges"] = { { isScalable = true } }, - ["#% chance for Packs to be upgraded to Magic"] = { { isScalable = true } }, + ["#% chance for Normal Packs to be upgraded to Magic"] = { { isScalable = true } }, ["#% chance for Packs to be upgraded to Rare"] = { { isScalable = true } }, - ["#% chance for Parry to also deal your Thorns Damage to Enemies it Hits"] = { { isScalable = true } }, ["#% chance for Phase Run to increase Duration without removing Frenzy Charges"] = { { isScalable = true } }, ["#% chance for Projectiles to Pierce Enemies within 3m distance of you"] = { { isScalable = true } }, - ["#% chance for Rare Packs to have an additional Rare Monster"] = { { isScalable = true } }, + ["#% chance for Rare Packs to be downgraded to Magic"] = { { isScalable = true } }, ["#% chance for Remnants you pick up to count as picking up an additional Remnant"] = { { isScalable = true } }, ["#% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"] = { { isScalable = true } }, ["#% chance for Skills to retain 40% of Glory on use"] = { { isScalable = true } }, @@ -611,13 +635,13 @@ return { ["#% chance for Slam Skills to cause an additional Aftershock"] = { { isScalable = true } }, ["#% chance for Slam Skills you use yourself to cause an additional Aftershock"] = { { isScalable = true } }, ["#% chance for Spectres to gain Soul Eater on Kill for 20 seconds"] = { { isScalable = true } }, + ["#% chance for Spell Damage with Critical Hits to be Lucky"] = { { isScalable = true } }, ["#% chance for Spell Hits against you to inflict Poison"] = { { isScalable = true } }, ["#% chance for Spell Skills to fire 2 additional Projectiles"] = { { isScalable = true } }, ["#% chance for Spell Skills to fire 8 additional Projectiles in a circle"] = { { isScalable = true } }, ["#% chance for Surges to suffuse your Projectiles without being Consumed"] = { { isScalable = true } }, ["#% chance for Synthesised Packs to be upgraded to Magic"] = { { isScalable = true } }, ["#% chance for Synthesised Packs to be upgraded to Rare"] = { { isScalable = true } }, - ["#% chance for Synthesised Rare Packs to have an additional Rare Monster"] = { { isScalable = true } }, ["#% chance for Thorns to Retaliate against Non-Melee Hits if you have at least 200 Tribute"] = { { isScalable = true } }, ["#% chance for Trigger skills to refund half of Energy Spent"] = { { isScalable = true } }, ["#% chance for transforming to add a Link to the largest group of Linked Sockets"] = { { isScalable = true } }, @@ -721,6 +745,14 @@ return { ["#% chance to Avoid being Stunned while Channelling"] = { { isScalable = true } }, ["#% chance to Avoid being Stunned while Channelling Snipe"] = { { isScalable = true } }, ["#% chance to Avoid being Stunned while holding a Shield"] = { { isScalable = true } }, + ["#% chance to Birth 10 additional items of the same type when Birthing Exalted Orbs"] = { { isScalable = true } }, + ["#% chance to Birth 5 additional Items of the same type"] = { { isScalable = true } }, + ["#% chance to Birth an 16 to 24 additional Breach Splinters when Birthing Breach Splinters"] = { { isScalable = true } }, + ["#% chance to Birth an additional 3 to 7 items of the same type when\nBirthing Vaal Orbs or Chaos Orbs"] = { { isScalable = true } }, + ["#% chance to Birth an additional item of the same type when Birthing Exalted Orbs"] = { { isScalable = true } }, + ["#% chance to Birth an additional item of the same type when Birthing Orbs of Alchemy"] = { { isScalable = true } }, + ["#% chance to Birth an additional item of the same type when Birthing Regal Orbs"] = { { isScalable = true } }, + ["#% chance to Birth an item of the same type when Birthing Quality Currency"] = { { isScalable = true } }, ["#% chance to Blind Chilled enemies on Hit"] = { { isScalable = true } }, ["#% chance to Blind Enemies on Critical Hit"] = { { isScalable = true } }, ["#% chance to Blind Enemies on Hit with Attacks"] = { { isScalable = true } }, @@ -991,7 +1023,9 @@ return { ["#% chance to deal Triple Damage"] = { { isScalable = true } }, ["#% chance to deal Triple Damage while you have at least 400 Strength"] = { { isScalable = true } }, ["#% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned"] = { { isScalable = true } }, - ["#% chance to deal your Thorns Damage to Enemies Hit"] = { { isScalable = true } }, + ["#% chance to deal your Thorns Damage to Enemies you Hit"] = { { isScalable = true } }, + ["#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks"] = { { isScalable = true } }, + ["#% chance to deal your Thorns Damage to Enemies you Hit with Parry"] = { { isScalable = true } }, ["#% chance to double Stun Duration"] = { { isScalable = true } }, ["#% chance to drop Burning Ground on Death, lasting 3 seconds"] = { { isScalable = true } }, ["#% chance to drop Chilled Ground on Death, lasting 3 seconds"] = { { isScalable = true } }, @@ -1108,11 +1142,13 @@ return { ["#% chance to gain Alchemist's Genius when you use a Flask"] = { { isScalable = false } }, ["#% chance to gain Arcane Surge when you Hit a Unique enemy"] = { { isScalable = true } }, ["#% chance to gain Arcane Surge when you Kill an Enemy"] = { { isScalable = true } }, + ["#% chance to gain Archon of Undeath when you use a Command skill"] = { { isScalable = true } }, ["#% chance to gain Elemental Archon when you Ignite an Enemy"] = { { isScalable = true } }, ["#% chance to gain Elusive on Critical Hit"] = { { isScalable = true } }, ["#% chance to gain Elusive on Kill"] = { { isScalable = true } }, ["#% chance to gain Elusive when you Block while Dual Wielding"] = { { isScalable = true } }, ["#% chance to gain Flame Archon when you Ignite an Enemy"] = { { isScalable = true } }, + ["#% chance to gain Nature's Archon when your Plants Overgrow"] = { { isScalable = true } }, ["#% chance to gain Onslaught for # seconds on Kill"] = { { isScalable = true }, { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["#% chance to gain Onslaught for 10 Seconds when you Hit a Rare\nor Unique Enemy"] = { { isScalable = true } }, ["#% chance to gain Onslaught for 10 seconds on kill"] = { { isScalable = true } }, @@ -1214,10 +1250,12 @@ return { ["#% chance to gain an additional random Charge when you gain a Charge"] = { { isScalable = true } }, ["#% chance to grant Onslaught to nearby Enemies on Kill"] = { { isScalable = true } }, ["#% chance to grant Volatility on Critical Hit"] = { { isScalable = true } }, - ["#% chance to grant a Frenzy Charge to nearby Allies on Hit"] = { { isScalable = true } }, + ["#% chance to grant a Endurance Charge to Allies in your Presence on Hit"] = { { isScalable = true } }, + ["#% chance to grant a Frenzy Charge to Allies in your Presence on Hit"] = { { isScalable = true } }, ["#% chance to grant a Frenzy Charge to nearby Allies on Kill"] = { { isScalable = true } }, + ["#% chance to grant a Power Charge to Allies in your Presence on Hit"] = { { isScalable = true } }, ["#% chance to grant a Power Charge to nearby Allies on Kill"] = { { isScalable = true } }, - ["#% chance to grant an Endurance Charge to nearby Allies on Hit"] = { { isScalable = true } }, + ["#% chance to inflict 1 Faerie Fire on Hit"] = { { isScalable = true } }, ["#% chance to inflict Bleeding on Critical Hit"] = { { isScalable = true } }, ["#% chance to inflict Bleeding on Critical Hit with Attacks"] = { { isScalable = true } }, ["#% chance to inflict Bleeding on Hit"] = { { isScalable = true } }, @@ -1291,7 +1329,7 @@ return { ["#% decreased Attack Speed per Enemy in Close Range"] = { { isScalable = true, formats = { "negate" } } }, ["#% faster Curse Activation"] = { { isScalable = true, formats = { "negate" } } }, ["#% faster Curse Activation per 20 Tribute"] = { { isScalable = true, formats = { "negate" } } }, - ["#% faster Restoration of Ward"] = { { isScalable = true } }, + ["#% faster Dodge Roll"] = { { isScalable = true } }, ["#% faster start of Energy Shield Recharge"] = { { isScalable = true } }, ["#% faster start of Energy Shield Recharge during any Flask Effect"] = { { isScalable = true } }, ["#% faster start of Energy Shield Recharge if you've been Stunned Recently"] = { { isScalable = true } }, @@ -1339,7 +1377,6 @@ return { ["#% increased Adaptation Duration"] = { { isScalable = true } }, ["#% increased Aftershock Area of Effect"] = { { isScalable = true } }, ["#% increased Ailment and Stun Threshold while Surrounded"] = { { isScalable = true } }, - ["#% increased Alchemist's Mark Curse Effect"] = { { isScalable = true } }, ["#% increased Ambush Cooldown Recovery Rate"] = { { isScalable = true } }, ["#% increased Amount Recovered"] = { { isScalable = true } }, ["#% increased Ancestral Blademaster Totem Area of Effect"] = { { isScalable = true } }, @@ -1382,7 +1419,7 @@ return { ["#% increased Area of Effect per 50 Strength"] = { { isScalable = true } }, ["#% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%"] = { { isScalable = true } }, ["#% increased Area of Effect per Endurance Charge"] = { { isScalable = true } }, - ["#% increased Area of Effect per Enemy killed recently, up to 50%"] = { { isScalable = true } }, + ["#% increased Area of Effect per Enemy killed Recently, up to 50%"] = { { isScalable = true } }, ["#% increased Area of Effect per Power Charge"] = { { isScalable = true } }, ["#% increased Area of Effect per Power Charge, up to a maximum of 50%"] = { { isScalable = true } }, ["#% increased Area of Effect per second you've been stationary, up to a maximum of 50%"] = { { isScalable = true } }, @@ -1398,6 +1435,7 @@ return { ["#% increased Area of Effect while you have no Frenzy Charges"] = { { isScalable = true } }, ["#% increased Armour"] = { { isScalable = true } }, ["#% increased Armour Break Duration"] = { { isScalable = true } }, + ["#% increased Armour Break taken"] = { { isScalable = true } }, ["#% increased Armour and Energy Shield"] = { { isScalable = true } }, ["#% increased Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield"] = { { isScalable = true } }, ["#% increased Armour and Evasion"] = { { isScalable = true } }, @@ -1408,6 +1446,7 @@ return { ["#% increased Armour and Evasion Rating when on Low Life"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating while Fortified"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating while Leeching"] = { { isScalable = true } }, + ["#% increased Armour and Evasion Rating while on Low Runic Ward"] = { { isScalable = true } }, ["#% increased Armour during Effect"] = { { isScalable = true } }, ["#% increased Armour from Equipped Body Armour"] = { { isScalable = true } }, ["#% increased Armour from Equipped Boots and Gloves"] = { { isScalable = true } }, @@ -1434,13 +1473,19 @@ return { ["#% increased Armour while not Ignited, Frozen or Shocked"] = { { isScalable = true } }, ["#% increased Armour while stationary"] = { { isScalable = true } }, ["#% increased Armour, Evasion and Energy Shield"] = { { isScalable = true } }, - ["#% increased Armour, Evasion or Energy Shield"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield from Equipped Shield"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield per Frenzy Charge"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield while Channelling"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield while on Low Life"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield while you have at least four Linked targets"] = { { isScalable = true } }, + ["#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"] = { { isScalable = true } }, ["#% increased Arrow Speed"] = { { isScalable = true } }, ["#% increased Aspect of the Avian Buff Effect"] = { { isScalable = true } }, ["#% increased Aspect of the Spider Area of Effect"] = { { isScalable = true } }, ["#% increased Aspect of the Spider Debuff Duration"] = { { isScalable = true } }, - ["#% increased Assassin's Mark Curse Effect"] = { { isScalable = true } }, - ["#% increased Assassin's Mark Duration"] = { { isScalable = true } }, ["#% increased Attack Area Damage"] = { { isScalable = true } }, ["#% increased Attack Area of Effect while wielding a Quarterstaff"] = { { isScalable = true } }, ["#% increased Attack Cold Damage"] = { { isScalable = true } }, @@ -1466,7 +1511,7 @@ return { ["#% increased Attack Damage per 450 Evasion Rating"] = { { isScalable = true } }, ["#% increased Attack Damage per 5% Chance to Block Attack Damage"] = { { isScalable = true } }, ["#% increased Attack Damage per 500 Maximum Mana"] = { { isScalable = true } }, - ["#% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"] = { { isScalable = true } }, + ["#% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield"] = { { isScalable = true } }, ["#% increased Attack Damage per Frenzy Charge"] = { { isScalable = true } }, ["#% increased Attack Damage per Level"] = { { isScalable = true } }, ["#% increased Attack Damage per Summoned Totem in your Presence"] = { { isScalable = true } }, @@ -1496,8 +1541,8 @@ return { ["#% increased Attack Speed if you have Blocked Recently"] = { { isScalable = true } }, ["#% increased Attack Speed if you have at least 600 Strength"] = { { isScalable = true } }, ["#% increased Attack Speed if you haven't Attacked Recently"] = { { isScalable = true } }, - ["#% increased Attack Speed if you haven't Cast Dash recently"] = { { isScalable = true } }, ["#% increased Attack Speed if you haven't Killed Recently"] = { { isScalable = true } }, + ["#% increased Attack Speed if you haven't been Hit Recently"] = { { isScalable = true } }, ["#% increased Attack Speed if you haven't gained a Frenzy Charge Recently"] = { { isScalable = true } }, ["#% increased Attack Speed if you've Attacked Recently"] = { { isScalable = true } }, ["#% increased Attack Speed if you've Hit with your Main Hand Weapon Recently"] = { { isScalable = true } }, @@ -1532,6 +1577,7 @@ return { ["#% increased Attack Speed while affected by Precision"] = { { isScalable = true } }, ["#% increased Attack Speed while holding a Shield"] = { { isScalable = true } }, ["#% increased Attack Speed while in Sand Stance"] = { { isScalable = true } }, + ["#% increased Attack Speed while missing Runic Ward"] = { { isScalable = true } }, ["#% increased Attack Speed while not on Low Mana"] = { { isScalable = true } }, ["#% increased Attack Speed while on Full Mana"] = { { isScalable = true } }, ["#% increased Attack Speed while your Companion is in your Presence"] = { { isScalable = true } }, @@ -1591,6 +1637,7 @@ return { ["#% increased Attack and Cast Speed with Physical Skills"] = { { isScalable = true } }, ["#% increased Attack and Cast Speed with Shield Skills"] = { { isScalable = true } }, ["#% increased Attack and Movement Speed while you have a Bestial Minion"] = { { isScalable = true } }, + ["#% increased Attack damage per Power of target"] = { { isScalable = true } }, ["#% increased Attack, Cast and Movement Speed during Effect"] = { { isScalable = true } }, ["#% increased Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"] = { { isScalable = true } }, ["#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes"] = { { isScalable = true } }, @@ -1634,7 +1681,9 @@ return { ["#% increased Block chance"] = { { isScalable = true } }, ["#% increased Block chance against Projectiles"] = { { isScalable = true } }, ["#% increased Block chance if you have at least 100 Tribute"] = { { isScalable = true } }, + ["#% increased Block chance per 100 total Item Armour on Equipped Armour Items"] = { { isScalable = true } }, ["#% increased Block chance while Surrounded"] = { { isScalable = true } }, + ["#% increased Block chance while your Companion is in your Presence"] = { { isScalable = true } }, ["#% increased Blueprint Revealing Cost"] = { { isScalable = true } }, ["#% increased Bodyswap Cast Speed"] = { { isScalable = true } }, ["#% increased Bodyswap Damage"] = { { isScalable = true } }, @@ -1661,6 +1710,7 @@ return { ["#% increased Cast Speed during any Flask Effect"] = { { isScalable = true } }, ["#% increased Cast Speed for each corpse Consumed Recently"] = { { isScalable = true } }, ["#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"] = { { isScalable = true } }, + ["#% increased Cast Speed for each different Spell you've Cast in the last eight seconds"] = { { isScalable = true } }, ["#% increased Cast Speed if a Minion has been killed Recently"] = { { isScalable = true } }, ["#% increased Cast Speed if you've Attacked Recently"] = { { isScalable = true } }, ["#% increased Cast Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true } }, @@ -1694,6 +1744,7 @@ return { ["#% increased Chaos Damage"] = { { isScalable = true } }, ["#% increased Chaos Damage for each Corrupted Item Equipped"] = { { isScalable = true } }, ["#% increased Chaos Damage over Time"] = { { isScalable = true } }, + ["#% increased Chaos Damage over Time per Volatility"] = { { isScalable = true } }, ["#% increased Chaos Damage over Time taken while on Caustic Ground"] = { { isScalable = true } }, ["#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius"] = { { isScalable = true } }, ["#% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%"] = { { isScalable = true } }, @@ -1728,6 +1779,7 @@ return { ["#% increased Cold Attack Damage while holding a Shield"] = { { isScalable = true } }, ["#% increased Cold Damage"] = { { isScalable = true } }, ["#% increased Cold Damage if you have used a Fire Skill Recently"] = { { isScalable = true } }, + ["#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds"] = { { isScalable = true } }, ["#% increased Cold Damage over Time"] = { { isScalable = true } }, ["#% increased Cold Damage per 1% Chance to Block Attack Damage"] = { { isScalable = true } }, ["#% increased Cold Damage per 1% Cold Resistance above 75%"] = { { isScalable = true } }, @@ -1738,6 +1790,7 @@ return { ["#% increased Cold Damage per Frenzy Charge"] = { { isScalable = true } }, ["#% increased Cold Damage taken"] = { { isScalable = true } }, ["#% increased Cold Damage taken if you've\nbeen Hit Recently"] = { { isScalable = true } }, + ["#% increased Cold Damage while Ignited"] = { { isScalable = true } }, ["#% increased Cold Damage while affected by Hatred"] = { { isScalable = true } }, ["#% increased Cold Damage while affected by Herald of Ice"] = { { isScalable = true } }, ["#% increased Cold Damage while your Off Hand is empty"] = { { isScalable = true } }, @@ -1778,10 +1831,12 @@ return { ["#% increased Cooldown Recovery Rate per 10 Tribute"] = { { isScalable = true } }, ["#% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%"] = { { isScalable = true } }, ["#% increased Cooldown Recovery Rate per Power Charge"] = { { isScalable = true } }, + ["#% increased Corrupted Charms effect duration"] = { { isScalable = true } }, ["#% increased Corrupting Fever Duration"] = { { isScalable = true } }, ["#% increased Cost Efficiency"] = { { isScalable = true } }, ["#% increased Cost Efficiency of Attacks"] = { { isScalable = true } }, ["#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently"] = { { isScalable = true } }, + ["#% increased Cost Efficiency of Spells"] = { { isScalable = true } }, ["#% increased Cost of Arc and Crackling Lance"] = { { isScalable = true } }, ["#% increased Cost of Aura Skills that summon Totems"] = { { isScalable = true } }, ["#% increased Cost of Building and Upgrading Towers"] = { { isScalable = true } }, @@ -1807,7 +1862,9 @@ return { ["#% increased Critical Damage Bonus if you've consumed a Power Charge Recently"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus if you've gained a Power Charge Recently"] = { { isScalable = true } }, + ["#% increased Critical Damage Bonus per 50 current Life"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus per Power Charge"] = { { isScalable = true } }, + ["#% increased Critical Damage Bonus while Shocked"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus with Bows"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus with Crossbows"] = { { isScalable = true } }, ["#% increased Critical Damage Bonus with Daggers"] = { { isScalable = true } }, @@ -1899,10 +1956,12 @@ return { ["#% increased Critical Hit Chance with Wands"] = { { isScalable = true } }, ["#% increased Critical Hit Chance with arrows that Fork"] = { { isScalable = true } }, ["#% increased Critical Spell Damage Bonus"] = { { isScalable = true } }, + ["#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently"] = { { isScalable = true } }, ["#% increased Crossbow Reload Speed"] = { { isScalable = true } }, ["#% increased Culling Strike Threshold"] = { { isScalable = true } }, ["#% increased Culling Strike Threshold against Immobilised Enemies"] = { { isScalable = true } }, ["#% increased Culling Strike Threshold against Rare or Unique Enemies"] = { { isScalable = true } }, + ["#% increased Culling Strike Threshold if you've dealt a Culling Strike Recently"] = { { isScalable = true } }, ["#% increased Curse Duration"] = { { isScalable = true } }, ["#% increased Curse Duration if you have at least 100 Tribute"] = { { isScalable = true } }, ["#% increased Curse Duration per 10 Tribute"] = { { isScalable = true } }, @@ -1987,6 +2046,7 @@ return { ["#% increased Damage per Power Charge with Hits against Enemies that are on Full Life"] = { { isScalable = false } }, ["#% increased Damage per Raised Zombie"] = { { isScalable = true } }, ["#% increased Damage per Summoned Golem"] = { { isScalable = true } }, + ["#% increased Damage per each different Companion in your Presence"] = { { isScalable = true } }, ["#% increased Damage taken"] = { { isScalable = true } }, ["#% increased Damage taken from Bleeding Enemies"] = { { isScalable = true } }, ["#% increased Damage taken from Blinded Enemies"] = { { isScalable = true } }, @@ -2086,6 +2146,7 @@ return { ["#% increased Damage with Hits against Shocked Enemies"] = { { isScalable = true } }, ["#% increased Damage with Hits against Taunted Enemies"] = { { isScalable = true } }, ["#% increased Damage with Hits against Unique Enemies"] = { { isScalable = true } }, + ["#% increased Damage with Hits against targets in your Presence"] = { { isScalable = true } }, ["#% increased Damage with Hits per Curse on Enemy"] = { { isScalable = true } }, ["#% increased Damage with Hits per Freeze, Shock or Ignite on Enemy"] = { { isScalable = true } }, ["#% increased Damage with Lightning Skills"] = { { isScalable = true } }, @@ -2121,14 +2182,6 @@ return { ["#% increased Daze Duration"] = { { isScalable = true } }, ["#% increased Decoy Totem Area of Effect"] = { { isScalable = true } }, ["#% increased Decoy Totem Life"] = { { isScalable = true } }, - ["#% increased Defences from Equipped Shield"] = { { isScalable = true } }, - ["#% increased Defences from Equipped Shield per 10 Devotion"] = { { isScalable = true } }, - ["#% increased Defences from Equipped Shield per 25 Tribute"] = { { isScalable = true } }, - ["#% increased Defences per Frenzy Charge"] = { { isScalable = true } }, - ["#% increased Defences while on Low Life"] = { { isScalable = true } }, - ["#% increased Defences while wielding a Quarterstaff"] = { { isScalable = true } }, - ["#% increased Defences while you have at least four Linked targets"] = { { isScalable = true } }, - ["#% increased Defences while your Companion is in your Presence"] = { { isScalable = true } }, ["#% increased Deflection Rating"] = { { isScalable = true } }, ["#% increased Deflection Rating while Surrounded"] = { { isScalable = true } }, ["#% increased Deflection Rating while moving"] = { { isScalable = true } }, @@ -2144,6 +2197,7 @@ return { ["#% increased Detonation Time"] = { { isScalable = true } }, ["#% increased Dexterity"] = { { isScalable = true } }, ["#% increased Dexterity Requirement"] = { { isScalable = true } }, + ["#% increased Dexterity and Intelligence"] = { { isScalable = true } }, ["#% increased Dexterity if Strength is higher than Intelligence"] = { { isScalable = true } }, ["#% increased Discharge Damage"] = { { isScalable = true } }, ["#% increased Discharge Radius"] = { { isScalable = true } }, @@ -2164,7 +2218,6 @@ return { ["#% increased Duration of Ailments you inflict while Focused"] = { { isScalable = true } }, ["#% increased Duration of Bleeding on You"] = { { isScalable = true } }, ["#% increased Duration of Buffs and Debuffs you create from skills"] = { { isScalable = true } }, - ["#% increased Duration of Buffs granted by Shrines in your Maps"] = { { isScalable = true } }, ["#% increased Duration of Cold Ailments"] = { { isScalable = true } }, ["#% increased Duration of Curses on you"] = { { isScalable = true } }, ["#% increased Duration of Curses on you per 10 Devotion"] = { { isScalable = true } }, @@ -2181,6 +2234,7 @@ return { ["#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently"] = { { isScalable = true } }, ["#% increased Duration of Shrine Effects on Players"] = { { isScalable = true } }, ["#% increased Duration of Shrine Effects on you"] = { { isScalable = true } }, + ["#% increased Duration of each Puppet Master stack"] = { { isScalable = true } }, ["#% increased Duration per 10 Strength"] = { { isScalable = true } }, ["#% increased Duration that Monsters do not Heal"] = { { isScalable = true } }, ["#% increased Duration. -1% to this value when used"] = { { isScalable = true } }, @@ -2188,7 +2242,6 @@ return { ["#% increased Earthquake Damage"] = { { isScalable = true } }, ["#% increased Earthquake Duration"] = { { isScalable = true } }, ["#% increased Effect of Auras from Mines"] = { { isScalable = true } }, - ["#% increased Effect of Buffs granted by Shrines in your Maps"] = { { isScalable = true } }, ["#% increased Effect of Buffs granted by Socketed Golem Skills"] = { { isScalable = false } }, ["#% increased Effect of Buffs granted by your Elemental Golems"] = { { isScalable = true } }, ["#% increased Effect of Buffs granted by your Golems"] = { { isScalable = true } }, @@ -2221,15 +2274,19 @@ return { ["#% increased Effect of Notable Passive Skills in Radius"] = { { isScalable = false } }, ["#% increased Effect of Onslaught on you"] = { { isScalable = true } }, ["#% increased Effect of Poison from Critical Hits during Effect"] = { { isScalable = true } }, - ["#% increased Effect of Poison you inflict on targets that are not Poisoned"] = { { isScalable = true } }, + ["#% increased Effect of Prefixes"] = { { isScalable = false } }, + ["#% increased Effect of Puppet Master"] = { { isScalable = true } }, ["#% increased Effect of Remnants in Area"] = { { isScalable = true } }, ["#% increased Effect of Scorch"] = { { isScalable = true } }, ["#% increased Effect of Shock on you during Effect"] = { { isScalable = true } }, ["#% increased Effect of Shocks you inflict on Cursed Enemies"] = { { isScalable = true } }, ["#% increased Effect of Shrine Buffs on Players"] = { { isScalable = true } }, ["#% increased Effect of Small Passive Skills in Radius"] = { { isScalable = false } }, + ["#% increased Effect of Small and Notable Passive Skills in Radius"] = { { isScalable = false } }, ["#% increased Effect of Socketed Abyss Jewels"] = { { isScalable = true } }, + ["#% increased Effect of Suffixes"] = { { isScalable = false } }, ["#% increased Effect of Tailwind on you"] = { { isScalable = true } }, + ["#% increased Effect of bonuses gained from Socketed Jewel"] = { { isScalable = false } }, ["#% increased Effect of non-Keystone Passive Skills in Radius"] = { { isScalable = false } }, ["#% increased Effect of the Buff granted by your Carrion Golems"] = { { isScalable = true } }, ["#% increased Effect of the Buff granted by your Chaos Golems"] = { { isScalable = true } }, @@ -2237,10 +2294,11 @@ return { ["#% increased Effect of the Buff granted by your Ice Golems"] = { { isScalable = true } }, ["#% increased Effect of the Buff granted by your Lightning Golems"] = { { isScalable = true } }, ["#% increased Effect of the Buff granted by your Stone Golems"] = { { isScalable = true } }, - ["#% increased Effect of the Socketed Jewel"] = { { isScalable = false } }, ["#% increased Effect of your Mark Skills"] = { { isScalable = true } }, ["#% increased Electrocute Buildup"] = { { isScalable = true } }, ["#% increased Electrocute Buildup against Shocked Enemies"] = { { isScalable = true } }, + ["#% increased Elemental Ailment Application"] = { { isScalable = true } }, + ["#% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true } }, ["#% increased Elemental Ailment Duration on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% increased Elemental Ailment Duration on you per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, ["#% increased Elemental Ailment Duration on you while holding a Shield"] = { { isScalable = true } }, @@ -2294,7 +2352,6 @@ return { ["#% increased Elemental Weakness Curse Effect"] = { { isScalable = true } }, ["#% increased Elemental Weakness Duration"] = { { isScalable = true } }, ["#% increased Elusive Effect"] = { { isScalable = true } }, - ["#% increased Empowerment"] = { { isScalable = true } }, ["#% increased Endurance Charge Duration"] = { { isScalable = true } }, ["#% increased Endurance, Frenzy and Power Charge Duration"] = { { isScalable = true } }, ["#% increased Enduring Cry Buff Effect"] = { { isScalable = true } }, @@ -2340,7 +2397,6 @@ return { ["#% increased Evasion Rating if you have been Hit Recently"] = { { isScalable = true } }, ["#% increased Evasion Rating if you haven't Dodge Rolled Recently"] = { { isScalable = true } }, ["#% increased Evasion Rating if you haven't been Hit Recently"] = { { isScalable = true } }, - ["#% increased Evasion Rating if you've Cast Dash recently"] = { { isScalable = true } }, ["#% increased Evasion Rating if you've Dodge Rolled Recently"] = { { isScalable = true } }, ["#% increased Evasion Rating if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } }, ["#% increased Evasion Rating per 10 Intelligence"] = { { isScalable = true } }, @@ -2399,6 +2455,7 @@ return { ["#% increased Fire Damage"] = { { isScalable = true } }, ["#% increased Fire Damage if you have been Hit Recently"] = { { isScalable = true } }, ["#% increased Fire Damage if you have used a Cold Skill Recently"] = { { isScalable = true } }, + ["#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds"] = { { isScalable = true } }, ["#% increased Fire Damage over Time"] = { { isScalable = true } }, ["#% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%"] = { { isScalable = true } }, ["#% increased Fire Damage per 10% of target's Armour that is Broken"] = { { isScalable = true } }, @@ -2507,6 +2564,8 @@ return { ["#% increased Glacial Cascade Damage"] = { { isScalable = true } }, ["#% increased Glacial Hammer Damage"] = { { isScalable = true } }, ["#% increased Global Armour while you have no Energy Shield"] = { { isScalable = true } }, + ["#% increased Global Armour, Evasion and Energy Shield"] = { { isScalable = true } }, + ["#% increased Global Armour, Evasion and Energy Shield per Socket filled"] = { { isScalable = true } }, ["#% increased Global Attack Speed per Green Socket"] = { { isScalable = true } }, ["#% increased Global Attack Speed per Level"] = { { isScalable = true } }, ["#% increased Global Critical Hit Chance if Corrupted"] = { { isScalable = true } }, @@ -2515,10 +2574,6 @@ return { ["#% increased Global Critical Hit Chance while wielding a Bow"] = { { isScalable = true } }, ["#% increased Global Critical Hit Chance while wielding a Staff"] = { { isScalable = true } }, ["#% increased Global Damage"] = { { isScalable = true } }, - ["#% increased Global Defences"] = { { isScalable = true } }, - ["#% increased Global Defences per Socket filled"] = { { isScalable = true } }, - ["#% increased Global Defences per White Socket"] = { { isScalable = true } }, - ["#% increased Global Defences while Channelling"] = { { isScalable = true } }, ["#% increased Global Evasion Rating when on Low Life"] = { { isScalable = true } }, ["#% increased Global Physical Damage"] = { { isScalable = true } }, ["#% increased Global Physical Damage while Frozen"] = { { isScalable = true } }, @@ -2586,8 +2641,6 @@ return { ["#% increased Intelligence for each Unique Item Equipped"] = { { isScalable = true } }, ["#% increased Intelligence gained from Immortal Syndicate targets"] = { { isScalable = true } }, ["#% increased Intuitive Link Duration"] = { { isScalable = true } }, - ["#% increased Item Quantity per White Socket"] = { { isScalable = true } }, - ["#% increased Item Rarity per White Socket"] = { { isScalable = true } }, ["#% increased Jagged Ground Duration"] = { { isScalable = true } }, ["#% increased Job speed"] = { { isScalable = true } }, ["#% increased Kinetic Blast Area of Effect"] = { { isScalable = true } }, @@ -2640,10 +2693,12 @@ return { ["#% increased Lightning Arrow Area of Effect"] = { { isScalable = true } }, ["#% increased Lightning Arrow Damage"] = { { isScalable = true } }, ["#% increased Lightning Damage"] = { { isScalable = true } }, + ["#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds"] = { { isScalable = true } }, ["#% increased Lightning Damage per 1% Lightning Resistance above 75%"] = { { isScalable = true } }, ["#% increased Lightning Damage per 10 Intelligence"] = { { isScalable = true } }, ["#% increased Lightning Damage per Frenzy Charge"] = { { isScalable = true } }, ["#% increased Lightning Damage taken"] = { { isScalable = true } }, + ["#% increased Lightning Damage while Ignited"] = { { isScalable = true } }, ["#% increased Lightning Damage while affected by Herald of Thunder"] = { { isScalable = true } }, ["#% increased Lightning Damage while affected by Wrath"] = { { isScalable = true } }, ["#% increased Lightning Damage with Attack Skills"] = { { isScalable = true } }, @@ -2686,6 +2741,7 @@ return { ["#% increased Magnitude of Damaging Ailments you inflict per 10 Tribute"] = { { isScalable = true } }, ["#% increased Magnitude of Damaging Ailments you inflict with Critical Hits"] = { { isScalable = true } }, ["#% increased Magnitude of Daze"] = { { isScalable = true } }, + ["#% increased Magnitude of Elemental Ailments you inflict with Spells"] = { { isScalable = true } }, ["#% increased Magnitude of Ignite against Frozen enemies"] = { { isScalable = true } }, ["#% increased Magnitude of Ignite against Poisoned enemies"] = { { isScalable = true } }, ["#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently"] = { { isScalable = true } }, @@ -2702,6 +2758,7 @@ return { ["#% increased Magnitude of Poison inflicted with this Weapon"] = { { isScalable = true } }, ["#% increased Magnitude of Poison you inflict"] = { { isScalable = true } }, ["#% increased Magnitude of Poison you inflict on Bleeding Enemies"] = { { isScalable = true } }, + ["#% increased Magnitude of Poison you inflict on targets that are not Poisoned"] = { { isScalable = true } }, ["#% increased Magnitude of Poison you inflict per Frenzy Charge"] = { { isScalable = true } }, ["#% increased Magnitude of Poison you inflict while Poisoned"] = { { isScalable = true } }, ["#% increased Magnitude of Poison you inflict with Critical Hits"] = { { isScalable = true } }, @@ -2720,8 +2777,10 @@ return { ["#% increased Mana Cost Efficiency if you have Dodge Rolled Recently"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Command Skills"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency of Curses"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency of Marks"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Spells"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency per 10 Tribute"] = { { isScalable = true } }, ["#% increased Mana Cost Efficiency while on Low Mana"] = { { isScalable = true } }, ["#% increased Mana Cost of Attacks"] = { { isScalable = true } }, @@ -2748,6 +2807,7 @@ return { ["#% increased Mana Recovery from Flasks"] = { { isScalable = true } }, ["#% increased Mana Recovery rate"] = { { isScalable = true } }, ["#% increased Mana Recovery rate per 10 Tribute"] = { { isScalable = true } }, + ["#% increased Mana Recovery rate while your Companion is in your Presence"] = { { isScalable = true } }, ["#% increased Mana Regeneration Rate"] = { { isScalable = true } }, ["#% increased Mana Regeneration Rate during any Flask Effect"] = { { isScalable = true } }, ["#% increased Mana Regeneration Rate if you have Frozen an Enemy Recently"] = { { isScalable = true } }, @@ -2834,6 +2894,7 @@ return { ["#% increased Minion Attack and Cast Speed per 10 Devotion"] = { { isScalable = true } }, ["#% increased Minion Attack and Cast Speed per Skeleton you own"] = { { isScalable = true } }, ["#% increased Minion Damage per Raised Spectre"] = { { isScalable = true } }, + ["#% increased Minion Damage per different Command Skill used in the past 15 seconds"] = { { isScalable = true } }, ["#% increased Minion Damage while you have at least two different active Offerings"] = { { isScalable = true } }, ["#% increased Minion Duration"] = { { isScalable = true } }, ["#% increased Minion Duration per Raised Zombie"] = { { isScalable = true } }, @@ -2867,7 +2928,6 @@ return { ["#% increased Movement Speed if you have used a Vaal Skill Recently"] = { { isScalable = true } }, ["#% increased Movement Speed if you haven't been Hit Recently"] = { { isScalable = true } }, ["#% increased Movement Speed if you haven't taken Damage Recently"] = { { isScalable = true } }, - ["#% increased Movement Speed if you've Cast Dash recently"] = { { isScalable = true } }, ["#% increased Movement Speed if you've Hit an Enemy Recently"] = { { isScalable = true } }, ["#% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"] = { { isScalable = true } }, ["#% increased Movement Speed if you've Killed Recently"] = { { isScalable = true } }, @@ -2898,6 +2958,7 @@ return { ["#% increased Movement Speed while Poisoned"] = { { isScalable = true } }, ["#% increased Movement Speed while Shocked"] = { { isScalable = true } }, ["#% increased Movement Speed while Sprinting"] = { { isScalable = true } }, + ["#% increased Movement Speed while Sprinting per Persistent Minion"] = { { isScalable = true } }, ["#% increased Movement Speed while Surrounded"] = { { isScalable = true } }, ["#% increased Movement Speed while affected by Grace"] = { { isScalable = true } }, ["#% increased Movement Speed while affected by a Magic Abyss Jewel"] = { { isScalable = true } }, @@ -2972,8 +3033,6 @@ return { ["#% increased Pin Buildup"] = { { isScalable = true } }, ["#% increased Pin duration"] = { { isScalable = true } }, ["#% increased Player and Monster Movement Speed"] = { { isScalable = true } }, - ["#% increased Poacher's Mark Curse Effect"] = { { isScalable = true } }, - ["#% increased Poacher's Mark Duration"] = { { isScalable = true } }, ["#% increased Poison Duration"] = { { isScalable = true } }, ["#% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"] = { { isScalable = true } }, ["#% increased Poison Duration if you have at least 150 Intelligence"] = { { isScalable = true } }, @@ -2985,7 +3044,6 @@ return { ["#% increased Power Charge Duration"] = { { isScalable = true } }, ["#% increased Power Siphon Attack Speed"] = { { isScalable = true } }, ["#% increased Power Siphon Damage"] = { { isScalable = true } }, - ["#% increased Precursor Tablets found in Area"] = { { isScalable = true } }, ["#% increased Presence Area of Effect"] = { { isScalable = true } }, ["#% increased Presence Area of Effect per 10 Tribute"] = { { isScalable = true } }, ["#% increased Projectile Attack Damage"] = { { isScalable = true } }, @@ -3038,6 +3096,7 @@ return { ["#% increased Quantity of Items found with a Magic Item Equipped"] = { { isScalable = true } }, ["#% increased Quantity of Sockets"] = { { isScalable = true } }, ["#% increased Radius of Consecrated Ground created by this Flask"] = { { isScalable = true } }, + ["#% increased Rage Cost Efficiency"] = { { isScalable = true } }, ["#% increased Rage Cost of Skills"] = { { isScalable = true } }, ["#% increased Rage Vortex Area of Effect"] = { { isScalable = true } }, ["#% increased Rage Vortex Damage"] = { { isScalable = true } }, @@ -3076,6 +3135,7 @@ return { ["#% increased Rarity of Items found when on Low Life"] = { { isScalable = true } }, ["#% increased Rarity of Items found while Phasing"] = { { isScalable = true } }, ["#% increased Rarity of Items found with a Normal Item Equipped"] = { { isScalable = true } }, + ["#% increased Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply"] = { { isScalable = true } }, ["#% increased Reap Area of Effect"] = { { isScalable = true } }, ["#% increased Reave Damage"] = { { isScalable = true } }, ["#% increased Reave Radius"] = { { isScalable = true } }, @@ -3104,10 +3164,13 @@ return { ["#% increased Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Herald Skills"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Minion Skills"] = { { isScalable = true } }, + ["#% increased Reservation Efficiency of Remnant Skills"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Skills"] = { { isScalable = true } }, + ["#% increased Reservation Efficiency of Skills per Idol in your Equipment"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Skills which create Undead Minions"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Skills which summon Skeletons"] = { { isScalable = true } }, ["#% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"] = { { isScalable = true } }, + ["#% increased Reservation Efficiency of non-Minion Skills"] = { { isScalable = true } }, ["#% increased Reservation of Banner Skills"] = { { isScalable = true } }, ["#% increased Reservation of Curse Aura Skills"] = { { isScalable = true } }, ["#% increased Reservation of Herald Skills"] = { { isScalable = true } }, @@ -3121,6 +3184,11 @@ return { ["#% increased Rogue's Markers dropped by monsters"] = { { isScalable = true } }, ["#% increased Rolling Magma Area of Effect"] = { { isScalable = true } }, ["#% increased Rolling Magma Damage"] = { { isScalable = true } }, + ["#% increased Runic Ward"] = { { isScalable = true } }, + ["#% increased Runic Ward Cost Efficiency"] = { { isScalable = true } }, + ["#% increased Runic Ward Regeneration Rate"] = { { isScalable = true } }, + ["#% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently"] = { { isScalable = true } }, + ["#% increased Runic Ward Regeneration Rate while Sprinting"] = { { isScalable = true } }, ["#% increased Scorching Ray Cast Speed"] = { { isScalable = true } }, ["#% increased Scorching Ray Damage"] = { { isScalable = true } }, ["#% increased Scorching Ray beam length"] = { { isScalable = true } }, @@ -3157,11 +3225,13 @@ return { ["#% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"] = { { isScalable = true } }, ["#% increased Skill Effect Duration per Enemy you've Frozen in the last 8 seconds, up to 40%"] = { { isScalable = true } }, ["#% increased Skill Effect Duration while affected by Malevolence"] = { { isScalable = true } }, + ["#% increased Skill Effect Duration with Plant Skills"] = { { isScalable = true } }, ["#% increased Skill Range"] = { { isScalable = true } }, ["#% increased Skill Speed"] = { { 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 } }, + ["#% increased Skill Speed while on Low Mana"] = { { isScalable = true } }, ["#% increased Skill Speed with Channelling Skills"] = { { isScalable = true } }, ["#% increased Slowing Potency of Debuffs on You"] = { { isScalable = true } }, ["#% increased Slowing Potency of Debuffs on You if you've used a Charm Recently"] = { { isScalable = true } }, @@ -3221,6 +3291,7 @@ return { ["#% increased Spell Damage while wielding a Melee Weapon"] = { { isScalable = true } }, ["#% increased Spell Damage while wielding a Staff"] = { { isScalable = true } }, ["#% increased Spell Damage while you have Arcane Surge"] = { { isScalable = true } }, + ["#% increased Spell Damage while your Companion is in your Presence"] = { { isScalable = true } }, ["#% increased Spell Damage with Spells that cost Life"] = { { isScalable = true } }, ["#% increased Spell Elemental Damage"] = { { isScalable = true } }, ["#% increased Spell Fire Damage"] = { { isScalable = true } }, @@ -3228,6 +3299,7 @@ return { ["#% increased Spell damage for each 200 total Mana you have Spent Recently"] = { { isScalable = true } }, ["#% increased Spirit"] = { { isScalable = true } }, ["#% increased Spirit Offering Duration"] = { { isScalable = true } }, + ["#% increased Spirit Reservation Efficiency"] = { { isScalable = true } }, ["#% 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 } }, @@ -3249,6 +3321,8 @@ return { ["#% increased Storm Rain Damage"] = { { isScalable = true } }, ["#% increased Strength"] = { { isScalable = true } }, ["#% increased Strength Requirement"] = { { isScalable = true } }, + ["#% increased Strength and Dexterity"] = { { isScalable = true } }, + ["#% increased Strength and Intelligence"] = { { isScalable = true } }, ["#% increased Strength, Dexterity or Intelligence"] = { { isScalable = true } }, ["#% increased Stun Buildup"] = { { isScalable = true } }, ["#% increased Stun Buildup against Enemies that are on Low Life"] = { { isScalable = true } }, @@ -3276,6 +3350,7 @@ return { ["#% increased Stun Threshold for each time you've been Stunned Recently"] = { { isScalable = true } }, ["#% increased Stun Threshold if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true } }, ["#% increased Stun Threshold if you haven't been Stunned Recently"] = { { isScalable = true } }, + ["#% increased Stun Threshold if you've been Stunned Recently"] = { { isScalable = true } }, ["#% increased Stun Threshold per 25 Tribute"] = { { isScalable = true } }, ["#% increased Stun Threshold while Channelling"] = { { isScalable = true } }, ["#% increased Stun Threshold while Parrying"] = { { isScalable = true } }, @@ -3288,6 +3363,7 @@ return { ["#% increased Surrounded Area of Effect"] = { { isScalable = true } }, ["#% increased Sweep Area of Effect"] = { { isScalable = true } }, ["#% increased Sweep Damage"] = { { isScalable = true } }, + ["#% increased Tablets found in Area"] = { { isScalable = true } }, ["#% increased Tasalio's Ire per Fish caught"] = { { isScalable = true } }, ["#% increased Taunt Duration"] = { { isScalable = true } }, ["#% increased Tempest Shield Damage"] = { { isScalable = true } }, @@ -3356,10 +3432,6 @@ return { ["#% increased Warcry Duration"] = { { isScalable = true } }, ["#% increased Warcry Speed"] = { { isScalable = true } }, ["#% increased Warcry Speed per 25 Tribute"] = { { isScalable = true } }, - ["#% increased Ward"] = { { isScalable = true } }, - ["#% increased Ward during Effect"] = { { isScalable = true } }, - ["#% increased Warlord's Mark Curse Effect"] = { { isScalable = true } }, - ["#% increased Warlord's Mark Duration"] = { { isScalable = true } }, ["#% increased Weapon Damage per 10 Strength"] = { { isScalable = true } }, ["#% increased Weapon Swap Speed"] = { { isScalable = true } }, ["#% increased Whirling Blades Attack Speed"] = { { isScalable = true } }, @@ -3373,6 +3445,7 @@ return { ["#% increased amount of Life Leeched while Shapeshifted"] = { { isScalable = true } }, ["#% increased amount of Magic Chests"] = { { isScalable = true } }, ["#% increased amount of Mana Leeched"] = { { isScalable = true } }, + ["#% increased amount of Mana Leeched if you've dealt a Critical Hit Recently"] = { { isScalable = true } }, ["#% increased amount of Rare Chests"] = { { isScalable = true } }, ["#% increased bonuses gained from Equipped Quiver"] = { { isScalable = true } }, ["#% increased bonuses gained from Equipped Rings"] = { { isScalable = true } }, @@ -3383,6 +3456,17 @@ return { ["#% 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 } }, + ["#% increased chance to Birth Chaos Orbs"] = { { isScalable = true } }, + ["#% increased chance to Birth Divine Orbs"] = { { isScalable = true } }, + ["#% increased chance to Birth Exalted Orbs"] = { { isScalable = true } }, + ["#% increased chance to Birth Jeweller's Orbs"] = { { isScalable = true } }, + ["#% increased chance to Birth Orbs of Alchemy"] = { { isScalable = true } }, + ["#% increased chance to Birth Orbs of Annulment"] = { { isScalable = true } }, + ["#% increased chance to Birth Orbs of Augmentation"] = { { isScalable = true } }, + ["#% increased chance to Birth Orbs of Transmutation"] = { { isScalable = true } }, + ["#% increased chance to Birth Quality Currency"] = { { isScalable = true } }, + ["#% increased chance to Birth Regal Orbs"] = { { isScalable = true } }, + ["#% increased chance to Birth Vaal Orbs"] = { { isScalable = true } }, ["#% increased chance to Blind"] = { { isScalable = true } }, ["#% increased chance to Maim"] = { { isScalable = true } }, ["#% increased chance to Poison"] = { { isScalable = true } }, @@ -3397,7 +3481,6 @@ return { ["#% increased chance to inflict Ailments against Rare or Unique Enemies"] = { { isScalable = true } }, ["#% increased chance to inflict Ailments with Projectiles"] = { { isScalable = true } }, ["#% increased chance to inflict Bleeding"] = { { isScalable = true } }, - ["#% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true } }, ["#% increased damage against Undead Enemies"] = { { isScalable = true } }, ["#% increased damage taken if you've killed Recently"] = { { isScalable = true } }, ["#% increased damage taken per 10 Tribute"] = { { isScalable = true } }, @@ -3427,13 +3510,10 @@ return { ["#% increased effect of Shock on you"] = { { isScalable = true } }, ["#% increased effect of Shrine Buffs on you"] = { { isScalable = true } }, ["#% increased effect of Small Passive Skills"] = { { isScalable = true } }, - ["#% increased effect of Socketed Items"] = { { isScalable = true } }, - ["#% increased effect of Socketed Runes"] = { { isScalable = true } }, + ["#% increased effect of Socketed Augment Items"] = { { isScalable = false } }, + ["#% increased effect of Socketed Runes"] = { { isScalable = false } }, ["#% increased effect of Socketed Soul Cores"] = { { isScalable = true } }, ["#% increased effect of Sorcery Ward"] = { { isScalable = true } }, - ["#% increased effect of Temple Mods from Corruption Chambers, Treasure Vaults, and Sacrificial Chambers"] = { { isScalable = true } }, - ["#% increased effect of Temple Mods from Garrisons, Commanders, Armouries, Smithies, and Legion Barracks"] = { { isScalable = true } }, - ["#% increased effect of Temple Mods from Generators, Synthflesh Labs, Flesh Surgeons, Transcendent Barracks, and Alchemy Labs"] = { { isScalable = true } }, ["#% increased effect of Temporal Chains on you"] = { { isScalable = true } }, ["#% increased effect of Wishes granted by Ancient Fish"] = { { isScalable = true } }, ["#% increased effect of Withered on you"] = { { isScalable = true } }, @@ -3441,6 +3521,8 @@ return { ["#% increased frequency of Tempest effects"] = { { isScalable = true } }, ["#% increased maximum Darkness"] = { { isScalable = true } }, ["#% increased maximum Dash Distance with Unarmed Attack Skills"] = { { isScalable = true } }, + ["#% increased maximum Divinity"] = { { isScalable = true } }, + ["#% increased maximum Divinity per Corrupted Item Equipped"] = { { isScalable = true } }, ["#% increased maximum Energy Shield"] = { { isScalable = true } }, ["#% increased maximum Energy Shield if Corrupted"] = { { isScalable = true } }, ["#% increased maximum Energy Shield if you've consumed a Power Charge Recently"] = { { isScalable = true } }, @@ -3453,12 +3535,11 @@ return { ["#% increased maximum Life, Mana and Energy Shield"] = { { isScalable = true } }, ["#% increased maximum Mana"] = { { isScalable = true } }, ["#% increased maximum Mana and reduced Cold Resistance"] = { { isScalable = true } }, + ["#% increased maximum Runic Ward"] = { { isScalable = true } }, ["#% increased maximum number of Raised Zombies"] = { { isScalable = true } }, ["#% increased number of Explosives"] = { { isScalable = true } }, - ["#% increased number of Magic Monsters"] = { { isScalable = true } }, ["#% increased number of Monster Packs"] = { { isScalable = true } }, ["#% increased number of Rare Expedition Monsters in Area"] = { { isScalable = true } }, - ["#% increased number of Rare Monsters"] = { { isScalable = true } }, ["#% increased penalty to Accuracy Rating at range"] = { { isScalable = true } }, ["#% increased quantity of Artifacts dropped by Monsters"] = { { isScalable = true } }, ["#% increased raising of Alert Level"] = { { isScalable = true } }, @@ -3472,10 +3553,12 @@ return { ["#% less Armour"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Armour and Evasion Rating"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Armour from Equipped Body Armour"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Attack Speed per Blitz Charge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Attack damage while on Low Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Attributes"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Block chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Burning Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -3493,6 +3576,7 @@ return { ["#% less Critical Hit Chance against Enemies that are on Full Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Critical Hit Chance while Insane"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Critical Hit chance while affected by Precision"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Curse Magnitudes"] = { { isScalable = false, formats = { "negate" } } }, ["#% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage Taken from Damage over Time"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage Taken per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, @@ -3507,7 +3591,6 @@ return { ["#% less Damage per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage taken from Hindered Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage taken from Marked Enemy"] = { { isScalable = true, formats = { "negate" } } }, - ["#% less Damage taken from other Enemies near your Marked Enemy"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage taken if you have not been Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage taken per Tailwind"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage to surrounding targets"] = { { isScalable = false, formats = { "negate" } } }, @@ -3518,7 +3601,6 @@ return { ["#% less Damage with Hits against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage with Hits for each stage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Damage with Triggered Spells"] = { { isScalable = true, formats = { "negate" } } }, - ["#% less Defences"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Duration of Ignite on You"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Duration of Poisons on You"] = { { isScalable = true, formats = { "negate" } } }, @@ -3526,7 +3608,7 @@ return { ["#% less Effect of your Curses"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Elemental Ailment Buildup while Unbound"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Elemental Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["#% less Elemental Damage per 30 Resonance of any type"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Elemental Damage per 30 Affinity of any type"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Elemental Damage per Inspiration Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Elemental Damage taken"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Elemental Damage taken per Raised Zombie"] = { { isScalable = true, formats = { "negate" } } }, @@ -3541,11 +3623,13 @@ return { ["#% less Flask Charges used"] = { { isScalable = true } }, ["#% less Flask Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Frozen Legion and General's Cry Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Global Evasion Rating and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Ignite Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Impale Magnitude"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Knockback Distance against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Knockback Distance for Blocked Hits"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Life"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Life Flask Recovery"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Life Recovered"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Life Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Lightning Damage taken"] = { { isScalable = true, formats = { "negate" } } }, @@ -3558,6 +3642,7 @@ return { ["#% less Main Hand attack speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Mana Cost of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Mana Cost of Skills if you have no Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Mana Regeneration Rate"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Mana Reservation of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Maximum Lightning Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -3571,7 +3656,6 @@ return { ["#% less Physical Damage over Time"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Physical Damage taken from Hits"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Physical Damage while at maximum Frenzy Charges"] = { { isScalable = true, formats = { "negate" } } }, - ["#% less Physical Damage with Unarmed Melee Attacks"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Physical and Chaos Damage Taken while Sane"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Poison Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Power Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, @@ -3586,9 +3670,11 @@ return { ["#% less Stun Buildup with Lightning Damage"] = { { isScalable = true } }, ["#% less Stun Buildup with Melee Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Totem Damage per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, - ["#% less Ward during Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% less chance to inflict Elemental Ailments while Unbound"] = { { isScalable = true, formats = { "negate" } } }, ["#% less damage against enemies with an Open Weakness"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less damage taken from other enemies near your Marked enemy"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less damage taken while Cursed"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less damage taken while on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% less damage with Hits for Shockwaves originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } }, ["#% less damage with Hits for blasts originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } }, ["#% less damage with Hits for explosions originating from a Unique enemy"] = { { isScalable = true, formats = { "negate" } } }, @@ -3599,6 +3685,7 @@ return { ["#% less maximum Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% less maximum Physical Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less maximum Physical Attack damage with Critical Hits"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less maximum Runic Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% less minimum Physical Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less minimum Physical Attack damage with Critical Hits"] = { { isScalable = true, formats = { "negate" } } }, ["#% less raising of Alert Level"] = { { isScalable = true, formats = { "negate" } } }, @@ -3611,12 +3698,14 @@ return { ["#% more Armour"] = { { isScalable = true } }, ["#% more Armour and Evasion Rating"] = { { isScalable = true } }, ["#% more Armour from Equipped Body Armour"] = { { isScalable = true } }, + ["#% more Armour, Evasion and Energy Shield"] = { { isScalable = true } }, ["#% more Attack Damage"] = { { isScalable = true } }, ["#% more Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds, up to a maximum of 30%"] = { { isScalable = true } }, ["#% more Attack Speed"] = { { isScalable = true } }, ["#% more Attack Speed per Blitz Charge"] = { { isScalable = true } }, ["#% more Attack Speed per Frenzy Charge"] = { { isScalable = true } }, ["#% more Attack and Movement Speed per Challenger Charge"] = { { isScalable = true } }, + ["#% more Attack damage while on Low Mana"] = { { isScalable = true } }, ["#% more Attributes"] = { { isScalable = true } }, ["#% more Block chance"] = { { isScalable = true } }, ["#% more Burning Damage"] = { { isScalable = true } }, @@ -3634,6 +3723,7 @@ return { ["#% more Critical Hit Chance against Enemies that are on Low Life"] = { { isScalable = true } }, ["#% more Critical Hit Chance while Insane"] = { { isScalable = true } }, ["#% more Critical Hit chance while affected by Precision"] = { { isScalable = true } }, + ["#% more Curse Magnitudes"] = { { isScalable = false } }, ["#% more Damage"] = { { isScalable = true } }, ["#% more Damage Taken from Damage over Time"] = { { isScalable = true } }, ["#% more Damage Taken per Summoned Totem"] = { { isScalable = true } }, @@ -3649,7 +3739,6 @@ return { ["#% more Damage per Summoned Totem"] = { { isScalable = true } }, ["#% more Damage taken from Hindered Enemies"] = { { isScalable = true } }, ["#% more Damage taken from Marked Enemy"] = { { isScalable = true } }, - ["#% more Damage taken from other Enemies near your Marked Enemy"] = { { isScalable = true } }, ["#% more Damage taken if you have not been Hit Recently"] = { { isScalable = true } }, ["#% more Damage taken per Tailwind"] = { { isScalable = true } }, ["#% more Damage to surrounding targets"] = { { isScalable = false } }, @@ -3663,7 +3752,6 @@ return { ["#% more Damage with Hits against Unique Enemies"] = { { isScalable = true } }, ["#% more Damage with Hits for each stage"] = { { isScalable = true } }, ["#% more Damage with Triggered Spells"] = { { isScalable = true } }, - ["#% more Defences"] = { { isScalable = true } }, ["#% more Divination Cards found in Area"] = { { isScalable = true } }, ["#% more Duration"] = { { isScalable = true } }, ["#% more Duration of Ignite on You"] = { { isScalable = true } }, @@ -3672,7 +3760,7 @@ return { ["#% more Effect of your Curses"] = { { isScalable = true } }, ["#% more Elemental Ailment Buildup while Unbound"] = { { isScalable = true } }, ["#% more Elemental Damage"] = { { isScalable = true } }, - ["#% more Elemental Damage per 30 Resonance of any type"] = { { isScalable = true } }, + ["#% more Elemental Damage per 30 Affinity of any type"] = { { isScalable = true } }, ["#% more Elemental Damage per Inspiration Charge"] = { { isScalable = true } }, ["#% more Elemental Damage taken"] = { { isScalable = true } }, ["#% more Elemental Damage taken per Raised Zombie"] = { { isScalable = true } }, @@ -3687,11 +3775,13 @@ return { ["#% more Flask Charges used"] = { { isScalable = true, formats = { "negate" } } }, ["#% more Flask Effect Duration"] = { { isScalable = true } }, ["#% more Frozen Legion and General's Cry Cooldown Recovery Rate"] = { { isScalable = true } }, + ["#% more Global Evasion Rating and Energy Shield"] = { { isScalable = true } }, ["#% more Ignite Duration"] = { { isScalable = true } }, ["#% more Impale Magnitude"] = { { isScalable = true } }, ["#% more Knockback Distance against Unique Enemies"] = { { isScalable = true } }, ["#% more Knockback Distance for Blocked Hits"] = { { isScalable = true } }, ["#% more Life"] = { { isScalable = true } }, + ["#% more Life Flask Recovery"] = { { isScalable = true } }, ["#% more Life Recovered"] = { { isScalable = true } }, ["#% more Life Recovery from Flasks"] = { { isScalable = true } }, ["#% more Lightning Damage taken"] = { { isScalable = true } }, @@ -3704,6 +3794,7 @@ return { ["#% more Main Hand attack speed"] = { { isScalable = true } }, ["#% more Mana Cost of Skills"] = { { isScalable = true } }, ["#% more Mana Cost of Skills if you have no Energy Shield"] = { { isScalable = true } }, + ["#% more Mana Regeneration Rate"] = { { isScalable = true } }, ["#% more Mana Reservation of Skills"] = { { isScalable = true } }, ["#% more Maximum Life"] = { { isScalable = true } }, ["#% more Maximum Life if you have at least 6 Life Masteries allocated"] = { { isScalable = true } }, @@ -3720,7 +3811,6 @@ return { ["#% more Physical Damage over Time"] = { { isScalable = true } }, ["#% more Physical Damage taken from Hits"] = { { isScalable = true } }, ["#% more Physical Damage while at maximum Frenzy Charges"] = { { isScalable = true } }, - ["#% more Physical Damage with Unarmed Melee Attacks"] = { { isScalable = true } }, ["#% more Physical and Chaos Damage Taken while Sane"] = { { isScalable = true } }, ["#% more Poison Duration"] = { { isScalable = true } }, ["#% more Power Charge Duration"] = { { isScalable = true } }, @@ -3742,9 +3832,11 @@ return { ["#% more Stun Buildup with Melee Damage"] = { { isScalable = true } }, ["#% more Totem Damage per Summoned Totem"] = { { isScalable = true } }, ["#% more Unique Items found in Area"] = { { isScalable = true } }, - ["#% more Ward during Effect"] = { { isScalable = true } }, ["#% more chance to inflict Elemental Ailments while Unbound"] = { { isScalable = true } }, ["#% more damage against enemies with an Open Weakness"] = { { isScalable = true } }, + ["#% more damage taken from other enemies near your Marked enemy"] = { { isScalable = true } }, + ["#% more damage taken while Cursed"] = { { isScalable = true } }, + ["#% more damage taken while on Low Life"] = { { isScalable = true } }, ["#% more damage with Hits for Shockwaves originating from a Unique enemy"] = { { isScalable = true } }, ["#% more damage with Hits for blasts originating from a Unique enemy"] = { { isScalable = true } }, ["#% more damage with Hits for explosions originating from a Unique enemy"] = { { isScalable = true } }, @@ -3755,6 +3847,7 @@ return { ["#% more maximum Mana"] = { { isScalable = true } }, ["#% more maximum Physical Attack Damage"] = { { isScalable = true } }, ["#% more maximum Physical Attack damage with Critical Hits"] = { { isScalable = true } }, + ["#% more maximum Runic Ward"] = { { isScalable = true } }, ["#% more minimum Physical Attack Damage"] = { { isScalable = true } }, ["#% more minimum Physical Attack damage with Critical Hits"] = { { isScalable = true } }, ["#% more raising of Alert Level"] = { { isScalable = true } }, @@ -3768,11 +3861,14 @@ 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 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 } }, ["#% of Chaos Damage taken bypasses Energy Shield"] = { { isScalable = true } }, ["#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect"] = { { isScalable = true } }, + ["#% of Charges consumed by used Charms are granted to your Life Flasks"] = { { isScalable = true } }, + ["#% of Charges consumed by used Life Flasks are granted to your Charms"] = { { isScalable = true } }, ["#% of Cold Damage Converted to Chaos Damage"] = { { isScalable = true } }, ["#% of Cold Damage Converted to Fire Damage"] = { { isScalable = true } }, ["#% of Cold Damage Converted to Lightning Damage"] = { { isScalable = true } }, @@ -3784,6 +3880,7 @@ return { ["#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire"] = { { isScalable = true } }, ["#% of Current Energy Shield also grants Elemental Damage reduction"] = { { isScalable = false } }, ["#% of Damage Taken Recouped as Life, Mana and Energy Shield"] = { { isScalable = true } }, + ["#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you"] = { { isScalable = true } }, ["#% of Damage from Hits against Allies in your Presence is taken from your Energy Shield before them"] = { { isScalable = true } }, ["#% of Damage from Hits is taken from your Companion's Life before you"] = { { isScalable = true } }, ["#% of Damage from Hits is taken from your Damageable Companion's Life before you"] = { { isScalable = true } }, @@ -3799,9 +3896,9 @@ return { ["#% of Damage taken Recouped as Mana"] = { { isScalable = true } }, ["#% of Damage taken Recouped as Mana if you've Warcried Recently"] = { { isScalable = true } }, ["#% of Damage taken bypasses Energy Shield"] = { { isScalable = true } }, - ["#% of Damage taken bypasses Ward"] = { { isScalable = true } }, ["#% of Damage taken during effect Recouped as Life"] = { { isScalable = true } }, ["#% of Damage taken from Deflected Hits Recouped as Life"] = { { isScalable = true } }, + ["#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half"] = { { isScalable = true } }, ["#% of Damage taken from Mana before Life while affected by Clarity"] = { { isScalable = true } }, ["#% of Damage taken from Stunning Hits is Recovered as Energy Shield"] = { { isScalable = true } }, ["#% of Damage taken from Stunning Hits is Recovered as Life"] = { { isScalable = true } }, @@ -3825,10 +3922,10 @@ return { ["#% of Fire Damage from Hits taken as Physical Damage"] = { { isScalable = true } }, ["#% of Fire Damage taken Recouped as Life"] = { { isScalable = true } }, ["#% of Fire Damage taken as Lightning Damage"] = { { isScalable = true } }, - ["#% of Fire Damage taken causes extra Physical Damage"] = { { isScalable = true } }, ["#% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning"] = { { isScalable = true } }, ["#% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice"] = { { isScalable = true } }, ["#% of Fire damage Converted to Lightning damage"] = { { isScalable = true } }, + ["#% of Fire damage taken as Cold damage"] = { { isScalable = true } }, ["#% of Flask Life Recovery granted to Minions"] = { { isScalable = true } }, ["#% of Flask Recovery applied Instantly"] = { { isScalable = true } }, ["#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage"] = { { isScalable = true } }, @@ -3852,6 +3949,7 @@ return { ["#% of Lightning Damage taken Recouped as Life"] = { { isScalable = true } }, ["#% of Lightning Damage taken as Fire Damage"] = { { isScalable = true } }, ["#% of Lightning Damage with Attack Skills Converted to Chaos Damage"] = { { isScalable = true } }, + ["#% of Lightning damage taken as Cold damage"] = { { isScalable = true } }, ["#% of Mana Leeched from targets affected by Abyssal Wasting is Instant"] = { { isScalable = true } }, ["#% of Maximum Energy Shield taken as Physical Damage on Minion Death"] = { { isScalable = true } }, ["#% of Maximum Life Converted to Energy Shield"] = { { isScalable = true } }, @@ -3906,18 +4004,17 @@ return { ["#% of Physical Damage taken as Lightning Damage"] = { { isScalable = true } }, ["#% of Physical Damage taken as Lightning while your Shield is raised"] = { { isScalable = true } }, ["#% of Physical Damage taken bypasses Energy Shield"] = { { isScalable = true } }, + ["#% of Physical damage dealt by your Hits causes Blood Loss"] = { { isScalable = false } }, ["#% of Physical damage from Hits taken as Lightning damage"] = { { isScalable = true } }, ["#% of Recovery applied Instantly"] = { { isScalable = true } }, ["#% of Skill Mana Costs Converted to Life Costs"] = { { isScalable = true } }, ["#% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"] = { { isScalable = true } }, ["#% of Spell Damage Leeched as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Spell Mana Cost Converted to Life Cost"] = { { isScalable = true } }, - ["#% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"] = { { isScalable = true } }, ["#% of Thorns Damage Leeched as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Thorns Damage Leeched as Life if you have at least 100 Tribute"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Toxic Rain Physical Damage gained as Extra Chaos Damage"] = { { isScalable = true } }, ["#% of Volatility Physical Damage Taken as Cold Damage"] = { { isScalable = true } }, - ["#% of charges used by Charms granted to your Life Flasks"] = { { isScalable = true } }, ["#% of damage Blocked is Recouped as Mana"] = { { isScalable = true } }, ["#% of damage taken Recouped as Life per 10 Tribute"] = { { isScalable = true } }, ["#% of damage taken Recouped as Mana per 10 Tribute"] = { { isScalable = true } }, @@ -3966,7 +4063,6 @@ return { ["#% reduced Adaptation Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aftershock Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Ailment and Stun Threshold while Surrounded"] = { { isScalable = true } }, - ["#% reduced Alchemist's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Ambush Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Amount Recovered"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Ancestral Blademaster Totem Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, @@ -4005,7 +4101,7 @@ return { ["#% reduced Area of Effect per 25 Rampage Kills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Area of Effect per 50 Strength"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Area of Effect per Endurance Charge"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Area of Effect per Enemy killed recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Area of Effect per Enemy killed Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Area of Effect per second you've been stationary, up to a maximum of 50%"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Area of Effect while Fortified"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Area of Effect while Unarmed"] = { { isScalable = true, formats = { "negate" } } }, @@ -4019,6 +4115,7 @@ return { ["#% reduced Area of Effect while you have no Frenzy Charges"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour Break Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour Break taken"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion"] = { { isScalable = true, formats = { "negate" } } }, @@ -4029,6 +4126,7 @@ return { ["#% reduced Armour and Evasion Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating while Fortified"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating while Leeching"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour and Evasion Rating while on Low Runic Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour from Equipped Body Armour"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour from Equipped Boots and Gloves"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour from Equipped Helmet and Gloves"] = { { isScalable = true, formats = { "negate" } } }, @@ -4050,13 +4148,19 @@ return { ["#% reduced Armour while not Ignited, Frozen or Shocked"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour while stationary"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Armour, Evasion or Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield while Channelling"] = { { isScalable = true } }, + ["#% reduced Armour, Evasion and Energy Shield while on Low Life"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield while wielding a Quarterstaff"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield while you have at least four Linked targets"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour, Evasion and Energy Shield while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Arrow Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Avian Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Spider Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Spider Debuff Duration"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Assassin's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Assassin's Mark Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Area Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Area of Effect while wielding a Quarterstaff"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Cold Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -4078,7 +4182,7 @@ return { ["#% reduced Attack Damage per 450 Evasion Rating"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Damage per 5% Chance to Block Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Damage per 500 Maximum Mana"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Attack Damage per 75 Item Armour and Evasion on Equipped Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Damage per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Damage per Level"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Damage per Summoned Totem in your Presence"] = { { isScalable = true } }, @@ -4107,8 +4211,8 @@ return { ["#% reduced Attack Speed if you have Blocked Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you have at least 600 Strength"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you haven't Attacked Recently"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Attack Speed if you haven't Cast Dash recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you haven't Killed Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Attack Speed if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you haven't gained a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you've Attacked Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -4139,6 +4243,7 @@ return { ["#% reduced Attack Speed while affected by Precision"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed while holding a Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed while in Sand Stance"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Attack Speed while missing Runic Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed while not on Low Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed while on Full Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Speed while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, @@ -4238,6 +4343,7 @@ return { ["#% reduced Block chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Block chance if you have at least 100 Tribute"] = { { isScalable = true } }, ["#% reduced Block chance while Surrounded"] = { { isScalable = true } }, + ["#% reduced Block chance while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Blueprint Revealing Cost"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Bodyswap Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Bodyswap Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -4264,6 +4370,7 @@ return { ["#% reduced Cast Speed during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cast Speed for each corpse Consumed Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cast Speed for each different Non-Instant Spell you've Cast Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cast Speed for each different Spell you've Cast in the last eight seconds"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cast Speed if a Minion has been killed Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cast Speed if you've Attacked Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cast Speed if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -4308,6 +4415,7 @@ return { ["#% reduced Character Size"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Charged Dash Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Charges"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Charges gained"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Charges per use"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Charges per use. -1% to this value when used"] = { { isScalable = true, formats = { "negate" } } }, @@ -4375,6 +4483,7 @@ return { ["#% reduced Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost Efficiency of Attacks"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost Efficiency of Skills if you've consumed a Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency of Spells"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Arc and Crackling Lance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Aura Skills that summon Totems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Building and Upgrading Towers"] = { { isScalable = true, formats = { "negate" } } }, @@ -4394,6 +4503,7 @@ return { ["#% reduced Critical Damage Bonus if you've consumed a Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Damage Bonus if you've gained a Power Charge Recently"] = { { isScalable = true } }, ["#% reduced Critical Damage Bonus per Power Charge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Critical Damage Bonus while Shocked"] = { { isScalable = true } }, ["#% reduced Critical Damage Bonus with Quarterstaves"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Hit Chance against Bleeding Enemies"] = { { isScalable = true, formats = { "negate" } } }, @@ -4473,10 +4583,12 @@ return { ["#% reduced Critical Hit Chance with Wands"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Hit Chance with arrows that Fork"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Spell Damage Bonus"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Crossbow Reload Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Culling Strike Threshold"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Culling Strike Threshold against Immobilised Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Culling Strike Threshold against Rare or Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Culling Strike Threshold if you've dealt a Culling Strike Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Curse Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Curse Duration if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Curse Duration per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, @@ -4544,6 +4656,7 @@ return { ["#% reduced Damage per Power Charge with Hits against Enemies that are on Full Life"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Damage per Raised Zombie"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage per Summoned Golem"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Damage per each different Companion in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage taken"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage taken from Bleeding Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage taken from Blinded Enemies"] = { { isScalable = true, formats = { "negate" } } }, @@ -4638,6 +4751,7 @@ return { ["#% reduced Damage with Hits against Shocked Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Hits against Taunted Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Hits against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Damage with Hits against targets in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Hits for each Level higher the Enemy is than you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Hits per Curse on Enemy"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Hits per Freeze, Shock or Ignite on Enemy"] = { { isScalable = true, formats = { "negate" } } }, @@ -4674,14 +4788,6 @@ return { ["#% reduced Daze Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Decoy Totem Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Decoy Totem Life"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences from Equipped Shield per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences from Equipped Shield per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences while on [LowLife|Low Life"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences while wielding a Quarterstaff"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences while you have at least four Linked targets"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Defences while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Deflection Rating"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Deflection Rating while Surrounded"] = { { isScalable = true } }, ["#% reduced Deflection Rating while moving"] = { { isScalable = true } }, @@ -4696,6 +4802,7 @@ return { ["#% reduced Detonation Time"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Dexterity"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Dexterity Requirement"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Dexterity and Intelligence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Dexterity if Strength is higher than Intelligence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Discharge Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Discharge Radius"] = { { isScalable = true, formats = { "negate" } } }, @@ -4716,7 +4823,6 @@ return { ["#% reduced Duration of Ailments you inflict while Focused"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Bleeding on You"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Buffs and Debuffs you create from skills"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Duration of Buffs granted by Shrines in your Maps"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Cold Ailments"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Curses on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Curses on you per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, @@ -4732,13 +4838,13 @@ return { ["#% reduced Duration of Poisons you inflict during Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration of Shrine Effects on you"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Duration of each Puppet Master stack"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration that Monsters do not Heal"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Duration. -1% to this value when used"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Earthquake Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Earthquake Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Earthquake Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Auras from Mines"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Effect of Buffs granted by Shrines in your Maps"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Buffs granted by your Elemental Golems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Buffs granted by your Golems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Buffs granted by your Golems per Summoned Golem"] = { { isScalable = true, formats = { "negate" } } }, @@ -4768,15 +4874,19 @@ return { ["#% reduced Effect of Notable Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Effect of Onslaught on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Poison from Critical Hits during Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Effect of Poison you inflict on targets that are not Poisoned"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Effect of Prefixes"] = { { isScalable = false, formats = { "negate" } } }, + ["#% reduced Effect of Puppet Master"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Remnants in Area"] = { { isScalable = true } }, ["#% reduced Effect of Scorch"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Shock on you during Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Shocks you inflict on Cursed Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Shrine Buffs on Players"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Small Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } }, + ["#% reduced Effect of Small and Notable Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Effect of Socketed Abyss Jewels"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Effect of Suffixes"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Effect of Tailwind on you"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Effect of bonuses gained from Socketed Jewel"] = { { isScalable = false } }, ["#% reduced Effect of non-Keystone Passive Skills in Radius"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Effect of the Buff granted by your Carrion Golems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of the Buff granted by your Chaos Golems"] = { { isScalable = true, formats = { "negate" } } }, @@ -4784,10 +4894,11 @@ return { ["#% reduced Effect of the Buff granted by your Ice Golems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of the Buff granted by your Lightning Golems"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of the Buff granted by your Stone Golems"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Effect of the Socketed Jewel"] = { { isScalable = false } }, ["#% reduced Effect of your Mark Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Electrocute Buildup"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Electrocute Buildup against Shocked Enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Elemental Ailment Application"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Elemental Ailment Duration on you"] = { { isScalable = true } }, ["#% reduced Elemental Ailment Duration on you per 10 Devotion"] = { { isScalable = true } }, ["#% reduced Elemental Ailment Duration on you while holding a Shield"] = { { isScalable = true, formats = { "negate" } } }, @@ -4838,7 +4949,6 @@ return { ["#% reduced Elemental Weakness Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Elemental Weakness Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Elusive Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Empowerment"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Endurance Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Endurance, Frenzy and Power Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Enduring Cry Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, @@ -4883,7 +4993,6 @@ return { ["#% reduced Evasion Rating if you have been Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Evasion Rating if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Evasion Rating if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Evasion Rating if you've Cast Dash recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Evasion Rating if you've Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Evasion Rating if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Evasion Rating per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, @@ -5041,16 +5150,14 @@ return { ["#% reduced Glacial Cascade Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Glacial Hammer Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Armour while you have no Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Global Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Global Armour, Evasion and Energy Shield per Socket filled"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Attack Speed per Level"] = { { isScalable = true, formats = { "negate", "milliseconds_to_seconds" } } }, ["#% reduced Global Critical Hit Chance if Corrupted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Hit Chance per Level"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Hit Chance while wielding a Bow"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Hit Chance while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Defences"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Defences per Socket filled"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Defences per White Socket"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Defences while Channelling"] = { { isScalable = true } }, ["#% reduced Global Evasion Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Physical Damage while Frozen"] = { { isScalable = true, formats = { "negate" } } }, @@ -5207,6 +5314,7 @@ return { ["#% reduced Magnitude of Damaging Ailments you inflict per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Damaging Ailments you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Daze"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Magnitude of Elemental Ailments you inflict with Spells"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Ignite against Frozen enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Ignite against Poisoned enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Ignite if you've consumed an Endurance Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5223,6 +5331,7 @@ return { ["#% reduced Magnitude of Poison inflicted with this Weapon"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Poison you inflict"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Poison you inflict on Bleeding Enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Magnitude of Poison you inflict on targets that are not Poisoned"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Poison you inflict per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Magnitude of Poison you inflict while Poisoned"] = { { isScalable = true } }, ["#% reduced Magnitude of Poison you inflict with Critical Hits"] = { { isScalable = true, formats = { "negate" } } }, @@ -5241,8 +5350,10 @@ return { ["#% reduced Mana Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency if you have Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency if you haven't Dodge Rolled Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Command Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency of Curses"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency of Marks"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Spells"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost Efficiency while on Low Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost of Attacks"] = { { isScalable = true, formats = { "negate" } } }, @@ -5270,6 +5381,7 @@ return { ["#% reduced Mana Recovery from Flasks"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Recovery rate"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Recovery rate per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Recovery rate while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Regeneration Rate"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Regeneration Rate during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Regeneration Rate if you have Frozen an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5349,6 +5461,7 @@ return { ["#% reduced Minion Attack and Cast Speed per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Minion Attack and Cast Speed per Skeleton you own"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Minion Damage per Raised Spectre"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Minion Damage per different Command Skill used in the past 15 seconds"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Minion Damage while you have at least two different active Offerings"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Minion Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Minion Duration per Raised Zombie"] = { { isScalable = true, formats = { "negate" } } }, @@ -5374,7 +5487,6 @@ return { ["#% reduced Movement Speed if you have used a Vaal Skill Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed if you haven't been Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed if you haven't taken Damage Recently"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Movement Speed if you've Cast Dash recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed if you've Hit an Enemy Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed if you've Hit with your Off Hand Weapon Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed if you've Killed Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5401,6 +5513,7 @@ return { ["#% reduced Movement Speed while Poisoned"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed while Shocked"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed while Sprinting"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Movement Speed while Sprinting per Persistent Minion"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed while Surrounded"] = { { isScalable = true } }, ["#% reduced Movement Speed while affected by Grace"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Movement Speed while affected by a Magic Abyss Jewel"] = { { isScalable = true, formats = { "negate" } } }, @@ -5471,8 +5584,6 @@ return { ["#% reduced Physical damage taken from Hits"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Pin Buildup"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Pin duration"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Poacher's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Poacher's Mark Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Poison Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Poison Duration for each Poison you have inflicted Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Poison Duration if you have at least 150 Intelligence"] = { { isScalable = true, formats = { "negate" } } }, @@ -5484,7 +5595,6 @@ return { ["#% reduced Power Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Power Siphon Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Power Siphon Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Precursor Tablets found in Area"] = { { isScalable = true } }, ["#% reduced Presence Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Presence Area of Effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5529,6 +5639,7 @@ return { ["#% reduced Quantity of Items found when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Quantity of Items found with a Magic Item Equipped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Quantity of Sockets"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Rage Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Cost of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Vortex Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Vortex Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5560,6 +5671,7 @@ return { ["#% reduced Rarity of Items found per Socket filled"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rarity of Items found when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rarity of Items found with a Normal Item Equipped"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reap Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reave Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reave Radius"] = { { isScalable = true, formats = { "negate" } } }, @@ -5588,10 +5700,13 @@ return { ["#% reduced Reservation Efficiency of Curse Aura Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Herald Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Minion Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Reservation Efficiency of Remnant Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Reservation Efficiency of Skills per Idol in your Equipment"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Skills which create Undead Minions"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Skills which summon Skeletons"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Reservation Efficiency of non-Minion Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation of Banner Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation of Curse Aura Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Reservation of Herald Skills"] = { { isScalable = true, formats = { "negate" } } }, @@ -5605,6 +5720,11 @@ return { ["#% reduced Rogue's Markers dropped by monsters"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rolling Magma Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rolling Magma Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Runic Ward"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Runic Ward Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Runic Ward Regeneration Rate"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Runic Ward Regeneration Rate while Sprinting"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Scorching Ray Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Scorching Ray Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Scorching Ray beam length"] = { { isScalable = true, formats = { "negate" } } }, @@ -5640,11 +5760,13 @@ return { ["#% reduced Skill Effect Duration if you've Killed a Maimed Enemy Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Effect Duration per Enemy you've Frozen in the last 8 seconds"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Effect Duration while affected by Malevolence"] = { { isScalable = true, formats = { "negate" } } }, + ["#% 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 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" } } }, + ["#% reduced Skill Speed while on Low Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Speed with Channelling Skills"] = { { isScalable = true } }, ["#% reduced Slowing Potency of Debuffs on You"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5698,6 +5820,7 @@ return { ["#% reduced Spell Damage while wielding a Melee Weapon"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spell Damage while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spell Damage while you have Arcane Surge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Spell Damage while your Companion is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spell Damage with Spells that cost Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spell Fire Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spell Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5724,6 +5847,8 @@ return { ["#% reduced Storm Rain Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Strength"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Strength Requirement"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Strength and Dexterity"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Strength and Intelligence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Buildup"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Buildup against Enemies that are on Low Life"] = { { isScalable = true } }, ["#% reduced Stun Buildup against enemies within 2 metres"] = { { isScalable = true, formats = { "negate" } } }, @@ -5748,6 +5873,7 @@ return { ["#% reduced Stun Threshold for each time you've been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Threshold if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Threshold if you haven't been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Stun Threshold if you've been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Threshold per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Stun Threshold while Channelling"] = { { isScalable = true } }, ["#% reduced Stun Threshold while Parrying"] = { { isScalable = true, formats = { "negate" } } }, @@ -5760,6 +5886,7 @@ return { ["#% reduced Surrounded Area of Effect"] = { { isScalable = true } }, ["#% reduced Sweep Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Sweep Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Tablets found in Area"] = { { isScalable = true } }, ["#% reduced Tasalio's Ire per Fish caught"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Taunt Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Tempest Shield Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5827,10 +5954,6 @@ return { ["#% reduced Warcry Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Warcry Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Warcry Speed per 25 Tribute"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Ward"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Ward during Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Warlord's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Warlord's Mark Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Weapon Damage per 10 Strength"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Weapon Swap Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Whirling Blades Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, @@ -5844,6 +5967,7 @@ return { ["#% reduced amount of Life Leeched while Shapeshifted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced amount of Magic Chests"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced amount of Mana Leeched"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced amount of Mana Leeched if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced amount of Rare Chests"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced bonuses gained from Equipped Quiver"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced bonuses gained from Equipped Rings"] = { { isScalable = true } }, @@ -5854,6 +5978,17 @@ return { ["#% 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" } } }, + ["#% reduced chance to Birth Chaos Orbs"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Divine Orbs"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Exalted Orbs"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Jeweller's Orbs"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Orbs of Alchemy"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Orbs of Annulment"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Orbs of Augmentation"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Orbs of Transmutation"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Quality Currency"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Regal Orbs"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced chance to Birth Vaal Orbs"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance to Blind"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance to Maim"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance to Poison"] = { { isScalable = true, formats = { "negate" } } }, @@ -5868,7 +6003,6 @@ return { ["#% reduced chance to inflict Ailments against Rare or Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance to inflict Ailments with Projectiles"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance to inflict Bleeding"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced damage against Undead Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced damage taken if you've killed Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced damage taken per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, @@ -5879,7 +6013,7 @@ return { ["#% reduced effect of Arcane Surge on you per\n200 Mana spent Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Arcane Surge on you per\nHypnotic Eye Jewel affecting you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Arcane Surge on you while affected by Clarity"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced effect of Archon Buffs on you"] = { { isScalable = true } }, + ["#% reduced effect of Archon Buffs on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Chill and Shock on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Curses on Monsters"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Curses on Players"] = { { isScalable = true, formats = { "negate" } } }, @@ -5896,8 +6030,8 @@ return { ["#% reduced effect of Shock on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Shrine Buffs on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Small Passive Skills"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced effect of Socketed Items"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced effect of Socketed Runes"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced effect of Socketed Augment Items"] = { { isScalable = false, formats = { "negate" } } }, + ["#% reduced effect of Socketed Runes"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced effect of Socketed Soul Cores"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Sorcery Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced effect of Wishes granted by Ancient Fish"] = { { isScalable = true, formats = { "negate" } } }, @@ -5906,6 +6040,8 @@ return { ["#% reduced frequency of Tempest effects"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Darkness"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Dash Distance with Unarmed Attack Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced maximum Divinity"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced maximum Divinity per Corrupted Item Equipped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Energy Shield if Corrupted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Energy Shield if you've consumed a Power Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5917,6 +6053,7 @@ return { ["#% reduced maximum Life, Mana and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Mana and increased Cold Resistance"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced maximum Runic Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum number of Raised Zombies"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced number of Monster Packs"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced number of Rare Expedition Monsters in Area"] = { { isScalable = true } }, @@ -5930,7 +6067,6 @@ return { ["#% reduced total Power counted by Warcries"] = { { isScalable = true, formats = { "negate" } } }, ["#% slower Curse Activation"] = { { isScalable = true } }, ["#% slower Curse Activation per 20 Tribute"] = { { isScalable = true } }, - ["#% slower Restoration of Ward"] = { { isScalable = true, formats = { "negate" } } }, ["#% slower start of Energy Shield Recharge"] = { { isScalable = true, formats = { "negate" } } }, ["#% slower start of Energy Shield Recharge during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% slower start of Energy Shield Recharge if you've been Stunned Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5968,6 +6104,7 @@ return { ["#% to Cold Resistance while affected by Herald of Ice"] = { { isScalable = true } }, ["#% to Cold and Chaos Resistances"] = { { isScalable = true } }, ["#% to Cold and Lightning Resistances"] = { { isScalable = true } }, + ["#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier"] = { { isScalable = true } }, ["#% to Critical Damage Bonus"] = { { isScalable = true } }, ["#% to Critical Damage Bonus against Enemies that are affected\nby Elemental Ailments"] = { { isScalable = true } }, ["#% to Critical Damage Bonus against Stunned Enemies"] = { { isScalable = true } }, @@ -6029,9 +6166,12 @@ return { ["#% to Fire Resistance when Socketed with a Red Gem"] = { { isScalable = true } }, ["#% to Fire Resistance while affected by Herald of Ash"] = { { isScalable = true } }, ["#% to Fire Resistance while on Low Life"] = { { isScalable = true } }, + ["#% to Fire Spell Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Fire and Chaos Resistances"] = { { isScalable = true } }, ["#% to Fire and Cold Resistances"] = { { isScalable = true } }, + ["#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier"] = { { isScalable = true } }, ["#% to Fire and Lightning Resistances"] = { { isScalable = true } }, + ["#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier"] = { { isScalable = true } }, ["#% to Global Critical Damage Bonus per Green Socket"] = { { isScalable = true } }, ["#% to Global Critical Damage Bonus while wielding a Bow"] = { { isScalable = true } }, ["#% to Global Critical Damage Bonus while wielding a Staff"] = { { isScalable = true } }, @@ -6060,7 +6200,6 @@ return { ["#% to Melee Critical Damage Bonus"] = { { isScalable = true } }, ["#% to Melee Critical Damage Bonus if you've Warcried Recently"] = { { isScalable = true } }, ["#% to Melee Critical Damage Bonus while holding a Shield"] = { { isScalable = true } }, - ["#% to Monster Critical Damage Bonus"] = { { isScalable = true } }, ["#% to Off Hand Critical Damage Bonus per 10 Maximum Energy Shield on Shield"] = { { isScalable = true } }, ["#% to Off Hand Critical Damage Bonus per\nMurderous Eye Jewel affecting you, up to a maximum of +100%"] = { { isScalable = true } }, ["#% to Off Hand Critical Hit Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -6106,12 +6245,15 @@ return { ["#% to all Elemental Resistances per Endurance Charge"] = { { isScalable = true } }, ["#% to all Elemental Resistances per Minion, up to 30%"] = { { isScalable = true } }, ["#% to all Elemental Resistances per Power Charge"] = { { isScalable = true } }, + ["#% to all Elemental Resistances per Rune in your Equipment"] = { { isScalable = true } }, ["#% to all Elemental Resistances per Socket filled"] = { { isScalable = true } }, + ["#% to all Elemental Resistances per non-Idol Augment in your Equipment"] = { { isScalable = true } }, ["#% to all Elemental Resistances per socketed Grand Spectrum"] = { { isScalable = true } }, ["#% to all Elemental Resistances while on Low Life"] = { { isScalable = true } }, ["#% to all Elemental Resistances while you have at least 200 Strength"] = { { isScalable = true } }, ["#% to all Maximum Elemental Resistances"] = { { isScalable = true } }, ["#% to all Maximum Elemental Resistances if you have at\nleast 5 Red, Green and Blue Support Gems Socketed"] = { { isScalable = true } }, + ["#% to all Maximum Elemental Resistances while on full Runic Ward"] = { { isScalable = true } }, ["#% to all Resistances for each Corrupted Item Equipped"] = { { isScalable = true } }, ["#% to all maximum Elemental Resistances during Effect"] = { { isScalable = true } }, ["#% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour"] = { { isScalable = true } }, @@ -6124,16 +6266,19 @@ return { ["#% to all maximum Resistances while Poisoned"] = { { isScalable = true } }, ["#% to all maximum Resistances while you have no Endurance Charges"] = { { isScalable = true } }, ["#% to amount of Damage Prevented by Deflection"] = { { isScalable = true } }, + ["#% to amount of Damage Prevented by Deflection if you haven't Deflected a Hit Recently"] = { { isScalable = true } }, ["#% to amount of Damage Prevented from Deflecting Critical Hits"] = { { isScalable = true } }, + ["#% to gain Archon of Undeath when you create an Offering"] = { { isScalable = true } }, ["#% to maximum Armour"] = { { isScalable = true } }, ["#% to maximum Block chance"] = { { isScalable = true } }, + ["#% to maximum Block chance if you've Blocked with a raised Shield Recently"] = { { isScalable = true } }, ["#% to maximum Cold Resistance while affected by Herald of Ice"] = { { isScalable = true } }, ["#% to maximum Fire Resistance while affected by Herald of Ash"] = { { isScalable = true } }, ["#% to maximum Lightning Resistance while affected by Herald of Thunder"] = { { isScalable = true } }, - ["%1$+d to Melee range with Spears"] = { }, ["+1 Ring Slot"] = { }, + ["+1 to Armour per Strength"] = { }, ["+1 to Level of Socketed Skill Gems per # Player Levels"] = { { isScalable = true } }, - ["+1 to Maximum Energy Shield per # Item Evasion Rating on Equipped Body Armour"] = { { isScalable = true } }, + ["+1 to Maximum Energy Shield per # Item Evasion on Equipped Body Armour"] = { { isScalable = true } }, ["+1 to Maximum Energy Shield per # Maximum Life"] = { { isScalable = true } }, ["+1 to Maximum Mana per # Maximum Life"] = { { isScalable = true } }, ["+1 to Maximum Spirit per # Maximum Life"] = { { isScalable = true } }, @@ -6155,14 +6300,16 @@ return { ["1 Added Passive Skill is a Jewel Socket"] = { }, ["1 additional Lightning Trap Projectile"] = { }, ["1 additional maximum Blade Flurry stages"] = { }, + ["1% faster start of Energy Shield Recharge per # maximum Runic Ward"] = { { isScalable = true } }, + ["1% increased Area of Effect for Unarmed Attacks per # Intelligence"] = { { isScalable = true } }, ["1% increased Armour per # Strength when in Off Hand"] = { { isScalable = true } }, ["1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating"] = { }, ["1% increased Chaos Damage per # Intelligence Allocated in Radius"] = { { isScalable = true } }, ["1% increased Claw Physical Damage per # Dexterity Allocated in Radius"] = { { isScalable = true } }, - ["1% increased Critical Damage Bonus per # current Life"] = { { isScalable = true } }, ["1% increased Critical Hit Chance per point of Strength or Intelligence, whichever is lower"] = { }, ["1% increased Damage per # Strength when in Main Hand"] = { { isScalable = true } }, ["1% increased Effect of Arcane Surge on you per # maximum Mana"] = { { isScalable = true } }, + ["1% increased Energy Shield Recharge Rate per # maximum Runic Ward"] = { { isScalable = true } }, ["1% increased Evasion Rating per # Dexterity Allocated in Radius"] = { { isScalable = true } }, ["1% increased Fortification Duration per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } }, ["1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius"] = { { isScalable = true } }, @@ -6172,8 +6319,12 @@ return { ["1% less Damage Taken per # Dexterity"] = { { isScalable = false } }, ["1% less Damage Taken per # Intelligence"] = { { isScalable = false } }, ["1% less Damage Taken per # Strength"] = { { isScalable = false } }, + ["1% less Unarmed Damage per # Strength"] = { { isScalable = true, formats = { "negate" } } }, + ["1% more Runic Ward Regeneration rate per #% of maximum Runic Ward lost from Hits Recently, up to 100% more"] = { { isScalable = true } }, + ["1% more Unarmed Damage per # Strength"] = { { isScalable = true } }, ["1% reduced Chill and Freeze Duration per # Dexterity Allocated in Radius"] = { { isScalable = true } }, ["1% reduced Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius"] = { { isScalable = true, formats = { "negate" } } }, + ["1% reduced Runic Ward Regeneration rate per # maximum Runic Ward"] = { { isScalable = true } }, ["20% chance to Summon an additional Skeleton with Summon Skeletons"] = { }, ["25% chance to cause Bleeding on Hit"] = { }, ["30% increased Global Critical Hit Chance"] = { }, @@ -6192,7 +6343,9 @@ return { ["A Monster in this Area will summon Abaxoth when Slain"] = { }, ["A Monster in this Area will summon a Unique Monster from Beyond when Slain"] = { }, ["A Strongbox in this Area is Corrupted"] = { }, - ["A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates"] = { { isScalable = true } }, + ["A Verisium Remnant in Area will contain a Power Rune"] = { }, + ["A Verisium Remnant in Area will have at least # Rune slots"] = { { isScalable = true } }, + ["A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate"] = { { isScalable = true } }, ["Abyss Cracks have #% chance to spawn all Monsters as at least Magic"] = { { isScalable = true } }, ["Abyss Cracks spawn all Monsters as at least Magic"] = { }, ["Abyss Jewels found are Corrupted and have 5 or 6 random Modifiers"] = { }, @@ -6210,9 +6363,6 @@ return { ["Abyssal Wasting also applies #% to Fire Resistance"] = { { isScalable = true } }, ["Abyssal Wasting also applies #% to Lightning Resistance"] = { { isScalable = true } }, ["Abyssal Wasting you inflict has Infinite Duration"] = { }, - ["Abyssal monsters have #% increased chance to be loyal to Amanamu"] = { { isScalable = true } }, - ["Abyssal monsters have #% increased chance to be loyal to Kurgal"] = { { isScalable = true } }, - ["Abyssal monsters have #% increased chance to be loyal to Ulaman"] = { { isScalable = true } }, ["Abysses are scattered throughout the Area"] = { }, ["Abysses in Area have #% increased chance to lead to an Abyssal Depths"] = { { isScalable = true } }, ["Abysses in Area have #% reduced chance to lead to an Abyssal Depths"] = { { isScalable = true } }, @@ -6254,6 +6404,7 @@ return { ["Adds # to # Cold Damage in Off Hand"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Attacks against you"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Attacks per 10 Dexterity"] = { { isScalable = true }, { isScalable = true } }, + ["Adds # to # Cold Damage to Attacks per 20 Dexterity"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Counterattacks"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Hits against you"] = { { isScalable = true }, { isScalable = true } }, @@ -6262,6 +6413,7 @@ return { ["Adds # to # Cold Damage to Spells and Attacks"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Spells per Power Charge"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage to Spells while no Life is Reserved"] = { { isScalable = true }, { isScalable = true } }, + ["Adds # to # Cold Damage to Unarmed Melee Hits"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage while affected by Hatred"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold Damage while you have Avian's Might"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Cold damage to Attacks"] = { { isScalable = true }, { isScalable = true } }, @@ -6314,7 +6466,6 @@ return { ["Adds # to # Physical Damage to Attacks against you"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Physical Damage to Attacks if you've\ndealt a Critical Hit Recently"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Physical Damage to Attacks per 25 Dexterity"] = { { isScalable = true }, { isScalable = true } }, - ["Adds # to # Physical Damage to Attacks per 25 Strength"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Physical Damage to Attacks per Level"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Physical Damage to Attacks while you have a Bestial Minion"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Physical Damage to Attacks with Weapons"] = { { isScalable = true }, { isScalable = true } }, @@ -6344,6 +6495,8 @@ return { ["Adds Ritual Altars to a Map \n# use remaining"] = { { isScalable = true } }, ["Adds Ritual Altars to a Map \n# uses remaining"] = { { isScalable = true } }, ["Adds Secrets of Suffering"] = { }, + ["Adds Vaal Beacons to a Map \n# use remaining"] = { { isScalable = true } }, + ["Adds Vaal Beacons to a Map \n# uses remaining"] = { { isScalable = true } }, ["Adds Veteran's Awareness"] = { }, ["Adds a Kalguuran Expedition to a Map \n# use remaining"] = { { isScalable = true } }, ["Adds a Kalguuran Expedition to a Map \n# uses remaining"] = { { isScalable = true } }, @@ -6351,6 +6504,7 @@ return { ["Adds a Mirror of Delirium to a Map \n# uses remaining"] = { { isScalable = true } }, ["Adds an Otherworldy Breach to a Map \n# use remaining"] = { { isScalable = true } }, ["Adds an Otherworldy Breach to a Map \n# uses remaining"] = { { isScalable = true } }, + ["Affinity"] = { }, ["Aggravate Bleeding on Enemies when they Enter your Presence"] = { }, ["Aggravate Bleeding on targets you Critically Hit with Attacks"] = { }, ["Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target"] = { }, @@ -6361,6 +6515,7 @@ return { ["All Attack Damage Chills when you Stun"] = { }, ["All Attacks are Critical Hits"] = { }, ["All Attacks count as Empowered Attacks"] = { }, + ["All Birthed items are converted to Gold"] = { }, ["All Chests are Magic or Rare"] = { }, ["All Damage Taken from Hits can Ignite you"] = { }, ["All Damage from Freezing Pulse and Eye of Winter Hits Contributes to Poison Magnitude"] = { }, @@ -6393,12 +6548,15 @@ return { ["All Elemental Damage from Hits Contributes to Flammability and Ignite Magnitudes"] = { }, ["All Elemental Damage from Hits Contributes to Freeze Buildup"] = { }, ["All Elemental Damage from Hits Contributes to Shock Chance"] = { }, + ["All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have"] = { { isScalable = true } }, ["All Metamorph Monsters have Rewards"] = { }, ["All Monster Damage from Hits always Ignites"] = { }, ["All Towers in range of your Empowering Towers deal Double Damage"] = { }, ["All Towers in range of your Empowering Towers have #% chance to deal Double Damage"] = { { isScalable = true } }, ["All bonuses from Equipped Amulet apply to your Minions instead of you"] = { }, ["All damage Contributes to Electrocution Buildup"] = { }, + ["All damage taken bypasses Runic Ward"] = { }, + ["All damage with Attacks Contributes to Electrocution Buildup"] = { }, ["All damage with this Weapon causes Electrocution buildup"] = { }, ["All items dropped are converted to Gold"] = { }, ["Allies in your Presence Gain #% of Damage as Extra Chaos Damage"] = { { isScalable = true } }, @@ -6420,13 +6578,14 @@ return { ["Allies in your Presence deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Allies in your Presence deal #% reduced Elemental Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Allies in your Presence deal #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["Allies in your Presence gain added Attack Damage equal\nto #% of your main hand Weapon's Damage"] = { { isScalable = true } }, + ["Allies in your Presence gain added Attack Damage equal\nto #% of your main hand Weapon's damage"] = { { isScalable = true } }, ["Allies in your Presence have # to Accuracy Rating"] = { { isScalable = true } }, ["Allies in your Presence have #% increased Attack Speed"] = { { isScalable = true } }, ["Allies in your Presence have #% increased Cast Speed"] = { { isScalable = true } }, ["Allies in your Presence have #% increased Critical Damage Bonus"] = { { isScalable = true } }, ["Allies in your Presence have #% increased Critical Hit Chance"] = { { isScalable = true } }, ["Allies in your Presence have #% increased Glory generation"] = { { isScalable = true } }, + ["Allies in your Presence have #% increased Movement Speed"] = { { isScalable = true } }, ["Allies in your Presence have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Allies in your Presence have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Allies in your Presence have #% reduced Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } }, @@ -6434,9 +6593,12 @@ return { ["Allies in your Presence have #% to all Elemental Resistances"] = { { isScalable = true } }, ["Allies in your Presence have Block Chance equal to yours"] = { }, ["Allies in your Presence have Unholy Might while you are not on Low Mana"] = { }, + ["Allies in your Presence share Charges with you"] = { }, ["Allies' Aura Buffs do not affect you"] = { }, ["Allocated Small Passive Skills in Radius grant nothing"] = { }, ["Allocates #"] = { { isScalable = false, formats = { "passive_hash" } } }, + ["Allocates # Sinister Jewel socket"] = { { isScalable = true } }, + ["Allocates # Sinister Jewel sockets"] = { { isScalable = true } }, ["Allocates # if you have the matching modifier on Forbidden Flame"] = { { isScalable = false, formats = { "passive_hash" } } }, ["Allocates # if you have the matching modifier on Forbidden Flesh"] = { { isScalable = false, formats = { "passive_hash" } } }, ["Allow for memories at or adjacent to this location have BONUS"] = { }, @@ -6515,7 +6677,8 @@ return { ["Any number of Poisons from this Weapon can affect a target at the same time"] = { }, ["Applies # Memory Modifiers to Memories placed on or next to this location"] = { { isScalable = true } }, ["Applies a Memory Modifier to Memories placed on or next to this location"] = { }, - ["Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised"] = { }, + ["Apply # Critical Weakness to Enemies when Consuming a Mark on them"] = { { isScalable = true } }, + ["Apply Debilitate to Enemies # Metres in front of you while your Shield is raised"] = { { isScalable = true } }, ["Arc Always Shocks"] = { }, ["Arc Chains an additional # times"] = { { isScalable = true } }, ["Arc Chains an additional time"] = { }, @@ -6533,6 +6696,7 @@ return { ["Archon Buffs also grant #% Critical Hit Chance"] = { { isScalable = true } }, ["Archon Buffs also grant #% increased Movement Speed"] = { { isScalable = true } }, ["Archon Buffs also grant #% to all Elemental Resistances"] = { { isScalable = true } }, + ["Archon Buffs have no recovery period after you lose one"] = { }, ["Archon recovery period expires #% faster"] = { { isScalable = true } }, ["Archon recovery period expires #% slower"] = { { isScalable = true, formats = { "negate" } } }, ["Arctic Armour has #% increased Mana Reservation Efficiency"] = { { isScalable = true } }, @@ -6541,6 +6705,13 @@ return { ["Arctic Armour has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, ["Arctic Armour has no Reservation"] = { }, ["Area Skills have #% chance to Knock Enemies Back on Hit"] = { { isScalable = true } }, + ["Area allows unlimited Revivals"] = { }, + ["Area also counts as a Desert Area"] = { }, + ["Area also counts as a Forest Area"] = { }, + ["Area also counts as a Grass Area"] = { }, + ["Area also counts as a Mountain Area"] = { }, + ["Area also counts as a Swamp Area"] = { }, + ["Area also counts as a Water Area"] = { }, ["Area becomes fatal after some time"] = { }, ["Area can contain Breaches"] = { }, ["Area can contain Mysterious Harbingers"] = { }, @@ -6615,7 +6786,6 @@ return { ["Area contains # additional Unchained Beasts"] = { { isScalable = true } }, ["Area contains # additional Uncommon Chest Marker"] = { { isScalable = true } }, ["Area contains # additional Uncommon Chest Markers"] = { { isScalable = true } }, - ["Area contains # additional Underground Areas"] = { { isScalable = true } }, ["Area contains # additional Wealthy Barrel Clusters"] = { { isScalable = true } }, ["Area contains # additional guarded Vaal Vessels"] = { { isScalable = true } }, ["Area contains # additional pack of Cleansed Monsters"] = { { isScalable = true } }, @@ -6637,6 +6807,7 @@ return { ["Area contains # additional packs of Monsters that deal Physical Damage"] = { { isScalable = true } }, ["Area contains # additional packs of Plagued Monsters"] = { { isScalable = true } }, ["Area contains # additional packs of Poisonous Monsters"] = { { isScalable = true } }, + ["Area contains # additional packs of Rare Beasts"] = { { isScalable = true } }, ["Area contains # additional packs of Shaper Creations"] = { { isScalable = true } }, ["Area contains # additional packs of Transcended Monsters"] = { { isScalable = true } }, ["Area contains # additional packs of Undead"] = { { isScalable = true } }, @@ -6650,7 +6821,9 @@ return { ["Area contains #% reduced number of Runic Monster Markers"] = { { isScalable = true } }, ["Area contains 3 additional Magic Packs which\nhave #% increased Attack, Cast and Movement Speed, and drop #% more items"] = { { isScalable = true }, { isScalable = true } }, ["Area contains 3 additional Magic Packs which\nhave #% reduced Attack, Cast and Movement Speed, and drop #% less items"] = { { isScalable = true, formats = { "negate" } }, { isScalable = true, formats = { "negate" } } }, + ["Area contains Abysses"] = { }, ["Area contains Alva"] = { }, + ["Area contains Breaches"] = { }, ["Area contains Cadiro Perandus"] = { }, ["Area contains Creeping Agony"] = { }, ["Area contains Einhar"] = { }, @@ -6667,6 +6840,7 @@ return { ["Area contains The Immured Fury"] = { }, ["Area contains The Sacred Grove"] = { }, ["Area contains Uhtred, Covetous Traitor"] = { }, + ["Area contains Vaal Beacons"] = { }, ["Area contains Vorana, Last to Fall"] = { }, ["Area contains Yama the Generous"] = { }, ["Area contains Yama the White"] = { }, @@ -6683,6 +6857,7 @@ return { ["Area contains a Keepers of the Trove Bloodline Pack"] = { }, ["Area contains a Labyrinth Trial that awards an Improved Offering to the Goddess"] = { }, ["Area contains a Large Chest"] = { }, + ["Area contains a Mirror of Delirium"] = { }, ["Area contains a Monster possessed by an Ancient Talisman"] = { }, ["Area contains a Perandus Chest"] = { }, ["Area contains a Rare Monster carrying a Tier 2 Talisman"] = { }, @@ -6774,7 +6949,6 @@ return { ["Area contains an additional Tormented Graverobber"] = { }, ["Area contains an additional Tormented Heretic"] = { }, ["Area contains an additional Unchained Beast"] = { }, - ["Area contains an additional Underground Area"] = { }, ["Area contains an additional Unique Talisman"] = { }, ["Area contains an additional Writhing Talisman"] = { }, ["Area contains an additional guarded Vaal Vessel"] = { }, @@ -6793,6 +6967,9 @@ return { ["Area contains up to 1 Monster imprisoned by Essences"] = { }, ["Area contains up to 1 Shrine"] = { }, ["Area has # Monsters that drop a Silver Coin"] = { { isScalable = true } }, + ["Area has # additional Revivals"] = { { isScalable = false } }, + ["Area has # fewer Revival"] = { { isScalable = false } }, + ["Area has # fewer Revivals"] = { { isScalable = false } }, ["Area has # seconds between monster waves"] = { { isScalable = true } }, ["Area has # waves of monsters"] = { { isScalable = true } }, ["Area has #% chance to contain Gifts of the Red Queen per Mortal Fragment used"] = { { isScalable = true } }, @@ -6822,6 +6999,7 @@ return { ["Area has a #% chance to contain Obelisks of Cleansing"] = { { isScalable = true } }, ["Area has a #% chance to contain Obelisks of Corruption"] = { { isScalable = true } }, ["Area has a Monster that drops a Silver Coin"] = { }, + ["Area has an additional Revival"] = { }, ["Area has increased monster variety"] = { }, ["Area has patches of Burning Ground"] = { }, ["Area has patches of Chilled Ground"] = { }, @@ -6899,7 +7077,6 @@ return { ["Areas contain Beasts to hunt"] = { }, ["Areas contain Einhar\nAreas can contain capturable Harvest Beasts"] = { }, ["Areas contain Memory Fragments"] = { }, - ["Areas contain Ritual Altars"] = { }, ["Areas contain The Sacred Grove\nCrops are larger in size\nCrops contain higher tier seeds"] = { }, ["Areas contain a Mirror of Delirium"] = { }, ["Areas contain additional Abysses\nAbysses have already fully opened\nAbysses contain monsters from Beyond this realm"] = { }, @@ -6932,9 +7109,12 @@ return { ["Armageddon Brand has #% increased Activation Frequency"] = { { isScalable = true } }, ["Armageddon Brand has #% reduced Activation Frequency"] = { { isScalable = true, formats = { "negate" } } }, ["Armour Items absorb #% more Corruption"] = { { isScalable = true } }, + ["Armour Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Armour from Equipped Body Armour is doubled"] = { }, ["Armour is increased by Uncapped Fire Resistance"] = { }, ["Armour is zero"] = { }, + ["Armour, Evasion and Energy Shield Modifiers on Birthed Items\nhave Minimum Modifier Level #"] = { { isScalable = true } }, + ["Armour, Evasion and Energy Shield are zero"] = { }, ["Arrows Chain # times"] = { { isScalable = true } }, ["Arrows Fork"] = { }, ["Arrows Pierce # additional Targets"] = { { isScalable = true } }, @@ -6943,6 +7123,7 @@ return { ["Arrows Pierce all Targets after Chaining"] = { }, ["Arrows Pierce all targets after Forking"] = { }, ["Arrows Pierce an additional Target"] = { }, + ["Arrows Return if they have Pierced a target which had Fully Broken Armour"] = { }, ["Arrows deal # to # Added Fire Damage for each time they've Pierced"] = { { isScalable = true }, { isScalable = true } }, ["Arrows deal #% increased Damage with Hits to Targets they Pierce"] = { { isScalable = true } }, ["Arrows deal #% reduced Damage with Hits to Targets they Pierce"] = { { isScalable = true, formats = { "negate" } } }, @@ -6979,6 +7160,7 @@ return { ["Attack Damage Penetrates #% of Enemy Fire Resistance"] = { { isScalable = true } }, ["Attack Damage Penetrates #% of Enemy Lightning Resistance"] = { { isScalable = true } }, ["Attack Damage is Lucky if you've Blocked in the past 20 seconds"] = { }, + ["Attack Damage with Hits is Lucky while you are Surrounded"] = { }, ["Attack Hits Aggravate any Bleeding on targets which is older than # second"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Attack Hits Aggravate any Bleeding on targets which is older than # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Attack Hits against you have #% chance to Impale"] = { { isScalable = true } }, @@ -6996,6 +7178,7 @@ return { ["Attack Skills have # to maximum number of Summoned Ballista Totems"] = { { isScalable = true } }, ["Attack Skills have # to maximum number of Summoned Totems"] = { { isScalable = true } }, ["Attack Skills have Added Lightning Damage equal to #% of maximum Mana"] = { { isScalable = true } }, + ["Attacks Break Armour equal to #% of maximum Runic Ward"] = { { isScalable = true } }, ["Attacks Cause Bleeding when Hitting Cursed Enemies"] = { }, ["Attacks Chain # additional times"] = { { isScalable = true } }, ["Attacks Chain # additional times when in Main Hand"] = { { isScalable = true } }, @@ -7012,8 +7195,10 @@ return { ["Attacks Gain #% of Damage as Extra Fire Damage while Unarmed"] = { { isScalable = true } }, ["Attacks Gain #% of Damage as Extra Lightning Damage"] = { { isScalable = true } }, ["Attacks Gain #% of Damage as Extra Lightning Damage while Unarmed"] = { { isScalable = true } }, + ["Attacks Gain #% of Damage as Extra Physical Damage"] = { { isScalable = true } }, ["Attacks Gain #% of Damage as extra Chaos Damage"] = { { isScalable = true } }, ["Attacks Gain #% of Physical Damage as extra Chaos Damage"] = { { isScalable = true } }, + ["Attacks Gain #% of damage as Extra damage of a random Element"] = { { isScalable = true } }, ["Attacks Maim on Hit against Bleeding Enemies"] = { }, ["Attacks always Maim on Hit"] = { }, ["Attacks always Maim on Hit against Poisoned Enemies"] = { }, @@ -7043,6 +7228,7 @@ return { ["Attacks have Added minimum Lightning Damage equal to #% of maximum Mana"] = { { isScalable = true } }, ["Attacks have added Chaos damage equal to #% of maximum Life"] = { { isScalable = true } }, ["Attacks have added Physical damage equal to #% of maximum Life"] = { { isScalable = true } }, + ["Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage"] = { { isScalable = true } }, ["Attacks that Fire Projectiles Consume up to # additional Steel Shard"] = { { isScalable = true } }, ["Attacks that Fire Projectiles Consume up to # additional Steel Shards"] = { { isScalable = true } }, ["Attacks used by Ballista have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, @@ -7075,8 +7261,10 @@ return { ["Attacks with this Weapon have #% increased Physical Damage per 250 Evasion Rating"] = { { isScalable = true } }, ["Attacks with this Weapon have #% reduced Elemental Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Attacks with this Weapon have #% reduced Physical Damage per 250 Evasion Rating"] = { { isScalable = true, formats = { "negate" } } }, + ["Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana"] = { { isScalable = true }, { isScalable = true } }, ["Attacks with this Weapon have Added Maximum Lightning Damage equal to #% of your Maximum Energy Shield"] = { { isScalable = true } }, ["Attacks with this Weapon inflict Exposure"] = { }, + ["Attribute Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Attribute Requirements can be satisfied by #% of Omniscience"] = { { isScalable = true } }, ["Attribute Requirements of Gems can be satisified by your highest Attribute"] = { }, ["Atziri's Influence"] = { }, @@ -7128,7 +7316,10 @@ return { ["Banner Skills have #% reduced Aura Magnitudes"] = { { isScalable = true, formats = { "negate" } } }, ["Banner Skills have #% reduced Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Banner Skills have no Reservation"] = { }, - ["Banners also grant #% to all Elemental Resistances to you and Allies"] = { { isScalable = true } }, + ["Banners also grant #% of Armour also applies to Elemental Damage to you and Allies"] = { { isScalable = true } }, + ["Banners also grant #% of Life Regenerated per second to affected targets"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Banners also grant #% to all Elemental Resistances affected targets"] = { { isScalable = true } }, + ["Banners also grant Gain Deflection Rating equal to #% of Evasion Rating to you and Allies"] = { { isScalable = true } }, ["Banners always have maximum Valour"] = { }, ["Banners gain # Glory per second"] = { { isScalable = true } }, ["Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"] = { }, @@ -7138,8 +7329,6 @@ return { ["Barrage fires an additional # Projectiles simultaneously on the first and final attacks"] = { { isScalable = true } }, ["Barrage fires an additional Projectile"] = { }, ["Barrage fires an additional Projectile simultaneously on the first and final attacks"] = { }, - ["Barrageable Attacks with this Bow Repeat # time if no enemies are in your Presence"] = { { isScalable = true } }, - ["Barrageable Attacks with this Bow Repeat # times if no enemies are in your Presence"] = { { isScalable = true } }, ["Base Chill Effect is 50%\nChance to Chill is now based on the Damage of the Hit inflicting it"] = { }, ["Base Critical Hit Chance for Attacks with Weapons is #%"] = { { isScalable = false, formats = { "divide_by_one_hundred" } } }, ["Base Critical Hit Chance for Spells is #%"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -7155,6 +7344,7 @@ return { ["Beams Chain # Time"] = { { isScalable = true } }, ["Beams Chain # Times"] = { { isScalable = true } }, ["Bear Skills Convert #% of Physical Damage to Fire Damage"] = { { isScalable = true } }, + ["Bear Spirit gains Embrace of the Wild"] = { }, ["Bear Trap and Siphoning Trap Debuffs also apply #% reduced Cooldown Recovery Rate to affected Enemies"] = { { isScalable = true } }, ["Bear Trap has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Bear Trap has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, @@ -7173,6 +7363,125 @@ return { ["Beyond Portals have a #% chance to spawn an additional Beyond Demon"] = { { isScalable = true } }, ["Beyond Portals spawn an additional Beyond Demon"] = { }, ["Bifurcates Critical Hits"] = { }, + ["Birth 10 additional items of the same type when Birthing Exalted Orbs"] = { }, + ["Birth an 16 to 24 additional Breach Splinters when Birthing Breach Splinters"] = { }, + ["Birth an additional 3 to 7 items of the same type when Birthing Vaal Orbs or Chaos Orbs"] = { }, + ["Birth an additional item of the same type when Birthing Exalted Orbs"] = { }, + ["Birth an additional item of the same type when Birthing Orbs of Alchemy"] = { }, + ["Birth an additional item of the same type when Birthing Quality Currency"] = { }, + ["Birth an additional item of the same type when Birthing Regal Orbs"] = { }, + ["Birthed Breach Rings have #% chance to instead Birth as a Refined Breach Ring"] = { { isScalable = true } }, + ["Birthed Items always have a Caster Modifier"] = { }, + ["Birthed Items always have a Cold Resistance Modifier"] = { }, + ["Birthed Items always have a Dexterity Modifier"] = { }, + ["Birthed Items always have a Fire Resistance Modifier"] = { }, + ["Birthed Items always have a Life Modifier"] = { }, + ["Birthed Items always have a Life or Mana Modifier"] = { }, + ["Birthed Items always have a Lightning Resistance Modifier"] = { }, + ["Birthed Items always have a Mana Modifier"] = { }, + ["Birthed Items always have a Minion Modifier"] = { }, + ["Birthed Items always have a Resistance Modifier"] = { }, + ["Birthed Items always have a Strength Modifier"] = { }, + ["Birthed Items always have an Armour Modifier"] = { }, + ["Birthed Items always have an Armour, Evasion or Energy Shield Modifier"] = { }, + ["Birthed Items always have an Attribute Modifier"] = { }, + ["Birthed Items always have an Energy Shield Modifier"] = { }, + ["Birthed Items always have an Evasion Modifier"] = { }, + ["Birthed Items always have an Intelligence Modifier"] = { }, + ["Birthed Items always have an empty Prefix Modifier"] = { }, + ["Birthed Items always have an empty Suffix Modifier"] = { }, + ["Birthed Items always have two Caster Modifiers"] = { }, + ["Birthed Items always have two Minion Modifiers"] = { }, + ["Birthed Items are always Greater or Perfect"] = { }, + ["Birthed Items can roll additional Caster-related Modifiers"] = { }, + ["Birthed Items can roll additional Minion-related Modifiers"] = { }, + ["Birthed Items cannot be"] = { }, + ["Birthed Items cannot be Amber Amulets"] = { }, + ["Birthed Items cannot be Azure Amulets"] = { }, + ["Birthed Items cannot be Bloodstone Amulets"] = { }, + ["Birthed Items cannot be Crimson Amulets"] = { }, + ["Birthed Items cannot be Gold Amulets"] = { }, + ["Birthed Items cannot be Jade Amulets"] = { }, + ["Birthed Items cannot be Lapis Amulets"] = { }, + ["Birthed Items cannot be Lunar Amulets"] = { }, + ["Birthed Items cannot be Solar Amulets"] = { }, + ["Birthed Items cannot be Stellar Amulets"] = { }, + ["Birthed Items cannot have Attack Modifiers"] = { }, + ["Birthed Items cannot have Caster Modifiers"] = { }, + ["Birthed Items cannot have Charm Modifiers"] = { }, + ["Birthed Items cannot have Cold Modifiers"] = { }, + ["Birthed Items cannot have Critical Modifiers"] = { }, + ["Birthed Items cannot have Dexterity Modifiers"] = { }, + ["Birthed Items cannot have Fire Modifiers"] = { }, + ["Birthed Items cannot have Flask Modifiers"] = { }, + ["Birthed Items cannot have Intelligence Modifiers"] = { }, + ["Birthed Items cannot have Life Modifiers"] = { }, + ["Birthed Items cannot have Lightning Modifiers"] = { }, + ["Birthed Items cannot have Mana Modifiers"] = { }, + ["Birthed Items cannot have Modifiers of type"] = { }, + ["Birthed Items cannot have Strength Modifiers"] = { }, + ["Birthed Items have #% chance to be Biostatic Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Breach Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Corona Amulets"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Forking Belts"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Grasping Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Invoking Belts"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Kinetic Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Lament, Portent or Absent Amulets"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Mnemonic Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Oneiric Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Sinew Belts"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Stalking Belts"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be Vitalic Rings"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Burdensome''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Energising''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Erupting''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Fire Breather's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Glacial''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Instructor's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Monstrous''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Soul Stealer's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Storm Chaser's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Tempest Rider's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Tul's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Underling's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Unshackling''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''Uul-Netol's''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Binding''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Coherence''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Drenching''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Esh''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Exertion''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Imbuing''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Lancing''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Ravaging''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Reverberation''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Scattering''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Vastness''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to be crafted with ''of Xoph''"] = { { isScalable = true } }, + ["Birthed Items have #% chance to have a ''of Unending''"] = { { isScalable = true } }, + ["Birthed Items have #% increased chance to be Absent Amulets"] = { { isScalable = true } }, + ["Birthed Items have #% increased chance to be Lament Amulets"] = { { isScalable = true } }, + ["Birthed Items have #% increased chance to be Portent Amulets"] = { { isScalable = true } }, + ["Birthed Items have #% reduced chance to be Absent Amulets"] = { { isScalable = true, formats = { "negate" } } }, + ["Birthed Items have #% reduced chance to be Lament Amulets"] = { { isScalable = true, formats = { "negate" } } }, + ["Birthed Items have #% reduced chance to be Portent Amulets"] = { { isScalable = true, formats = { "negate" } } }, + ["Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Birthed Items have a Modifier of type"] = { }, + ["Birthed Items have an #% chance to be crafted with ''Contaminating''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''Sacrificial''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''Scratching''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of Amplification''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of Expectation''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of Invigoration''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of Multitudes''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of Punctuality''"] = { { isScalable = true } }, + ["Birthed Items have an #% chance to be crafted with ''of the Cabal''"] = { { isScalable = true } }, + ["Birthed Items have an empty Modifier of type"] = { }, + ["Birthed Orbs of Augmentation are always Greater or Perfect"] = { }, + ["Birthed Orbs of Transmutation are always Greater or Perfect"] = { }, + ["Birthing consumes #% increased Hiveblood"] = { { isScalable = true } }, + ["Birthing consumes #% reduced Hiveblood"] = { { isScalable = true, formats = { "negate" } } }, ["Black Scythe Training"] = { }, ["Blackflame Covenant"] = { }, ["Blade Blast deals #% increased Damage"] = { { isScalable = true } }, @@ -7212,6 +7521,7 @@ return { ["Bleeding on you expires #% slower while Moving"] = { { isScalable = true, formats = { "negate" } } }, ["Bleeding you inflict deals Damage #% faster"] = { { isScalable = true } }, ["Bleeding you inflict deals Damage #% faster per Frenzy Charge"] = { { isScalable = true } }, + ["Bleeding you inflict deals Fire Damage instead of Physical Damage"] = { }, ["Bleeding you inflict is Aggravated"] = { }, ["Bleeding you inflict is Reflected to you"] = { }, ["Bleeding you inflict on Cursed targets is Aggravated"] = { }, @@ -7228,7 +7538,9 @@ return { ["Blight has #% reduced Hinder Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Blight inflicts Withered for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Blind Chilled enemies on Hit"] = { }, + ["Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised"] = { }, ["Blind Enemies on Hit"] = { }, + ["Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree"] = { }, ["Blind Enemies on Hit with Attacks"] = { }, ["Blind Enemies when they Stun you"] = { }, ["Blind Enemies which Hit you while affected by Grace"] = { }, @@ -7289,7 +7601,6 @@ return { ["Bow Attacks cause Bleeding"] = { }, ["Bow Attacks consume #% of your maximum Life Flask Charges if possible to deal added Physical damage equal to #% of Flask's Life Recovery amount"] = { { isScalable = true }, { isScalable = true } }, ["Bow Attacks fire # additional Arrows"] = { { isScalable = true } }, - ["Bow Attacks fire # additional Arrows if you haven't Cast Dash recently"] = { { isScalable = true } }, ["Bow Attacks fire # additional Arrows while Main Hand Accuracy Rating is at least 3000"] = { { isScalable = true } }, ["Bow Attacks fire an additional Arrow"] = { }, ["Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000"] = { }, @@ -7317,6 +7628,7 @@ return { ["Breach Hands are small"] = { }, ["Breach Monsters deal #% increased Damage"] = { { isScalable = true } }, ["Breach Monsters deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Breach Monsters have #% increased Effectiveness"] = { { isScalable = true } }, ["Breach Monsters have #% increased Maximum Life"] = { { isScalable = true } }, ["Breach Monsters have #% reduced Maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Breach Splinters have #% chance to drop as Breachstones instead"] = { { isScalable = true, formats = { "divide_by_one_hundred_2dp_if_required" } } }, @@ -7386,6 +7698,13 @@ return { ["Call of Steel has # to maximum Steel Shards"] = { { isScalable = true } }, ["Call of Steel has #% increased Use Speed"] = { { isScalable = true } }, ["Call to Arms"] = { }, + ["Can Allocate Passive Skills from the Mercenary's starting point"] = { }, + ["Can Allocate Passive Skills from the Ranger's starting point"] = { }, + ["Can Allocate Passive Skills from the Shadow's starting point"] = { }, + ["Can Allocate Passive Skills from the Sorceress's starting point"] = { }, + ["Can Allocate Passive Skills from the Templar's starting point"] = { }, + ["Can Allocate Passive Skills from the Warrior's starting point"] = { }, + ["Can Attack as though using a One Handed Mace while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage"] = { }, ["Can Block from all Directions while Shield is Raised"] = { }, ["Can Reroll Favours at Ritual Altars in your Maps twice as many times"] = { }, ["Can Scout nearby Enemy Patrols and Elite Patrols during Heists"] = { }, @@ -7411,11 +7730,20 @@ return { ["Can have up to # additional Traps placed at a time"] = { { isScalable = true } }, ["Can have up to 3 Crafted Modifiers"] = { }, ["Can instead consume #% of maximum Mana to trigger Charms with insufficient charges"] = { { isScalable = true } }, + ["Can only Birth Catalysts"] = { }, ["Can only be applied to Precursor Tower Maps\nCompleting the Tower makes all nearby Maps accessible"] = { }, ["Can only use a Normal Body Armour"] = { }, ["Can place multiple Banners"] = { }, + ["Can roll Berserking modifiers"] = { }, + ["Can roll Chronomancy modifiers"] = { }, + ["Can roll Decay modifiers"] = { }, + ["Can roll Destruction modifiers"] = { }, + ["Can roll Marksman modifiers"] = { }, ["Can roll Minion Modifiers"] = { }, + ["Can roll Ring Modifiers"] = { }, + ["Can roll Soul modifiers"] = { }, ["Can roll Totem Modifiers"] = { }, + ["Can tattoo Runes onto your body, gaining\nadditional Rune-only sockets:\n• 1 Helmet socket\n• 2 Body Armour sockets\n• 1 Gloves socket\n• 1 Boots socket"] = { }, ["Can unlock # Magical Chest after Lockdown per Wing"] = { { isScalable = true } }, ["Can unlock # Magical Chests after Lockdown per Wing"] = { { isScalable = true } }, ["Can unlock # Mechanical Chest after Lockdown per Wing"] = { { isScalable = true } }, @@ -7428,6 +7756,27 @@ return { ["Cannot Adapt to Fire Damage"] = { }, ["Cannot Adapt to Lightning Damage"] = { }, ["Cannot Be Stunned while you have Energy Shield"] = { }, + ["Cannot Birth Adaptive Catalysts"] = { }, + ["Cannot Birth Carapace Catalysts"] = { }, + ["Cannot Birth Chaos Orbs"] = { }, + ["Cannot Birth Chayula's Catalysts"] = { }, + ["Cannot Birth Divine Orbs"] = { }, + ["Cannot Birth Esh's Catalysts"] = { }, + ["Cannot Birth Flesh Catalysts"] = { }, + ["Cannot Birth Gemcutter's Prisms"] = { }, + ["Cannot Birth Neural Catalysts"] = { }, + ["Cannot Birth Orbs of Annulment"] = { }, + ["Cannot Birth Orbs of Augmentation"] = { }, + ["Cannot Birth Orbs of Chance"] = { }, + ["Cannot Birth Orbs of Transmutation"] = { }, + ["Cannot Birth Perfect Jeweller's Orbs"] = { }, + ["Cannot Birth Reaver Catalysts"] = { }, + ["Cannot Birth Sibilant Catalysts"] = { }, + ["Cannot Birth Skittering Catalysts"] = { }, + ["Cannot Birth Tul's Catalysts"] = { }, + ["Cannot Birth Uul-Netol's Catalysts"] = { }, + ["Cannot Birth Vaal Orbs"] = { }, + ["Cannot Birth Xoph's Catalysts"] = { }, ["Cannot Block"] = { }, ["Cannot Block while you have no Energy Shield"] = { }, ["Cannot Cast Spells"] = { }, @@ -7495,6 +7844,7 @@ return { ["Cannot be Stunned while Leeching"] = { }, ["Cannot be Stunned while you have Ghost Shrouds"] = { }, ["Cannot be Stunned while you have at least 25 Rage"] = { }, + ["Cannot be Used manually"] = { }, ["Cannot be used while Manifested"] = { }, ["Cannot be used with Chaos Inoculation"] = { }, ["Cannot cause Freeze buildup"] = { }, @@ -7515,12 +7865,14 @@ return { ["Cannot inflict Elemental Ailments"] = { }, ["Cannot inflict Ignite"] = { }, ["Cannot kill Enemies with Hits"] = { }, + ["Cannot load or fire Ammunition"] = { }, ["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"] = { }, ["Cannot roll Attack Modifiers"] = { }, ["Cannot roll Caster Modifiers"] = { }, ["Cannot roll Modifiers with Required Level above #"] = { { isScalable = true } }, ["Cannot take Reflected Elemental Damage"] = { }, ["Cannot take Reflected Physical Damage"] = { }, + ["Cannot use Life Flasks\nNon-Unique Life Flasks apply their Effects constantly\nRecovery from Life Flasks cannot be Instant\nRecovery from your Life Flasks cannot be applied to anything other than you"] = { }, ["Cannot use Projectile Attacks"] = { }, ["Cannot use Shield Skills"] = { }, ["Cannot use Warcries"] = { }, @@ -7530,6 +7882,14 @@ return { ["Carved to glorify # new faithful converted by High Templar Maxarius\nPassives in radius are Conquered by the Templars"] = { { isScalable = false } }, ["Carved to glorify # new faithful converted by High Templar Venarius\nPassives in radius are Conquered by the Templars"] = { { isScalable = false } }, ["Cast Level 20 Fire Burst on Hit"] = { }, + ["Caster Critical Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Caster Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Caster Modifiers on Birthed Items roll their values an additional # times,\nkeeping the highest value"] = { { isScalable = true } }, + ["Caster Modifiers on Birthed Items roll their values an additional time, keeping the highest value"] = { }, + ["Caster Prefix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Caster Suffix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Caster speed Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Catalysts can be applied to this item"] = { }, ["Catalysts dropped by Metamorphs are duplicated"] = { }, ["Cause Bleeding on Critical Hit"] = { }, ["Cause Poison on Critical Hit"] = { }, @@ -7552,6 +7912,7 @@ return { ["Caustic Arrow inflicts Withered on Hit for # second base Duration"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Caustic Arrow inflicts Withered on Hit for # seconds base Duration"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Celestial Footprints"] = { }, + ["Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"] = { }, ["Chain # additional Time"] = { { isScalable = true } }, ["Chain # additional Times"] = { { isScalable = true } }, ["Chain Hook deals #% increased Damage"] = { { isScalable = true } }, @@ -7561,9 +7922,12 @@ return { ["Chains an additional time"] = { }, ["Chance to Block Attack Damage is Unlucky"] = { }, ["Chance to Block Damage is Lucky"] = { }, - ["Chance to Deflect Damage is Lucky"] = { }, + ["Chance to Deflect is Lucky"] = { }, + ["Chance to Deflect is Lucky while on Low Life"] = { }, ["Chance to Hit with Attacks can exceed 100%\nGain additional Critical Hit Chance equal to #% of excess chance to Hit with Attacks"] = { { isScalable = true } }, ["Chance to Hit with Attacks can exceed 100%\nGain additional Critical Hit Chance equal to excess chance to Hit with Attacks"] = { }, + ["Chance to Poison is calculated from your base chance to inflict Bleeding instead"] = { }, + ["Chance to inflict Bleeding is calculated from your base chance to Poison instead"] = { }, ["Channelling Skills Cost # Mana"] = { { isScalable = true } }, ["Channelling Skills deal #% increased Attack Damage"] = { { isScalable = true } }, ["Channelling Skills deal #% increased Damage"] = { { isScalable = true } }, @@ -7593,6 +7957,7 @@ return { ["Chaos Golems deal #% increased Damage"] = { { isScalable = true } }, ["Chaos Golems deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Chaos Inoculation"] = { }, + ["Chaos Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Chaos Resistance is doubled"] = { }, ["Chaos Resistance is unaffected by Area Penalties"] = { }, ["Chaos Resistance is zero"] = { }, @@ -7606,10 +7971,14 @@ return { ["Charged Dash has #% less Movement Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Charged Dash has #% more Movement Speed"] = { { isScalable = true } }, ["Charged Storm Cloud deals # more Damage"] = { { isScalable = true } }, + ["Charm Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Charms applied to you have #% increased Effect"] = { { isScalable = true } }, ["Charms applied to you have #% increased Effect per 10 Tribute"] = { { isScalable = true } }, + ["Charms applied to you have #% increased Effect per empty Charm slot"] = { { isScalable = true } }, ["Charms applied to you have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Charms applied to you have #% reduced Effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["Charms applied to you have #% reduced Effect per empty Charm slot"] = { { isScalable = true, formats = { "negate" } } }, + ["Charms gain # charge per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, ["Charms gain # charges per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, ["Charms gain # charges per Second if you have at least 200 Tribute"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, ["Charms use no Charges"] = { }, @@ -7656,6 +8025,7 @@ return { ["Cold Damage from Hits does not contribute to Freeze Buildup"] = { }, ["Cold Damage is increased by 1% per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } }, ["Cold Exposure you inflict lowers Total Cold Resistance by an extra #%"] = { { isScalable = true } }, + ["Cold Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Cold Resistance and Lightning Resistance in Radius are Transformed to increased Melee Damage"] = { }, ["Cold Resistance is #%"] = { { isScalable = false } }, ["Cold Resistance is unaffected by Area Penalties"] = { }, @@ -7666,8 +8036,6 @@ return { ["Cold Snap has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Cold Snap has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["Cold Snap has a #% chance to grant a Power Charge on Killing Blow"] = { { isScalable = true } }, - ["Combo count loss occurs #% faster"] = { { isScalable = true } }, - ["Combo count loss occurs #% slower"] = { { isScalable = true, formats = { "negate" } } }, ["Combust has #% increased Area of Effect"] = { { isScalable = true } }, ["Combust is Disabled"] = { }, ["Commanded leadership over # warriors under Akoya\nPassives in radius are Conquered by the Karui"] = { { isScalable = false } }, @@ -7680,14 +8048,25 @@ return { ["Commissioned # coins to commemorate Victario\nPassives in radius are Conquered by the Eternal Empire"] = { { isScalable = false, formats = { "times_twenty" } } }, ["Companions deal #% increased Damage"] = { { isScalable = true } }, ["Companions deal #% increased damage against Immobilised enemies"] = { { isScalable = true } }, + ["Companions deal #% increased damage per Idol in your Equipment"] = { { isScalable = true } }, + ["Companions deal #% increased damage to your Marked targets"] = { { isScalable = true } }, + ["Companions deal #% more Damage for each different type of dead Companion you have"] = { { isScalable = true } }, ["Companions deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Companions deal #% reduced damage against Immobilised enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["Companions deal #% reduced damage per Idol in your Equipment"] = { { isScalable = true, formats = { "negate" } } }, + ["Companions deal #% reduced damage to your Marked targets"] = { { isScalable = true, formats = { "negate" } } }, + ["Companions gain #% Damage as extra Chaos Damage"] = { { isScalable = true } }, + ["Companions gain #% Damage as extra Cold Damage"] = { { isScalable = true } }, + ["Companions gain Onslaught for # second on Hitting your Marked targets"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, + ["Companions gain Onslaught for # seconds on Hitting your Marked targets"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Companions gain your Dexterity"] = { }, ["Companions gain your Strength"] = { }, - ["Companions have #% chance to Maim on HitDamage"] = { { isScalable = true } }, + ["Companions have #% chance to Maim on Hit"] = { { isScalable = true } }, + ["Companions have #% chance to gain Onslaught on Kill"] = { { isScalable = true } }, ["Companions have #% increased Accuracy Rating"] = { { isScalable = true } }, ["Companions have #% increased Area of Effect"] = { { isScalable = true } }, ["Companions have #% increased Attack Speed"] = { { isScalable = true } }, + ["Companions have #% increased Movement Speed"] = { { isScalable = true } }, ["Companions have #% increased Reservation"] = { { isScalable = true } }, ["Companions have #% increased maximum Life"] = { { isScalable = true } }, ["Companions have #% reduced Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } }, @@ -7697,8 +8076,14 @@ return { ["Companions have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Companions have #% to Chaos Resistance"] = { { isScalable = true } }, ["Companions have #% to all Elemental Resistances"] = { { isScalable = true } }, + ["Companions have a #% chance to Poison on Hit"] = { { isScalable = true } }, + ["Companions in your Presence Gain #% of Damage as Extra Chaos Damage"] = { { isScalable = true } }, + ["Companions in your Presence Gain #% of Damage as Extra Damage of a random Element"] = { { isScalable = true } }, ["Companions in your Presence deal #% increased Damage while you are Shapeshifted"] = { { isScalable = true } }, ["Companions in your Presence deal #% reduced Damage while you are Shapeshifted"] = { { isScalable = true } }, + ["Companions in your Presence gain # Rage on hit"] = { { isScalable = true } }, + ["Companions in your Presence have #% to Chaos Resistance"] = { { isScalable = true } }, + ["Companions in your Presence have #% to all Elemental Resistances"] = { { isScalable = true } }, ["Companions in your Presence have Onslaught while you are Shapeshifted"] = { }, ["Completing a Heist generates # additional Reveals"] = { { isScalable = true } }, ["Completing a Heist generates an additional Reveal"] = { }, @@ -7790,12 +8175,18 @@ return { ["Contains an additional Expedition Encounter"] = { }, ["Contains an additional Pirate Unique item"] = { }, ["Contains buried treasure"] = { }, + ["Contains the Fragmented Mirror"] = { }, ["Contains waves of Monsters"] = { }, ["Conversion Trap #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Conversion Trap #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, + ["Convert #% of Fire Damage with Mace Skills to Cold Damage"] = { { isScalable = true } }, + ["Convert #% of Maximum Life to Armour per 1% maximum Chaos Resistance"] = { { isScalable = false } }, ["Convert #% of Requirements to Dexterity"] = { { isScalable = true } }, ["Convert #% of Requirements to Intelligence"] = { { isScalable = true } }, ["Convert #% of Requirements to Strength"] = { { isScalable = true } }, + ["Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%"] = { { isScalable = true } }, + ["Convert 100% of maximum Energy Shield to maximum Divinity"] = { }, + ["Convert All Armour to Evasion Rating"] = { }, ["Converted Enemies Taunt on Hit"] = { }, ["Converted Enemies deal #% increased Damage"] = { { isScalable = true } }, ["Converted Enemies deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -7846,6 +8237,7 @@ return { ["Create Shocked Ground on Death, lasting 3 seconds"] = { }, ["Create Shocked Ground when Hit"] = { }, ["Create a Blighted Spore when your Skills or Minions Kill a Rare Monster"] = { }, + ["Create a Fragment of Divinity in your Presence every 4 seconds"] = { }, ["Create a Smoke Cloud when Hit"] = { }, ["Create a copy of Beasts Captured in Area"] = { }, ["Creates Chilled Ground on Use"] = { }, @@ -7861,9 +8253,9 @@ return { ["Cremation can have up to # additional Geysers at a time"] = { { isScalable = true } }, ["Crimson Assault"] = { }, ["Crimson Dance"] = { }, - ["Critical Hit Chance is #% for Hits with this Weapon"] = { { isScalable = true } }, ["Critical Hit Chance is increased by Lightning Resistance"] = { }, ["Critical Hit Chance is increased by Overcapped Lightning Resistance"] = { }, + ["Critical Hit chance for Attacks is #%"] = { { isScalable = true } }, ["Critical Hit chance is Lucky against Parried enemies"] = { }, ["Critical Hit chance is Unlucky against Parried enemies"] = { }, ["Critical Hits Ignore Enemy Monster Lightning Resistance"] = { }, @@ -7871,7 +8263,6 @@ return { ["Critical Hits Poison the enemy"] = { }, ["Critical Hits cannot Extract Impale"] = { }, ["Critical Hits deal no Damage"] = { }, - ["Critical Hits do not deal extra Damage"] = { }, ["Critical Hits do not inherently Ignite"] = { }, ["Critical Hits have #% chance to Blind Enemies while you have Cat's Stealth"] = { { isScalable = true } }, ["Critical Hits have #% chance to inflict Malignant Madness if The Eater of Worlds is dominant"] = { { isScalable = true } }, @@ -7901,7 +8292,6 @@ return { ["Culling Strike"] = { }, ["Culling Strike against Beasts while your Companion is in your Presence"] = { }, ["Culling Strike against Burning Enemies"] = { }, - ["Culling Strike against Enemies Cursed with Poacher's Mark"] = { }, ["Culling Strike against Enemies you Mark"] = { }, ["Culling Strike against Frozen Enemies"] = { }, ["Culling Strike during Effect"] = { }, @@ -7946,24 +8336,50 @@ return { ["Curses you inflict are reflected back to you"] = { }, ["Curses you inflict can affect Hexproof Enemies"] = { }, ["Curses you inflict have infinite Duration"] = { }, + ["Curses you inflict ignore Curse limit"] = { }, + ["Curses you inflict spread to enemies within 3 metres when Cursed enemy dies"] = { }, ["Curses you with Punishment on Kill"] = { }, ["Curses you with Silence when Hit"] = { }, - ["DNT-UNUSED # to Evasion Rating per level"] = { { isScalable = true } }, + ["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 } }, + ["DNT-UNUSED Always Inflict Bleeding on Hit at Maximum Corrupted Form"] = { }, + ["DNT-UNUSED Always Inflict Shock on Hit at Maximum Cleansed Form"] = { }, ["DNT-UNUSED BAD VALUE"] = { }, + ["DNT-UNUSED Blasphemy has no Reservation"] = { }, + ["DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated"] = { }, ["DNT-UNUSED Break Armour equal to #% of Physical Spell damage dealt"] = { { isScalable = true } }, ["DNT-UNUSED Coming Soon"] = { }, - ["DNT-UNUSED Expending Combo adds # second to remaining Energy Shield Recharge delay per Combo"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, - ["DNT-UNUSED Expending Combo adds # seconds to remaining Energy Shield Recharge delay per Combo"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, - ["DNT-UNUSED Expending Combo removes # second from remaining Energy Shield Recharge delay per Combo"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, - ["DNT-UNUSED Expending Combo removes # seconds from remaining Energy Shield Recharge delay per Combo"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["DNT-UNUSED Gain # Guard when you Trigger a Skill for every 0.1 seconds of that Skill's base use time"] = { { isScalable = true } }, - ["DNT-UNUSED Gain # additional Combo whenever you gain Combo"] = { { isScalable = true } }, ["DNT-UNUSED Gain #% Edict Declaration when you disable a rare monster mod"] = { { isScalable = true } }, + ["DNT-UNUSED Gain #% of damage as Lightning Damage for each stack of Cleansed Form you currently have"] = { { isScalable = true } }, + ["DNT-UNUSED Gain #% of damage as Physical Damage for each stack of Corrupted Form you currently have"] = { { isScalable = true } }, + ["DNT-UNUSED Gain 1 stack of Cleansed Form on Bow Attack"] = { }, + ["DNT-UNUSED Gain 1 stack of Corrupted Form on Bow Attack"] = { }, ["DNT-UNUSED Hitting a Rare Monster disable one of its Modifiers"] = { }, + ["DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup"] = { }, + ["DNT-UNUSED Maximum # stacks of Cleansed and Corrupted Forms"] = { { isScalable = true } }, ["DNT-UNUSED Maximum Rage is doubled during effect"] = { }, + ["DNT-UNUSED Strike Skills used while you have Finality always perform a Final Strike is they have one"] = { }, + ["DNT-UNUSED Take # Lightning Damage on Attack per stack of Cleamsed Form in excess of your stacks of Corrupted Form"] = { { isScalable = true } }, + ["DNT-UNUSED Take # Physical Damage on Attack per stack of Corrupted Form in excess of your stacks of Cleansed Form"] = { { isScalable = true } }, + ["DNT-UNUSED# additional target"] = { { isScalable = true } }, + ["DNT-UNUSED# additional targets"] = { { isScalable = true } }, + ["DNT-UNUSEDCreate Chilled Ground as though dealing # damage when you use a Wind Skill"] = { { isScalable = true } }, + ["DNT-UNUSEDCreate Ignited Ground as though dealing # damage when you use a Wind Skill"] = { { isScalable = true } }, + ["DNT-UNUSEDCreate Shocked Ground when you use a Wind Skill"] = { }, + ["DNT-UNUSEDNon-Travel Attack Skills happen # additional Time"] = { { isScalable = true } }, + ["DNT-UNUSEDNon-Travel Attack Skills happen # additional Times"] = { { isScalable = true } }, + ["DNT-UNUSEDSkills hapenn an additional Time"] = { }, + ["DNT-UNUSEDSkills happen an additional # Times"] = { { isScalable = true } }, + ["DNT-UNUSEDSpells hapenn an additional # Times"] = { { isScalable = true } }, + ["DNT-UNUSEDSpells happen an additional Time"] = { }, + ["DNT-UNUSEDWind Skills cannot deal non-Elemental Damage"] = { }, + ["DNT-UNUSEDWith at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has #% increased Area of Effect per Enemy Hit"] = { { isScalable = true } }, + ["DNT-Unused Convert #% of Physical Damage with Mace Skills to Cold Damage"] = { { isScalable = true } }, ["Damage Blocked is Recouped as Mana"] = { }, ["Damage Cone has +1 Radius per # Rage"] = { { isScalable = true } }, + ["Damage Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Damage Penetrates #% Chaos Resistance"] = { { isScalable = true } }, ["Damage Penetrates #% Cold Resistance"] = { { isScalable = true } }, ["Damage Penetrates #% Cold Resistance against Chilled Enemies"] = { { isScalable = true } }, @@ -7996,11 +8412,13 @@ return { ["Damage of Enemies Hitting you is Lucky while you are on Full Life"] = { }, ["Damage of Enemies Hitting you is Lucky while you are on Low Life"] = { }, ["Damage of Enemies Hitting you is Lucky while you have a Magic Ring Equipped"] = { }, + ["Damage of Enemies Hitting you is Unlucky if\nyour Runic Ward has been damaged Recently"] = { }, ["Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"] = { }, ["Damage of Enemies Hitting you is Unlucky while you are on Full Life"] = { }, ["Damage of Enemies Hitting you is Unlucky while you are on Low Life"] = { }, ["Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped"] = { }, ["Damage over Time bypasses your Energy Shield\nWhile not on Full Life, Sacrifice #% of maximum Mana per Second to Recover that much Life"] = { { isScalable = false } }, + ["Damage over Time cannot bypass your Energy Shield"] = { }, ["Damage penetrates #% Cold Resistance while affected by Herald of Ice"] = { { isScalable = true } }, ["Damage penetrates #% Fire Resistance while affected by Herald of Ash"] = { { isScalable = true } }, ["Damage penetrates #% Lightning Resistance while affected by Herald of Thunder"] = { { isScalable = true } }, @@ -8057,6 +8475,7 @@ return { ["Deal up to #% more Melee Damage to Enemies, based on proximity"] = { { isScalable = true } }, ["Deal your Thorns Damage to Enemies you Hit"] = { }, ["Deal your Thorns Damage to Enemies you Stun with Melee Attacks"] = { }, + ["Deal your Thorns damage to enemies you Critically Hit with Melee Attacks"] = { }, ["Deals # Chaos Damage per second to nearby Enemies"] = { { isScalable = false, formats = { "per_minute_to_per_second_0dp" } } }, ["Deals # to # Chaos Damage"] = { { isScalable = true }, { isScalable = true } }, ["Deals # to # Cold Damage"] = { { isScalable = true }, { isScalable = true } }, @@ -8068,6 +8487,7 @@ return { ["Deals #% of current Mana as Chaos Damage to you when Effect ends"] = { { isScalable = true } }, ["Deals base Chaos Damage equal to #% of your Current Mana"] = { { isScalable = true } }, ["Debilitate Enemies for 1 second on Hit"] = { }, + ["Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree"] = { }, ["Debilitate nearby Enemies for # Seconds when Effect ends"] = { { isScalable = true } }, ["Debuffs inflicted by Hazards have #% increased Slow Magnitude"] = { { isScalable = true } }, ["Debuffs inflicted by Hazards have #% reduced Slow Magnitude"] = { { isScalable = true, formats = { "negate" } } }, @@ -8079,13 +8499,15 @@ return { ["Debuffs you inflict have #% reduced Slow Magnitude"] = { { isScalable = true, formats = { "negate" } } }, ["Decimating Strike"] = { }, ["Decoy, Devouring and Rejuvenation Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit"] = { { isScalable = true } }, - ["Defences are zero"] = { }, + ["Defeating the Arbiter grants completion of a section of the Fortress"] = { }, ["Defences of Items attached to Animated Guardian also apply to Animated Weapons"] = { }, ["Defend against Hits as though you had #% more Armour per 1% current Energy Shield"] = { { isScalable = true } }, ["Defend with #% of Armour against Critical Hits"] = { { isScalable = true } }, ["Defend with #% of Armour against Hits from Enemies that are further than 6m away"] = { { isScalable = true } }, ["Defend with #% of Armour against Projectile Attacks"] = { { isScalable = true } }, ["Defend with #% of Armour while not on Low Energy Shield"] = { { isScalable = true } }, + ["Defend with #% of Armour while on Low Energy Shield"] = { { isScalable = true } }, + ["Defend with #% of Armour while you have Energy Shield"] = { { isScalable = true } }, ["Defend with 200% of Armour"] = { }, ["Defend with 200% of Armour during effect"] = { }, ["Deferring Favours at Ritual Altars in Area costs #% increased Tribute"] = { { isScalable = true } }, @@ -8139,6 +8561,7 @@ return { ["Despair has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } }, ["Despair has no Reservation if Cast as an Aura"] = { }, ["Destroys Enemies Killed by Critical Hits"] = { }, + ["Destroys all Augment Sockets on the item to create a Jewel Socket"] = { }, ["Determination has #% increased Aura Effect"] = { { isScalable = true } }, ["Determination has #% increased Mana Reservation Efficiency"] = { { isScalable = true } }, ["Determination has #% increased Reservation"] = { { isScalable = true } }, @@ -8155,7 +8578,9 @@ return { ["Detonator skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Detonator skills have #% reduced damage"] = { { isScalable = true, formats = { "negate" } } }, ["Devouring Totem has #% Chance to Consume an additional corpse"] = { { isScalable = true } }, + ["Dexterity Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus"] = { }, + ["Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills"] = { }, ["Dexterity from Passives in Radius is Transformed to Intelligence"] = { }, ["Dexterity from Passives in Radius is Transformed to Strength"] = { }, ["Discharge Cooldown is # ms"] = { { isScalable = true } }, @@ -8176,6 +8601,7 @@ return { ["Discovers # Blueprint Reveals upon completion of a Heist Contract Mission"] = { { isScalable = true } }, ["Discovers a Blueprint Reveal upon completion of a Heist Contract Mission"] = { }, ["Divine Flesh"] = { }, + ["Divine Flight"] = { }, ["Divine Ire Damages # additional nearby Enemies when gaining Stages"] = { { isScalable = true } }, ["Divine Ire Damages an additional nearby Enemy when gaining Stages"] = { }, ["Divine Ire deals #% increased Damage"] = { { isScalable = true } }, @@ -8185,6 +8611,7 @@ return { ["Divine Shield"] = { }, ["Dodge Roll avoids all Hits"] = { }, ["Dodge Roll passes through Enemies"] = { }, + ["Dodging can expend up to # Owl Feathers, granting Primal Bounty 100% more\nEmpowerment effect per additional Feather expended"] = { { isScalable = true, formats = { "add_one" } } }, ["Does not consume Sextant Uses"] = { }, ["Dominating Blow can summon # additional Magic Sentinels of Dominance"] = { { isScalable = true } }, ["Dominating Blow can summon # additional Rare Sentinels of Dominance"] = { { isScalable = true } }, @@ -8255,11 +8682,12 @@ return { ["Earthshatter has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Eat a Soul when you Hit a Unique Enemy, no more than once every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Eat a Soul when you Hit a Unique Enemy, no more than once every second"] = { }, + ["Echoed Spells have #% increased Area of Effect"] = { { isScalable = true } }, + ["Echoed Spells have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Effect and Duration of Flames of Chayula on You is Doubled"] = { }, ["Effect is not removed when Unreserved Life is Filled"] = { }, ["Effect is not removed when Unreserved Mana is Filled"] = { }, ["Effect is removed when Hit by a Player"] = { }, - ["Effect is removed when Ward Breaks"] = { }, ["Effects of Consecrated Ground you create Linger for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Effects of Consecrated Ground you create Linger for 1 second"] = { }, ["Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, @@ -8274,13 +8702,15 @@ return { ["Elemental Ailments inflicted on Enemies Exposed by you have #% reduced Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Elemental Ailments other than Freeze you inflict are Reflected to you"] = { }, ["Elemental Damage also Contributes to Bleeding Magnitude"] = { }, + ["Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance"] = { }, + ["Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance"] = { }, ["Elemental Damage taken from Hits bypasses Energy Shield"] = { }, ["Elemental Damage with Hits is Lucky while you are Shocked"] = { }, - ["Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead"] = { }, ["Elemental Equilibrium"] = { }, ["Elemental Hit deals #% increased Damage"] = { { isScalable = true } }, ["Elemental Hit deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Elemental Overload"] = { }, + ["Elemental Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Elemental Resistances are capped by your highest Maximum Elemental Resistance instead"] = { }, ["Elemental Storm has #% less Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["Elemental Storm has #% more Cooldown Recovery Rate"] = { { isScalable = true } }, @@ -8347,7 +8777,6 @@ return { ["Enemies Ignited by you have #% of Physical Damage they deal converted to Fire"] = { { isScalable = true } }, ["Enemies Ignited by you have #% to Fire Resistance"] = { { isScalable = true } }, ["Enemies Ignited by you permanently take #% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%"] = { { isScalable = true } }, - ["Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite"] = { }, ["Enemies Ignited or Chilled by you have #% to Elemental Resistances"] = { { isScalable = true } }, ["Enemies Immobilised by you take #% less Damage"] = { { isScalable = true } }, ["Enemies Immobilised by you take #% more Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -8361,6 +8790,8 @@ return { ["Enemies Maimed by you take #% increased Physical Damage"] = { { isScalable = true } }, ["Enemies Maimed by you take #% reduced Damage Over Time"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies Maimed by you take #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Enemies Marked or Cursed by you take #% increased Damage"] = { { isScalable = true } }, + ["Enemies Marked or Cursed by you take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies Petrified by Your Stone Gaze Towers take #% increased Damage"] = { { isScalable = true } }, ["Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning"] = { { isScalable = true } }, ["Enemies Shocked or Frozen by you take #% increased Elemental Damage"] = { { isScalable = true } }, @@ -8401,6 +8832,7 @@ return { ["Enemies have #% reduced Evasion if you have Hit them Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies have Maximum Concentration equal to #% of their Maximum Life"] = { { isScalable = true } }, ["Enemies have an Accuracy Penalty against you based on Distance"] = { }, + ["Enemies have no Critical Damage Bonus for # seconds after you Blind them"] = { { isScalable = true } }, ["Enemies in Jagged Ground you create take #% increased Damage"] = { { isScalable = true } }, ["Enemies in Jagged Ground you create take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies in Void Sphere's range take up to #% increased Damage, based on distance from the Void Sphere"] = { { isScalable = true } }, @@ -8417,6 +8849,7 @@ return { ["Enemies in your Presence count as having #% less Power"] = { { isScalable = false, formats = { "negate" } } }, ["Enemies in your Presence count as having #% more Power"] = { { isScalable = false } }, ["Enemies in your Presence count as having double Power"] = { }, + ["Enemies in your Presence gain 1 Gruelling Madness each second"] = { }, ["Enemies in your Presence have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Enemies in your Presence have #% increased Life Regeneration rate"] = { { isScalable = true } }, ["Enemies in your Presence have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, @@ -8424,6 +8857,7 @@ return { ["Enemies in your Presence have #% to Fire Resistance"] = { { isScalable = true } }, ["Enemies in your Presence have Exposure"] = { }, ["Enemies in your Presence have Lightning Resistance equal to yours"] = { }, + ["Enemies in your Presence have additional Power equal to their Gruelling Madness"] = { }, ["Enemies in your Presence have at least #% of Life Reserved"] = { { isScalable = true } }, ["Enemies in your Presence have no Elemental Resistances"] = { }, ["Enemies in your Presence killed by anyone count as being killed by you instead"] = { }, @@ -8452,6 +8886,8 @@ return { ["Enemies regain #% of Concentration every second if they haven't lost Concentration in the past 5 seconds"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Enemies slain by Socketed Gems drop #% increased item quantity"] = { { isScalable = false } }, ["Enemies slain by Socketed Gems drop #% reduced item quantity"] = { { isScalable = false, formats = { "negate" } } }, + ["Enemies standing on Chilled Ground take #% increased Fire Damage"] = { { isScalable = true } }, + ["Enemies standing on Ignited Ground take #% increased Cold Damage"] = { { isScalable = true } }, ["Enemies take #% increased Damage for each Elemental Ailment type among\nyour Ailments on them"] = { { isScalable = true } }, ["Enemies take #% increased Damage for each of your Brands Attached to them"] = { { isScalable = true } }, ["Enemies take #% increased Elemental Damage from your Hits for\neach Withered you have inflicted on them"] = { { isScalable = true } }, @@ -8460,10 +8896,13 @@ return { ["Enemies take #% reduced Elemental Damage from your Hits for\neach Withered you have inflicted on them"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies that have Hit you with an Attack Recently have #% increased Attack Speed"] = { { isScalable = true } }, ["Enemies that have Hit you with an Attack Recently have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, + ["Enemies which are on Full Life cannot Evade your Hits"] = { }, ["Enemies you Attack Reflect # Physical Damage to you"] = { { isScalable = true } }, ["Enemies you Attack Reflect # to # Chaos Damage to you"] = { { isScalable = true }, { isScalable = true } }, ["Enemies you Attack Reflect # to # Physical Damage to you"] = { { isScalable = true }, { isScalable = true } }, ["Enemies you Attack have #% chance to Reflect # to # Chaos Damage to you"] = { { isScalable = true }, { isScalable = true }, { isScalable = true } }, + ["Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds"] = { { isScalable = true } }, + ["Enemies you Critically Hit get #% reduced Life Regeneration Rate for 4 seconds"] = { { isScalable = true, formats = { "negate" } } }, ["Enemies you Curse are Hindered, with 15% reduced Movement Speed"] = { }, ["Enemies you Curse are Intimidated"] = { }, ["Enemies you Curse are Unnerved"] = { }, @@ -8517,6 +8956,7 @@ return { ["Energy Blades have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Energy Blades have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } }, ["Energy Generation is doubled"] = { }, + ["Energy Shield Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Energy Shield Recharge has no delay"] = { }, ["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"] = { }, ["Energy Shield Recharge starts after spending a total of\n 2000 Mana, no more than once every 2 seconds"] = { }, @@ -8555,6 +8995,7 @@ return { ["Ethereal Knives requires # additional Projectiles Fired to leave each Lingering Blade"] = { { isScalable = true } }, ["Ethereal Knives requires # fewer Projectile Fired to leave each Lingering Blade"] = { { isScalable = true, formats = { "negate" } } }, ["Ethereal Knives requires # fewer Projectiles Fired to leave each Lingering Blade"] = { { isScalable = true, formats = { "negate" } } }, + ["Evasion Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Evasion Rating also grants Elemental Damage reduction"] = { }, ["Evasion Rating from Equipped Body Armour is halved"] = { }, ["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled"] = { }, @@ -8563,6 +9004,7 @@ return { ["Evasion Rating is increased by Uncapped Lightning Resistance"] = { }, ["Evasion Rating is zero"] = { }, ["Everlasting Sacrifice"] = { }, + ["Every # seconds, gain a Verisium Infusion"] = { { isScalable = true } }, ["Every 10 Rage also grants #% increased Physical Damage"] = { { isScalable = true } }, ["Every 10 Rage also grants #% reduced Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Every 10 seconds for 4 seconds, Curses have no effect on you"] = { }, @@ -8587,13 +9029,20 @@ return { ["Every 4 seconds, Regenerate #% of maximum Life over one second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Every 4 seconds, Regenerate Energy Shield equal to #% of Evasion Rating over 1 second"] = { { isScalable = true } }, ["Every 4 seconds, Regenerate Life equal to #% of Armour and Evasion Rating over 1 second"] = { { isScalable = true } }, + ["Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds"] = { { isScalable = true } }, + ["Every 5 Rage also grants #% of Damage taken Recouped as Life"] = { { isScalable = true } }, ["Every 5 seconds, remove Curses and Elemental Ailments from you"] = { }, ["Every 8 seconds, gain Avatar of Fire for 4 seconds"] = { }, ["Every Rage also grants #% increased Armour"] = { { isScalable = true } }, + ["Every Rage also grants #% increased Cold Damage"] = { { isScalable = true } }, + ["Every Rage also grants #% increased Evasion Rating"] = { { isScalable = true } }, ["Every Rage also grants #% increased Fire Damage"] = { { isScalable = true } }, + ["Every Rage also grants #% increased Lightning Damage"] = { { isScalable = true } }, ["Every Rage also grants #% increased Spell Damage"] = { { isScalable = true } }, ["Every Rage also grants #% increased Stun Threshold"] = { { isScalable = true } }, - ["Every Rage also grants #% reduced Fire Damage"] = { { isScalable = true } }, + ["Every Rage also grants #% reduced Cold Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Every Rage also grants #% reduced Fire Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Every Rage also grants #% reduced Lightning Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Every Rage also grants #% reduced Spell Damage"] = { { isScalable = true } }, ["Every Rage also grants you #% increased Minion Attack Speed"] = { { isScalable = true } }, ["Every Rage also grants you #% increased Minion Damage"] = { { isScalable = true } }, @@ -8601,13 +9050,19 @@ return { ["Every Rage also grants you #% reduced Minion Damage"] = { { isScalable = true } }, ["Every Third Slam skill that doesn't create Fissures which you use yourself causes # additional Aftershock ahead and to each side of the initial area"] = { { isScalable = true } }, ["Every Third Slam skill that doesn't create Fissures which you use yourself causes # additional Aftershocks ahead and to each side of the initial area"] = { { isScalable = true } }, + ["Every five Rage also grants you #% increased Minion Attack Speed"] = { { isScalable = true } }, + ["Every five Rage also grants you #% increased Movement Speed"] = { { isScalable = true } }, + ["Every five Rage also grants you #% reduced Minion Attack Speed"] = { { isScalable = true } }, + ["Every five Rage also grants you #% reduced Movement Speed"] = { { isScalable = true } }, ["Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted\nEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted"] = { }, ["Every second Slam Skill you use yourself is Ancestrally Boosted"] = { }, + ["Every second, gain a Verisium Infusion"] = { }, ["Every second, inflicts Critical Weakness on enemies in your Presence for # second"] = { { isScalable = true } }, ["Every second, inflicts Critical Weakness on enemies in your Presence for # seconds"] = { { isScalable = true } }, ["Excavated Chests have a #% chance to contain twice as many Items"] = { { isScalable = true } }, ["Excess Life Recovery added as Guard for # seconds"] = { { isScalable = true } }, ["Excess Life Recovery from Leech is applied to Energy Shield"] = { }, + ["Excess Runic Ward Recovery from Regeneration is applied to Mana"] = { }, ["Exerted Attacks have #% chance to deal Double Damage"] = { { isScalable = true } }, ["Expedition Monsters in your Maps spawn with half of their Life missing"] = { }, ["Expeditions in Area have # Remnants"] = { { isScalable = true } }, @@ -8644,16 +9099,12 @@ return { ["Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Favours at Ritual Altars in Area costs #% increased Tribute"] = { { isScalable = true } }, ["Favours at Ritual Altars in Area costs #% reduced Tribute"] = { { isScalable = true, formats = { "negate" } } }, - ["Feeding Frenzy base Duration is # second"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, - ["Feeding Frenzy base Duration is # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Final Area Boss drops an additional Conqueror Map"] = { }, ["Final Area Boss drops an additional Elder Guardian Map (Tier 14+)"] = { }, ["Final Area Boss drops an additional Shaper Guardian Map (Tier 14+)"] = { }, ["Final Boss drops higher Level Items"] = { }, - ["Final Repeat of Attack Skills deals #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["Final Repeat of Attack Skills deals #% more Damage"] = { { isScalable = true } }, - ["Final Repeat of Spells has #% increased Area of Effect"] = { { isScalable = true } }, - ["Final Repeat of Spells has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis"] = { }, + ["Fire Damage also Contributes to Bleeding Magnitude"] = { }, ["Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes"] = { }, ["Fire Damage from Hits also Contributes to Chill Magnitude"] = { }, ["Fire Damage from Hits also Contributes to Freeze Buildup"] = { }, @@ -8664,7 +9115,7 @@ return { ["Fire Elementals have #% increased maximum Life"] = { { isScalable = true } }, ["Fire Elementals have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Fire Exposure you inflict lowers Total Fire Resistance by an extra #%"] = { { isScalable = true } }, - ["Fire Nova Mine repeats an additional # times"] = { { isScalable = true } }, + ["Fire Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Fire Resistance and Cold Resistance in Radius are Transformed to increased Spell Damage"] = { }, ["Fire Resistance and Lightning Resistance in Radius are Transformed to increased Projectile Attack Damage"] = { }, ["Fire Resistance is #%"] = { { isScalable = false } }, @@ -8723,9 +9174,12 @@ return { ["Flammability has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } }, ["Flammability has no Reservation if Cast as an Aura"] = { }, ["Flask Charges gained are doubled"] = { }, + ["Flask Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Flasks applied to you have #% increased Effect"] = { { isScalable = true } }, ["Flasks applied to you have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Flasks do not Recover Life"] = { }, ["Flasks do not apply to you"] = { }, + ["Flasks do not recover Life"] = { }, ["Flasks gain # Charge per second if you've Hit a Unique Enemy Recently"] = { { isScalable = true } }, ["Flasks gain # Charges every 3 seconds"] = { { isScalable = true } }, ["Flasks gain # Charges every 3 seconds while they are inactive"] = { { isScalable = true } }, @@ -8766,6 +9220,73 @@ return { ["Forbidden Rite fires # additional Projectiles"] = { { isScalable = true } }, ["Forbidden Rite fires an additional Projectile"] = { }, ["Forbidden Rite fires extra Projectiles at up to # surrounding Enemies"] = { { isScalable = true } }, + ["Foretold Bounty: # Chaos Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Divine Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Exalted Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Greater Chaos Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Greater Exalted Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Greater Orbs of Augmentation"] = { { isScalable = true } }, + ["Foretold Bounty: # Greater Orbs of Transmutation"] = { { isScalable = true } }, + ["Foretold Bounty: # Greater Regal Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Orbs of Annulment"] = { { isScalable = true } }, + ["Foretold Bounty: # Orbs of Chance"] = { { isScalable = true } }, + ["Foretold Bounty: # Perfect Chaos Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Perfect Exalted Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: # Perfect Orbs of Augmentation"] = { { isScalable = true } }, + ["Foretold Bounty: # Perfect Orbs of Transmutation"] = { { isScalable = true } }, + ["Foretold Bounty: # Perfect Regal Orbs"] = { { isScalable = true } }, + ["Foretold Bounty: Alpha's Howl"] = { }, + ["Foretold Bounty: Astramentis"] = { }, + ["Foretold Bounty: Chaos Orb"] = { }, + ["Foretold Bounty: Defiance of Destiny"] = { }, + ["Foretold Bounty: Divine Orb"] = { }, + ["Foretold Bounty: Dream Fragments"] = { }, + ["Foretold Bounty: Exalted Orb"] = { }, + ["Foretold Bounty: Greater Chaos Orb"] = { }, + ["Foretold Bounty: Greater Exalted Orb"] = { }, + ["Foretold Bounty: Greater Orb of Augmentation"] = { }, + ["Foretold Bounty: Greater Orb of Transmutation"] = { }, + ["Foretold Bounty: Greater Regal Orb"] = { }, + ["Foretold Bounty: Headhunter"] = { }, + ["Foretold Bounty: Kalandra's Touch"] = { }, + ["Foretold Bounty: Mageblood"] = { }, + ["Foretold Bounty: Omen of Amelioration"] = { }, + ["Foretold Bounty: Omen of Chance"] = { }, + ["Foretold Bounty: Omen of Corruption"] = { }, + ["Foretold Bounty: Omen of Dextral Annulment"] = { }, + ["Foretold Bounty: Omen of Dextral Crystallisation"] = { }, + ["Foretold Bounty: Omen of Dextral Erasure"] = { }, + ["Foretold Bounty: Omen of Dextral Exaltation"] = { }, + ["Foretold Bounty: Omen of Greater Annulment"] = { }, + ["Foretold Bounty: Omen of Sanctification"] = { }, + ["Foretold Bounty: Omen of Sinistral Annulment"] = { }, + ["Foretold Bounty: Omen of Sinistral Crystallisation"] = { }, + ["Foretold Bounty: Omen of Sinistral Erasure"] = { }, + ["Foretold Bounty: Omen of Sinistral Exaltation"] = { }, + ["Foretold Bounty: Omen of Whittling"] = { }, + ["Foretold Bounty: Omen of the Blessed"] = { }, + ["Foretold Bounty: Orb of Annulment"] = { }, + ["Foretold Bounty: Orb of Chance"] = { }, + ["Foretold Bounty: Original Sin"] = { }, + ["Foretold Bounty: Perfect Chaos Orb"] = { }, + ["Foretold Bounty: Perfect Exalted Orb"] = { }, + ["Foretold Bounty: Perfect Orb of Augmentation"] = { }, + ["Foretold Bounty: Perfect Orb of Transmutation"] = { }, + ["Foretold Bounty: Perfect Regal Orb"] = { }, + ["Foretold Bounty: Queen of the Forest"] = { }, + ["Foretold Bounty: Yoke of Suffering"] = { }, + ["Foretold Proliferation: Monsters Sacrificed at Ritual Altars grant #% increased Tribute"] = { { isScalable = true } }, + ["Foretold Proliferation: Monsters Sacrificed at Ritual Altars grant #% reduced Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["Foretold Proliferation: Rerolling Favours at Ritual Altars has no Cost the first # times"] = { { isScalable = true } }, + ["Foretold Proliferation: Rerolling Favours at Ritual Altars has no Cost the first time"] = { }, + ["Foretold Proliferation: Rerolling Favours at Ritual Altars in your Maps costs #% increased Tribute"] = { { isScalable = true } }, + ["Foretold Proliferation: Rerolling Favours at Ritual Altars in your Maps costs #% reduced Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["Foretold Proliferation: Ritual Altars in Area allow rerolling Favours # additional times"] = { { isScalable = true } }, + ["Foretold Proliferation: Ritual Altars in Area allow rerolling Favours an additional time"] = { }, + ["Foretold Proliferation: Ritual Altars offer #% increased number of Favours"] = { { isScalable = true } }, + ["Foretold Proliferation: Ritual Altars offer #% reduced number of Favours"] = { { isScalable = true, formats = { "negate" } } }, + ["Foretold Proliferation: Rituals contain # additional packs of Wildwood Monsters"] = { { isScalable = true } }, + ["Foretold Proliferation: Rituals contain an additional pack of Wildwood Monsters"] = { }, ["Fortifying Hits against Unique Enemies grant #% increased Fortification"] = { { isScalable = true } }, ["Fortifying Hits against Unique Enemies grant #% reduced Fortification"] = { { isScalable = true, formats = { "negate" } } }, ["Fortifying Hits grant #% increased Fortification"] = { { isScalable = true } }, @@ -8821,11 +9342,13 @@ return { ["Frozen Sweep deals #% more Damage"] = { { isScalable = true } }, ["Frozen Sweep deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Fully Armour Broken enemies you kill with Hits Shatter"] = { }, + ["Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits"] = { }, ["Fully Broken Armour you inflict also increases Fire Damage Taken from Hits"] = { }, ["Fully Broken Armour you inflict increases all Damage Taken from Hits instead"] = { }, ["Gain # Armour per Grand Spectrum"] = { { isScalable = true } }, ["Gain # Charge when you are Hit by an Enemy"] = { { isScalable = true } }, ["Gain # Charges when you are Hit by an Enemy"] = { { isScalable = true } }, + ["Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy"] = { { isScalable = true } }, ["Gain # Endurance Charge every second if you've been Hit Recently"] = { { isScalable = false } }, ["Gain # Endurance Charge every second if you've used a Warcry Recently"] = { { isScalable = false } }, ["Gain # Endurance Charge on use"] = { { isScalable = true } }, @@ -8848,6 +9371,7 @@ return { ["Gain # Frenzy Charge on use"] = { { isScalable = true } }, ["Gain # Frenzy Charges after Spending a total of 200 Mana"] = { { isScalable = true } }, ["Gain # Frenzy Charges on use"] = { { isScalable = true } }, + ["Gain # Guard for 0.5 seconds per Combo expended when using Skills"] = { { isScalable = true } }, ["Gain # Life and Mana per Enemy Hit with Attacks"] = { { isScalable = true } }, ["Gain # Life for each Ignited Enemy hit with Attacks"] = { { isScalable = true } }, ["Gain # Life on Culling Strike"] = { { isScalable = true } }, @@ -8860,6 +9384,7 @@ return { ["Gain # Life per Enemy Hit if you have used a Vaal Skill Recently"] = { { isScalable = true } }, ["Gain # Life per Enemy Hit while affected by Vitality"] = { { isScalable = true } }, ["Gain # Life per Enemy Hit with Attacks"] = { { isScalable = true } }, + ["Gain # Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently"] = { { isScalable = true } }, ["Gain # Life per Enemy Hit with Main Hand Claw Attacks"] = { { isScalable = true } }, ["Gain # Life per Enemy Hit with Spells"] = { { isScalable = true } }, ["Gain # Life per Enemy Hit with this Weapon while you are Leeching"] = { { isScalable = true } }, @@ -8898,6 +9423,7 @@ return { ["Gain # Vaal Soul Per Second during effect"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Gain # Vaal Souls Per Second during effect"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Gain # Vaal Souls on use"] = { { isScalable = true } }, + ["Gain # Vivid Wisps when Vivid Stampede ends"] = { { isScalable = true } }, ["Gain # Volatility when an Allied Persistent Reviving Minion is Killed"] = { { isScalable = true } }, ["Gain # fewer Lightning Surge from Triggering Elemental Surge"] = { { isScalable = true, formats = { "negate" } } }, ["Gain #% Base Chance to Block from Equipped Shield instead of the Shield's value"] = { { isScalable = true } }, @@ -8915,15 +9441,19 @@ return { ["Gain #% of Cold Damage as Extra Fire Damage"] = { { isScalable = true } }, ["Gain #% of Cold Damage as Extra Fire Damage against Frozen Enemies"] = { { isScalable = true } }, ["Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy"] = { { isScalable = true } }, + ["Gain #% of Cold damage as Extra Physical damage"] = { { isScalable = true } }, ["Gain #% of Damage as Chaos Damage per Undead Minion"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Chaos Damage per 20 Unreserved Darkness"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Chaos Damage while you are missing Runic Ward"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Cold Damage"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Cold Damage if you have Shapeshifted to Human form Recently"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Cold Damage while Shapeshifted"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Cold Damage while on Chilled Ground"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Cold Damage while you are missing Runic Ward"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Cold Damage with Spells"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Damage of a random Element"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Damage of a random Element per\nRune Socketed in Equipped Items"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Damage of a random Element while Shapeshifted"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Damage of all Elements"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Fire Damage"] = { { isScalable = true } }, @@ -8932,28 +9462,37 @@ return { ["Gain #% of Damage as Extra Fire Damage per Endurance Charge consumed Recently"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Fire Damage while Shapeshifted"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Fire Damage while on Ignited Ground"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Fire Damage with Spells"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Lightning Damage"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Lightning Damage if you have Shapeshifted to Human form Recently"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Lightning Damage while Shapeshifted"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Lightning Damage while on Shocked Ground"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Lightning Damage while you are missing Runic Ward"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Lightning Damage with Spells"] = { { isScalable = true } }, ["Gain #% of Damage as Extra Physical Damage"] = { { isScalable = true } }, + ["Gain #% of Damage as Extra Physical Damage per ten percent missing Mana"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Gain #% of Elemental Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["Gain #% of Elemental Damage as Extra Chaos Damage during effect"] = { { isScalable = true } }, ["Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"] = { { isScalable = true } }, ["Gain #% of Elemental Damage as Extra Cold Damage"] = { { isScalable = true } }, + ["Gain #% of Elemental Damage as Extra Cold Damage if you've collected a Cold Infusion in the last 8 seconds"] = { { isScalable = true } }, ["Gain #% of Elemental Damage as Extra Fire Damage"] = { { isScalable = true } }, + ["Gain #% of Elemental Damage as Extra Fire Damage if you've collected a Fire Infusion in the last 8 seconds"] = { { isScalable = true } }, ["Gain #% of Elemental Damage as Extra Lightning Damage"] = { { isScalable = true } }, + ["Gain #% of Elemental Damage as Extra Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds"] = { { isScalable = true } }, ["Gain #% of Evasion Rating as extra Ailment Threshold"] = { { isScalable = true } }, ["Gain #% of Evasion Rating as extra Armour"] = { { isScalable = true } }, ["Gain #% of Fire Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge"] = { { isScalable = true } }, + ["Gain #% of Fire damage as Extra Lightning damage"] = { { isScalable = true } }, + ["Gain #% of Fire damage as Extra Physical damage"] = { { isScalable = true } }, ["Gain #% of Lightning Damage as Chaos Damage per Power Charge"] = { { isScalable = true } }, ["Gain #% of Lightning Damage as Extra Chaos Damage"] = { { isScalable = true } }, - ["Gain #% of Lightning Damage as Extra Cold Damage"] = { { isScalable = true } }, ["Gain #% of Lightning Damage as Extra Cold Damage against Chilled Enemies"] = { { isScalable = true } }, ["Gain #% of Lightning Damage as Extra Fire Damage"] = { { isScalable = true } }, + ["Gain #% of Lightning damage as Extra Cold damage"] = { { isScalable = true } }, + ["Gain #% of Lightning damage as Extra Physical damage"] = { { isScalable = true } }, ["Gain #% of Maximum Mana as Armour"] = { { isScalable = true } }, ["Gain #% of Non-Chaos Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["Gain #% of Physical Damage as Extra Chaos Damage against\nBleeding Enemies"] = { { isScalable = true } }, @@ -8985,11 +9524,11 @@ 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 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 } }, ["Gain #% of maximum Life as Extra maximum Mana"] = { { isScalable = true } }, + ["Gain #% of maximum Life as Extra maximum Runic Ward"] = { { isScalable = true } }, ["Gain #% of maximum Life as Extra maximum Spirit"] = { { isScalable = true } }, ["Gain #% of maximum Mana as Extra maximum Energy Shield"] = { { isScalable = false } }, ["Gain #% of maximum Mana as Extra maximum Energy Shield while affected by Clarity"] = { { isScalable = true } }, @@ -8999,24 +9538,31 @@ return { ["Gain #% reduced Elemental Damage for 5 seconds"] = { { isScalable = true, formats = { "negate" } } }, ["Gain #% to Critical Hit Chance for 2 seconds after Spending a total of 800 Mana"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Gain 0% to #% increased Movement Speed at random when Hit, until Hit again"] = { { isScalable = true } }, + ["Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence"] = { }, ["Gain 1 Druidic Prowess for every 20 total Rage spent"] = { }, + ["Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds"] = { }, ["Gain 1 Endurance Charge per Second during Effect"] = { }, + ["Gain 1 Explosive Rhythm every # time you use a Grenade Skill\nRemove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds"] = { { isScalable = true } }, + ["Gain 1 Explosive Rhythm every # times you use a Grenade Skill\n Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds"] = { { isScalable = true } }, + ["Gain 1 Fear Incarnate when you Cull a target"] = { }, + ["Gain 1 Fear Overwhelming when you Cull a target"] = { }, ["Gain 1 Fragile Regrowth each second"] = { }, ["Gain 1 Gale Force when you use a Skill\n#% increased Effect of Tailwind on you per Gale Force"] = { { isScalable = true } }, ["Gain 1 Gale Force when you use a Skill\n#% reduced Effect of Tailwind on you per Gale Force"] = { { isScalable = true, formats = { "negate" } } }, ["Gain 1 Rage on Critical Hit with attacks, no more than once every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain 1 Rage on Hit with Attacks, no more than once every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain 1 Rage when you Hit a Rare or Unique Enemy"] = { }, + ["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"] = { }, ["Gain Accuracy Rating equal to your Strength"] = { }, - ["Gain Added Chaos Damage equal to #% of Ward"] = { { isScalable = true } }, ["Gain Adrenaline for # second on kill"] = { { isScalable = true } }, - ["Gain Adrenaline for # second when Ward Breaks"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Gain Adrenaline for # second when you change Stance"] = { { isScalable = true, formats = { "milliseconds_to_seconds_0dp" } } }, ["Gain Adrenaline for # seconds on kill"] = { { isScalable = true } }, - ["Gain Adrenaline for # seconds when Ward Breaks"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Gain Adrenaline for # seconds when you change Stance"] = { { isScalable = true, formats = { "milliseconds_to_seconds_0dp" } } }, ["Gain Adrenaline for # seconds when you reach Low Life"] = { { isScalable = true } }, ["Gain Adrenaline when Stunned, for # seconds per 100ms of Stun Duration"] = { { isScalable = true, formats = { "milliseconds_to_seconds_0dp" } } }, @@ -9039,8 +9585,10 @@ return { ["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"] = { }, ["Gain Arcane Surge when your Trap is Triggered by an Enemy"] = { }, ["Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds"] = { { isScalable = true } }, + ["Gain Armour equal to #% of total Strength Requirements of Equipped Boots, Gloves and Helmet"] = { { isScalable = true } }, ["Gain Brutal Charges instead of Endurance Charges"] = { }, ["Gain Cold Thorns Damage equal to #% of your maximum Mana"] = { { isScalable = true } }, + ["Gain Combo from all Attack Hits"] = { }, ["Gain Convergence when you Hit a Unique Enemy, no more than once every 8 seconds"] = { }, ["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no more than once every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Deflection Rating equal to #% of Armour"] = { { isScalable = true } }, @@ -9055,12 +9603,16 @@ return { ["Gain Elusive on reaching Low Life"] = { }, ["Gain Exposed to Corruption stacks twice as frequently\nLose 1 stack of Exposed to Corruption every 5 seconds"] = { }, ["Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges"] = { }, + ["Gain Finality for # seconds per Combo expended when using Skills"] = { { isScalable = true, formats = { "milliseconds_to_seconds_1dp" } } }, ["Gain Flame Archon when you Ignite an Enemy"] = { }, + ["Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit"] = { { isScalable = true } }, + ["Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll"] = { { isScalable = true } }, ["Gain Ice Archon when your Energy Shield Recharge begins"] = { }, ["Gain Immunity to Physical Damage for # second on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Immunity to Physical Damage for # seconds on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Lightning Archon after spending 100% of your Maximum Mana"] = { }, ["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"] = { }, + ["Gain Maximum Energy Shield equal to #% of total\nStrength Requirements of Equipped Armour Items"] = { { isScalable = true } }, ["Gain Onslaught for # second per Frenzy Charge on use"] = { { isScalable = true } }, ["Gain Onslaught for # seconds on Kill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Onslaught for # seconds on Killing a Shocked Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, @@ -9068,15 +9620,21 @@ return { ["Gain Onslaught for # seconds when you Cast Socketed Golem Skill"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, ["Gain Onslaught for # seconds when you Kill a Rare or Unique Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Onslaught for # seconds when you Warcry"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["Gain Onslaught for # seconds when your Marks Activate"] = { { isScalable = true } }, ["Gain Onslaught for 10 seconds on kill"] = { }, ["Gain Onslaught for 3 seconds when Hit"] = { }, ["Gain Onslaught for 4 seconds on Hit"] = { }, ["Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"] = { }, ["Gain Onslaught for 4 seconds on Kill"] = { }, ["Gain Onslaught for 4 seconds when a Minion Dies"] = { }, + ["Gain Overencumbrance for 4 seconds when you Dodge Roll"] = { }, + ["Gain Owl Feathers #% faster"] = { { isScalable = true } }, + ["Gain Owl Feathers #% slower"] = { { isScalable = true, formats = { "negate" } } }, ["Gain Phasing for # seconds when your Trap is triggered by an Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Phasing for 3 seconds when your Trap is triggered by an Enemy"] = { }, ["Gain Phasing for 4 seconds on Kill"] = { }, + ["Gain Physical Thorns damage equal to #% - #% of maximum Life"] = { { isScalable = true }, { isScalable = true } }, + ["Gain Physical Thorns damage equal to #% - #% of maximum Life while Shapeshifted"] = { { isScalable = true }, { isScalable = true } }, ["Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Gain Physical Thorns damage equal to #% of maximum Life while Shapeshifted"] = { { isScalable = true } }, ["Gain Rampage while at Maximum Endurance Charges"] = { }, @@ -9144,10 +9702,14 @@ return { ["Gain a Power Charge when your Trap is triggered by an Enemy"] = { }, ["Gain a Power or Frenzy Charge each second while Channelling"] = { }, ["Gain a Power, Frenzy, or Endurance Charge on kill"] = { }, + ["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3\nExpend an Owl Feather when you Dodge to trigger Primal Bounty"] = { }, ["Gain a Rampage Kill when Minion hits a Rare or Unique Enemy"] = { }, ["Gain a Spirit Charge every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain a Spirit Charge every second"] = { }, ["Gain a Spirit Charge on Kill"] = { }, + ["Gain a Vivid Wisp for every # metres you move, up to a maximum of #\nExpend all Vivid Wisps to trigger Vivid Stampede when you Attack"] = { { isScalable = true }, { isScalable = true } }, + ["Gain a Vivid Wisp for every metre you move, up to a maximum of #\nExpend all Vivid Wisps to trigger Vivid Stampede when you Attack"] = { { isScalable = true } }, + ["Gain a Vivid Wisp when Vivid Stampede ends"] = { }, ["Gain a Void Charge every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, ["Gain a Void Charge every second"] = { }, ["Gain a random Charge on reaching Maximum Rage, no more than once every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, @@ -9184,6 +9746,7 @@ return { ["Gain an additional Frenzy Charge when you gain a Frenzy Charge"] = { }, ["Gain an additional Power Charge when you gain a Power Charge"] = { }, ["Gain an additional random Charge when you gain a Charge"] = { }, + ["Gain maximum Runic Ward equal to #% of this Weapon's maximum damage"] = { { isScalable = true } }, ["Gain no inherent bonus from Dexterity"] = { }, ["Gain no inherent bonus from Intelligence"] = { }, ["Gain no inherent bonus from Strength"] = { }, @@ -9198,8 +9761,6 @@ return { ["Gains no Charges during Effect"] = { }, ["Gains no Charges during Effect of any Overflowing Chalice Flask"] = { }, ["Gains no Charges during Effect of any Soul Ripper Flask"] = { }, - ["Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine"] = { }, - ["Galvanic Arrow and Storm Rain Repeats # additional times when used by a Mine"] = { { isScalable = true } }, ["Galvanic Arrow deals #% increased Area Damage"] = { { isScalable = false } }, ["Galvanic Arrow deals #% reduced Area Damage"] = { { isScalable = false, formats = { "negate" } } }, ["Galvanic Arrow has #% increased Projectile Speed"] = { { isScalable = true } }, @@ -9234,6 +9795,7 @@ return { ["Glorifying the defilement of # souls in tribute to Kurgal\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable"] = { { isScalable = false } }, ["Glorifying the defilement of # souls in tribute to Tecrod\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable"] = { { isScalable = false } }, ["Glorifying the defilement of # souls in tribute to Ulaman\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable"] = { { isScalable = false } }, + ["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and\ntheir Explicit Modifiers are transformed into more powerful related Modifiers"] = { }, ["Glows while in an Area containing a Unique Fish"] = { }, ["Golden Radiance"] = { }, ["Golem Skills have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, @@ -9262,11 +9824,13 @@ return { ["Grace has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["Grace has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, ["Grace has no Reservation"] = { }, + ["Grant Elemental Archon to your Minions for # seconds when they Revive"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Grant Onslaught to nearby Enemies on Kill"] = { }, - ["Grant a Frenzy Charge to nearby Allies on Hit"] = { }, + ["Grant a Frenzy Charge to Allies in your Presence on Hit"] = { }, ["Grant a Frenzy Charge to nearby Allies on Kill"] = { }, ["Grant a Power Charge to nearby Allies on Kill"] = { }, - ["Grant an Endurance Charge to nearby Allies on Hit"] = { }, + ["Grant an Endurance Charge to Allies in your Presence on Hit"] = { }, + ["Grant an Power Charge to Allies in your Presence on Hit"] = { }, ["Grant bonuses to Non-Channelling Skills you use by consuming # Charges from a Flask of\neach of the following types, if possible:"] = { { isScalable = true } }, ["Grants # Life and Mana per Enemy Hit"] = { { isScalable = true } }, ["Grants # Life per Enemy Hit"] = { { isScalable = true } }, @@ -9307,7 +9871,6 @@ return { ["Grants Level # Aspect of the Cat Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Crab Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Spider Skill"] = { { isScalable = false } }, - ["Grants Level # Assassin's Mark Skill"] = { { isScalable = false } }, ["Grants Level # Bear Trap Skill"] = { { isScalable = false } }, ["Grants Level # Blight Skill"] = { { isScalable = false } }, ["Grants Level # Blood Offering Skill"] = { { isScalable = false } }, @@ -9445,6 +10008,11 @@ return { ["Has # Charm Slot"] = { { isScalable = true } }, ["Has # Charm Slots"] = { { isScalable = true } }, ["Has # Sockets"] = { { isScalable = true } }, + ["Has # to # Fire damage, # to # per Boss's Face Broken"] = { { isScalable = true }, { isScalable = true }, { isScalable = true }, { isScalable = true } }, + ["Has # to # Physical damage, # to # per Boss's Face Broken"] = { { isScalable = true }, { isScalable = true }, { isScalable = true }, { isScalable = true } }, + ["Has # to Evasion Rating per player level"] = { { isScalable = true } }, + ["Has # to maximum Energy Shield per player level"] = { { isScalable = true } }, + ["Has # to maximum Runic Ward per player level"] = { { isScalable = true } }, ["Has 1 Abyssal Socket"] = { }, ["Has 1 Socket"] = { }, ["Has Consumed 1 Gem"] = { }, @@ -9562,7 +10130,6 @@ return { ["Hexblast has #% chance to not remove a Hex"] = { { isScalable = true } }, ["Hexblast has #% increased Area of Effect"] = { { isScalable = true } }, ["Hexblast has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies"] = { }, ["Hexes applied by Socketed Curse Skills are Reflected back to you"] = { }, ["Hinder Enemies on Hit with Spells"] = { }, ["Hindered"] = { }, @@ -9584,8 +10151,11 @@ return { ["Hits against you gain #% of Physical Damage as Extra Fire Damage"] = { { isScalable = true } }, ["Hits against you have #% increased Critical Damage Bonus"] = { { isScalable = true, formats = { "negate" } } }, ["Hits against you have #% increased Critical Damage Bonus per Socket filled"] = { { isScalable = true, formats = { "negate" } } }, + ["Hits against you have #% increased Critical Hit Chance while you are Chilled"] = { { isScalable = true } }, ["Hits against you have #% reduced Critical Damage Bonus"] = { { isScalable = true } }, ["Hits against you have #% reduced Critical Damage Bonus per Socket filled"] = { { isScalable = true } }, + ["Hits against you have #% reduced Critical Hit Chance while you are Chilled"] = { { isScalable = true, formats = { "negate" } } }, + ["Hits against you have no Critical Damage Bonus while on Consecrated Ground"] = { }, ["Hits always Ignite"] = { }, ["Hits always Shock"] = { }, ["Hits are Resisted by #% Cold Resistance instead of target's value"] = { { isScalable = true } }, @@ -9633,8 +10203,12 @@ return { ["Hits with this Weapon deal #% reduced Damage to Frozen Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["Hits with this Weapon deal #% reduced Damage to Ignited Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["Hits with this Weapon deal #% reduced Damage to Shocked Enemies"] = { { isScalable = true, formats = { "negate" } } }, + ["Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength"] = { { isScalable = true } }, ["Hits with this Weapon have Culling Strike against Bleeding Enemies"] = { }, ["Hits with this Weapon have Culling Strike if you have dealt a Critical Hit Recently"] = { }, + ["Hits with this Weapon have no Critical Damage Bonus"] = { }, + ["Hits with this Weapon inflict # Gruelling Madness"] = { { isScalable = true } }, + ["Hits with this weapon have # to # Added Physical Damage per 1% Block Chance"] = { { isScalable = true }, { isScalable = true } }, ["Hollow Palm Technique"] = { }, ["Holy Flame Totem and Shockwave Totem gain #% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond"] = { { isScalable = true } }, ["Holy Flame Totem deals #% increased Damage"] = { { isScalable = true } }, @@ -9648,6 +10222,8 @@ return { ["Hydrosphere deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Hydrosphere has #% increased Pulse Frequency"] = { { isScalable = true } }, ["Hydrosphere has #% reduced Pulse Frequency"] = { { isScalable = true, formats = { "negate" } } }, + ["Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have"] = { { isScalable = true } }, + ["Ice Crystals have #% reduced maximum Life per 5% Cold Resistance you have"] = { { isScalable = true, formats = { "negate" } } }, ["Ice Golems deal #% increased Damage"] = { { isScalable = true } }, ["Ice Golems deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Ice Nova Always Freezes"] = { }, @@ -9673,6 +10249,7 @@ return { ["Icicle Mine has #% increased Throwing Speed"] = { { isScalable = true } }, ["Icicle Mine has #% reduced Throwing Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Icicle Mine has #% to Critical Damage Bonus"] = { { isScalable = true } }, + ["Idols socketed in this item gain the benefits of their Bonded modifiers"] = { }, ["If Amethyst Flask Charges are consumed, #% of Physical Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["If Bismuth Flask Charges are consumed, Penetrate #% Elemental Resistances"] = { { isScalable = true } }, ["If Diamond Flask Charges are consumed, #% increased Critical Hit Chance"] = { { isScalable = true } }, @@ -9698,6 +10275,7 @@ return { ["If you've Warcried Recently, you and nearby allies\nhave #% increased Attack Speed"] = { { isScalable = true } }, ["If you've used a Skill Recently, you and nearby Allies have Tailwind"] = { }, ["Ignite on Enemies you Kill Spreads to other Enemies within # metres"] = { { isScalable = false, formats = { "divide_by_ten_1dp_if_required" } } }, + ["Ignite you inflict deals Chaos Damage instead of Fire Damage"] = { }, ["Ignited Enemies Burn #% slower"] = { { isScalable = true } }, ["Ignited enemies killed by your Hits are destroyed"] = { }, ["Ignites you cause are reflected back to you"] = { }, @@ -9706,6 +10284,7 @@ return { ["Ignites you inflict spread to other Enemies that stay within # metres for 1 second"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second"] = { }, ["Ignites you inflict with Attacks deal Damage #% faster"] = { { isScalable = true } }, + ["Ignore Attribute Requirements to equip Gloves"] = { }, ["Ignore Strength Requirement of Melee Weapons and Melee Skills"] = { }, ["Ignore Stuns while Casting"] = { }, ["Ignore Stuns while using Socketed Attack Skills"] = { }, @@ -9720,6 +10299,8 @@ return { ["Immortal Call has #% reduced Buff Duration per Endurance Charge removed"] = { { isScalable = true, formats = { "negate" } } }, ["Immortal Call increases Duration without removing Endurance Charges"] = { }, ["Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating"] = { }, + ["Immune to Bleeding while Shapeshifted"] = { }, + ["Immune to Bleeding while affected by an Archon Buff"] = { }, ["Immune to Burning Ground, Shocked Ground and Chilled Ground"] = { }, ["Immune to Chill"] = { }, ["Immune to Chill if a majority of your Socketed Support Gems are Blue"] = { }, @@ -9751,6 +10332,7 @@ return { ["Immune to Ignite while affected by an Archon Buff"] = { }, ["Immune to Lightning Damage"] = { }, ["Immune to Maim"] = { }, + ["Immune to Maim while Shapeshifted"] = { }, ["Immune to Poison"] = { }, ["Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"] = { }, ["Immune to Reflected Damage if you've cast Punishment in the past 10 seconds"] = { }, @@ -9835,7 +10417,6 @@ return { ["Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value"] = { { isScalable = true } }, ["Increases and Reductions to Light Radius also apply to Damage"] = { }, ["Increases and Reductions to Mana Regeneration Rate also\napply to Energy Shield Recharge Rate"] = { }, - ["Increases and Reductions to Maximum Energy Shield instead apply to Ward"] = { }, ["Increases and Reductions to Maximum Mana also apply to Effect of Arcane Surge on you"] = { }, ["Increases and Reductions to Minion Attack Speed also affect you"] = { }, ["Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value"] = { }, @@ -9850,6 +10431,9 @@ return { ["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"] = { }, ["Increases and Reductions to Spell damage also apply to Attacks"] = { }, ["Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage"] = { }, + ["Increases and Reductions to\n Cold and Fire Damage in Radius are transformed to apply to Lightning Damage"] = { }, + ["Increases and Reductions to\n Cold and Lightning Damage in Radius are transformed to apply to Fire Damage"] = { }, + ["Increases and Reductions to\n Fire and Lightning Damage in Radius are transformed to apply to Cold Damage"] = { }, ["Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value"] = { }, ["Infernal Blow Debuff deals an additional #% of Damage per Charge"] = { { isScalable = true } }, ["Infernal Blow Explosion applies Uncharged Debuff on Hit"] = { }, @@ -9862,6 +10446,7 @@ return { ["Inflict # Grasping Vine on Hit"] = { { isScalable = true } }, ["Inflict # Grasping Vines on Hit"] = { { isScalable = true } }, ["Inflict Abyssal Wasting on Hit"] = { }, + ["Inflict Anaemia on Hit\nAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies"] = { { isScalable = true } }, ["Inflict Bleeding on Hit"] = { }, ["Inflict Brittle on Enemies when you Block their Damage"] = { }, ["Inflict Cold Exposure on Hit"] = { }, @@ -9871,8 +10456,8 @@ return { ["Inflict Cold Exposure on Igniting an Enemy"] = { }, ["Inflict Corrupted Blood for # second on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Inflict Corrupted Blood for # seconds on Block, dealing #% of\nyour maximum Life as Physical damage per second"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } }, { isScalable = true, formats = { "per_minute_to_per_second" } } }, - ["Inflict Decay on Enemies you Curse with Hex Skills, dealing # Chaos Damage per Second for 8 Seconds"] = { { isScalable = true } }, ["Inflict Elemental Exposure on Hit"] = { }, + ["Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree"] = { }, ["Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by #%"] = { { isScalable = true } }, ["Inflict Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds, every 0.25 seconds while raised"] = { }, ["Inflict Exposure on Hit"] = { }, @@ -9902,7 +10487,8 @@ return { ["Inflicted with a random Exposure when you take Elemental Damage from a Hit"] = { }, ["Inflicts # Critical Weakness on Hit"] = { { isScalable = true } }, ["Inflicts Critical Weakness on Hit"] = { }, - ["Inflicts Fire Exposure when this Weapon Fully Breaks Armour"] = { }, + ["Inflicts Elemental Exposure when this Weapon Fully Breaks Armour"] = { }, + ["Inflicts Runefather's Challenge on enemies # metres in front of you when raised, no more than once every 2 seconds"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["Inflicts a random Curse on you when your Totems die, ignoring Curse limit"] = { }, ["Infusion grants #% of Projectile Damage Gained as Extra of the matching Elemental Damage Type when Consumed"] = { { isScalable = true } }, ["Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws"] = { }, @@ -9925,6 +10511,7 @@ return { ["Instant Recovery when on Low Life"] = { }, ["Instant recovery when on Low Mana"] = { }, ["Insufficient Mana doesn't prevent your Melee Attacks"] = { }, + ["Intelligence Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Intelligence from Passives in Radius is Transformed to Dexterity"] = { }, ["Intelligence from Passives in Radius is Transformed to Strength"] = { }, ["Intimidate Enemies for 4 seconds on Block while holding a Shield"] = { }, @@ -9996,6 +10583,7 @@ return { ["Izaro will drop # additional Unique Items on Death"] = { { isScalable = true } }, ["Izaro will drop an additional Treasure Key on Death"] = { }, ["Izaro will drop an additional Unique Item on Death"] = { }, + ["Jewel Socket"] = { }, ["Jewellery absorbs #% more Corruption"] = { { isScalable = true } }, ["Karui Stone Hook"] = { }, ["Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant"] = { }, @@ -10104,13 +10692,12 @@ return { ["Left ring slot: You and your Minions take #% increased Reflected Elemental Damage"] = { { isScalable = true } }, ["Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Left ring slot: You cannot Recharge or Regenerate Energy Shield"] = { }, + ["Legacy of #"] = { { isScalable = false, formats = { "mages_legacy_index" } } }, ["Legion Monsters have #% less Life"] = { { isScalable = true, formats = { "negate" } } }, ["Legion Monsters have #% more Life"] = { { isScalable = true } }, ["Life Flask Effects are not removed when Unreserved Life is Filled\nLife Flask Effects do not Queue"] = { }, ["Life Flasks also recover Mana\nMana Flasks also recover Life"] = { }, ["Life Flasks applied to you grant Guard for 4 seconds equal to #% of the Life Recovery per Second they apply"] = { { isScalable = true } }, - ["Life Flasks do not Recover Life"] = { }, - ["Life Flasks do not recover Life"] = { }, ["Life Flasks gain # Charge every 3 seconds"] = { { isScalable = true } }, ["Life Flasks gain # Charges every 3 seconds"] = { { isScalable = true } }, ["Life Flasks gain # Charges every 3 seconds if you haven't used a Life Flask Recently"] = { { isScalable = true } }, @@ -10127,7 +10714,9 @@ return { ["Life Leech is instant during Effect"] = { }, ["Life Leech recovers based on your Chaos damage instead of Physical damage"] = { }, ["Life Leech recovers based on your Elemental damage as well as Physical damage"] = { }, + ["Life Leech recovers based on your Lightning damage as well as Physical damage"] = { }, ["Life Leeched from Empowered Attacks is Instant"] = { }, + ["Life Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Life Recharges"] = { }, ["Life Recoup Effects instead occur over 3 seconds"] = { }, ["Life Recoup Recovers Energy Shield instead"] = { }, @@ -10141,7 +10730,9 @@ return { ["Life Recovery other than Flasks cannot Recover Life to above Low Life"] = { }, ["Life Regeneration also Recovers Energy Shield"] = { }, ["Life Regeneration is applied to Energy Shield instead"] = { }, + ["Life Regeneration is applied to Runic Ward instead"] = { }, ["Life and Mana Flasks can be equipped in either slot"] = { }, + ["Life and Mana Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Life and Mana Recovery from Flasks are instant"] = { }, ["Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, @@ -10170,9 +10761,11 @@ return { ["Lightning Damage with Non-Critical Hits is Lucky"] = { }, ["Lightning Golems deal #% increased Damage"] = { { isScalable = true } }, ["Lightning Golems deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Lightning Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Lightning Resistance does not affect Lightning damage taken"] = { }, ["Lightning Resistance is #%"] = { { isScalable = false } }, ["Lightning Resistance is unaffected by Area Penalties"] = { }, + ["Lightning Skills Chain # times"] = { { isScalable = true } }, ["Lightning Skills have #% chance to Poison on Hit"] = { { isScalable = true } }, ["Lightning Skills have #% increased Enemy Stun Threshold"] = { { isScalable = true, formats = { "negate" } } }, ["Lightning Skills have #% reduced Enemy Stun Threshold"] = { { isScalable = true } }, @@ -10241,6 +10834,7 @@ return { ["Lose # Life per Enemy Hit if you have used a Vaal Skill Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Hit while affected by Vitality"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Hit with Attacks"] = { { isScalable = true, formats = { "negate" } } }, + ["Lose # Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Hit with Main Hand Claw Attacks"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Hit with Spells"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Hit with this Weapon while you are Leeching"] = { { isScalable = true, formats = { "negate" } } }, @@ -10260,6 +10854,9 @@ return { ["Lose # Mana per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Lose # Mana when you Block"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Mana when you use a Skill"] = { { isScalable = true } }, + ["Lose # Runic Ward when a Charm is used"] = { { isScalable = true, formats = { "negate" } } }, + ["Lose # Runic Ward when you Block"] = { { isScalable = true, formats = { "negate" } } }, + ["Lose #% Life per second while you have no Runic Ward during Effect"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Lose #% of Infernal Flame on reaching maximum Infernal Flame"] = { { isScalable = true } }, ["Lose #% of maximum Energy Shield on Kill"] = { { isScalable = true } }, ["Lose #% of maximum Energy Shield per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, @@ -10277,6 +10874,8 @@ return { ["Lose #% of maximum Mana per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Lose #% of maximum Mana when you Shock an Enemy"] = { { isScalable = true } }, ["Lose #% of maximum Mana when you use an Attack Skill"] = { { isScalable = true } }, + ["Lose #% of maximum Runic Ward on Kill"] = { { isScalable = true, formats = { "negate" } } }, + ["Lose #% of maximum Runic Ward on reaching Maximum Rage"] = { { isScalable = true, formats = { "negate" } } }, ["Lose #% of your maximum Energy Shield when you Block"] = { { isScalable = true } }, ["Lose #% of your maximum Mana when you Block"] = { { isScalable = true, formats = { "negate" } } }, ["Lose Adrenaline when you cease to be Flame-Touched"] = { }, @@ -10310,6 +10909,7 @@ return { ["Magic Monsters in this Area Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Magic Monsters take #% increased Damage"] = { { isScalable = true } }, ["Magic Monsters take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Magnitudes of Curses you inflict are zero"] = { }, ["Maim on Critical Hit"] = { }, ["Maim on Hit"] = { }, ["Malevolence has #% increased Aura Effect"] = { { isScalable = true } }, @@ -10325,8 +10925,12 @@ return { ["Mana Flasks gain # charges per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, ["Mana Flasks used while on Low Mana apply Recovery Instantly"] = { }, ["Mana Leech effects also Recover Energy Shield"] = { }, + ["Mana Leech from Critical Hits is instant"] = { }, ["Mana Leech is instant"] = { }, ["Mana Leech recovers based on other Damage Types damage as well as Physical damage"] = { }, + ["Mana Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Mana Recovery from Flasks can Overflow maximum Mana during Effect"] = { }, + ["Mana Recovery from Regeneration is also applied to Runic Ward"] = { }, ["Mana Recovery from Regeneration is not applied"] = { }, ["Mana Recovery other than Regeneration cannot Recover Mana"] = { }, ["Mana Reservation of Herald Skills is always 45%"] = { }, @@ -10342,7 +10946,6 @@ return { ["Map Bosses grant #% reduced Experience"] = { { isScalable = true, formats = { "negate" } } }, ["Map Bosses have # additional Modifier"] = { { isScalable = true } }, ["Map Bosses have # additional Modifiers"] = { { isScalable = true } }, - ["Map Portals do not expire"] = { }, ["Map contains Al-Hezmin's Citadel\nItem Quantity increases amount of Rewards Al-Hezmin drops by 20% of its value"] = { }, ["Map contains Baran's Citadel\nItem Quantity increases amount of Rewards Baran drops by 20% of its value"] = { }, ["Map contains Drox's Citadel\nItem Quantity increases amount of Rewards Drox drops by 20% of its value"] = { }, @@ -10387,6 +10990,7 @@ return { ["Maximum Brutal Charges is equal to Maximum Endurance Charges"] = { }, ["Maximum Chance to Evade is 50%"] = { }, ["Maximum Critical Hit chance with Supported Skills is #%"] = { { isScalable = true } }, + ["Maximum Energy Shield cannot be Converted"] = { }, ["Maximum Energy Shield is zero"] = { }, ["Maximum Life of Summoned Elemental Golems is Doubled"] = { }, ["Maximum Mana is replaced by twice as much Maximum Infernal Flame\nGain Infernal Flame instead of spending Mana for Skill costs"] = { }, @@ -10394,6 +10998,7 @@ return { ["Maximum Power Charges is 0"] = { }, ["Maximum Quality is #%"] = { { isScalable = true } }, ["Maximum Volatility is #"] = { { isScalable = true } }, + ["Maximum amount of Guard is based on maximum Energy Shield instead"] = { }, ["Maximum number of Summoned Phantasms is 3"] = { }, ["Maximum number of Summoned Raging Spirits is 3"] = { }, ["Maximum of # Empowered Attack"] = { { isScalable = true } }, @@ -10427,11 +11032,13 @@ return { ["Memories placed on this location can be run an additional time before Decaying"] = { }, ["Mercury Footprints"] = { }, ["Meta Skills gain #% increased Energy"] = { { isScalable = true } }, + ["Meta Skills gain #% increased Energy for each Critical Hit you've dealt with Spells Recently"] = { { isScalable = true } }, ["Meta Skills gain #% increased Energy if you've dealt a Critical Hit Recently"] = { { isScalable = true } }, ["Meta Skills gain #% increased Energy while on Full Mana"] = { { isScalable = true } }, ["Meta Skills gain #% less Energy"] = { { isScalable = true, formats = { "negate" } } }, ["Meta Skills gain #% more Energy"] = { { isScalable = true } }, ["Meta Skills gain #% reduced Energy"] = { { isScalable = true, formats = { "negate" } } }, + ["Meta Skills gain #% reduced Energy for each Critical Hit you've dealt with Spells Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Meta Skills gain #% reduced Energy if you've dealt a Critical Hit Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Meta Skills gain #% reduced Energy while on Full Mana"] = { { isScalable = true, formats = { "negate" } } }, ["Meta Skills have #% increased Reservation Efficiency"] = { { isScalable = true } }, @@ -10456,10 +11063,17 @@ return { ["Mines have a #% chance to be Detonated an Additional Time"] = { { isScalable = true } }, ["Minimap is Revealed"] = { }, ["Minimum Endurance Charges equal to Maximum while stationary\nMinimum Frenzy Charges equal to Maximum while stationary\nMinimum Power Charges equal to Maximum while stationary"] = { }, - ["Minion Critical Hits do not deal extra Damage"] = { }, ["Minion Hits can't be Evaded"] = { }, ["Minion Instability"] = { }, ["Minion Life is increased by their Overcapped Fire Resistance"] = { }, + ["Minion Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Minion Modifiers on Birthed Items roll their values an additional # times,\nkeeping the highest value"] = { { isScalable = true } }, + ["Minion Modifiers on Birthed Items roll their values an additional time, keeping the highest value"] = { }, + ["Minion Prefix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Minion Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Minion Suffix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Minion damage Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Minion speed Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Minions Attacks Overwhelm #% Physical Damage Reduction"] = { { isScalable = true } }, ["Minions Blind on Hit with Attacks"] = { }, ["Minions Break Armour equal to #% of Physical damage dealt"] = { { isScalable = true } }, @@ -10476,7 +11090,7 @@ return { ["Minions Recover #% of their maximum Life when they Block"] = { { isScalable = true } }, ["Minions Regenerate # Life per second"] = { { isScalable = true } }, ["Minions Regenerate # Life per second per Raging Spirit you own"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, - ["Minions Regenerate #% of maximum Life per Second if they have Blocked recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Minions Regenerate #% of maximum Life per Second if they have Blocked Recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Minions Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Minions Revive #% faster"] = { { isScalable = true } }, ["Minions Revive #% faster if all your Minions are Companions"] = { { isScalable = true } }, @@ -10552,6 +11166,7 @@ return { ["Minions have # to Armour"] = { { isScalable = true } }, ["Minions have # to Minimum Power Charges"] = { { isScalable = true } }, ["Minions have #% Chance to Block Attack Damage"] = { { isScalable = true } }, + ["Minions have #% Surpassing chance to fire an additional Projectile"] = { { isScalable = true } }, ["Minions have #% additional Physical Damage Reduction"] = { { isScalable = true } }, ["Minions have #% chance to Blind Enemies on hit"] = { { isScalable = true } }, ["Minions have #% chance to Blind on Hit with Attacks"] = { { isScalable = true } }, @@ -10568,6 +11183,7 @@ return { ["Minions have #% chance to deal Double Damage while they are on Full Life"] = { { isScalable = true } }, ["Minions have #% chance to gain Onslaught for 4 seconds on Kill"] = { { isScalable = true } }, ["Minions have #% chance to gain a Power Charge on Hit"] = { { isScalable = true } }, + ["Minions have #% chance to inflict Gruelling Madness on Hit"] = { { isScalable = true } }, ["Minions have #% chance to inflict Withered on Hit"] = { { isScalable = true } }, ["Minions have #% faster start of Energy Shield Recharge"] = { { isScalable = true } }, ["Minions have #% increased Area of Effect"] = { { isScalable = true } }, @@ -10588,11 +11204,14 @@ return { ["Minions have #% increased Evasion Rating"] = { { isScalable = true } }, ["Minions have #% increased Flask Charges used"] = { { isScalable = true } }, ["Minions have #% increased Flask Effect Duration"] = { { isScalable = true } }, + ["Minions have #% increased Immobilisation buildup"] = { { isScalable = true } }, ["Minions have #% increased Life Recovery rate"] = { { isScalable = true } }, + ["Minions have #% increased Magnitude of Damaging Ailments"] = { { isScalable = true } }, ["Minions have #% increased Movement Speed"] = { { isScalable = true } }, ["Minions have #% increased Movement Speed for each Herald affecting you"] = { { isScalable = true } }, ["Minions have #% increased Projectile Speed"] = { { isScalable = true } }, ["Minions have #% increased Reservation"] = { { isScalable = true } }, + ["Minions have #% increased Skill Speed with Command Skills"] = { { isScalable = true } }, ["Minions have #% increased maximum Energy Shield"] = { { isScalable = true } }, ["Minions have #% increased maximum Life"] = { { isScalable = true } }, ["Minions have #% increased maximum Mana"] = { { isScalable = true } }, @@ -10618,11 +11237,14 @@ return { ["Minions have #% reduced Evasion Rating"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Flask Charges used"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Flask Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["Minions have #% reduced Immobilisation buildup"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Life Recovery rate"] = { { isScalable = true, formats = { "negate" } } }, + ["Minions have #% reduced Magnitude of Damaging Ailments"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Movement Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Movement Speed for each Herald affecting you"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Projectile Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, + ["Minions have #% reduced Skill Speed with Command Skills"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced maximum Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Minions have #% reduced maximum Mana"] = { { isScalable = true, formats = { "negate" } } }, @@ -10644,7 +11266,9 @@ return { ["Minions have +30% to all Elemental Resistances"] = { }, ["Minions have Unholy Might"] = { }, ["Minions have a #% chance to Impale on Hit with Attacks"] = { { isScalable = true } }, + ["Minions have no Critical Damage Bonus"] = { }, ["Minions in Presence lose Life when you lose Life\nMinions in Presence gain Life when you gain Life"] = { }, + ["Minions in your Presence have Onslaught while you are on Low Runic Ward"] = { }, ["Minions lose #% Life per 10 Tribute you have when following Commands"] = { { isScalable = true } }, ["Minions lose #% Life per 10 Tribute you have when following Commands per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["Minions never deal Critical Hits"] = { }, @@ -10686,6 +11310,8 @@ return { ["Mirror Arrow and Mirror Arrow Clones have #% reduced Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Mirror Arrow has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Mirror Arrow has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, + ["Modifiers on Birthed Items roll their values an additional # times, keeping the highest value"] = { { isScalable = true } }, + ["Modifiers on Birthed Items roll their values an additional time, keeping the highest value"] = { }, ["Modifiers to Attributes instead apply to Omniscience"] = { }, ["Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments"] = { }, ["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills"] = { }, @@ -10712,7 +11338,7 @@ return { ["Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry"] = { }, ["Modifiers to Totem Life also affects Minions from this Skill"] = { }, ["Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma"] = { }, - ["Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards"] = { }, + ["Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Splits towards"] = { }, ["Molten Shell Reflected Damage Penetrates #% of Enemy Fire Resistance"] = { { isScalable = true } }, ["Molten Shell has #% increased Skill Effect Duration"] = { { isScalable = true } }, ["Molten Shell has #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, @@ -10729,12 +11355,13 @@ return { ["Monster Damage penetrates #% of Fire Resistance"] = { { isScalable = true } }, ["Monster Damage penetrates #% of Lightning Resistance"] = { { isScalable = true } }, ["Monster Level: #"] = { { isScalable = false } }, + ["Monster have #% increased Elemental Ailment Application"] = { { isScalable = true } }, + ["Monster have #% reduced Elemental Ailment Application"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters Blind on Hit"] = { }, ["Monsters Break Armour equal to #% of Physical Damage dealt"] = { { isScalable = true } }, ["Monsters Duplicate dropped Rogue's Marker"] = { }, ["Monsters Fracture"] = { }, ["Monsters Hinder on Hit with Spells"] = { }, - ["Monsters Imprisoned around Essences in Area are Magic"] = { }, ["Monsters Imprisoned by Essences have a #% chance to contain a Remnant of Corruption"] = { { isScalable = true } }, ["Monsters Imprisoned by Essences have a #% chance to contain an additional Remnant of Corruption"] = { { isScalable = true } }, ["Monsters Imprisoned by a Shrieking Essence will be Duplicated when released"] = { }, @@ -10780,6 +11407,7 @@ return { ["Monsters fire # additional Projectiles"] = { { isScalable = true } }, ["Monsters from Beyond have #% less Quantity and Rarity of Dropped Items"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters from Beyond have #% more Quantity and Rarity of Dropped Items"] = { { isScalable = true } }, + ["Monsters from Verisium Remnants drop #% increased Verisium"] = { { isScalable = true } }, ["Monsters gain # Endurance Charge every 20 seconds"] = { { isScalable = true } }, ["Monsters gain # Endurance Charges every 20 seconds"] = { { isScalable = true } }, ["Monsters gain # Frenzy Charge every 20 seconds"] = { { isScalable = true } }, @@ -10810,6 +11438,7 @@ return { ["Monsters grant #% reduced Experience"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters guarding Shrines are Magic"] = { }, ["Monsters have #% Chance to Block Attack Damage"] = { { isScalable = true } }, + ["Monsters have #% Critical Damage Bonus"] = { { isScalable = true } }, ["Monsters have #% chance to Avoid Ailments"] = { { isScalable = true } }, ["Monsters have #% chance to Avoid Elemental Ailments"] = { { isScalable = true } }, ["Monsters have #% chance to Avoid being Chilled or Frozen"] = { { isScalable = true } }, @@ -10838,11 +11467,10 @@ return { ["Monsters have #% increased Action Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% increased Ailment Threshold"] = { { isScalable = true } }, ["Monsters have #% increased Area of Effect"] = { { isScalable = true } }, + ["Monsters have #% increased Armour, Evasion and Energy Shield"] = { { isScalable = true } }, ["Monsters have #% increased Attack, Cast and Movement Speed"] = { { isScalable = true } }, ["Monsters have #% increased Bleeding Duration"] = { { isScalable = true } }, ["Monsters have #% increased Critical Hit Chance"] = { { isScalable = true } }, - ["Monsters have #% increased Defences"] = { { isScalable = true } }, - ["Monsters have #% increased Effectiveness"] = { { isScalable = true } }, ["Monsters have #% increased Freeze Buildup"] = { { isScalable = true } }, ["Monsters have #% increased Freeze Duration"] = { { isScalable = true } }, ["Monsters have #% increased Ignite Duration"] = { { isScalable = true } }, @@ -10858,10 +11486,10 @@ return { ["Monsters have #% reduced Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Action Speed"] = { { isScalable = true } }, ["Monsters have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Monsters have #% reduced Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Attack, Cast and Movement Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Bleeding Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } }, - ["Monsters have #% reduced Defences"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Freeze Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Ignite Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% reduced Poison Duration"] = { { isScalable = true, formats = { "negate" } } }, @@ -10928,9 +11556,7 @@ return { ["Movement Speed cannot be modified to below base value"] = { }, ["Moving while Bleeding doesn't cause Minions to take extra damage"] = { }, ["Moving while Bleeding doesn't cause you to take extra damage"] = { }, - ["Natural Monster Packs in Area are in a Union of Souls"] = { }, ["Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence"] = { }, - ["Natural Rare Monsters in Area are in a Union of Souls with the Map Boss"] = { }, ["Natural Rare Monsters in Area have # extra Abyssal Modifier"] = { { isScalable = true } }, ["Natural Rare Monsters in Area have # extra Abyssal Modifiers"] = { { isScalable = true } }, ["Natural inhabitants of this area have been removed"] = { }, @@ -10939,11 +11565,11 @@ return { ["Nearby Allies gain #% of maximum Life Regenerated per second"] = { { isScalable = false, formats = { "per_minute_to_per_second" } } }, ["Nearby Allies have # Fortification"] = { { isScalable = false } }, ["Nearby Allies have #% Chance to Block Attack Damage per 100 Strength you have"] = { { isScalable = true } }, + ["Nearby Allies have #% increased Armour, Evasion and Energy Shield per 100 Strength you have"] = { { isScalable = true } }, ["Nearby Allies have #% increased Cast Speed per 100 Intelligence you have"] = { { isScalable = true } }, - ["Nearby Allies have #% increased Defences per 100 Strength you have"] = { { isScalable = true } }, ["Nearby Allies have #% increased Item Rarity"] = { { isScalable = false } }, + ["Nearby Allies have #% reduced Armour, Evasion and Energy Shield per 100 Strength you have"] = { { isScalable = true, formats = { "negate" } } }, ["Nearby Allies have #% reduced Cast Speed per 100 Intelligence you have"] = { { isScalable = true, formats = { "negate" } } }, - ["Nearby Allies have #% reduced Defences per 100 Strength you have"] = { { isScalable = true, formats = { "negate" } } }, ["Nearby Allies have #% reduced Item Rarity"] = { { isScalable = false, formats = { "negate" } } }, ["Nearby Allies have #% to Critical Damage Bonus"] = { { isScalable = false } }, ["Nearby Allies have #% to Critical Damage Bonus per 100 Dexterity you have"] = { { isScalable = true } }, @@ -10996,7 +11622,6 @@ return { ["Nearby Enemies take #% increased Physical Damage"] = { { isScalable = false } }, ["Nearby Enemies take #% reduced Physical Damage"] = { { isScalable = false, formats = { "negate" } } }, ["Nearby Enemies' Chaos Resistance is 0"] = { }, - ["Nearby Enemy Monsters have at least #% of Life Reserved"] = { { isScalable = true } }, ["Nearby allies Recover #% of your maximum Life when you Die"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Nearby allies gain #% increased Damage"] = { { isScalable = false } }, ["Nearby enemies are Chilled and Shocked while you are near a Corpse"] = { }, @@ -11061,8 +11686,6 @@ return { ["Non-Instant skills with Cooldowns have # Cooldown Use if you have at least 100 Tribute"] = { { isScalable = true } }, ["Non-Instant skills with Cooldowns have # Cooldown Uses if you have at least 100 Tribute"] = { { isScalable = true } }, ["Non-Projectile Chaining Lightning Skills Chain # times"] = { { isScalable = true } }, - ["Non-Travel Attack Skills Repeat # additional Times"] = { { isScalable = true } }, - ["Non-Travel Attack Skills Repeat an additional Time"] = { }, ["Non-Unique Flasks applied to you have #% increased Effect"] = { { isScalable = true } }, ["Non-Unique Flasks applied to you have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Non-Unique Heist Contracts found in Area have #% chance to have an additional Implicit Modifier"] = { { isScalable = true } }, @@ -11093,6 +11716,7 @@ return { ["Oasis"] = { }, ["Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword"] = { }, ["Off Hand attacks have Added Attack Damage equal to #% of the Damage of your Main Hand Weapon"] = { { isScalable = true } }, + ["Off-hand Hits inflict Runefather's Challenge"] = { }, ["Offering Skills have #% increased Area of Effect"] = { { isScalable = true } }, ["Offering Skills have #% increased Buff effect"] = { { isScalable = true } }, ["Offering Skills have #% increased Duration"] = { { isScalable = true } }, @@ -11107,12 +11731,13 @@ return { ["Oils found in Area have #% chance to be 1 tier higher"] = { { isScalable = true } }, ["On Corruption, Item gains two Enchantments"] = { }, ["On Freezing Enemies create Chilled Ground"] = { }, - ["On Heavy Stunning a Rare or Unique Enemy, your next Attack within # seconds will be Ancestrally Boosted"] = { { isScalable = true } }, + ["On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of #"] = { { isScalable = true } }, ["On Hitting an enemy, gains maximum added Lightning damage equal to\nthe enemy's Power for 20 seconds, up to a total of #"] = { { isScalable = true } }, - ["On dealing Elemental Damage with a Hit, gain # Resonance of the highest Elemental Damage type and lose # Resonance of the other types"] = { { isScalable = true }, { isScalable = true } }, + ["On dealing Elemental Damage with a Hit, gain # Affinity of the highest Elemental Damage type and lose # Affinity of the other types"] = { { isScalable = true }, { isScalable = true } }, ["On-Kill Effects happen twice"] = { }, ["One Conquered Notable Passive Skill becomes #"] = { { isScalable = false, formats = { "passive_hash" } } }, ["One of your Persistent Minions revives when an Offering expires"] = { }, + ["Only Runes can be Socketed in this item"] = { }, ["Only Shift into and out of Nightmare randomly"] = { }, ["Only Soul Cores can be Socketed in this item"] = { }, ["Only affects Passives in Large Ring"] = { }, @@ -11205,8 +11830,12 @@ return { ["Physical Damage from Hits does not contribute to Poison Magnitude"] = { }, ["Physical Damage is Pinning"] = { }, ["Physical Damage is increased by 1% per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } }, + ["Physical Damage of Enemies Hitting you is Lucky"] = { }, + ["Physical Damage of Enemies Hitting you is Unlucky"] = { }, ["Physical Damage taken bypasses Energy Shield"] = { }, ["Physical Spell Critical Hits build Pin"] = { }, + ["Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup"] = { }, + ["Physical damage from Hits Contributes to Flammability and\nIgnite Magnitudes, Freeze Buildup, and Shock Chance"] = { }, ["Piercing Attacks cause Bleeding"] = { }, ["Pin Enemies which are Primed for Pinning"] = { }, ["Pinned Enemies cannot deal Critical Hits"] = { }, @@ -11224,6 +11853,7 @@ return { ["Plague Bearer has #% reduced Maximum Plague Value"] = { { isScalable = true, formats = { "negate" } } }, ["Plants Harvested in Area are more likely to give less common Crafting Options"] = { }, ["Plants have a #% chance to immediately Overgrow"] = { { isScalable = true } }, + ["Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time"] = { { isScalable = true } }, ["Player's Life and Mana Recovery from Flasks are instant"] = { }, ["Players Regenerate #% of maximum Life per second per 25 Rampage Kills"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Players and Monsters deal #% increased Damage per Curse on them"] = { { isScalable = true } }, @@ -11310,8 +11940,8 @@ return { ["Players have #% less Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Armour"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Armour per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } }, + ["Players have #% less Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, - ["Players have #% less Defences"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Energy Shield Recovery Rate per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Evasion per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } }, ["Players have #% less Life Recovery Rate per 25% Alert Level"] = { { isScalable = true, formats = { "negate" } } }, @@ -11325,8 +11955,8 @@ return { ["Players have #% more Area of Effect"] = { { isScalable = true } }, ["Players have #% more Armour"] = { { isScalable = true } }, ["Players have #% more Armour per 25% Alert Level"] = { { isScalable = true } }, + ["Players have #% more Armour, Evasion and Energy Shield"] = { { isScalable = true } }, ["Players have #% more Cooldown Recovery Rate"] = { { isScalable = true } }, - ["Players have #% more Defences"] = { { isScalable = true } }, ["Players have #% more Energy Shield Recovery Rate per 25% Alert Level"] = { { isScalable = true } }, ["Players have #% more Evasion per 25% Alert Level"] = { { isScalable = true } }, ["Players have #% more Life Recovery Rate per 25% Alert Level"] = { { isScalable = true } }, @@ -11395,7 +12025,7 @@ return { ["Point Blank"] = { }, ["Poison Cursed Enemies on hit"] = { }, ["Poison on Hit"] = { }, - ["Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you"] = { }, + ["Poison you inflict is Reflected to you"] = { }, ["Poison you inflict with Travel Skills is Reflected to you if you\nhave fewer than 5 Poisons on you"] = { }, ["Poisoned Enemies you Kill with Hits Shatter"] = { }, ["Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible"] = { }, @@ -11430,10 +12060,15 @@ return { ["Precision has 100% increased Mana Reservation Efficiency"] = { }, ["Precision has 50% less Reservation"] = { }, ["Precision has no Reservation"] = { }, + ["Prefix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Prefix Modifiers on Birthed Items have maximum values"] = { }, + ["Prefix Modifiers on Birthed Items roll their values an additional # times,\nkeeping the highest value"] = { { isScalable = true } }, + ["Prefix Modifiers on Birthed Items roll their values an additional time, keeping the highest value"] = { }, ["Prefixes Cannot Be Changed"] = { }, ["Presence Radius is doubled"] = { }, ["Prevent #% of Damage from Deflected Critical Hits"] = { { isScalable = true } }, ["Prevent #% of Damage from Deflected Hits"] = { { isScalable = true } }, + ["Prevent #% of Damage from Deflected Hits if you've\nDeflected no Hits Recently"] = { { isScalable = true } }, ["Prevent Projectiles Chaining to or from you"] = { }, ["Prevents Death during Effect"] = { }, ["Pride has #% increased Aura Effect"] = { { isScalable = true } }, @@ -11504,12 +12139,15 @@ return { ["Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion"] = { { isScalable = true } }, ["Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion"] = { { isScalable = true } }, ["Projectiles from Socketed Gems Fork"] = { }, + ["Projectiles from Spells Chain # times"] = { { isScalable = true } }, + ["Projectiles from Spells Fork"] = { }, ["Projectiles from Spells cannot Pierce"] = { }, ["Projectiles gain #% of Non-Chaos Damage as Extra Chaos Damage per Chain"] = { { isScalable = true } }, ["Projectiles gain Damage as they travel farther, dealing up\nto #% increased Damage with Hits to targets"] = { { isScalable = true } }, ["Projectiles have #% chance for an additional Projectile when Forking"] = { { isScalable = true } }, ["Projectiles have #% chance for an additional Projectile when Forking per 10 Tribute"] = { { isScalable = true } }, ["Projectiles have #% chance to Chain an additional time from terrain"] = { { isScalable = true } }, + ["Projectiles have #% chance to Fork"] = { { isScalable = true } }, ["Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds"] = { { isScalable = true } }, ["Projectiles have #% chance to Freeze"] = { { isScalable = true } }, ["Projectiles have #% chance to Return to you"] = { { isScalable = true } }, @@ -11535,6 +12173,7 @@ return { ["Provides Immunity to Chaos Damage"] = { }, ["Punishment can affect Hexproof Enemies"] = { }, ["Punishment has no Reservation if Cast as an Aura"] = { }, + ["Puppet Master does not expire while you have Archon of Undeath"] = { }, ["Purifying Flame also creates Consecrated Ground around you"] = { }, ["Purifying Flame deals #% increased Damage"] = { { isScalable = true } }, ["Purifying Flame deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -11587,6 +12226,8 @@ return { ["Rage grants Spell damage instead of Attack damage"] = { }, ["Rage you gain is also granted to Allies in your Presence"] = { }, ["Rain of Arrows has #% chance to fire an additional sequence of arrows"] = { { isScalable = true } }, + ["Raise Shield inflicts Parried for # second on Hit"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, + ["Raise Shield inflicts Parried for # seconds on Hit"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Raise Zombie does not require a corpse"] = { }, ["Raised Spectres, Raised Zombies, and Summoned Skeletons have #% to Critical Damage Bonus"] = { { isScalable = true } }, ["Raised Zombies Cover Enemies in Ash on Hit"] = { }, @@ -11646,6 +12287,7 @@ return { ["Rare Breach Monsters have #% chance to drop an additional Map Fragment"] = { { isScalable = true } }, ["Rare Breach Monsters have #% chance to drop an additional Scarab"] = { { isScalable = true } }, ["Rare Breach Monsters have #% chance to drop an additional Unique Item"] = { { isScalable = true } }, + ["Rare Monster Packs in Area have a #% increased chance to have an Additional Rare Monster"] = { { isScalable = true } }, ["Rare Monsters Are Mirrored"] = { }, ["Rare Monsters are Hindered, with #% increased Movement Speed"] = { { isScalable = true } }, ["Rare Monsters are Hindered, with #% reduced Movement Speed"] = { { isScalable = true, formats = { "negate" } } }, @@ -11658,13 +12300,7 @@ return { ["Rare Monsters have #% chance to drop a Rare Prismatic Ring"] = { { isScalable = true } }, ["Rare Monsters have #% increased Effectiveness"] = { { isScalable = true } }, ["Rare Monsters have Inner Treasure in addition to their other Modifiers"] = { }, - ["Rare Monsters have a #% chance to have an additional Modifier"] = { { isScalable = true } }, - ["Rare Monsters have an additional Modifier"] = { }, - ["Rare Monsters have an additional Modifier and a #% chance to have another additional Modifier"] = { { isScalable = true } }, - ["Rare Monsters have three additional Modifiers"] = { }, - ["Rare Monsters have three additional Modifiers and a #% chance to have another additional Modifier"] = { { isScalable = true } }, - ["Rare Monsters have two additional Modifiers"] = { }, - ["Rare Monsters have two additional Modifiers and a #% chance to have another additional Modifier"] = { { isScalable = true } }, + ["Rare Monsters have a #% Surpassing chance to have an additional Modifier"] = { { isScalable = true } }, ["Rare Monsters in this Area Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Rare Scourge Monsters drop # additional Abyssal Jewel"] = { { isScalable = false } }, ["Rare Scourge Monsters drop # additional Abyssal Jewels"] = { { isScalable = false } }, @@ -11714,6 +12350,7 @@ return { ["Rare and Unique Monsters in Area are Possessed by at least # Tormented Spirit"] = { { isScalable = true } }, ["Rare and Unique Monsters in Area are Possessed by at least # Tormented Spirits"] = { { isScalable = true } }, ["Rare and Unique Monsters in Area are Possessed by up to # Tormented Spirits and their Minions are Touched"] = { { isScalable = true } }, + ["Raven-Touched"] = { }, ["Ravens have #% increased maximum Life"] = { { isScalable = true } }, ["Ravens have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Reap deals #% increased Damage"] = { { isScalable = true } }, @@ -11738,6 +12375,8 @@ return { ["Recover # Life when you Ignite an Enemy"] = { { isScalable = true } }, ["Recover # Life when your Trap is triggered by an Enemy"] = { { isScalable = true } }, ["Recover # Mana when Used"] = { { isScalable = true } }, + ["Recover # Runic Ward when a Charm is used"] = { { isScalable = true } }, + ["Recover # Runic Ward when you Block"] = { { isScalable = true } }, ["Recover #% of Maximum Life when you collect a Remnant"] = { { isScalable = true } }, ["Recover #% of Maximum Life when you expend at least 10 Combo"] = { { isScalable = true } }, ["Recover #% of Maximum Mana when you collect a Remnant"] = { { isScalable = true } }, @@ -11761,6 +12400,7 @@ return { ["Recover #% of maximum Life on Killing a Poisoned Enemy"] = { { isScalable = true } }, ["Recover #% of maximum Life on Rampage"] = { { isScalable = true } }, ["Recover #% of maximum Life on use"] = { { isScalable = true } }, + ["Recover #% of maximum Life over 2 Seconds when you use a Command Skill"] = { { isScalable = true } }, ["Recover #% of maximum Life per Endurance Charge on use\nLose all Endurance Charges on use"] = { { isScalable = true } }, ["Recover #% of maximum Life per Glory consumed"] = { { isScalable = true } }, ["Recover #% of maximum Life per Poison affecting Enemies you Kill"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -11798,6 +12438,9 @@ return { ["Recover #% of maximum Mana when you Shock an Enemy"] = { { isScalable = true } }, ["Recover #% of maximum Mana when you consume a Power Charge"] = { { isScalable = true } }, ["Recover #% of maximum Mana when you kill an enemy during Effect"] = { { isScalable = true } }, + ["Recover #% of maximum Runic Ward on Kill"] = { { isScalable = true } }, + ["Recover #% of maximum Runic Ward on reaching Maximum Rage"] = { { isScalable = true } }, + ["Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed"] = { { isScalable = true } }, ["Recover #% of your maximum Life when an Enemy dies in your Presence"] = { { isScalable = true } }, ["Recover #% of your maximum Mana when an Enemy dies in your Presence"] = { { isScalable = true } }, ["Recover #% of your maximum Mana when you Block"] = { { isScalable = true } }, @@ -11844,6 +12487,7 @@ return { ["Regenerate # Life per Second while you have Avian's Flight"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Life per second for each 1% Uncapped Fire Resistance"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Life per second for each Uncorrupted Item Equipped"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Regenerate # Life per second for every 10 Intelligence"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Life per second if no Equipped Items are Corrupted"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Life per second if you have at least 1000 Maximum Energy Shield"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Life per second if you have at least 1500 Maximum Energy Shield"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, @@ -11868,6 +12512,7 @@ return { ["Regenerate # Mana per second while wielding a Staff"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Mana per second while you have Arcane Surge"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate # Rage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Regenerate # Runic Ward per second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, ["Regenerate #% maximum Life over one second when Hit while Sane"] = { { isScalable = true } }, ["Regenerate #% maximum Life over one second when hit while affected by Vitality"] = { { isScalable = true } }, ["Regenerate #% of maximum Energy Shield over 1 second when Stunned"] = { { isScalable = true } }, @@ -11885,7 +12530,7 @@ return { ["Regenerate #% of maximum Energy Shield per second while stationary"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp" } } }, ["Regenerate #% of maximum Life over 1 second when Stunned"] = { { isScalable = true } }, ["Regenerate #% of maximum Life per Second for each Trap Triggered Recently, up to 10% per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, - ["Regenerate #% of maximum Life per Second if you have Blocked recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Regenerate #% of maximum Life per Second if you have Blocked Recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of maximum Life per Second if you've Detonated a Mine Recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of maximum Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second_2dp_if_required" } } }, @@ -11949,12 +12594,13 @@ return { ["Remnants can be collected from #% further away if you have at least 100 Tribute"] = { { isScalable = true } }, ["Remnants have # additional Suffix Modifiers"] = { { isScalable = true } }, ["Remnants have #% chance to have an additional Suffix Modifier"] = { { isScalable = true } }, - ["Remnants have #% increased effect"] = { { isScalable = true } }, - ["Remnants have #% increased effect per 10 Tribute"] = { { isScalable = true } }, - ["Remnants have #% reduced effect"] = { { isScalable = true, formats = { "negate" } } }, - ["Remnants have #% reduced effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["Remnants have an additional Suffix Modifier"] = { }, ["Remnants must be collected from #% closer if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["Remnants you create affect Allies in your Presence as well as you when collected"] = { }, + ["Remnants you create have #% increased effect"] = { { isScalable = true } }, + ["Remnants you create have #% increased effect per 10 Tribute"] = { { isScalable = true } }, + ["Remnants you create have #% reduced effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Remnants you create have #% reduced effect per 10 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["Remove #% of Mana on hit"] = { { isScalable = true } }, ["Remove Bleeding when you use a Guard Skill"] = { }, ["Remove Bleeding when you use a Life Flask"] = { }, @@ -11992,6 +12638,9 @@ return { ["Removes Elemental Ailments when you use a Flask"] = { }, ["Removes Frozen and Chilled on use"] = { }, ["Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence"] = { { isScalable = true } }, + ["Repeatable Attacks with this Bow Repeat # times if no enemies are in your Presence"] = { { isScalable = true } }, + ["Replaces modifiers unpredictably on Ezomyte and Kalguuran Unique items"] = { }, ["Require # additional enemies to be Surrounded"] = { { isScalable = true } }, ["Require # fewer enemies to be Surrounded"] = { { isScalable = true, formats = { "negate" } } }, ["Rerolling Favours at Ritual Altars has no Cost the first # times"] = { { isScalable = true } }, @@ -11999,10 +12648,9 @@ return { ["Rerolling Favours at Ritual Altars in Area costs #% increased Tribute"] = { { isScalable = true } }, ["Rerolling Favours at Ritual Altars in Area costs #% reduced Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["Reserves #% of Life"] = { { isScalable = true } }, + ["Resistance Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Resolute Technique"] = { }, - ["Resonance"] = { }, ["Restless Dead"] = { }, - ["Restores Ward on use"] = { }, ["Returning Projectiles Pierce all Targets"] = { }, ["Reused at the end of this Flask's effect"] = { }, ["Reveal Weaknesses against Rare and Unique enemies"] = { }, @@ -12047,7 +12695,6 @@ return { ["Ritual Cadence"] = { }, ["Ritual Favours in Area have #% increased chance to be Omens"] = { { isScalable = true } }, ["Ritual Favours in Area have #% reduced chance to be Omens"] = { { isScalable = true, formats = { "negate" } } }, - ["Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier\nA maximum of one Modifer can be granted this way"] = { }, ["Rogue Equipment cannot be found"] = { }, ["Rogue Exiles deal #% increased Damage"] = { { isScalable = true } }, ["Rogue Exiles deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -12075,13 +12722,17 @@ return { ["Rolling Magma fires an additional Projectile"] = { }, ["Rolling Magma has #% increased Area of Effect per Chain"] = { { isScalable = true } }, ["Rolling Magma has #% reduced Area of Effect per Chain"] = { { isScalable = true, formats = { "negate" } } }, + ["Rolls only the minimum or maximum Damage value for Physical Damage"] = { }, ["Rolls only the minimum or maximum Damage value for each Damage Type"] = { }, ["Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second"] = { }, ["Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds"] = { }, ["Runebinder"] = { }, ["Runic Monsters in your Maps are Duplicated"] = { }, + ["Runic Ward Regeneration Rate is doubled"] = { }, + ["Runic Ward recovery can can Overflow maximum Runic Ward"] = { }, ["Sacrifice # Life to not consume the last bolt when firing"] = { { isScalable = true } }, - ["Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell"] = { { 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 } }, ["Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll"] = { { isScalable = true } }, ["Sacrifice #% of your Life when you Use or Trigger a Spell Skill"] = { { isScalable = true } }, ["Sacrifice up to # to receive double on Trial completion"] = { { isScalable = false, formats = { "ultimatum_wager_type_hash" } } }, @@ -12099,6 +12750,9 @@ return { ["Scourge Arrow deals #% increased Damage"] = { { isScalable = true } }, ["Scourge Arrow deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Scourge Arrow has #% chance to Poison per Stage"] = { { isScalable = true } }, + ["Sealed Skills have # to maximum Seals"] = { { isScalable = true } }, + ["Sealed Skills have #% increased Seal gain frequency"] = { { isScalable = true } }, + ["Sealed Skills have #% reduced Seal gain frequency"] = { { isScalable = true, formats = { "negate" } } }, ["Second form has #% less Projectile Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Second form has #% more Projectile Speed"] = { { isScalable = true } }, ["Second form has #% to Critical Damage Bonus"] = { { isScalable = true } }, @@ -12116,7 +12770,7 @@ return { ["Sentinels of Purity deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Shapeshift Skills have #% increased Skill Effect Duration"] = { { isScalable = true } }, ["Shapeshift Skills have #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, - ["Shapeshift Slam Skills you use yourself to cause an additional Aftershock"] = { }, + ["Shapeshift Slam Skills you use yourself cause an additional Aftershock"] = { }, ["Shard Projectiles Deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Shard Projectiles Deal #% more Damage"] = { { isScalable = true } }, ["Shard Projectiles Pierce all Targets"] = { }, @@ -12202,19 +12856,19 @@ return { ["Skills Cost # Energy Shield"] = { { isScalable = true } }, ["Skills Cost # Life"] = { { isScalable = true } }, ["Skills Cost # Mana"] = { { isScalable = true } }, + ["Skills Cost Divinity instead of Mana or Life"] = { }, ["Skills Cost no Mana during Effect"] = { }, ["Skills Fire # additional Projectile for 4 seconds after\nyou consume a total of 12 Steel Shards"] = { { isScalable = true } }, ["Skills Fire # additional Projectiles for 4 seconds after\nyou consume a total of 12 Steel Shards"] = { { isScalable = true } }, - ["Skills Repeat an additional # Times"] = { { isScalable = true } }, - ["Skills Repeat an additional Time"] = { }, + ["Skills Gain #% of Mana Cost as Extra Life Cost"] = { { isScalable = true } }, + ["Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost"] = { { isScalable = true } }, ["Skills Supported by Nightblade have #% increased Effect of Elusive"] = { { isScalable = true } }, ["Skills Supported by Nightblade have #% reduced Effect of Elusive"] = { { isScalable = true, formats = { "negate" } } }, ["Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Skills Supported by Spellslinger have #% increased Mana Reservation"] = { { isScalable = true } }, ["Skills Supported by Spellslinger have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["Skills Supported by Spellslinger have #% reduced Mana Reservation"] = { { isScalable = true, formats = { "negate" } } }, - ["Skills Supported by Unleash have #% increased Seal gain frequency"] = { { isScalable = true } }, - ["Skills Supported by Unleash have #% reduced Seal gain frequency"] = { { isScalable = true, formats = { "negate" } } }, + ["Skills can build and retain Combo regardless of Weapon Set"] = { }, ["Skills deal #% increased Brand Damage with Hits to their Branded Enemy"] = { { isScalable = true } }, ["Skills deal #% increased Damage per Combo consumed, up to 40%"] = { { isScalable = true } }, ["Skills deal #% increased Damage per Connected Red Support Gem"] = { { isScalable = true } }, @@ -12235,6 +12889,7 @@ return { ["Skills fire an additional Projectile if the last Movement Skill you Used was Disengage"] = { }, ["Skills fire an additional Projectile if you've been Hit Recently"] = { }, ["Skills fire an additional Projectile if you've used a Movement Skill Recently"] = { }, + ["Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect"] = { { isScalable = true } }, ["Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs"] = { { isScalable = true } }, ["Skills from Corrupted Gems have Mana Costs Converted to Life Costs"] = { }, ["Skills from Equipped Gloves have 40% increased Area of Effect"] = { }, @@ -12243,23 +12898,26 @@ return { ["Skills gain #% of Damage as Chaos Damage per 3 Life Cost"] = { { isScalable = true } }, ["Skills gain 1 Glory every # second for each Rare or Unique monster in your Presence"] = { { isScalable = true } }, ["Skills gain 1 Glory every # seconds for each Rare or Unique monster in your Presence"] = { { isScalable = true } }, - ["Skills gain a Base Life Cost equal to #% of Base Mana Cost"] = { { isScalable = true } }, ["Skills gain a Base Life Cost equal to Base Mana Cost"] = { }, ["Skills have # seconds to Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Skills have # to Limit"] = { { isScalable = true } }, ["Skills have #% chance to not consume a Cooldown when used"] = { { isScalable = true } }, ["Skills have #% chance to not remove Charges but still count as consuming them"] = { { isScalable = true } }, ["Skills have #% chance to not remove Elemental Infusions but still count as consuming them"] = { { isScalable = true } }, + ["Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds"] = { { isScalable = true } }, ["Skills have #% chance to not remove Endurance Charges but still count as consuming them"] = { { isScalable = true } }, ["Skills have #% chance to not remove Frenzy Charges but still count as consuming them"] = { { isScalable = true } }, ["Skills have #% chance to not remove Power Charges but still count as consuming them"] = { { isScalable = true } }, ["Skills have #% increased Critical Hit Chance per Connected Blue Support Gem"] = { { isScalable = true } }, ["Skills have #% increased Skill Speed per Connected Green Support Gem"] = { { isScalable = true } }, + ["Skills have #% longer Perfect Timing window during effect"] = { { isScalable = true } }, ["Skills have #% reduced Critical Hit Chance per Connected Blue Support Gem"] = { { isScalable = true, formats = { "negate" } } }, ["Skills have #% reduced Skill Speed per Connected Green Support Gem"] = { { isScalable = true, formats = { "negate" } } }, ["Skills have a #% chance to not consume Glory"] = { { isScalable = true } }, ["Skills have a #% longer Perfect Timing window"] = { { isScalable = true } }, ["Skills have a #% shorter Perfect Timing window"] = { { isScalable = true, formats = { "negate" } } }, + ["Skills lose Combo #% faster"] = { { isScalable = true } }, + ["Skills lose Combo #% slower"] = { { isScalable = true, formats = { "negate" } } }, ["Skills reserve 50% less Spirit"] = { }, ["Skills that leave Lingering Blades have # to Maximum Lingering Blades"] = { { isScalable = true } }, ["Skills that leave Lingering Blades have #% chance to leave two Lingering Blades instead of one"] = { { isScalable = true } }, @@ -12646,26 +13304,23 @@ return { ["Spectres have #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, ["Spectres have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target"] = { { isScalable = true } }, + ["Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target"] = { { isScalable = true } }, ["Spell Hits Hinder you"] = { }, ["Spell Hits against you have #% increased Critical Hit Chance"] = { { isScalable = true } }, ["Spell Hits against you have #% reduced Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } }, ["Spell Hits against you to inflict Poison"] = { }, ["Spell Hits have #% chance to Hinder you"] = { { isScalable = true } }, - ["Spell Skills always deal Critical Hits on final Repeat"] = { }, - ["Spell Skills cannot deal Critical Hits except on final Repeat"] = { }, ["Spell Skills deal no Damage"] = { }, ["Spell Skills have # to maximum number of Summoned Totems"] = { { isScalable = true } }, ["Spell Skills have #% increased Area of Effect"] = { { isScalable = true } }, - ["Spell Skills have #% increased Critical Damage Bonus on final Repeat"] = { { isScalable = true } }, ["Spell Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["Spell Skills have #% reduced Critical Damage Bonus on final Repeat"] = { { isScalable = true, formats = { "negate" } } }, + ["Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward"] = { { isScalable = true } }, ["Spells Cast by Totems have #% increased Cast Speed"] = { { isScalable = true } }, ["Spells Cast by Totems have #% increased Cast Speed per Summoned Totem"] = { { isScalable = true } }, ["Spells Cast by Totems have #% reduced Cast Speed per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, ["Spells Deal Double Damage"] = { }, ["Spells Gain #% of Damage as extra Chaos Damage"] = { { isScalable = true } }, - ["Spells Repeat an additional # Times"] = { { isScalable = true } }, - ["Spells Repeat an additional Time"] = { }, ["Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds"] = { }, ["Spells cast by Totems deal #% increased Damage"] = { { isScalable = true } }, ["Spells cast by Totems deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -12680,8 +13335,6 @@ return { ["Spells have a #% chance to deal Double Damage"] = { { isScalable = true } }, ["Spells have a #% chance to inflict Withered for 4 seconds on Hit"] = { { isScalable = true } }, ["Spells have a #% chance to not pay costs when cast"] = { { isScalable = true } }, - ["Spells in this item Repeat an additional # times"] = { { isScalable = false } }, - ["Spells in this item Repeat an additional time"] = { }, ["Spells inflict Withered for 4 seconds on Hit"] = { }, ["Spells lose Intensity with #% increased frequency while moving"] = { { isScalable = true } }, ["Spells lose Intensity with #% reduced frequency while moving"] = { { isScalable = true, formats = { "negate" } } }, @@ -12715,6 +13368,10 @@ return { ["Spread when affected Enemy is Hit"] = { }, ["Spreads Tar when you Block"] = { }, ["Spreads Tar when you take a Critical Hit"] = { }, + ["Stags deal #% less damage per leap"] = { { isScalable = true, formats = { "negate" } } }, + ["Stags deal #% more damage per leap"] = { { isScalable = true } }, + ["Stags have #% less Shock Magnitude per leap"] = { { isScalable = true, formats = { "negate" } } }, + ["Stags have #% more Shock Magnitude per leap"] = { { isScalable = true } }, ["Stance Skills have # seconds to Cooldown"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Stashes cannot be used"] = { }, ["Static Strike has # maximum Beam Targets"] = { { isScalable = true } }, @@ -12754,6 +13411,7 @@ return { ["Stormblast, Icicle and Pyroclast Mine deal no Damage"] = { }, ["Stormblast, Icicle and Pyroclast Mine have #% increased Aura Effect"] = { { isScalable = true } }, ["Stormblast, Icicle and Pyroclast Mine havee has #% reduced Aura Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Strength Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, ["Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills"] = { }, ["Strength from Passives in Radius is Transformed to Dexterity"] = { }, ["Strength from Passives in Radius is Transformed to Intelligence"] = { }, @@ -12789,6 +13447,10 @@ return { ["Successfully Parrying a Melee Hit grants #% reduced Damage to your next Ranged Attack"] = { { isScalable = true, formats = { "negate" } } }, ["Successfully Parrying a Projectile Hit grants #% increased Damage to your next Melee Attack"] = { { isScalable = true } }, ["Successfully Parrying a Projectile Hit grants #% reduced Damage to your next Melee Attack"] = { { isScalable = true, formats = { "negate" } } }, + ["Suffix Modifiers on Birthed Items have Minimum Modifier Level #"] = { { isScalable = true } }, + ["Suffix Modifiers on Birthed Items have maximum values"] = { }, + ["Suffix Modifiers on Birthed Items roll their values an additional # times,\nkeeping the highest value"] = { { isScalable = true } }, + ["Suffix Modifiers on Birthed Items roll their values an additional time, keeping the highest value"] = { }, ["Suffixes Cannot Be Changed"] = { }, ["Summon # additional Skeletons with Summon Skeletons"] = { { isScalable = true } }, ["Summon Raging Spirit has #% chance to summon an extra Minion"] = { { isScalable = true } }, @@ -12900,6 +13562,7 @@ return { ["Sunder has #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Sunder has #% reduced delay between Areas in the Wave"] = { { isScalable = true, formats = { "negate" } } }, ["Supported Attack Skills cannot be used with Melee Weapons"] = { }, + ["Supported Minions' Strikes have Melee Splash"] = { }, ["Supported Projectile Skills deal #% less Projectile Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Supported Projectile Skills deal #% more Projectile Damage"] = { { isScalable = true } }, ["Supported Skill Gems gain #% increased Experience"] = { { isScalable = true } }, @@ -13048,6 +13711,7 @@ return { ["Talismans found in this Area are # Tiers higher"] = { { isScalable = false } }, ["Talismans found in this Area are 1 Tier higher"] = { }, ["Talismans found in this Area are Rare"] = { }, + ["Tame Beast can capture Unique Beasts\nCan have up to one Unique Tamed Beast summoned"] = { }, ["Targeted by a Meteor when you use a Flask"] = { }, ["Targets Cursed by you have #% increased Life Regeneration Rate"] = { { isScalable = true } }, ["Targets Cursed by you have #% reduced Life Regeneration Rate"] = { { isScalable = true, formats = { "negate" } } }, @@ -13056,6 +13720,7 @@ return { ["Targets can be affected by any number of your Poisons at the same time"] = { }, ["Targets can be affected by two of your Chills at the same time"] = { }, ["Targets can be affected by two of your Shocks at the same time"] = { }, + ["Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits"] = { }, ["Taunt Enemies on Hit with Attacks"] = { }, ["Taunts nearby Enemies on use"] = { }, ["Tectonic Slam and Infernal Blow deal #% increased Attack Damage per 450 Armour"] = { { isScalable = true } }, @@ -13066,6 +13731,7 @@ return { ["Tectonic Slam has #% fissure branching chance"] = { { isScalable = true } }, ["Tectonic Slam has #% increased Area of Effect"] = { { isScalable = true } }, ["Tectonic Slam has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Tempest Bells are destroyed after an additional # Hits"] = { { isScalable = true } }, ["Tempest Effects have #% increased Area of Effect"] = { { isScalable = true } }, ["Tempest Effects have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Tempest Shield chains an additional # times"] = { { isScalable = true } }, @@ -13081,7 +13747,9 @@ return { ["Temporary Minion Skills have # to Limit of Minions summoned"] = { { isScalable = true } }, ["Thaumaturgical Lure"] = { }, ["The Blood Crucible can transform Unique Equipment"] = { }, + ["The Bodach haunts your Presence"] = { }, ["The Divine Font may bless belts"] = { }, + ["The Effect of Blind on you is reversed"] = { }, ["The Effect of Chill on you is reversed"] = { }, ["The First 3 Possessed Monsters drop an additional Gilded Scarab"] = { }, ["The First 3 Possessed Monsters drop an additional Map"] = { }, @@ -13107,6 +13775,8 @@ return { ["The first time a Player reaches # Rampage Kills in this Area, 6 Basic Currency Items will drop"] = { { isScalable = true } }, ["The first time a Player reaches # Rampage Kills in this Area, they will encounter a Powerful Monster"] = { { isScalable = true } }, ["The most Damaging Poison on Enemies you Kill is Spread to other Enemies within # metres"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["The next Attack you use within # seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted"] = { { isScalable = true } }, + ["The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted"] = { }, ["This Flask cannot be Used but applies its Effect constantly"] = { }, ["This Gem can only Support Skill Gems requiring Level # or lower"] = { { isScalable = true } }, ["This Gem gains #% increased Experience"] = { { isScalable = true } }, @@ -13126,6 +13796,7 @@ return { ["This item gains bonuses from Socketed Soul Cores as though it was also a Helmet"] = { }, ["This item gains bonuses from Socketed Soul Cores as though it was also a Shield"] = { }, ["Thorns Damage has #% chance to ignore Enemy Armour"] = { { isScalable = true } }, + ["Thorns Damage is Lucky against targets with Fully Broken Armour"] = { }, ["Thorns can Retaliate against all Hits"] = { }, ["Throw # additional Mines"] = { { isScalable = true } }, ["Throw an additional Mine"] = { }, @@ -13178,6 +13849,9 @@ return { ["Transfiguration of Body"] = { }, ["Transfiguration of Mind"] = { }, ["Transfiguration of Soul"] = { }, + ["Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers"] = { }, + ["Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers"] = { }, + ["Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers"] = { }, ["Transmogrification"] = { }, ["Trap Damage Penetrates #% Elemental Resistances"] = { { isScalable = true } }, ["Trap and Mine Damage Penetrates #% Elemental Resistances"] = { { isScalable = true } }, @@ -13251,7 +13925,6 @@ return { ["Trigger Elemental Expression on Melee Critical Hit"] = { }, ["Trigger Elemental Storm on Critical Hit with Spells"] = { }, ["Trigger Ember Fusillade Skill on casting a Spell"] = { }, - ["Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark"] = { { isScalable = false } }, ["Trigger Level # Bone Nova when you Hit a Bleeding Enemy"] = { { isScalable = false } }, ["Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you"] = { { isScalable = false } }, ["Trigger Level # Consecrate when you deal a Critical Hit"] = { { isScalable = false } }, @@ -13270,7 +13943,6 @@ return { ["Trigger Level # Intimidating Cry when you lose Cat's Stealth"] = { { isScalable = false } }, ["Trigger Level # Lightning Bolt when you deal a Critical Hit"] = { { isScalable = false } }, ["Trigger Level # Lightning Warp on Hit with this Weapon"] = { { isScalable = false } }, - ["Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark"] = { { isScalable = false } }, ["Trigger Level # Rain of Arrows when you Attack with a Bow"] = { { isScalable = false } }, ["Trigger Level # Shield Shatter when you Block"] = { { isScalable = false } }, ["Trigger Level # Shock Ground when Hit"] = { { isScalable = false } }, @@ -13283,8 +13955,6 @@ return { ["Trigger Level # Toxic Rain when you Attack with a Bow"] = { { isScalable = false } }, ["Trigger Level # Unseen Strike every 0.5 seconds while Phasing"] = { { isScalable = false } }, ["Trigger Level # Void Gaze when you use a Skill"] = { { isScalable = false } }, - ["Trigger Level # Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark"] = { { isScalable = false } }, - ["Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark"] = { { isScalable = false } }, ["Trigger Level 1 Blood Rage when you Kill an Enemy"] = { }, ["Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"] = { }, ["Trigger Level 10 Summon Raging Spirit on Kill"] = { }, @@ -13375,6 +14045,7 @@ return { ["Unaffected by Curses while affected by Zealotry"] = { }, ["Unaffected by Damaging Ailments"] = { }, ["Unaffected by Desecrated Ground"] = { }, + ["Unaffected by Elemental Weakness"] = { }, ["Unaffected by Elemental Weakness while affected by Purity of Elements"] = { }, ["Unaffected by Enfeeble while affected by Grace"] = { }, ["Unaffected by Flammability while affected by Purity of Fire"] = { }, @@ -13441,6 +14112,14 @@ return { ["Unique Monsters have #% increased Effectiveness"] = { { isScalable = true } }, ["Unique Monsters have #% increased Maximum Life"] = { { isScalable = true } }, ["Unique Monsters have #% reduced Maximum Life"] = { { isScalable = true, formats = { "negate" } } }, + ["Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, + ["Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every second"] = { }, + ["Unique Tamed Beasts deal #% less damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Unique Tamed Beasts deal #% more damage"] = { { isScalable = true } }, + ["Unique Tamed Beasts have #% increased Skill Speed"] = { { isScalable = true } }, + ["Unique Tamed Beasts have #% increased movement speed"] = { { isScalable = true } }, + ["Unique Tamed Beasts have #% reduced Skill Speed"] = { { isScalable = true, formats = { "negate" } } }, + ["Unique Tamed Beasts have #% reduced movement speed"] = { { isScalable = true, formats = { "negate" } } }, ["Unnerve Enemies for 4 seconds on Hit"] = { }, ["Unnerve Enemies for 4 seconds on Hit with Wands"] = { }, ["Unnerve nearby Enemies for # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_1dp" } } }, @@ -13449,6 +14128,8 @@ return { ["Unwithered enemies are Withered for # seconds when they enter your Presence"] = { { isScalable = true } }, ["Upgrades Radius to Large"] = { }, ["Upgrades Radius to Medium"] = { }, + ["Upgrades Radius to Very Large"] = { }, + ["Upgrades a socketed Rune"] = { }, ["Used when Charges reach full"] = { }, ["Used when an adjacent Flask is used"] = { }, ["Used when you Block"] = { }, @@ -13465,6 +14146,7 @@ return { ["Used when you become Stunned"] = { }, ["Used when you kill a Rare or Unique enemy"] = { }, ["Used when you lose a Guard Skill Buff"] = { }, + ["Used when you release a skill with Perfect Timing"] = { }, ["Used when you start Bleeding"] = { }, ["Used when you take Chaos damage from a Hit"] = { }, ["Used when you take Cold damage from a Hit"] = { }, @@ -13474,6 +14156,7 @@ return { ["Used when you use a Life Flask"] = { }, ["Uses both hand slots"] = { }, ["Using Warcries is Instant"] = { }, + ["Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds"] = { { isScalable = true } }, ["Using a Mana Flask revives one of your Persistent Minions"] = { }, ["Utility Flasks gain # Charge every 3 seconds"] = { { isScalable = true } }, ["Utility Flasks gain # Charges every 3 seconds"] = { { isScalable = true } }, @@ -13516,6 +14199,9 @@ return { ["Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit"] = { { isScalable = true } }, ["Venom Gyre has a #% chance to keep each caught Projectile fired with Whirling Blades"] = { { isScalable = true } }, ["Venom Gyre inflicts Withered for 2 seconds on Hit"] = { }, + ["Verisium Remnants have at least # Rune slots"] = { { isScalable = true } }, + ["Verisium Remnants in Area are Lucky"] = { }, + ["Verisium Remnants in Area are rolled # times, keeping the rarest outcome"] = { { isScalable = true } }, ["Versatile Combatant"] = { }, ["Vigilant Strike has #% increased Fortification Duration"] = { { isScalable = true } }, ["Vigilant Strike has #% reduced Fortification Duration"] = { { isScalable = true, formats = { "negate" } } }, @@ -13527,6 +14213,7 @@ return { ["Vitality has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["Vitality has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, ["Vitality has no Reservation"] = { }, + ["Vivid Stags leap towards enemies"] = { }, ["Void Sphere has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Void Sphere has #% increased Pulse Frequency"] = { { isScalable = true } }, ["Void Sphere has #% reduced Pulse Frequency"] = { { isScalable = true, formats = { "negate" } } }, @@ -13587,7 +14274,6 @@ return { ["Warcry Skills have #% increased Area of Effect"] = { { isScalable = true } }, ["Warcry Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Warcry Skills' Cooldown Time is 4 seconds"] = { }, - ["Ward does not Break during Effect"] = { }, ["Wave of Conviction deals #% increased Damage"] = { { isScalable = true } }, ["Wave of Conviction deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Wave of Conviction has #% increased Duration"] = { { isScalable = true } }, @@ -13617,6 +14303,8 @@ return { ["When a Player Kills a Synthesised Rare Monster, they gain its Modifiers for 20 seconds"] = { }, ["When a Player Kills a Synthesised Rare Monster, they have #% chance to gain its Modifiers for 20 seconds"] = { { isScalable = true } }, ["When collecting an Elemental Infusion, gain an additional Elemental Infusion of the same type"] = { }, + ["When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power"] = { }, + ["When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers"] = { }, ["When used in the Synthesiser, the new item will have an additional Herald Modifier"] = { }, ["When you Attack, take #% of Life as Physical Damage for\neach Warcry Empowering the Attack"] = { { isScalable = true } }, ["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds"] = { { isScalable = true } }, @@ -13636,6 +14324,8 @@ return { ["When you Shapeshift to Human form, gain #% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds"] = { { isScalable = true } }, ["When you Warcry, you and nearby Allies gain Onslaught for 4 seconds"] = { }, ["When you create a Banner, it gains #% of the Stages of your placed Banner"] = { { isScalable = true } }, + ["When you gain Combo, gain # additional Combo"] = { { isScalable = true } }, + ["When you gain Combo, gain an additional Combo"] = { }, ["When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead"] = { }, ["When you generate a Power Charge, Allies in your Presence generate that Charge instead"] = { }, ["When you generate an Endurance Charge, Allies in your Presence generate that Charge instead"] = { }, @@ -13648,6 +14338,7 @@ return { ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surge or # Fire Surges"] = { { isScalable = true }, { isScalable = true } }, ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surges or # Fire Surge"] = { { isScalable = true }, { isScalable = true } }, ["When you reload, triggers Gemini Surge to alternately\ngain # Cold Surges or # Fire Surges"] = { { isScalable = true }, { isScalable = true } }, + ["When you stop Sprinting, gain Guard equal to #% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds"] = { { isScalable = true } }, ["When your Marks are Consumed, they have #% chance to Mark another Enemy within 3 metres"] = { { isScalable = true } }, ["When your Traps Trigger, your nearby Traps also Trigger"] = { }, ["When your weapon gains Infusion #% chance to gain an additional Infusion of the same type"] = { { isScalable = true } }, @@ -13668,6 +14359,14 @@ return { ["Wild Strike's Beam Chains an additional # times"] = { { isScalable = true } }, ["Wild Strike's Beam Chains an additional time"] = { }, ["Wildsurge Incantation"] = { }, + ["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\nas being boosted by Chilled Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited and Chilled Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited and Shocked Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited, Shocked, and Chilled Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Shocked Ground"] = { }, + ["Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Shocked and Chilled Ground"] = { }, ["Winter Orb deals #% increased Damage"] = { { isScalable = true } }, ["Winter Orb deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Winter Orb has # Maximum Stages"] = { { isScalable = true } }, @@ -13783,7 +14482,6 @@ return { ["With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle"] = { }, ["With at least 40 Intelligence in Radius, Spark fires an additional Projectile"] = { }, ["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages"] = { { isScalable = true } }, - ["With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has #% increased Area of Effect per Enemy Hit"] = { { isScalable = true } }, ["With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer"] = { { isScalable = true } }, ["With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby\nEnemy, up to +10"] = { }, ["With at least 40 Strength in Radius, Combust is Disabled"] = { }, @@ -13812,10 +14510,10 @@ return { ["Wither has #% increased Duration"] = { { isScalable = true } }, ["Wither has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Wither has #% reduced Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["Withered also causes enemies to deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Withered does not expire on Enemies Ignited by you"] = { }, ["Withered for 2 seconds when you take Chaos Damage from a Hit"] = { }, - ["Withered you Inflict expires #% faster"] = { { isScalable = true } }, - ["Withered you Inflict expires #% slower"] = { { isScalable = true, formats = { "negate" } } }, + ["Withered you inflict also increases Fire Damage taken"] = { }, ["Withered you inflict has infinite Duration"] = { }, ["Withering Step has #% increased Elusive Effect"] = { { isScalable = true } }, ["Withering Step has #% reduced Elusive Effect"] = { { isScalable = true, formats = { "negate" } } }, @@ -13838,7 +14536,6 @@ return { ["You and Allies in your Presence have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["You and Allies in your Presence have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["You and Allies in your Presence have #% to Chaos Resistance"] = { { isScalable = true } }, - ["You and Nearby Allies have # to # added Chaos Damage per White Socket"] = { { isScalable = true }, { isScalable = true } }, ["You and Nearby Allies have # to # added Cold Damage per Green Socket"] = { { isScalable = true }, { isScalable = true } }, ["You and Nearby Allies have # to # added Fire Damage per Red Socket"] = { { isScalable = true }, { isScalable = true } }, ["You and Nearby Allies have # to # added Lightning Damage per Blue Socket"] = { { isScalable = true }, { isScalable = true } }, @@ -13878,6 +14575,7 @@ return { ["You and your Totems Regenerate #% of maximum Life per second for each Summoned Totem"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["You and your Totems gain an Endurance Charge when your Totems Kill a Burning Enemy"] = { }, ["You and your allies cannot be Stunned while you are wielding a Staff"] = { }, + ["You are Blind"] = { }, ["You are Crushed"] = { }, ["You are Cursed with Despair"] = { }, ["You are Cursed with Elemental Weakness"] = { }, @@ -13895,6 +14593,7 @@ return { ["You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds"] = { }, ["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"] = { }, ["You are considered on Low Life while at #% of maximum Life or below instead"] = { { isScalable = true } }, + ["You are considered on Low Mana while at #% of maximum Mana or below instead"] = { { isScalable = true } }, ["You can Break Enemy Armour to below 0"] = { }, ["You can Cast # additional Brands"] = { { isScalable = true } }, ["You can Cast an additional Brand"] = { }, @@ -13913,18 +14612,31 @@ return { ["You can catch Exotic Fish"] = { }, ["You can catch Scourged Fish"] = { }, ["You can have an Offering of each type"] = { }, + ["You can have any number of Companions of different types"] = { }, ["You can have two Companions of different types"] = { }, ["You can have two different Banners at the same time"] = { }, ["You can inflict # additional Ignites on an Enemy"] = { { isScalable = true } }, ["You can inflict Bleeding on an Enemy up to # times\nYour Bleeding does not deal extra Damage while the Enemy is moving"] = { { isScalable = true } }, ["You can inflict an additional Ignite on an Enemy"] = { }, + ["You can only Socket # Emerald Jewel in this item"] = { { isScalable = true } }, + ["You can only Socket # Emerald Jewels in this item"] = { { isScalable = true } }, + ["You can only Socket # Emerald and # Sapphire Jewel in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Emerald and # Sapphire Jewels in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby Jewel in this item"] = { { isScalable = true } }, + ["You can only Socket # Ruby Jewels in this item"] = { { isScalable = true } }, + ["You can only Socket # Ruby and # Emerald Jewel in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby and # Emerald Jewels in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby and # Sapphire Jewel in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby and # Sapphire Jewels in this item"] = { { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby, # Emerald, and # Sapphire Jewel in this item"] = { { isScalable = true }, { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Ruby, # Emerald, and # Sapphire Jewels in this item"] = { { isScalable = true }, { isScalable = true }, { isScalable = true } }, + ["You can only Socket # Sapphire Jewel in this item"] = { { isScalable = true } }, + ["You can only Socket # Sapphire Jewels in this item"] = { { isScalable = true } }, ["You can only Socket Corrupted Gems in this item"] = { }, ["You can only Socket Emerald Jewels in this item"] = { }, ["You can only Socket Ruby Jewels in this item"] = { }, ["You can only Socket Sapphire Jewels in this item"] = { }, ["You can only deal Damage with this Weapon or Ignite"] = { }, - ["You can use One Hand Mace skills while Unarmed"] = { }, - ["You can use Quarterstaff skills while Unarmed"] = { }, ["You can wield Two-Handed Axes, Maces and Swords in one hand"] = { }, ["You can't deal Damage with your Skills yourself"] = { }, ["You cannot Cast Curse Spells"] = { }, @@ -13937,6 +14649,7 @@ return { ["You cannot be Chilled or Frozen"] = { }, ["You cannot be Chilled or Frozen while you have an Ice Golem Summoned"] = { }, ["You cannot be Cursed with Silence"] = { }, + ["You cannot be Electrocuted"] = { }, ["You cannot be Frozen for # second after being Frozen"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["You cannot be Frozen for # seconds after being Frozen"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["You cannot be Frozen if you've been Frozen Recently"] = { }, @@ -14045,6 +14758,8 @@ return { ["You have a Smoke Cloud around you while stationary"] = { }, ["You have an additional #% Chance to Block Attack Damage from in front of you"] = { { isScalable = true } }, ["You have no Accuracy Penalty at Distance"] = { }, + ["You have no Critical Damage Bonus"] = { }, + ["You have no Critical Damage Bonus during Effect"] = { }, ["You have no Elemental Resistances"] = { }, ["You have no Life Regeneration"] = { }, ["You have no Mana Regeneration"] = { }, @@ -14116,8 +14831,6 @@ return { ["Your Critical Hit Chance is Unlucky while on Low Life"] = { }, ["Your Critical Hits Knock Back Shocked Enemies"] = { }, ["Your Critical Hits cannot Freeze, Shock, or Ignite Enemies"] = { }, - ["Your Critical Hits do not deal extra Damage"] = { }, - ["Your Critical Hits do not deal extra Damage during Effect"] = { }, ["Your Critical Hits have a #% chance to deal Double Damage"] = { { isScalable = true } }, ["Your Critical Hits with Attacks Maim Enemies"] = { }, ["Your Curse Limit is equal to your maximum Power Charges"] = { }, @@ -14182,7 +14895,7 @@ return { ["Your Hits can't be Evaded"] = { }, ["Your Hits can't be Evaded by Blinded Enemies"] = { }, ["Your Hits cannot Penetrate or ignore Elemental Resistances"] = { }, - ["Your Hits cannot Stun Enemies"] = { }, + ["Your Hits cannot Stun enemies"] = { }, ["Your Hits cannot be Evaded by Heavy Stunned Enemies"] = { }, ["Your Hits cannot be Evaded by Pinned Enemies"] = { }, ["Your Hits inflict Decay, dealing # Chaos Damage per second for 8 seconds"] = { { isScalable = true } }, @@ -14231,6 +14944,7 @@ return { ["Your Meteor Towers have #% increased Range"] = { { isScalable = true } }, ["Your Meteor Towers have #% reduced Range"] = { { isScalable = true, formats = { "negate" } } }, ["Your Minions are Gigantic"] = { }, + ["Your Minions are Gigantic if they have Revived Recently"] = { }, ["Your Minions inflict Malediction on Hit"] = { }, ["Your Minions spread Burning Ground on Death, dealing #% of their maximum Life as Fire Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, @@ -14311,7 +15025,10 @@ return { ["Your base Energy Shield Recharge Delay is # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Your current Energy Shield is added to your Armour for\ndetermining your Physical Damage Reduction from Armour"] = { }, ["Your hits inflict Malediction"] = { }, + ["Your maximum Energy Shield is equal to #% of your Strength"] = { { isScalable = true } }, ["Your nearby party members maximum Endurance Charges is equal to yours"] = { }, + ["Your speed is Unaffected by Slows while Sprinting"] = { }, + ["Your speed is Unaffected by Slows while missing Runic Ward"] = { }, ["Your speed is unaffected by Slows"] = { }, ["Your spells have #% chance to Shock against Frozen Enemies"] = { { isScalable = true } }, ["Zealot's Oath"] = { }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index fe8221cc80..ba3d72221f 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,353 +2,390 @@ -- Item data (c) Grinding Gear Games return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7247 }, 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 = { 7246 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, 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 = { 7244 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, 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 = { 7245 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, 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 = { 7243 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, 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 = { 7254 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7249 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7253 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7256 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7255 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7259 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7250 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7252 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7258 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7251 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7257 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 7260 }, 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 = { 7248 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, 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 = { 847 }, 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 = { 1602 }, 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 = { 849 }, 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 = { 851 }, 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 = { 8529 }, 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 = { 828 }, 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 = { 4582 }, 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 = { 4539 }, 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 = { 1001 }, 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 = { 1572 }, 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 = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "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 = { 2557 }, 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 = { 5566 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, 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 = { 4121 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, 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 = { 5029 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "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 = { 9115 }, 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 = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 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 = { 4810 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, 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 = { 9709 }, 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 = { 7532 }, 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 = { 5520 }, 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 = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, 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 = { 9084 }, 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 = { 7049 }, 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 = { 9117 }, 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 = { 5255 }, 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 = { 5234 }, 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 = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, 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 = { 4526 }, 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 = { 4434 }, 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 = { 6106 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, - ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, - ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 969 }, 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 = { 984 }, 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 = { 2878 }, 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 = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, 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 = { 4605 }, 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 = { 4136 }, 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 = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 941 }, 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 = { 4539 }, 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 = { 5703 }, 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 = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, - ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 827 }, 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 = { 4608 }, 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 = { 6216 }, 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 = { 879 }, 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 = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, - ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, - ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, 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 = { 976 }, 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 = { 1946 }, 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 = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8476 }, 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 = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "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 = { 9531 }, 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 = { 4146 }, 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 = { 970 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3669820740] = { "1% of Damage taken Recouped as Life" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [85367160] = { "1% of Damage taken Recouped as Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [2589572664] = { "1% increased maximum Mana" }, } }, - ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [160888068] = { "1% increased maximum Life" }, } }, - ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3488475284] = { "(2-3)% increased Global Defences" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [2709646369] = { "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 = { 1617 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3566150527] = { "Regenerate (0.03-0.07)% of maximum Life per second" }, } }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [4257790560] = { "(2-3)% increased Mana Cost Efficiency" }, } }, - ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [2135541924] = { "Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6452 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Mana Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6451 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Life Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6448 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Charms gain 0.1 charges per Second" }, } }, - ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 853, 864 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "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 = { 853, 866 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "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 = { 853, 868 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 864, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 866, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 868, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 864, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "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 = { 866, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "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 = { 868, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "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 = { 864, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, 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 = { 866, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, 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 = { 868, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, 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 = { 864, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, 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 = { 866, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, 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 = { 868, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, 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 = { 855, 2613 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 857, 2615 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 856, 2614 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 4660, 4662 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "unveiled_mod", "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 = { 8917, 8925 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "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 = { 9883, 9886 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 5339, 5342 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "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 = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "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 = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "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 = { 1002, 2472 }, 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 = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, 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 = { 1080 }, 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 = { 1081 }, 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 = { 1082 }, 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 = { 7070 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "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 = { 1075 }, 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 = { 6127 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "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 = { 1076 }, 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 = { 5294 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "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 = { 1077 }, 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 = { 4582 }, 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 = { 8281 }, 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 = { 937 }, 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 = { 4572 }, 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 of Skills", statOrder = { 4613 }, 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 of Skills" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6473 }, 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 = { 1002 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, 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 = { 2891 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, 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 = { 4140 }, 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 = { 8917 }, 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 = { 4660 }, 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 = { 5175 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "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 = { 9316 }, 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 = { 1875 }, 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 = { 4530 }, 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 = { 6962 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, 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 = { 6748 }, 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 = { 6320 }, 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 = { 1667 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "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 = { 1000 }, 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 = { 996 }, 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 = { 9209 }, 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 = { 4906 }, 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 = { 8594 }, 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 = { 4608 }, 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 = { 5801 }, 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 = { 7482 }, 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 = { 3883 }, 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 = { 6451 }, 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 = { 3782 }, 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 = { 7039 }, 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 = { 9337 }, 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 = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "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 = { 9648 }, 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 = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "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 = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, 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 = { 6452 }, 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 = { 7481 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, 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 = { 3782 }, 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 = { 976 }, 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 = { 2747 }, 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 = { 970 }, 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 = { 1835 }, 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 = { 977 }, 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 = { 9080 }, 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 = { 4511 }, 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 = { 4541 }, 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 = { 9178 }, 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 of Skills", statOrder = { 4613 }, 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 of Skills" }, } }, - ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, 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 = { 1659 }, 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 = { 8794 }, 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 = { 8808 }, 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", "You take (8-15)% of damage from Blocked Hits with a raised Shield", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", statOrder = { 4795, 8898 }, 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", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6275 }, 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] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6543 }, 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 = { 1420 }, 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 = { 1446 }, 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 = { 6020 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, 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 = { 9427 }, 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 = { 9406 }, 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 = { 9436 }, 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 = { 9431 }, 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 = { 2266 }, 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 = { 3620 }, 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 = { 931 }, 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 = { 5530 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6927 }, 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 = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, 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 = { 4077, 4077.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 = { 4312 }, 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 = { 8968 }, 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 = { 4605 }, 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 = { 8975 }, 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 = { 5423 }, 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 = { 8974 }, 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 = { 5436 }, 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 = { 4397 }, 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 = { 828 }, 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 = { 1437 }, 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 have (8-15)% increased effect", statOrder = { 9151 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "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 = { 1572 }, 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 = { 9153 }, 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 = { 2700 }, 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 = { 6106 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, 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 = { 1443 }, 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 = { 9249 }, 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 = { 6816 }, 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 = { 1820 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, 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 = { 6747 }, 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 = { 1822 }, 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 = { 4810 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5721 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, 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 = { 5190 }, 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 = { 9179 }, 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 = { 4166 }, 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 = { 4809 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, - ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2486 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, - ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2224 }, 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 = { 2472 }, 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 = { 8313 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, 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 = { 6924 }, 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 = { 8475 }, 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 = { 2362 }, 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 = { 4167 }, 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 = { 9411 }, 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 = { 5670 }, 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 = { 1666 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "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 = { 9431 }, 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 = { 9407 }, 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 = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, 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 = { 4222 }, 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", "+(12-16)% to Block chance", statOrder = { 2130 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9413 }, 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 = { 8324 }, 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 = { 4221 }, 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 = { 4976 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1601 }, 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 = { 4662 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "bleed", "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 = { 4283 }, 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 = { 4287 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "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 = { 6741 }, 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 = { 1651 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, 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 = { 853, 1646 }, 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 = { 9407 }, 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 = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, 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 = { 4604, 9436 }, 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 = { 6740 }, 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 = { 6927 }, 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 = { 4965 }, 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 = { 6739 }, 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 = { 3333 }, 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 = { 4605 }, 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 = { 3331 }, 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 of Skills", statOrder = { 4613 }, 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 of Skills" }, } }, - ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, 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 = { 4519 }, 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 = { 8361 }, 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 = { 821, 919 }, 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 = { 4519 }, 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 = { 2818 }, 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 = { 2250 }, 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 = { 5553 }, 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 = { 4290 }, 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 = { 9296 }, 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 = { 9975 }, 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 = { 5912 }, 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 = { 2929 }, 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 = { 2818 }, 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 = { 2250 }, 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 = { 5553 }, 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 = { 4290 }, 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 = { 9296 }, 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 = { 9975 }, 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 = { 5912 }, 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 = { 2929 }, 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 = { 857, 9248 }, 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 = { 9116 }, 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 = { 855, 1009 }, 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 = { 4068 }, 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 = { 856, 990 }, 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 = { 9119 }, 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 = { 4058 }, 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 = { 3684 }, 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 = { 5423 }, 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 = { 6497 }, 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 = { 6499, 6500 }, 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 = { 6495 }, 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 = { 8975 }, 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 = { 920 }, 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" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7687 }, 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 = { 7686 }, 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 = { 7684 }, 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 = { 7685 }, 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 = { 7683 }, 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 = { 7694 }, 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 = { 7689 }, 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 = { 7693 }, 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 = { 7696 }, 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 = { 7695 }, 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 = { 7699 }, 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 = { 7690 }, 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 = { 7692 }, 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 = { 7698 }, 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 = { 7691 }, 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 = { 7697 }, 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 = { 7700 }, 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 = { 7688 }, 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 = { 862 }, 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 = { 1670 }, 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 = { 865 }, 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 = { 868 }, 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 = { 9050 }, 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 = { 836 }, 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 = { 4706 }, 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 = { 4666 }, 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 = { 1067 }, 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 = { 1643 }, 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 = { 1436 }, 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 = { 2664 }, 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 = { 5947 }, 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 = { 4230 }, 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 = { 5392 }, 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 = { 9656 }, 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 = { 7401 }, 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 = { 4946 }, 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 = { 4945 }, 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 = { 8828 }, 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 = { 10279 }, 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 = { 7994 }, 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 = { 5900 }, 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 = { 9410 }, 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 = { 1006 }, 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 = { 7215 }, 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 = { 9622 }, 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 = { 7491 }, 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 = { 9658 }, 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 = { 5619 }, 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 = { 5598 }, 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 = { 4746 }, 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 = { 4653 }, 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 = { 4558 }, 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 = { 6510 }, 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 = { 1008 }, 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 = { 1009 }, 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 = { 1010 }, 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" }, } }, + ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, + ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1035 }, 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 = { 1050 }, 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 = { 2981 }, 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 = { 6850 }, 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 = { 6852 }, 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 = { 4732 }, 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 = { 4245 }, 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 = { 4256 }, 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 = { 984 }, 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 = { 4666 }, 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 = { 6085 }, 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 = { 6054 }, 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 = { 835 }, 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 = { 4735 }, 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 = { 6617 }, 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 = { 901 }, 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 = { 2897 }, 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 = { 4660 }, 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" }, } }, + ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, + ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, + ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, + ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1036 }, 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 = { 1042 }, 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 = { 2020 }, 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 = { 8968 }, 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 = { 8995 }, 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 = { 2665 }, 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 = { 10097 }, 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 = { 4255 }, 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 = { 1036 }, 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] = { "1% of Damage taken Recouped as Life" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1043 }, 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] = { "1% of Damage taken Recouped as Mana" }, } }, + ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 893 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2589572664] = { "1% increased maximum Mana" }, } }, + ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 888 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [160888068] = { "1% increased maximum Life" }, } }, + ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, 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] = { "(2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2470 }, 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] = { "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 = { 1689 }, 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] = { "Regenerate (0.03-0.07)% of maximum Life per second" }, } }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4706 }, 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] = { "(2-3)% increased Mana Cost Efficiency" }, } }, + ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2855 }, 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] = { "Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6870 }, 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] = { "Mana Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6869 }, 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] = { "Life Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6866 }, 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] = { "Charms gain 0.1 charges per Second" }, } }, + ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 870, 881 }, 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 = { 870, 883 }, 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 = { 870, 885 }, 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" }, } }, + ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 881, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 883, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 885, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 881, 1718 }, 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 = { 883, 1718 }, 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 = { 885, 1718 }, 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 = { 881, 10213 }, 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 = { 883, 10213 }, 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 = { 885, 10213 }, 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 = { 881, 1151 }, 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 = { 883, 1151 }, 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 = { 885, 1151 }, 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 = { 872, 2722 }, 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 = { 874, 2724 }, 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 = { 873, 2723 }, 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 = { 4794, 4797 }, 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 = { 9449, 9457 }, 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 = { 10464, 10467 }, 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 = { 5708, 5712 }, 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 = { 1184, 4397 }, 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 = { 1724, 4249 }, 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 = { 875, 10514 }, 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 = { 1025 }, 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 = { 1068, 2572 }, 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 = { 6510 }, 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 = { 4111 }, 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 = { 998 }, 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 = { 999 }, 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 = { 1000 }, 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 = { 7512 }, 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 = { 994 }, 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 = { 6530 }, 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 = { 995 }, 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 = { 5660 }, 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 = { 996 }, 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 = { 4706 }, 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 = { 8793 }, 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 = { 979 }, 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 = { 4696 }, 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 = { 4743 }, 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 = { 6891 }, 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 = { 1068 }, 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 = { 2994 }, 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 = { 4249 }, 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 = { 9449 }, 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 = { 4794 }, 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 = { 5540 }, 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 = { 9873 }, 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 = { 1948 }, 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 = { 4658 }, 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 = { 7401 }, 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 = { 7170 }, 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 = { 6724 }, 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 = { 1740 }, 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 = { 1066 }, 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 = { 1062 }, 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 = { 9763 }, 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 = { 5260 }, 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 = { 9119 }, 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 = { 4735 }, 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 = { 6186 }, 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 = { 7942 }, 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 = { 3984 }, 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 = { 6869 }, 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 = { 3879 }, 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 = { 7481 }, 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 = { 9895 }, 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 = { 6866 }, 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 = { 10215 }, 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 = { 5620 }, 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 = { 4746 }, 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 = { 6870 }, 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 = { 7941 }, 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 = { 3879 }, 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 = { 1042 }, 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 = { 2855 }, 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 = { 1036 }, 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 = { 1909 }, 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 = { 1043 }, 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 = { 9617 }, 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 = { 4634 }, 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 = { 4667 }, 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 = { 9723 }, 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 = { 4743 }, 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 = { 2470 }, 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 = { 1732 }, 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 = { 9338 }, 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 = { 9351 }, 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 = { 2203, 4931 }, 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", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6676 }, 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] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6964 }, 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 = { 1492 }, 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 = { 1518 }, 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 = { 6422 }, 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 = { 9991 }, 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 = { 9969 }, 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 = { 9997 }, 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 = { 9993 }, 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 = { 2374 }, 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 = { 3717 }, 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 = { 971 }, 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 = { 5910 }, 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 = { 7365 }, 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 = { 9950 }, 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 = { 4183, 4183.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 = { 4428 }, 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 = { 9500 }, 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 = { 4732 }, 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 = { 9508 }, 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 = { 5803 }, 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 = { 9507 }, 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 = { 5817 }, 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 = { 4520 }, 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 = { 836 }, 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 = { 1509 }, 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 = { 9695 }, 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 = { 9004 }, 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 = { 1643 }, 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 = { 9697 }, 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 = { 2808 }, 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 = { 6510 }, 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 = { 4666 }, 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 = { 1515 }, 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 = { 9805 }, 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 = { 7240 }, 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 = { 1893 }, 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 = { 7169 }, 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 = { 1895 }, 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 = { 4946 }, 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 = { 6105 }, 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 = { 5556 }, 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 = { 9724 }, 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 = { 948 }, 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 = { 4945 }, 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 = { 2586 }, 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 = { 2333 }, 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 = { 2572 }, 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 = { 8828 }, 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 = { 7362 }, 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 = { 8994 }, 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 = { 2470 }, 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 = { 974 }, 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 = { 9974 }, 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 = { 6053 }, 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 = { 1739 }, 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 = { 9993 }, 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 = { 9970 }, 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 = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, 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 = { 4334 }, 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", "+(12-16)% to Block chance", statOrder = { 1122 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9976 }, 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 = { 8840 }, 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 = { 4333 }, 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 = { 5334 }, 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" }, } }, + ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1669 }, 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 = { 4797 }, 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 = { 4397 }, 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 = { 4401 }, 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 = { 7162 }, 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 = { 1724 }, 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 = { 870, 1718 }, 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 = { 9970 }, 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 = { 9950 }, 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 = { 4731, 9997 }, 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 = { 7161 }, 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 = { 7365 }, 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 = { 5323 }, 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 = { 7160 }, 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 = { 3437 }, 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 = { 4732 }, 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 = { 3435 }, 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 = { 4743 }, 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 = { 3436 }, 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 = { 4642 }, 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 = { 8876 }, 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 = { 829, 945 }, 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 = { 4642 }, 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 = { 2921 }, 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 = { 2358 }, 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 = { 5933 }, 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 = { 4404 }, 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 = { 9853 }, 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 = { 10578 }, 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 = { 6306 }, 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 = { 3033 }, 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 = { 2921 }, 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 = { 2358 }, 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 = { 5933 }, 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 = { 4404 }, 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 = { 9853 }, 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 = { 10578 }, 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 = { 6306 }, 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 = { 3033 }, 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 = { 874, 9804 }, 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 = { 9657 }, 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 = { 872, 1076 }, 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 = { 4175 }, 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 = { 873, 1056 }, 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 = { 9660 }, 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 = { 4165 }, 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 = { 3781 }, 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 = { 5803 }, 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 = { 6918 }, 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 = { 6920, 6921 }, 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 = { 6916 }, 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 = { 9508 }, 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 = { 946 }, 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 = { 8974 }, 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 = { 8968 }, 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 = { 919, 4422 }, 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 = { 5339, 5566 }, 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 = { 4363 }, 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 = { 919, 5335 }, 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 = { 1001 }, 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 = { 8970 }, 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 = { 5436 }, 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 = { 6748 }, 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 = { 9028 }, 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 = { 8364 }, 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 = { 6431 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, 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 = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "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 = { 9887 }, 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 = { 5439 }, 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 of Skills", statOrder = { 4613 }, 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 of Skills" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, 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 = { 1875 }, 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 = { 2266 }, 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 = { 962 }, 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" }, } }, - ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 895 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 896 }, 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 = { 891 }, 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 = { 4620, 6533 }, 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 = { 858, 2906 }, 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 = { 860, 4532 }, 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 = { 858, 3617 }, 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 of Skills", statOrder = { 873, 4613 }, 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 of Skills" }, } }, - ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, 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 = { 7061 }, 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" }, } }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9507 }, 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 = { 9500 }, 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 = { 945, 4546 }, 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 = { 5708, 5947 }, 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 = { 4483 }, 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 = { 945, 5702 }, 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 = { 1067 }, 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 = { 9502 }, 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 = { 5817 }, 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 = { 7170 }, 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 = { 9564 }, 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 = { 8879 }, 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 = { 6850 }, 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 = { 9004 }, 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 = { 10468 }, 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 = { 5820 }, 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 = { 4743 }, 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 = { 4706 }, 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 = { 1948 }, 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 = { 2374 }, 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 = { 1025 }, 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" }, } }, + ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 919 }, 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 = { 920 }, 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 = { 915 }, 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 = { 4750, 6955 }, 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 = { 875, 3010 }, 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 = { 877, 4660 }, 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 = { 875, 3714 }, 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 = { 894, 4743 }, 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" }, } }, + ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1615, 1724 }, 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 = { 7503 }, 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 = { 1673 }, 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 = { 4314, 4314.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 = { 6567 }, 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 = { 4715 }, 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 = { 8984 }, 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 = { 8840 }, 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 = { 9759 }, 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 = { 3717 }, 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 = { 10206 }, 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 = { 8965 }, 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 = { 8977 }, 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 = { 8990 }, 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 = { 8994 }, 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 = { 10161 }, 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 = { 869 }, 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 = { 863 }, 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 = { 867 }, 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 = { 9201 }, 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 = { 2470 }, 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 = { 6510 }, 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 = { 7361 }, 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 = { 9986 }, 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 = { 6538 }, 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 = { 7518 }, 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 = { 5661 }, 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 = { 4335 }, 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 = { 5551 }, 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 = { 9984 }, 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 = { 4334 }, 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 = { 5388 }, 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 = { 8999 }, 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 = { 9061 }, 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 = { 6022 }, 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 = { 9726 }, 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", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, 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 = { 875, 4249 }, 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 4b01163216..27d2eefdf8 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -9,10174 +9,9731 @@ return { ["AllocatesXEnchant"] = { - ["10029"] = { + ["1169"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10029", - ["text"] = "Allocates Repulsion", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "crafted", }, }, - ["10265"] = { + ["11774"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10265", - ["text"] = "Allocates Javelin", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "crafted", }, }, - ["10295"] = { + ["11826"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10295", - ["text"] = "Allocates Overzealous", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "crafted", }, }, - ["10315"] = { + ["13482"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10315", - ["text"] = "Allocates Easy Going", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "crafted", }, }, - ["10398"] = { + ["13844"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10398", - ["text"] = "Allocates Sudden Escalation", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "crafted", }, }, - ["10423"] = { + ["14294"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10423", - ["text"] = "Allocates Exposed to the Inferno", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "crafted", }, }, - ["10499"] = { + ["14383"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10499", - ["text"] = "Allocates Necromantic Ward", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "crafted", }, }, - ["10500"] = { + ["14602"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10500", - ["text"] = "Allocates Dazing Blocks", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "crafted", }, }, - ["10602"] = { + ["14761"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10602", - ["text"] = "Allocates Reaving", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "crafted", }, }, - ["10612"] = { + ["16940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10612", - ["text"] = "Allocates Embodiment of Frost", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "crafted", }, }, - ["10681"] = { + ["17229"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10681", - ["text"] = "Allocates Defensive Stance", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "crafted", }, }, - ["10727"] = { + ["17854"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10727", - ["text"] = "Allocates Emboldening Casts", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "crafted", }, }, - ["10772"] = { + ["19125"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10772", - ["text"] = "Allocates Bloodthirsty", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "crafted", }, }, - ["10774"] = { + ["19715"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10774", - ["text"] = "Allocates Unyielding", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "crafted", }, }, - ["1087"] = { + ["20495"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1087", - ["text"] = "Allocates Shockwaves", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "crafted", }, }, - ["10873"] = { + ["20686"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10873", - ["text"] = "Allocates Bestial Rage", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "crafted", }, }, - ["10998"] = { + ["23427"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|10998", - ["text"] = "Allocates Strong Chin", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "crafted", }, }, - ["1104"] = { + ["23738"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1104", - ["text"] = "Allocates Lust for Power", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "crafted", }, }, - ["11366"] = { + ["24120"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11366", - ["text"] = "Allocates Volcanic Skin", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "crafted", }, }, - ["11376"] = { + ["26214"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11376", - ["text"] = "Allocates Necrotic Touch", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "crafted", }, }, - ["11392"] = { + ["26339"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11392", - ["text"] = "Allocates Molten Being", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "crafted", }, }, - ["11526"] = { + ["2745"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11526", - ["text"] = "Allocates Sniper", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "crafted", }, }, - ["11578"] = { + ["27761"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11578", - ["text"] = "Allocates Spreading Shocks", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "crafted", }, }, - ["116"] = { + ["30395"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|116", - ["text"] = "Allocates Insightfulness", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "crafted", }, }, - ["1169"] = { + ["31373"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "crafted", }, }, - ["11774"] = { + ["32128"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "crafted", }, }, - ["11826"] = { + ["34324"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "crafted", }, }, - ["11838"] = { + ["34531"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11838", - ["text"] = "Allocates Dreamcatcher", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "crafted", }, }, - ["11886"] = { + ["35809"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11886", - ["text"] = "Allocates Mauling Stuns", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "crafted", }, }, - ["12245"] = { + ["35849"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12245", - ["text"] = "Allocates Arsonist", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "crafted", }, }, - ["12337"] = { + ["36085"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12337", - ["text"] = "Allocates Flash Storm", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "crafted", }, }, - ["12412"] = { + ["37543"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12412", - ["text"] = "Allocates Temporal Mastery", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "crafted", }, }, - ["12611"] = { + ["38532"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12611", - ["text"] = "Allocates Harness the Elements", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "crafted", }, }, - ["12661"] = { + ["3894"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12661", - ["text"] = "Allocates Asceticism", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "crafted", }, }, - ["12750"] = { + ["3921"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12750", - ["text"] = "Allocates Vale Shelter", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "crafted", }, }, - ["12822"] = { + ["41033"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12822", - ["text"] = "Allocates Adaptable Assault", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "crafted", }, }, - ["12906"] = { + ["41394"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12906", - ["text"] = "Allocates Sitting Duck", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "crafted", }, }, - ["12964"] = { + ["42177"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12964", - ["text"] = "Allocates Lone Warrior", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "crafted", }, }, - ["12998"] = { + ["42245"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12998", - ["text"] = "Allocates Warm the Heart", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "crafted", }, }, - ["13407"] = { + ["4238"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13407", - ["text"] = "Allocates Heartbreaking", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "crafted", }, }, - ["13457"] = { + ["42660"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13457", - ["text"] = "Allocates Shadow Dancing", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "crafted", }, }, - ["13482"] = { + ["42714"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "crafted", }, }, - ["13515"] = { + ["44005"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13515", - ["text"] = "Allocates Stormwalker", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "crafted", }, }, - ["1352"] = { + ["44293"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1352", - ["text"] = "Allocates Unbending", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "crafted", }, }, - ["13524"] = { + ["45177"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13524", - ["text"] = "Allocates Everlasting Glory", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "crafted", }, }, - ["13542"] = { + ["4544"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13542", - ["text"] = "Allocates Loose Flesh", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "crafted", }, }, - ["13708"] = { + ["4547"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13708", - ["text"] = "Allocates Curved Weapon", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "crafted", }, }, - ["13724"] = { + ["45612"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13724", - ["text"] = "Allocates Deadly Force", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "crafted", }, }, - ["13738"] = { + ["4661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13738", - ["text"] = "Allocates Lightning Quick", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "crafted", }, }, - ["13823"] = { + ["46683"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13823", - ["text"] = "Allocates Controlling Magic", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "crafted", }, }, - ["13895"] = { + ["47363"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13895", - ["text"] = "Allocates Precise Point", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "crafted", }, }, - ["13980"] = { + ["48617"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13980", - ["text"] = "Allocates Split the Earth", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "crafted", }, }, - ["14211"] = { + ["48699"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14211", - ["text"] = "Allocates Shredding Contraptions", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "crafted", }, }, - ["14294"] = { + ["49550"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "crafted", }, }, - ["14324"] = { + ["50687"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14324", - ["text"] = "Allocates Arcane Blossom", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "crafted", }, }, - ["14343"] = { + ["51213"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14343", - ["text"] = "Allocates Deterioration", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "crafted", }, }, - ["14383"] = { + ["51602"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "crafted", }, }, - ["14602"] = { + ["51868"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "crafted", }, }, - ["14761"] = { + ["52199"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "crafted", }, }, - ["14777"] = { + ["52618"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14777", - ["text"] = "Allocates Bravado", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "crafted", }, }, - ["14934"] = { + ["52803"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14934", - ["text"] = "Allocates Spiral into Mania", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "crafted", }, }, - ["14945"] = { + ["52971"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14945", - ["text"] = "Allocates Growing Swarm", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "crafted", }, }, - ["1502"] = { + ["55308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1502", - ["text"] = "Allocates Draiocht Cleansing", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "crafted", }, }, - ["15030"] = { + ["56806"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15030", - ["text"] = "Allocates Consistent Intake", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "crafted", }, }, - ["1506"] = { + ["56860"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1506", - ["text"] = "Allocates Remnant Attraction", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "crafted", }, }, - ["15083"] = { + ["57617"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15083", - ["text"] = "Allocates Power Conduction", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "crafted", }, }, - ["15114"] = { + ["60034"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15114", - ["text"] = "Allocates Boundless Growth", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "crafted", }, }, - ["15374"] = { + ["60464"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15374", - ["text"] = "Allocates Hale Heart", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "crafted", }, }, - ["15443"] = { + ["61601"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15443", - ["text"] = "Allocates Endured Suffering", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "crafted", }, }, - ["1546"] = { + ["61921"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1546", - ["text"] = "Allocates Spiral into Depression", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "crafted", }, }, - ["15606"] = { + ["6304"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15606", - ["text"] = "Allocates Thrill of the Fight", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "crafted", }, }, - ["15617"] = { + ["65204"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15617", - ["text"] = "Allocates Heavy Drinker", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "crafted", }, }, - ["15644"] = { + ["7809"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15644", - ["text"] = "Allocates Shedding Skin", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "crafted", }, }, - ["15829"] = { + ["8831"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15829", - ["text"] = "Allocates Siphon", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "crafted", }, }, - ["15986"] = { + ["9226"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15986", - ["text"] = "Allocates Building Toxins", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "crafted", }, }, - ["15991"] = { + ["9535"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15991", - ["text"] = "Allocates Embodiment of Lightning", - ["type"] = "enchant", + ["id"] = "crafted.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "crafted", }, }, - ["1603"] = { + }, + ["Corrupted"] = { + ["1004011302"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1603", - ["text"] = "Allocates Storm Driven", - ["type"] = "enchant", + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "crafted", }, }, - ["16142"] = { + ["101878827"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16142", - ["text"] = "Allocates Deep Freeze", - ["type"] = "enchant", + ["id"] = "crafted.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "crafted", }, }, - ["16150"] = { - ["specialCaseData"] = { + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16150", - ["text"] = "Allocates Inspiring Ally", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - }, - ["16256"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16256", - ["text"] = "Allocates Ether Flow", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 21.5, + ["min"] = 10.5, }, - }, - ["16466"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16466", - ["text"] = "Allocates Mental Alacrity", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, - }, - ["16499"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16499", - ["text"] = "Allocates Lingering Whispers", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, - }, - ["16618"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16618", - ["text"] = "Allocates Jack of all Trades", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, - }, - ["16626"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16626", - ["text"] = "Allocates Impact Area", - ["type"] = "enchant", + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "crafted", }, }, - ["16790"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16790", - ["text"] = "Allocates Efficient Casting", - ["type"] = "enchant", + ["1050105434"] = { + ["Focus"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["16816"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16816", - ["text"] = "Allocates Pinpoint Shot", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["16940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", - ["type"] = "enchant", + ["id"] = "crafted.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["17029"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17029", - ["text"] = "Allocates Blade Catcher", - ["type"] = "enchant", + ["1062208444"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17150"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17150", - ["text"] = "Allocates General's Bindings", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17229"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17254"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17254", - ["text"] = "Allocates Spell Haste", - ["type"] = "enchant", + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "crafted", }, }, - ["17260"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17260", - ["text"] = "Allocates Piercing Claw", - ["type"] = "enchant", + ["124859000"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17303"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17303", - ["text"] = "Allocates Utility Ordnance", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17330"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17330", - ["text"] = "Allocates Perforation", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17340"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17340", - ["text"] = "Allocates Adrenaline Rush", - ["type"] = "enchant", + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "crafted", }, }, - ["17372"] = { + ["1316278494"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17372", - ["text"] = "Allocates Reaching Strike", - ["type"] = "enchant", + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "crafted", }, }, - ["17548"] = { + ["1444556985"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17548", - ["text"] = "Allocates Moment of Truth", - ["type"] = "enchant", + ["id"] = "crafted.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "crafted", }, }, - ["17600"] = { - ["specialCaseData"] = { + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17600", - ["text"] = "Allocates Thirsting Ally", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17664"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17664", - ["text"] = "Allocates Decisive Retreat", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17725"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17725", - ["text"] = "Allocates Bonded Precision", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17762"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17762", - ["text"] = "Allocates Vengeance", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17825"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17825", - ["text"] = "Allocates Tactical Retreat", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["17854"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", - ["type"] = "enchant", + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "crafted", }, }, - ["17882"] = { - ["specialCaseData"] = { + ["1671376347"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17882", - ["text"] = "Allocates Volatile Grenades", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["17955"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17955", - ["text"] = "Allocates Careful Consideration", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["18086"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18086", - ["text"] = "Allocates Breath of Ice", - ["type"] = "enchant", + ["id"] = "crafted.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["18157"] = { - ["specialCaseData"] = { + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18157", - ["text"] = "Allocates Tempered Defences", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["1823"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1823", - ["text"] = "Allocates Illuminated Crown", - ["type"] = "enchant", + ["id"] = "crafted.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "crafted", }, }, - ["18308"] = { - ["specialCaseData"] = { + ["1999113824"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18308", - ["text"] = "Allocates Bleeding Out", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["18397"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18397", - ["text"] = "Allocates Savoured Blood", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["18419"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18419", - ["text"] = "Allocates Ancestral Mending", - ["type"] = "enchant", + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "crafted", }, }, - ["18485"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18485", - ["text"] = "Allocates Unstable Bond", - ["type"] = "enchant", - }, - }, - ["18496"] = { - ["specialCaseData"] = { + ["210067635"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18496", - ["text"] = "Allocates Lasting Trauma", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["18505"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18505", - ["text"] = "Allocates Crushing Verdict", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["18959"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18959", - ["text"] = "Allocates Ruinic Helm", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["19044"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19044", - ["text"] = "Allocates Arcane Intensity", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["19125"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 8, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 8, + ["min"] = 6, }, - }, - ["19156"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19156", - ["text"] = "Allocates Immaterial", - ["type"] = "enchant", + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "crafted", }, }, - ["19236"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19236", - ["text"] = "Allocates Projectile Bulwark", - ["type"] = "enchant", + ["2106365538"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["19249"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19249", - ["text"] = "Allocates Supportive Ancestors", - ["type"] = "enchant", + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "crafted", }, }, - ["19337"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19337", - ["text"] = "Allocates Precision Salvo", - ["type"] = "enchant", + ["2162097452"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["19442"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19442", - ["text"] = "Allocates Prolonged Assault", - ["type"] = "enchant", + ["id"] = "crafted.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["19546"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19546", - ["text"] = "Allocates Favourable Odds", - ["type"] = "enchant", + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["19644"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19644", - ["text"] = "Allocates Left Hand of Darkness", - ["type"] = "enchant", + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "crafted", }, }, - ["19715"] = { - ["specialCaseData"] = { + ["2451402625"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19715", - ["text"] = "Allocates Cremation", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["19722"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19722", - ["text"] = "Allocates Thin Ice", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["19955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19955", - ["text"] = "Allocates Endless Blizzard", - ["type"] = "enchant", + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "crafted", }, }, - ["20008"] = { + ["2482852589"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20008", - ["text"] = "Allocates Unleash Fire", - ["type"] = "enchant", + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "crafted", }, }, - ["20032"] = { + ["280731498"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20032", - ["text"] = "Allocates Erraticism", - ["type"] = "enchant", + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "crafted", }, }, - ["2021"] = { + ["2866361420"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2021", - ["text"] = "Allocates Wellspring", - ["type"] = "enchant", + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "crafted", }, }, - ["20251"] = { - ["specialCaseData"] = { + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20251", - ["text"] = "Allocates Splitting Ground", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["20289"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20289", - ["text"] = "Allocates Frozen Claw", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["20388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20388", - ["text"] = "Allocates Regenerative Flesh", - ["type"] = "enchant", + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "crafted", }, }, - ["20397"] = { - ["specialCaseData"] = { + ["2923486259"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20397", - ["text"] = "Allocates Authority", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["20414"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", - ["type"] = "enchant", + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 13, }, - }, - ["20416"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20416", - ["text"] = "Allocates Grit", - ["type"] = "enchant", + ["id"] = "crafted.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["20511"] = { - ["specialCaseData"] = { + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20511", - ["text"] = "Allocates Cremating Cries", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, }, - }, - ["20558"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20558", - ["text"] = "Allocates Among the Hordes", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["20677"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20677", - ["text"] = "Allocates For the Jugular", - ["type"] = "enchant", + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "crafted", }, }, - ["20916"] = { + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20916", - ["text"] = "Allocates Blinding Strike", - ["type"] = "enchant", + ["id"] = "crafted.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "crafted", }, }, - ["2113"] = { - ["specialCaseData"] = { + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2113", - ["text"] = "Allocates Martial Artistry", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["21164"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21164", - ["text"] = "Allocates Fleshcrafting", - ["type"] = "enchant", + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["21206"] = { - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21206", - ["text"] = "Allocates Explosive Impact", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["2134"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2134", - ["text"] = "Allocates Toxic Tolerance", - ["type"] = "enchant", + ["id"] = "crafted.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["21349"] = { - ["specialCaseData"] = { + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21349", - ["text"] = "Allocates The Cunning Fox", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["2138"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2138", - ["text"] = "Allocates Spiral into Insanity", - ["type"] = "enchant", + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["21380"] = { - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21380", - ["text"] = "Allocates Preemptive Strike", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["21453"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21453", - ["text"] = "Allocates Breakage", - ["type"] = "enchant", + ["id"] = "crafted.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["21537"] = { - ["specialCaseData"] = { + ["3299347043"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21537", - ["text"] = "Allocates Fervour", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, - }, - ["21748"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21748", - ["text"] = "Allocates Impending Doom", - ["type"] = "enchant", + ["id"] = "crafted.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["21784"] = { - ["specialCaseData"] = { + ["3321629045"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21784", - ["text"] = "Allocates Pack Encouragement", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["21935"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21935", - ["text"] = "Allocates Calibration", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["22532"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22532", - ["text"] = "Allocates Fearful Paralysis", - ["type"] = "enchant", + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "crafted", }, }, - ["22626"] = { - ["specialCaseData"] = { + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22626", - ["text"] = "Allocates Irreparable", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 22.5, + ["min"] = 15, }, - }, - ["22811"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22811", - ["text"] = "Allocates The Wild Cat", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, }, - }, - ["22817"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22817", - ["text"] = "Allocates Inevitable Rupture", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, }, - }, - ["22864"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22864", - ["text"] = "Allocates Tainted Strike", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 32, + ["min"] = 21, }, - }, - ["22967"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22967", - ["text"] = "Allocates Vigilance", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 32, + ["min"] = 21, }, - }, - ["23078"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23078", - ["text"] = "Allocates Holy Protector", - ["type"] = "enchant", + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "crafted", }, }, - ["23221"] = { - ["specialCaseData"] = { + ["3372524247"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23221", - ["text"] = "Allocates Trick Shot", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["23227"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23227", - ["text"] = "Allocates Initiative", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["23244"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23244", - ["text"] = "Allocates Bounty Hunter", - ["type"] = "enchant", + ["id"] = "crafted.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["2335"] = { + ["3377888098"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2335", - ["text"] = "Allocates Turn the Clock Forward", - ["type"] = "enchant", + ["id"] = "crafted.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "crafted", }, }, - ["23362"] = { - ["specialCaseData"] = { + ["3556824919"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23362", - ["text"] = "Allocates Slippery Ice", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["23427"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", - ["type"] = "enchant", + ["id"] = "crafted.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "crafted", }, }, - ["2344"] = { - ["specialCaseData"] = { + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2344", - ["text"] = "Allocates Dimensional Weakspot", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["23630"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23630", - ["text"] = "Allocates Self Immolation", - ["type"] = "enchant", + ["id"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "crafted", }, }, - ["23736"] = { + ["3981240776"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23736", - ["text"] = "Allocates Spray and Pray", - ["type"] = "enchant", + ["id"] = "crafted.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["23738"] = { - ["specialCaseData"] = { + ["4015621042"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["23764"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23764", - ["text"] = "Allocates Alternating Current", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["23939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23939", - ["text"] = "Allocates Glazed Flesh", - ["type"] = "enchant", + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "crafted", }, }, - ["2394"] = { - ["specialCaseData"] = { + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2394", - ["text"] = "Allocates Blade Flurry", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["23940"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23940", - ["text"] = "Allocates Adamant Recovery", - ["type"] = "enchant", + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["2397"] = { - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2397", - ["text"] = "Allocates Last Stand", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["24062"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24062", - ["text"] = "Allocates Immortal Infamy", - ["type"] = "enchant", + ["id"] = "crafted.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["24087"] = { + ["4095671657"] = { + ["Belt"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24087", - ["text"] = "Allocates Everlasting Infusions", - ["type"] = "enchant", + ["id"] = "crafted.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["24120"] = { - ["specialCaseData"] = { + ["4220027924"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["24240"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24240", - ["text"] = "Allocates Time Manipulation", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["24438"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24438", - ["text"] = "Allocates Hardened Wood", - ["type"] = "enchant", + ["id"] = "crafted.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["24483"] = { - ["specialCaseData"] = { + ["44972811"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24483", - ["text"] = "Allocates Direct Approach", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["24491"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24491", - ["text"] = "Allocates Invocated Echoes", - ["type"] = "enchant", + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "crafted", }, }, - ["24630"] = { - ["specialCaseData"] = { + ["709508406"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24630", - ["text"] = "Allocates Fulmination", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 12, }, - }, - ["24655"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25.5, + ["min"] = 17, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24655", - ["text"] = "Allocates Breath of Fire", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 25.5, + ["min"] = 12, }, - }, - ["24753"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24753", - ["text"] = "Allocates Determined Precision", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 25.5, + ["min"] = 17, }, - }, - ["24764"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24764", - ["text"] = "Allocates Infusing Power", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 25.5, + ["min"] = 17, }, - }, - ["24766"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24766", - ["text"] = "Allocates Paranoia", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 25.5, + ["min"] = 17, }, - }, - ["2486"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2486", - ["text"] = "Allocates Stars Aligned", - ["type"] = "enchant", + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "crafted", }, }, - ["2511"] = { - ["specialCaseData"] = { + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2511", - ["text"] = "Allocates Sundering", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["25211"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25211", - ["text"] = "Allocates Waning Hindrances", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["25362"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25362", - ["text"] = "Allocates Chakra of Impact", - ["type"] = "enchant", + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "crafted", }, }, - ["25482"] = { - ["specialCaseData"] = { + ["789117908"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25482", - ["text"] = "Allocates Beef", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["25513"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25513", - ["text"] = "Allocates Overwhelm", - ["type"] = "enchant", + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "crafted", }, }, - ["25619"] = { - ["specialCaseData"] = { + ["803737631"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25619", - ["text"] = "Allocates Sand in the Eyes", - ["type"] = "enchant", + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, }, - }, - ["25620"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25620", - ["text"] = "Allocates Meat Recycling", - ["type"] = "enchant", + ["id"] = "crafted.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["25711"] = { + ["924253255"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25711", - ["text"] = "Allocates Thrill of Battle", - ["type"] = "enchant", + ["id"] = "crafted.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "crafted", }, }, - ["2575"] = { - ["specialCaseData"] = { + }, + ["Enchant"] = { + }, + ["Explicit"] = { + ["1002362373"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2575", - ["text"] = "Allocates Ancestral Alacrity", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["25753"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25753", - ["text"] = "Allocates Blazing Arms", - ["type"] = "enchant", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", }, }, - ["25971"] = { + ["1002535626"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25971", - ["text"] = "Allocates Tenfold Attacks", - ["type"] = "enchant", + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "explicit", }, }, - ["26070"] = { - ["specialCaseData"] = { + ["1004011302"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26070", - ["text"] = "Allocates Bolstering Yell", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - }, - ["261"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|261", - ["text"] = "Allocates Toxic Sludge", - ["type"] = "enchant", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["26104"] = { + ["1007380041"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26104", - ["text"] = "Allocates Spirit of the Wyvern", - ["type"] = "enchant", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", }, }, - ["26107"] = { - ["specialCaseData"] = { + ["1011760251"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26107", - ["text"] = "Allocates Kite Runner", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["26291"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26291", - ["text"] = "Allocates Electrifying Nature", - ["type"] = "enchant", + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["26331"] = { + ["1014398896"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26331", - ["text"] = "Allocates Harsh Winter", - ["type"] = "enchant", + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", }, }, - ["26339"] = { - ["specialCaseData"] = { + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 36, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["26356"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26356", - ["text"] = "Allocates Primed to Explode", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 80, + ["min"] = 36, }, - }, - ["26447"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26447", - ["text"] = "Allocates Refocus", - ["type"] = "enchant", + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", }, }, - ["2645"] = { + ["1022759479"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2645", - ["text"] = "Allocates Skullcrusher", - ["type"] = "enchant", + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", }, }, - ["26479"] = { + ["1028592286"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26479", - ["text"] = "Allocates Steadfast Resolve", - ["type"] = "enchant", + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "explicit", }, }, - ["26518"] = { + ["1030153674"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26518", - ["text"] = "Allocates Cold Nature", - ["type"] = "enchant", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "explicit", }, }, - ["26563"] = { - ["specialCaseData"] = { + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 102, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26563", - ["text"] = "Allocates Bone Chains", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 102, + ["min"] = 2, }, - }, - ["27009"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 156.5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27009", - ["text"] = "Allocates Lust for Sacrifice", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 156.5, + ["min"] = 2, }, - }, - ["27108"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 102, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27108", - ["text"] = "Allocates Mass Hysteria", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 156.5, + ["min"] = 3, }, - }, - ["27176"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 102, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27176", - ["text"] = "Allocates The Power Within", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 156.5, + ["min"] = 3, }, - }, - ["27303"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 102, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27303", - ["text"] = "Allocates Vulgar Methods", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 156.5, + ["min"] = 3, }, - }, - ["27388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27388", - ["text"] = "Allocates Aspiring Genius", - ["type"] = "enchant", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", }, }, - ["27434"] = { + ["1039268420"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27434", - ["text"] = "Allocates Archon of the Storm", - ["type"] = "enchant", + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", }, }, - ["2745"] = { + ["1045789614"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", - ["type"] = "enchant", + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "explicit", }, }, - ["27491"] = { + ["1049080093"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27491", - ["text"] = "Allocates Heavy Buffer", - ["type"] = "enchant", + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", }, }, - ["27513"] = { - ["specialCaseData"] = { + ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 164, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27513", - ["text"] = "Allocates Material Solidification", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 328, + ["min"] = 20, }, - }, - ["27626"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27626", - ["text"] = "Allocates Touch the Arcane", - ["type"] = "enchant", + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, }, - }, - ["27687"] = { - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27687", - ["text"] = "Allocates Greatest Defence", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 164, + ["min"] = 6, }, - }, - ["27761"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 149, + ["min"] = 6, }, - }, - ["27875"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 179, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27875", - ["text"] = "Allocates General Electric", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 164, + ["min"] = 10, }, - }, - ["27950"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 328, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|27950", - ["text"] = "Allocates Polished Iron", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 164, + ["min"] = 10, }, - }, - ["28044"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28044", - ["text"] = "Allocates Coming Calamity", - ["type"] = "enchant", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2814"] = { + ["1058934731"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2814", - ["text"] = "Allocates Engineered Blaze", - ["type"] = "enchant", + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["28267"] = { - ["specialCaseData"] = { + ["1060572482"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28267", - ["text"] = "Allocates Desensitisation", - ["type"] = "enchant", + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["28329"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28329", - ["text"] = "Allocates Pressure Points", - ["type"] = "enchant", + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", }, }, - ["28408"] = { - ["specialCaseData"] = { + ["1062208444"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28408", - ["text"] = "Allocates Invigorating Hate", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["2843"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2843", - ["text"] = "Allocates Tolerant Equipment", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["28441"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28441", - ["text"] = "Allocates Frantic Swings", - ["type"] = "enchant", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", }, }, - ["28482"] = { - ["specialCaseData"] = { + ["1062710370"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28482", - ["text"] = "Allocates Total Incineration", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["28542"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28542", - ["text"] = "Allocates The Molten One's Gift", - ["type"] = "enchant", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", }, }, - ["28613"] = { + ["1087108135"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28613", - ["text"] = "Allocates Roaring Cries", - ["type"] = "enchant", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", }, }, - ["2863"] = { + ["1087531620"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2863", - ["text"] = "Allocates Perpetual Freeze", - ["type"] = "enchant", + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", }, }, - ["28892"] = { + ["1102738251"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28892", - ["text"] = "Allocates Primal Rage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "explicit", }, }, - ["28963"] = { - ["specialCaseData"] = { + ["1104825894"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28963", - ["text"] = "Allocates Chakra of Rhythm", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["28975"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28975", - ["text"] = "Allocates Pure Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", }, }, - ["29288"] = { + ["111835965"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29288", - ["text"] = "Allocates Deadly Invocations", - ["type"] = "enchant", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", }, }, - ["29306"] = { + ["1120862500"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29306", - ["text"] = "Allocates Chakra of Thought", - ["type"] = "enchant", + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", }, }, - ["29372"] = { + ["1129429646"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29372", - ["text"] = "Allocates Sudden Infuriation", - ["type"] = "enchant", + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", }, }, - ["29514"] = { - ["specialCaseData"] = { + ["1135928777"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29514", - ["text"] = "Allocates Cluster Bombs", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["29527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29527", - ["text"] = "Allocates First Approach", - ["type"] = "enchant", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", }, }, - ["29762"] = { + ["1137305356"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29762", - ["text"] = "Allocates Guttural Roar", - ["type"] = "enchant", + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", }, }, - ["29800"] = { + ["1145481685"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29800", - ["text"] = "Allocates Shocking Limit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", }, }, - ["29881"] = { + ["1158842087"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29881", - ["text"] = "Allocates Surging Beast", - ["type"] = "enchant", + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "explicit", }, }, - ["29899"] = { + ["1160637284"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|29899", - ["text"] = "Allocates Finish Them", - ["type"] = "enchant", + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", }, }, - ["2999"] = { - ["specialCaseData"] = { + ["1165163804"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2999", - ["text"] = "Allocates Final Barrage", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["30132"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30132", - ["text"] = "Allocates Wrapped Quiver", - ["type"] = "enchant", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", }, }, - ["30341"] = { + ["1166140625"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30341", - ["text"] = "Allocates Master Fletching", - ["type"] = "enchant", + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", }, }, - ["30392"] = { + ["1177404658"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30392", - ["text"] = "Allocates Succour", - ["type"] = "enchant", + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", }, }, - ["30395"] = { + ["1180552088"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", - ["type"] = "enchant", + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "explicit", }, }, - ["30408"] = { - ["specialCaseData"] = { + ["1181419800"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30408", - ["text"] = "Allocates Efficient Contraptions", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - }, - ["30456"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30456", - ["text"] = "Allocates High Alert", - ["type"] = "enchant", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", }, }, - ["30523"] = { - ["specialCaseData"] = { + ["1181501418"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30523", - ["text"] = "Allocates Dead can Dance", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["30546"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30546", - ["text"] = "Allocates Electrified Claw", - ["type"] = "enchant", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["30562"] = { + ["1185341308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", - ["type"] = "enchant", + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", }, }, - ["30720"] = { - ["specialCaseData"] = { + ["1200678966"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30720", - ["text"] = "Allocates Entropic Incarnation", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["30748"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30748", - ["text"] = "Allocates Controlled Chaos", - ["type"] = "enchant", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", }, }, - ["31129"] = { - ["specialCaseData"] = { + ["1202301673"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31129", - ["text"] = "Allocates Lifelong Friend", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - }, - ["31172"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31172", - ["text"] = "Allocates Falcon Technique", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["31175"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31175", - ["text"] = "Allocates Grip of Evil", - ["type"] = "enchant", + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["31189"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31189", - ["text"] = "Allocates Unexpected Finesse", - ["type"] = "enchant", + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["31326"] = { - ["specialCaseData"] = { + ["1238227257"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31326", - ["text"] = "Allocates Slow Burn", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["31364"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31364", - ["text"] = "Allocates Primal Protection", - ["type"] = "enchant", + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", }, }, - ["31373"] = { - ["specialCaseData"] = { + ["124131830"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 2, }, - }, - ["31433"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31433", - ["text"] = "Allocates Catalysis", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["31724"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 6, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31724", - ["text"] = "Allocates Iron Slippers", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["31745"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", - ["type"] = "enchant", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["31773"] = { + ["1241625305"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31773", - ["text"] = "Allocates Resurging Archon", - ["type"] = "enchant", + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", }, }, - ["31826"] = { - ["specialCaseData"] = { + ["124859000"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31826", - ["text"] = "Allocates Long Distance Relationship", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["3188"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3188", - ["text"] = "Allocates Revenge", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["31925"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31925", - ["text"] = "Allocates Warding Fetish", - ["type"] = "enchant", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", }, }, - ["32071"] = { - ["specialCaseData"] = { + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32071", - ["text"] = "Allocates Primal Growth", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["3215"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3215", - ["text"] = "Allocates Melding", - ["type"] = "enchant", + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", }, }, - ["32151"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32151", - ["text"] = "Allocates Crystalline Resistance", - ["type"] = "enchant", + ["1261982764"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, }, - }, - ["32301"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32301", - ["text"] = "Allocates Frazzled", - ["type"] = "enchant", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", }, }, - ["32353"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32353", - ["text"] = "Allocates Swift Claw", - ["type"] = "enchant", + ["1263695895"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32354"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32354", - ["text"] = "Allocates Defiance", - ["type"] = "enchant", + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32448"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32448", - ["text"] = "Allocates Shockproof", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32507"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32507", - ["text"] = "Allocates Cut to the Bone", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32543"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32543", - ["text"] = "Allocates Unhindered", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32655"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32655", - ["text"] = "Allocates Hunting Companion", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32664"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32664", - ["text"] = "Allocates Chakra of Breathing", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32721"] = { - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32721", - ["text"] = "Allocates Distracted Target", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["32799"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32799", - ["text"] = "Allocates Captivating Companionship", - ["type"] = "enchant", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", }, }, - ["32858"] = { + ["1265767008"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32858", - ["text"] = "Allocates Dread Engineer's Concoction", - ["type"] = "enchant", + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "explicit", }, }, - ["32932"] = { + ["1266413530"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32932", - ["text"] = "Allocates Ichlotl's Inferno", - ["type"] = "enchant", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", }, }, - ["32951"] = { + ["127081978"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32951", - ["text"] = "Allocates Preservation", - ["type"] = "enchant", + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", }, }, - ["32976"] = { + ["1285594161"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32976", - ["text"] = "Allocates Gem Enthusiast", - ["type"] = "enchant", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", }, }, - ["33059"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33059", - ["text"] = "Allocates Back in Action", - ["type"] = "enchant", + ["1301765461"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["33093"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33093", - ["text"] = "Allocates Effervescent", - ["type"] = "enchant", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["33099"] = { - ["specialCaseData"] = { + ["1303248024"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33099", - ["text"] = "Allocates Hunter's Talisman", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["33216"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33216", - ["text"] = "Allocates Deep Wounds", - ["type"] = "enchant", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", }, }, - ["33229"] = { + ["1309799717"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33229", - ["text"] = "Allocates Haemorrhaging Cuts", - ["type"] = "enchant", + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", }, }, - ["33240"] = { - ["specialCaseData"] = { + ["1310194496"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33240", - ["text"] = "Allocates Lord of Horrors", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["3348"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3348", - ["text"] = "Allocates Spirit of the Wolf", - ["type"] = "enchant", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, }, - ["33542"] = { - ["specialCaseData"] = { + ["1315743832"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33542", - ["text"] = "Allocates Quick Fingers", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["33585"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33585", - ["text"] = "Allocates Unspoken Bond", - ["type"] = "enchant", + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", }, }, - ["336"] = { - ["specialCaseData"] = { + ["1316278494"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|336", - ["text"] = "Allocates Storm Swell", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["33730"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33730", - ["text"] = "Allocates Focused Channel", - ["type"] = "enchant", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", }, }, - ["338"] = { + ["1320662475"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|338", - ["text"] = "Allocates Invocated Limit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", }, }, - ["33887"] = { + ["1321054058"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33887", - ["text"] = "Allocates Full Salvo", - ["type"] = "enchant", + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "explicit", }, }, - ["33922"] = { + ["1321104829"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33922", - ["text"] = "Allocates Stripped Defences", - ["type"] = "enchant", + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", }, }, - ["33978"] = { + ["1323216174"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|33978", - ["text"] = "Allocates Unstoppable Barrier", - ["type"] = "enchant", + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", }, }, - ["34300"] = { + ["1337740333"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34300", - ["text"] = "Allocates Conservative Casting", - ["type"] = "enchant", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", }, }, - ["34308"] = { + ["1347539079"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34308", - ["text"] = "Allocates Personal Touch", - ["type"] = "enchant", + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["34316"] = { + ["1352561456"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34316", - ["text"] = "Allocates One with the River", - ["type"] = "enchant", + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", }, }, - ["34324"] = { + ["1366840608"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", - ["type"] = "enchant", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", + ["type"] = "explicit", }, }, - ["34340"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34340", - ["text"] = "Allocates Mass Rejuvenation", - ["type"] = "enchant", + ["1368271171"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34425"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34425", - ["text"] = "Allocates Precise Volatility", - ["type"] = "enchant", + ["2HMace"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34473"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34473", - ["text"] = "Allocates Spaghettification", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34531"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34541"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34541", - ["text"] = "Allocates Energising Deflection", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34543"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34543", - ["text"] = "Allocates The Frenzied Bear", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 27, + ["min"] = 2, }, - }, - ["34553"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34553", - ["text"] = "Allocates Emboldening Lead", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["34908"] = { - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34908", - ["text"] = "Allocates Staunch Deflection", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["3492"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3492", - ["text"] = "Allocates Void", - ["type"] = "enchant", + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", }, }, - ["35028"] = { - ["specialCaseData"] = { + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35028", - ["text"] = "Allocates In the Thick of It", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 13, + ["min"] = 2, }, - }, - ["35031"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35031", - ["text"] = "Allocates Chakra of Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["35324"] = { + ["138421180"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35324", - ["text"] = "Allocates Burnout", - ["type"] = "enchant", + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", }, }, - ["35369"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35369", - ["text"] = "Allocates Investing Energies", - ["type"] = "enchant", + ["1389754388"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["35417"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35417", - ["text"] = "Allocates Wyvern's Breath", - ["type"] = "enchant", + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, }, - }, - ["35477"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35477", - ["text"] = "Allocates Far Sighted", - ["type"] = "enchant", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", }, }, - ["35560"] = { + ["139889694"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35560", - ["text"] = "Allocates At your Command", - ["type"] = "enchant", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", }, }, - ["35564"] = { - ["specialCaseData"] = { + ["1405298142"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35564", - ["text"] = "Allocates Turn the Clock Back", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["35581"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35581", - ["text"] = "Allocates Near at Hand", - ["type"] = "enchant", + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", }, }, - ["35618"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35618", - ["text"] = "Allocates Cold Coat", - ["type"] = "enchant", + ["1412217137"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, - }, - ["3567"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3567", - ["text"] = "Allocates Raw Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", }, }, - ["35739"] = { + ["1416406066"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35739", - ["text"] = "Allocates Crushing Judgement", - ["type"] = "enchant", + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", }, }, - ["35792"] = { + ["1417267954"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35792", - ["text"] = "Allocates Blood of Rage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", }, }, - ["35809"] = { - ["specialCaseData"] = { + ["1423639565"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["35849"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", - ["type"] = "enchant", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["35855"] = { + ["1426522529"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35855", - ["text"] = "Allocates Fortifying Blood", - ["type"] = "enchant", + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", }, }, - ["35876"] = { + ["1432756708"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35876", - ["text"] = "Allocates Admonisher", - ["type"] = "enchant", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", }, }, - ["35918"] = { + ["1443502073"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35918", - ["text"] = "Allocates One For All", - ["type"] = "enchant", + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "explicit", }, }, - ["35966"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35966", - ["text"] = "Allocates Heart Tissue", - ["type"] = "enchant", + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, }, - }, - ["36085"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - }, - ["36100"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36100", - ["text"] = "Allocates Molten Claw", - ["type"] = "enchant", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["36333"] = { + ["145581225"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36333", - ["text"] = "Allocates Explosive Empowerment", - ["type"] = "enchant", + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", }, }, - ["36341"] = { - ["specialCaseData"] = { + ["1459321413"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36341", - ["text"] = "Allocates Cull the Hordes", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["36364"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36364", - ["text"] = "Allocates Electrocution", - ["type"] = "enchant", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", }, }, - ["36507"] = { + ["147764878"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36507", - ["text"] = "Allocates Vile Mending", - ["type"] = "enchant", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", }, }, - ["36623"] = { + ["1484026495"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36623", - ["text"] = "Allocates Convalescence", - ["type"] = "enchant", + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["36630"] = { + ["1484500028"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36630", - ["text"] = "Allocates Incision", - ["type"] = "enchant", + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", }, }, - ["36808"] = { + ["1485480327"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36808", - ["text"] = "Allocates Spiked Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", + ["type"] = "explicit", }, }, - ["3688"] = { + ["1488650448"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3688", - ["text"] = "Allocates Dynamism", - ["type"] = "enchant", + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["36931"] = { + ["1493485657"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36931", - ["text"] = "Allocates Concussive Attack", - ["type"] = "enchant", + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["36976"] = { + ["1494950893"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36976", - ["text"] = "Allocates Marked for Death", - ["type"] = "enchant", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["3698"] = { + ["1495814176"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3698", - ["text"] = "Allocates Spike Pit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", }, }, - ["372"] = { + ["1505023559"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|372", - ["text"] = "Allocates Heatproof", - ["type"] = "enchant", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", }, }, - ["37244"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37244", - ["text"] = "Allocates Shield Expertise", - ["type"] = "enchant", + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 15, }, - }, - ["37266"] = { - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37266", - ["text"] = "Allocates Nourishing Ally", - ["type"] = "enchant", + ["2HMace"] = { + ["max"] = 179, + ["min"] = 15, }, - }, - ["37276"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37276", - ["text"] = "Allocates Battle Trance", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 179, + ["min"] = 15, }, - }, - ["37302"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 179, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37302", - ["text"] = "Allocates Kept at Bay", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 179, + ["min"] = 15, }, - }, - ["37408"] = { - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 179, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37408", - ["text"] = "Allocates Staunching", - ["type"] = "enchant", + ["Spear"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 179, + ["min"] = 15, }, - }, - ["37458"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37458", - ["text"] = "Allocates Strong Links", - ["type"] = "enchant", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", }, }, - ["37514"] = { + ["1509533589"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37514", - ["text"] = "Allocates Whirling Assault", - ["type"] = "enchant", + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", + ["type"] = "explicit", }, }, - ["37543"] = { + ["1514844108"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", - ["type"] = "enchant", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", }, }, - ["37742"] = { - ["specialCaseData"] = { + ["1526933524"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", - ["type"] = "enchant", + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["37806"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37806", - ["text"] = "Allocates Branching Bolts", - ["type"] = "enchant", + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", }, }, - ["37872"] = { - ["specialCaseData"] = { + ["153777645"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37872", - ["text"] = "Allocates Presence Present", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - }, - ["38053"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38053", - ["text"] = "Allocates Deafening Cries", - ["type"] = "enchant", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", }, }, - ["38111"] = { - ["specialCaseData"] = { + ["1544773869"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38111", - ["text"] = "Allocates Pliable Flesh", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 4, }, - }, - ["38329"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38329", - ["text"] = "Allocates Biting Frost", - ["type"] = "enchant", + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "explicit", }, }, - ["38342"] = { - ["specialCaseData"] = { + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38342", - ["text"] = "Allocates Stupefy", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, }, - }, - ["38398"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38398", - ["text"] = "Allocates Apocalypse", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, - }, - ["38459"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38459", - ["text"] = "Allocates Disorientation", - ["type"] = "enchant", + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["38479"] = { + ["1552666713"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38479", - ["text"] = "Allocates Close Confines", - ["type"] = "enchant", + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, }, - ["38532"] = { + ["1568848828"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "explicit", }, }, - ["38535"] = { - ["specialCaseData"] = { + ["1569101201"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38535", - ["text"] = "Allocates Stormcharged", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["38537"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", - ["type"] = "enchant", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", }, }, - ["38570"] = { - ["specialCaseData"] = { + ["1569159338"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38570", - ["text"] = "Allocates Demolitionist", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["38614"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38614", - ["text"] = "Allocates Psychic Fragmentation", - ["type"] = "enchant", + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", }, }, - ["38628"] = { + ["1570501432"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38628", - ["text"] = "Allocates Escalating Toxins", - ["type"] = "enchant", + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", }, }, - ["38888"] = { + ["1570770415"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38888", - ["text"] = "Allocates Unerring Impact", - ["type"] = "enchant", + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", }, }, - ["38895"] = { - ["specialCaseData"] = { + ["1573130764"] = { + ["Gloves"] = { + ["max"] = 37, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38895", - ["text"] = "Allocates Crystal Elixir", - ["type"] = "enchant", + ["Quiver"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 37, + ["min"] = 2, }, - }, - ["3894"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", - ["type"] = "enchant", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", }, }, - ["38965"] = { - ["specialCaseData"] = { + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 25.5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38965", - ["text"] = "Allocates Infused Limits", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 25.5, + ["min"] = 2, }, - }, - ["38969"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38969", - ["text"] = "Allocates Finesse", - ["type"] = "enchant", + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", }, }, - ["38972"] = { - ["specialCaseData"] = { + ["1585769763"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["39050"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39050", - ["text"] = "Allocates Exploit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", }, }, - ["39083"] = { - ["specialCaseData"] = { + ["1589917703"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39083", - ["text"] = "Allocates Blood Rush", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["3921"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", - ["type"] = "enchant", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["39347"] = { + ["1590846356"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39347", - ["text"] = "Allocates Breaking Blows", - ["type"] = "enchant", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "explicit", }, }, - ["39369"] = { - ["specialCaseData"] = { + ["1594812856"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39369", - ["text"] = "Allocates Struck Through", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["39567"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39567", - ["text"] = "Allocates Ingenuity", - ["type"] = "enchant", + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", }, }, - ["3985"] = { - ["specialCaseData"] = { + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3985", - ["text"] = "Allocates Forces of Nature", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, }, - }, - ["39881"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39881", - ["text"] = "Allocates Staggering Palm", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, - }, - ["39884"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39884", - ["text"] = "Allocates Searing Heat", - ["type"] = "enchant", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["39990"] = { + ["1602294220"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39990", - ["text"] = "Allocates Chronomancy", - ["type"] = "enchant", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", }, }, - ["40073"] = { - ["specialCaseData"] = { + ["1604736568"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40073", - ["text"] = "Allocates Drenched", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["40117"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40117", - ["text"] = "Allocates Spiked Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", }, }, - ["40166"] = { + ["1615901249"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40166", - ["text"] = "Allocates Deep Trance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "explicit", }, }, - ["40213"] = { + ["1617268696"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40213", - ["text"] = "Allocates Taste for Blood", - ["type"] = "enchant", + ["id"] = "explicit.stat_1617268696", + ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing atenth of their maximum Life as Fire Damage", + ["type"] = "explicit", }, }, - ["40270"] = { + ["1653682082"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40270", - ["text"] = "Allocates Frenetic", - ["type"] = "enchant", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, }, - ["40292"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40292", - ["text"] = "Allocates Nimble Strength", - ["type"] = "enchant", + ["1671376347"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["4031"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4031", - ["text"] = "Allocates Icebreaker", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["40325"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40325", - ["text"] = "Allocates Resolution", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["40345"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40345", - ["text"] = "Allocates Master of Hexes", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["40399"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40399", - ["text"] = "Allocates Energise", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["40480"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", - ["type"] = "enchant", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["40687"] = { + ["1691403182"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40687", - ["text"] = "Allocates Lead by Example", - ["type"] = "enchant", + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["40803"] = { + ["1692879867"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40803", - ["text"] = "Allocates Sigil of Ice", - ["type"] = "enchant", + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "explicit", }, }, - ["40985"] = { - ["specialCaseData"] = { + ["1697447343"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40985", - ["text"] = "Allocates Empowering Remnants", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["40990"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40990", - ["text"] = "Allocates Exposed to the Storm", - ["type"] = "enchant", + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", }, }, - ["41033"] = { - ["specialCaseData"] = { + ["1697951953"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["41394"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", - ["type"] = "enchant", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", }, }, - ["41512"] = { - ["specialCaseData"] = { + ["169946467"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41512", - ["text"] = "Allocates Heavy Weaponry", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["41580"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41580", - ["text"] = "Allocates Maiming Strike", - ["type"] = "enchant", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", }, }, - ["41620"] = { - ["specialCaseData"] = { + ["1714971114"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41620", - ["text"] = "Allocates Bear's Roar", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["41753"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41753", - ["text"] = "Allocates Evocational Practitioner", - ["type"] = "enchant", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, }, - ["41811"] = { + ["1718147982"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41811", - ["text"] = "Allocates Shatter Palm", - ["type"] = "enchant", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", }, }, - ["41905"] = { - ["specialCaseData"] = { + ["173226756"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41905", - ["text"] = "Allocates Gravedigger", - ["type"] = "enchant", + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, }, - }, - ["41935"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41935", - ["text"] = "Allocates Hide of the Bear", - ["type"] = "enchant", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", }, }, - ["41972"] = { + ["1742651309"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41972", - ["text"] = "Allocates Glaciation", - ["type"] = "enchant", + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["42032"] = { + ["174664100"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42032", - ["text"] = "Allocates Escalating Mayhem", - ["type"] = "enchant", + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", }, }, - ["42036"] = { - ["specialCaseData"] = { + ["1754445556"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42036", - ["text"] = "Allocates Off-Balancing Retort", - ["type"] = "enchant", + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - }, - ["42045"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42045", - ["text"] = "Allocates Archon of the Blizzard", - ["type"] = "enchant", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", }, }, - ["42065"] = { + ["1756380435"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42065", - ["text"] = "Allocates Surging Currents", - ["type"] = "enchant", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, }, - ["42070"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42070", - ["text"] = "Allocates Saqawal's Guidance", - ["type"] = "enchant", + ["1772247089"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["42077"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42077", - ["text"] = "Allocates Essence Infusion", - ["type"] = "enchant", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", }, }, - ["42103"] = { + ["1773308808"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42103", - ["text"] = "Allocates Enduring Deflection", - ["type"] = "enchant", + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", }, }, - ["42177"] = { - ["specialCaseData"] = { + ["1776411443"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["42245"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", - ["type"] = "enchant", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", }, }, - ["42302"] = { + ["1776945532"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42302", - ["text"] = "Allocates Split Shot", - ["type"] = "enchant", + ["id"] = "explicit.stat_1776945532", + ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["type"] = "explicit", }, }, - ["42347"] = { + ["1777421941"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42347", - ["text"] = "Allocates Chakra of Sight", - ["type"] = "enchant", + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", }, }, - ["42354"] = { - ["specialCaseData"] = { + ["1782086450"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42354", - ["text"] = "Allocates Blinding Flash", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["4238"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", - ["type"] = "enchant", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", }, }, - ["42390"] = { + ["179541474"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42390", - ["text"] = "Allocates Overheating Blow", - ["type"] = "enchant", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", }, }, - ["42660"] = { + ["1797815732"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["42714"] = { - ["specialCaseData"] = { + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 119, + ["min"] = 25, }, - }, - ["42760"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42760", - ["text"] = "Allocates Chakra of Stability", - ["type"] = "enchant", + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", }, }, - ["42813"] = { + ["1800303440"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42813", - ["text"] = "Allocates Tides of Change", - ["type"] = "enchant", + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", }, }, - ["4295"] = { - ["specialCaseData"] = { + ["1805182458"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4295", - ["text"] = "Allocates Adverse Growth", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["42959"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42959", - ["text"] = "Allocates Low Tolerance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", }, }, - ["42981"] = { + ["1805633363"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42981", - ["text"] = "Allocates Cruel Methods", - ["type"] = "enchant", + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "explicit", }, }, - ["43082"] = { + ["1811130680"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43082", - ["text"] = "Allocates Acceleration", - ["type"] = "enchant", + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", }, }, - ["43088"] = { + ["1823942939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43088", - ["text"] = "Allocates Agonising Calamity", - ["type"] = "enchant", + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["43090"] = { - ["specialCaseData"] = { + ["1829102168"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43090", - ["text"] = "Allocates Electrotherapy", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["43139"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43139", - ["text"] = "Allocates Stormbreaker", - ["type"] = "enchant", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", }, }, - ["43250"] = { + ["1834658952"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43250", - ["text"] = "Allocates Adaptive Skin", - ["type"] = "enchant", + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", }, }, - ["4331"] = { - ["specialCaseData"] = { + ["1836676211"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4331", - ["text"] = "Allocates Guided Hand", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, - }, - ["43396"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43396", - ["text"] = "Allocates Ancestral Reach", - ["type"] = "enchant", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", }, }, - ["43423"] = { - ["specialCaseData"] = { + ["1839076647"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43423", - ["text"] = "Allocates Emboldened Avatar", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["43584"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43584", - ["text"] = "Allocates Flare", - ["type"] = "enchant", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", }, }, - ["43633"] = { + ["1840985759"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43633", - ["text"] = "Allocates Energising Archon", - ["type"] = "enchant", + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", }, }, - ["43677"] = { + ["1846980580"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43677", - ["text"] = "Allocates Crippling Toxins", - ["type"] = "enchant", + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", }, }, - ["43711"] = { + ["1852184471"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43711", - ["text"] = "Allocates Thornhide", - ["type"] = "enchant", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", }, }, - ["43791"] = { - ["specialCaseData"] = { + ["1852872083"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43791", - ["text"] = "Allocates Rallying Icon", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["43829"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43829", - ["text"] = "Allocates Advanced Munitions", - ["type"] = "enchant", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", }, }, - ["43854"] = { - ["specialCaseData"] = { + ["1854213750"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43854", - ["text"] = "Allocates All For One", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["43939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43939", - ["text"] = "Allocates Melting Flames", - ["type"] = "enchant", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", }, }, - ["43944"] = { + ["185580205"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43944", - ["text"] = "Allocates Instability", - ["type"] = "enchant", + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", }, }, - ["44005"] = { - ["specialCaseData"] = { + ["1869147066"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["44293"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", - ["type"] = "enchant", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "explicit", }, }, - ["44299"] = { + ["1873752457"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44299", - ["text"] = "Allocates Enhanced Barrier", - ["type"] = "enchant", + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", }, }, - ["44330"] = { + ["1874553720"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44330", - ["text"] = "Allocates Coated Arms", - ["type"] = "enchant", - }, - }, - ["44373"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44373", - ["text"] = "Allocates Wither Away", - ["type"] = "enchant", + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", }, }, - ["4447"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4447", - ["text"] = "Allocates Pin their Motivation", - ["type"] = "enchant", + ["1881230714"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44566"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44566", - ["text"] = "Allocates Lightning Rod", - ["type"] = "enchant", + ["Dagger"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44753"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44753", - ["text"] = "Allocates One With Flame", - ["type"] = "enchant", + ["One Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44756"] = { - ["specialCaseData"] = { + ["One Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44756", - ["text"] = "Allocates Marked Agility", - ["type"] = "enchant", + ["One Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44765"] = { - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44765", - ["text"] = "Allocates Distracting Presence", - ["type"] = "enchant", + ["Spear"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44917"] = { - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44917", - ["text"] = "Allocates Self Mortification", - ["type"] = "enchant", + ["Two Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44952"] = { - ["specialCaseData"] = { + ["Two Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44952", - ["text"] = "Allocates Made to Last", - ["type"] = "enchant", + ["Two Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["44974"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44974", - ["text"] = "Allocates Hail", - ["type"] = "enchant", + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", }, }, - ["45013"] = { + ["1892122971"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45013", - ["text"] = "Allocates Finishing Blows", - ["type"] = "enchant", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", }, }, - ["45177"] = { + ["1896066427"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45177", - ["text"] = "Allocates Strike True", - ["type"] = "enchant", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", }, }, - ["45244"] = { - ["specialCaseData"] = { + ["1911237468"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45244", - ["text"] = "Allocates Refills", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["45329"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45329", - ["text"] = "Allocates Delayed Danger", - ["type"] = "enchant", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", }, }, - ["4534"] = { - ["specialCaseData"] = { + ["1940865751"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4534", - ["text"] = "Allocates Piercing Shot", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - }, - ["45370"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45370", - ["text"] = "Allocates The Raging Ox", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, }, - }, - ["4544"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - }, - ["4547"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - }, - ["45488"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45488", - ["text"] = "Allocates Cross Strike", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - }, - ["45599"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45599", - ["text"] = "Allocates Lay Siege", - ["type"] = "enchant", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", }, }, - ["45612"] = { + ["1944020877"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", - ["type"] = "enchant", + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", }, }, - ["45632"] = { + ["195270549"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45632", - ["text"] = "Allocates Mind Eraser", - ["type"] = "enchant", + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "explicit", }, }, - ["45713"] = { + ["1967040409"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45713", - ["text"] = "Allocates Savouring", - ["type"] = "enchant", + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["45751"] = { - ["specialCaseData"] = { + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45751", - ["text"] = "Allocates Frightening Shield", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["45777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45777", - ["text"] = "Allocates Hidden Barb", - ["type"] = "enchant", + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", }, }, - ["4579"] = { + ["1972391381"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4579", - ["text"] = "Allocates Unbothering Cold", - ["type"] = "enchant", + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "explicit", }, }, - ["45874"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45874", - ["text"] = "Allocates Proliferating Weeds", - ["type"] = "enchant", + ["1978899297"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["46024"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46024", - ["text"] = "Allocates Sigil of Lightning", - ["type"] = "enchant", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["46060"] = { - ["specialCaseData"] = { + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46060", - ["text"] = "Allocates Voracious", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["46124"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46124", - ["text"] = "Allocates Arcane Remnants", - ["type"] = "enchant", + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "explicit", }, }, - ["46182"] = { + ["1992191903"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46182", - ["text"] = "Allocates Intense Dose", - ["type"] = "enchant", + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["46197"] = { + ["1994296038"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46197", - ["text"] = "Allocates Careful Assassin", - ["type"] = "enchant", + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", }, }, - ["46224"] = { - ["specialCaseData"] = { + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46224", - ["text"] = "Allocates Arcane Alchemy", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, }, - }, - ["4627"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4627", - ["text"] = "Allocates Climate Change", - ["type"] = "enchant", + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", }, }, - ["46296"] = { - ["specialCaseData"] = { + ["1999113824"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46296", - ["text"] = "Allocates Short Shot", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["46365"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46365", - ["text"] = "Allocates Gigantic Following", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, - }, - ["46384"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46384", - ["text"] = "Allocates Wide Barrier", - ["type"] = "enchant", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", }, }, - ["46499"] = { - ["specialCaseData"] = { + ["2011656677"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46499", - ["text"] = "Allocates Guts", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["4661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", - ["type"] = "enchant", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, }, - ["46683"] = { - ["specialCaseData"] = { + ["2023107756"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["46692"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46692", - ["text"] = "Allocates Efficient Alchemy", - ["type"] = "enchant", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", }, }, - ["46696"] = { + ["2039822488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46696", - ["text"] = "Allocates Impair", - ["type"] = "enchant", + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["46726"] = { + ["2056107438"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46726", - ["text"] = "Allocates Reformed Barrier", - ["type"] = "enchant", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["4673"] = { + ["2066964205"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4673", - ["text"] = "Allocates Hulking Smash", - ["type"] = "enchant", + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", }, }, - ["46972"] = { + ["2074866941"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46972", - ["text"] = "Allocates Arcane Mixtures", - ["type"] = "enchant", + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", }, }, - ["47088"] = { + ["2077117738"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47088", - ["text"] = "Allocates Sic 'Em", - ["type"] = "enchant", + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", }, }, - ["4709"] = { + ["2081918629"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4709", - ["text"] = "Allocates Near Sighted", - ["type"] = "enchant", + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "explicit", }, }, - ["4716"] = { + ["2083058281"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4716", - ["text"] = "Allocates Afterimage", - ["type"] = "enchant", + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "explicit", }, }, - ["47270"] = { - ["specialCaseData"] = { + ["210067635"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47270", - ["text"] = "Allocates Inescapable Cold", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["47316"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47316", - ["text"] = "Allocates Goring", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["47363"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 19, + ["min"] = 5, }, - }, - ["47418"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47418", - ["text"] = "Allocates Warding Potions", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["47420"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47420", - ["text"] = "Allocates Expendable Army", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["47441"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47441", - ["text"] = "Allocates Stigmata", - ["type"] = "enchant", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", }, }, - ["47514"] = { + ["2101383955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47514", - ["text"] = "Allocates Dizzying Hits", - ["type"] = "enchant", + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", }, }, - ["47560"] = { + ["2103650854"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47560", - ["text"] = "Allocates Multi Shot", - ["type"] = "enchant", + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "explicit", }, }, - ["47635"] = { - ["specialCaseData"] = { + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47635", - ["text"] = "Allocates Overload", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["47782"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47782", - ["text"] = "Allocates Steady Footing", - ["type"] = "enchant", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", }, }, - ["48006"] = { - ["specialCaseData"] = { + ["21071013"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48006", - ["text"] = "Allocates Devastation", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["48014"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48014", - ["text"] = "Allocates Honourless", - ["type"] = "enchant", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", }, }, - ["4810"] = { + ["2107703111"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", - ["type"] = "enchant", + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", }, }, - ["48103"] = { + ["2108821127"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48103", - ["text"] = "Allocates Forcewave", - ["type"] = "enchant", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", }, }, - ["48215"] = { - ["specialCaseData"] = { + ["2112395885"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48215", - ["text"] = "Allocates Headshot", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["48240"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48240", - ["text"] = "Allocates Quick Recovery", - ["type"] = "enchant", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", }, }, - ["48418"] = { - ["specialCaseData"] = { + ["2118708619"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48418", - ["text"] = "Allocates Hefty Unit", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["48524"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48524", - ["text"] = "Allocates Blood Transfusion", - ["type"] = "enchant", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", }, }, - ["48565"] = { + ["2122183138"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48565", - ["text"] = "Allocates Bringer of Order", - ["type"] = "enchant", + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", }, }, - ["48581"] = { + ["2131720304"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48581", - ["text"] = "Allocates Exploit the Elements", - ["type"] = "enchant", + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", }, }, - ["48617"] = { + ["2144192055"] = { + ["Ring"] = { + ["max"] = 233, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48617", - ["text"] = "Allocates Hunter", - ["type"] = "enchant", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["48649"] = { + ["2149603090"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48649", - ["text"] = "Allocates Insulating Hide", - ["type"] = "enchant", + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["48658"] = { + ["2150661403"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48658", - ["text"] = "Allocates Shattering", - ["type"] = "enchant", + ["id"] = "explicit.stat_2150661403", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", + ["type"] = "explicit", }, }, - ["48699"] = { + ["2158617060"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", - ["type"] = "enchant", + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", }, }, - ["48734"] = { + ["2160282525"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48734", - ["text"] = "Allocates The Howling Primate", - ["type"] = "enchant", - }, + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, }, - ["48774"] = { - ["specialCaseData"] = { + ["2162097452"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48774", - ["text"] = "Allocates Taut Flesh", - ["type"] = "enchant", + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["48925"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48925", - ["text"] = "Allocates Blessing of the Moon", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["48974"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48974", - ["text"] = "Allocates Altered Brain Chemistry", - ["type"] = "enchant", + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["49088"] = { - ["specialCaseData"] = { + ["2174054121"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49088", - ["text"] = "Allocates Splintering Force", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["49150"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49150", - ["text"] = "Allocates Precise Invocations", - ["type"] = "enchant", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", }, }, - ["49214"] = { + ["2189073790"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49214", - ["text"] = "Allocates Blood of the Wolf", - ["type"] = "enchant", + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["4931"] = { - ["specialCaseData"] = { + ["2194114101"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4931", - ["text"] = "Allocates Dependable Ward", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["49550"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", - ["type"] = "enchant", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", }, }, - ["4959"] = { + ["2200293569"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4959", - ["text"] = "Allocates Heavy Frost", - ["type"] = "enchant", + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", }, }, - ["49618"] = { + ["2202308025"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49618", - ["text"] = "Allocates Deadly Flourish", - ["type"] = "enchant", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, }, - ["49661"] = { + ["221701169"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49661", - ["text"] = "Allocates Perfectly Placed Knife", - ["type"] = "enchant", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", }, }, - ["49740"] = { - ["specialCaseData"] = { + ["2222186378"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49740", - ["text"] = "Allocates Shattered Crystal", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["4985"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4985", - ["text"] = "Allocates Flip the Script", - ["type"] = "enchant", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, }, - ["49984"] = { + ["2223678961"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|49984", - ["text"] = "Allocates Spellblade", - ["type"] = "enchant", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "explicit", }, }, - ["50023"] = { - ["specialCaseData"] = { + ["2231156303"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50023", - ["text"] = "Allocates Invigorating Grandeur", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, }, - }, - ["50062"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50062", - ["text"] = "Allocates Reinforced Barrier", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["5009"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5009", - ["text"] = "Allocates Seeing Stars", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - }, - ["50253"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50253", - ["text"] = "Allocates Aftershocks", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, - }, - ["50389"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50389", - ["text"] = "Allocates Twinned Tethers", - ["type"] = "enchant", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", }, }, - ["50392"] = { - ["specialCaseData"] = { + ["2250533757"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50392", - ["text"] = "Allocates Brute Strength", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, }, - }, - ["50485"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50485", - ["text"] = "Allocates Zone of Control", - ["type"] = "enchant", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", }, }, - ["50562"] = { - ["specialCaseData"] = { + ["2250681686"] = { + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50562", - ["text"] = "Allocates Barbaric Strength", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["50673"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50673", - ["text"] = "Allocates Avoiding Deflection", - ["type"] = "enchant", + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["50687"] = { - ["specialCaseData"] = { + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, }, - }, - ["50715"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50715", - ["text"] = "Allocates Frozen Limit", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, - }, - ["50795"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50795", - ["text"] = "Allocates Careful Aim", - ["type"] = "enchant", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["50884"] = { + ["2256120736"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50884", - ["text"] = "Allocates Primal Sundering", - ["type"] = "enchant", + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", }, }, - ["50912"] = { + ["2272980012"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50912", - ["text"] = "Allocates Imbibed Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", }, }, - ["51105"] = { - ["specialCaseData"] = { + ["2301718443"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51105", - ["text"] = "Allocates Spirit Bond", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["51129"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51129", - ["text"] = "Allocates Pile On", - ["type"] = "enchant", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", }, }, - ["51169"] = { + ["2319832234"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51169", - ["text"] = "Allocates Soul Bloom", - ["type"] = "enchant", + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["type"] = "explicit", }, }, - ["51213"] = { + ["2320654813"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51213", - ["text"] = "Allocates Wasting", - ["type"] = "enchant", + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", }, }, - ["51394"] = { - ["specialCaseData"] = { + ["2321178454"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51394", - ["text"] = "Allocates Unimpeded", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 12, }, - }, - ["51446"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51446", - ["text"] = "Allocates Leather Bound Gauntlets", - ["type"] = "enchant", + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", }, }, - ["51509"] = { + ["2334956771"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51509", - ["text"] = "Allocates Waters of Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", }, }, - ["51602"] = { - ["specialCaseData"] = { + ["2339757871"] = { + ["Boots"] = { + ["max"] = 19, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51602", - ["text"] = "Allocates Unsight", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 27, + ["min"] = 16, }, - }, - ["51606"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 27, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51606", - ["text"] = "Allocates Freedom of Movement", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 19, + ["min"] = 16, }, - }, - ["51707"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 19, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51707", - ["text"] = "Allocates Enhanced Reflexes", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 27, + ["min"] = 16, }, - }, - ["51820"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51820", - ["text"] = "Allocates Ancestral Conduits", - ["type"] = "enchant", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, }, - ["51867"] = { - ["specialCaseData"] = { + ["234296660"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51867", - ["text"] = "Allocates Finality", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["51868"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", - ["type"] = "enchant", + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["51871"] = { - ["specialCaseData"] = { + ["2347036682"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51871", - ["text"] = "Allocates Immortal Thirst", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, }, - }, - ["51891"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51891", - ["text"] = "Allocates Lucidity", - ["type"] = "enchant", + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", }, }, - ["51934"] = { - ["specialCaseData"] = { + ["2353576063"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51934", - ["text"] = "Allocates Invocated Efficiency", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["52180"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52180", - ["text"] = "Allocates Trained Deflection", - ["type"] = "enchant", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", }, }, - ["52191"] = { + ["2359002191"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52191", - ["text"] = "Allocates Event Horizon", - ["type"] = "enchant", + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", }, }, - ["52199"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", - ["type"] = "enchant", + ["2365392475"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, }, - }, - ["52229"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52229", - ["text"] = "Allocates Secrets of the Orb", - ["type"] = "enchant", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", }, }, - ["52245"] = { + ["2374711847"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52245", - ["text"] = "Allocates Distant Dreamer", - ["type"] = "enchant", + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", }, }, - ["52257"] = { + ["2392260628"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52257", - ["text"] = "Allocates Conductive Embrace", - ["type"] = "enchant", + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", }, }, - ["5227"] = { + ["2392824305"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5227", - ["text"] = "Allocates Escape Strategy", - ["type"] = "enchant", + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "explicit", }, }, - ["52348"] = { - ["specialCaseData"] = { + ["239367161"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52348", - ["text"] = "Allocates Carved Earth", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["52392"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52392", - ["text"] = "Allocates Singular Purpose", - ["type"] = "enchant", + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", }, }, - ["5257"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5257", - ["text"] = "Allocates Echoing Frost", - ["type"] = "enchant", + ["2416869319"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, }, - }, - ["52618"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", - ["type"] = "enchant", + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", }, }, - ["52684"] = { + ["2421151933"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52684", - ["text"] = "Allocates Eroding Chains", - ["type"] = "enchant", + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["52764"] = { - ["specialCaseData"] = { + ["2440073079"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["52803"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", - ["type"] = "enchant", + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", }, }, - ["5284"] = { + ["2442527254"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5284", - ["text"] = "Allocates Shredding Force", - ["type"] = "enchant", + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", }, }, - ["52971"] = { - ["specialCaseData"] = { + ["2451402625"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52971", - ["text"] = "Allocates Quick Response", - ["type"] = "enchant", + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["53030"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53030", - ["text"] = "Allocates Immolation", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["53131"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53131", - ["text"] = "Allocates Tukohama's Brew", - ["type"] = "enchant", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", }, }, - ["53150"] = { + ["2456226238"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53150", - ["text"] = "Allocates Sharp Sight", - ["type"] = "enchant", + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["type"] = "explicit", }, }, - ["53185"] = { - ["specialCaseData"] = { + ["2456523742"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53185", - ["text"] = "Allocates The Winter Owl", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["53187"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53187", - ["text"] = "Allocates Warlord Berserker", - ["type"] = "enchant", + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", }, }, - ["53265"] = { - ["specialCaseData"] = { + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53265", - ["text"] = "Allocates Nature's Bite", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 25, }, - }, - ["53294"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53294", - ["text"] = "Allocates Burn Away", - ["type"] = "enchant", + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5332"] = { + ["2466785537"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5332", - ["text"] = "Allocates Crystallised Immunities", - ["type"] = "enchant", + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", }, }, - ["5335"] = { + ["2475221757"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5335", - ["text"] = "Allocates Shimmering Mirage", - ["type"] = "enchant", + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "explicit", }, }, - ["53367"] = { - ["specialCaseData"] = { + ["2480498143"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53367", - ["text"] = "Allocates Symbol of Defiance", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["53527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53527", - ["text"] = "Allocates Shattering Blow", - ["type"] = "enchant", + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", }, }, - ["53566"] = { + ["2481353198"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53566", - ["text"] = "Allocates Run and Gun", - ["type"] = "enchant", + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", }, }, - ["53607"] = { - ["specialCaseData"] = { + ["2482852589"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53607", - ["text"] = "Allocates Fortified Location", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["53683"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53683", - ["text"] = "Allocates Efficient Loading", - ["type"] = "enchant", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", }, }, - ["53823"] = { - ["specialCaseData"] = { + ["2487305362"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53823", - ["text"] = "Allocates Towering Shield", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["53853"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53853", - ["text"] = "Allocates Backup Plan", - ["type"] = "enchant", + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", }, }, - ["53921"] = { - ["specialCaseData"] = { + ["2503377690"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53921", - ["text"] = "Allocates Unbreaking", - ["type"] = "enchant", + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["53935"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53935", - ["text"] = "Allocates Briny Carapace", - ["type"] = "enchant", + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", }, }, - ["53941"] = { - ["specialCaseData"] = { + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53941", - ["text"] = "Allocates Shimmering", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, }, - }, - ["54031"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54031", - ["text"] = "Allocates The Great Boar", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["5410"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5410", - ["text"] = "Allocates Channelled Heritage", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["54148"] = { - ["specialCaseData"] = { + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54148", - ["text"] = "Allocates Smoke Inhalation", - ["type"] = "enchant", + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["54640"] = { - ["specialCaseData"] = { + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54640", - ["text"] = "Allocates Constricting", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["54805"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54805", - ["text"] = "Allocates Hindered Capabilities", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, }, - }, - ["54814"] = { - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54814", - ["text"] = "Allocates Profane Commander", - ["type"] = "enchant", + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["54911"] = { - ["specialCaseData"] = { + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54911", - ["text"] = "Allocates Firestarter", - ["type"] = "enchant", + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, - }, - ["54937"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54937", - ["text"] = "Allocates Vengeful Fury", - ["type"] = "enchant", + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", }, }, - ["54990"] = { - ["specialCaseData"] = { + ["2518900926"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54990", - ["text"] = "Allocates Bloodletting", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["54998"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54998", - ["text"] = "Allocates Protraction", - ["type"] = "enchant", + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", }, }, - ["55"] = { - ["specialCaseData"] = { + ["2523933828"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55", - ["text"] = "Allocates Fast Acting Toxins", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - }, - ["55060"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55060", - ["text"] = "Allocates Shrapnel", - ["type"] = "enchant", + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", }, }, - ["55131"] = { - ["specialCaseData"] = { + ["2527686725"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55131", - ["text"] = "Allocates Light on your Feet", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["55149"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55149", - ["text"] = "Allocates Pure Chaos", - ["type"] = "enchant", + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", }, }, - ["55180"] = { + ["2534359663"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55180", - ["text"] = "Allocates Relentless Fallen", - ["type"] = "enchant", + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["55193"] = { + ["253641217"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55193", - ["text"] = "Allocates Subterfuge Mask", - ["type"] = "enchant", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", }, }, - ["55308"] = { + ["2541588185"] = { + ["Charm"] = { + ["max"] = 40, + ["min"] = 16, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", - ["type"] = "enchant", + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", }, }, - ["55375"] = { - ["specialCaseData"] = { + ["2557965901"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55375", - ["text"] = "Allocates Licking Wounds", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 6, }, - }, - ["55450"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55450", - ["text"] = "Allocates Rallying Form", - ["type"] = "enchant", + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", }, }, - ["55568"] = { + ["255840549"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55568", - ["text"] = "Allocates Forthcoming", - ["type"] = "enchant", + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", }, }, - ["55708"] = { + ["2567751411"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55708", - ["text"] = "Allocates Electric Amplification", - ["type"] = "enchant", + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["5580"] = { + ["2580617872"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5580", - ["text"] = "Allocates Watchtowers", - ["type"] = "enchant", + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", }, }, - ["55817"] = { + ["258119672"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55817", - ["text"] = "Allocates Alchemical Oil", - ["type"] = "enchant", + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["55835"] = { + ["2582079000"] = { ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55835", - ["text"] = "Allocates Exposed to the Cosmos", - ["type"] = "enchant", + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["55847"] = { - ["specialCaseData"] = { + ["2594634307"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55847", - ["text"] = "Allocates Ice Walls", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - }, - ["5594"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5594", - ["text"] = "Allocates Decrepifying Curse", - ["type"] = "enchant", + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", }, }, - ["56016"] = { + ["2610562860"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56016", - ["text"] = "Allocates Passthrough Rounds", - ["type"] = "enchant", + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", }, }, - ["56063"] = { + ["262946222"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56063", - ["text"] = "Allocates Lingering Horror", - ["type"] = "enchant", + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "explicit", }, }, - ["56112"] = { - ["specialCaseData"] = { + ["2637470878"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56112", - ["text"] = "Allocates Extinguishing Exhalation", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["56237"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56237", - ["text"] = "Allocates Enhancing Attacks", - ["type"] = "enchant", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", }, }, - ["56265"] = { + ["2638756573"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56265", - ["text"] = "Allocates Throatseeker", - ["type"] = "enchant", + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", }, }, - ["56388"] = { + ["2639966148"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56388", - ["text"] = "Allocates Reinforced Rallying", - ["type"] = "enchant", + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", }, }, - ["5642"] = { + ["2653231923"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5642", - ["text"] = "Allocates Behemoth", - ["type"] = "enchant", + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", }, }, - ["56453"] = { - ["specialCaseData"] = { + ["2653955271"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56453", - ["text"] = "Allocates Killer Instinct", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["56488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56488", - ["text"] = "Allocates Glancing Deflection", - ["type"] = "enchant", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", }, }, - ["56493"] = { + ["266564538"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56493", - ["text"] = "Allocates Agile Succession", - ["type"] = "enchant", + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "explicit", }, }, - ["56616"] = { + ["2672805335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", - ["type"] = "enchant", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, }, - ["5663"] = { + ["2675129731"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5663", - ["text"] = "Allocates Endurance", - ["type"] = "enchant", + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", }, }, - ["56714"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56714", - ["text"] = "Allocates Swift Flight", - ["type"] = "enchant", + ["2676834156"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, }, - }, - ["56767"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56767", - ["text"] = "Allocates Electrifying Daze", - ["type"] = "enchant", + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", }, }, - ["56776"] = { + ["2690740379"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56776", - ["text"] = "Allocates Cooked", - ["type"] = "enchant", + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "explicit", }, }, - ["56806"] = { - ["specialCaseData"] = { + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", - ["type"] = "enchant", + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["5686"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5686", - ["text"] = "Allocates Chillproof", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["56860"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["56893"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56893", - ["text"] = "Allocates Thicket Warding", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["56988"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56988", - ["text"] = "Allocates Electric Blood", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["56997"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56997", - ["text"] = "Allocates Heavy Contact", - ["type"] = "enchant", + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["56999"] = { - ["specialCaseData"] = { + ["2696027455"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56999", - ["text"] = "Allocates Locked On", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - }, - ["5703"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5703", - ["text"] = "Allocates Echoing Thunder", - ["type"] = "enchant", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", }, }, - ["57047"] = { + ["2704225257"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57047", - ["text"] = "Allocates Polymathy", - ["type"] = "enchant", + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["57097"] = { + ["2704905000"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57097", - ["text"] = "Allocates Spirit Bonds", - ["type"] = "enchant", + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", }, }, - ["57110"] = { - ["specialCaseData"] = { + ["2709367754"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57110", - ["text"] = "Allocates Infused Flesh", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["57190"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57190", - ["text"] = "Allocates Doomsayer", - ["type"] = "enchant", + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", }, }, - ["57204"] = { + ["2709646369"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57204", - ["text"] = "Allocates Critical Exploit", - ["type"] = "enchant", + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", }, }, - ["5728"] = { + ["2714890129"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5728", - ["text"] = "Allocates Ancient Aegis", - ["type"] = "enchant", + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", + ["type"] = "explicit", }, }, - ["57379"] = { - ["specialCaseData"] = { + ["2720982137"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57379", - ["text"] = "Allocates In Your Face", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["57388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57388", - ["text"] = "Allocates Overwhelming Strike", - ["type"] = "enchant", + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", }, }, - ["57471"] = { + ["2723294374"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57471", - ["text"] = "Allocates Hunker Down", - ["type"] = "enchant", + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["type"] = "explicit", }, }, - ["57617"] = { + ["2726713579"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", - ["type"] = "enchant", + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", }, }, - ["57785"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", - ["type"] = "enchant", + ["274716455"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, }, - }, - ["57805"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57805", - ["text"] = "Allocates Clear Space", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["57921"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57921", - ["text"] = "Allocates Wolf's Howl", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, }, - }, - ["58016"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 59, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58016", - ["text"] = "Allocates All Natural", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 39, + ["min"] = 10, }, - }, - ["5802"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5802", - ["text"] = "Allocates Stand and Deliver", - ["type"] = "enchant", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", }, }, - ["58096"] = { - ["specialCaseData"] = { + ["2748665614"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58096", - ["text"] = "Allocates Lasting Incantations", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["58183"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58183", - ["text"] = "Allocates Blood Tearing", - ["type"] = "enchant", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", }, }, - ["58198"] = { + ["2749595652"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58198", - ["text"] = "Allocates Well of Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "explicit", }, }, - ["58215"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58215", - ["text"] = "Allocates Sanguimantic Rituals", - ["type"] = "enchant", + ["2768835289"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - }, - ["58397"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58397", - ["text"] = "Allocates Proficiency", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - }, - ["58426"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58426", - ["text"] = "Allocates Pocket Sand", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, - }, - ["58714"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", - ["type"] = "enchant", + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", }, }, - ["58817"] = { + ["2768899959"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58817", - ["text"] = "Allocates Artillery Strike", - ["type"] = "enchant", + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", }, }, - ["58939"] = { + ["2770044702"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58939", - ["text"] = "Allocates Dispatch Foes", - ["type"] = "enchant", + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", }, }, - ["59070"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59070", - ["text"] = "Allocates Enduring Archon", - ["type"] = "enchant", + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, }, - }, - ["59208"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59208", - ["text"] = "Allocates Frantic Fighter", - ["type"] = "enchant", + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", }, }, - ["59214"] = { - ["specialCaseData"] = { + ["280731498"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59214", - ["text"] = "Allocates Fated End", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["59303"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59303", - ["text"] = "Allocates Lucky Rabbit Foot", - ["type"] = "enchant", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", }, }, - ["59387"] = { + ["2809428780"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59387", - ["text"] = "Allocates Infusion of Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", }, }, - ["59433"] = { + ["2822644689"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59433", - ["text"] = "Allocates Thirst for Endurance", - ["type"] = "enchant", + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", }, }, - ["59541"] = { - ["specialCaseData"] = { + ["2839066308"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59541", - ["text"] = "Allocates Necrotised Flesh", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["59589"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59589", - ["text"] = "Allocates Heavy Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", }, }, - ["59596"] = { + ["2840989393"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59596", - ["text"] = "Allocates Covering Ward", - ["type"] = "enchant", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "explicit", }, }, - ["59720"] = { - ["specialCaseData"] = { + ["2843214518"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59720", - ["text"] = "Allocates Beastial Skin", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["59938"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59938", - ["text"] = "Allocates Against the Elements", - ["type"] = "enchant", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", }, }, - ["60034"] = { + ["2849546516"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", - ["type"] = "enchant", + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", }, }, - ["60083"] = { - ["specialCaseData"] = { + ["2854751904"] = { + ["1HWeapon"] = { + ["max"] = 37.5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60083", - ["text"] = "Allocates Pin and Run", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, }, - }, - ["60138"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60138", - ["text"] = "Allocates Stylebender", - ["type"] = "enchant", + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", }, }, - ["60269"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60269", - ["text"] = "Allocates Roil", - ["type"] = "enchant", + ["2866361420"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, }, - }, - ["60273"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60273", - ["text"] = "Allocates Hindering Obstacles", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["60404"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60404", - ["text"] = "Allocates Perfect Opportunity", - ["type"] = "enchant", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", }, }, - ["60464"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", - ["type"] = "enchant", + ["2881298780"] = { + ["Belt"] = { + ["max"] = 185.5, + ["min"] = 2, }, - }, - ["60619"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60619", - ["text"] = "Allocates Scales of the Wyvern", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 185.5, + ["min"] = 2, }, - }, - ["60692"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60692", - ["text"] = "Allocates Echoing Flames", - ["type"] = "enchant", + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", }, }, - ["60764"] = { + ["288364275"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60764", - ["text"] = "Allocates Feathered Fletching", - ["type"] = "enchant", + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["60992"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60992", - ["text"] = "Allocates Nurturing Guardian", - ["type"] = "enchant", + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, }, - }, - ["61026"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61026", - ["text"] = "Allocates Crystalline Flesh", - ["type"] = "enchant", + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, }, - }, - ["61104"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61104", - ["text"] = "Allocates Staggering Wounds", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["61112"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, }, - }, - ["6133"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6133", - ["text"] = "Allocates Core of the Guardian", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, }, - }, - ["61338"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61338", - ["text"] = "Allocates Breath of Lightning", - ["type"] = "enchant", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", }, }, - ["61354"] = { - ["specialCaseData"] = { + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61354", - ["text"] = "Allocates Infernal Limit", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 5, }, - }, - ["61404"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61404", - ["text"] = "Allocates Equilibrium", - ["type"] = "enchant", + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", }, }, - ["61444"] = { + ["2897413282"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61444", - ["text"] = "Allocates Wasting Casts", - ["type"] = "enchant", + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["61493"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61493", - ["text"] = "Allocates Austerity Measures", - ["type"] = "enchant", + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, }, - }, - ["61601"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61601", - ["text"] = "Allocates True Strike", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, }, - }, - ["61703"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61703", - ["text"] = "Allocates Sharpened Claw", - ["type"] = "enchant", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["61741"] = { + ["2907381231"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61741", - ["text"] = "Allocates Lasting Toxins", - ["type"] = "enchant", + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", }, }, - ["6178"] = { + ["2912416697"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", - ["type"] = "enchant", + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", }, }, - ["61921"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", - ["type"] = "enchant", + ["2923486259"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["62034"] = { - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62034", - ["text"] = "Allocates Prism Guard", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["62185"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62185", - ["text"] = "Allocates Rattled", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["62230"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62230", - ["text"] = "Allocates Patient Barrier", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["6229"] = { - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 27, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6229", - ["text"] = "Allocates Push the Advantage", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["62310"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62310", - ["text"] = "Allocates Incendiary", - ["type"] = "enchant", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["62455"] = { - ["specialCaseData"] = { + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62455", - ["text"] = "Allocates Bannerman", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - }, - ["62609"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62609", - ["text"] = "Allocates Ancestral Unity", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["62803"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62803", - ["text"] = "Allocates Woodland Aspect", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, }, - }, - ["62887"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62887", - ["text"] = "Allocates Living Death", - ["type"] = "enchant", + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", }, }, - ["62963"] = { + ["2942439603"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62963", - ["text"] = "Allocates Flamewalker", - ["type"] = "enchant", + ["id"] = "explicit.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "explicit", }, }, - ["63031"] = { + ["2951965588"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63031", - ["text"] = "Allocates Glorious Anticipation", - ["type"] = "enchant", + ["id"] = "explicit.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "explicit", }, }, - ["63037"] = { + ["2954360902"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63037", - ["text"] = "Allocates Sigil of Fire", - ["type"] = "enchant", + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["6304"] = { - ["specialCaseData"] = { + ["2957407601"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["63074"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63074", - ["text"] = "Allocates Dark Entries", - ["type"] = "enchant", + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", }, }, - ["63255"] = { - ["specialCaseData"] = { + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63255", - ["text"] = "Allocates Savagery", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - }, - ["63400"] = { - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63400", - ["text"] = "Allocates Chakra of Elements", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["63431"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63431", - ["text"] = "Allocates Leeching Toxins", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, }, - }, - ["63451"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63451", - ["text"] = "Allocates Cranial Impact", - ["type"] = "enchant", + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", }, }, - ["63541"] = { + ["2969557004"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63541", - ["text"] = "Allocates Brush Off", - ["type"] = "enchant", + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", }, }, - ["63579"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63579", - ["text"] = "Allocates Momentum", - ["type"] = "enchant", + ["2970621759"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 26, }, - }, - ["63585"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63585", - ["text"] = "Allocates Thunderstruck", - ["type"] = "enchant", + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["63739"] = { - ["specialCaseData"] = { + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63739", - ["text"] = "Allocates Vigorous Remnants", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 30, }, - }, - ["63759"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63759", - ["text"] = "Allocates Stacking Toxins", - ["type"] = "enchant", + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["63830"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63830", - ["text"] = "Allocates Marked for Sickness", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - }, - ["63981"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 238, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63981", - ["text"] = "Allocates Deft Recovery", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 119, + ["min"] = 15, }, - }, - ["64050"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", - ["type"] = "enchant", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", }, }, - ["64119"] = { + ["2976476845"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64119", - ["text"] = "Allocates Rapid Reload", - ["type"] = "enchant", + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", }, }, - ["64240"] = { - ["specialCaseData"] = { + ["3003542304"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64240", - ["text"] = "Allocates Battle Fever", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["64415"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64415", - ["text"] = "Allocates Shattering Daze", - ["type"] = "enchant", + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", }, }, - ["64443"] = { - ["specialCaseData"] = { + ["300723956"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64443", - ["text"] = "Allocates Impact Force", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["64525"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64525", - ["text"] = "Allocates Easy Target", - ["type"] = "enchant", + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", }, }, - ["64543"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64543", - ["text"] = "Allocates Unbound Forces", - ["type"] = "enchant", + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, }, - }, - ["64650"] = { - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64650", - ["text"] = "Allocates Wary Dodging", - ["type"] = "enchant", + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["64659"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64659", - ["text"] = "Allocates Lasting Boons", - ["type"] = "enchant", + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["64851"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|64851", - ["text"] = "Allocates Flashy Parrying", - ["type"] = "enchant", + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["65016"] = { - ["specialCaseData"] = { + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65016", - ["text"] = "Allocates Intense Flames", - ["type"] = "enchant", + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["65023"] = { - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65023", - ["text"] = "Allocates Impenetrable Shell", - ["type"] = "enchant", + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["6514"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6514", - ["text"] = "Allocates Cacophony", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["65160"] = { - ["specialCaseData"] = { + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65160", - ["text"] = "Allocates Titanic", - ["type"] = "enchant", + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["65193"] = { - ["specialCaseData"] = { + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65193", - ["text"] = "Allocates Viciousness", - ["type"] = "enchant", + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, - }, - ["65204"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", - ["type"] = "enchant", + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", }, }, - ["65243"] = { - ["specialCaseData"] = { + ["3028809864"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65243", - ["text"] = "Allocates Enveloping Presence", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["65256"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["65265"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65265", - ["text"] = "Allocates Swift Interruption", - ["type"] = "enchant", + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 25.5, + ["min"] = 2, }, - }, - ["6544"] = { - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6544", - ["text"] = "Allocates Burning Strikes", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 2, }, - }, - ["65468"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65468", - ["text"] = "Allocates Repeating Explosives", - ["type"] = "enchant", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", }, }, - ["6655"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6655", - ["text"] = "Allocates Aggravation", - ["type"] = "enchant", + ["3033371881"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, }, - }, - ["7062"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7062", - ["text"] = "Allocates Reusable Ammunition", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, }, - }, - ["7128"] = { - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7128", - ["text"] = "Allocates Dangerous Blossom", - ["type"] = "enchant", + ["Shield"] = { + ["max"] = 26, + ["min"] = 8, }, - }, - ["7163"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", - ["type"] = "enchant", + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", }, }, - ["7275"] = { - ["specialCaseData"] = { + ["3035140377"] = { + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7275", - ["text"] = "Allocates Electrocuting Exposure", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 3, + ["min"] = 3, }, - }, - ["7302"] = { - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7302", - ["text"] = "Allocates Echoing Pulse", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["7338"] = { - ["specialCaseData"] = { + ["One Hand Axe"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7338", - ["text"] = "Allocates Abasement", - ["type"] = "enchant", + ["One Hand Mace"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["7341"] = { - ["specialCaseData"] = { + ["One Hand Sword"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7341", - ["text"] = "Allocates Ignore Pain", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 3, + ["min"] = 3, }, - }, - ["7395"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7395", - ["text"] = "Allocates Retaliation", - ["type"] = "enchant", + ["Talisman"] = { + ["max"] = 3, + ["min"] = 3, }, - }, - ["7449"] = { - ["specialCaseData"] = { + ["Two Hand Axe"] = { + ["max"] = 3, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7449", - ["text"] = "Allocates Splinters", - ["type"] = "enchant", + ["Two Hand Mace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Two Hand Sword"] = { + ["max"] = 3, + ["min"] = 3, }, - }, - ["750"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|750", - ["text"] = "Allocates Tribal Fury", - ["type"] = "enchant", + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["7542"] = { + ["3037553757"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7542", - ["text"] = "Allocates Encompassing Domain", - ["type"] = "enchant", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", }, }, - ["7604"] = { + ["30438393"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7604", - ["text"] = "Allocates Rapid Strike", - ["type"] = "enchant", + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", }, }, - ["7651"] = { - ["specialCaseData"] = { + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7651", - ["text"] = "Allocates Pierce the Heart", - ["type"] = "enchant", + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, }, - }, - ["7668"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7668", - ["text"] = "Allocates Internal Bleeding", - ["type"] = "enchant", + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", }, }, - ["7777"] = { + ["30642521"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7777", - ["text"] = "Allocates Breaking Point", - ["type"] = "enchant", + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", }, }, - ["7782"] = { + ["3065378291"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7782", - ["text"] = "Allocates Rupturing Pins", - ["type"] = "enchant", + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", }, }, - ["7809"] = { - ["specialCaseData"] = { + ["3067892458"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - }, - ["7847"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7847", - ["text"] = "Allocates The Fabled Stag", - ["type"] = "enchant", + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", }, }, - ["8273"] = { + ["3088348485"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8273", - ["text"] = "Allocates Endless Circuit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", }, }, - ["8397"] = { - ["specialCaseData"] = { + ["3091578504"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8397", - ["text"] = "Allocates Empowering Remains", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["8483"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8483", - ["text"] = "Allocates Ruin", - ["type"] = "enchant", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", }, }, - ["8531"] = { + ["310246444"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8531", - ["text"] = "Allocates Leaping Ambush", - ["type"] = "enchant", + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", }, }, - ["8554"] = { + ["3106718406"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8554", - ["text"] = "Allocates Burning Nature", - ["type"] = "enchant", + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", }, }, - ["8607"] = { + ["3107707789"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8607", - ["text"] = "Allocates Lavianga's Brew", - ["type"] = "enchant", + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "explicit", }, }, - ["8660"] = { + ["3113764475"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8660", - ["text"] = "Allocates Reverberation", - ["type"] = "enchant", + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", }, }, - ["8782"] = { - ["specialCaseData"] = { + ["3119612865"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8782", - ["text"] = "Allocates Empowering Infusions", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - }, - ["8791"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8791", - ["text"] = "Allocates Sturdy Ally", - ["type"] = "enchant", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", }, }, - ["8810"] = { + ["3120508478"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8810", - ["text"] = "Allocates Multitasking", - ["type"] = "enchant", + ["id"] = "explicit.stat_3120508478", + ["text"] = "#% increased Damage against Immobilised Enemies", + ["type"] = "explicit", }, }, - ["8827"] = { - ["specialCaseData"] = { + ["3141070085"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8827", - ["text"] = "Allocates Fast Metabolism", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["8831"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", - ["type"] = "enchant", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", }, }, - ["8881"] = { + ["3143918757"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8881", - ["text"] = "Allocates Unforgiving", - ["type"] = "enchant", + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", }, }, - ["8896"] = { - ["specialCaseData"] = { + ["3146310524"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8896", - ["text"] = "Allocates Agile Sprinter", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["8904"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8904", - ["text"] = "Allocates Death from Afar", - ["type"] = "enchant", + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", }, }, - ["8916"] = { + ["315791320"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8916", - ["text"] = "Allocates Bashing Beast", - ["type"] = "enchant", + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, }, - ["8957"] = { - ["specialCaseData"] = { + ["3166958180"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8957", - ["text"] = "Allocates Right Hand of Darkness", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["9009"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9009", - ["text"] = "Allocates Return to Nature", - ["type"] = "enchant", + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", }, }, - ["9020"] = { + ["3169585282"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9020", - ["text"] = "Allocates Giantslayer", - ["type"] = "enchant", + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["9187"] = { + ["3171212276"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9187", - ["text"] = "Allocates Escalation", - ["type"] = "enchant", + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", }, }, - ["9226"] = { + ["3173882956"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", }, }, - ["9227"] = { - ["specialCaseData"] = { + ["3174700878"] = { + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9227", - ["text"] = "Allocates Focused Thrust", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 50, + ["min"] = 30, }, - }, - ["9290"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", - ["type"] = "enchant", + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", }, }, - ["9323"] = { + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9323", - ["text"] = "Allocates Craving Slaughter", - ["type"] = "enchant", + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", }, }, - ["9328"] = { - ["specialCaseData"] = { + ["318092306"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9328", - ["text"] = "Allocates Spirit of the Bear", - ["type"] = "enchant", + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["934"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|934", - ["text"] = "Allocates Natural Immunity", - ["type"] = "enchant", + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", }, }, - ["94"] = { - ["specialCaseData"] = { + ["318953428"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|94", - ["text"] = "Allocates Efficient Killing", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["9421"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9421", - ["text"] = "Allocates Snowpiercer", - ["type"] = "enchant", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", }, }, - ["9444"] = { + ["3191479793"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9444", - ["text"] = "Allocates One with the Storm", - ["type"] = "enchant", + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "explicit", }, }, - ["9472"] = { - ["specialCaseData"] = { + ["3192728503"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9472", - ["text"] = "Allocates Catapult", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["9604"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9604", - ["text"] = "Allocates Thirst of Kitava", - ["type"] = "enchant", + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", }, }, - ["9652"] = { + ["3196823591"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9652", - ["text"] = "Allocates Mending Deflection", - ["type"] = "enchant", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", }, }, - ["9736"] = { + ["3222402650"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9736", - ["text"] = "Allocates Insulated Treads", - ["type"] = "enchant", + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", }, }, - ["9896"] = { + ["3225608889"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9896", - ["text"] = "Allocates Heartstopping Presence", - ["type"] = "enchant", + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, }, - ["9908"] = { + ["3233599707"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9908", - ["text"] = "Allocates Price of Freedom", - ["type"] = "enchant", + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", }, }, - ["9928"] = { + ["323800555"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9928", - ["text"] = "Allocates Embracing Frost", - ["type"] = "enchant", + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "explicit", }, }, - ["9968"] = { + ["3243034867"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9968", - ["text"] = "Allocates Feel the Earth", - ["type"] = "enchant", + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, }, - }, - ["Corrupted"] = { - ["1004011302"] = { + ["3249412463"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", + ["id"] = "explicit.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "explicit", }, }, - ["1011760251"] = { - ["Boots"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["325171970"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["101878827"] = { + ["3256879910"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", }, }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, + ["3261801346"] = { ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["max"] = 33, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["max"] = 33, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["max"] = 33, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1050105434"] = { - ["Focus"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 20, + ["3276224428"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 25, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, ["min"] = 15, }, - ["Chest"] = { - ["max"] = 25, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 25, + ["Flail"] = { + ["max"] = 20, ["min"] = 15, }, - ["Helmet"] = { - ["max"] = 25, + ["One Hand Axe"] = { + ["max"] = 20, ["min"] = 15, }, - ["Shield"] = { - ["max"] = 25, + ["One Hand Mace"] = { + ["max"] = 20, ["min"] = 15, }, - ["specialCaseData"] = { + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["1102738251"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "enchant", - }, - }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "enchant", + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", }, }, - ["1315743832"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { + ["3283482523"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["1316278494"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", }, }, - ["1368271171"] = { + ["328541901"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 33, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 33, + ["min"] = 5, }, - ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["1436284579"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, }, - }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3291658075"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 119, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 238, + ["min"] = 50, }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 15, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 15, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 15, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", }, }, - ["1515657623"] = { - ["Belt"] = { - ["max"] = 1, + ["3292710273"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1519615863"] = { - ["1HMace"] = { - ["max"] = 15, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 149, ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 15, + ["Belt"] = { + ["max"] = 174, ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 15, + ["Boots"] = { + ["max"] = 149, ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["Chest"] = { + ["max"] = 214, + ["min"] = 7, }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 10, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 7, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 174, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1545858329"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["3301100256"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1600707273"] = { - ["1HWeapon"] = { - ["max"] = 1, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 33, ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 1, + ["Belt"] = { + ["max"] = 29, ["min"] = 1, }, - ["Staff"] = { - ["max"] = 1, + ["Boots"] = { + ["max"] = 23, ["min"] = 1, }, - ["Wand"] = { - ["max"] = 1, + ["Chest"] = { + ["max"] = 36, ["min"] = 1, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 23, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "enchant", + ["Ring"] = { + ["max"] = 18, + ["min"] = 1, }, - ["usePositiveSign"] = true, - }, - ["1658498488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "enchant", + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", }, }, - ["1671376347"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["3336230913"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1725749947"] = { + ["3336890334"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 123, + ["min"] = 2.5, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 123, + ["min"] = 2.5, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 188.5, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 188.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 123, + ["min"] = 2.5, }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 188.5, + ["min"] = 4, }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1725749947", - ["text"] = "Grants # Rage on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", }, }, - ["1776411443"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["335885735"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", }, }, - ["1782086450"] = { - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, + ["3362812763"] = { + ["Boots"] = { + ["max"] = 43, + ["min"] = 14, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 43, + ["min"] = 14, }, - }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 43, + ["min"] = 14, }, - ["Sceptre"] = { - ["max"] = 30, - ["min"] = 20, + ["Shield"] = { + ["max"] = 50, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["185580205"] = { + ["3372524247"] = { ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["max"] = 45, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charges per Second", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["1978899297"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "enchant", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1998951374"] = { - ["1HWeapon"] = { + ["3374165039"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["3377888098"] = { + ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["Sceptre"] = { + ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", }, }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["3384867265"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["3386297724"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", }, + }, + ["3391917254"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, + ["3393628375"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, + ["usePositiveSign"] = true, + }, + ["3394832998"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["3395186672"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["3398301358"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, + }, + ["3398787959"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "enchant", + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", }, }, - ["2106365538"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3399401168"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2122183138"] = { - ["Shield"] = { + ["3401186585"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "enchant", + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", }, }, - ["2154246560"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["3407849389"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "explicit", }, + }, + ["3409275777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", }, }, - ["2162097452"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["3417711605"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2200293569"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, - }, + ["3419203492"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", - ["type"] = "enchant", + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", }, }, - ["2223678961"] = { - ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["3422093970"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, + }, + ["3429148113"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["3465022881"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["usePositiveSign"] = true, + }, + ["3471443885"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3471443885", + ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["3473929743"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", }, }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["3482326075"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "explicit", }, }, - ["2254480358"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["3484657501"] = { + ["Boots"] = { + ["max"] = 190, + ["min"] = 9, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 310, + ["min"] = 3, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 190, + ["min"] = 9, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 221, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 277, + ["min"] = 9, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["227523295"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["3485067555"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2301191210"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 89, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2321178454"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["3513818125"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "enchant", + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", }, }, - ["2353576063"] = { + ["3518449420"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "enchant", + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "explicit", }, }, - ["2451402625"] = { + ["3523867985"] = { ["Boots"] = { - ["max"] = 25, + ["max"] = 110, ["min"] = 15, }, ["Chest"] = { - ["max"] = 25, + ["max"] = 110, ["min"] = 15, }, ["Gloves"] = { - ["max"] = 25, + ["max"] = 110, ["min"] = 15, }, ["Helmet"] = { - ["max"] = 25, + ["max"] = 110, ["min"] = 15, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", }, + }, + ["3526763442"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "enchant", + ["id"] = "explicit.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "explicit", }, }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 15, + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "enchant", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", }, }, - ["2482852589"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3552135623"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2557965901"] = { + ["3556824919"] = { ["Amulet"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 39, + ["min"] = 10, }, - ["specialCaseData"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["2653955271"] = { ["Gloves"] = { - ["max"] = 15, + ["max"] = 34, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, + ["3579898587"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = 10, + }, + ["3585532255"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["2HWeapon"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Bow"] = { - ["max"] = 10, + ["Belt"] = { + ["max"] = 40, ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 5, + }, + ["3587953142"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 5, + }, + ["3590792340"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2763429652"] = { - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 15, + ["3596695232"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 15, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["280731498"] = { + ["3621874554"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "enchant", + ["id"] = "explicit.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "explicit", }, }, - ["2866361420"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3624940721"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["type"] = "explicit", }, }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["3628935286"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", }, }, - ["289128254"] = { + ["3639275092"] = { + ["1HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = -15, + ["min"] = -35, }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, + ["2HMace"] = { + ["max"] = -15, + ["min"] = -35, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = -15, + ["min"] = -35, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "enchant", + ["Boots"] = { + ["max"] = -15, + ["min"] = -35, }, - }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, + ["Bow"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 5, + ["Chest"] = { + ["max"] = -15, + ["min"] = -35, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = -15, + ["min"] = -35, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = -15, + ["min"] = -35, }, - ["usePositiveSign"] = true, - }, - ["2923486259"] = { - ["Chest"] = { - ["max"] = 19, - ["min"] = 13, + ["Focus"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 13, + ["Gloves"] = { + ["max"] = -15, + ["min"] = -35, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = -15, + ["min"] = -35, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, }, - ["usePositiveSign"] = true, - }, - ["293638271"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Shield"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Spear"] = { + ["max"] = -15, + ["min"] = -35, }, ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = -15, + ["min"] = -35, + }, + ["Talisman"] = { + ["max"] = -15, + ["min"] = -35, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = -15, + ["min"] = -35, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "enchant", + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", }, }, - ["2968503605"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["3641543553"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "enchant", + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", }, }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, + ["3655769732"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 40, + ["usePositiveSign"] = true, + }, + ["3665922113"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", }, + }, + ["3666476747"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", }, }, - ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["3668351662"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", }, }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["3669820740"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "enchant", + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["3233599707"] = { + ["3676141501"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3679418014"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 30, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["3336890334"] = { + ["3695891184"] = { ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 84, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 84, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, + ["max"] = 84, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, + ["max"] = 84, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 84, + ["min"] = 4, }, ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, + ["max"] = 84, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, }, ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, + ["max"] = 84, + ["min"] = 4, }, - ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 84, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, }, - }, - ["3372524247"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["Talisman"] = { + ["max"] = 84, + ["min"] = 4, }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3377888098"] = { + ["3700202631"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "enchant", + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", }, }, - ["3398787959"] = { + ["3714003708"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", }, }, - ["3417711605"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", }, }, - ["3429557654"] = { + ["3742865955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", - ["type"] = "enchant", + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "explicit", }, }, - ["3556824919"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, + ["3749502527"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", }, + }, + ["3752589831"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", }, }, - ["3639275092"] = { - ["1HMace"] = { - ["max"] = -10, - ["min"] = -20, + ["3759663284"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, }, - ["1HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, }, - ["2HMace"] = { - ["max"] = -10, - ["min"] = -20, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Bow"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Chest"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Crossbow"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Flail"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Focus"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = -10, - ["min"] = -20, + }, + ["3759735052"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = -10, - ["min"] = -20, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Quarterstaff"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", }, + }, + ["3771516363"] = { ["Shield"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Spear"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Staff"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Talisman"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Wand"] = { - ["max"] = -10, - ["min"] = -20, + ["max"] = 8, + ["min"] = 4, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "enchant", + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", }, }, - ["3650992555"] = { + ["3774951878"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", - ["type"] = "enchant", + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, }, - ["3676141501"] = { - ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, + ["3780644166"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3695891184"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Staff"] = { + ["3787460122"] = { + ["AnyJewel"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, - ["Wand"] = { + ["BaseJewel"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", }, }, - ["3771516363"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["378796798"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "enchant", + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", }, }, - ["3780644166"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["378817135"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "enchant", + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, + ["3791899485"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["3811191316"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "enchant", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["3885405204"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["3814876985"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["type"] = "explicit", }, + }, + ["3821543413"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "enchant", + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", }, }, - ["3885634897"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["3824372849"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", }, + }, + ["3835551335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "enchant", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", }, }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["3837707023"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "enchant", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3981240776"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["3850614073"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["Sceptre"] = { + ["max"] = 18, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["3851254963"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Sceptre"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "enchant", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", }, }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", }, }, - ["4078695"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["3856744003"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["3858398337"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4081947835"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["3858572996"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "enchant", + ["id"] = "explicit.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "explicit", }, }, - ["4095671657"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["3859848445"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4220027924"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["3865605585"] = { + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", }, + }, + ["3868118796"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4226189338"] = { + ["387439868"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 100, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 139, + ["min"] = 19, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4236566306"] = { + ["3885405204"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "enchant", + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", }, }, - ["4283407333"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["388617051"] = { + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["44972811"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["3891355829"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "explicit", }, }, - ["472520716"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["391602279"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", }, }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 6, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Boots"] = { + ["max"] = 18, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", }, }, - ["480796730"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["3936121440"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["548198834"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["394473632"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "enchant", + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", }, }, - ["591105508"] = { + ["3962278098"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 119, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 238, + ["min"] = 50, }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["680068163"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["3973629633"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "enchant", + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", }, }, - ["707457662"] = { + ["3981240776"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 50, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 61, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, + ["3984146263"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 12, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 12, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 12, + }, + ["4009879772"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", }, }, - ["721014846"] = { + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "enchant", + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", }, }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["4015621042"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["Focus"] = { + ["max"] = 100, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, }, - }, - ["762600725"] = { ["Shield"] = { - ["max"] = 25, - ["min"] = 20, + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "enchant", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", }, }, - ["789117908"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { + ["4019237939"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["791928121"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 33, + ["min"] = 25, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["803737631"] = { - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["818778753"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["4032352472"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", }, }, - ["836936635"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "enchant", + ["4045894391"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - }, - ["9187492"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["924253255"] = { + ["4052037485"] = { ["Boots"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", - }, - }, - ["970213192"] = { - ["Quiver"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 60, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, + ["Chest"] = { + ["max"] = 96, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 90, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 60, + ["min"] = 5, }, - }, - }, - ["Enchant"] = { - }, - ["Explicit"] = { - ["1002362373"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["Helmet"] = { + ["max"] = 73, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["Shield"] = { + ["max"] = 42, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1004011302"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["4067062424"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, - ["specialCaseData"] = { + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, - }, - ["1007380041"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, }, - ["1011760251"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["usePositiveSign"] = true, - }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, }, - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["1022759479"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, }, - ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, }, - ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Bow"] = { - ["max"] = 102, - ["min"] = 2, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 102, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 156.5, + ["usePositiveSign"] = true, + }, + ["4081947835"] = { + ["AnyJewel"] = { + ["max"] = 5, ["min"] = 3, }, - ["Spear"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 156.5, + ["BaseJewel"] = { + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, }, - ["1039268420"] = { + ["4089835882"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, }, - ["1050105434"] = { - ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, + ["4092130601"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", }, - ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, + }, + ["4095671657"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Focus"] = { - ["max"] = 164, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 6, + ["usePositiveSign"] = true, + }, + ["4097212302"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 179, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "explicit", }, - ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, + ["usePositiveSign"] = true, + }, + ["4101445926"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 18, }, ["Staff"] = { - ["max"] = 328, - ["min"] = 20, + ["max"] = 32, + ["min"] = 28, }, ["Wand"] = { - ["max"] = 164, - ["min"] = 10, + ["max"] = 20, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1060572482"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["412709880"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + ["4129825612"] = { + ["Body Armour"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, }, - ["1062710370"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { + ["4139681126"] = { + ["Amulet"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, }, - ["1087108135"] = { + ["4142814612"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["1087531620"] = { + ["4147510958"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1104825894"] = { + ["4147897060"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["111835965"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "explicit", }, }, - ["1120862500"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, - }, - ["specialCaseData"] = { + ["4159248054"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1129429646"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1135928777"] = { + ["416040624"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["1137305356"] = { + ["4162678661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["1145481685"] = { + ["4173554949"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "explicit", }, }, - ["1160637284"] = { + ["4180952808"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["1165163804"] = { + ["4188894176"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, }, - ["1166140625"] = { + ["4215035940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, }, - ["1181419800"] = { - ["AnyJewel"] = { - ["max"] = 16, + ["4220027924"] = { + ["Amulet"] = { + ["max"] = 45, ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 16, + ["Belt"] = { + ["max"] = 45, ["min"] = 6, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["1181501418"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, - ["usePositiveSign"] = true, - }, - ["1185341308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1200678966"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["4225700219"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, }, - ["1202301673"] = { + ["4226189338"] = { ["1HWeapon"] = { ["max"] = 5, ["min"] = 1, @@ -10185,329 +9742,262 @@ return { ["max"] = 7, ["min"] = 1, }, - ["Amulet"] = { - ["max"] = 3, + ["Staff"] = { + ["max"] = 7, ["min"] = 1, }, - ["Bow"] = { + ["Wand"] = { ["max"] = 5, ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 7, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, + ["usePositiveSign"] = true, + }, + ["4234573345"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1238227257"] = { + ["4236566306"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["124131830"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, + ["4246007234"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "explicit", }, - ["Focus"] = { - ["max"] = 2, + }, + ["4258000627"] = { + ["AnyJewel"] = { + ["max"] = 1, ["min"] = 1, }, - ["Staff"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 4, + ["RadiusJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1241625305"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["4258524206"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "explicit", }, }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["4258720395"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, - ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["4259875040"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "explicit", }, }, - ["1261982764"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["4273473110"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", + ["id"] = "explicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", ["type"] = "explicit", }, }, - ["1263695895"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, + ["427684353"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["1266413530"] = { + ["429143663"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["127081978"] = { + ["434750362"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", ["type"] = "explicit", }, }, - ["1285594161"] = { + ["440490623"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["1301765461"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["442393998"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1303248024"] = { + ["44972811"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, }, - ["1309799717"] = { + ["455816363"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, }, - ["1310194496"] = { + ["458438597"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["1315743832"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["462424929"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, + ["472520716"] = { + ["Amulet"] = { + ["max"] = 24, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, }, - ["1316278494"] = { + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -10516,466 +10006,340 @@ return { ["max"] = 20, ["min"] = 10, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, }, - }, - ["1320662475"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, }, - ["1321104829"] = { + ["473917671"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, }, - ["1323216174"] = { + ["484792219"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, }, - ["1337740333"] = { - ["specialCaseData"] = { + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["1352561456"] = { + ["504915064"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["1366840608"] = { + ["517664839"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["1368271171"] = { + ["518292764"] = { ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Bow"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1.01, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 2, + ["51994685"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["138421180"] = { + ["525523040"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, }, - ["1389153006"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { + ["53045048"] = { + ["Boots"] = { + ["max"] = 176, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 300, + ["min"] = 2, }, - }, - ["1389754388"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Gloves"] = { + ["max"] = 176, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Helmet"] = { + ["max"] = 207, + ["min"] = 6, }, - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, + ["Shield"] = { + ["max"] = 261, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["139889694"] = { + ["533892981"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["1405298142"] = { + ["538241406"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 7, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["1412217137"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["541021467"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "explicit.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "explicit", }, }, - ["1417267954"] = { + ["54812069"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "explicit", }, }, - ["1423639565"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["554145967"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1426522529"] = { + ["555706343"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "explicit", }, }, - ["1432756708"] = { + ["55876295"] = { + ["1HMace"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, }, - ["1444556985"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, + ["565784293"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, }, - ["145497481"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_145497481", - ["text"] = "#% increased Defences from Equipped Shield", - ["type"] = "explicit", + ["587431675"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 10, }, - }, - ["1459321413"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["147764878"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", - }, - }, - ["1494950893"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1495814176"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["1505023559"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["1514844108"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["1526933524"] = { - ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 34, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["153777645"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["589361270"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "explicit.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "explicit", }, }, - ["1545858329"] = { + ["591105508"] = { ["1HWeapon"] = { ["max"] = 5, ["min"] = 1, @@ -10995,65 +10359,74 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1552666713"] = { + ["593241812"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["1569101201"] = { + ["61644361"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, + ["624954515"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["1569159338"] = { + ["627767961"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["1570501432"] = { + ["62849030"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", ["type"] = "explicit", }, }, - ["1570770415"] = { + ["644456512"] = { ["Belt"] = { ["max"] = 25, ["min"] = 8, @@ -11061,368 +10434,404 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, }, - ["1573130764"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, + ["648019518"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, }, - ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, - }, + ["654207792"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, }, - ["1585769763"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { + ["656461285"] = { + ["Amulet"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, }, - ["1589917703"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 8.9, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 8.9, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, }, - ["1590846356"] = { + ["674553446"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, }, - ["1594812856"] = { + ["680068163"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, }, - ["1600707273"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["681332047"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 16, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "explicit", + ["Quiver"] = { + ["max"] = 16, + ["min"] = 5, }, - ["usePositiveSign"] = true, - }, - ["1602294220"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["1604736568"] = { + ["686254215"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, }, - ["1653682082"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["691932474"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 10, }, - }, - ["1671376347"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 10, }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, + ["2HMace"] = { + ["max"] = 550, + ["min"] = 10, }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, + ["2HWeapon"] = { + ["max"] = 650, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, + ["Bow"] = { + ["max"] = 650, + ["min"] = 10, }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, + ["Flail"] = { + ["max"] = 550, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, + ["Spear"] = { + ["max"] = 550, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1692879867"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, + ["693237939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["1697447343"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["700317374"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = -50, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["ManaFlask"] = { + ["max"] = 80, + ["min"] = -50, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, }, - ["1697951953"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["707457662"] = { + ["Gloves"] = { + ["max"] = 8.9, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, }, - ["169946467"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 196, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["2HWeapon"] = { + ["max"] = 196, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, }, - ["1714971114"] = { + ["712554801"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["1718147982"] = { + ["715957346"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["173226756"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, + ["73032170"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "explicit", }, }, - ["1742651309"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 26, + ["734614379"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, }, - ["1754445556"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["736967255"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["max"] = 30, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, - }, - ["1756380435"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["1772247089"] = { + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 40, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -11431,24 +10840,81 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 73, + ["min"] = 27, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, }, - ["1773308808"] = { + ["748522257"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 11, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, }, - ["1776411443"] = { + ["758893621"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["770672621"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -11457,140 +10923,188 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["1777421941"] = { - ["specialCaseData"] = { + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 69, + ["min"] = 10, }, - }, - ["1782086450"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 69, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 55, - ["min"] = 26, + ["Ring"] = { + ["max"] = 69, + ["min"] = 8, }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, }, - ["179541474"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - ["type"] = "explicit", + ["791928121"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, }, - }, - ["1798257884"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 80, + ["min"] = 21, }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, }, - ["1800303440"] = { + ["793875384"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, }, - ["1805182458"] = { + ["795138349"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["1811130680"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["797289402"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", + ["id"] = "explicit.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "explicit", }, }, - ["1829102168"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["803737631"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Ring"] = { + ["max"] = 450, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1834658952"] = { + ["809229260"] = { + ["Belt"] = { + ["max"] = 351, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1836676211"] = { + ["818778753"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -11599,19 +11113,64 @@ return { ["max"] = 10, ["min"] = 5, }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["821021828"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, }, - ["1839076647"] = { + ["821241191"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -11623,10511 +11182,1988 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, }, - ["1846980580"] = { + ["821948283"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, }, - ["1852184471"] = { + ["825116955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "explicit", }, }, - ["1852872083"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["828533480"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, }, - ["1854213750"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["830161081"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", ["type"] = "explicit", }, }, - ["1869147066"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["830345042"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, }, - ["1873752457"] = { + ["844449513"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, }, - ["1874553720"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, + ["849987426"] = { + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, }, - ["1881230714"] = { - ["Bow"] = { - ["max"] = 25, - ["min"] = 20, + ["868556494"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Two Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", }, - ["Two Hand Mace"] = { + }, + ["872504239"] = { + ["AnyJewel"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, - ["Two Hand Sword"] = { + ["BaseJewel"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, }, - ["1892122971"] = { + ["886931978"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, }, - ["1896066427"] = { + ["915769802"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1911237468"] = { + ["918325986"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, }, - ["1940865751"] = { + ["9187492"] = { ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["max"] = 4, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["max"] = 4, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["max"] = 5, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["max"] = 5, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["max"] = 4, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["max"] = 5, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["max"] = 4, + ["min"] = 1, }, ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1944020877"] = { + ["924253255"] = { + ["AnyJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["BaseJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["933355817"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "explicit", }, }, - ["1978899297"] = { - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["942519401"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1994296038"] = { + ["944643028"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["945774314"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["953593695"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + }, + ["959641748"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, }, - ["2011656677"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["971590056"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2023107756"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["980177976"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, }, - ["2056107438"] = { + ["983749596"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Body Armour"] = { + ["max"] = 10, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, }, - ["2066964205"] = { + ["986397080"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, }, - ["2077117738"] = { + ["99927264"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, }, - ["2081918629"] = { + }, + ["Implicit"] = { + ["1050105434"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Items", - ["type"] = "explicit", + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, + ["1137147997"] = { ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 28, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, + }, + ["1207554355"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", }, }, - ["2106365538"] = { + ["1379411836"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, + ["max"] = 7, + ["min"] = 5, }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["21071013"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, + ["1389754388"] = { + ["Belt"] = { + ["max"] = 20, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", }, }, - ["2107703111"] = { + ["1412682799"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", }, }, - ["2108821127"] = { + ["1416292992"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", }, }, - ["2112395885"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", - ["type"] = "explicit", + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", }, }, - ["2118708619"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["2122183138"] = { - ["specialCaseData"] = { + ["1451444093"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2131720304"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", }, }, - ["2144192055"] = { - ["Ring"] = { - ["max"] = 203, - ["min"] = 8, + ["1458343515"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2149603090"] = { - ["specialCaseData"] = { + ["1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", }, }, - ["2160282525"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, + ["1541903247"] = { + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", }, }, - ["2162097452"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", }, - ["Sceptre"] = { + }, + ["1573130764"] = { + ["Quiver"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2174054121"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", - ["type"] = "explicit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", }, }, - ["2194114101"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2202308025"] = { + ["1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", }, }, - ["221701169"] = { + ["1702195217"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2222186378"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { + ["1745952865"] = { + ["Chest"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", }, }, - ["2223678961"] = { + ["1803308202"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", }, }, - ["2231156303"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1810482573"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", }, - ["Ring"] = { + }, + ["1836676211"] = { + ["Belt"] = { ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", }, }, - ["2250533757"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, + ["1856590738"] = { + ["Ring"] = { + ["max"] = 1, ["min"] = 1, }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "implicit", }, }, - ["2254480358"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["1967051901"] = { ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, + ["max"] = 1, ["min"] = 1, }, - ["Wand"] = { - ["max"] = 5, + ["Crossbow"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2256120736"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - ["type"] = "explicit", + ["1978899297"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2272980012"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2301718443"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", }, }, - ["2320654813"] = { + ["2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - ["type"] = "explicit", + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", }, }, - ["2321178454"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["2055966527"] = { ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "explicit", + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", }, }, - ["2334956771"] = { + ["2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", }, }, - ["2339757871"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2222186378"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", }, + }, + ["2250533757"] = { ["Boots"] = { - ["max"] = 45, - ["min"] = 26, + ["max"] = 10, + ["min"] = 5, }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", }, - ["Shield"] = { - ["max"] = 55, - ["min"] = 26, + }, + ["2251279027"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["234296660"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", }, }, - ["2347036682"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, + ["239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", }, }, - ["2353576063"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "explicit", + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2359002191"] = { + ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", }, }, - ["2365392475"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, + ["2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", }, }, - ["2374711847"] = { + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2392824305"] = { + ["2733960806"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - ["type"] = "explicit", + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "implicit", }, }, - ["239367161"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2778646494"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", }, }, - ["2416869319"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, + ["2797971005"] = { + ["Quiver"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", }, }, - ["2421151933"] = { + ["2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2421151933", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - ["type"] = "explicit", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", }, }, - ["2440073079"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, }, - }, - ["2442527254"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, + ["2923486259"] = { ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["max"] = 13, + ["min"] = 7, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + ["max"] = 19, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2456523742"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2933846633"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", }, }, - ["2463230181"] = { + ["2968503605"] = { ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, + ["max"] = 80, + ["min"] = 50, }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 25, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "explicit", + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2466785537"] = { + ["2994271459"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", }, }, - ["2480498143"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["3032590688"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", }, }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, + ["3182714256"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["max"] = 2, + ["min"] = -2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "explicit", + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2482852589"] = { + ["3261801346"] = { ["Amulet"] = { - ["max"] = 50, + ["max"] = 15, ["min"] = 10, }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2487305362"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2503377690"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, + ["3310778564"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", }, }, - ["2505884597"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", }, - ["Dagger"] = { - ["max"] = 20, + }, + ["3362812763"] = { + ["Chest"] = { + ["max"] = 25, ["min"] = 15, }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + ["usePositiveSign"] = true, + }, + ["3372524247"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["usePositiveSign"] = true, + }, + ["3398402065"] = { + ["2HWeapon"] = { + ["max"] = -50, + ["min"] = -50, }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + ["Bow"] = { + ["max"] = -50, + ["min"] = -50, }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Wand"] = { + ["tradeMod"] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + }, + ["3585532255"] = { + ["Belt"] = { ["max"] = 30, - ["min"] = 13, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", }, }, - ["2518900926"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", }, }, - ["2527686725"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["3676540188"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "explicit", + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", }, }, - ["2534359663"] = { + ["3699444296"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", }, }, - ["253641217"] = { + ["3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - ["type"] = "explicit", + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", }, }, - ["2541588185"] = { - ["Charm"] = { - ["max"] = 40, - ["min"] = 16, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", - ["type"] = "explicit", + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", }, }, - ["2557965901"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 5, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["Ring"] = { - ["max"] = 7.9, - ["min"] = 5, + ["max"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", }, }, - ["255840549"] = { + ["3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", }, }, - ["2580617872"] = { + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, - ["2582079000"] = { - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["2594634307"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["4010341289"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", }, }, - ["2610562860"] = { + ["4077843608"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", }, }, - ["2637470878"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { + ["Belt"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2638756573"] = { + ["4126210832"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", }, }, - ["2639966148"] = { + ["4220027924"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", - ["type"] = "explicit", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2653955271"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { + ["458438597"] = { + ["Chest"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", }, }, - ["266564538"] = { + ["462041840"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - ["type"] = "explicit", + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", }, }, - ["2672805335"] = { - ["specialCaseData"] = { + ["548198834"] = { + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 16, + ["min"] = 16, }, - }, - ["2675129731"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", }, }, - ["2676834156"] = { + ["585126960"] = { ["Charm"] = { - ["max"] = 500, - ["min"] = 44, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", }, }, - ["2690740379"] = { + ["624954515"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, + ["644456512"] = { + ["Belt"] = { + ["max"] = 15, ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, + }, + ["680068163"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 10, + }, + ["681332047"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2696027455"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["718638445"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Ring"] = { + ["max"] = 2, + ["min"] = -2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", - ["type"] = "explicit", + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2704905000"] = { + ["731781020"] = { + ["Belt"] = { + ["max"] = 0.17, + ["min"] = 0.17, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["2709367754"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "explicit", - }, - }, - ["2709646369"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, - ["2720982137"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, - ["2726713579"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - ["type"] = "explicit", - }, - }, - ["274716455"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["2748665614"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["2768835289"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", - ["type"] = "explicit", - }, - }, - ["2768899959"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2770044702"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - ["type"] = "explicit", - }, - }, - ["2797971005"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["280731498"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["2809428780"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", - }, - }, - ["2822644689"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["2839066308"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", - ["type"] = "explicit", - }, - }, - ["2840989393"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, - ["2843214518"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", - }, - }, - ["2849546516"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - ["type"] = "explicit", - }, - }, - ["2854751904"] = { - ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2866361420"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["2881298780"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", - }, - }, - ["288364275"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_288364275", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, - }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, - }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["2907381231"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - ["type"] = "explicit", - }, - }, - ["2912416697"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", - ["type"] = "explicit", - }, - }, - ["2923486259"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["293638271"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", - }, - }, - ["2954360902"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["2957407601"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, - ["2968503605"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["2969557004"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - ["type"] = "explicit", - }, - }, - ["2970621759"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 30, - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["2976476845"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - ["type"] = "explicit", - }, - }, - ["3003542304"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", - }, - }, - ["300723956"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, - ["3015669065"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["3028809864"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["3033371881"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", - }, - }, - ["3035140377"] = { - ["Bow"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Dagger"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Flail"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["One Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["One Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["One Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Two Hand Axe"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Two Hand Mace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Two Hand Sword"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3037553757"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["30438393"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["3065378291"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["3067892458"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["3088348485"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, - ["3091578504"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, - ["3106718406"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, - ["3113764475"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["3119612865"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["3141070085"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["3146310524"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", - }, - }, - ["315791320"] = { - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", - }, - }, - ["3166958180"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", - }, - }, - ["3169585282"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3171212276"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["3173882956"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, - ["3174700878"] = { - ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", - }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "explicit", - }, - }, - ["318092306"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, - ["318953428"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["3192728503"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["3196823591"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", - ["type"] = "explicit", - }, - }, - ["3222402650"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["3225608889"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - }, - ["3233599707"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, - ["3243034867"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", - }, - }, - ["3256879910"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["3261801346"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3276224428"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", - }, - }, - ["3278136794"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["3283482523"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["328541901"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3291658075"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["3292710273"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", - }, - }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 214, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 149, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 174, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3301100256"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", - ["type"] = "explicit", - }, - }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", - }, - }, - ["3336890334"] = { - ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", - }, - }, - ["335885735"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", - ["type"] = "explicit", - }, - }, - ["3362812763"] = { - ["Boots"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3372524247"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3374165039"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["3377888098"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["3386297724"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, - ["3391917254"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["3394832998"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["3395186672"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["3398301358"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["3401186585"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["3409275777"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, - ["3417711605"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, - ["3419203492"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", - }, - }, - ["3473929743"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", - ["type"] = "explicit", - }, - }, - ["3484657501"] = { - ["Boots"] = { - ["max"] = 160, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 276, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 160, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 202, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 256, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3485067555"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3513818125"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", - ["type"] = "explicit", - }, - }, - ["3523867985"] = { - ["Boots"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["3544800472"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, - ["3556824919"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["3579898587"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["3585532255"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "explicit", - }, - }, - ["3590792340"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["3596695232"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["3628935286"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["3639275092"] = { - ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Focus"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["3641543553"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, - ["3665922113"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["3666476747"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - ["type"] = "explicit", - }, - }, - ["3668351662"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", - ["type"] = "explicit", - }, - }, - ["3669820740"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["3676141501"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3679418014"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["3695891184"] = { - ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", - }, - }, - ["3700202631"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - ["type"] = "explicit", - }, - }, - ["3714003708"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, - ["3741323227"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, - ["3749502527"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["3752589831"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", - ["type"] = "explicit", - }, - }, - ["3759663284"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["3759735052"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, - ["3771516363"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["3774951878"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - ["type"] = "explicit", - }, - }, - ["3780644166"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, - ["3787460122"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, - ["378796798"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["3791899485"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", - ["type"] = "explicit", - }, - }, - ["3811191316"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["3821543413"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", - ["type"] = "explicit", - }, - }, - ["3824372849"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", - }, - }, - ["3835551335"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", - }, - }, - ["3837707023"] = { - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3850614073"] = { - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3851254963"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, - ["3855016469"] = { - ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["3856744003"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["3858398337"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", - ["type"] = "explicit", - }, - }, - ["3859848445"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - ["type"] = "explicit", - }, - }, - ["3865605585"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, - }, - ["Bow"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Flail"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Spear"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "explicit", - }, - }, - ["3885405204"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, - ["388617051"] = { - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, - ["3891355829"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", - ["type"] = "explicit", - }, - }, - ["391602279"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", - }, - }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["3936121440"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["394473632"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["3962278098"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["3973629633"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 61, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, - ["4009879772"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["4010677958"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["4019237939"] = { - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", - ["type"] = "explicit", - }, - }, - ["4032352472"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - ["type"] = "explicit", - }, - }, - ["4045894391"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["4052037485"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 96, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 90, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 73, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4067062424"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", - ["type"] = "explicit", - }, - }, - ["4080418644"] = { - ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4081947835"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, - ["4089835882"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", - ["type"] = "explicit", - }, - }, - ["4092130601"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - ["type"] = "explicit", - }, - }, - ["4095671657"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4101445926"] = { - ["Focus"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Staff"] = { - ["max"] = 32, - ["min"] = 28, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", - ["type"] = "explicit", - }, - }, - ["412709880"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - ["type"] = "explicit", - }, - }, - ["4129825612"] = { - ["Body Armour"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, - ["4139681126"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, - ["4142814612"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["4147897060"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", - }, - }, - ["4159248054"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["416040624"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["4162678661"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["4173554949"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["4180952808"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["4188894176"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", - ["type"] = "explicit", - }, - }, - ["4215035940"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", - ["type"] = "explicit", - }, - }, - ["4220027924"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4225700219"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["4226189338"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4234573345"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", - ["type"] = "explicit", - }, - }, - ["4236566306"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "explicit", - }, - }, - ["4258000627"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", - ["type"] = "explicit", - }, - }, - ["4258720395"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", - }, - }, - ["427684353"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, - ["429143663"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["440490623"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - ["type"] = "explicit", - }, - }, - ["442393998"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", - ["type"] = "explicit", - }, - }, - ["44972811"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["455816363"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", - ["type"] = "explicit", - }, - }, - ["458438597"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, - ["462424929"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, - ["472520716"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["473917671"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["484792219"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", - ["type"] = "explicit", - }, - }, - ["491450213"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["504915064"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - ["type"] = "explicit", - }, - }, - ["517664839"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, - ["518292764"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["51994685"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, - ["525523040"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - ["type"] = "explicit", - }, - }, - ["53045048"] = { - ["Boots"] = { - ["max"] = 142, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 251, - ["min"] = 3, - }, - ["Gloves"] = { - ["max"] = 142, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 181, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 232, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["533892981"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["538241406"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, - ["55876295"] = { - ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "explicit", - }, - }, - ["565784293"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", - ["type"] = "explicit", - }, - }, - ["587431675"] = { - ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["591105508"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["593241812"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["61644361"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - ["type"] = "explicit", - }, - }, - ["624954515"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["627767961"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", - ["type"] = "explicit", - }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, - ["648019518"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["654207792"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, - ["656461285"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, - ["669069897"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "explicit", - }, - }, - ["674553446"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["680068163"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "explicit", - }, - }, - ["681332047"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["686254215"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", - ["type"] = "explicit", - }, - }, - ["691932474"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["693237939"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["700317374"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = -50, - }, - ["ManaFlask"] = { - ["max"] = 80, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["707457662"] = { - ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 6.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "explicit", - }, - }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, - ["712554801"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", - }, - }, - ["713216632"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_713216632", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, - ["715957346"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, - ["734614379"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, - ["736967255"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, - }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["748522257"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", - }, - }, - ["770672621"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["791928121"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["793875384"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["795138349"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", - }, - }, - ["803737631"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Ring"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["809229260"] = { - ["Belt"] = { - ["max"] = 255, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["818778753"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["821021828"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, - ["821241191"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, - ["821948283"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["828533480"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", - ["type"] = "explicit", - }, - }, - ["830345042"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, - ["844449513"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["849987426"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", - }, - }, - ["868556494"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["872504239"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", - ["type"] = "explicit", - }, - }, - ["886931978"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["915769802"] = { - ["Belt"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 352, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["918325986"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["9187492"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Talisman"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["924253255"] = { - ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, - }, - ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, - ["942519401"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["944643028"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["945774314"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", - ["type"] = "explicit", - }, - }, - ["959641748"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, - ["980177976"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, - ["983749596"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["Body Armour"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["986397080"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["99927264"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", - ["type"] = "explicit", - }, - }, - }, - ["Implicit"] = { - ["1028592286"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "implicit", - }, - }, - ["1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, - ["1181501418"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1207554355"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", - }, - }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1389754388"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "implicit", - }, - }, - ["1412682799"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", - }, - }, - ["1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", - }, - }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, - ["1503146834"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - ["type"] = "implicit", - }, - }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", - }, - }, - ["1573130764"] = { - ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", - }, - }, - ["1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1691862754"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", - }, - }, - ["1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1745952865"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["1782086450"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, - ["1803308202"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", - }, - }, - ["1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", - }, - }, - ["1836676211"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "implicit", - }, - }, - ["1978899297"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["2016937536"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", - }, - }, - ["2055966527"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, - ["2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", - }, - }, - ["2222186378"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["2250533757"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["2251279027"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, - ["239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["2527686725"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, - ["2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", - ["type"] = "implicit", - }, - }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["275498888"] = { - ["Ring"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_275498888", - ["text"] = "Maximum Quality is #%", - ["type"] = "implicit", - }, - }, - ["2778646494"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", - }, - }, - ["2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["2923486259"] = { - ["Chest"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["2933846633"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", - ["type"] = "implicit", - }, - }, - ["2968503605"] = { - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", - }, - }, - ["2994271459"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, - ["3182714256"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3310778564"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", - }, - }, - ["3362812763"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3372524247"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3544800472"] = { - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", - }, - }, - ["3585532255"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", - }, - }, - ["3675300253"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", - }, - }, - ["3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", - }, - }, - ["3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", - }, - }, - ["3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", - }, - }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, - ["3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["4010341289"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", - }, - }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", - }, - }, - ["4220027924"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["458438597"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", - }, - }, - ["548198834"] = { - ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", - }, - }, - ["585126960"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", - }, - }, - ["624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, - ["680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, - ["681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["718638445"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["731781020"] = { - ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", - }, - }, - ["789117908"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["791928121"] = { - ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["803737631"] = { - ["Ring"] = { - ["max"] = 160, - ["min"] = 120, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["809229260"] = { - ["Belt"] = { - ["max"] = 140, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["821241191"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["836936635"] = { - ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", - }, - }, - ["924253255"] = { - ["Chest"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", - }, - }, - ["958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", - }, - }, - }, - ["Rune"] = { - ["1004011302"] = { - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "augment", - }, - }, - ["1011760251"] = { - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "augment", - }, - }, - ["1030153674"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "augment", - }, - }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Claw"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "augment", - }, - }, - ["1050105434"] = { - ["Boots"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1181501418"] = { - ["Helmet"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1197632982"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1228682002"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - ["type"] = "augment", - }, - }, - ["1238227257"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Focus"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "augment", - }, - }, - ["124131830"] = { - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "augment", - }, - }, - ["1368271171"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "augment", - }, - }, - ["1374654984"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", - ["type"] = "augment", - }, - }, - ["1381474422"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, - ["1382805233"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", - ["type"] = "augment", - }, - }, - ["1433756169"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", - ["type"] = "augment", - }, - }, - ["1444556985"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "augment", - }, - }, - ["1480688478"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", - ["type"] = "augment", - }, - }, - ["1496740334"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", - ["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", - }, - }, - ["1556124492"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", - ["type"] = "augment", - }, - }, - ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "augment", - }, - }, - ["1585886916"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1585886916", - ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", - ["type"] = "augment", - }, - }, - ["1671376347"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1755296234"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["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, - }, - ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1755296234", - ["text"] = "Targets can be affected by # of your Poisons at the same time", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1772929282"] = { - ["Helmet"] = { - ["max"] = -5, - ["min"] = -5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", - ["type"] = "augment", - }, - }, - ["1782086450"] = { - ["Chest"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "augment", - }, - }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "augment", - }, - }, - ["1805633363"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "augment", - }, - }, - ["1937310173"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", - ["type"] = "augment", - }, - }, - ["1947060170"] = { - ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["1984310483"] = { - ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", - ["type"] = "augment", - }, - }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "augment", - }, - }, - ["2011656677"] = { - ["1HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Claw"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Crossbow"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Flail"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Quarterstaff"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Spear"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Talisman"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "augment", - }, - }, - ["2023107756"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "augment", - }, - }, - ["2074866941"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2074866941", - ["text"] = "#% increased Exposure Effect", - ["type"] = "augment", - }, - }, - ["2077615515"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", - ["type"] = "augment", - }, - }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "augment", - }, - }, - ["2103650854"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "augment", - }, - }, - ["2191621386"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["2200571612"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["2223678961"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "augment", - }, - }, - ["2231410646"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", - ["type"] = "augment", - }, - }, - ["2241849004"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2241849004", - ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", - ["type"] = "augment", - }, - }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "augment", - }, - }, - ["2310741722"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Focus"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", - ["type"] = "augment", - }, - }, - ["2339757871"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Wand"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "augment", - }, - }, - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "augment", - }, - }, - ["2363593824"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", - ["type"] = "augment", - }, - }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "augment", - }, - }, - ["2505884597"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "augment", - }, - }, - ["263495202"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", - ["type"] = "augment", - }, - }, - ["2663359259"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", - ["type"] = "augment", - }, - }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["2703838669"] = { - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2703838669", - ["text"] = "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%Other Modifiers to Movement Speed except for Sprinting do not apply", - ["type"] = "augment", - }, - }, - ["2709367754"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "augment", - }, - }, - ["2748665614"] = { - ["Helmet"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "augment", - }, - }, - ["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"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "augment", - }, - }, - ["2854751904"] = { - ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 20.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "augment", - }, - }, - ["2876843277"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2876843277", - ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", - ["type"] = "augment", - }, - }, - ["2891184298"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "augment", - }, - }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "augment", - }, - }, - ["2901986750"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["2910761524"] = { - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", - ["type"] = "augment", - }, - }, - ["2913012734"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", }, - ["Bow"] = { - ["max"] = 20, + }, + ["789117908"] = { + ["Amulet"] = { + ["max"] = 30, ["min"] = 20, }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2913012734", - ["text"] = "Convert #% of Requirements to Intelligence", - ["type"] = "augment", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", }, }, - ["2916861134"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["791928121"] = { ["2HMace"] = { ["max"] = 50, - ["min"] = 50, + ["min"] = 20, }, ["2HWeapon"] = { ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2916861134", - ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - ["type"] = "augment", - }, - }, - ["2923486259"] = { - ["Boots"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Chest"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Focus"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Helmet"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["Shield"] = { - ["max"] = 11, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "augment", - }, - ["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", - }, - }, - ["2968503605"] = { - ["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, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "augment", - }, - }, - ["2974417149"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["803737631"] = { + ["Ring"] = { + ["max"] = 160, + ["min"] = 120, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["3015669065"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", }, }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 8.5, - ["min"] = 8.5, + ["836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "augment", + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", }, }, - ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, + ["924253255"] = { + ["Chest"] = { + ["max"] = -20, + ["min"] = -30, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "augment", + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", }, }, - ["3107707789"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 25, + ["958696139"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", - ["type"] = "augment", + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", }, }, - ["310945763"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, + }, + ["Rune"] = { + ["1004011302"] = { + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", - ["type"] = "augment", + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", }, }, - ["3166958180"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "augment", + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["101878827"] = { + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "augment", + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", }, }, - ["3261801346"] = { + ["1037193709"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 23.5, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "augment", + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3278136794"] = { + ["1050105434"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 15, + }, ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 50, + ["min"] = 30, }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "augment", + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["328541901"] = { + ["1368271171"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 24, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "augment", + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3299347043"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, - }, + ["1444556985"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 40, - ["min"] = 20, + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "augment", + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3336890334"] = { + ["1519615863"] = { ["1HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "augment", + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", }, }, - ["3372524247"] = { + ["1671376347"] = { ["Boots"] = { ["max"] = 14, ["min"] = 10, @@ -22155,100 +13191,162 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "augment", + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3377888098"] = { - ["Helmet"] = { + ["1782086450"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + }, + ["1798257884"] = { + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + }, + ["1998951374"] = { + ["Sceptre"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "augment", + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", }, }, - ["3398787959"] = { + ["210067635"] = { ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + }, + ["2223678961"] = { + ["1HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Bow"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 24, }, ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 24, + ["min"] = 24, }, ["Flail"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 24, + ["min"] = 24, }, ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 24, + ["min"] = 24, }, ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Staff"] = { - ["max"] = 13, - ["min"] = 13, + ["max"] = 24, + ["min"] = 24, }, ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Wand"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, - ["3407849389"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 24, + ["min"] = 24, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "augment", + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", }, }, - ["3473409233"] = { + ["2250533757"] = { ["Boots"] = { ["max"] = 5, ["min"] = 5, @@ -22256,1388 +13354,1272 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3473409233", - ["text"] = "Lose #% of maximum Life per second while Sprinting", - ["type"] = "augment", + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", }, }, - ["3489782002"] = { - ["Staff"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 25, + ["2353576063"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "augment", + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3523867985"] = { - ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Focus"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["2481353198"] = { ["Shield"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "augment", + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", }, }, - ["3537994888"] = { + ["2694482655"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3537994888", - ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", - ["type"] = "augment", + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3544800472"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 25, + ["280731498"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "augment", + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", }, }, - ["3552135623"] = { - ["Chest"] = { - ["max"] = 3, - ["min"] = 3, + ["2891184298"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "augment", + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3570773271"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["289128254"] = { + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3570773271", - ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", - ["type"] = "augment", + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", }, }, - ["3585532255"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["2901986750"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "augment", + ["Focus"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["3655769732"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "augment", + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3666934677"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, + ["2923486259"] = { + ["Boots"] = { + ["max"] = 11, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 11, + ["min"] = 11, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "augment", + ["Focus"] = { + ["max"] = 11, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 11, + ["min"] = 11, }, - }, - ["3676141501"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 11, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 11, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "augment", + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3678845069"] = { + ["293638271"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3678845069", - ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", - ["type"] = "augment", + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", }, }, - ["3695891184"] = { + ["2968503605"] = { ["1HMace"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["1HWeapon"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["2HMace"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["2HWeapon"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Bow"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Claw"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Crossbow"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Flail"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Quarterstaff"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Spear"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["Talisman"] = { ["max"] = 30, - ["min"] = 10, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "augment", + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", }, }, - ["3742865955"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["2974417149"] = { ["Staff"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 30, + ["min"] = 20, }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "augment", + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", }, }, - ["3759663284"] = { - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["3057012405"] = { + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "augment", + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", }, }, - ["3801067695"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["3175163625"] = { ["Gloves"] = { ["max"] = 10, ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3801067695", - ["text"] = "#% reduced effect of Shock on you", - ["type"] = "augment", - }, - }, - ["3824372849"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "augment", - }, - }, - ["3850614073"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["3855016469"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "augment", + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", }, }, - ["387439868"] = { + ["3261801346"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 10, + ["min"] = 6, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "rune.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "augment", + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, }, - }, - ["3885405204"] = { - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "rune.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "augment", + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3885634897"] = { + ["328541901"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 10, + ["min"] = 6, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "augment", + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, - }, - ["3897831687"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", - ["type"] = "augment", + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, }, - ["usePositiveSign"] = true, - }, - ["3903510399"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3903510399", - ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", - ["type"] = "augment", + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3917489142"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, + ["3299347043"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "augment", + ["Focus"] = { + ["max"] = 40, + ["min"] = 20, }, - }, - ["3973629633"] = { ["Gloves"] = { - ["max"] = 20, + ["max"] = 40, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 40, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "augment", + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3981240776"] = { + ["3336890334"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "augment", + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 10, + ["3372524247"] = { + ["Boots"] = { + ["max"] = 14, ["min"] = 10, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "augment", - }, - }, - ["4010677958"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "augment", - }, - }, - ["4064396395"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["usePositiveSign"] = true, + }, + ["3377888098"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "augment", + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", }, }, - ["4080418644"] = { + ["3398787959"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 13, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "augment", + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4095671657"] = { - ["Gloves"] = { + ["3676141501"] = { + ["Helmet"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "augment", + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["416040624"] = { - ["Staff"] = { - ["max"] = 14, + ["3695891184"] = { + ["1HMace"] = { + ["max"] = 30, ["min"] = 10, }, - ["Wand"] = { - ["max"] = 14, + ["1HWeapon"] = { + ["max"] = 30, ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "rune.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "augment", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 10, }, - }, - ["4220027924"] = { - ["Boots"] = { - ["max"] = 14, + ["Bow"] = { + ["max"] = 30, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 14, + ["Claw"] = { + ["max"] = 30, ["min"] = 10, }, - ["Focus"] = { - ["max"] = 14, + ["Crossbow"] = { + ["max"] = 30, ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 14, + ["Flail"] = { + ["max"] = 30, ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 14, + ["Quarterstaff"] = { + ["max"] = 30, ["min"] = 10, }, - ["Shield"] = { - ["max"] = 14, + ["Spear"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 30, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "augment", + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4236566306"] = { + ["387439868"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "augment", - }, - }, - ["426207520"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", - ["type"] = "augment", + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", }, }, - ["4282982513"] = { - ["Boots"] = { + ["3885405204"] = { + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "rune.stat_4282982513", - ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", - ["type"] = "augment", + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", }, }, - ["458438597"] = { - ["Chest"] = { + ["3885634897"] = { + ["1HMace"] = { ["max"] = 15, ["min"] = 15, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "augment", - }, - }, - ["473429811"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "augment", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", }, }, - ["554899692"] = { + ["3917489142"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_554899692", - ["text"] = "# Charm Slot (Global)", - ["type"] = "augment", + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["55876295"] = { + ["3981240776"] = { ["1HMace"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "augment", - }, - }, - ["594547430"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", - ["type"] = "augment", - }, - }, - ["624954515"] = { - ["Gloves"] = { ["max"] = 15, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "augment", + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["649025131"] = { - ["Boots"] = { + ["3984865854"] = { + ["Sceptre"] = { ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", - ["type"] = "augment", + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", }, }, - ["669069897"] = { + ["4080418644"] = { ["1HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, ["Spear"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, }, ["Talisman"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "augment", + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["681332047"] = { + ["4095671657"] = { ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["687156079"] = { + ["4220027924"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 14, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_687156079", - ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", - ["type"] = "augment", + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["691932474"] = { + ["4236566306"] = { ["1HMace"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Bow"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Claw"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Crossbow"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Flail"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Quarterstaff"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Spear"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["Talisman"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", - ["type"] = "augment", + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["709508406"] = { + ["473429811"] = { ["1HMace"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["1HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["2HMace"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["2HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Bow"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Claw"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Crossbow"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Flail"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Quarterstaff"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Spear"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["Talisman"] = { - ["max"] = 28.5, - ["min"] = 5, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "augment", + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", }, }, - ["731403740"] = { + ["709508406"] = { ["1HMace"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["2HMace"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Bow"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Claw"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Flail"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 5, + ["max"] = 28.5, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_731403740", - ["text"] = "Gain #% of Damage as Extra Damage of all Elements", - ["type"] = "augment", + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", }, }, ["737908626"] = { @@ -23652,68 +14634,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_737908626", + ["id"] = "enchant.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "augment", - }, - }, - ["757050353"] = { - ["Boots"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Chest"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Focus"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Gloves"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Helmet"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Shield"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_757050353", - ["text"] = "# to # Lightning Thorns damage", - ["type"] = "augment", - }, - }, - ["770672621"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "augment", - }, - }, - ["782230869"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_782230869", - ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", - ["type"] = "augment", + ["type"] = "enchant", }, }, ["789117908"] = { @@ -23752,9 +14675,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_789117908", + ["id"] = "enchant.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "augment", + ["type"] = "enchant", }, }, ["791928121"] = { @@ -23805,9 +14728,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_791928121", + ["id"] = "enchant.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "augment", + ["type"] = "enchant", }, }, ["836936635"] = { @@ -23838,90 +14761,10 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_836936635", + ["id"] = "enchant.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "augment", - }, - }, - ["889552744"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_889552744", - ["text"] = "Minions take #% of Physical Damage as Lightning Damage", - ["type"] = "augment", - }, - }, - ["915264788"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", - ["type"] = "augment", - }, - }, - ["915769802"] = { - ["Boots"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["Focus"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["Gloves"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["Helmet"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["Shield"] = { - ["max"] = 80, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "augment", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, ["924253255"] = { ["Boots"] = { @@ -23932,22 +14775,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_924253255", + ["id"] = "enchant.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "augment", - }, - }, - ["935518591"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", - ["type"] = "augment", + ["type"] = "enchant", }, }, ["970213192"] = { @@ -23998,22 +14828,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_970213192", + ["id"] = "enchant.stat_970213192", ["text"] = "#% increased Skill Speed", - ["type"] = "augment", - }, - }, - ["983749596"] = { - ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "augment", + ["type"] = "enchant", }, }, }, diff --git a/src/Data/Rares.lua b/src/Data/Rares.lua index ecc14e00a9..81bfd0bd7a 100644 --- a/src/Data/Rares.lua +++ b/src/Data/Rares.lua @@ -5,42 +5,42 @@ -- Helmet [[ Armour Helmet -Imperial Greathelm +Runemastered Rusted Greathelm Crafted: true Prefix: LocalIncreasedPhysicalDamageReductionRating5 Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5 Prefix: IncreasedLife7 ]],[[ Evasion Helmet -Freebooter Cap +Runeforged Trapper Hood Crafted: true Prefix: LocalIncreasedEvasionRating5 Prefix: LocalIncreasedEvasionRatingPercent5 Prefix: IncreasedLife7 ]],[[ Energy Shield Helmet -Ancestral Tiara +Runeforged Magus Tiara Crafted: true Prefix: IncreasedLife7 Prefix: LocalIncreasedEnergyShieldPercent5 Prefix: LocalIncreasedEnergyShield7 ]],[[ Armour/Evasion Helmet -Gladiatorial Helm +Runemastered Guarded Helm Crafted: true Prefix: LocalBaseArmourAndEvasionRating3 Prefix: LocalIncreasedArmourAndEvasion5 Prefix: IncreasedLife7 ]],[[ Armour/Energy Shield Helmet -Cryptic Crown +Runeforged Cryptic Crown Crafted: true Prefix: LocalBaseArmourAndEnergyShield3 Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife7 ]],[[ Evasion/Energy Shield Helmet -Grinning Mask +Runeforged Grinning Mask Crafted: true Prefix: LocalBaseEvasionRatingAndEnergyShield3 Prefix: LocalIncreasedEvasionAndEnergyShield5_ @@ -49,21 +49,21 @@ Prefix: IncreasedLife7 -- Gloves [[ Armour Gloves -Massive Mitts +Runeforged Vaal Mitts Crafted: true Prefix: LocalIncreasedPhysicalDamageReductionRating4 Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5 Prefix: IncreasedLife6 ]],[[ Evasion Gloves -Polished Bracers +Runeforged Barbed Bracers Crafted: true Prefix: LocalIncreasedEvasionRating3 Prefix: LocalIncreasedEvasionRatingPercent5 Prefix: IncreasedLife6 ]],[[ Energy Shield Gloves -Sirenscale Gloves +Runeforged Adorned Gloves Crafted: true Prefix: IncreasedLife6 Prefix: LocalIncreasedEnergyShieldPercent5 @@ -77,14 +77,14 @@ Prefix: LocalIncreasedArmourAndEvasion5 Prefix: IncreasedLife6 ]],[[ Armour/Energy Shield Gloves -Adherent Cuffs +Runeforged Adherent Cuffs Crafted: true Prefix: LocalBaseArmourAndEnergyShield3_ Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6 ]],[[ Evasion/Energy Shield Gloves -Secured Wraps +Runeforged Secured Wraps Crafted: true Prefix: LocalBaseEvasionRatingAndEnergyShield3 Prefix: LocalIncreasedEvasionAndEnergyShield5_ @@ -93,42 +93,42 @@ Prefix: IncreasedLife6 -- Body Armour [[ Armour Chest -Glorious Plate +Runeforged Conqueror Plate Crafted: true Prefix: LocalIncreasedPhysicalDamageReductionRating5 Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5 Prefix: IncreasedLife9 ]],[[ Evasion Chest -Exquisite Vest +Runeforged Slipstrike Vest Crafted: true Prefix: LocalIncreasedEvasionRating5 Prefix: LocalIncreasedEvasionRatingPercent5 Prefix: IncreasedLife9 ]],[[ Energy Shield Chest -Havoc Raiment +Runeforged Havoc Raiment Crafted: true Prefix: IncreasedLife9 Prefix: LocalIncreasedEnergyShieldPercent5 Prefix: LocalIncreasedEnergyShield10 ]],[[ Armour/Evasion Chest -Slayer Armour +Death Mail Crafted: true Prefix: LocalBaseArmourAndEvasionRating5 Prefix: LocalIncreasedArmourAndEvasion5 Prefix: IncreasedLife9 ]],[[ Armour/Energy Shield Chest -Zenith Vestments +Runemastered Revered Vestments Crafted: true Prefix: LocalBaseArmourAndEnergyShield5 Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife9 ]],[[ Evasion/Energy Shield Chest -Torment Jacket +Runeforged Sleek Jacket Crafted: true Prefix: LocalBaseEvasionRatingAndEnergyShield5_ Prefix: LocalIncreasedEvasionAndEnergyShield5_ @@ -151,42 +151,42 @@ Prefix: IncreasedSpirit6 -- Boots [[ Armour Boots -Tasalian Greaves +Runeforged Vaal Greaves Crafted: true Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5 Prefix: IncreasedLife6 Prefix: MovementVelocity5 ]],[[ Evasion Boots -Drakeskin Boots +Runeforged Dragonscale Boots Crafted: true Prefix: LocalIncreasedEvasionRatingPercent5 Prefix: IncreasedLife6 Prefix: MovementVelocity5 ]],[[ Energy Shield Boots -Sekhema Sandals +Runeforged Elaborate Sandals Crafted: true Prefix: IncreasedLife6 Prefix: LocalIncreasedEnergyShieldPercent5 Prefix: MovementVelocity5 ]],[[ Armour/Evasion Boots -Blacksteel Sabatons +Runemastered Stacked Sabatons Crafted: true Prefix: LocalIncreasedArmourAndEvasion5 Prefix: IncreasedLife6 Prefix: MovementVelocity5 ]],[[ Armour/Energy Shield Boots -Cryptic Leggings +Runeforged Cryptic Leggings Crafted: true Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6 Prefix: MovementVelocity5 ]],[[ Evasion/Energy Shield Boots -Daggerfoot Shoes +Runeforged Daggerfoot Shoes Crafted: true Prefix: LocalIncreasedEvasionAndEnergyShield5_ Prefix: IncreasedLife6 @@ -195,14 +195,14 @@ Prefix: MovementVelocity5 -- Shields [[ Armour Shield -Tawhoan Tower Shield +Runemastered Vaal Tower Shield Crafted: true Prefix: LocalIncreasedBlockPercentage5 Prefix: LocalIncreasedPhysicalDamageReductionRatingPercent5 Prefix: IncreasedLife8 ]],[[ Evasion Shield -Desert Buckler +Runeforged Desert Buckler Crafted: true Prefix: LocalIncreasedBlockPercentage5 Prefix: LocalIncreasedEvasionRatingPercent5 @@ -216,7 +216,7 @@ Prefix: LocalIncreasedArmourAndEvasion5 Prefix: IncreasedLife8 ]],[[ Armour/Energy Shield Shield -Blacksteel Crest Shield +Runeforged Blacksteel Crest Shield Crafted: true Prefix: LocalIncreasedBlockPercentage5 Prefix: LocalIncreasedArmourAndEnergyShield5 diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index 8aacda5619..7c07823f46 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -284,6 +284,9 @@ return { ["support_spell_echo_area_of_effect_+%"] = { mod("RepeatAreaOfEffect", "INC", nil), }, +["echoed_spell_area_of_effect_+%"] = { + mod("RepeatAreaOfEffect", "INC", nil), +}, ["base_melee_attack_repeat_count"] = { mod("RepeatCount", "BASE", nil, 0, 0, { type = "ModFlagOr", modFlags = bit.bor(ModFlag.WeaponMelee, ModFlag.Unarmed) }), mod("RepeatCount", "BASE", nil, 0, 0, { type = "SkillType", skillType = SkillType.RequiresShield }), @@ -559,6 +562,9 @@ return { ["attack_speed_+%_with_atleast_20_rage"] = { mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "MultiplierThreshold", var = "Rage", threshold = 20 }) }, +["supported_skill_attack_speed_+%_per_5_rage"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Rage", div = 5 }) +}, ["base_cooldown_speed_+%"] = { mod("CooldownRecovery", "INC", nil), }, @@ -573,6 +579,10 @@ return { mod("CooldownRecovery", "BASE", nil), div = 1000, }, +["base_cooldown_modifiable_repeat_interval_ms"] = { + mod("CooldownRecovery", "BASE", nil), + div = 1000, +}, ["base_cooldown_speed_+%_final"] = { mod("CooldownRecovery", "MORE", nil), }, @@ -689,6 +699,9 @@ return { ["critical_strike_chance_+%_per_power_charge"] = { mod("CritChance", "INC", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), }, +["critical_strike_chance_+%_per_5_rage"] = { + mod("CritChance", "INC", nil, 0, 0, { type = "PerStat", stat = "Rage", div = 5 }) +}, ["critical_strike_multiplier_+_per_power_charge"] = { mod("CritMultiplier", "BASE", nil, 0, 0, { type = "Multiplier", var = "PowerCharge" }), }, @@ -833,7 +846,7 @@ return { ["active_skill_damage_+%_final"] = { mod("Damage", "MORE", nil), }, -["support_damage_+%_final_per_combo_stack"] = { +["support_culmination_damage_+%_final_per_combo_stack"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "ComboStacks", limitVar = "ComboStacksMax" }), }, ["skill_maximum_number_of_combo_stacks"] = { @@ -1557,6 +1570,9 @@ return { flag("FireCanShock"), flag("ChaosCanShock"), }, +["physical_damage_can_freeze"] = { + flag("PhysicalCanFreeze"), +}, ["chaos_damage_can_freeze"] = { flag("ChaosCanFreeze"), }, @@ -1795,6 +1811,12 @@ return { ["modifiers_to_projectile_count_do_not_apply"] = { flag("NoAdditionalProjectiles"), }, +["number_of_projectiles_cannot_be_modified"] = { + flag("NoAdditionalProjectiles"), +}, +["base_modifiers_to_projectile_count_do_not_apply"] = { + flag("NoAdditionalProjectiles"), +}, ["base_number_of_arrows"] = { mod("ProjectileCount", "BASE", nil, 0, KeywordFlag.Arrow), base = -1, @@ -2242,12 +2264,18 @@ return { ["support_anticipation_rapid_fire_count"] = { mod("SealCount", "BASE", nil), }, +["base_maximum_seals_for_skill"] = { + mod("SealCount", "BASE", nil), +}, ["unleash_support_seal_gain_frequency_as_%_of_total_cast_time"] = { mod("SealGainFrequency", "BASE", nil), }, ["support_spell_rapid_fire_repeat_use_damage_+%_final"] = { mod("SealRepeatPenalty", "MORE", nil), }, +["base_skill_is_sealed_skill"] = { + flag("HasSeals"), +}, -- -- Skill type modifier @@ -2435,6 +2463,9 @@ return { ["summon_fire_resistance_+"] = { mod("MinionModifier", "LIST", { mod = mod("FireResist", "BASE", nil) }), }, +["minion_fire_damage_resistance_%"] = { + mod("MinionModifier", "LIST", { mod = mod("FireResist", "BASE", nil) }), +}, ["summon_cold_resistance_+"] = { mod("MinionModifier", "LIST", { mod = mod("ColdResist", "BASE", nil) }), }, @@ -2463,6 +2494,9 @@ return { ["minions_are_gigantic"] = { mod("MinionModifier", "LIST", { mod = flag("Gigantic") }), }, +["companions_are_gigantic"] = { + mod("MinionModifier", "LIST", { mod = flag("Gigantic") }), +}, ["base_number_of_zombies_allowed"] = { mod("ActiveZombieLimit", "BASE", nil), }, @@ -2578,6 +2612,10 @@ return { ["is_resummoning_minion"] = { flag("RevivingMinion") }, +["minion_base_resummon_time_ms"] = { + mod("BaseReviveTime", "OVERRIDE", nil), + div = 1000, +}, --Golem ["golem_buff_effect_+%"] = { mod("BuffEffect", "INC", nil, 0, 0) @@ -2801,6 +2839,9 @@ return { ["kill_enemy_on_hit_if_under_10%_life"] = { flag("CanCull"), -- none of the skills with this stat say anything about a 10% threshold }, +["spells_have_culling_strike"] = { + flag("CanCull"), -- none of the skills with this stat say anything about a 10% threshold +}, ["spell_cast_time_added_to_cooldown_if_triggered"] = { flag("SpellCastTimeAddedToCooldownIfTriggered"), }, @@ -2810,6 +2851,9 @@ return { ["gain_x_rage_on_melee_hit"] = { flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff", effectName = "Rage" } ), }, +["gain_x%_of_maximum_rage_on_melee_hit"] = { + flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff", effectName = "Rage" } ), +}, ["warcry_grant_X_rage_per_5_power"] = { flag("Condition:CanGainRage", { type = "GlobalEffect", effectType = "Buff", effectName = "Rage" } ), }, @@ -2832,6 +2876,9 @@ return { ["chaos_damage_%_dealt_as_armour_break"] = { flag("Condition:CanArmourBreak", { type = "GlobalEffect", effectType = "Buff", effectName = "ArmourBreak" }), }, +["crushed_target_%_physical_damage_taken_as_armour_break"] = { + flag("Condition:CanArmourBreak", { type = "GlobalEffect", effectType = "Buff", effectName = "ArmourBreak" }, { type = "ActorCondition", actor = "enemy", var = "Crushed" }), +}, -- -- Spectre or Minion-specific stats -- diff --git a/src/Data/Skills/SkillAssets.lua b/src/Data/Skills/SkillAssets.lua index 096a72c346..43dc50b2b0 100644 --- a/src/Data/Skills/SkillAssets.lua +++ b/src/Data/Skills/SkillAssets.lua @@ -119,16 +119,16 @@ return { ["Art/2DArt/BuffIcons/Shockwave.dds"]=4, ["Art/2DArt/BuffIcons/consecrated.dds"]=1, ["Art/2DArt/SkillIcons/AbyssalLichApparitionSkill.dds"]=5, - ["Art/2DArt/SkillIcons/AlchemistsBoonSkill.dds"]=6, - ["Art/2DArt/SkillIcons/AlchemistsMark.dds"]=7, + ["Art/2DArt/SkillIcons/AcolyteOfChayulaSpecialNodeSkill.dds"]=6, + ["Art/2DArt/SkillIcons/AlchemistsBoonSkill.dds"]=7, ["Art/2DArt/SkillIcons/AmazonElementalInfusionSkillIcon.dds"]=8, ["Art/2DArt/SkillIcons/AmbushIcon.dds"]=9, ["Art/2DArt/SkillIcons/AncestorTotemSkill.dds"]=10, ["Art/2DArt/SkillIcons/ArakaalisFang.dds"]=11, ["Art/2DArt/SkillIcons/ArcaneCloak.dds"]=12, ["Art/2DArt/SkillIcons/ArchmageSkill.dds"]=13, - ["Art/2DArt/SkillIcons/AssassinsMark.dds"]=15, - ["Art/2DArt/SkillIcons/AttritionSkill.dds"]=16, + ["Art/2DArt/SkillIcons/AttritionSkill.dds"]=15, + ["Art/2DArt/SkillIcons/AtziriHeraldOfBlood.dds"]=16, ["Art/2DArt/SkillIcons/AtzirisContempt.dds"]=17, ["Art/2DArt/SkillIcons/AtzirisRule.dds"]=18, ["Art/2DArt/SkillIcons/BeserkSkill.dds"]=32, @@ -191,439 +191,489 @@ return { ["Art/2DArt/SkillIcons/CatAspect.dds"]=91, ["Art/2DArt/SkillIcons/CeaselessRageSkill.dds"]=92, ["Art/2DArt/SkillIcons/ChainStrike.dds"]=93, - ["Art/2DArt/SkillIcons/ChaosBoltWeaponSkill.dds"]=94, - ["Art/2DArt/SkillIcons/ChaosElementalSummon.dds"]=95, - ["Art/2DArt/SkillIcons/ChargeMasteryDeath.dds"]=97, - ["Art/2DArt/SkillIcons/ChargedBlast.dds"]=96, - ["Art/2DArt/SkillIcons/ChillingAuraSkillStaff.dds"]=98, - ["Art/2DArt/SkillIcons/CobraLash.dds"]=100, - ["Art/2DArt/SkillIcons/CoinFlipMicroSkill.dds"]=101, - ["Art/2DArt/SkillIcons/ColdProjectileMine.dds"]=102, - ["Art/2DArt/SkillIcons/CommandShark.dds"]=103, - ["Art/2DArt/SkillIcons/Conductivity.dds"]=104, - ["Art/2DArt/SkillIcons/ConvalescenceSkillIcon.dds"]=105, - ["Art/2DArt/SkillIcons/CorpseEruption.dds"]=107, - ["Art/2DArt/SkillIcons/CorruptedBloodStream.dds"]=108, - ["Art/2DArt/SkillIcons/DarkRitual.dds"]=110, - ["Art/2DArt/SkillIcons/DarkTempest.dds"]=111, - ["Art/2DArt/SkillIcons/DeadeyeMarkMetagemSkill.dds"]=112, - ["Art/2DArt/SkillIcons/DeathPactSkill.dds"]=113, - ["Art/2DArt/SkillIcons/DeathWalk.dds"]=114, - ["Art/2DArt/SkillIcons/DecomposeSkill.dds"]=115, - ["Art/2DArt/SkillIcons/DefianceBannerSkill.dds"]=116, - ["Art/2DArt/SkillIcons/DeliriumAura.dds"]=117, - ["Art/2DArt/SkillIcons/Desecrate.dds"]=118, - ["Art/2DArt/SkillIcons/Despair.dds"]=119, - ["Art/2DArt/SkillIcons/DisciplineWeaponSkill.dds"]=120, - ["Art/2DArt/SkillIcons/Disentegrate.dds"]=121, - ["Art/2DArt/SkillIcons/DivineCry.dds"]=122, - ["Art/2DArt/SkillIcons/DreadBannerSkill.dds"]=123, - ["Art/2DArt/SkillIcons/DruidAwakenedForest.dds"]=124, - ["Art/2DArt/SkillIcons/DruidBarkSkin.dds"]=125, - ["Art/2DArt/SkillIcons/DruidBearMaul.dds"]=126, - ["Art/2DArt/SkillIcons/DruidBearRampage.dds"]=127, - ["Art/2DArt/SkillIcons/DruidBearSlam.dds"]=128, - ["Art/2DArt/SkillIcons/DruidBearWarcry.dds"]=129, - ["Art/2DArt/SkillIcons/DruidBriarpatch.dds"]=130, - ["Art/2DArt/SkillIcons/DruidCrossSlash.dds"]=131, - ["Art/2DArt/SkillIcons/DruidDevourShock.dds"]=132, - ["Art/2DArt/SkillIcons/DruidElectricSpittle.dds"]=133, - ["Art/2DArt/SkillIcons/DruidEntangle.dds"]=134, - ["Art/2DArt/SkillIcons/DruidFeralInvocation.dds"]=135, - ["Art/2DArt/SkillIcons/DruidFlameBreath.dds"]=136, - ["Art/2DArt/SkillIcons/DruidFrozenClaws.dds"]=137, - ["Art/2DArt/SkillIcons/DruidFuryoftheMountain.dds"]=138, - ["Art/2DArt/SkillIcons/DruidLunarAssault.dds"]=139, - ["Art/2DArt/SkillIcons/DruidLunarBlessing.dds"]=140, - ["Art/2DArt/SkillIcons/DruidOracleSpellfluxSkill.dds"]=141, - ["Art/2DArt/SkillIcons/DruidPrimalAvatar.dds"]=142, - ["Art/2DArt/SkillIcons/DruidRollingMagma.dds"]=143, - ["Art/2DArt/SkillIcons/DruidShamanUnleashtheElementsSkill.dds"]=144, - ["Art/2DArt/SkillIcons/DruidSpellTotem.dds"]=145, - ["Art/2DArt/SkillIcons/DruidSummonWolf.dds"]=146, - ["Art/2DArt/SkillIcons/DruidTornado.dds"]=147, - ["Art/2DArt/SkillIcons/DruidTundraHunter.dds"]=148, - ["Art/2DArt/SkillIcons/DruidVolcano.dds"]=149, - ["Art/2DArt/SkillIcons/DruidWalkingCalamity.dds"]=150, - ["Art/2DArt/SkillIcons/DruidWildBeast.dds"]=151, - ["Art/2DArt/SkillIcons/DruidWingBlast.dds"]=152, - ["Art/2DArt/SkillIcons/DruidWolfHowl.dds"]=153, - ["Art/2DArt/SkillIcons/DruidWolfLeapAttack.dds"]=154, - ["Art/2DArt/SkillIcons/DruidWyvernSwipe.dds"]=155, - ["Art/2DArt/SkillIcons/DualWieldAxeDefaultSkill.dds"]=156, - ["Art/2DArt/SkillIcons/DualWieldClawDefaultSkill.dds"]=157, - ["Art/2DArt/SkillIcons/DualWieldMaceDefaultSkill.dds"]=158, - ["Art/2DArt/SkillIcons/DualWieldSwordDefaultSkill.dds"]=159, - ["Art/2DArt/SkillIcons/ElementalConfluxSkill.dds"]=160, - ["Art/2DArt/SkillIcons/ElementalInvocationSkill.dds"]=161, - ["Art/2DArt/SkillIcons/ElementalPowerSkillWand.dds"]=162, - ["Art/2DArt/SkillIcons/ElementalSiphonSkillIcon.dds"]=163, - ["Art/2DArt/SkillIcons/ElementalStrike.dds"]=164, - ["Art/2DArt/SkillIcons/EnervatingNovaWeaponSkill.dds"]=166, - ["Art/2DArt/SkillIcons/EnsnaringArrow.dds"]=168, - ["Art/2DArt/SkillIcons/ExplosiveGrenade.dds"]=169, - ["Art/2DArt/SkillIcons/FangsofFrostSkillIcon.dds"]=170, - ["Art/2DArt/SkillIcons/FireBeam.dds"]=173, - ["Art/2DArt/SkillIcons/FireBurst.dds"]=174, - ["Art/2DArt/SkillIcons/FireElementalSummon.dds"]=175, - ["Art/2DArt/SkillIcons/FireMortarBarrageMine.dds"]=176, - ["Art/2DArt/SkillIcons/FireballSkillStaff.dds"]=172, - ["Art/2DArt/SkillIcons/FirestormV2.dds"]=177, - ["Art/2DArt/SkillIcons/FlailDefaultSkill.dds"]=178, - ["Art/2DArt/SkillIcons/FlameDash.dds"]=179, - ["Art/2DArt/SkillIcons/FlameLink.dds"]=180, - ["Art/2DArt/SkillIcons/FlamesOfJudgement.dds"]=181, - ["Art/2DArt/SkillIcons/Flammability.dds"]=183, - ["Art/2DArt/SkillIcons/FlashbangGrenade.dds"]=184, - ["Art/2DArt/SkillIcons/FreezingBolts.dds"]=185, - ["Art/2DArt/SkillIcons/FreezingMarkSkill.dds"]=186, - ["Art/2DArt/SkillIcons/FreezingPulse.dds"]=187, - ["Art/2DArt/SkillIcons/FreezingShardsStaff.dds"]=188, - ["Art/2DArt/SkillIcons/FrenziedLungeSkillIcon.dds"]=189, - ["Art/2DArt/SkillIcons/FrostDartsSkillIcon.dds"]=191, - ["Art/2DArt/SkillIcons/FrostVortex.dds"]=192, - ["Art/2DArt/SkillIcons/Frostbite.dds"]=190, - ["Art/2DArt/SkillIcons/FrozenLegion.dds"]=193, - ["Art/2DArt/SkillIcons/FrozenSphere.dds"]=194, - ["Art/2DArt/SkillIcons/FrozenSweep.dds"]=195, - ["Art/2DArt/SkillIcons/GalvanicFieldWeaponSkill.dds"]=197, - ["Art/2DArt/SkillIcons/GamepadActions/MountRhoa.dds"]=198, - ["Art/2DArt/SkillIcons/GhostfuseArrow.dds"]=199, - ["Art/2DArt/SkillIcons/GraveCommand.dds"]=201, - ["Art/2DArt/SkillIcons/GrenadeBallistaSkillIcon.dds"]=202, - ["Art/2DArt/SkillIcons/HandoftheClanSkill.dds"]=204, - ["Art/2DArt/SkillIcons/HarvesterSkill.dds"]=205, - ["Art/2DArt/SkillIcons/HeraldOfAgonySkill.dds"]=206, - ["Art/2DArt/SkillIcons/HeraldOfAshSkill.dds"]=207, - ["Art/2DArt/SkillIcons/HeraldOfBloodSkill.dds"]=208, - ["Art/2DArt/SkillIcons/HeraldOfIceSkill.dds"]=209, - ["Art/2DArt/SkillIcons/HeraldOfLight.dds"]=210, - ["Art/2DArt/SkillIcons/HeraldOfThunderSkill.dds"]=211, - ["Art/2DArt/SkillIcons/HinekorasSightUnique.dds"]=212, - ["Art/2DArt/SkillIcons/HolyPath.dds"]=213, - ["Art/2DArt/SkillIcons/HolyRelicSkillIcon.dds"]=214, - ["Art/2DArt/SkillIcons/HuntressBlazingLance.dds"]=215, - ["Art/2DArt/SkillIcons/HuntressBloodHunt.dds"]=216, - ["Art/2DArt/SkillIcons/HuntressBloodHuntSkillIcon.dds"]=217, - ["Art/2DArt/SkillIcons/HuntressBucklerParry.dds"]=218, - ["Art/2DArt/SkillIcons/HuntressExtraElements.dds"]=219, - ["Art/2DArt/SkillIcons/HuntressGlacialLance.dds"]=220, - ["Art/2DArt/SkillIcons/HuntressIceSpear.dds"]=221, - ["Art/2DArt/SkillIcons/HuntressOverchargedSpear.dds"]=222, - ["Art/2DArt/SkillIcons/HuntressRapidAssault.dds"]=223, - ["Art/2DArt/SkillIcons/HuntressRemoteMineSpear.dds"]=224, - ["Art/2DArt/SkillIcons/HuntressSpearField.dds"]=225, - ["Art/2DArt/SkillIcons/HuntressStormSpear.dds"]=226, - ["Art/2DArt/SkillIcons/HuntressSummonCompanion.dds"]=227, - ["Art/2DArt/SkillIcons/HuntressTameBeast.dds"]=228, - ["Art/2DArt/SkillIcons/HuntressTrinitySkillIcon.dds"]=229, - ["Art/2DArt/SkillIcons/HuntressWhirlingSlash.dds"]=230, - ["Art/2DArt/SkillIcons/Hydrosphere.dds"]=231, - ["Art/2DArt/SkillIcons/IceCrash.dds"]=232, - ["Art/2DArt/SkillIcons/IceElementalSummon.dds"]=233, - ["Art/2DArt/SkillIcons/IceSpear.dds"]=237, - ["Art/2DArt/SkillIcons/IceStormSkillStaff.dds"]=238, - ["Art/2DArt/SkillIcons/IceStrike.dds"]=239, - ["Art/2DArt/SkillIcons/IceWall.dds"]=240, - ["Art/2DArt/SkillIcons/Iceshield.dds"]=235, - ["Art/2DArt/SkillIcons/IllusionaryWolf.dds"]=258, - ["Art/2DArt/SkillIcons/ImpaleSkillIcon.dds"]=259, - ["Art/2DArt/SkillIcons/InspiringCry.dds"]=260, - ["Art/2DArt/SkillIcons/LeechLink.dds"]=261, - ["Art/2DArt/SkillIcons/LegionCommanderDemonBoss.dds"]=262, - ["Art/2DArt/SkillIcons/LegionCommanderDemonElite1.dds"]=263, - ["Art/2DArt/SkillIcons/LegionCommanderDemonFodder1.dds"]=264, - ["Art/2DArt/SkillIcons/LegionCommanderDemonFodder2.dds"]=265, - ["Art/2DArt/SkillIcons/LegionCommanderPaleBoss.dds"]=266, - ["Art/2DArt/SkillIcons/LegionCommanderPaleElite1.dds"]=267, - ["Art/2DArt/SkillIcons/LegionCommanderPaleFodder1.dds"]=268, - ["Art/2DArt/SkillIcons/LegionCommanderPaleFodder3.dds"]=269, - ["Art/2DArt/SkillIcons/LightningBoltSkillStaff.dds"]=271, - ["Art/2DArt/SkillIcons/LightningExplosionMine.dds"]=272, - ["Art/2DArt/SkillIcons/LightningGolem.dds"]=273, - ["Art/2DArt/SkillIcons/LightningSpell.dds"]=276, - ["Art/2DArt/SkillIcons/LightningStormSkill.dds"]=277, - ["Art/2DArt/SkillIcons/LineOfAntsSkillIcon.dds"]=278, - ["Art/2DArt/SkillIcons/LingeringMirageSkill.dds"]=279, - ["Art/2DArt/SkillIcons/LivingBombWeaponSkill.dds"]=280, - ["Art/2DArt/SkillIcons/LivingLightningSkill.dds"]=281, - ["Art/2DArt/SkillIcons/MaliceWeaponSkill.dds"]=282, - ["Art/2DArt/SkillIcons/ManaDrainWeaponSkill.dds"]=283, - ["Art/2DArt/SkillIcons/ManaVoid.dds"]=284, - ["Art/2DArt/SkillIcons/MarkoftheBloodhoundSkillIcon.dds"]=285, - ["Art/2DArt/SkillIcons/MeleeInvocationSkill.dds"]=286, - ["Art/2DArt/SkillIcons/MercArtilleryBallista.dds"]=287, - ["Art/2DArt/SkillIcons/MercClusterGrenade.dds"]=288, - ["Art/2DArt/SkillIcons/MercEmergencyReload.dds"]=289, - ["Art/2DArt/SkillIcons/MercRipwireBallista.dds"]=290, - ["Art/2DArt/SkillIcons/MercShardDespoiler.dds"]=291, - ["Art/2DArt/SkillIcons/MetaGenerosity.dds"]=292, - ["Art/2DArt/SkillIcons/MinionFocusFire.dds"]=293, - ["Art/2DArt/SkillIcons/MoltenStrike.dds"]=295, - ["Art/2DArt/SkillIcons/MonkBreachWalk.dds"]=296, - ["Art/2DArt/SkillIcons/MonkChargedStaff.dds"]=297, - ["Art/2DArt/SkillIcons/MonkComboAttack.dds"]=298, - ["Art/2DArt/SkillIcons/MonkFlickerStrikeTeleport.dds"]=299, - ["Art/2DArt/SkillIcons/MonkFreezingBackflip.dds"]=300, - ["Art/2DArt/SkillIcons/MonkFreezingWord.dds"]=301, - ["Art/2DArt/SkillIcons/MonkGaleStrikeSwing.dds"]=302, - ["Art/2DArt/SkillIcons/MonkGatheringStorm.dds"]=303, - ["Art/2DArt/SkillIcons/MonkGhostDance.dds"]=304, - ["Art/2DArt/SkillIcons/MonkGlacialCascade.dds"]=305, - ["Art/2DArt/SkillIcons/MonkHandOfChayula.dds"]=306, - ["Art/2DArt/SkillIcons/MonkIceAmbush.dds"]=307, - ["Art/2DArt/SkillIcons/MonkInvokerMeditate.dds"]=308, - ["Art/2DArt/SkillIcons/MonkInvokerUnboundAvatar.dds"]=309, - ["Art/2DArt/SkillIcons/MonkInvokerWildStrike.dds"]=310, - ["Art/2DArt/SkillIcons/MonkKillingPalm.dds"]=311, - ["Art/2DArt/SkillIcons/MonkLightningStrike.dds"]=312, - ["Art/2DArt/SkillIcons/MonkLingeringIllusion.dds"]=313, - ["Art/2DArt/SkillIcons/MonkMantraofDestruction.dds"]=314, - ["Art/2DArt/SkillIcons/MonkShatteringPalm.dds"]=315, - ["Art/2DArt/SkillIcons/MonkSiphoningStrike.dds"]=316, - ["Art/2DArt/SkillIcons/MonkStormWave.dds"]=317, - ["Art/2DArt/SkillIcons/MonkTempestBell.dds"]=318, - ["Art/2DArt/SkillIcons/MonkTempestFlurry.dds"]=319, - ["Art/2DArt/SkillIcons/MonkVaultingImpact.dds"]=320, - ["Art/2DArt/SkillIcons/MonkVoidIllusion.dds"]=321, - ["Art/2DArt/SkillIcons/MonkWhirlingAssault.dds"]=322, - ["Art/2DArt/SkillIcons/MonkWindPalm.dds"]=323, - ["Art/2DArt/SkillIcons/MurkshaftToads.dds"]=324, - ["Art/2DArt/SkillIcons/OilGrenade.dds"]=325, - ["Art/2DArt/SkillIcons/OneHandAxeDefaultSkill.dds"]=326, - ["Art/2DArt/SkillIcons/OneHandClawDefaultSkill.dds"]=327, - ["Art/2DArt/SkillIcons/OneHandDaggerDefaultSkill.dds"]=328, - ["Art/2DArt/SkillIcons/OneHandMaceDefaultSkill.dds"]=329, - ["Art/2DArt/SkillIcons/OneHandSwordDefaultSkill.dds"]=330, - ["Art/2DArt/SkillIcons/OverwhelmingPressureSkill.dds"]=331, - ["Art/2DArt/SkillIcons/PetrifiedBlood.dds"]=333, - ["Art/2DArt/SkillIcons/PoachersMark.dds"]=334, - ["Art/2DArt/SkillIcons/PowerShot.dds"]=336, - ["Art/2DArt/SkillIcons/PowerShotIncendiary.dds"]=337, - ["Art/2DArt/SkillIcons/PowerShotPermafrost.dds"]=338, - ["Art/2DArt/SkillIcons/PowerShotPhysical.dds"]=339, - ["Art/2DArt/SkillIcons/PowerShotStormblast.dds"]=340, - ["Art/2DArt/SkillIcons/PowerSiphonWeaponSkill.dds"]=341, - ["Art/2DArt/SkillIcons/PrimalStrikesSkillIcon.dds"]=344, - ["Art/2DArt/SkillIcons/PrimalistBloodBoilsSkillIcon.dds"]=342, - ["Art/2DArt/SkillIcons/PrimalistStabCorpseSkillIcon.dds"]=343, - ["Art/2DArt/SkillIcons/PrismaticRain.dds"]=345, - ["Art/2DArt/SkillIcons/Purge.dds"]=349, - ["Art/2DArt/SkillIcons/PurityofChaosWeaponSkill.dds"]=350, - ["Art/2DArt/SkillIcons/PurityofColdWeaponSkill.dds"]=351, - ["Art/2DArt/SkillIcons/PurityofFireWeaponSkill.dds"]=352, - ["Art/2DArt/SkillIcons/PurityofLightningWeaponSkill.dds"]=353, - ["Art/2DArt/SkillIcons/QuarterstaffDefaultSkill.dds"]=354, - ["Art/2DArt/SkillIcons/QuickDash.dds"]=355, - ["Art/2DArt/SkillIcons/QuickStep.dds"]=356, - ["Art/2DArt/SkillIcons/RaccoonPetSkillIcon.dds"]=357, - ["Art/2DArt/SkillIcons/RainOfBlades.dds"]=359, - ["Art/2DArt/SkillIcons/RainOfSpores.dds"]=360, - ["Art/2DArt/SkillIcons/RangerBarrageSkill.dds"]=361, - ["Art/2DArt/SkillIcons/RangerBrewConcoctionBleedSkill.dds"]=362, - ["Art/2DArt/SkillIcons/RangerBrewConcoctionColdSkill.dds"]=363, - ["Art/2DArt/SkillIcons/RangerBrewConcoctionFireSkill.dds"]=364, - ["Art/2DArt/SkillIcons/RangerBrewConcoctionLightningSkill.dds"]=365, - ["Art/2DArt/SkillIcons/RangerBrewConcoctionPoisonSkill.dds"]=366, - ["Art/2DArt/SkillIcons/RangerCombatFrenzySkill.dds"]=367, - ["Art/2DArt/SkillIcons/RangerDeadeyeMirageSkill.dds"]=368, - ["Art/2DArt/SkillIcons/RangerDetonatingArrowSkill.dds"]=369, - ["Art/2DArt/SkillIcons/RangerElectrocutingRodSkill.dds"]=370, - ["Art/2DArt/SkillIcons/RangerFreezingSalvoSkill.dds"]=371, - ["Art/2DArt/SkillIcons/RangerFrostEscapeShot.dds"]=372, - ["Art/2DArt/SkillIcons/RangerGasCloudSkill.dds"]=373, - ["Art/2DArt/SkillIcons/RangerIceShot.dds"]=374, - ["Art/2DArt/SkillIcons/RangerLightningArrow.dds"]=375, - ["Art/2DArt/SkillIcons/RangerLightningRodRainSkill.dds"]=376, - ["Art/2DArt/SkillIcons/RangerMagneticSalvo.dds"]=377, - ["Art/2DArt/SkillIcons/RangerPlagueBearerSkill.dds"]=378, - ["Art/2DArt/SkillIcons/RangerPoisonBloomSkill.dds"]=379, - ["Art/2DArt/SkillIcons/RangerPoisonBurstArrow.dds"]=380, - ["Art/2DArt/SkillIcons/RangerPoisonVineArrowSkill.dds"]=381, - ["Art/2DArt/SkillIcons/RangerRainOfArrowsSkill.dds"]=382, - ["Art/2DArt/SkillIcons/RangerShearingBolts.dds"]=383, - ["Art/2DArt/SkillIcons/RangerShockchainSkill.dds"]=384, - ["Art/2DArt/SkillIcons/RangerShockingArrow.dds"]=385, - ["Art/2DArt/SkillIcons/RangerSnipeShotArrow.dds"]=386, - ["Art/2DArt/SkillIcons/RangerSpiralVolleySkill.dds"]=387, - ["Art/2DArt/SkillIcons/RangerTornadoShotSkill.dds"]=388, - ["Art/2DArt/SkillIcons/RangerToxicDomain.dds"]=389, - ["Art/2DArt/SkillIcons/RangerWindDancerSkill.dds"]=390, - ["Art/2DArt/SkillIcons/RapidShot.dds"]=391, - ["Art/2DArt/SkillIcons/RapidShotIncendiary.dds"]=392, - ["Art/2DArt/SkillIcons/RapidShotPermafrost.dds"]=393, - ["Art/2DArt/SkillIcons/RapidShotPhysical.dds"]=394, - ["Art/2DArt/SkillIcons/RapidShotStormblast.dds"]=395, - ["Art/2DArt/SkillIcons/ReapWeaponSkill.dds"]=396, - ["Art/2DArt/SkillIcons/RequiemChargeSkillCrossbow.dds"]=397, - ["Art/2DArt/SkillIcons/RequiemShotSkillCrossbow.dds"]=398, - ["Art/2DArt/SkillIcons/RhoaMountSkillIcon.dds"]=399, - ["Art/2DArt/SkillIcons/Riposte.dds"]=401, - ["Art/2DArt/SkillIcons/RockGolemSummon.dds"]=402, - ["Art/2DArt/SkillIcons/SaboteurTriggerbots.dds"]=403, - ["Art/2DArt/SkillIcons/ScatteringCalamity.dds"]=404, - ["Art/2DArt/SkillIcons/ScreamingDevastation.dds"]=405, - ["Art/2DArt/SkillIcons/SeveredArmWeaponSkill.dds"]=406, - ["Art/2DArt/SkillIcons/ShamanUnleashHailstorm.dds"]=408, - ["Art/2DArt/SkillIcons/ShamanUnleashLightningStrike.dds"]=409, - ["Art/2DArt/SkillIcons/ShamanUnleashMeteor.dds"]=410, - ["Art/2DArt/SkillIcons/ShankgonneSkill.dds"]=411, - ["Art/2DArt/SkillIcons/ShieldCrush.dds"]=412, - ["Art/2DArt/SkillIcons/ShockGrenade.dds"]=413, - ["Art/2DArt/SkillIcons/ShockingMarkSkill.dds"]=414, - ["Art/2DArt/SkillIcons/ShockwaveSlam.dds"]=415, - ["Art/2DArt/SkillIcons/SiegeCascade.dds"]=416, - ["Art/2DArt/SkillIcons/SiegeCascadeIncendiary.dds"]=417, - ["Art/2DArt/SkillIcons/SiegeCascadePermafrost.dds"]=418, - ["Art/2DArt/SkillIcons/SiegeCascadePhysical.dds"]=419, - ["Art/2DArt/SkillIcons/SiegeCascadeStormblast.dds"]=420, - ["Art/2DArt/SkillIcons/SigilofPowerWeaponSkill.dds"]=421, - ["Art/2DArt/SkillIcons/SiphonElements.dds"]=422, - ["Art/2DArt/SkillIcons/SmithOfKitavaCreateWeaponSkillIcon.dds"]=423, - ["Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds"]=424, - ["Art/2DArt/SkillIcons/SmithOfKitavaTriggerFireballsSkillIcon.dds"]=425, - ["Art/2DArt/SkillIcons/SmokeBomb.dds"]=426, - ["Art/2DArt/SkillIcons/SnappingAdder.dds"]=427, - ["Art/2DArt/SkillIcons/SolarisSpearSkillIcon.dds"]=428, - ["Art/2DArt/SkillIcons/SorceressArc.dds"]=429, - ["Art/2DArt/SkillIcons/SorceressArcticArmour.dds"]=430, - ["Art/2DArt/SkillIcons/SorceressBallLightning.dds"]=431, - ["Art/2DArt/SkillIcons/SorceressBarrierInvocation.dds"]=432, - ["Art/2DArt/SkillIcons/SorceressBlazingCluster.dds"]=433, - ["Art/2DArt/SkillIcons/SorceressBlinkReservation.dds"]=434, - ["Art/2DArt/SkillIcons/SorceressColdSnap.dds"]=435, - ["Art/2DArt/SkillIcons/SorceressComet.dds"]=436, - ["Art/2DArt/SkillIcons/SorceressElementalStorm.dds"]=437, - ["Art/2DArt/SkillIcons/SorceressEnergyRemnants.dds"]=438, - ["Art/2DArt/SkillIcons/SorceressEyeofWinter.dds"]=439, - ["Art/2DArt/SkillIcons/SorceressFireDjinnEmberSlash.dds"]=440, - ["Art/2DArt/SkillIcons/SorceressFireDjinnFlameRunes.dds"]=441, - ["Art/2DArt/SkillIcons/SorceressFireDjinnMeteoricSlam.dds"]=442, - ["Art/2DArt/SkillIcons/SorceressFlameWall.dds"]=444, - ["Art/2DArt/SkillIcons/SorceressFlameblast.dds"]=443, - ["Art/2DArt/SkillIcons/SorceressFrostBomb.dds"]=446, - ["Art/2DArt/SkillIcons/SorceressFrostWall.dds"]=447, - ["Art/2DArt/SkillIcons/SorceressFrostbolt.dds"]=445, - ["Art/2DArt/SkillIcons/SorceressGreaterFireball.dds"]=448, - ["Art/2DArt/SkillIcons/SorceressIceNova.dds"]=449, - ["Art/2DArt/SkillIcons/SorceressIncinerate.dds"]=450, - ["Art/2DArt/SkillIcons/SorceressLightningConduit.dds"]=451, - ["Art/2DArt/SkillIcons/SorceressLightningWarp.dds"]=452, - ["Art/2DArt/SkillIcons/SorceressManaTempest.dds"]=453, - ["Art/2DArt/SkillIcons/SorceressOrbOfStorms.dds"]=454, - ["Art/2DArt/SkillIcons/SorceressRollingMagma.dds"]=455, - ["Art/2DArt/SkillIcons/SorceressSandDjinnCorpseBeetles.dds"]=456, - ["Art/2DArt/SkillIcons/SorceressSandDjinnDaggerslamSkill.dds"]=457, - ["Art/2DArt/SkillIcons/SorceressSandDjinnExplosiveTeleport.dds"]=458, - ["Art/2DArt/SkillIcons/SorceressSolarOrb.dds"]=459, - ["Art/2DArt/SkillIcons/SorceressSpark.dds"]=460, - ["Art/2DArt/SkillIcons/SorceressSummonFireDjinn.dds"]=461, - ["Art/2DArt/SkillIcons/SorceressSummonSandDjinn.dds"]=462, - ["Art/2DArt/SkillIcons/SorceressSummonWaterDjinn.dds"]=463, - ["Art/2DArt/SkillIcons/SorceressTemporalistReloadCooldown.dds"]=464, - ["Art/2DArt/SkillIcons/SorceressTemporalistTemporalRift.dds"]=465, - ["Art/2DArt/SkillIcons/SorceressTemporalistTimeStop.dds"]=466, - ["Art/2DArt/SkillIcons/SorceressTemporalistUnleash.dds"]=467, - ["Art/2DArt/SkillIcons/SorceressWaterDjinnChiilldedGroundBurst.dds"]=468, - ["Art/2DArt/SkillIcons/SorceressWaterDjinnCommandOasis.dds"]=469, - ["Art/2DArt/SkillIcons/SorceressWaterDjinnESRechargeCommand.dds"]=470, - ["Art/2DArt/SkillIcons/SoulLink.dds"]=471, - ["Art/2DArt/SkillIcons/Soulrend.dds"]=472, - ["Art/2DArt/SkillIcons/SpearDefaultSkill.dds"]=474, - ["Art/2DArt/SkillIcons/SpectralSpiral.dds"]=475, - ["Art/2DArt/SkillIcons/SpellDamageAura.dds"]=477, - ["Art/2DArt/SkillIcons/SpellcastingMinionSupport.dds"]=476, - ["Art/2DArt/SkillIcons/SpellslingerWeaponSkill.dds"]=478, - ["Art/2DArt/SkillIcons/SpinningEtherealBlades.dds"]=479, - ["Art/2DArt/SkillIcons/SpireofIreSkillIcon.dds"]=480, - ["Art/2DArt/SkillIcons/StalkingPustule.dds"]=481, - ["Art/2DArt/SkillIcons/StandardBolts.dds"]=482, - ["Art/2DArt/SkillIcons/StormBlade.dds"]=483, - ["Art/2DArt/SkillIcons/StormCascade.dds"]=485, - ["Art/2DArt/SkillIcons/SubterraneanTrap.dds"]=486, - ["Art/2DArt/SkillIcons/SummonCarrionGolem.dds"]=487, - ["Art/2DArt/SkillIcons/SummonElemental.dds"]=488, - ["Art/2DArt/SkillIcons/SummonMercCompanion.dds"]=489, - ["Art/2DArt/SkillIcons/SummonPetrificationStatue.dds"]=490, - ["Art/2DArt/SkillIcons/Support/ExplosiveGrowth.dds"]=491, - ["Art/2DArt/SkillIcons/Support/FanTheFlames.dds"]=492, - ["Art/2DArt/SkillIcons/Support/GroundingShocksSupport.dds"]=493, - ["Art/2DArt/SkillIcons/Support/SkitteringStone.dds"]=494, - ["Art/2DArt/SkillIcons/TacticianDeathFromAboveSkillIcon.dds"]=495, - ["Art/2DArt/SkillIcons/TectonicSlam.dds"]=496, - ["Art/2DArt/SkillIcons/TemporalistSynchronisationofPainSkill.dds"]=498, - ["Art/2DArt/SkillIcons/ThunderfistUniqueSkill.dds"]=499, - ["Art/2DArt/SkillIcons/ThunderousLeapSkillIcon.dds"]=500, - ["Art/2DArt/SkillIcons/TimeAnomaly.dds"]=501, - ["Art/2DArt/SkillIcons/TimeOfNeedSkill.dds"]=502, - ["Art/2DArt/SkillIcons/ToxicGrenade.dds"]=503, - ["Art/2DArt/SkillIcons/TriggerLink.dds"]=505, - ["Art/2DArt/SkillIcons/Triggered Tornado.dds"]=504, - ["Art/2DArt/SkillIcons/TwisterSkillIcon.dds"]=506, - ["Art/2DArt/SkillIcons/TwoHandAxeDefaultSkill.dds"]=507, - ["Art/2DArt/SkillIcons/TwoHandDaggerDefaultSkill.dds"]=508, - ["Art/2DArt/SkillIcons/TwoHandMaceDefaultSkill.dds"]=509, - ["Art/2DArt/SkillIcons/TwoHandSpearDefaultSkill.dds"]=510, - ["Art/2DArt/SkillIcons/TwoHandSwordDefaultSkill.dds"]=511, - ["Art/2DArt/SkillIcons/UnarmedDefaultSkill.dds"]=512, - ["Art/2DArt/SkillIcons/Upheaval.dds"]=513, - ["Art/2DArt/SkillIcons/ValakosLuckLightningCoilSkill.dds"]=514, - ["Art/2DArt/SkillIcons/VesselofWrath.dds"]=515, - ["Art/2DArt/SkillIcons/ViciousHex.dds"]=516, - ["Art/2DArt/SkillIcons/VigilantStrike.dds"]=517, - ["Art/2DArt/SkillIcons/VileDisruption.dds"]=518, - ["Art/2DArt/SkillIcons/ViperStrike.dds"]=519, - ["Art/2DArt/SkillIcons/VoidburstIcon.dds"]=520, - ["Art/2DArt/SkillIcons/VolatileDeadWeaponSkill.dds"]=521, - ["Art/2DArt/SkillIcons/VolcanicEruptionSkillIcon.dds"]=522, - ["Art/2DArt/SkillIcons/VolcanicFissure.dds"]=523, - ["Art/2DArt/SkillIcons/WarBannerSkill.dds"]=525, - ["Art/2DArt/SkillIcons/WarLordsMark.dds"]=527, - ["Art/2DArt/SkillIcons/WardingSteel.dds"]=526, - ["Art/2DArt/SkillIcons/WarriorAncestralCry.dds"]=528, - ["Art/2DArt/SkillIcons/WarriorForgeHammer.dds"]=529, - ["Art/2DArt/SkillIcons/WarriorShieldingCry.dds"]=530, - ["Art/2DArt/SkillIcons/WatcherintheDark1.dds"]=531, - ["Art/2DArt/SkillIcons/WeaponFeastofFlesh.dds"]=532, - ["Art/2DArt/SkillIcons/WindSerpentsFurySkillIcon.dds"]=533, - ["Art/2DArt/SkillIcons/WindstormLanceSkillIcon.dds"]=534, - ["Art/2DArt/SkillIcons/WinnowingFlame.dds"]=535, - ["Art/2DArt/SkillIcons/WitchArcherSkeleton.dds"]=536, - ["Art/2DArt/SkillIcons/WitchArsonistSkeleton.dds"]=537, - ["Art/2DArt/SkillIcons/WitchBindSpectre.dds"]=538, - ["Art/2DArt/SkillIcons/WitchBlasphemy.dds"]=539, - ["Art/2DArt/SkillIcons/WitchBoneCage.dds"]=540, - ["Art/2DArt/SkillIcons/WitchBoneOffering.dds"]=541, - ["Art/2DArt/SkillIcons/WitchBoneStorm.dds"]=542, - ["Art/2DArt/SkillIcons/WitchBruteSkeleton.dds"]=543, - ["Art/2DArt/SkillIcons/WitchClericSkeleton.dds"]=544, - ["Art/2DArt/SkillIcons/WitchConsumeCorpse.dds"]=545, - ["Art/2DArt/SkillIcons/WitchContagion.dds"]=546, - ["Art/2DArt/SkillIcons/WitchDarkEffigy.dds"]=547, - ["Art/2DArt/SkillIcons/WitchDetonateDead.dds"]=548, - ["Art/2DArt/SkillIcons/WitchEssenceDrain.dds"]=549, - ["Art/2DArt/SkillIcons/WitchFirestorm.dds"]=550, - ["Art/2DArt/SkillIcons/WitchFrostSkeleton.dds"]=551, - ["Art/2DArt/SkillIcons/WitchGrimFeast.dds"]=552, - ["Art/2DArt/SkillIcons/WitchHexBlast.dds"]=553, - ["Art/2DArt/SkillIcons/WitchPainOffering.dds"]=554, - ["Art/2DArt/SkillIcons/WitchPowerOffering.dds"]=555, - ["Art/2DArt/SkillIcons/WitchProfaneRitual.dds"]=556, - ["Art/2DArt/SkillIcons/WitchRaiseZombie.dds"]=557, - ["Art/2DArt/SkillIcons/WitchRavenousSwarm.dds"]=558, - ["Art/2DArt/SkillIcons/WitchReaverSkeleton.dds"]=559, - ["Art/2DArt/SkillIcons/WitchReservationRaginSpirits.dds"]=560, - ["Art/2DArt/SkillIcons/WitchSpectre.dds"]=561, - ["Art/2DArt/SkillIcons/WitchStormSkeleton.dds"]=562, - ["Art/2DArt/SkillIcons/WitchSummonInfernalFamiliar.dds"]=563, - ["Art/2DArt/SkillIcons/WitchTransformDemon.dds"]=564, - ["Art/2DArt/SkillIcons/WitchUnearth.dds"]=565, - ["Art/2DArt/SkillIcons/WitchWarriorSkeleton.dds"]=567, - ["Art/2DArt/SkillIcons/WitchWitheringPresence.dds"]=568, - ["Art/2DArt/SkillIcons/WitchunterSpellAegis.dds"]=566, - ["Art/2DArt/SkillIcons/Wither.dds"]=569, - ["Art/2DArt/SkillIcons/WitheringStep.dds"]=570, - ["Art/2DArt/SkillIcons/WrathAuraWeaponSkill.dds"]=571, + ["Art/2DArt/SkillIcons/ChallengersAscentSkill.dds"]=94, + ["Art/2DArt/SkillIcons/ChaosBoltWeaponSkill.dds"]=95, + ["Art/2DArt/SkillIcons/ChaosElementalSummon.dds"]=96, + ["Art/2DArt/SkillIcons/ChargeMasteryDeath.dds"]=98, + ["Art/2DArt/SkillIcons/ChargedBlast.dds"]=97, + ["Art/2DArt/SkillIcons/ChillingAuraSkillStaff.dds"]=99, + ["Art/2DArt/SkillIcons/ChokingMistsSkillIcon.dds"]=100, + ["Art/2DArt/SkillIcons/CobraLash.dds"]=102, + ["Art/2DArt/SkillIcons/CoilOfUndoingSkill.dds"]=103, + ["Art/2DArt/SkillIcons/CoinFlipMicroSkill.dds"]=104, + ["Art/2DArt/SkillIcons/ColdProjectileMine.dds"]=105, + ["Art/2DArt/SkillIcons/CommandShark.dds"]=106, + ["Art/2DArt/SkillIcons/Conductivity.dds"]=107, + ["Art/2DArt/SkillIcons/ConvalescenceSkillIcon.dds"]=108, + ["Art/2DArt/SkillIcons/CorpseEruption.dds"]=110, + ["Art/2DArt/SkillIcons/CorruptedBloodStream.dds"]=111, + ["Art/2DArt/SkillIcons/CrimsonChrysalis.dds"]=112, + ["Art/2DArt/SkillIcons/DarkRitual.dds"]=114, + ["Art/2DArt/SkillIcons/DarkTempest.dds"]=115, + ["Art/2DArt/SkillIcons/DeadeyeMarkMetagemSkill.dds"]=116, + ["Art/2DArt/SkillIcons/DeathPactSkill.dds"]=117, + ["Art/2DArt/SkillIcons/DeathWalk.dds"]=118, + ["Art/2DArt/SkillIcons/DecomposeSkill.dds"]=119, + ["Art/2DArt/SkillIcons/DefianceBannerSkill.dds"]=120, + ["Art/2DArt/SkillIcons/DeliriumAura.dds"]=121, + ["Art/2DArt/SkillIcons/Desecrate.dds"]=122, + ["Art/2DArt/SkillIcons/Despair.dds"]=123, + ["Art/2DArt/SkillIcons/DisciplineWeaponSkill.dds"]=124, + ["Art/2DArt/SkillIcons/Disentegrate.dds"]=125, + ["Art/2DArt/SkillIcons/DivineCry.dds"]=126, + ["Art/2DArt/SkillIcons/DreadBannerSkill.dds"]=127, + ["Art/2DArt/SkillIcons/DruidAwakenedForest.dds"]=128, + ["Art/2DArt/SkillIcons/DruidBarkSkin.dds"]=129, + ["Art/2DArt/SkillIcons/DruidBearMaul.dds"]=130, + ["Art/2DArt/SkillIcons/DruidBearRampage.dds"]=131, + ["Art/2DArt/SkillIcons/DruidBearSlam.dds"]=132, + ["Art/2DArt/SkillIcons/DruidBearWarcry.dds"]=133, + ["Art/2DArt/SkillIcons/DruidBriarpatch.dds"]=134, + ["Art/2DArt/SkillIcons/DruidCrossSlash.dds"]=135, + ["Art/2DArt/SkillIcons/DruidDevourShock.dds"]=136, + ["Art/2DArt/SkillIcons/DruidElectricSpittle.dds"]=137, + ["Art/2DArt/SkillIcons/DruidEntangle.dds"]=138, + ["Art/2DArt/SkillIcons/DruidFeralInvocation.dds"]=139, + ["Art/2DArt/SkillIcons/DruidFlameBreath.dds"]=140, + ["Art/2DArt/SkillIcons/DruidFrozenClaws.dds"]=141, + ["Art/2DArt/SkillIcons/DruidFuryoftheMountain.dds"]=142, + ["Art/2DArt/SkillIcons/DruidLunarAssault.dds"]=143, + ["Art/2DArt/SkillIcons/DruidLunarBlessing.dds"]=144, + ["Art/2DArt/SkillIcons/DruidOracleSpellfluxSkill.dds"]=145, + ["Art/2DArt/SkillIcons/DruidPrimalAvatar.dds"]=146, + ["Art/2DArt/SkillIcons/DruidRollingMagma.dds"]=147, + ["Art/2DArt/SkillIcons/DruidShamanUnleashtheElementsSkill.dds"]=148, + ["Art/2DArt/SkillIcons/DruidSpellTotem.dds"]=149, + ["Art/2DArt/SkillIcons/DruidSummonWolf.dds"]=150, + ["Art/2DArt/SkillIcons/DruidTornado.dds"]=151, + ["Art/2DArt/SkillIcons/DruidTundraHunter.dds"]=152, + ["Art/2DArt/SkillIcons/DruidVolcano.dds"]=153, + ["Art/2DArt/SkillIcons/DruidWalkingCalamity.dds"]=154, + ["Art/2DArt/SkillIcons/DruidWildBeast.dds"]=155, + ["Art/2DArt/SkillIcons/DruidWingBlast.dds"]=156, + ["Art/2DArt/SkillIcons/DruidWolfHowl.dds"]=157, + ["Art/2DArt/SkillIcons/DruidWolfLeapAttack.dds"]=158, + ["Art/2DArt/SkillIcons/DruidWyvernSwipe.dds"]=159, + ["Art/2DArt/SkillIcons/DualWieldAxeDefaultSkill.dds"]=160, + ["Art/2DArt/SkillIcons/DualWieldClawDefaultSkill.dds"]=161, + ["Art/2DArt/SkillIcons/DualWieldMaceDefaultSkill.dds"]=162, + ["Art/2DArt/SkillIcons/DualWieldSwordDefaultSkill.dds"]=163, + ["Art/2DArt/SkillIcons/ElementalConfluxSkill.dds"]=164, + ["Art/2DArt/SkillIcons/ElementalInvocationSkill.dds"]=165, + ["Art/2DArt/SkillIcons/ElementalPowerSkillWand.dds"]=166, + ["Art/2DArt/SkillIcons/ElementalSiphonSkillIcon.dds"]=167, + ["Art/2DArt/SkillIcons/ElementalStrike.dds"]=168, + ["Art/2DArt/SkillIcons/EnervatingNovaWeaponSkill.dds"]=170, + ["Art/2DArt/SkillIcons/EnsnaringArrow.dds"]=172, + ["Art/2DArt/SkillIcons/ExpeditionAnimusExhange.dds"]=173, + ["Art/2DArt/SkillIcons/ExpeditionBitterDead.dds"]=174, + ["Art/2DArt/SkillIcons/ExpeditionCracklingBarrier.dds"]=175, + ["Art/2DArt/SkillIcons/ExpeditionDetonateLiving.dds"]=176, + ["Art/2DArt/SkillIcons/ExpeditionExplosiveTransmutation.dds"]=177, + ["Art/2DArt/SkillIcons/ExpeditionFalseLife.dds"]=178, + ["Art/2DArt/SkillIcons/ExpeditionFragmentsofthePast.dds"]=179, + ["Art/2DArt/SkillIcons/ExpeditionFrostfireNova.dds"]=180, + ["Art/2DArt/SkillIcons/ExpeditionGrimPillars.dds"]=181, + ["Art/2DArt/SkillIcons/ExpeditionHollowShell.dds"]=182, + ["Art/2DArt/SkillIcons/ExpeditionKalguuranWard.dds"]=183, + ["Art/2DArt/SkillIcons/ExpeditionLeylines.dds"]=184, + ["Art/2DArt/SkillIcons/ExpeditionMarkofRepulsion.dds"]=185, + ["Art/2DArt/SkillIcons/ExpeditionRainofBlades.dds"]=186, + ["Art/2DArt/SkillIcons/ExpeditionRemnantsofKalguur.dds"]=187, + ["Art/2DArt/SkillIcons/ExpeditionRunewordHazard.dds"]=188, + ["Art/2DArt/SkillIcons/ExpeditionRunewordManifest.dds"]=189, + ["Art/2DArt/SkillIcons/ExpeditionRunicFortress.dds"]=190, + ["Art/2DArt/SkillIcons/ExpeditionTriskelionCascade.dds"]=191, + ["Art/2DArt/SkillIcons/ExpeditionVerisiumComet.dds"]=192, + ["Art/2DArt/SkillIcons/ExpeditionVerisiumInfusion.dds"]=193, + ["Art/2DArt/SkillIcons/ExpeditionWardboundMinions.dds"]=194, + ["Art/2DArt/SkillIcons/ExpeditionWardforgedMinions.dds"]=195, + ["Art/2DArt/SkillIcons/ExplosiveGrenade.dds"]=196, + ["Art/2DArt/SkillIcons/FangsofFrostSkillIcon.dds"]=197, + ["Art/2DArt/SkillIcons/FireBeam.dds"]=200, + ["Art/2DArt/SkillIcons/FireBurst.dds"]=201, + ["Art/2DArt/SkillIcons/FireElementalSummon.dds"]=202, + ["Art/2DArt/SkillIcons/FireMortarBarrageMine.dds"]=203, + ["Art/2DArt/SkillIcons/FireballSkillStaff.dds"]=199, + ["Art/2DArt/SkillIcons/FirestormV2.dds"]=204, + ["Art/2DArt/SkillIcons/FlailDefaultSkill.dds"]=205, + ["Art/2DArt/SkillIcons/FlameDash.dds"]=206, + ["Art/2DArt/SkillIcons/FlameLink.dds"]=207, + ["Art/2DArt/SkillIcons/FlamesOfJudgement.dds"]=208, + ["Art/2DArt/SkillIcons/Flammability.dds"]=210, + ["Art/2DArt/SkillIcons/FlashbangGrenade.dds"]=211, + ["Art/2DArt/SkillIcons/FluttermothSkillIcon.dds"]=212, + ["Art/2DArt/SkillIcons/FreezingBolts.dds"]=213, + ["Art/2DArt/SkillIcons/FreezingMarkSkill.dds"]=214, + ["Art/2DArt/SkillIcons/FreezingPulse.dds"]=215, + ["Art/2DArt/SkillIcons/FreezingShardsStaff.dds"]=216, + ["Art/2DArt/SkillIcons/FrenziedLungeSkillIcon.dds"]=217, + ["Art/2DArt/SkillIcons/FrostDartsSkillIcon.dds"]=219, + ["Art/2DArt/SkillIcons/FrostFury.dds"]=220, + ["Art/2DArt/SkillIcons/FrostVortex.dds"]=221, + ["Art/2DArt/SkillIcons/Frostbite.dds"]=218, + ["Art/2DArt/SkillIcons/FrozenLegion.dds"]=222, + ["Art/2DArt/SkillIcons/FrozenSphere.dds"]=223, + ["Art/2DArt/SkillIcons/FrozenSweep.dds"]=224, + ["Art/2DArt/SkillIcons/GalvanicFieldWeaponSkill.dds"]=226, + ["Art/2DArt/SkillIcons/GamepadActions/MountRhoa.dds"]=227, + ["Art/2DArt/SkillIcons/GemBarrier.dds"]=228, + ["Art/2DArt/SkillIcons/GhostfuseArrow.dds"]=229, + ["Art/2DArt/SkillIcons/GraveCommand.dds"]=231, + ["Art/2DArt/SkillIcons/GrenadeBallistaSkillIcon.dds"]=232, + ["Art/2DArt/SkillIcons/HandoftheClanSkill.dds"]=234, + ["Art/2DArt/SkillIcons/HarvesterSkill.dds"]=235, + ["Art/2DArt/SkillIcons/HeraldOfAgonySkill.dds"]=236, + ["Art/2DArt/SkillIcons/HeraldOfAshSkill.dds"]=237, + ["Art/2DArt/SkillIcons/HeraldOfBloodSkill.dds"]=238, + ["Art/2DArt/SkillIcons/HeraldOfIceSkill.dds"]=239, + ["Art/2DArt/SkillIcons/HeraldOfLight.dds"]=240, + ["Art/2DArt/SkillIcons/HeraldOfThunderSkill.dds"]=241, + ["Art/2DArt/SkillIcons/HimindrygrSkillIcon.dds"]=242, + ["Art/2DArt/SkillIcons/HinekorasSightUnique.dds"]=243, + ["Art/2DArt/SkillIcons/HolyPath.dds"]=244, + ["Art/2DArt/SkillIcons/HolyRelicSkillIcon.dds"]=245, + ["Art/2DArt/SkillIcons/HuntressBlazingLance.dds"]=246, + ["Art/2DArt/SkillIcons/HuntressBloodHunt.dds"]=247, + ["Art/2DArt/SkillIcons/HuntressBloodHuntSkillIcon.dds"]=248, + ["Art/2DArt/SkillIcons/HuntressBucklerParry.dds"]=249, + ["Art/2DArt/SkillIcons/HuntressExtraElements.dds"]=250, + ["Art/2DArt/SkillIcons/HuntressGlacialLance.dds"]=251, + ["Art/2DArt/SkillIcons/HuntressIceSpear.dds"]=252, + ["Art/2DArt/SkillIcons/HuntressOverchargedSpear.dds"]=253, + ["Art/2DArt/SkillIcons/HuntressRapidAssault.dds"]=254, + ["Art/2DArt/SkillIcons/HuntressRemoteMineSpear.dds"]=255, + ["Art/2DArt/SkillIcons/HuntressSpearField.dds"]=256, + ["Art/2DArt/SkillIcons/HuntressStormSpear.dds"]=257, + ["Art/2DArt/SkillIcons/HuntressSummonCompanion.dds"]=258, + ["Art/2DArt/SkillIcons/HuntressTameBeast.dds"]=259, + ["Art/2DArt/SkillIcons/HuntressTrinitySkillIcon.dds"]=260, + ["Art/2DArt/SkillIcons/HuntressWhirlingSlash.dds"]=261, + ["Art/2DArt/SkillIcons/HuskofDreamsSkill.dds"]=262, + ["Art/2DArt/SkillIcons/Hydrosphere.dds"]=263, + ["Art/2DArt/SkillIcons/IceCrash.dds"]=264, + ["Art/2DArt/SkillIcons/IceElementalSummon.dds"]=265, + ["Art/2DArt/SkillIcons/IceSpear.dds"]=269, + ["Art/2DArt/SkillIcons/IceStormSkillStaff.dds"]=270, + ["Art/2DArt/SkillIcons/IceStrike.dds"]=271, + ["Art/2DArt/SkillIcons/IceWall.dds"]=272, + ["Art/2DArt/SkillIcons/Iceshield.dds"]=267, + ["Art/2DArt/SkillIcons/IllusionaryWolf.dds"]=289, + ["Art/2DArt/SkillIcons/ImpaleSkillIcon.dds"]=290, + ["Art/2DArt/SkillIcons/InspiringCry.dds"]=291, + ["Art/2DArt/SkillIcons/LeechLink.dds"]=292, + ["Art/2DArt/SkillIcons/LegionCommanderDemonBoss.dds"]=293, + ["Art/2DArt/SkillIcons/LegionCommanderDemonElite1.dds"]=294, + ["Art/2DArt/SkillIcons/LegionCommanderDemonFodder1.dds"]=295, + ["Art/2DArt/SkillIcons/LegionCommanderDemonFodder2.dds"]=296, + ["Art/2DArt/SkillIcons/LegionCommanderPaleBoss.dds"]=297, + ["Art/2DArt/SkillIcons/LegionCommanderPaleElite1.dds"]=298, + ["Art/2DArt/SkillIcons/LegionCommanderPaleFodder1.dds"]=299, + ["Art/2DArt/SkillIcons/LegionCommanderPaleFodder3.dds"]=300, + ["Art/2DArt/SkillIcons/LightningBoltSkillStaff.dds"]=302, + ["Art/2DArt/SkillIcons/LightningExplosionMine.dds"]=303, + ["Art/2DArt/SkillIcons/LightningGolem.dds"]=304, + ["Art/2DArt/SkillIcons/LightningSpell.dds"]=307, + ["Art/2DArt/SkillIcons/LightningStormSkill.dds"]=308, + ["Art/2DArt/SkillIcons/LineOfAntsSkillIcon.dds"]=309, + ["Art/2DArt/SkillIcons/LingeringMirageSkill.dds"]=310, + ["Art/2DArt/SkillIcons/LivingBombWeaponSkill.dds"]=311, + ["Art/2DArt/SkillIcons/LivingLightningSkill.dds"]=312, + ["Art/2DArt/SkillIcons/MaliceWeaponSkill.dds"]=313, + ["Art/2DArt/SkillIcons/ManaDrainWeaponSkill.dds"]=314, + ["Art/2DArt/SkillIcons/ManaVoid.dds"]=315, + ["Art/2DArt/SkillIcons/MarkoftheBloodhoundSkillIcon.dds"]=316, + ["Art/2DArt/SkillIcons/MartialArtistCarrySpectralBellSkill.dds"]=317, + ["Art/2DArt/SkillIcons/MartialArtistMantraofIllusionsSkill.dds"]=318, + ["Art/2DArt/SkillIcons/MartialArtistSpectralBellSkill.dds"]=319, + ["Art/2DArt/SkillIcons/MeleeInvocationSkill.dds"]=320, + ["Art/2DArt/SkillIcons/MercArtilleryBallista.dds"]=321, + ["Art/2DArt/SkillIcons/MercClusterGrenade.dds"]=322, + ["Art/2DArt/SkillIcons/MercEmergencyReload.dds"]=323, + ["Art/2DArt/SkillIcons/MercRipwireBallista.dds"]=324, + ["Art/2DArt/SkillIcons/MercShardDespoiler.dds"]=325, + ["Art/2DArt/SkillIcons/MesmerHypnotiseIcon.dds"]=326, + ["Art/2DArt/SkillIcons/MetaGenerosity.dds"]=327, + ["Art/2DArt/SkillIcons/MinionFocusFire.dds"]=328, + ["Art/2DArt/SkillIcons/MistRavenCommand.dds"]=329, + ["Art/2DArt/SkillIcons/MistRavenSummon.dds"]=330, + ["Art/2DArt/SkillIcons/MoltenStrike.dds"]=332, + ["Art/2DArt/SkillIcons/MonkBreachWalk.dds"]=333, + ["Art/2DArt/SkillIcons/MonkChargedStaff.dds"]=334, + ["Art/2DArt/SkillIcons/MonkComboAttack.dds"]=335, + ["Art/2DArt/SkillIcons/MonkFlickerStrikeTeleport.dds"]=336, + ["Art/2DArt/SkillIcons/MonkFreezingBackflip.dds"]=337, + ["Art/2DArt/SkillIcons/MonkFreezingWord.dds"]=338, + ["Art/2DArt/SkillIcons/MonkGaleStrikeSwing.dds"]=339, + ["Art/2DArt/SkillIcons/MonkGatheringStorm.dds"]=340, + ["Art/2DArt/SkillIcons/MonkGhostDance.dds"]=341, + ["Art/2DArt/SkillIcons/MonkGlacialCascade.dds"]=342, + ["Art/2DArt/SkillIcons/MonkHandOfChayula.dds"]=343, + ["Art/2DArt/SkillIcons/MonkIceAmbush.dds"]=344, + ["Art/2DArt/SkillIcons/MonkInvokerMeditate.dds"]=345, + ["Art/2DArt/SkillIcons/MonkInvokerUnboundAvatar.dds"]=346, + ["Art/2DArt/SkillIcons/MonkInvokerWildStrike.dds"]=347, + ["Art/2DArt/SkillIcons/MonkKillingPalm.dds"]=348, + ["Art/2DArt/SkillIcons/MonkLightningStrike.dds"]=349, + ["Art/2DArt/SkillIcons/MonkLingeringIllusion.dds"]=350, + ["Art/2DArt/SkillIcons/MonkMantraofDestruction.dds"]=351, + ["Art/2DArt/SkillIcons/MonkShatteringPalm.dds"]=352, + ["Art/2DArt/SkillIcons/MonkSiphoningStrike.dds"]=353, + ["Art/2DArt/SkillIcons/MonkStormWave.dds"]=354, + ["Art/2DArt/SkillIcons/MonkTempestBell.dds"]=355, + ["Art/2DArt/SkillIcons/MonkTempestFlurry.dds"]=356, + ["Art/2DArt/SkillIcons/MonkVaultingImpact.dds"]=357, + ["Art/2DArt/SkillIcons/MonkVoidIllusion.dds"]=358, + ["Art/2DArt/SkillIcons/MonkWhirlingAssault.dds"]=359, + ["Art/2DArt/SkillIcons/MonkWindPalm.dds"]=360, + ["Art/2DArt/SkillIcons/Murkmaw.dds"]=361, + ["Art/2DArt/SkillIcons/MurkshaftToads.dds"]=362, + ["Art/2DArt/SkillIcons/NattblomSkillIcon.dds"]=363, + ["Art/2DArt/SkillIcons/OilGrenade.dds"]=364, + ["Art/2DArt/SkillIcons/OneHandAxeDefaultSkill.dds"]=365, + ["Art/2DArt/SkillIcons/OneHandClawDefaultSkill.dds"]=366, + ["Art/2DArt/SkillIcons/OneHandDaggerDefaultSkill.dds"]=367, + ["Art/2DArt/SkillIcons/OneHandMaceDefaultSkill.dds"]=368, + ["Art/2DArt/SkillIcons/OneHandSwordDefaultSkill.dds"]=369, + ["Art/2DArt/SkillIcons/OverwhelmingPressureSkill.dds"]=370, + ["Art/2DArt/SkillIcons/PetrifiedBlood.dds"]=372, + ["Art/2DArt/SkillIcons/PowerShot.dds"]=374, + ["Art/2DArt/SkillIcons/PowerShotIncendiary.dds"]=375, + ["Art/2DArt/SkillIcons/PowerShotPermafrost.dds"]=376, + ["Art/2DArt/SkillIcons/PowerShotPhysical.dds"]=377, + ["Art/2DArt/SkillIcons/PowerShotStormblast.dds"]=378, + ["Art/2DArt/SkillIcons/PowerSiphonWeaponSkill.dds"]=379, + ["Art/2DArt/SkillIcons/PrimalStrikesSkillIcon.dds"]=382, + ["Art/2DArt/SkillIcons/PrimalistBloodBoilsSkillIcon.dds"]=380, + ["Art/2DArt/SkillIcons/PrimalistStabCorpseSkillIcon.dds"]=381, + ["Art/2DArt/SkillIcons/PrismaticRain.dds"]=383, + ["Art/2DArt/SkillIcons/Purge.dds"]=387, + ["Art/2DArt/SkillIcons/PurityofChaosWeaponSkill.dds"]=388, + ["Art/2DArt/SkillIcons/PurityofColdWeaponSkill.dds"]=389, + ["Art/2DArt/SkillIcons/PurityofFireWeaponSkill.dds"]=390, + ["Art/2DArt/SkillIcons/PurityofLightningWeaponSkill.dds"]=391, + ["Art/2DArt/SkillIcons/QuarterstaffDefaultSkill.dds"]=392, + ["Art/2DArt/SkillIcons/QuickDash.dds"]=393, + ["Art/2DArt/SkillIcons/QuickStep.dds"]=394, + ["Art/2DArt/SkillIcons/RaccoonPetSkillIcon.dds"]=395, + ["Art/2DArt/SkillIcons/RainOfBlades.dds"]=397, + ["Art/2DArt/SkillIcons/RainOfSpores.dds"]=398, + ["Art/2DArt/SkillIcons/RangerBarrageSkill.dds"]=399, + ["Art/2DArt/SkillIcons/RangerBrewConcoctionBleedSkill.dds"]=400, + ["Art/2DArt/SkillIcons/RangerBrewConcoctionColdSkill.dds"]=401, + ["Art/2DArt/SkillIcons/RangerBrewConcoctionFireSkill.dds"]=402, + ["Art/2DArt/SkillIcons/RangerBrewConcoctionLightningSkill.dds"]=403, + ["Art/2DArt/SkillIcons/RangerBrewConcoctionPoisonSkill.dds"]=404, + ["Art/2DArt/SkillIcons/RangerCombatFrenzySkill.dds"]=405, + ["Art/2DArt/SkillIcons/RangerDeadeyeMirageSkill.dds"]=406, + ["Art/2DArt/SkillIcons/RangerDetonatingArrowSkill.dds"]=407, + ["Art/2DArt/SkillIcons/RangerElectrocutingRodSkill.dds"]=408, + ["Art/2DArt/SkillIcons/RangerFreezingSalvoSkill.dds"]=409, + ["Art/2DArt/SkillIcons/RangerFrostEscapeShot.dds"]=410, + ["Art/2DArt/SkillIcons/RangerGasCloudSkill.dds"]=411, + ["Art/2DArt/SkillIcons/RangerIceShot.dds"]=412, + ["Art/2DArt/SkillIcons/RangerLightningArrow.dds"]=413, + ["Art/2DArt/SkillIcons/RangerLightningRodRainSkill.dds"]=414, + ["Art/2DArt/SkillIcons/RangerMagneticSalvo.dds"]=415, + ["Art/2DArt/SkillIcons/RangerPlagueBearerSkill.dds"]=416, + ["Art/2DArt/SkillIcons/RangerPoisonBloomSkill.dds"]=417, + ["Art/2DArt/SkillIcons/RangerPoisonBurstArrow.dds"]=418, + ["Art/2DArt/SkillIcons/RangerPoisonVineArrowSkill.dds"]=419, + ["Art/2DArt/SkillIcons/RangerRainOfArrowsSkill.dds"]=420, + ["Art/2DArt/SkillIcons/RangerShearingBolts.dds"]=421, + ["Art/2DArt/SkillIcons/RangerShockchainSkill.dds"]=422, + ["Art/2DArt/SkillIcons/RangerShockingArrow.dds"]=423, + ["Art/2DArt/SkillIcons/RangerSnipeShotArrow.dds"]=424, + ["Art/2DArt/SkillIcons/RangerSpiralVolleySkill.dds"]=425, + ["Art/2DArt/SkillIcons/RangerTornadoShotSkill.dds"]=426, + ["Art/2DArt/SkillIcons/RangerToxicDomain.dds"]=427, + ["Art/2DArt/SkillIcons/RangerWindDancerSkill.dds"]=428, + ["Art/2DArt/SkillIcons/RapidShot.dds"]=429, + ["Art/2DArt/SkillIcons/RapidShotIncendiary.dds"]=430, + ["Art/2DArt/SkillIcons/RapidShotPermafrost.dds"]=431, + ["Art/2DArt/SkillIcons/RapidShotPhysical.dds"]=432, + ["Art/2DArt/SkillIcons/RapidShotStormblast.dds"]=433, + ["Art/2DArt/SkillIcons/ReapWeaponSkill.dds"]=434, + ["Art/2DArt/SkillIcons/RequiemChargeSkillCrossbow.dds"]=435, + ["Art/2DArt/SkillIcons/RequiemShotSkillCrossbow.dds"]=436, + ["Art/2DArt/SkillIcons/RhoaMountSkillIcon.dds"]=437, + ["Art/2DArt/SkillIcons/Riposte.dds"]=439, + ["Art/2DArt/SkillIcons/RockGolemSummon.dds"]=440, + ["Art/2DArt/SkillIcons/RoostOfTheRavenKingCommand.dds"]=441, + ["Art/2DArt/SkillIcons/RoostOfTheRavenKingSwarm.dds"]=442, + ["Art/2DArt/SkillIcons/Runeseeker.dds"]=443, + ["Art/2DArt/SkillIcons/SaboteurTriggerbots.dds"]=444, + ["Art/2DArt/SkillIcons/ScatteringCalamity.dds"]=445, + ["Art/2DArt/SkillIcons/ScreamingDevastation.dds"]=446, + ["Art/2DArt/SkillIcons/SerlesMasterwork.dds"]=447, + ["Art/2DArt/SkillIcons/SeveredArmWeaponSkill.dds"]=448, + ["Art/2DArt/SkillIcons/ShamanUnleashHailstorm.dds"]=450, + ["Art/2DArt/SkillIcons/ShamanUnleashLightningStrike.dds"]=451, + ["Art/2DArt/SkillIcons/ShamanUnleashMeteor.dds"]=452, + ["Art/2DArt/SkillIcons/ShankgonneSkill.dds"]=453, + ["Art/2DArt/SkillIcons/ShieldCrush.dds"]=454, + ["Art/2DArt/SkillIcons/ShieldNightfall1.dds"]=455, + ["Art/2DArt/SkillIcons/ShieldNightfall2.dds"]=456, + ["Art/2DArt/SkillIcons/ShockGrenade.dds"]=457, + ["Art/2DArt/SkillIcons/ShockingMarkSkill.dds"]=458, + ["Art/2DArt/SkillIcons/ShockwaveSlam.dds"]=459, + ["Art/2DArt/SkillIcons/SiegeCascadePermafrost.dds"]=460, + ["Art/2DArt/SkillIcons/SiegeCascadePhysical.dds"]=461, + ["Art/2DArt/SkillIcons/SiegeCascadeStormblast.dds"]=462, + ["Art/2DArt/SkillIcons/SigilofPowerWeaponSkill.dds"]=463, + ["Art/2DArt/SkillIcons/SiphonElements.dds"]=464, + ["Art/2DArt/SkillIcons/SmithOfKitavaCreateWeaponSkillIcon.dds"]=465, + ["Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds"]=466, + ["Art/2DArt/SkillIcons/SmithOfKitavaTriggerFireballsSkillIcon.dds"]=467, + ["Art/2DArt/SkillIcons/SmokeBomb.dds"]=468, + ["Art/2DArt/SkillIcons/SnappingAdder.dds"]=469, + ["Art/2DArt/SkillIcons/SolarisSpearSkillIcon.dds"]=470, + ["Art/2DArt/SkillIcons/SorceressArc.dds"]=471, + ["Art/2DArt/SkillIcons/SorceressArcticArmour.dds"]=472, + ["Art/2DArt/SkillIcons/SorceressBallLightning.dds"]=473, + ["Art/2DArt/SkillIcons/SorceressBarrierInvocation.dds"]=474, + ["Art/2DArt/SkillIcons/SorceressBlazingCluster.dds"]=475, + ["Art/2DArt/SkillIcons/SorceressBlinkReservation.dds"]=476, + ["Art/2DArt/SkillIcons/SorceressColdSnap.dds"]=477, + ["Art/2DArt/SkillIcons/SorceressComet.dds"]=478, + ["Art/2DArt/SkillIcons/SorceressElementalStorm.dds"]=479, + ["Art/2DArt/SkillIcons/SorceressEnergyRemnants.dds"]=480, + ["Art/2DArt/SkillIcons/SorceressEyeofWinter.dds"]=481, + ["Art/2DArt/SkillIcons/SorceressFireDjinnEmberSlash.dds"]=482, + ["Art/2DArt/SkillIcons/SorceressFireDjinnFlameRunes.dds"]=483, + ["Art/2DArt/SkillIcons/SorceressFireDjinnMeteoricSlam.dds"]=484, + ["Art/2DArt/SkillIcons/SorceressFlameWall.dds"]=486, + ["Art/2DArt/SkillIcons/SorceressFlameblast.dds"]=485, + ["Art/2DArt/SkillIcons/SorceressFrostBomb.dds"]=488, + ["Art/2DArt/SkillIcons/SorceressFrostWall.dds"]=489, + ["Art/2DArt/SkillIcons/SorceressFrostbolt.dds"]=487, + ["Art/2DArt/SkillIcons/SorceressGreaterFireball.dds"]=490, + ["Art/2DArt/SkillIcons/SorceressIceNova.dds"]=491, + ["Art/2DArt/SkillIcons/SorceressIncinerate.dds"]=492, + ["Art/2DArt/SkillIcons/SorceressLightningConduit.dds"]=493, + ["Art/2DArt/SkillIcons/SorceressLightningWarp.dds"]=494, + ["Art/2DArt/SkillIcons/SorceressManaTempest.dds"]=495, + ["Art/2DArt/SkillIcons/SorceressOrbOfStorms.dds"]=496, + ["Art/2DArt/SkillIcons/SorceressRollingMagma.dds"]=497, + ["Art/2DArt/SkillIcons/SorceressSandDjinnCorpseBeetles.dds"]=498, + ["Art/2DArt/SkillIcons/SorceressSandDjinnDaggerslamSkill.dds"]=499, + ["Art/2DArt/SkillIcons/SorceressSandDjinnExplosiveTeleport.dds"]=500, + ["Art/2DArt/SkillIcons/SorceressSolarOrb.dds"]=501, + ["Art/2DArt/SkillIcons/SorceressSpark.dds"]=502, + ["Art/2DArt/SkillIcons/SorceressSummonFireDjinn.dds"]=503, + ["Art/2DArt/SkillIcons/SorceressSummonSandDjinn.dds"]=504, + ["Art/2DArt/SkillIcons/SorceressSummonWaterDjinn.dds"]=505, + ["Art/2DArt/SkillIcons/SorceressTemporalistReloadCooldown.dds"]=506, + ["Art/2DArt/SkillIcons/SorceressTemporalistTemporalRift.dds"]=507, + ["Art/2DArt/SkillIcons/SorceressTemporalistTimeStop.dds"]=508, + ["Art/2DArt/SkillIcons/SorceressTemporalistUnleash.dds"]=509, + ["Art/2DArt/SkillIcons/SorceressWaterDjinnChiilldedGroundBurst.dds"]=510, + ["Art/2DArt/SkillIcons/SorceressWaterDjinnCommandOasis.dds"]=511, + ["Art/2DArt/SkillIcons/SorceressWaterDjinnESRechargeCommand.dds"]=512, + ["Art/2DArt/SkillIcons/SoulLink.dds"]=513, + ["Art/2DArt/SkillIcons/Soulrend.dds"]=514, + ["Art/2DArt/SkillIcons/SpearDefaultSkill.dds"]=516, + ["Art/2DArt/SkillIcons/SpectralSpiral.dds"]=517, + ["Art/2DArt/SkillIcons/SpellDamageAura.dds"]=519, + ["Art/2DArt/SkillIcons/SpellcastingMinionSupport.dds"]=518, + ["Art/2DArt/SkillIcons/SpellslingerWeaponSkill.dds"]=520, + ["Art/2DArt/SkillIcons/SpinningEtherealBlades.dds"]=521, + ["Art/2DArt/SkillIcons/SpireofIreSkillIcon.dds"]=522, + ["Art/2DArt/SkillIcons/StalkingPustule.dds"]=523, + ["Art/2DArt/SkillIcons/StandardBolts.dds"]=524, + ["Art/2DArt/SkillIcons/StormBlade.dds"]=525, + ["Art/2DArt/SkillIcons/StormCascade.dds"]=527, + ["Art/2DArt/SkillIcons/SubterraneanTrap.dds"]=528, + ["Art/2DArt/SkillIcons/SummonCarrionGolem.dds"]=529, + ["Art/2DArt/SkillIcons/SummonElemental.dds"]=530, + ["Art/2DArt/SkillIcons/SummonMercCompanion.dds"]=531, + ["Art/2DArt/SkillIcons/SummonPetrificationStatue.dds"]=532, + ["Art/2DArt/SkillIcons/Support/ExplosiveGrowth.dds"]=533, + ["Art/2DArt/SkillIcons/Support/FanTheFlames.dds"]=534, + ["Art/2DArt/SkillIcons/Support/GroundingShocksSupport.dds"]=535, + ["Art/2DArt/SkillIcons/Support/SkitteringStone.dds"]=536, + ["Art/2DArt/SkillIcons/TacticianDeathFromAboveSkillIcon.dds"]=537, + ["Art/2DArt/SkillIcons/TectonicSlam.dds"]=538, + ["Art/2DArt/SkillIcons/TemporalistSynchronisationofPainSkill.dds"]=540, + ["Art/2DArt/SkillIcons/TheAncientOrder.dds"]=541, + ["Art/2DArt/SkillIcons/TheHollowMaskSkill.dds"]=542, + ["Art/2DArt/SkillIcons/ThePackLeaderBaseMinionSkill.dds"]=543, + ["Art/2DArt/SkillIcons/ThePackleaderCommandSkill.dds"]=544, + ["Art/2DArt/SkillIcons/TheRedemption.dds"]=545, + ["Art/2DArt/SkillIcons/ThunderfistUniqueSkill.dds"]=546, + ["Art/2DArt/SkillIcons/ThunderousLeapSkillIcon.dds"]=547, + ["Art/2DArt/SkillIcons/TimeAnomaly.dds"]=548, + ["Art/2DArt/SkillIcons/TimeOfNeedSkill.dds"]=549, + ["Art/2DArt/SkillIcons/ToxicGrenade.dds"]=550, + ["Art/2DArt/SkillIcons/TriggerLink.dds"]=552, + ["Art/2DArt/SkillIcons/Triggered Tornado.dds"]=551, + ["Art/2DArt/SkillIcons/TwisterSkillIcon.dds"]=553, + ["Art/2DArt/SkillIcons/TwoHandAxeDefaultSkill.dds"]=554, + ["Art/2DArt/SkillIcons/TwoHandDaggerDefaultSkill.dds"]=555, + ["Art/2DArt/SkillIcons/TwoHandMaceDefaultSkill.dds"]=556, + ["Art/2DArt/SkillIcons/TwoHandSpearDefaultSkill.dds"]=557, + ["Art/2DArt/SkillIcons/TwoHandSwordDefaultSkill.dds"]=558, + ["Art/2DArt/SkillIcons/UnarmedDefaultSkill.dds"]=559, + ["Art/2DArt/SkillIcons/Upheaval.dds"]=560, + ["Art/2DArt/SkillIcons/ValakosLuckLightningCoilSkill.dds"]=561, + ["Art/2DArt/SkillIcons/VesselofWrath.dds"]=562, + ["Art/2DArt/SkillIcons/ViciousHex.dds"]=563, + ["Art/2DArt/SkillIcons/VigilantStrike.dds"]=564, + ["Art/2DArt/SkillIcons/VileDisruption.dds"]=565, + ["Art/2DArt/SkillIcons/ViperStrike.dds"]=566, + ["Art/2DArt/SkillIcons/VoidburstIcon.dds"]=567, + ["Art/2DArt/SkillIcons/VolatileDeadWeaponSkill.dds"]=568, + ["Art/2DArt/SkillIcons/VolcanicEruptionSkillIcon.dds"]=569, + ["Art/2DArt/SkillIcons/VolcanicFissure.dds"]=570, + ["Art/2DArt/SkillIcons/WarBannerSkill.dds"]=572, + ["Art/2DArt/SkillIcons/WardingSteel.dds"]=573, + ["Art/2DArt/SkillIcons/WarriorAncestralCry.dds"]=574, + ["Art/2DArt/SkillIcons/WarriorForgeHammer.dds"]=575, + ["Art/2DArt/SkillIcons/WarriorShieldingCry.dds"]=576, + ["Art/2DArt/SkillIcons/WatcherintheDark1.dds"]=577, + ["Art/2DArt/SkillIcons/WeaponFeastofFlesh.dds"]=578, + ["Art/2DArt/SkillIcons/WildspeakerBearSkill.dds"]=579, + ["Art/2DArt/SkillIcons/WildspeakerOwlFeathersSkill.dds"]=580, + ["Art/2DArt/SkillIcons/WildspeakerVividStagsSkill.dds"]=581, + ["Art/2DArt/SkillIcons/WindSerpentsFurySkillIcon.dds"]=582, + ["Art/2DArt/SkillIcons/WindstormLanceSkillIcon.dds"]=583, + ["Art/2DArt/SkillIcons/WinnowingFlame.dds"]=584, + ["Art/2DArt/SkillIcons/WitchArcherSkeleton.dds"]=585, + ["Art/2DArt/SkillIcons/WitchArsonistSkeleton.dds"]=586, + ["Art/2DArt/SkillIcons/WitchBindSpectre.dds"]=587, + ["Art/2DArt/SkillIcons/WitchBlasphemy.dds"]=588, + ["Art/2DArt/SkillIcons/WitchBoneCage.dds"]=589, + ["Art/2DArt/SkillIcons/WitchBoneOffering.dds"]=590, + ["Art/2DArt/SkillIcons/WitchBoneStorm.dds"]=591, + ["Art/2DArt/SkillIcons/WitchBruteSkeleton.dds"]=592, + ["Art/2DArt/SkillIcons/WitchClericSkeleton.dds"]=593, + ["Art/2DArt/SkillIcons/WitchConsumeCorpse.dds"]=594, + ["Art/2DArt/SkillIcons/WitchContagion.dds"]=595, + ["Art/2DArt/SkillIcons/WitchDarkEffigy.dds"]=596, + ["Art/2DArt/SkillIcons/WitchDetonateDead.dds"]=597, + ["Art/2DArt/SkillIcons/WitchEssenceDrain.dds"]=598, + ["Art/2DArt/SkillIcons/WitchFirestorm.dds"]=599, + ["Art/2DArt/SkillIcons/WitchFrostSkeleton.dds"]=600, + ["Art/2DArt/SkillIcons/WitchGrimFeast.dds"]=601, + ["Art/2DArt/SkillIcons/WitchHexBlast.dds"]=602, + ["Art/2DArt/SkillIcons/WitchPainOffering.dds"]=603, + ["Art/2DArt/SkillIcons/WitchPowerOffering.dds"]=604, + ["Art/2DArt/SkillIcons/WitchProfaneRitual.dds"]=605, + ["Art/2DArt/SkillIcons/WitchRaiseZombie.dds"]=606, + ["Art/2DArt/SkillIcons/WitchRavenousSwarm.dds"]=607, + ["Art/2DArt/SkillIcons/WitchReaverSkeleton.dds"]=608, + ["Art/2DArt/SkillIcons/WitchReservationRaginSpirits.dds"]=609, + ["Art/2DArt/SkillIcons/WitchSpectre.dds"]=610, + ["Art/2DArt/SkillIcons/WitchStormSkeleton.dds"]=611, + ["Art/2DArt/SkillIcons/WitchSummonInfernalFamiliar.dds"]=612, + ["Art/2DArt/SkillIcons/WitchTransformDemon.dds"]=613, + ["Art/2DArt/SkillIcons/WitchUnearth.dds"]=614, + ["Art/2DArt/SkillIcons/WitchWarriorSkeleton.dds"]=616, + ["Art/2DArt/SkillIcons/WitchWitheringPresence.dds"]=617, + ["Art/2DArt/SkillIcons/WitchunterSpellAegis.dds"]=615, + ["Art/2DArt/SkillIcons/Wither.dds"]=618, + ["Art/2DArt/SkillIcons/WitheringStep.dds"]=619, + ["Art/2DArt/SkillIcons/WrathAuraWeaponSkill.dds"]=620, ["Art/2DArt/SkillIcons/arcticbreath.dds"]=14, ["Art/2DArt/SkillIcons/auraarmour.dds"]=19, ["Art/2DArt/SkillIcons/auracold.dds"]=20, @@ -640,51 +690,50 @@ return { ["Art/2DArt/SkillIcons/barrage.dds"]=31, ["Art/2DArt/SkillIcons/bloodrage.dds"]=38, ["Art/2DArt/SkillIcons/burntground.dds"]=70, - ["Art/2DArt/SkillIcons/clusterburst.dds"]=99, - ["Art/2DArt/SkillIcons/conversionstrike.dds"]=106, - ["Art/2DArt/SkillIcons/cyclone.dds"]=109, - ["Art/2DArt/SkillIcons/elementalweakness.dds"]=165, - ["Art/2DArt/SkillIcons/enfeeble.dds"]=167, - ["Art/2DArt/SkillIcons/firearrow.dds"]=171, - ["Art/2DArt/SkillIcons/flamewhip.dds"]=182, - ["Art/2DArt/SkillIcons/fusearrow.dds"]=196, - ["Art/2DArt/SkillIcons/ghostlythrow.dds"]=200, - ["Art/2DArt/SkillIcons/groundfire.dds"]=203, - ["Art/2DArt/SkillIcons/icehammer.dds"]=234, - ["Art/2DArt/SkillIcons/iceshot.dds"]=236, - ["Art/2DArt/SkillIcons/iconarc.dds"]=241, - ["Art/2DArt/SkillIcons/iconbasicattack.dds"]=242, - ["Art/2DArt/SkillIcons/iconbladeflurry.dds"]=243, - ["Art/2DArt/SkillIcons/iconcoldsnap.dds"]=244, - ["Art/2DArt/SkillIcons/iconcorpseexplosion.dds"]=245, - ["Art/2DArt/SkillIcons/icondoubleswing.dds"]=246, - ["Art/2DArt/SkillIcons/icondualswing.dds"]=247, - ["Art/2DArt/SkillIcons/iconelementalhit.dds"]=248, - ["Art/2DArt/SkillIcons/iconfireball.dds"]=249, - ["Art/2DArt/SkillIcons/iconfrenzy.dds"]=250, - ["Art/2DArt/SkillIcons/icongroundslam.dds"]=251, - ["Art/2DArt/SkillIcons/iconinnerfire.dds"]=252, - ["Art/2DArt/SkillIcons/iconleapslam.dds"]=253, - ["Art/2DArt/SkillIcons/icononfire.dds"]=254, - ["Art/2DArt/SkillIcons/iconraiseskeleton.dds"]=255, - ["Art/2DArt/SkillIcons/iconshieldcharge.dds"]=256, - ["Art/2DArt/SkillIcons/iconsplitarrow.dds"]=257, - ["Art/2DArt/SkillIcons/lightningarrow.dds"]=270, - ["Art/2DArt/SkillIcons/lightningshield.dds"]=274, - ["Art/2DArt/SkillIcons/lightningslash.dds"]=275, - ["Art/2DArt/SkillIcons/moltenshield.dds"]=294, - ["Art/2DArt/SkillIcons/passives/DruidOracleRipFromTimeSkill.dds"]=332, - ["Art/2DArt/SkillIcons/poisonarrow.dds"]=335, - ["Art/2DArt/SkillIcons/projectileweakness.dds"]=346, - ["Art/2DArt/SkillIcons/puncture.dds"]=347, - ["Art/2DArt/SkillIcons/punishment.dds"]=348, - ["Art/2DArt/SkillIcons/rainofarrows.dds"]=358, - ["Art/2DArt/SkillIcons/righteousfire.dds"]=400, - ["Art/2DArt/SkillIcons/shadowprojectiles.dds"]=407, - ["Art/2DArt/SkillIcons/spark.dds"]=473, - ["Art/2DArt/SkillIcons/stormcall.dds"]=484, - ["Art/2DArt/SkillIcons/temporalchains.dds"]=497, - ["Art/2DArt/SkillIcons/vulnerability.dds"]=524 + ["Art/2DArt/SkillIcons/clusterburst.dds"]=101, + ["Art/2DArt/SkillIcons/conversionstrike.dds"]=109, + ["Art/2DArt/SkillIcons/cyclone.dds"]=113, + ["Art/2DArt/SkillIcons/elementalweakness.dds"]=169, + ["Art/2DArt/SkillIcons/enfeeble.dds"]=171, + ["Art/2DArt/SkillIcons/firearrow.dds"]=198, + ["Art/2DArt/SkillIcons/flamewhip.dds"]=209, + ["Art/2DArt/SkillIcons/fusearrow.dds"]=225, + ["Art/2DArt/SkillIcons/ghostlythrow.dds"]=230, + ["Art/2DArt/SkillIcons/groundfire.dds"]=233, + ["Art/2DArt/SkillIcons/icehammer.dds"]=266, + ["Art/2DArt/SkillIcons/iceshot.dds"]=268, + ["Art/2DArt/SkillIcons/iconarc.dds"]=273, + ["Art/2DArt/SkillIcons/iconbasicattack.dds"]=274, + ["Art/2DArt/SkillIcons/iconbladeflurry.dds"]=275, + ["Art/2DArt/SkillIcons/iconcoldsnap.dds"]=276, + ["Art/2DArt/SkillIcons/iconcorpseexplosion.dds"]=277, + ["Art/2DArt/SkillIcons/icondoubleswing.dds"]=278, + ["Art/2DArt/SkillIcons/icondualswing.dds"]=279, + ["Art/2DArt/SkillIcons/iconfireball.dds"]=280, + ["Art/2DArt/SkillIcons/iconfrenzy.dds"]=281, + ["Art/2DArt/SkillIcons/icongroundslam.dds"]=282, + ["Art/2DArt/SkillIcons/iconinnerfire.dds"]=283, + ["Art/2DArt/SkillIcons/iconleapslam.dds"]=284, + ["Art/2DArt/SkillIcons/icononfire.dds"]=285, + ["Art/2DArt/SkillIcons/iconraiseskeleton.dds"]=286, + ["Art/2DArt/SkillIcons/iconshieldcharge.dds"]=287, + ["Art/2DArt/SkillIcons/iconsplitarrow.dds"]=288, + ["Art/2DArt/SkillIcons/lightningarrow.dds"]=301, + ["Art/2DArt/SkillIcons/lightningshield.dds"]=305, + ["Art/2DArt/SkillIcons/lightningslash.dds"]=306, + ["Art/2DArt/SkillIcons/moltenshield.dds"]=331, + ["Art/2DArt/SkillIcons/passives/DruidOracleRipFromTimeSkill.dds"]=371, + ["Art/2DArt/SkillIcons/poisonarrow.dds"]=373, + ["Art/2DArt/SkillIcons/projectileweakness.dds"]=384, + ["Art/2DArt/SkillIcons/puncture.dds"]=385, + ["Art/2DArt/SkillIcons/punishment.dds"]=386, + ["Art/2DArt/SkillIcons/rainofarrows.dds"]=396, + ["Art/2DArt/SkillIcons/righteousfire.dds"]=438, + ["Art/2DArt/SkillIcons/shadowprojectiles.dds"]=449, + ["Art/2DArt/SkillIcons/spark.dds"]=515, + ["Art/2DArt/SkillIcons/stormcall.dds"]=526, + ["Art/2DArt/SkillIcons/temporalchains.dds"]=539, + ["Art/2DArt/SkillIcons/vulnerability.dds"]=571 } } } \ No newline at end of file diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index 3786686793..87ab074b20 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -137,7 +137,7 @@ skills["BarragePlayer"] = { baseTypeName = "Barrage", icon = "Art/2DArt/SkillIcons/RangerBarrageSkill.dds", color = 2, - description = "Ready a volley of arrows or spears, Empowering your next Barrageable Bow or Projectile Spear Attack to Repeat multiple times. Consumes your Frenzy Charges on use to add additional repeats.", + description = "Ready a volley of arrows or spears, Empowering your next Repeatable Bow or Projectile Spear Attack to Repeat multiple times. Consumes your Frenzy Charges on use to add additional repeats.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, }, weaponTypes = { ["Bow"] = true, @@ -482,8 +482,8 @@ skills["BloodhoundsMarkPlayer"] = { baseTypeName = "Bloodhound's Mark", icon = "Art/2DArt/SkillIcons/MarkoftheBloodhoundSkillIcon.dds", color = 2, - description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. If they suffer enough Blood Loss while Marked, the Mark will Activate, Consuming itself and releasing an explosion of blood when they are killed or Heavy Stunned. The Mark's duration does not expire while the Marked target is suffering Blood Loss.", - skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, }, + description = "Mark a target, making them suffer Heavy Stun build up from Blood Loss. The Mark will Activate, Consuming itself to Trigger Blood Explosion, when they are Heavy Stunned, or when they are killed if they suffered enough Blood Loss. The Mark's duration does not expire while the Marked target is suffering Blood Loss.", + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Limit] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, }, castTime = 0.5, qualityStats = { { "hunters_mark_%_of_phys_damage_over_time_as_build_up", 2.5 }, @@ -596,59 +596,60 @@ skills["BloodhoundsMarkPlayer"] = { } } skills["BloodhoundsMarkExplosionPlayer"] = { - name = "Bloodhound's Mark Explosion", + name = "Blood Explosion", hidden = true, icon = "Art/2DArt/SkillIcons/MarkoftheBloodhoundSkillIcon.dds", - description = "A violent explosion of blood that deals Attack damage but does not use your weapon's damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, + description = "A violent explosion of blood that deals Physical Attack damage which is not based on your Weapon's damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, [SkillType.NonWeaponAttack] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { - [1] = { critChance = 5, levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, critChance = 5, levelRequirement = 0, }, - [3] = { baseMultiplier = 1.22, critChance = 5, levelRequirement = 0, }, - [4] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, }, - [5] = { baseMultiplier = 1.45, critChance = 5, levelRequirement = 0, }, - [6] = { baseMultiplier = 1.57, critChance = 5, levelRequirement = 0, }, - [7] = { baseMultiplier = 1.7, critChance = 5, levelRequirement = 0, }, - [8] = { baseMultiplier = 1.82, critChance = 5, levelRequirement = 0, }, - [9] = { baseMultiplier = 1.93, critChance = 5, levelRequirement = 0, }, - [10] = { baseMultiplier = 2.05, critChance = 5, levelRequirement = 0, }, - [11] = { baseMultiplier = 2.19, critChance = 5, levelRequirement = 0, }, - [12] = { baseMultiplier = 2.33, critChance = 5, levelRequirement = 0, }, - [13] = { baseMultiplier = 2.49, critChance = 5, levelRequirement = 0, }, - [14] = { baseMultiplier = 2.66, critChance = 5, levelRequirement = 0, }, - [15] = { baseMultiplier = 2.85, critChance = 5, levelRequirement = 0, }, - [16] = { baseMultiplier = 3.05, critChance = 5, levelRequirement = 0, }, - [17] = { baseMultiplier = 3.28, critChance = 5, levelRequirement = 0, }, - [18] = { baseMultiplier = 3.52, critChance = 5, levelRequirement = 0, }, - [19] = { baseMultiplier = 3.79, critChance = 5, levelRequirement = 0, }, - [20] = { baseMultiplier = 4.08, critChance = 5, levelRequirement = 0, }, - [21] = { baseMultiplier = 4.4, critChance = 5, levelRequirement = 0, }, - [22] = { baseMultiplier = 4.74, critChance = 5, levelRequirement = 0, }, - [23] = { baseMultiplier = 5.1, critChance = 5, levelRequirement = 0, }, - [24] = { baseMultiplier = 5.5, critChance = 5, levelRequirement = 0, }, - [25] = { baseMultiplier = 5.92, critChance = 5, levelRequirement = 0, }, - [26] = { baseMultiplier = 6.38, critChance = 5, levelRequirement = 0, }, - [27] = { baseMultiplier = 6.88, critChance = 5, levelRequirement = 0, }, - [28] = { baseMultiplier = 7.41, critChance = 5, levelRequirement = 0, }, - [29] = { baseMultiplier = 7.98, critChance = 5, levelRequirement = 0, }, - [30] = { baseMultiplier = 8.6, critChance = 5, levelRequirement = 0, }, - [31] = { baseMultiplier = 9.26, critChance = 5, levelRequirement = 0, }, - [32] = { baseMultiplier = 9.98, critChance = 5, levelRequirement = 0, }, - [33] = { baseMultiplier = 10.75, critChance = 5, levelRequirement = 0, }, - [34] = { baseMultiplier = 11.58, critChance = 5, levelRequirement = 0, }, - [35] = { baseMultiplier = 12.47, critChance = 5, levelRequirement = 0, }, - [36] = { baseMultiplier = 13.44, critChance = 5, levelRequirement = 0, }, - [37] = { baseMultiplier = 14.48, critChance = 5, levelRequirement = 0, }, - [38] = { baseMultiplier = 15.59, critChance = 5, levelRequirement = 0, }, - [39] = { baseMultiplier = 16.8, critChance = 5, levelRequirement = 0, }, - [40] = { baseMultiplier = 18.1, critChance = 5, levelRequirement = 0, }, + [1] = { critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.22, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.45, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.57, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.82, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.93, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 2.05, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.19, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.33, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.49, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.66, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.85, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 3.05, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 3.28, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 3.52, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 3.79, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 4.08, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 4.4, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 4.74, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 5.1, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 5.5, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 5.92, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 6.38, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 6.88, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 7.41, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 7.98, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 8.6, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 9.26, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 9.98, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 10.75, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 11.58, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 12.47, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 13.44, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 14.48, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 15.59, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 16.8, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 18.1, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Explosion", + label = "Blood Explosion", baseEffectiveness = 2.2999999523163, incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "bloodhounds_mark_explosion", @@ -907,53 +908,58 @@ skills["SummonBeastPlayer"] = { }, constantStats = { { "minion_base_resummon_time_ms", 12000 }, + { "skill_desired_initial_amount", 1 }, }, stats = { + "active_skill_minion_damage_+%_final", "is_resummoning_minion", "display_statset_no_hit_damage", "monster_no_life_es_scaling_from_rarity", }, + notMinionStat = { + "active_skill_minion_damage_+%_final", + }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 8, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 12, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 20, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 24, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 28, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 40, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 44, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 48, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 52, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 56, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 60, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 64, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 68, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 72, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 76, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 80, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 84, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 88, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 92, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 96, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 100, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 104, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 108, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 112, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 116, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 120, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 124, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 128, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 132, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 136, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 140, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 144, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 148, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 152, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 156, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 160, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 164, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -973,46 +979,46 @@ skills["CullTheWeakPlayer"] = { { "chance_to_gain_1_more_charge_%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.6, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.71, levelRequirement = 14, cost = { Mana = 11, }, }, - [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 12, }, }, - [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.82, levelRequirement = 22, cost = { Mana = 14, }, }, - [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.87, levelRequirement = 26, cost = { Mana = 16, }, }, - [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 31, cost = { Mana = 17, }, }, - [10] = { attackSpeedMultiplier = -40, baseMultiplier = 0.96, levelRequirement = 36, cost = { Mana = 19, }, }, - [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.01, levelRequirement = 41, cost = { Mana = 21, }, }, - [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.06, levelRequirement = 46, cost = { Mana = 23, }, }, - [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.11, levelRequirement = 52, cost = { Mana = 25, }, }, - [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.16, levelRequirement = 58, cost = { Mana = 28, }, }, - [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.22, levelRequirement = 64, cost = { Mana = 30, }, }, - [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.28, levelRequirement = 66, cost = { Mana = 33, }, }, - [17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.35, levelRequirement = 72, cost = { Mana = 36, }, }, - [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.41, levelRequirement = 78, cost = { Mana = 39, }, }, - [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.49, levelRequirement = 84, cost = { Mana = 42, }, }, - [20] = { attackSpeedMultiplier = -40, baseMultiplier = 1.56, levelRequirement = 90, cost = { Mana = 46, }, }, - [21] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 90, cost = { Mana = 49, }, }, - [22] = { attackSpeedMultiplier = -40, baseMultiplier = 1.72, levelRequirement = 90, cost = { Mana = 53, }, }, - [23] = { attackSpeedMultiplier = -40, baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 57, }, }, - [24] = { attackSpeedMultiplier = -40, baseMultiplier = 1.9, levelRequirement = 90, cost = { Mana = 62, }, }, - [25] = { attackSpeedMultiplier = -40, baseMultiplier = 1.99, levelRequirement = 90, cost = { Mana = 66, }, }, - [26] = { attackSpeedMultiplier = -40, baseMultiplier = 2.09, levelRequirement = 90, cost = { Mana = 71, }, }, - [27] = { attackSpeedMultiplier = -40, baseMultiplier = 2.19, levelRequirement = 90, cost = { Mana = 76, }, }, - [28] = { attackSpeedMultiplier = -40, baseMultiplier = 2.3, levelRequirement = 90, cost = { Mana = 82, }, }, - [29] = { attackSpeedMultiplier = -40, baseMultiplier = 2.42, levelRequirement = 90, cost = { Mana = 88, }, }, - [30] = { attackSpeedMultiplier = -40, baseMultiplier = 2.54, levelRequirement = 90, cost = { Mana = 94, }, }, - [31] = { attackSpeedMultiplier = -40, baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 100, }, }, - [32] = { attackSpeedMultiplier = -40, baseMultiplier = 2.8, levelRequirement = 90, cost = { Mana = 107, }, }, - [33] = { attackSpeedMultiplier = -40, baseMultiplier = 2.94, levelRequirement = 90, cost = { Mana = 114, }, }, - [34] = { attackSpeedMultiplier = -40, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 122, }, }, - [35] = { attackSpeedMultiplier = -40, baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 130, }, }, - [36] = { attackSpeedMultiplier = -40, baseMultiplier = 3.4, levelRequirement = 90, cost = { Mana = 139, }, }, - [37] = { attackSpeedMultiplier = -40, baseMultiplier = 3.57, levelRequirement = 90, cost = { Mana = 148, }, }, - [38] = { attackSpeedMultiplier = -40, baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 158, }, }, - [39] = { attackSpeedMultiplier = -40, baseMultiplier = 3.94, levelRequirement = 90, cost = { Mana = 168, }, }, - [40] = { attackSpeedMultiplier = -40, baseMultiplier = 4.14, levelRequirement = 90, cost = { Mana = 179, }, }, + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 28, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 30, }, }, + [17] = { attackSpeedMultiplier = -25, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 33, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 36, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 38, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 42, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 45, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 49, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 52, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 56, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 60, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 65, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 70, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 75, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 80, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 86, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 92, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 98, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 105, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 112, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 119, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 127, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 136, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 144, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 154, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 164, }, }, }, statSets = { [1] = { @@ -1026,7 +1032,7 @@ skills["CullTheWeakPlayer"] = { }, constantStats = { { "melee_conditional_step_distance", 15 }, - { "base_melee_dash_range", 65 }, + { "base_melee_dash_range", 75 }, { "active_skill_generic_grace_period_time_ms", 100 }, { "skill_grant_X_frenzy_charges_against_normal_and_magic_monsters", 1 }, { "skill_grant_X_frenzy_charges_against_rare_monsters", 2 }, @@ -1035,6 +1041,7 @@ skills["CullTheWeakPlayer"] = { stats = { "kill_enemy_on_hit_if_under_10%_life", "active_skill_show_cull_range", + "global_always_hit", "is_area_damage", "precise_cursor_targeting_uses_contact_point_height_offset", }, @@ -1089,7 +1096,7 @@ skills["DetonatingArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerDetonatingArrowSkill.dds", color = 2, description = "Channel to charge up before firing off a burning arrow. At maximum stages, the arrow will create a Detonating explosion at the end of its flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.Detonator] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Barrageable] = true, [SkillType.Area] = true, [SkillType.Bow] = true, [SkillType.GainsStages] = true, [SkillType.Detonator] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1461,7 +1468,7 @@ skills["ElectrocutingArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerElectrocutingRodSkill.dds", color = 2, description = "Fire an electrifying arrow that explodes in an Area on Hit. Hitting an enemy will attach an Electrocuting Rod to them, causing all incoming Lightning damage to build up Electrocution. This rod is removed when the enemy is next Electrocuted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.CanBecomeArrowRain] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.Duration] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1908,7 +1915,7 @@ skills["EscapeShotPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerFrostEscapeShot.dds", color = 2, description = "Leap backwards, firing an icy arrow which can Chill or Freeze enemies around the location from which you escaped. This arrow will create Ice Fragments on impact.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Jumping] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CanCancelActions] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1980,7 +1987,7 @@ skills["EscapeShotPlayer"] = { "base_is_projectile", "is_area_damage", "skill_can_fire_arrows", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", "has_modular_projectiles_enabled", "projectile_uses_contact_position", "projectile_uses_contact_direction", @@ -2164,7 +2171,7 @@ skills["ExplosiveSpearPlayer"] = { icon = "Art/2DArt/SkillIcons/HuntressRemoteMineSpear.dds", color = 2, description = "Hurl a single payload Spear that pierces through enemies and lodges in terrain where it lands. The Spear will explode at the end of its Detonation Time or if Detonated. Consumes a Frenzy Charge if you have one to explode immediately, dealing more damage in a cross-shaped area and creating Ignited Ground.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Detonator] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMounted] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.CannotChain] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Detonator] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -2243,7 +2250,7 @@ skills["ExplosiveSpearPlayer"] = { "base_projectiles_cannot_chain", "quality_display_base_number_of_remove_spear_mines_allowed_is_gem", "projectiles_move_with_precise_movement", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", }, levels = { [1] = { 1, statInterpolation = { 1, }, actorLevel = 1, }, @@ -2316,7 +2323,6 @@ skills["ExplosiveSpearPlayer"] = { "projectile_uses_contact_direction", "quality_display_base_number_of_remove_spear_mines_allowed_is_gem", "projectiles_move_with_precise_movement", - "modifiers_to_projectile_count_do_not_apply", "display_statset_hide_usage_stats", "is_area_damage", }, @@ -2396,7 +2402,6 @@ skills["ExplosiveSpearPlayer"] = { "projectile_uses_contact_direction", "quality_display_base_number_of_remove_spear_mines_allowed_is_gem", "projectiles_move_with_precise_movement", - "modifiers_to_projectile_count_do_not_apply", "display_statset_hide_usage_stats", "is_area_damage", "display_fake_attack_hit_ignite", @@ -2650,8 +2655,8 @@ skills["FreezingSalvoPlayer"] = { baseTypeName = "Freezing Salvo", icon = "Art/2DArt/SkillIcons/RangerFreezingSalvoSkill.dds", color = 2, - description = "Passively coalesces icy missiles from the air over time. Using the skill fires a missile, firing an additional missile for each that has been accumulated. Fires an additional missile, up to its current missile count, targeting each Ice Fragment in its Area of effect, causing the Fragments to Detonate immediately.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.UsableWhileMoving] = true, }, + description = "Passively gains Seals over time. Using the skill fires a projectile, and breaks the Seals, Repeating for each of them, and for each additional projectile the skill is given. For each time it Repeats normally, it will also Repeat an additional time targeting a different Ice Fragment in its area of effect if able, Detonating those Ice Fragments immediately. ", + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.CannotChain] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.HasSeals] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.HasSeals] = true, [SkillType.Barrageable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -2719,10 +2724,11 @@ skills["FreezingSalvoPlayer"] = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "freezing_salvo_maximum_number_of_seals", 10 }, + { "base_maximum_seals_for_skill", 10 }, + { "skill_rapid_fire_repeats_per_broken_seal", 1 }, }, stats = { - "freezing_salvo_seals_gain_base_interval_ms", + "base_skill_seal_gain_interval_ms", "active_skill_hit_damage_freeze_multiplier_+%_final", "active_skill_chill_effect_+%_final", "base_is_projectile", @@ -2730,49 +2736,52 @@ skills["FreezingSalvoPlayer"] = { "projectile_uses_contact_position", "can_perform_skill_while_moving", "is_area_damage", - "quality_display_freezing_salvo_is_gem", + "base_modifiers_to_number_of_projectiles_instead_apply_to_repeats", + }, + notMinionStat = { + "base_skill_seal_gain_interval_ms", }, levels = { - [1] = { 750, 50, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 750, 53, 53, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 750, 56, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 750, 59, 59, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 750, 62, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 750, 65, 65, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 750, 68, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 750, 71, 71, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 750, 74, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 750, 77, 77, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 750, 80, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 750, 83, 83, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 750, 86, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 750, 89, 89, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 750, 92, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 750, 95, 95, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 750, 98, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 750, 101, 101, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 750, 104, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 750, 107, 107, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 750, 110, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 750, 113, 113, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 750, 116, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 750, 119, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 750, 122, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 750, 125, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 750, 128, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 750, 131, 131, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 750, 134, 134, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 750, 137, 137, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 750, 138, 138, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 750, 140, 140, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 750, 141, 141, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 750, 143, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 750, 144, 144, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 750, 146, 146, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 750, 147, 147, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 750, 149, 149, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 750, 150, 150, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 750, 152, 152, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 750, 30, 30, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 750, 32, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 750, 34, 34, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 750, 36, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 750, 38, 38, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 750, 40, 40, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 750, 42, 42, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 750, 44, 44, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 750, 46, 46, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 750, 48, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 750, 50, 50, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 750, 52, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 750, 54, 54, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 750, 56, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 750, 58, 58, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 750, 60, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 750, 62, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 750, 64, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 750, 66, 66, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 750, 68, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 750, 70, 70, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 750, 72, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 750, 74, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 750, 76, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 750, 78, 78, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 750, 80, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 750, 82, 82, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 750, 84, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 750, 86, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 750, 88, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 750, 90, 90, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 750, 92, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 750, 94, 94, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 750, 96, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 750, 98, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 750, 100, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 750, 102, 102, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 750, 104, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 750, 106, 106, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 750, 108, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2783,7 +2792,7 @@ skills["GasArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerGasCloudSkill.dds", color = 2, description = "Fire a noxious arrow at the ground, creating a cloud of flammable poisonous gas at the end of its flight. The cloud will detonate if hit by a Detonator skill or if an Ignited enemy touches it, creating a fiery explosion.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -3066,7 +3075,7 @@ skills["GlacialLancePlayer"] = { icon = "Art/2DArt/SkillIcons/HuntressGlacialLance.dds", color = 2, description = "Throw a single Piercing lance that leaves icy fragments in its wake. The fragments Chill nearby enemies. Consumes a Frenzy Charge if possible to cause the glacial fragments created by the first Projectile to explode outwards after a short duration, peppering enemies with shrapnel.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Projectile] = true, [SkillType.Spear] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -3153,7 +3162,7 @@ skills["GlacialLancePlayer"] = { "projectiles_cannot_split", "projectiles_cannot_fork", "projectiles_cannot_return", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { @@ -3235,7 +3244,6 @@ skills["GlacialLancePlayer"] = { "projectile_uses_contact_direction", "quality_display_active_skill_base_secondary_area_of_effect_radius_is_gem", "quality_display_active_skill_base_area_of_effect_radius_is_gem", - "modifiers_to_projectile_count_do_not_apply", "precise_cursor_targeting_uses_contact_point_height_offset", "display_statset_hide_usage_stats", "is_area_damage", @@ -3748,7 +3756,6 @@ skills["IceShotPlayer"] = { { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 }, - { "active_skill_hit_damage_freeze_multiplier_+%_final", 25 }, { "projectile_spread_radius", 45 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 20 }, { "active_skill_projectile_speed_+%_variation_final", 50 }, @@ -3813,7 +3820,7 @@ skills["IceTippedArrowsPlayer"] = { baseTypeName = "Ice-Tipped Arrows", icon = "Art/2DArt/SkillIcons/RangerShearingBolts.dds", color = 2, - description = "Ready your active Bow or Spear, Empowering your next Barrageable Bow or Projectile Spear Attacks to Convert Physical Damage to Cold Damage and create Ice Fragments on Hit. This Skill's cooldown can be bypassed by expending a Frenzy Charge. Cannot Empower Sustained Skills.", + description = "Ready your active Bow or Spear, Empowering your next Repeatable Bow or Projectile Spear Attacks to Convert Physical Damage to Cold Damage and Trigger Ice Fragments on Hit. This Skill's cooldown can be bypassed by expending a Frenzy Charge. Cannot Empower Sustained Skills.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Cooldown] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.CannotTerrainChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, }, weaponTypes = { ["Bow"] = true, @@ -4005,6 +4012,7 @@ skills["IceTippedArrowsIceFragmentPlayer"] = { "triggerable_in_any_set", "usable_while_shapeshifted", "is_area_damage", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { [1] = { actorLevel = 1, }, @@ -4265,7 +4273,7 @@ skills["LightningRodPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerLightningRodRainSkill.dds", color = 2, description = "Fire an arrow that drops from above, creating a Lightning burst. The arrow remains in the ground, and any Chaining Lightning beams can Chain to it. When Chained to, the arrows charge up for a brief period before releasing another Lightning burst. The Lightning Arrow Skill reduces this delay, causing bursts to happen more quickly.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ObjectDurability] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Lightning] = true, [SkillType.Sustained] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ObjectDurability] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4395,7 +4403,7 @@ skills["LightningSpearPlayer"] = { icon = "Art/2DArt/SkillIcons/HuntressStormSpear.dds", color = 2, description = "Throw a single copy of your spear. When it hits an enemy it bursts, firing secondary lightning bolt Projectiles at multiple other enemies within a large area around it. Consumes a Frenzy Charge if possible to cause the main spear to split into multiple copies on impact, each of which then bursts.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -4615,8 +4623,8 @@ skills["MagneticSalvoPlayer"] = { baseTypeName = "Magnetic Salvo", icon = "Art/2DArt/SkillIcons/RangerMagneticSalvo.dds", color = 2, - description = "Aim skyward and fires energy missiles at lingering bolts or arrows created by other Lightning Attacks in front of you. The missiles explode if they land close to a lingering bolt or arrow, dealing more damage in a larger area but destroying that bolt or arrow in the process.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + description = "Aim skyward and fire energy missiles at lingering bolts or arrows created by other Lightning Attacks in front of you. The missiles explode if they land close to a lingering bolt or arrow, dealing more damage in a larger area but destroying that bolt or arrow in the process.", + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Lightning] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4910,9 +4918,10 @@ skills["SupportMirageArcherPlayer"] = { name = "SupportMirageArcherPlayer", hidden = true, support = true, - requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, }, - addSkillTypes = { }, - excludeSkillTypes = { SkillType.HasUsageCondition, }, + requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, SkillType.MirageArcherCanUse, SkillType.AND, }, + addSkillTypes = { SkillType.UsedByClone, SkillType.UsedByProxy, SkillType.SupportedByMirageArcher, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.Melee, SkillType.Meta, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByMirageArcher, SkillType.NOT, SkillType.AND, }, + ignoreMinionTypes = true, qualityStats = { }, levels = { @@ -5025,7 +5034,7 @@ skills["MirageArcherSpawnPlayer"] = { name = "", hidden = true, icon = "", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Proxy] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.UsedByProxy] = true, }, weaponTypes = { ["Bow"] = true, ["Crossbow"] = true, @@ -5144,7 +5153,7 @@ skills["PhantasmalArrowPlayer"] = { baseTypeName = "Phantasmal Arrow", icon = "Art/2DArt/SkillIcons/GhostfuseArrow.dds", fromItem = true, - color = 2, + color = 4, description = "Fires an arrow that embeds where it lands for a short duration. At the end of the duration, the arrow explodes in spectral flame, turning it to ashes and damaging enemies, with a high chance to Ignite. Igniting any enemy with the Explosion also applies Ignite to enemies within range.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Bow] = true, }, weaponTypes = { @@ -5472,46 +5481,46 @@ skills["PlagueBearerNovaPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -5590,13 +5599,13 @@ skills["PoisonBurstArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerPoisonBurstArrow.dds", color = 2, description = "Fire a virulent arrow that creates a burst of Poison on hit, affecting all enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Bow] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "active_skill_poison_effect_+%_final", 1 }, + { "active_skill_poison_effect_+%_final", 0.5 }, }, levels = { [1] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 5, }, }, @@ -5718,15 +5727,16 @@ skills["PoisonBurstArrowPlayer"] = { attack = true, projectile = true, area = true, + duration = true, }, constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 3000 }, }, stats = { "active_skill_base_area_of_effect_radius", - "base_skill_effect_duration", "base_is_projectile", "projectile_uses_contact_position", "projectile_uses_contact_direction", @@ -5744,50 +5754,47 @@ skills["PoisonBurstArrowPlayer"] = { "display_skill_poisons_without_hit", "poison_duration_is_skill_duration", }, - notMinionStat = { - "base_skill_effect_duration", - }, levels = { - [1] = { 15, 3000, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 15, 3100, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, 3200, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 3300, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 3400, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 17, 3500, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, 3600, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 18, 3700, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 19, 3800, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 19, 3900, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 20, 4000, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 20, 4100, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 21, 4200, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 21, 4300, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 22, 4400, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 22, 4500, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 23, 4600, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 23, 4700, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 24, 4800, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 24, 4900, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 25, 5000, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 25, 5100, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 26, 5200, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 26, 5300, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 27, 5400, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 27, 5500, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 28, 5600, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 28, 5700, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 29, 5800, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 29, 5900, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 30, 5950, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 30, 6000, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 31, 6050, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 31, 6100, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 32, 6150, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 32, 6200, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 33, 6250, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 33, 6300, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 34, 6350, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 34, 6400, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 15, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 15, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 17, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 18, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 19, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 19, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 20, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 20, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 21, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 21, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 22, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 23, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 23, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 24, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 24, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 25, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 25, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 26, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 26, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 27, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 27, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 28, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 28, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 29, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 29, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 30, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 30, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 31, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 31, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 32, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 32, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 33, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 33, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 34, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 34, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6078,7 +6085,7 @@ skills["RainOfArrowsPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerRainOfArrowsSkill.dds", color = 2, description = "Fire a hail of arrows into the air, causing them to rain from above. Consumes a Frenzy Charge to fire more arrows.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ConsumesCharges] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -6730,7 +6737,7 @@ skills["ShatteringSpitePlayer"] = { baseTypeName = "Shattering Spite", icon = "Art/2DArt/SkillIcons/AtzirisContempt.dds", fromItem = true, - color = 2, + color = 4, description = "Stamp your spear, destroying all Bloodstone Lances on each enemy in your Presence to cause a damaging explosion around that enemy. Each explosion gains new benefits when reaching higher thresholds of Bloodstone Lances removed from an enemy, causing them to deal more damage, have increased area of effect, and Leech Life from enemies caught in the blast.", skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.Fire] = true, [SkillType.Damage] = true, [SkillType.Spear] = true, }, weaponTypes = { @@ -6741,46 +6748,46 @@ skills["ShatteringSpitePlayer"] = { { "active_skill_base_area_of_effect_radius", 0.1 }, }, levels = { - [1] = { baseMultiplier = 1.25, levelRequirement = 0, }, - [2] = { baseMultiplier = 1.38, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.51, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.65, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.79, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.93, levelRequirement = 18, }, - [7] = { baseMultiplier = 2.08, levelRequirement = 22, }, - [8] = { baseMultiplier = 2.21, levelRequirement = 26, }, - [9] = { baseMultiplier = 2.34, levelRequirement = 31, }, - [10] = { baseMultiplier = 2.47, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.61, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.77, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.94, levelRequirement = 52, }, - [14] = { baseMultiplier = 3.12, levelRequirement = 58, }, - [15] = { baseMultiplier = 3.31, levelRequirement = 64, }, - [16] = { baseMultiplier = 3.52, levelRequirement = 66, }, - [17] = { baseMultiplier = 3.74, levelRequirement = 72, }, - [18] = { baseMultiplier = 3.98, levelRequirement = 78, }, - [19] = { baseMultiplier = 4.24, levelRequirement = 84, }, - [20] = { baseMultiplier = 4.53, levelRequirement = 90, }, - [21] = { baseMultiplier = 4.83, levelRequirement = 90, }, - [22] = { baseMultiplier = 5.15, levelRequirement = 90, }, - [23] = { baseMultiplier = 5.49, levelRequirement = 90, }, - [24] = { baseMultiplier = 5.86, levelRequirement = 90, }, - [25] = { baseMultiplier = 6.25, levelRequirement = 90, }, - [26] = { baseMultiplier = 6.67, levelRequirement = 90, }, - [27] = { baseMultiplier = 7.11, levelRequirement = 90, }, - [28] = { baseMultiplier = 7.58, levelRequirement = 90, }, - [29] = { baseMultiplier = 8.09, levelRequirement = 90, }, - [30] = { baseMultiplier = 8.63, levelRequirement = 90, }, - [31] = { baseMultiplier = 9.2, levelRequirement = 90, }, - [32] = { baseMultiplier = 9.82, levelRequirement = 90, }, - [33] = { baseMultiplier = 10.47, levelRequirement = 90, }, - [34] = { baseMultiplier = 11.17, levelRequirement = 90, }, - [35] = { baseMultiplier = 11.91, levelRequirement = 90, }, - [36] = { baseMultiplier = 12.71, levelRequirement = 90, }, - [37] = { baseMultiplier = 13.55, levelRequirement = 90, }, - [38] = { baseMultiplier = 14.46, levelRequirement = 90, }, - [39] = { baseMultiplier = 15.42, levelRequirement = 90, }, - [40] = { baseMultiplier = 16.45, levelRequirement = 90, }, + [1] = { baseMultiplier = 1.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.38, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.51, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.65, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.79, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.93, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 2.08, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 2.21, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 2.34, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 2.47, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.61, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.77, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.94, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 3.12, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 3.31, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 3.52, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 3.74, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 3.98, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 4.24, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 4.53, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 5.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 5.49, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 5.86, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 6.25, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 6.67, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 7.11, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 7.58, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 8.09, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 8.63, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 9.2, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 9.82, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 10.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 11.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 11.91, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 12.71, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 13.55, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 14.46, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 15.42, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 16.45, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -6796,11 +6803,11 @@ skills["ShatteringSpitePlayer"] = { { "active_skill_base_area_of_effect_radius", 15 }, { "shattering_spite_life_leech_%_with_10_lances", 10 }, { "shattering_spite_area_+%_per_lance_with_at_least_5_lances", 5 }, - { "skill_specific_stat_description_mode", 1 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 40 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, { "total_attack_time_+_ms", 350 }, { "shattering_spite_%_of_presence_radius", 200 }, + { "active_skill_damaging_ailment_effect_+%_final", -50 }, }, stats = { "cannot_inflict_bloodstone_lance", @@ -7073,46 +7080,46 @@ skills["SnipePlayer"] = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 0, cost = { ManaPerMinute = 1053, }, }, - [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 3, cost = { ManaPerMinute = 1218, }, }, - [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.33, levelRequirement = 6, cost = { ManaPerMinute = 1395, }, }, - [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.45, levelRequirement = 10, cost = { ManaPerMinute = 1585, }, }, - [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.57, levelRequirement = 14, cost = { ManaPerMinute = 1788, }, }, - [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.68, levelRequirement = 18, cost = { ManaPerMinute = 2006, }, }, - [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.8, levelRequirement = 22, cost = { ManaPerMinute = 2238, }, }, - [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 26, cost = { ManaPerMinute = 2487, }, }, - [9] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 31, cost = { ManaPerMinute = 2752, }, }, - [10] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 36, cost = { ManaPerMinute = 3036, }, }, - [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.21, levelRequirement = 41, cost = { ManaPerMinute = 3338, }, }, - [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.32, levelRequirement = 46, cost = { ManaPerMinute = 3661, }, }, - [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 52, cost = { ManaPerMinute = 4004, }, }, - [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.56, levelRequirement = 58, cost = { ManaPerMinute = 4370, }, }, - [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 64, cost = { ManaPerMinute = 4760, }, }, - [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.82, levelRequirement = 66, cost = { ManaPerMinute = 5175, }, }, - [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.96, levelRequirement = 72, cost = { ManaPerMinute = 5616, }, }, - [18] = { attackSpeedMultiplier = -55, baseMultiplier = 3.11, levelRequirement = 78, cost = { ManaPerMinute = 6085, }, }, - [19] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 84, cost = { ManaPerMinute = 6584, }, }, - [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.43, levelRequirement = 90, cost = { ManaPerMinute = 7114, }, }, - [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.6, levelRequirement = 90, cost = { ManaPerMinute = 7677, }, }, - [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.78, levelRequirement = 90, cost = { ManaPerMinute = 8274, }, }, - [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.97, levelRequirement = 90, cost = { ManaPerMinute = 8908, }, }, - [24] = { attackSpeedMultiplier = -55, baseMultiplier = 4.17, levelRequirement = 90, cost = { ManaPerMinute = 9581, }, }, - [25] = { attackSpeedMultiplier = -55, baseMultiplier = 4.38, levelRequirement = 90, cost = { ManaPerMinute = 10294, }, }, - [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.6, levelRequirement = 90, cost = { ManaPerMinute = 11051, }, }, - [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.83, levelRequirement = 90, cost = { ManaPerMinute = 11853, }, }, - [28] = { attackSpeedMultiplier = -55, baseMultiplier = 5.07, levelRequirement = 90, cost = { ManaPerMinute = 12703, }, }, - [29] = { attackSpeedMultiplier = -55, baseMultiplier = 5.32, levelRequirement = 90, cost = { ManaPerMinute = 13603, }, }, - [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.59, levelRequirement = 90, cost = { ManaPerMinute = 14556, }, }, - [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.87, levelRequirement = 90, cost = { ManaPerMinute = 15566, }, }, - [32] = { attackSpeedMultiplier = -55, baseMultiplier = 6.16, levelRequirement = 90, cost = { ManaPerMinute = 16635, }, }, - [33] = { attackSpeedMultiplier = -55, baseMultiplier = 6.47, levelRequirement = 90, cost = { ManaPerMinute = 17766, }, }, - [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.79, levelRequirement = 90, cost = { ManaPerMinute = 18963, }, }, - [35] = { attackSpeedMultiplier = -55, baseMultiplier = 7.13, levelRequirement = 90, cost = { ManaPerMinute = 20228, }, }, - [36] = { attackSpeedMultiplier = -55, baseMultiplier = 7.49, levelRequirement = 90, cost = { ManaPerMinute = 21567, }, }, - [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.86, levelRequirement = 90, cost = { ManaPerMinute = 22983, }, }, - [38] = { attackSpeedMultiplier = -55, baseMultiplier = 8.26, levelRequirement = 90, cost = { ManaPerMinute = 24479, }, }, - [39] = { attackSpeedMultiplier = -55, baseMultiplier = 8.67, levelRequirement = 90, cost = { ManaPerMinute = 26061, }, }, - [40] = { attackSpeedMultiplier = -55, baseMultiplier = 9.1, levelRequirement = 90, cost = { ManaPerMinute = 27732, }, }, + [1] = { attackSpeedMultiplier = -55, levelRequirement = 0, cost = { ManaPerMinute = 1053, }, }, + [2] = { attackSpeedMultiplier = -55, baseMultiplier = 1.1, levelRequirement = 3, cost = { ManaPerMinute = 1218, }, }, + [3] = { attackSpeedMultiplier = -55, baseMultiplier = 1.21, levelRequirement = 6, cost = { ManaPerMinute = 1395, }, }, + [4] = { attackSpeedMultiplier = -55, baseMultiplier = 1.32, levelRequirement = 10, cost = { ManaPerMinute = 1585, }, }, + [5] = { attackSpeedMultiplier = -55, baseMultiplier = 1.42, levelRequirement = 14, cost = { ManaPerMinute = 1788, }, }, + [6] = { attackSpeedMultiplier = -55, baseMultiplier = 1.53, levelRequirement = 18, cost = { ManaPerMinute = 2006, }, }, + [7] = { attackSpeedMultiplier = -55, baseMultiplier = 1.64, levelRequirement = 22, cost = { ManaPerMinute = 2238, }, }, + [8] = { attackSpeedMultiplier = -55, baseMultiplier = 1.74, levelRequirement = 26, cost = { ManaPerMinute = 2487, }, }, + [9] = { attackSpeedMultiplier = -55, baseMultiplier = 1.82, levelRequirement = 31, cost = { ManaPerMinute = 2752, }, }, + [10] = { attackSpeedMultiplier = -55, baseMultiplier = 1.91, levelRequirement = 36, cost = { ManaPerMinute = 3036, }, }, + [11] = { attackSpeedMultiplier = -55, baseMultiplier = 2.01, levelRequirement = 41, cost = { ManaPerMinute = 3338, }, }, + [12] = { attackSpeedMultiplier = -55, baseMultiplier = 2.11, levelRequirement = 46, cost = { ManaPerMinute = 3661, }, }, + [13] = { attackSpeedMultiplier = -55, baseMultiplier = 2.22, levelRequirement = 52, cost = { ManaPerMinute = 4004, }, }, + [14] = { attackSpeedMultiplier = -55, baseMultiplier = 2.33, levelRequirement = 58, cost = { ManaPerMinute = 4370, }, }, + [15] = { attackSpeedMultiplier = -55, baseMultiplier = 2.44, levelRequirement = 64, cost = { ManaPerMinute = 4760, }, }, + [16] = { attackSpeedMultiplier = -55, baseMultiplier = 2.57, levelRequirement = 66, cost = { ManaPerMinute = 5175, }, }, + [17] = { attackSpeedMultiplier = -55, baseMultiplier = 2.69, levelRequirement = 72, cost = { ManaPerMinute = 5616, }, }, + [18] = { attackSpeedMultiplier = -55, baseMultiplier = 2.83, levelRequirement = 78, cost = { ManaPerMinute = 6085, }, }, + [19] = { attackSpeedMultiplier = -55, baseMultiplier = 2.97, levelRequirement = 84, cost = { ManaPerMinute = 6584, }, }, + [20] = { attackSpeedMultiplier = -55, baseMultiplier = 3.12, levelRequirement = 90, cost = { ManaPerMinute = 7114, }, }, + [21] = { attackSpeedMultiplier = -55, baseMultiplier = 3.27, levelRequirement = 90, cost = { ManaPerMinute = 7677, }, }, + [22] = { attackSpeedMultiplier = -55, baseMultiplier = 3.44, levelRequirement = 90, cost = { ManaPerMinute = 8274, }, }, + [23] = { attackSpeedMultiplier = -55, baseMultiplier = 3.61, levelRequirement = 90, cost = { ManaPerMinute = 8908, }, }, + [24] = { attackSpeedMultiplier = -55, baseMultiplier = 3.79, levelRequirement = 90, cost = { ManaPerMinute = 9581, }, }, + [25] = { attackSpeedMultiplier = -55, baseMultiplier = 3.98, levelRequirement = 90, cost = { ManaPerMinute = 10294, }, }, + [26] = { attackSpeedMultiplier = -55, baseMultiplier = 4.18, levelRequirement = 90, cost = { ManaPerMinute = 11051, }, }, + [27] = { attackSpeedMultiplier = -55, baseMultiplier = 4.39, levelRequirement = 90, cost = { ManaPerMinute = 11853, }, }, + [28] = { attackSpeedMultiplier = -55, baseMultiplier = 4.61, levelRequirement = 90, cost = { ManaPerMinute = 12703, }, }, + [29] = { attackSpeedMultiplier = -55, baseMultiplier = 4.84, levelRequirement = 90, cost = { ManaPerMinute = 13603, }, }, + [30] = { attackSpeedMultiplier = -55, baseMultiplier = 5.08, levelRequirement = 90, cost = { ManaPerMinute = 14556, }, }, + [31] = { attackSpeedMultiplier = -55, baseMultiplier = 5.33, levelRequirement = 90, cost = { ManaPerMinute = 15566, }, }, + [32] = { attackSpeedMultiplier = -55, baseMultiplier = 5.6, levelRequirement = 90, cost = { ManaPerMinute = 16635, }, }, + [33] = { attackSpeedMultiplier = -55, baseMultiplier = 5.88, levelRequirement = 90, cost = { ManaPerMinute = 17766, }, }, + [34] = { attackSpeedMultiplier = -55, baseMultiplier = 6.18, levelRequirement = 90, cost = { ManaPerMinute = 18963, }, }, + [35] = { attackSpeedMultiplier = -55, baseMultiplier = 6.48, levelRequirement = 90, cost = { ManaPerMinute = 20228, }, }, + [36] = { attackSpeedMultiplier = -55, baseMultiplier = 6.81, levelRequirement = 90, cost = { ManaPerMinute = 21567, }, }, + [37] = { attackSpeedMultiplier = -55, baseMultiplier = 7.15, levelRequirement = 90, cost = { ManaPerMinute = 22983, }, }, + [38] = { attackSpeedMultiplier = -55, baseMultiplier = 7.51, levelRequirement = 90, cost = { ManaPerMinute = 24479, }, }, + [39] = { attackSpeedMultiplier = -55, baseMultiplier = 7.88, levelRequirement = 90, cost = { ManaPerMinute = 26061, }, }, + [40] = { attackSpeedMultiplier = -55, baseMultiplier = 8.28, levelRequirement = 90, cost = { ManaPerMinute = 27732, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeMultiplier = activeSkill.skillData.channelPercentOfAttackTime @@ -7229,46 +7236,46 @@ skills["SnipePlayer"] = { "perfectly_timed", }, levels = { - [1] = { baseMultiplier = 3.75, actorLevel = 1, }, - [2] = { baseMultiplier = 4.13, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 4.54, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 4.96, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 5.37, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 5.79, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 6.23, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 6.63, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 7.01, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 7.41, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 7.84, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 8.31, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 8.81, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 9.35, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 9.92, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 10.55, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 11.22, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 11.95, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 12.73, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 13.58, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 14.49, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 15.45, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 16.48, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 17.58, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 18.75, actorLevel = 136.875, }, - [26] = { baseMultiplier = 20, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 21.33, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 22.75, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 24.27, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 25.89, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 27.61, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 29.45, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 31.41, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 33.51, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 35.74, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 38.12, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 40.66, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 43.37, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 46.25, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 49.34, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 4, actorLevel = 1, }, + [2] = { baseMultiplier = 4.4, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 4.84, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 5.29, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 5.73, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 6.18, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 6.64, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 7.08, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 7.48, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 7.9, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 8.37, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 8.86, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 9.39, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 9.97, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 10.59, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 11.25, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 11.97, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 12.75, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 13.58, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 14.49, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 15.45, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 16.48, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 17.58, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 18.75, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 20, actorLevel = 136.875, }, + [26] = { baseMultiplier = 21.33, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 22.75, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 24.27, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 25.89, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 27.61, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 29.45, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 31.41, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 33.51, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 35.74, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 38.12, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 40.66, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 43.37, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 46.26, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 49.34, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 52.62, actorLevel = 288.29998779297, }, }, }, [3] = { @@ -7291,11 +7298,11 @@ skills["SnipePlayer"] = { { "perfect_strike_timing_window_base_ms", 300 }, { "channel_skill_end_animation_duration_multiplier_permyriad", 2500 }, { "channel_end_duration_as_%_of_attack_time", 133 }, - { "active_skill_base_area_of_effect_radius", 32 }, + { "active_skill_base_area_of_effect_radius", 30 }, { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, - { "snipe_damage_+%_final_if_created_from_unique", 50 }, }, stats = { + "snipe_damage_+%_final_if_created_from_unique", "base_is_projectile", "projectile_uses_contact_position", "projectile_uses_contact_direction", @@ -7313,46 +7320,46 @@ skills["SnipePlayer"] = { "perfectly_timed", }, levels = { - [1] = { baseMultiplier = 7.5, actorLevel = 1, }, - [2] = { baseMultiplier = 8.27, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 9.13, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 10.01, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 10.88, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 11.79, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 12.73, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 13.63, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 14.48, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 15.4, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 16.4, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 17.49, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 18.68, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 19.97, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 21.37, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 22.91, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 24.58, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 26.42, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 28.42, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 30.62, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 32.99, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 35.54, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 38.28, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 41.24, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 44.43, actorLevel = 136.875, }, - [26] = { baseMultiplier = 47.87, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 51.57, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 55.55, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 59.84, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 64.47, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 69.45, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 74.82, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 80.6, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 86.84, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 93.55, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 100.78, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 108.57, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 116.96, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 126, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 135.74, actorLevel = 288.29998779297, }, + [1] = { 31, baseMultiplier = 6.3, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 32, baseMultiplier = 6.93, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 33, baseMultiplier = 7.64, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 34, baseMultiplier = 8.38, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 35, baseMultiplier = 9.12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 36, baseMultiplier = 9.9, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 37, baseMultiplier = 10.74, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 38, baseMultiplier = 11.56, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 39, baseMultiplier = 12.37, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, baseMultiplier = 13.26, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 41, baseMultiplier = 14.25, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 42, baseMultiplier = 15.36, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 43, baseMultiplier = 16.6, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 44, baseMultiplier = 17.98, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 45, baseMultiplier = 19.53, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 46, baseMultiplier = 21.27, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 47, baseMultiplier = 23.22, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 48, baseMultiplier = 25.41, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 49, baseMultiplier = 27.88, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 50, baseMultiplier = 30.67, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 51, baseMultiplier = 33.74, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 52, baseMultiplier = 37.11, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 53, baseMultiplier = 40.82, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 54, baseMultiplier = 44.91, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 55, baseMultiplier = 49.4, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 56, baseMultiplier = 54.34, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 57, baseMultiplier = 59.77, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 58, baseMultiplier = 65.75, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 59, baseMultiplier = 72.32, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 60, baseMultiplier = 79.55, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 61, baseMultiplier = 87.51, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 62, baseMultiplier = 96.26, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 63, baseMultiplier = 105.89, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 64, baseMultiplier = 116.48, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 65, baseMultiplier = 128.13, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 66, baseMultiplier = 140.94, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 67, baseMultiplier = 155.04, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 68, baseMultiplier = 170.54, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 69, baseMultiplier = 187.6, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 70, baseMultiplier = 206.36, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -7363,7 +7370,7 @@ skills["SnipersMarkPlayer"] = { icon = "Art/2DArt/SkillIcons/projectileweakness.dds", color = 2, description = "Mark a target. The next Critical Hit the target receives Activates the Mark, Consuming it to deal extra damage and grant you a Frenzy Charge.", - skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, }, + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GeneratesCharges] = true, [SkillType.Mark] = true, [SkillType.Cooldown] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, }, castTime = 0.5, qualityStats = { { "enemy_additional_critical_strike_multiplier_against_self", 0.75 }, @@ -7838,7 +7845,7 @@ skills["SpearfieldPlayer"] = { { "spear_wall_cm_per_spear", 20 }, { "active_skill_base_secondary_area_of_effect_radius", 6 }, { "spearfield_maim_slows_an_additional_%", 10 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -7910,7 +7917,7 @@ skills["SpearfieldPlayer"] = { { "attack_maximum_action_distance_+", 40 }, { "active_skill_base_secondary_area_of_effect_radius", 6 }, { "spearfield_maim_slows_an_additional_%", 10 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "active_skill_base_area_of_effect_radius", @@ -8108,7 +8115,7 @@ skills["StormLancePlayer"] = { icon = "Art/2DArt/SkillIcons/HuntressOverchargedSpear.dds", color = 2, description = "Throw an electrified Spear that lodges in the ground and periodically zaps nearby enemies with Lightning bolts. If the Spear is Detonated by another Skill, it immediately unleashes a volley of bolts and expires. Consumes a Frenzy Charge if possible to fire bolts more frequently for a shorter duration, automatically Detonate at the end of its duration, and create Shocked Ground on Detonation.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spear] = true, [SkillType.Barrageable] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Sustained] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -8485,7 +8492,7 @@ skills["StormcallerArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerShockingArrow.dds", color = 2, description = "Fire an arrow that embeds where it lands for a short duration. At the end of the duration, a Lightning Bolt strikes the arrow, disintegrating it and damaging enemies, with a high chance to Shock. Shocking any enemy with the Bolt also applies Shock to all enemies near the impact.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CanBecomeArrowRain] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Bow] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -9096,10 +9103,10 @@ skills["TornadoShotPlayer"] = { "can_perform_skill_while_moving", "is_area_damage", "quality_display_tornado_shot_is_gem", - "no_additional_projectiles", "projectile_damage_modifiers_apply_to_skill_dot", "display_statset_no_hit_damage", "display_statset_hide_usage_stats", + "base_modifiers_to_projectile_count_do_not_apply", }, notMinionStat = { "base_skill_effect_duration", @@ -9362,14 +9369,14 @@ skills["ToxicGrowthPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerPoisonBloomSkill.dds", color = 2, description = "Fire a rain of Toxic Pustules into the air. The Pustules deal damage on impact, then Detonate after a delay. They can also be Poisoned, causing them to Detonate faster and more violently.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Bow] = true, [SkillType.Limit] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Rain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlace] = true, [SkillType.Plant] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Bow] = true, [SkillType.Limit] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Rain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlace] = true, [SkillType.Plant] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, castTime = 1, qualityStats = { - { "base_number_of_projectiles", 0.1 }, - { "number_of_poisonbloom_arrow_bloom_allowed", 0.1 }, + { "base_number_of_projectiles", 0.05 }, + { "number_of_poisonbloom_arrow_bloom_allowed", 0.05 }, }, levels = { [1] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 14, }, }, @@ -9426,7 +9433,7 @@ skills["ToxicGrowthPlayer"] = { constantStats = { { "active_skill_base_area_of_effect_radius", 8 }, { "base_skill_detonation_time", 15000 }, - { "base_number_of_projectiles", 4 }, + { "base_number_of_projectiles", 5 }, { "fixed_projectile_spread", 100 }, { "number_of_projectiles_override", 1 }, { "active_skill_base_secondary_area_of_effect_radius", 45 }, @@ -9434,7 +9441,7 @@ skills["ToxicGrowthPlayer"] = { { "toxic_pustule_max_burst_damage_+%_final_from_stored_poison", 300 }, { "toxic_pustule_max_additional_burst_base_radius_+", 15 }, { "range_backflip_conditional_distance", 46 }, - { "number_of_poisonbloom_arrow_bloom_allowed", 12 }, + { "number_of_poisonbloom_arrow_bloom_allowed", 5 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, @@ -9515,7 +9522,7 @@ skills["ToxicGrowthPlayer"] = { { "toxic_pustule_max_burst_damage_+%_final_from_stored_poison", 300 }, { "toxic_pustule_max_additional_burst_base_radius_+", 15 }, { "range_backflip_conditional_distance", 46 }, - { "number_of_poisonbloom_arrow_bloom_allowed", 12 }, + { "number_of_poisonbloom_arrow_bloom_allowed", 5 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, @@ -9706,46 +9713,46 @@ skills["TriggeredTrailOfCaltropsPlayer"] = { { "maximum_caltrops_allowed", 0.25 }, }, levels = { - [1] = { baseMultiplier = 0.35, critChance = 5, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.39, critChance = 5, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.43, critChance = 5, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.47, critChance = 5, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.51, critChance = 5, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.55, critChance = 5, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.59, critChance = 5, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.64, critChance = 5, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.68, critChance = 5, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.72, critChance = 5, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.77, critChance = 5, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.82, critChance = 5, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.87, critChance = 5, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.93, critChance = 5, levelRequirement = 0, }, - [15] = { critChance = 5, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.07, critChance = 5, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.15, critChance = 5, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.23, critChance = 5, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, }, - [20] = { baseMultiplier = 1.43, critChance = 5, levelRequirement = 0, }, - [21] = { baseMultiplier = 1.54, critChance = 5, levelRequirement = 0, }, - [22] = { baseMultiplier = 1.66, critChance = 5, levelRequirement = 0, }, - [23] = { baseMultiplier = 1.79, critChance = 5, levelRequirement = 0, }, - [24] = { baseMultiplier = 1.92, critChance = 5, levelRequirement = 0, }, - [25] = { baseMultiplier = 2.07, critChance = 5, levelRequirement = 0, }, - [26] = { baseMultiplier = 2.23, critChance = 5, levelRequirement = 0, }, - [27] = { baseMultiplier = 2.41, critChance = 5, levelRequirement = 0, }, - [28] = { baseMultiplier = 2.59, critChance = 5, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.79, critChance = 5, levelRequirement = 0, }, - [30] = { baseMultiplier = 3.01, critChance = 5, levelRequirement = 0, }, - [31] = { baseMultiplier = 3.24, critChance = 5, levelRequirement = 0, }, - [32] = { baseMultiplier = 3.49, critChance = 5, levelRequirement = 0, }, - [33] = { baseMultiplier = 3.76, critChance = 5, levelRequirement = 0, }, - [34] = { baseMultiplier = 4.05, critChance = 5, levelRequirement = 0, }, - [35] = { baseMultiplier = 4.37, critChance = 5, levelRequirement = 0, }, - [36] = { baseMultiplier = 4.7, critChance = 5, levelRequirement = 0, }, - [37] = { baseMultiplier = 5.07, critChance = 5, levelRequirement = 0, }, - [38] = { baseMultiplier = 5.46, critChance = 5, levelRequirement = 0, }, - [39] = { baseMultiplier = 5.88, critChance = 5, levelRequirement = 0, }, - [40] = { baseMultiplier = 6.33, critChance = 5, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.35, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.39, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.43, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.47, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.51, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.55, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.59, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.64, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.68, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.72, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.77, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.82, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.87, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.93, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.07, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.15, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.23, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.43, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.54, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.66, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.79, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 1.92, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.07, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.23, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.41, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.59, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.79, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 3.01, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.24, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.49, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.76, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 4.05, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 4.37, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 4.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 5.07, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 5.46, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 5.88, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 6.33, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -9832,7 +9839,7 @@ skills["TwisterPlayer"] = { icon = "Art/2DArt/SkillIcons/TwisterSkillIcon.dds", color = 2, description = "Whip up a twister with a flick of your Spear. The twister moves forward erratically, Blinding and repeatedly Hitting enemies within. If a twister touches a Whirlwind from your other skills, it Consumes the Whirlwind to create additional twisters that deal more damage. Passing over Elemental Ground Surfaces or Consuming an elemental Whirlwind will grant twisters extra damage of that element.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, [SkillType.Wind] = true, [SkillType.InteractsWithElementalGround] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Spear] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.RangedAttack] = true, [SkillType.CannotTerrainChain] = true, [SkillType.Wind] = true, [SkillType.InteractsWithElementalGround] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -9979,7 +9986,7 @@ skills["VineArrowPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerPoisonVineArrowSkill.dds", color = 2, description = "Fire an arrow into the air that lands after a short delay, damaging enemies and causing a plant to spring up at the impact location. The plant sprouts vines that latch onto nearby enemies, Slowing their movement speed and dealing Chaos damage over time. The plant can be Poisoned, causing it to deal more damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, [SkillType.Plant] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Barrageable] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Chaos] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Bow] = true, [SkillType.DamageOverTime] = true, [SkillType.Limit] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, [SkillType.Plant] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -10190,7 +10197,7 @@ skills["VoltaicMarkPlayer"] = { icon = "Art/2DArt/SkillIcons/ShockingMarkSkill.dds", color = 2, description = "Mark a target, making them more susceptible to being Electrocuted. When the Marked target is Electrocuted, the Mark Activates, granting a Buff which gives extra Lightning damage and Consuming the Mark. Marking another target while you have the Buff will remove the Buff.", - skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, }, + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Lightning] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, }, castTime = 0.5, qualityStats = { { "thaumaturgist_mark_hit_damage_electrocute_multiplier_+%", 1 }, @@ -10532,7 +10539,7 @@ skills["WhirlwindLancePlayer"] = { icon = "Art/2DArt/SkillIcons/WindstormLanceSkillIcon.dds", color = 2, description = "Throw a Spear with enough force to kick up a Whirlwind where it lands, Slowing enemies and Blinding them in its area of effect. Entering the Whirlwind collapses it, dealing damage and causing Knockback. Consumes a Frenzy Charge if possible to create the Whirlwind with one more than its normal maximum number of stages.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Wind] = true, [SkillType.InteractsWithElementalGround] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Wind] = true, [SkillType.InteractsWithElementalGround] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Spear"] = true, }, @@ -10907,46 +10914,46 @@ skills["TriggeredWindDancerPlayer"] = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { baseMultiplier = 0.2, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [2] = { baseMultiplier = 0.22, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [3] = { baseMultiplier = 0.24, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [4] = { baseMultiplier = 0.27, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [5] = { baseMultiplier = 0.29, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [6] = { baseMultiplier = 0.31, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [7] = { baseMultiplier = 0.34, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [8] = { baseMultiplier = 0.36, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [9] = { baseMultiplier = 0.39, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [10] = { baseMultiplier = 0.41, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [11] = { baseMultiplier = 0.44, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [12] = { baseMultiplier = 0.47, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [13] = { baseMultiplier = 0.5, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [14] = { baseMultiplier = 0.53, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [15] = { baseMultiplier = 0.57, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [16] = { baseMultiplier = 0.61, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [17] = { baseMultiplier = 0.66, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [18] = { baseMultiplier = 0.7, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [19] = { baseMultiplier = 0.76, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [20] = { baseMultiplier = 0.82, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [21] = { baseMultiplier = 0.88, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [22] = { baseMultiplier = 0.95, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [23] = { baseMultiplier = 1.02, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [24] = { baseMultiplier = 1.1, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [25] = { baseMultiplier = 1.18, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [26] = { baseMultiplier = 1.28, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [27] = { baseMultiplier = 1.38, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [28] = { baseMultiplier = 1.48, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [29] = { baseMultiplier = 1.6, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [30] = { baseMultiplier = 1.72, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [31] = { baseMultiplier = 1.85, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [32] = { baseMultiplier = 2, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [33] = { baseMultiplier = 2.15, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [34] = { baseMultiplier = 2.32, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [35] = { baseMultiplier = 2.49, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [36] = { baseMultiplier = 2.69, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [37] = { baseMultiplier = 2.9, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [38] = { baseMultiplier = 3.12, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [39] = { baseMultiplier = 3.36, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, - [40] = { baseMultiplier = 3.62, cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, + [1] = { baseMultiplier = 0.2, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.22, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.24, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.27, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.29, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.31, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.34, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.36, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.39, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.41, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.44, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.47, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.5, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.53, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.57, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.61, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.66, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.7, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.76, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.82, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.88, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.95, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.02, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 1.1, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 1.18, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 1.28, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 1.38, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 1.48, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 1.6, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 1.72, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 1.85, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 2, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 2.15, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 2.32, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 2.49, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 2.69, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 2.9, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 3.12, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 3.36, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 3.62, cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index dc418c24aa..3781b155e8 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -330,7 +330,7 @@ skills["ArcticArmourPlayer"] = { baseEffectiveness = 1.0900000333786, incrementalEffectiveness = 0.12999999523163, damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "new_new_arctic_armour", baseFlags = { spell = true, }, @@ -1043,6 +1043,7 @@ skills["SupportBlasphemyPlayer"] = { isTrigger = true, ignoreMinionTypes = true, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -1273,46 +1274,46 @@ skills["BlinkPlayer"] = { { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { cooldown = 4.5, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 4.4, levelRequirement = 0, storedUses = 1, }, - [3] = { cooldown = 4.4, levelRequirement = 0, storedUses = 1, }, - [4] = { cooldown = 4.3, levelRequirement = 0, storedUses = 1, }, - [5] = { cooldown = 4.3, levelRequirement = 0, storedUses = 1, }, - [6] = { cooldown = 4.2, levelRequirement = 0, storedUses = 1, }, - [7] = { cooldown = 4.2, levelRequirement = 0, storedUses = 1, }, - [8] = { cooldown = 4.1, levelRequirement = 0, storedUses = 1, }, - [9] = { cooldown = 4.1, levelRequirement = 0, storedUses = 1, }, - [10] = { cooldown = 4, levelRequirement = 0, storedUses = 1, }, - [11] = { cooldown = 4, levelRequirement = 0, storedUses = 1, }, - [12] = { cooldown = 3.9, levelRequirement = 0, storedUses = 1, }, - [13] = { cooldown = 3.9, levelRequirement = 0, storedUses = 1, }, - [14] = { cooldown = 3.8, levelRequirement = 0, storedUses = 1, }, - [15] = { cooldown = 3.8, levelRequirement = 0, storedUses = 1, }, - [16] = { cooldown = 3.7, levelRequirement = 0, storedUses = 1, }, - [17] = { cooldown = 3.7, levelRequirement = 0, storedUses = 1, }, - [18] = { cooldown = 3.6, levelRequirement = 0, storedUses = 1, }, - [19] = { cooldown = 3.6, levelRequirement = 0, storedUses = 1, }, - [20] = { cooldown = 3.5, levelRequirement = 0, storedUses = 1, }, - [21] = { cooldown = 3.5, levelRequirement = 0, storedUses = 1, }, - [22] = { cooldown = 3.4, levelRequirement = 0, storedUses = 1, }, - [23] = { cooldown = 3.4, levelRequirement = 0, storedUses = 1, }, - [24] = { cooldown = 3.3, levelRequirement = 0, storedUses = 1, }, - [25] = { cooldown = 3.3, levelRequirement = 0, storedUses = 1, }, - [26] = { cooldown = 3.2, levelRequirement = 0, storedUses = 1, }, - [27] = { cooldown = 3.2, levelRequirement = 0, storedUses = 1, }, - [28] = { cooldown = 3.1, levelRequirement = 0, storedUses = 1, }, - [29] = { cooldown = 3.1, levelRequirement = 0, storedUses = 1, }, - [30] = { cooldown = 3, levelRequirement = 0, storedUses = 1, }, - [31] = { cooldown = 3, levelRequirement = 0, storedUses = 1, }, - [32] = { cooldown = 2.9, levelRequirement = 0, storedUses = 1, }, - [33] = { cooldown = 2.9, levelRequirement = 0, storedUses = 1, }, - [34] = { cooldown = 2.8, levelRequirement = 0, storedUses = 1, }, - [35] = { cooldown = 2.8, levelRequirement = 0, storedUses = 1, }, - [36] = { cooldown = 2.7, levelRequirement = 0, storedUses = 1, }, - [37] = { cooldown = 2.7, levelRequirement = 0, storedUses = 1, }, - [38] = { cooldown = 2.6, levelRequirement = 0, storedUses = 1, }, - [39] = { cooldown = 2.6, levelRequirement = 0, storedUses = 1, }, - [40] = { cooldown = 2.5, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 4.5, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 4.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 4.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 4.3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 4.3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 4.2, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 4.2, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 4.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 4.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 3.9, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 3.9, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 3.8, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 3.8, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 3.7, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 3.7, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 3.6, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 3.6, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 3.5, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 3.5, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 3.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 3.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 3.3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 3.3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 3.2, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 3.2, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 3.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 3.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 3, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 2.9, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 2.9, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 2.8, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 2.8, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 2.7, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 2.7, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 2.6, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 2.6, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 2.5, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1328,7 +1329,6 @@ skills["BlinkPlayer"] = { stats = { "blink_travel_distance", "base_deal_no_damage", - "skill_is_not_considered_a_skill", "base_skill_enabled_while_mounted", "usable_with_talisman", }, @@ -1768,7 +1768,7 @@ skills["BonestormPlayer"] = { icon = "Art/2DArt/SkillIcons/WitchBoneStorm.dds", color = 3, description = "Channel to conjure a swarm of bone spikes in the air, then release to fire them at enemies and explode. Shrapnel Impales enemies Hit, causing subsequent Attack Hits against those targets to deal extra damage. Consumes your Power Charges to cause much larger explosions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Sustained] = true, [SkillType.Necrotic] = true, [SkillType.Totemable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.Damage] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Necrotic] = true, [SkillType.Totemable] = true, }, castTime = 0.125, qualityStats = { { "active_skill_cast_speed_+%_final", 0.5 }, @@ -1841,7 +1841,6 @@ skills["BonestormPlayer"] = { { "base_number_of_projectiles", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_minimum_channel_time_ms", 300 }, { "bone_spear_target_rectangle_length", 40 }, { "base_number_of_allowed_bone_storm_projectiles", 20 }, @@ -1934,7 +1933,6 @@ skills["BonestormPlayer"] = { constantStats = { { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_minimum_channel_time_ms", 300 }, { "bone_spear_target_rectangle_length", 40 }, { "base_number_of_allowed_bone_storm_projectiles", 20 }, @@ -3047,8 +3045,8 @@ skills["WeaponGrantedChaosboltPlayer"] = { } } skills["ChargeRegulationPlayer"] = { - name = "Charge Infusion", - baseTypeName = "Charge Infusion", + name = "Charge Regulation", + baseTypeName = "Charge Regulation", icon = "Art/2DArt/SkillIcons/ChargeMasteryDeath.dds", color = 3, description = "While active, you gain powerful Buffs based on your active Charges. However, maintaining the Buff Consumes Charges every few seconds.", @@ -3101,7 +3099,7 @@ skills["ChargeRegulationPlayer"] = { }, statSets = { [1] = { - label = "Charge Infusion", + label = "Charge Regulation", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "charge_regulation", statMap = { @@ -3113,8 +3111,10 @@ skills["ChargeRegulationPlayer"] = { ["charge_mastery_crit_chance_+%_final_with_power_charges"] = { mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), }, - ["charge_mastery_defences_+%_final_with_endurance_charges"] = { - mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + ["charge_mastery_armour_evasion_energy_shield_+%_final_with_endurance_charges"] = { + mod("Armour", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + mod("Evasion", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + mod("EnergyShield", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), }, }, baseFlags = { @@ -3122,7 +3122,7 @@ skills["ChargeRegulationPlayer"] = { stats = { "charge_mastery_skill_speed_+%_with_frenzy_charges", "charge_mastery_crit_chance_+%_final_with_power_charges", - "charge_mastery_defences_+%_final_with_endurance_charges", + "charge_mastery_armour_evasion_energy_shield_+%_final_with_endurance_charges", "consume_frenzy_power_and_endurance_charge_every_x_ms", "base_deal_no_damage", }, @@ -3177,7 +3177,7 @@ skills["ChargedStaffPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkChargedStaff.dds", color = 3, description = "Consume all Power Charges to charge your Quarterstaff with electricity, adding Lightning damage and a Lightning shockwave to your Quarterstaff Attacks. Reusing this skill while the Buff is active adds to the Buff's duration and damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.Lightning] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.Lightning] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -3307,7 +3307,7 @@ skills["ChargedStaffShockwavePlayer"] = { name = "Charged Shockwave", hidden = true, icon = "Art/2DArt/SkillIcons/MonkChargedStaff.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.AttackInPlace] = true, [SkillType.Lightning] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, [SkillType.Lightning] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -3421,6 +3421,222 @@ skills["ChargedStaffShockwavePlayer"] = { }, } } +skills["CoilingBoltsPlayer"] = { + name = "Coiling Bolts", + baseTypeName = "Coiling Bolts", + icon = "Art/2DArt/SkillIcons/CoilOfUndoingSkill.dds", + color = 3, + description = "Simultaneously fires a Physical Projectile and a Chaos Projectile at the target. These projectiles Chain through any number of Cursed targets.", + skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + castTime = 1, + qualityStats = { + { "projectile_number_to_split", 0.1 }, + }, + levels = { + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Physical", + baseEffectiveness = 3, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "monster_projectile_variation", 1109 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "chaining_range_+%", 50 }, + { "projectile_number_to_split", 2 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "base_is_projectile", + "projectile_uses_contact_position", + "check_for_targets_between_initiator_and_projectile_source", + "maintain_projectile_direction_when_using_contact_position", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + "modifiers_to_number_of_projectiles_instead_apply_to_splitting", + "always_chain_from_cursed_enemies", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 13, 19, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 17, 26, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 28, 42, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, 52, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 42, 63, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 70, 104, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 81, 122, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 94, 141, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 109, 163, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 125, 188, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 144, 216, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 165, 247, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 188, 283, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 215, 322, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 245, 367, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 279, 418, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 317, 476, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 360, 540, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 409, 614, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 465, 697, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 528, 792, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 599, 899, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 681, 1021, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 773, 1160, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 879, 1318, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 999, 1498, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1136, 1704, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1293, 1939, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1472, 2208, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1677, 2516, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1913, 2869, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2183, 3274, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2493, 3740, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2850, 4275, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 3261, 4892, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3735, 5603, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Chaos", + baseEffectiveness = 3, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "monster_projectile_variation", 1109 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "chaining_range_+%", 50 }, + { "projectile_number_to_split", 2 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "base_is_projectile", + "projectile_uses_contact_position", + "check_for_targets_between_initiator_and_projectile_source", + "maintain_projectile_direction_when_using_contact_position", + "can_perform_skill_while_moving", + "should_use_additive_aiming_animation", + "precise_cursor_targeting_uses_contact_point_height_offset", + "modifiers_to_number_of_projectiles_instead_apply_to_splitting", + "always_chain_from_cursed_enemies", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + }, + levels = { + [1] = { 0, 0, 8, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 11, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 15, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 19, 36, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 25, 46, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 30, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 37, 68, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 44, 81, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 52, 96, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 61, 113, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 71, 132, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 82, 153, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 95, 177, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 110, 204, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 126, 234, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 144, 268, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 165, 306, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 188, 349, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 214, 398, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 244, 453, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 277, 515, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 315, 585, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 358, 665, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 407, 755, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 462, 858, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 525, 974, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 596, 1106, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 677, 1257, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 769, 1428, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 874, 1623, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 994, 1846, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 1131, 2101, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 1288, 2392, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1468, 2726, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1674, 3108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1910, 3547, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 2181, 4051, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 2494, 4631, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2854, 5300, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 3269, 6070, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["CometPlayer"] = { name = "Comet", baseTypeName = "Comet", @@ -3430,7 +3646,7 @@ skills["CometPlayer"] = { 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.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, }, castTime = 1, qualityStats = { - { "skill_echo_chance_%", 0.5 }, + { "base_spell_%_chance_to_echo", 0.5 }, }, levels = { [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 17, }, }, @@ -3477,7 +3693,7 @@ skills["CometPlayer"] = { statSets = { [1] = { label = "Comet", - baseEffectiveness = 7.8000001907349, + baseEffectiveness = 7.4099998474121, incrementalEffectiveness = 0.12999999523163, damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "comet", @@ -3488,7 +3704,7 @@ skills["CometPlayer"] = { constantStats = { { "range_backflip_conditional_distance", 30 }, { "total_cast_time_+_ms", 1000 }, - { "comet_explosion_delay_ms", 470 }, + { "comet_fall_time_ms", 550 }, { "active_skill_base_area_of_effect_radius", 28 }, }, stats = { @@ -3503,51 +3719,51 @@ skills["CometPlayer"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 33, 49, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 74, 111, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 92, 138, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 112, 168, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 135, 202, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 161, 241, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 190, 285, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 261, 391, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 304, 456, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 353, 529, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 472, 708, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 544, 816, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 627, 940, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 721, 1081, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 829, 1243, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 952, 1428, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 1094, 1641, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 1256, 1884, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 1443, 2164, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 1657, 2486, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 1904, 2856, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 2189, 3284, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 2518, 3777, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 2898, 4346, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 3337, 5006, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 3847, 5770, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 4438, 6656, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 5124, 7686, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 5923, 8885, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 6854, 10281, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 7939, 11909, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 9208, 13811, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 10691, 16037, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 12430, 18645, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 14470, 21705, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 56, 83, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 70, 106, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 87, 131, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 106, 160, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 153, 229, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 180, 271, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 212, 318, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 248, 372, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 289, 433, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 335, 503, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 388, 582, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 448, 672, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 517, 775, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 595, 893, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 685, 1027, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 787, 1181, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 905, 1357, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1039, 1559, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1193, 1790, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1371, 2056, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1574, 2362, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1809, 2714, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2080, 3119, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2392, 3588, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2753, 4129, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 3170, 4756, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 3654, 5481, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 4216, 6324, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 4868, 7302, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 5627, 8440, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 6511, 9766, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 7542, 11313, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8747, 13121, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 10157, 15235, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 11808, 17713, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 13746, 20619, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { label = "Fire-Infused", - baseEffectiveness = 9.75, + baseEffectiveness = 7.4099998474121, incrementalEffectiveness = 0.12999999523163, damageIncrementalEffectiveness = 0.0096000004559755, statDescriptionScope = "comet", @@ -3558,7 +3774,7 @@ skills["CometPlayer"] = { constantStats = { { "range_backflip_conditional_distance", 30 }, { "total_cast_time_+_ms", 1000 }, - { "comet_explosion_delay_ms", 470 }, + { "comet_fall_time_ms", 550 }, { "active_skill_base_area_of_effect_radius", 34 }, }, stats = { @@ -3579,46 +3795,46 @@ skills["CometPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0, 0, 30, 45, 30, 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 41, 61, 41, 61, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 56, 84, 56, 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 73, 110, 73, 110, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 93, 139, 93, 139, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 115, 172, 115, 172, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 140, 210, 140, 210, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 168, 253, 168, 253, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 201, 301, 201, 301, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 237, 356, 237, 356, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 279, 418, 279, 418, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 326, 489, 326, 489, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 380, 570, 380, 570, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 441, 661, 441, 661, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 511, 766, 511, 766, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 590, 885, 590, 885, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 680, 1020, 680, 1020, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 783, 1175, 783, 1175, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 901, 1352, 901, 1352, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 1036, 1554, 1036, 1554, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 1190, 1786, 1190, 1786, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 1367, 2051, 1367, 2051, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 1570, 2355, 1570, 2355, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 1803, 2705, 1803, 2705, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 2072, 3107, 2072, 3107, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 2380, 3571, 2380, 3571, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 2736, 4104, 2736, 4104, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 3147, 4721, 3147, 4721, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 3622, 5433, 3622, 5433, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 4172, 6257, 4172, 6257, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 4808, 7212, 4808, 7212, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 5547, 8321, 5547, 8321, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 6405, 9608, 6405, 9608, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 7404, 11106, 7404, 11106, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 8567, 12851, 8567, 12851, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 9924, 14886, 9924, 14886, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 11509, 17264, 11509, 17264, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 13364, 20046, 13364, 20046, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 15537, 23306, 15537, 23306, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 18087, 27131, 18087, 27131, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 23, 35, 23, 35, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 31, 47, 31, 47, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 43, 64, 43, 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 56, 83, 56, 83, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 70, 106, 70, 106, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 87, 131, 87, 131, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 106, 160, 106, 160, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 128, 192, 128, 192, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 153, 229, 153, 229, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 180, 271, 180, 271, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 212, 318, 212, 318, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 248, 372, 248, 372, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 289, 433, 289, 433, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 335, 503, 335, 503, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 388, 582, 388, 582, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 448, 672, 448, 672, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 517, 775, 517, 775, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 595, 893, 595, 893, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 685, 1027, 685, 1027, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 787, 1181, 787, 1181, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 905, 1357, 905, 1357, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 1039, 1559, 1039, 1559, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 1193, 1790, 1193, 1790, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 1371, 2056, 1371, 2056, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 1574, 2362, 1574, 2362, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 1809, 2714, 1809, 2714, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 2080, 3119, 2080, 3119, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 2392, 3588, 2392, 3588, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 2753, 4129, 2753, 4129, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 3170, 4756, 3170, 4756, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 3654, 5481, 3654, 5481, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 4216, 6324, 4216, 6324, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 4868, 7302, 4868, 7302, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 5627, 8440, 5627, 8440, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 6511, 9766, 6511, 9766, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 7542, 11313, 7542, 11313, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 8747, 13121, 8747, 13121, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 10157, 15235, 10157, 15235, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 11808, 17713, 11808, 17713, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 13746, 20619, 13746, 20619, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -3628,7 +3844,7 @@ skills["ContagionPlayer"] = { baseTypeName = "Contagion", icon = "Art/2DArt/SkillIcons/WitchContagion.dds", color = 3, - description = "Afflict a single enemy with a Debuff that deals Chaos damage over time. If the enemy dies while affected by Contagion, it and all other Chaos damage over time Debuffs spread to nearby enemies and refresh their durations. Reanimating or detonating a corpse affected by Contagion will cause the Minion or explosion to\nspread Contagion on hit.", + description = "Afflict a single enemy with a Debuff that deals Chaos damage over time. If the enemy dies while affected by Contagion, it spreads itself, Curses, and other Chaos damage over time Debuffs on the target to nearby enemies. This refreshes their durations. Reanimating or detonating a corpse affected by Contagion will cause the Minion or explosion to spread Contagion on hit.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1, qualityStats = { @@ -3986,7 +4202,7 @@ skills["CracklingPalmPlayer"] = { baseTypeName = "Crackling Palm", icon = "Art/2DArt/SkillIcons/ThunderfistUniqueSkill.dds", fromItem = true, - color = 3, + color = 4, description = "When you Hit with Unarmed Melee Attacks, calls down lightning bolts which deal Unarmed Attack damage to all surrounding enemies.", skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Attack] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { @@ -4399,6 +4615,7 @@ skills["DarkEffigyPlayer"] = { skillTotemId = 24, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 13, }, }, @@ -4524,7 +4741,7 @@ skills["DarkEffigyProjectilePlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/WitchDarkEffigy.dds", description = "Fire a Projectile at every nearby enemy that is afflicted by a Chaos damage over time Debuff. Fires multiple Projectiles at enemies afflicted by multiple Debuffs, but Projectile count cannot be otherwise modified.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.UsedByTotem] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.UsedByTotem] = true, [SkillType.UsedByProxy] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { { "active_skill_base_secondary_area_of_effect_radius", 0.1 }, @@ -6641,6 +6858,7 @@ skills["EyeOfWinterPlayer"] = { { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "eye_of_winter_first_hit_damage_+%_final", 900 }, + { "base_number_of_projectiles", 30 }, }, stats = { "spell_minimum_base_cold_damage", @@ -6705,7 +6923,7 @@ skills["FallingThunderPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkLightningStrike.dds", color = 3, description = "Suffuse your Quarterstaff with electrical energy, then Slam the ground to deal damage in a large cone in front of you. Consumes your Power Charges to fire Lightning Projectiles forwards from the impact.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Lightning] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Lightning] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -7226,7 +7444,7 @@ skills["FireballPlayer"] = { "should_use_additive_aiming_animation", "active_skill_consumes_a_fire_infusion", "precise_cursor_targeting_uses_contact_point_height_offset", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", }, notMinionStat = { "spell_minimum_base_fire_damage", @@ -7841,8 +8059,8 @@ skills["FlameWallPlayer"] = { baseTypeName = "Flame Wall", icon = "Art/2DArt/SkillIcons/SorceressFlameWall.dds", color = 3, - description = "Create a wall of Fire in front of the character, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage. Consumes a Lightning Infusion if possible to also add Lightning damage to the Projectiles.", - skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Unleashable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, }, + description = "Create a wall of Fire in front of you, which Ignites everything within its area. Any Projectiles fired through the wall by you and Allies deal added Fire damage. Consumes a Lightning Infusion if possible to also add Lightning damage to the Projectiles.", + skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Unleashable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, }, castTime = 1, qualityStats = { { "active_skill_ignite_chance_+%_final", 1 }, @@ -8151,7 +8369,6 @@ skills["FlameblastPlayer"] = { { "base_minimum_channel_time_ms", 490 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { "spell_minimum_base_fire_damage", @@ -8217,7 +8434,7 @@ skills["FlickerStrikePlayer"] = { 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.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -8356,7 +8573,7 @@ skills["FreezingMarkPlayer"] = { icon = "Art/2DArt/SkillIcons/FreezingMarkSkill.dds", color = 3, description = "Mark a target, making them more susceptible to being Frozen. When the Marked target is Frozen, the Mark Activates, granting you a Buff which gives extra Cold damage and Consuming the Mark. Marking another target while you have the Buff will remove the Buff.", - skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, }, + skillTypes = { [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Mark] = true, [SkillType.Cold] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMounted] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, }, castTime = 0.5, qualityStats = { { "freezing_mark_hit_damage_freeze_multiplier_+%_final", 1 }, @@ -8994,7 +9211,7 @@ skills["FrostDartsPlayer"] = { "never_freeze_or_chill", "is_area_damage", "random_projectile_direction", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", }, notMinionStat = { "spell_minimum_base_cold_damage", @@ -9119,7 +9336,7 @@ skills["FrostWallPlayer"] = { { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, { "active_skill_chill_effect_+%_final", 50 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 }, { "console_cast_on_self_custom_range", 15 }, @@ -9202,7 +9419,7 @@ skills["FrostWallPlayer"] = { { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, { "active_skill_chill_effect_+%_final", 50 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 0 }, { "console_cast_on_self_custom_range", 15 }, @@ -9487,7 +9704,7 @@ skills["FrozenLocusPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkIceAmbush.dds", color = 3, description = "Leap backward and crack the ground with your staff to call forth an Ice Crystal which can be damaged by you and enemies. If the Crystal is destroyed it causes an icy explosion. This skill can be used while using other skills.", - skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, [SkillType.Area] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.CanCancelActions] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.Limit] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -10015,14 +10232,14 @@ 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 and leaves a trail of Shocked Ground in your 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, [SkillType.QuarterstaffSkill] = true, }, + 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.", + 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, }, castTime = 1, qualityStats = { - { "gathering_storm_perfect_aoe_limit", 0.4 }, + { "perfect_timing_window_ms_+%", 1 }, }, levels = { [1] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { ManaPerMinute = 474, }, }, @@ -10089,7 +10306,7 @@ skills["GatheringStormPlayer"] = { { "active_skill_base_area_of_effect_radius", 18 }, { "channel_start_lock_cancelling_of_attack_time_%", 50 }, { "total_attack_time_+_ms", 800 }, - { "gathering_storm_perfect_aoe_limit", 20 }, + { "gathering_storm_perfect_aoe_limit", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "channel_end_duration_as_%_of_attack_time", 85 }, { "melee_range_+", 10 }, @@ -10160,13 +10377,12 @@ skills["GatheringStormPlayer"] = { { "active_skill_base_area_of_effect_radius", 18 }, { "channel_start_lock_cancelling_of_attack_time_%", 50 }, { "total_attack_time_+_ms", 800 }, - { "gathering_storm_perfect_aoe_limit", 20 }, + { "gathering_storm_perfect_aoe_limit", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "channel_end_duration_as_%_of_attack_time", 85 }, { "melee_range_+", 10 }, { "base_melee_dash_range", 25 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 50 }, - { "base_skill_effect_duration", 5000 }, }, stats = { "is_area_damage", @@ -10237,10 +10453,9 @@ skills["GatheringStormPlayer"] = { { "attack_maximum_action_distance_+", 20 }, { "channel_start_lock_cancelling_of_attack_time_%", 50 }, { "total_attack_time_+_ms", 800 }, - { "gathering_storm_perfect_aoe_limit", 20 }, + { "gathering_storm_perfect_aoe_limit", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, { "channel_end_duration_as_%_of_attack_time", 85 }, - { "melee_range_+", 10 }, { "active_skill_base_area_of_effect_radius", 22 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, }, @@ -10295,6 +10510,82 @@ skills["GatheringStormPlayer"] = { [40] = { baseMultiplier = 15.79, actorLevel = 288.29998779297, }, }, }, + [4] = { + label = "Tempest Shockwave", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gathering_storm_statset_3", + baseFlags = { + attack = true, + area = true, + melee = true, + channelRelease = true, + duration = true, + }, + constantStats = { + { "active_skill_override_turn_duration_ms", 360 }, + { "perfect_strike_timing_window_base_ms", 400 }, + { "base_melee_dash_range", 75 }, + { "attack_maximum_action_distance_+", 20 }, + { "channel_start_lock_cancelling_of_attack_time_%", 50 }, + { "total_attack_time_+_ms", 800 }, + { "gathering_storm_perfect_aoe_limit", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, + { "channel_end_duration_as_%_of_attack_time", 85 }, + { "active_skill_base_area_of_effect_radius", 32 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 80 }, + { "base_skill_effect_duration", 5000 }, + }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "quality_display_gathering_storm_is_gem", + "precise_cursor_targeting_uses_contact_point_height_offset", + "display_statset_hide_usage_stats", + "perfectly_timed", + }, + levels = { + [1] = { baseMultiplier = 2.4, actorLevel = 1, }, + [2] = { baseMultiplier = 2.64, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 2.91, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 3.17, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 3.44, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 3.71, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 3.98, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 4.25, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 4.49, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 4.74, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 5.02, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 5.32, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 5.64, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 5.98, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 6.35, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 6.75, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 7.18, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 7.65, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 8.15, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 8.69, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 9.27, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 9.89, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 10.55, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 11.25, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 12, actorLevel = 136.875, }, + [26] = { baseMultiplier = 12.8, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 13.65, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 14.56, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 15.53, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 16.57, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 17.67, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 18.85, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 20.1, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 21.44, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 22.87, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 24.4, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 26.02, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 27.75, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 29.6, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 31.57, actorLevel = 288.29998779297, }, + }, + }, } } skills["GhostDancePlayer"] = { @@ -10303,7 +10594,7 @@ skills["GhostDancePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkGhostDance.dds", color = 3, description = "While active, causes you to periodically gain Ghost Shrouds. If you are Hit while you have a Ghost Shroud, it is immediately consumed to recover Energy Shield based on your Evasion.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.AffectedByCooldownRate] = true, }, castTime = 0, qualityStats = { { "base_reservation_efficiency_+%", 1 }, @@ -10359,58 +10650,56 @@ skills["GhostDancePlayer"] = { duration = true, }, constantStats = { - { "skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", 5 }, + { "skill_base_ghost_dance_grants_%_evasion_as_es_regeneration_per_minute_if_have_lost_ghost_dance_shroud_recently", 120 }, { "ghost_dance_max_stacks", 3 }, }, stats = { - "base_skill_effect_duration", + "base_cooldown_modifiable_repeat_interval_ms", "base_deal_no_damage", "quality_display_ghost_dance_is_gem", - }, - notMinionStat = { - "base_skill_effect_duration", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", }, levels = { - [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 7900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 7800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 7700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 7600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 7500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 7400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 7300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 7200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 7100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 7000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 6900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 6700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 6600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 6500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 6400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 6300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 6200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 6100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 6000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5600, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 5500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 5400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 5300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 5200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 5100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 5000, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 4900, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 4800, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 4700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 4600, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 4500, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 4400, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 4300, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 4200, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 4100, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 12000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 11900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 11800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 11600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 11500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 11400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 11300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 11200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 11100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 11000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 10900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 10800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 10700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 10600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 10500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 10400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 10300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 10200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 10100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 9900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 9800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 9700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 9600, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 9500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 9400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 9300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 9200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 9100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 9000, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 8900, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 8800, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 8700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 8600, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 8500, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 8300, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 8200, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 8100, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -10421,7 +10710,7 @@ skills["GlacialCascadePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkGlacialCascade.dds", color = 3, description = "Sweep your Quarterstaff upwards, releasing an icy fissure which deals damage in a series of bursts culminating in a large spike. Frozen enemies hit by the final spike are dealt heavy damage but the Freeze is Consumed. Ice Crystals hit by the final spike explode.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesFreeze] = true, [SkillType.CreatesFissure] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -10744,52 +11033,52 @@ skills["GrimFeastResummonPlayer"] = { name = "Grim Resurrection", hidden = true, icon = "Art/2DArt/SkillIcons/WitchGrimFeast.dds", - description = "Consumes stored Minion Life to Revive your Minions. Revives as many Minions as possible with total Life equal to or less than the Life stored by Grim Feast, prioritising those with higher maximum Life.", - skillTypes = { [SkillType.Spell] = true, [SkillType.AttackInPlace] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, [SkillType.Minion] = true, }, + description = "Consume stored Minion Life to Revive your Minions. Revives as many Minions as possible with total maximum Life equal to or less than the Life stored by Grim Feast, prioritising those with higher maximum Life.", + skillTypes = { [SkillType.Spell] = true, [SkillType.AttackInPlace] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, [SkillType.Minion] = true, [SkillType.Cooldown] = true, }, castTime = 0.4, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -10858,7 +11147,7 @@ skills["HandOfChayulaPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkHandOfChayula.dds", color = 3, description = "Dash to an enemy and Strike them, triggering socketed Marks with increased effect and applying socketed Curses with increased duration.", - skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Palm] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -11542,46 +11831,46 @@ skills["HisFoulEmergencePlayer"] = { { "base_skill_effect_duration", 50 }, }, levels = { - [1] = { cooldown = 25, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 18, }, }, - [2] = { cooldown = 24.5, critChance = 15, levelRequirement = 3, storedUses = 1, cost = { Mana = 21, }, }, - [3] = { cooldown = 24, critChance = 15, levelRequirement = 6, storedUses = 1, cost = { Mana = 25, }, }, - [4] = { cooldown = 23.5, critChance = 15, levelRequirement = 10, storedUses = 1, cost = { Mana = 29, }, }, - [5] = { cooldown = 23, critChance = 15, levelRequirement = 14, storedUses = 1, cost = { Mana = 34, }, }, - [6] = { cooldown = 22.5, critChance = 15, levelRequirement = 18, storedUses = 1, cost = { Mana = 39, }, }, - [7] = { cooldown = 22, critChance = 15, levelRequirement = 22, storedUses = 1, cost = { Mana = 44, }, }, - [8] = { cooldown = 21.5, critChance = 15, levelRequirement = 26, storedUses = 1, cost = { Mana = 51, }, }, - [9] = { cooldown = 21, critChance = 15, levelRequirement = 31, storedUses = 1, cost = { Mana = 57, }, }, - [10] = { cooldown = 20.5, critChance = 15, levelRequirement = 36, storedUses = 1, cost = { Mana = 65, }, }, - [11] = { cooldown = 20, critChance = 15, levelRequirement = 41, storedUses = 1, cost = { Mana = 73, }, }, - [12] = { cooldown = 19.5, critChance = 15, levelRequirement = 46, storedUses = 1, cost = { Mana = 82, }, }, - [13] = { cooldown = 19, critChance = 15, levelRequirement = 52, storedUses = 1, cost = { Mana = 91, }, }, - [14] = { cooldown = 18.5, critChance = 15, levelRequirement = 58, storedUses = 1, cost = { Mana = 102, }, }, - [15] = { cooldown = 18, critChance = 15, levelRequirement = 64, storedUses = 1, cost = { Mana = 113, }, }, - [16] = { cooldown = 17.5, critChance = 15, levelRequirement = 66, storedUses = 1, cost = { Mana = 126, }, }, - [17] = { cooldown = 17, critChance = 15, levelRequirement = 72, storedUses = 1, cost = { Mana = 140, }, }, - [18] = { cooldown = 16.5, critChance = 15, levelRequirement = 78, storedUses = 1, cost = { Mana = 155, }, }, - [19] = { cooldown = 16, critChance = 15, levelRequirement = 84, storedUses = 1, cost = { Mana = 171, }, }, - [20] = { cooldown = 15.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 189, }, }, - [21] = { cooldown = 15, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 209, }, }, - [22] = { cooldown = 14.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 230, }, }, - [23] = { cooldown = 14, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 253, }, }, - [24] = { cooldown = 13.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 279, }, }, - [25] = { cooldown = 13, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 306, }, }, - [26] = { cooldown = 12.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 336, }, }, - [27] = { cooldown = 12, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 368, }, }, - [28] = { cooldown = 11.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 403, }, }, - [29] = { cooldown = 11, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 441, }, }, - [30] = { cooldown = 10.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 483, }, }, - [31] = { cooldown = 10, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 528, }, }, - [32] = { cooldown = 9.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 576, }, }, - [33] = { cooldown = 9, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 629, }, }, - [34] = { cooldown = 8.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 686, }, }, - [35] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 748, }, }, - [36] = { cooldown = 7.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 816, }, }, - [37] = { cooldown = 7, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 888, }, }, - [38] = { cooldown = 6.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 967, }, }, - [39] = { cooldown = 6, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 1052, }, }, - [40] = { cooldown = 5.5, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 1145, }, }, + [1] = { cooldown = 8, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 8, critChance = 15, levelRequirement = 3, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 8, critChance = 15, levelRequirement = 6, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 8, critChance = 15, levelRequirement = 10, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 8, critChance = 15, levelRequirement = 14, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 8, critChance = 15, levelRequirement = 18, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 8, critChance = 15, levelRequirement = 22, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 8, critChance = 15, levelRequirement = 26, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 8, critChance = 15, levelRequirement = 31, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 8, critChance = 15, levelRequirement = 36, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 8, critChance = 15, levelRequirement = 41, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 8, critChance = 15, levelRequirement = 46, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 8, critChance = 15, levelRequirement = 52, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 8, critChance = 15, levelRequirement = 58, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 8, critChance = 15, levelRequirement = 64, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 8, critChance = 15, levelRequirement = 66, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 8, critChance = 15, levelRequirement = 72, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 8, critChance = 15, levelRequirement = 78, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 8, critChance = 15, levelRequirement = 84, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 8, critChance = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -11603,10 +11892,9 @@ skills["HisFoulEmergencePlayer"] = { constantStats = { { "range_backflip_conditional_distance", 30 }, { "total_cast_time_+_ms", 1000 }, - { "comet_explosion_delay_ms", 470 }, { "active_skill_base_area_of_effect_radius", 28 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_withered_base_duration_ms", 8000 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_withered_base_duration_ms", 10000 }, }, stats = { "spell_minimum_base_physical_damage", @@ -11615,6 +11903,7 @@ skills["HisFoulEmergencePlayer"] = { "spell_maximum_base_chaos_damage", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", + "comet_fall_time_uses_animation_length", }, notMinionStat = { "spell_minimum_base_physical_damage", @@ -11680,46 +11969,46 @@ skills["ScatteringCalamityPlayer"] = { { "ember_fusillade_damage_+%_final_per_ember_fired", 0.1 }, }, levels = { - [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 3, }, }, - [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 4, }, }, - [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 5, }, }, - [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 5, }, }, - [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 6, }, }, - [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 7, }, }, - [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 8, }, }, - [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 10, }, }, - [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 11, }, }, - [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 12, }, }, - [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 14, }, }, - [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 16, }, }, - [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 18, }, }, - [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 20, }, }, - [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 22, }, }, - [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 24, }, }, - [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 27, }, }, - [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 30, }, }, - [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 33, }, }, - [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 37, }, }, - [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 41, }, }, - [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 45, }, }, - [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 49, }, }, - [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 54, }, }, - [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 60, }, }, - [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 66, }, }, - [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 72, }, }, - [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 79, }, }, - [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 86, }, }, - [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 94, }, }, - [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 103, }, }, - [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 113, }, }, - [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 123, }, }, - [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 135, }, }, - [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 147, }, }, - [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 160, }, }, - [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 174, }, }, - [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 190, }, }, - [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 206, }, }, - [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 225, }, }, + [1] = { critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -11891,54 +12180,54 @@ skills["VileDisruptionPlayer"] = { { "impale_magnitude_+%", 0.5 }, }, levels = { - [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 8, }, }, - [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 9, }, }, - [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 11, }, }, - [4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 13, }, }, - [5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 17, }, }, - [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 19, }, }, - [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 22, }, }, - [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 25, }, }, - [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 28, }, }, - [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 32, }, }, - [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 36, }, }, - [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 40, }, }, - [14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 45, }, }, - [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 50, }, }, - [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 55, }, }, - [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 61, }, }, - [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 68, }, }, - [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 75, }, }, - [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 83, }, }, - [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 92, }, }, - [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 101, }, }, - [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 112, }, }, - [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 123, }, }, - [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 135, }, }, - [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 148, }, }, - [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 162, }, }, - [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 178, }, }, - [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 195, }, }, - [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 213, }, }, - [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 233, }, }, - [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 254, }, }, - [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 278, }, }, - [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 303, }, }, - [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 330, }, }, - [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 360, }, }, - [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 392, }, }, - [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 427, }, }, - [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 464, }, }, - [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 505, }, }, - }, - statSets = { - [1] = { - label = "His Vile Intrusion", - baseEffectiveness = 4.0900001525879, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "vile_disruption", + [1] = { critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 15, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 15, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 15, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 15, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 15, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 15, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 15, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 15, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 15, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 15, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 15, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 15, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 15, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 15, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 15, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 15, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 15, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 15, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 15, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "His Vile Intrusion", + baseEffectiveness = 4.0900001525879, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "vile_disruption", baseFlags = { spell = true, area = true, @@ -11955,11 +12244,11 @@ skills["VileDisruptionPlayer"] = { { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "spells_impale_on_hit_%_chance", 100 }, { "base_skill_effect_duration", 4000 }, + { "impale_magnitude_+%", 100 }, }, stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "impale_magnitude_+%", "number_of_additional_impaled_debuffs_to_apply", "base_skill_show_average_damage_instead_of_dps", "is_area_damage", @@ -11971,46 +12260,46 @@ skills["VileDisruptionPlayer"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 13, 19, 2, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 17, 26, 4, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 24, 35, 6, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 31, 46, 8, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 39, 58, 10, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 48, 72, 12, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 59, 88, 14, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 71, 106, 16, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 84, 126, 18, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 100, 149, 20, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 117, 175, 22, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 137, 205, 24, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 159, 239, 26, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 185, 277, 28, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 214, 321, 30, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 247, 371, 32, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 285, 428, 34, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 329, 493, 36, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 378, 567, 38, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 435, 652, 40, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 499, 749, 42, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 574, 860, 44, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 659, 988, 46, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 757, 1135, 48, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 869, 1303, 50, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 999, 1498, 52, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1148, 1722, 54, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1320, 1980, 56, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1519, 2279, 58, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1750, 2625, 60, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 2017, 3026, 62, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 2327, 3490, 64, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 2687, 4030, 66, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 3106, 4659, 68, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 3594, 5391, 70, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 4163, 6245, 72, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 4828, 7242, 74, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 5606, 8409, 76, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 6518, 9777, 78, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 7587, 11381, 80, 1, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 13, 19, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 17, 26, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 24, 35, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 31, 46, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 39, 58, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 48, 72, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 59, 88, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 71, 106, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 84, 126, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 100, 149, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 117, 175, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 137, 205, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 159, 239, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 185, 277, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 214, 321, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 247, 371, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 285, 428, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 329, 493, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 378, 567, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 435, 652, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 499, 749, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 574, 860, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 659, 988, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 757, 1135, 2, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 869, 1303, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 999, 1498, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1148, 1722, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1320, 1980, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1519, 2279, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1750, 2625, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2017, 3026, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2327, 3490, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2687, 4030, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3106, 4659, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3594, 5391, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 4163, 6245, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 4828, 7242, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 5606, 8409, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6518, 9777, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 7587, 11381, 3, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -12023,51 +12312,51 @@ skills["HisWinnowingFlamePlayer"] = { color = 3, description = "Conjure an abyssal scythe that sweeps across the targeted area, dealing Fire damage to enemies and Consuming Ignite to create pillars of flame. Cannot be Triggered.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.SkillConsumesIgnite] = true, }, - castTime = 1, + castTime = 0.7, qualityStats = { { "base_cast_speed_+%", 0.5 }, }, levels = { - [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 6, }, }, - [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 7, }, }, - [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 10, }, }, - [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 16, }, }, - [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 18, }, }, - [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 20, }, }, - [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 23, }, }, - [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 26, }, }, - [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 29, }, }, - [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 33, }, }, - [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 36, }, }, - [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 41, }, }, - [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 45, }, }, - [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 50, }, }, - [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 56, }, }, - [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 62, }, }, - [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 68, }, }, - [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 75, }, }, - [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 83, }, }, - [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 91, }, }, - [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 100, }, }, - [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 110, }, }, - [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 121, }, }, - [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 132, }, }, - [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 145, }, }, - [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 159, }, }, - [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 174, }, }, - [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 190, }, }, - [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 208, }, }, - [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 227, }, }, - [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 247, }, }, - [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 270, }, }, - [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 294, }, }, - [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 320, }, }, - [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 349, }, }, - [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 379, }, }, - [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 413, }, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -12155,46 +12444,46 @@ skills["TriggeredHisWinnowingFlamePillarPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -12208,10 +12497,10 @@ skills["TriggeredHisWinnowingFlamePillarPlayer"] = { }, constantStats = { { "triggered_by_flame_pillar_unique_%", 100 }, - { "unique_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage", 25 }, - { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "unique_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage", 30 }, + { "active_skill_base_area_of_effect_radius", 20 }, { "unique_pillar_of_flame_creation_radius", 10 }, - { "base_skill_effect_duration", 1500 }, + { "base_skill_effect_duration", 750 }, }, stats = { "never_ignite", @@ -12485,13 +12774,13 @@ skills["IceStrikePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkComboAttack.dds", color = 3, description = "Perform a fast icy Strike. Using this Attack three times in quick succession causes a final strike that is slower and more powerful.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "active_skill_attack_speed_+%_final", 0.5 }, + { "attack_speed_+%", 1 }, }, levels = { [1] = { attackSpeedMultiplier = 40, baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 5, }, }, @@ -13024,7 +13313,7 @@ skills["IncineratePlayer"] = { icon = "Art/2DArt/SkillIcons/SorceressIncinerate.dds", color = 3, description = "Gain fuel by spending Mana on any Skill, then use the accumulated fuel to conjure a torrent of Fire from your hand, Igniting enemies in front of you. The flames grow stronger the longer you Channel. Consumes a Fire Infusion if possible to also create Ignited Ground. Cannot gain fuel while using this skill.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Sustained] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DamageOverTime] = true, }, castTime = 0.25, qualityStats = { { "active_skill_ignite_duration_+%_final", 1 }, @@ -13106,7 +13395,6 @@ skills["IncineratePlayer"] = { { "base_minimum_channel_time_ms", 600 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_override_turn_duration_ms", 360 }, { "incinerate_damage_+%_final_per_stage", 0 }, { "active_skill_energy_generated_+%_final", -98 }, @@ -13114,6 +13402,7 @@ skills["IncineratePlayer"] = { { "incinerate_gain_stage_every_x_ms", 250 }, { "incinerate_maximum_fuel", 5000 }, { "active_skill_ignite_effect_+%_final", 0 }, + { "incinerate_sustains_every_%_of_cast_time", 500 }, }, stats = { "spell_minimum_base_fire_damage", @@ -13193,13 +13482,13 @@ skills["IncineratePlayer"] = { { "base_minimum_channel_time_ms", 600 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_override_turn_duration_ms", 360 }, { "incinerate_damage_+%_final_per_stage", 0 }, { "active_skill_energy_generated_+%_final", -98 }, { "incinerate_minimum_fuel_to_use", 1000 }, { "incinerate_gain_stage_every_x_ms", 250 }, { "incinerate_maximum_fuel", 5000 }, + { "incinerate_sustains_every_%_of_cast_time", 500 }, { "base_skill_effect_duration", 8000 }, { "active_skill_base_secondary_area_of_effect_radius", 14 }, }, @@ -13273,7 +13562,7 @@ skills["KillingPalmPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkKillingPalm.dds", color = 3, description = "Dash to an enemy and Strike them, Culling enemies if their life is low enough and performing additional dashing Strikes to other Cullable targets in range if your target was Culled. Each enemy killed by this strike grants a Power Charge, with higher Rarity monsters granting additional Charges. Enemies around you that can be Culled will be highlighted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -13919,6 +14208,7 @@ skills["LingeringIllusionPlayer"] = { skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.GeneratesCharges] = true, [SkillType.Duration] = true, [SkillType.GeneratesRemnants] = true, }, castTime = 0, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, @@ -14622,7 +14912,7 @@ skills["ManaTempestPlayer"] = { icon = "Art/2DArt/SkillIcons/SorceressManaTempest.dds", color = 3, description = "Create a storm of arcane energies that Empowers your Mana-costing Spells while you remain inside it. Maintaining the storm constantly drains your Mana, and spending more causes it to drain faster. The storm will dissipate when you exit it or run out of Mana.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Storm] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Storm] = true, [SkillType.IndeterminateEmpowermentAmount] = true, }, castTime = 0.6, qualityStats = { { "mana_tempest_effects_linger_X_ms", 100 }, @@ -14756,46 +15046,46 @@ skills["MantraOfDestructionPlayer"] = { { "active_skill_required_number_of_combo_stacks", -0.05 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -14875,7 +15165,7 @@ skills["MirrorOfRefractionPlayer"] = { fromItem = true, color = 3, description = "Mirrors of Refraction appear in your Presence periodically. Hitting a mirror with a Spell Projectile causes it to shatter, copying the projectiles in a nova around the destroyed mirror. Copied Projectiles may be copied again when colliding with other mirrors.", - skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.AffectedByCooldownRate] = true, }, castTime = 1, qualityStats = { { "base_number_of_projectiles", 0.1 }, @@ -14937,8 +15227,9 @@ skills["MirrorOfRefractionPlayer"] = { { "skill_desired_amount_override", 1 }, }, stats = { - "mirror_of_refraction_placement_interval_ms", + "base_cooldown_modifiable_repeat_interval_ms", "base_is_projectile", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", }, levels = { [1] = { 3900, statInterpolation = { 1, }, actorLevel = 1, }, @@ -15127,7 +15418,7 @@ skills["PainOfferingPlayer"] = { 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.", - skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, + 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, qualityStats = { @@ -15882,7 +16173,7 @@ skills["RagingSpiritsPlayer"] = { minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 1, qualityStats = { - { "base_number_of_raging_spirits_allowed", 0.05 }, + { "base_number_of_raging_spirits_allowed", 0.1 }, }, levels = { [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, @@ -16129,7 +16420,7 @@ skills["RavenousSwarmPlayer"] = { }, color = 3, description = "While active and enemies are present, swarms of insects emerge from your body to pursue nearby enemies. The swarms are untargetable Minions that Attack and Poison enemies.", - 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.Physical] = true, [SkillType.Chaos] = true, [SkillType.AttackInPlace] = true, }, + 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.Physical] = true, [SkillType.Chaos] = true, [SkillType.AttackInPlace] = true, [SkillType.AffectedByCooldownRate] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, }, castTime = 0, qualityStats = { @@ -16188,13 +16479,13 @@ skills["RavenousSwarmPlayer"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 40 }, - { "ravenous_swarm_create_new_swarm_every_X_ms", 6000 }, + { "base_cooldown_modifiable_repeat_interval_ms", 6000 }, { "ravenous_swarm_maximum_swarm_count", 3 }, }, stats = { "base_skill_effect_duration", - "base_deal_no_damage", "display_statset_no_hit_damage", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", }, notMinionStat = { "base_skill_effect_duration", @@ -16718,7 +17009,7 @@ skills["ShatteringPalmPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkShatteringPalm.dds", color = 3, description = "Dash to an enemy and Strike them with an Attack that manifests a wave of cold, coating nearby enemies in shards of ice. Dealing enough damage to these enemies will shatter the shards, causing an icy explosion that deals Attack damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.MeleeSingleTarget] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -16840,7 +17131,7 @@ skills["ShatteringPalmExplosionPlayer"] = { name = "Freezing Explosion", hidden = true, icon = "Art/2DArt/SkillIcons/MonkFreezingWord.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -17216,7 +17507,7 @@ skills["SiphoningStrikePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkSiphoningStrike.dds", color = 3, description = "Dash to a target and Strike them with your Quarterstaff. If the target is Shocked, Consume their Shock to release a Lightning shockwave around the target and grant you a Power Charge. This skill cannot be Ancestrally Boosted.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CannotSpiritStrike] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.SkillConsumesShock] = true, [SkillType.GeneratesCharges] = true, [SkillType.CannotSpiritStrike] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -17413,6 +17704,7 @@ skills["SummonSkeletalArsonistsPlayer"] = { minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, }, castTime = 0, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, spiritReservationFlat = 90, }, @@ -19679,8 +19971,9 @@ skills["SupportSpellslingerPlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, addSkillTypes = { SkillType.Triggered, }, - excludeSkillTypes = { SkillType.InbuiltTrigger, }, + excludeSkillTypes = { SkillType.InbuiltTrigger, SkillType.Persistent, SkillType.UsedByProxy, }, isTrigger = true, + ignoreMinionTypes = true, qualityStats = { }, levels = { @@ -19784,13 +20077,260 @@ skills["SupportSpellslingerPlayer"] = { }, } } +skills["SummonSpiralingConspiracyPlayer"] = { + name = "Spiraling Conspiracy", + baseTypeName = "Spiraling Conspiracy", + icon = "Art/2DArt/SkillIcons/RoostOfTheRavenKingSwarm.dds", + fromItem = true, + minionList = { + "MistRaven", + }, + color = 3, + description = "A flock of mist ravens circle you, dealing damage over time in an area. Their numbers are bolstered by slain foes, or in the Presence of dangerous enemies, but the flock as a whole is considered a single minion. You can Command some of them to take flight, leaving the flock to assail your enemies.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.Duration] = true, [SkillType.Area] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, }, + castTime = 1, + qualityStats = { + { "base_skill_area_of_effect_+%", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Minion Info", + statDescriptionScope = "summon_spiraling_conspiracy", + statMap = { + ["base_skill_area_of_effect_+%"] = { + mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil) }), + }, + }, + baseFlags = { + spell = true, + minion = true, + }, + constantStats = { + { "display_minion_monster_type", 2 }, + { "minion_base_resummon_time_ms", 12000 }, + { "tangmazu_raven_added_to_your_flock_every_x_power_of_enemies_killed", 1 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "tangmazu_raven_added_to_your_flock_every_x_msec_a_rare_or_unique_enemy_is_in_your_presence", + "is_resummoning_minion", + "display_statset_no_hit_damage", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "tangmazu_raven_added_to_your_flock_every_x_msec_a_rare_or_unique_enemy_is_in_your_presence", + }, + levels = { + [1] = { 2000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1950, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1900, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1850, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1800, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1750, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 1700, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 1650, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 1600, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 1550, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 1500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 1450, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 1400, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 1350, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 1300, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 1250, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 1200, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 1150, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 1100, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 1050, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 1000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 950, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 900, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 850, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 800, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 775, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 750, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 725, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 700, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 675, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 650, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 625, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 600, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 575, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 550, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 525, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 500, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 475, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 450, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 425, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CommandMadFlightPlayer"] = { + name = "Command: {0} ", + hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Command", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "command_minion_marker_additional_time_ms", 300 }, + { "command_skill_consumes_x_stacks_of_tangmazu_raven_to_use", 10 }, + }, + stats = { + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "command_skill_no_command_marker", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} skills["StaggeringPalmPlayer"] = { name = "Staggering Palm", baseTypeName = "Staggering Palm", icon = "Art/2DArt/SkillIcons/MonkWindPalm.dds", color = 3, description = "Dash to an enemy and Strike them, instantly Heavily Stunning enemies which are Primed for Stun and performing additional dashing Strikes to other Primed targets in range if your first target was Stunned. Heavy Stunning an enemy with this Skill grants you a Buff that causes your Quarterstaff Attacks to also fire Projectiles for a short duration. Heavy Stunning additional enemies adds to the Buff's duration.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Palm] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -19914,7 +20454,7 @@ skills["StaggeringPalmProjectilePlayer"] = { name = "Projectile", hidden = true, icon = "Art/2DArt/SkillIcons/MonkWindPalm.dds", - skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.AttackInPlace] = true, [SkillType.Wind] = true, }, + skillTypes = { [SkillType.RangedAttack] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.AttackInPlace] = true, [SkillType.Wind] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -20035,7 +20575,7 @@ skills["StormWavePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkStormWave.dds", color = 3, description = "Sweep your Quarterstaff, projecting a bolt of Lightning through the ground in a long fissure ahead of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.CreatesFissure] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesFissure] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -20161,7 +20701,7 @@ skills["TempestBellPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkTempestBell.dds", color = 3, description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to cause the Bell on your staff to grow to massive size as you drop it on the ground. The Bell damages enemies on impact and can be Hit by your skills, creating a damaging shockwave. Elemental Ailments applied to the Bell cause its shockwaves to deal extra damage of the corresponding type, and Hits which would have caused Knockback increase the area of effect of the shockwaves.", - skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.HasUsageCondition] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.ObjectDurability] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Melee] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.Sustained] = true, [SkillType.HasUsageCondition] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.ObjectDurability] = true, [SkillType.AttackInPlace] = true, [SkillType.SpecialAncestralBoost] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -20229,9 +20769,10 @@ skills["TempestBellPlayer"] = { { "base_combo_stacks_decay_delay_ms", 8000 }, { "dps_display_statset_index", 2 }, { "bell_hit_limit", 10 }, - { "base_number_of_tempest_bells_allowed", 1 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { + "base_number_of_tempest_bells_allowed", "is_area_damage", "skill_show_tempest_bell_on_staff", "cannot_damage_bell", @@ -20241,46 +20782,46 @@ skills["TempestBellPlayer"] = { "combo_only_stacks_from_hits_with_weapon_restriction", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 1, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 1, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 2, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 2, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 2, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 2, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 2, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 2, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 2, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 3, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 3, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 3, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 3, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 3, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 3, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 3, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 3, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 4, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 4, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 4, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 4, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 4, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 4, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 4, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 4, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 4, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 4, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 4, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, [2] = { @@ -20299,6 +20840,7 @@ skills["TempestBellPlayer"] = { { "active_skill_base_area_of_effect_radius", 21 }, }, stats = { + "base_number_of_tempest_bells_allowed", "is_area_damage", "skill_show_tempest_bell_on_staff", "cannot_damage_bell", @@ -20308,46 +20850,46 @@ skills["TempestBellPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 1.2, actorLevel = 1, }, - [2] = { baseMultiplier = 1.32, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.46, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.6, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.74, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.89, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 2.04, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 2.18, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.32, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.46, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.62, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.8, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.99, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 3.19, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 3.42, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 3.67, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 3.93, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 4.23, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 4.55, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 4.9, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 5.28, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 5.69, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 6.13, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 6.6, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 7.11, actorLevel = 136.875, }, - [26] = { baseMultiplier = 7.66, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 8.25, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 8.89, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 9.58, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 10.32, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 11.11, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 11.97, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 12.9, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 13.89, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 14.97, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 16.12, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 17.37, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 18.71, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 20.16, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 21.72, actorLevel = 288.29998779297, }, + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 0, baseMultiplier = 1.1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, baseMultiplier = 1.22, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, baseMultiplier = 1.33, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, baseMultiplier = 1.45, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, baseMultiplier = 1.57, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, baseMultiplier = 1.7, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, baseMultiplier = 1.82, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, baseMultiplier = 1.93, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, baseMultiplier = 2.05, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, baseMultiplier = 2.19, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, baseMultiplier = 2.33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, baseMultiplier = 2.49, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, baseMultiplier = 2.66, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, baseMultiplier = 2.85, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, baseMultiplier = 3.05, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, baseMultiplier = 3.28, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, baseMultiplier = 3.52, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, baseMultiplier = 3.79, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, baseMultiplier = 4.08, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, baseMultiplier = 4.4, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, baseMultiplier = 4.74, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, baseMultiplier = 5.1, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, baseMultiplier = 5.5, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, baseMultiplier = 5.92, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 0, baseMultiplier = 6.38, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, baseMultiplier = 6.88, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, baseMultiplier = 7.41, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, baseMultiplier = 7.98, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, baseMultiplier = 8.6, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, baseMultiplier = 9.26, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, baseMultiplier = 9.98, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, baseMultiplier = 10.75, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, baseMultiplier = 11.58, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, baseMultiplier = 12.47, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, baseMultiplier = 13.44, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, baseMultiplier = 14.48, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, baseMultiplier = 15.59, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, baseMultiplier = 16.8, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, baseMultiplier = 18.1, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, [3] = { @@ -20366,10 +20908,11 @@ skills["TempestBellPlayer"] = { { "active_skill_base_area_of_effect_radius", 26 }, { "tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback", 30 }, { "bell_distance_limit_for_recall", 90 }, - { "bell_shockwave_cooldown_ms", 250 }, + { "bell_shockwave_cooldown_ms", 300 }, { "tempest_bell_physical_damage_%_as_elemental_per_ailment", 30 }, }, stats = { + "base_number_of_tempest_bells_allowed", "bell_ailment_threshold", "bell_poise_threshold", "is_area_damage", @@ -20381,46 +20924,46 @@ skills["TempestBellPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { 18, 18, baseMultiplier = 0.5, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 32, 32, baseMultiplier = 0.55, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 54, 54, baseMultiplier = 0.6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 82, 82, baseMultiplier = 0.65, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 120, 120, baseMultiplier = 0.7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 167, 167, baseMultiplier = 0.75, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 230, 230, baseMultiplier = 0.8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 312, 312, baseMultiplier = 0.84, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 416, 416, baseMultiplier = 0.88, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 550, 550, baseMultiplier = 0.92, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 719, 719, baseMultiplier = 0.95, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 933, 933, baseMultiplier = 0.99, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 1204, 1204, baseMultiplier = 1.03, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 1543, 1543, baseMultiplier = 1.07, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 1970, 1970, baseMultiplier = 1.11, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 2508, 2508, baseMultiplier = 1.15, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 3181, 3181, baseMultiplier = 1.19, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 4016, 4016, baseMultiplier = 1.23, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 5059, 5059, baseMultiplier = 1.28, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 6357, 6357, baseMultiplier = 1.32, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 6627, 6627, baseMultiplier = 1.36, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7186, 7186, baseMultiplier = 1.41, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 8189, 8189, baseMultiplier = 1.45, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 9431, 9431, baseMultiplier = 1.5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 10967, 10967, baseMultiplier = 1.55, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 12867, 12867, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 15206, 15206, baseMultiplier = 1.66, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 18100, 18100, baseMultiplier = 1.71, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 21657, 21657, baseMultiplier = 1.77, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 26040, 26040, baseMultiplier = 1.83, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 30988, 30988, baseMultiplier = 1.89, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 36876, 36876, baseMultiplier = 1.95, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 43882, 43882, baseMultiplier = 2.02, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 52219, 52219, baseMultiplier = 2.08, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 62141, 62141, baseMultiplier = 2.15, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 73948, 73948, baseMultiplier = 2.22, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 87998, 87998, baseMultiplier = 2.3, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 104717, 104717, baseMultiplier = 2.37, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 124613, 124613, baseMultiplier = 2.45, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 148290, 148290, baseMultiplier = 2.53, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 18, 18, baseMultiplier = 0.45, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 32, 32, baseMultiplier = 0.49, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 54, 54, baseMultiplier = 0.54, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 82, 82, baseMultiplier = 0.59, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 120, 120, baseMultiplier = 0.63, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 167, 167, baseMultiplier = 0.68, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 230, 230, baseMultiplier = 0.72, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 312, 312, baseMultiplier = 0.76, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 416, 416, baseMultiplier = 0.79, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 550, 550, baseMultiplier = 0.83, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 719, 719, baseMultiplier = 0.86, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 933, 933, baseMultiplier = 0.89, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 1204, 1204, baseMultiplier = 0.93, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 1543, 1543, baseMultiplier = 0.96, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 1970, 1970, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 2508, 2508, baseMultiplier = 1.04, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 3181, 3181, baseMultiplier = 1.07, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 4016, 4016, baseMultiplier = 1.11, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 5059, 5059, baseMultiplier = 1.15, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 6357, 6357, baseMultiplier = 1.19, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 6627, 6627, baseMultiplier = 1.23, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 7186, 7186, baseMultiplier = 1.27, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 8189, 8189, baseMultiplier = 1.31, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 9431, 9431, baseMultiplier = 1.35, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 10967, 10967, baseMultiplier = 1.4, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 12867, 12867, baseMultiplier = 1.44, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 15206, 15206, baseMultiplier = 1.49, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 18100, 18100, baseMultiplier = 1.54, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 21657, 21657, baseMultiplier = 1.59, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 26040, 26040, baseMultiplier = 1.64, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 30988, 30988, baseMultiplier = 1.7, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 36876, 36876, baseMultiplier = 1.76, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 43882, 43882, baseMultiplier = 1.81, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 52219, 52219, baseMultiplier = 1.87, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 62141, 62141, baseMultiplier = 1.94, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 73948, 73948, baseMultiplier = 2, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 87998, 87998, baseMultiplier = 2.07, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 104717, 104717, baseMultiplier = 2.14, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 124613, 124613, baseMultiplier = 2.21, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 148290, 148290, baseMultiplier = 2.28, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -20431,7 +20974,7 @@ skills["TempestFlurryPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkTempestFlurry.dds", color = 3, description = "Perform a series of aggressive Strikes. When used in quick succession, the third use Strikes three times, and the fourth use performs a Final Strike that calls down a powerful Shocking bolt.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.PerformsFinalStrike] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -20820,7 +21363,7 @@ skills["TrinityPlayer"] = { baseTypeName = "Trinity", icon = "Art/2DArt/SkillIcons/HuntressTrinitySkillIcon.dds", color = 3, - description = "Become attuned to all Elements building up Fire, Cold and Lightning Resonance based off the highest Elemental Damage type dealt by your Hits. Your Elemental Damage is enhanced the more Resonance of any type you have.", + description = "Become attuned to all Elements building up Fire, Cold and Lightning Affinity based off the highest Elemental Damage type dealt by your Hits. Your Elemental Damage is enhanced the more Affinity of any type you have.", skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.AttackInPlace] = true, }, castTime = 0, qualityStats = { @@ -21093,7 +21636,7 @@ skills["UnleashPlayer"] = { icon = "Art/2DArt/SkillIcons/SorceressTemporalistUnleash.dds", fromItem = true, color = 3, - description = "Augment yourself with temporal magic for a short duration, Empowering the next Spell you cast to repeat multiple times. Cannot Empower Channelling Skills or Skills with a Cooldown.", + description = "Augment yourself with temporal magic for a short duration, Empowering the next Repeatable Spell you cast to Repeat multiple times. Cannot Empower Skills with a Cooldown.", skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 0.75, qualityStats = { @@ -21213,7 +21756,7 @@ skills["VaultingImpactPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkVaultingImpact.dds", color = 3, description = "Leap forward and Slam the ground, sending out a shockwave. The shockwave applies Broken Stance to Dazed enemies, causing any Hits against those enemies to deal extra damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.Jumping] = true, [SkillType.Travel] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -21413,7 +21956,7 @@ skills["VolatileDeadPlayer"] = { }, statSets = { [1] = { - label = "Explosion", + label = "Volatile Dead", baseEffectiveness = 2.4000000953674, incrementalEffectiveness = 0.12999999523163, damageIncrementalEffectiveness = 0.0096000004559755, @@ -21421,16 +21964,85 @@ skills["VolatileDeadPlayer"] = { baseFlags = { spell = true, area = true, + duration = true, }, constantStats = { { "volatile_dead_base_number_of_corpses_to_consume", 1 }, - { "active_skill_base_area_of_effect_radius", 22 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "base_skill_effect_duration", 5000 }, }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.054999999701977, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "volatile_dead_statset_1", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "volatile_dead_base_number_of_corpses_to_consume", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 22 }, + }, stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", "is_area_damage", @@ -21442,57 +22054,58 @@ skills["VolatileDeadPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 21, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 32, 49, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 58, 86, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 80, 120, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 109, 163, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 126, 189, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 145, 218, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 193, 289, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 222, 333, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 255, 383, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 293, 440, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 337, 505, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 387, 580, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 444, 666, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 510, 765, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 586, 879, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 674, 1010, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 775, 1162, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 892, 1337, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1027, 1540, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1184, 1775, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1365, 2048, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1577, 2365, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1822, 2734, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 2109, 3163, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 2443, 3664, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2833, 4250, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 3290, 4934, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 3825, 5737, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 4452, 6678, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 3, 4, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 3, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7, 11, 4, 5, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 14, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, 18, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, 23, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, 28, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 23, 34, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 27, 41, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 49, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 39, 59, 10, 15, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 46, 69, 11, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 53, 80, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 62, 93, 13, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 72, 108, 14, 21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 83, 124, 15, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 96, 143, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 110, 165, 17, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 127, 190, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 146, 218, 20, 29, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 167, 251, 21, 31, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 192, 288, 22, 33, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 221, 331, 24, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 253, 380, 25, 37, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 291, 437, 26, 40, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 334, 502, 28, 42, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 384, 577, 29, 44, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 442, 663, 31, 46, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 509, 763, 32, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 586, 879, 34, 51, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 676, 1013, 36, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 779, 1169, 37, 56, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 900, 1350, 39, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1040, 1561, 41, 61, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1204, 1806, 43, 64, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1394, 2092, 44, 67, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1617, 2426, 46, 70, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1878, 2817, 48, 72, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2183, 3275, 50, 75, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2541, 3812, 52, 78, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, - [2] = { + [3] = { label = "Core", baseEffectiveness = 1.3700000047684, incrementalEffectiveness = 0.12999999523163, damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "volatile_dead_statset_1", + statDescriptionScope = "volatile_dead_statset_2", baseFlags = { spell = true, area = true, + duration = true, }, constantStats = { { "volatile_dead_base_number_of_corpses_to_consume", 1 }, @@ -21516,46 +22129,46 @@ skills["VolatileDeadPlayer"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0, 0, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 0, 0, 5, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 0, 0, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 0, 0, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 0, 0, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 0, 0, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 0, 0, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 0, 0, 23, 34, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 0, 0, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 0, 0, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 0, 0, 39, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 0, 0, 46, 69, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 0, 0, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 0, 0, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 0, 0, 72, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 0, 0, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 0, 0, 96, 143, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 0, 0, 110, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 0, 0, 127, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 0, 0, 146, 218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 0, 0, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 0, 0, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 0, 0, 221, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 0, 0, 253, 380, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 0, 0, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 0, 0, 334, 502, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 0, 0, 384, 577, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 0, 0, 442, 663, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 0, 0, 509, 763, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 0, 0, 586, 879, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 0, 0, 676, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 0, 0, 779, 1169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 0, 0, 900, 1350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 0, 0, 1040, 1561, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 0, 0, 1204, 1806, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 0, 0, 1394, 2092, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 0, 0, 1617, 2426, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 0, 0, 1878, 2817, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 0, 0, 2183, 3275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 0, 0, 2541, 3812, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 4, 6, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 5, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7, 11, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, 14, 9, 14, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, 18, 12, 18, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, 23, 15, 23, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, 28, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 23, 34, 23, 34, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 27, 41, 27, 41, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 49, 33, 49, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 39, 59, 39, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 46, 69, 46, 69, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 53, 80, 53, 80, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 62, 93, 62, 93, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 72, 108, 72, 108, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 83, 124, 83, 124, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 96, 143, 96, 143, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 110, 165, 110, 165, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 127, 190, 127, 190, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 146, 218, 146, 218, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 167, 251, 167, 251, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 192, 288, 192, 288, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 221, 331, 221, 331, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 253, 380, 253, 380, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 291, 437, 291, 437, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 334, 502, 334, 502, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 384, 577, 384, 577, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 442, 663, 442, 663, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 509, 763, 509, 763, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 586, 879, 586, 879, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 676, 1013, 676, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 779, 1169, 779, 1169, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 900, 1350, 900, 1350, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1040, 1561, 1040, 1561, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1204, 1806, 1204, 1806, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1394, 2092, 1394, 2092, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1617, 2426, 1617, 2426, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1878, 2817, 1878, 2817, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2183, 3275, 2183, 3275, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2541, 3812, 2541, 3812, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -21696,7 +22309,7 @@ skills["WaveOfFrostPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkFreezingBackflip.dds", color = 3, description = "Flip backwards and send forth a Freezing wave in front of you, immediately Freezing enemies which are Primed for Freeze.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, [SkillType.CanCancelActions] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, [SkillType.CanCancelActions] = true, }, weaponTypes = { ["Staff"] = true, }, @@ -21819,13 +22432,13 @@ skills["WhirlingAssaultPlayer"] = { icon = "Art/2DArt/SkillIcons/MonkWhirlingAssault.dds", color = 3, description = "Advance while hitting enemies around you with a series of spinning Strikes.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, }, weaponTypes = { ["Staff"] = true, }, castTime = 1, qualityStats = { - { "active_skill_attack_speed_+%_final", 0.75 }, + { "attack_speed_+%", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 18, }, }, @@ -21949,7 +22562,7 @@ skills["GaleStrikePlayer"] = { icon = "Art/2DArt/SkillIcons/MonkGaleStrikeSwing.dds", color = 3, description = "Batter enemies at range by generating a gust of wind as you swing. Enemies will be Dazed and Knocked Back based on how close they are to you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.Wind] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Wind] = true, }, weaponTypes = { ["Staff"] = true, }, diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index 681674a8c6..cfd414809c 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -161,46 +161,46 @@ skills["AncestralCryShockwavePlayer"] = { qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.6, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.73, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.87, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.94, levelRequirement = 0, }, - [7] = { baseMultiplier = 1.02, levelRequirement = 0, }, - [8] = { baseMultiplier = 1.09, levelRequirement = 0, }, - [9] = { baseMultiplier = 1.16, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.23, levelRequirement = 0, }, - [11] = { baseMultiplier = 1.31, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.4, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.49, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.6, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.71, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.83, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.97, levelRequirement = 0, }, - [18] = { baseMultiplier = 2.11, levelRequirement = 0, }, - [19] = { baseMultiplier = 2.27, levelRequirement = 0, }, - [20] = { baseMultiplier = 2.45, levelRequirement = 0, }, - [21] = { baseMultiplier = 2.64, levelRequirement = 0, }, - [22] = { baseMultiplier = 2.84, levelRequirement = 0, }, - [23] = { baseMultiplier = 3.06, levelRequirement = 0, }, - [24] = { baseMultiplier = 3.3, levelRequirement = 0, }, - [25] = { baseMultiplier = 3.55, levelRequirement = 0, }, - [26] = { baseMultiplier = 3.83, levelRequirement = 0, }, - [27] = { baseMultiplier = 4.13, levelRequirement = 0, }, - [28] = { baseMultiplier = 4.44, levelRequirement = 0, }, - [29] = { baseMultiplier = 4.79, levelRequirement = 0, }, - [30] = { baseMultiplier = 5.16, levelRequirement = 0, }, - [31] = { baseMultiplier = 5.56, levelRequirement = 0, }, - [32] = { baseMultiplier = 5.99, levelRequirement = 0, }, - [33] = { baseMultiplier = 6.45, levelRequirement = 0, }, - [34] = { baseMultiplier = 6.95, levelRequirement = 0, }, - [35] = { baseMultiplier = 7.48, levelRequirement = 0, }, - [36] = { baseMultiplier = 8.06, levelRequirement = 0, }, - [37] = { baseMultiplier = 8.69, levelRequirement = 0, }, - [38] = { baseMultiplier = 9.36, levelRequirement = 0, }, - [39] = { baseMultiplier = 10.08, levelRequirement = 0, }, - [40] = { baseMultiplier = 10.86, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.73, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.87, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.09, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.83, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.97, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 2.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 2.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 2.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.06, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 3.83, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.56, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.99, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 6.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 7.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 8.06, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 8.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 9.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 10.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 10.86, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -220,6 +220,7 @@ skills["AncestralCryShockwavePlayer"] = { stats = { "is_area_damage", "display_statset_hide_usage_stats", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { [1] = { actorLevel = 1, }, @@ -276,46 +277,46 @@ skills["AncestralCryProjectilePlayer"] = { qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.8, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [2] = { baseMultiplier = 0.88, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [3] = { baseMultiplier = 0.96, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [4] = { baseMultiplier = 1.05, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [5] = { baseMultiplier = 1.13, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [6] = { baseMultiplier = 1.21, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [7] = { baseMultiplier = 1.28, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [8] = { baseMultiplier = 1.35, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [9] = { baseMultiplier = 1.41, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [10] = { baseMultiplier = 1.47, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [11] = { baseMultiplier = 1.53, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [12] = { baseMultiplier = 1.59, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [13] = { baseMultiplier = 1.65, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [14] = { baseMultiplier = 1.71, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [15] = { baseMultiplier = 1.78, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [16] = { baseMultiplier = 1.84, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [17] = { baseMultiplier = 1.91, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [18] = { baseMultiplier = 1.97, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [19] = { baseMultiplier = 2.04, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [20] = { baseMultiplier = 2.11, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [21] = { baseMultiplier = 2.18, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [22] = { baseMultiplier = 2.25, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [23] = { baseMultiplier = 2.33, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [24] = { baseMultiplier = 2.4, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [25] = { baseMultiplier = 2.48, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [26] = { baseMultiplier = 2.57, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [27] = { baseMultiplier = 2.65, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [28] = { baseMultiplier = 2.74, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [29] = { baseMultiplier = 2.83, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [30] = { baseMultiplier = 2.92, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [31] = { baseMultiplier = 3.02, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [32] = { baseMultiplier = 3.12, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [33] = { baseMultiplier = 3.22, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [34] = { baseMultiplier = 3.33, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [35] = { baseMultiplier = 3.44, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [36] = { baseMultiplier = 3.56, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [37] = { baseMultiplier = 3.67, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [38] = { baseMultiplier = 3.8, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [39] = { baseMultiplier = 3.92, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, - [40] = { baseMultiplier = 4.05, cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, + [1] = { baseMultiplier = 0.8, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.88, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.96, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.05, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.13, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.21, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.28, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.35, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.41, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.47, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.53, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.59, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.65, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.71, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.78, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.84, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.91, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.97, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.04, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 2.11, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 2.18, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 2.25, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 2.33, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.4, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.48, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.57, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.65, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.74, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.83, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 2.92, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.02, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.12, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.22, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 3.33, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 3.44, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 3.56, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 3.67, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 3.8, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 3.92, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 4.05, cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -389,7 +390,7 @@ skills["AncestralWarriorTotemPlayer"] = { baseTypeName = "Ancestral Warrior Totem", icon = "Art/2DArt/SkillIcons/BruteAncestralWarriorTotem.dds", color = 1, - description = "Consume 3 Endurance Charges to Raise a Totem that uses socketed Mace Skills. Cannot use Channelling Skills or Skills with Cooldowns.", + description = "Consume 3 Endurance Charges to Raise a Totem that conjures spirit warriors. Each warrior uses a socketed Mace Skill once, then disappears. Cannot use Channelling Skills or Skills with Cooldowns.", skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.SummonsAttackTotem] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Area] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, }, weaponTypes = { ["One Hand Mace"] = true, @@ -457,9 +458,9 @@ skills["AncestralWarriorTotemPlayer"] = { constantStats = { { "base_totem_duration", 8000 }, { "base_totem_range", 60 }, - { "ancestral_spirit_base_lockout_time_ms", 600 }, { "active_skill_requires_X_endurance_charges", 3 }, { "non_modifiable_totem_limit", 10 }, + { "ancestral_warrior_totem_total_use_time_%_as_idle_after_animation", 50 }, }, stats = { "totem_elemental_resistance_%", @@ -520,9 +521,9 @@ skills["SupportAncestralWarriorTotemPlayer"] = { name = "SupportAncestralWarriorTotemPlayer", hidden = true, support = true, - requireSkillTypes = { SkillType.Attack, }, - addSkillTypes = { SkillType.UsedByTotem, }, - excludeSkillTypes = { SkillType.Meta, SkillType.Triggered, SkillType.Cooldown, SkillType.Channel, SkillType.Persistent, }, + requireSkillTypes = { SkillType.Attack, SkillType.Totemable, SkillType.AND, }, + addSkillTypes = { SkillType.UsedByTotem, SkillType.UsedByProxy, SkillType.SupportedByAncestralWarriorTotem, }, + excludeSkillTypes = { SkillType.Meta, SkillType.HasUsageCondition, SkillType.Cooldown, SkillType.Channel, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByAncestralWarriorTotem, SkillType.NOT, SkillType.AND, }, ignoreMinionTypes = true, qualityStats = { }, @@ -783,7 +784,7 @@ skills["ArmourBreakerPlayer"] = { icon = "Art/2DArt/SkillIcons/BruteHeavyStrike.dds", color = 1, description = "Strike with a forceful blow, knocking enemies back and weakening their Armour.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.AttackInPlace] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -1039,7 +1040,7 @@ skills["ArtilleryBallistaProjectilePlayer"] = { name = "Ballista Bolt", hidden = true, icon = "Art/2DArt/SkillIcons/MercRipwireBallista.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Sustained] = true, [SkillType.Bow] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.UsedByTotem] = true, [SkillType.UsedByProxy] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -1357,46 +1358,46 @@ skills["BarkskinPlayer"] = { "base_deal_no_damage", }, levels = { - [1] = { 25, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 26, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 27, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 28, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 29, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 30, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 31, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 32, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 33, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 34, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 35, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 36, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 37, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 38, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 39, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 40, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 41, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 42, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 43, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 44, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 45, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 46, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 47, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 48, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 49, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 50, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 51, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 52, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 53, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 54, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 55, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 56, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 57, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 58, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 59, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 60, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 61, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 62, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 63, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 64, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 43, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 44, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 45, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 46, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 47, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 48, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 49, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 50, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 51, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 52, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 53, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 54, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 55, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 56, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 57, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 58, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 59, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 60, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 61, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 62, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 63, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 64, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 65, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 66, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 67, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 68, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 69, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 70, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 71, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 72, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 73, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 74, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 75, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 76, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 77, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 78, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 79, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 80, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 81, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 82, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1530,7 +1531,7 @@ skills["BlackPowderBlitzReservationPlayer"] = { baseTypeName = "Black Powder Blitz", icon = "Art/2DArt/SkillIcons/ShankgonneSkill.dds", fromItem = true, - color = 1, + color = 4, description = "Replaces your dodge roll with an explosive-assisted leap, firing off a round from your prosthetic cannon leg that Blinds and Ignites enemies in the area you escape from. The explosion will cause any Grenades in its area of effect to also explode.", skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.DodgeReplacement] = true, [SkillType.Detonator] = true, [SkillType.AttackInPlace] = true, }, castTime = 0, @@ -1647,46 +1648,46 @@ skills["BlackPowderBlitzPlayer"] = { { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { cooldown = 4.5, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 4.4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [3] = { cooldown = 4.4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [4] = { cooldown = 4.3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [5] = { cooldown = 4.3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [6] = { cooldown = 4.2, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [7] = { cooldown = 4.2, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [8] = { cooldown = 4.1, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [9] = { cooldown = 4.1, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [10] = { cooldown = 4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [11] = { cooldown = 4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [12] = { cooldown = 3.9, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [13] = { cooldown = 3.9, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [14] = { cooldown = 3.8, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [15] = { cooldown = 3.8, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [16] = { cooldown = 3.7, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [17] = { cooldown = 3.7, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [18] = { cooldown = 3.6, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [19] = { cooldown = 3.6, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [20] = { cooldown = 3.5, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [21] = { cooldown = 3.5, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [22] = { cooldown = 3.4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [23] = { cooldown = 3.4, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [24] = { cooldown = 3.3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [25] = { cooldown = 3.3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [26] = { cooldown = 3.2, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [27] = { cooldown = 3.2, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [28] = { cooldown = 3.1, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [29] = { cooldown = 3.1, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [30] = { cooldown = 3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [31] = { cooldown = 3, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [32] = { cooldown = 2.9, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [33] = { cooldown = 2.9, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [34] = { cooldown = 2.8, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [35] = { cooldown = 2.8, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [36] = { cooldown = 2.7, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [37] = { cooldown = 2.7, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [38] = { cooldown = 2.6, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [39] = { cooldown = 2.6, critChance = 15, levelRequirement = 0, storedUses = 1, }, - [40] = { cooldown = 2.5, critChance = 15, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 4.5, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 4.4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 4.4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 4.3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 4.3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 4.2, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 4.2, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 4.1, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 4.1, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 3.9, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 3.9, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 3.8, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 3.8, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 3.7, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 3.7, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 3.6, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 3.6, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 3.5, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 3.5, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 3.4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 3.4, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 3.3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 3.3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 3.2, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 3.2, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 3.1, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 3.1, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 3, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 2.9, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 2.9, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 2.8, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 2.8, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 2.7, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 2.7, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 2.6, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 2.6, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 2.5, critChance = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1774,14 +1775,14 @@ skills["BoneshatterPlayer"] = { icon = "Art/2DArt/SkillIcons/BruteBoneshatter.dds", color = 1, description = "Attack enemies with a melee Strike. The Strike will cause a Heavy Stun on enemies that are Primed for Stun. Upon causing a Heavy Stun it will also create a Shockwave, dealing a large amount of damage in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, }, castTime = 1, qualityStats = { - { "attack_speed_+%", 1.5 }, + { "attack_speed_+%", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -40, levelRequirement = 0, cost = { Mana = 9, }, }, @@ -1834,6 +1835,7 @@ skills["BoneshatterPlayer"] = { baseFlags = { attack = true, melee = true, + area = true, }, constantStats = { { "melee_range_+", 2 }, @@ -1845,6 +1847,7 @@ skills["BoneshatterPlayer"] = { "active_skill_show_crush_range", "crushing_blow", "precise_cursor_targeting_uses_contact_point_height_offset", + "is_area_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -2091,7 +2094,7 @@ skills["HyenaCacklePlayer"] = { minionList = { "HyenaMinion", }, - color = 1, + color = 4, description = "Activate to summon a cackle of Hyena Companions. The cackle is treated as a single Companion for effects that count or limit Companions, regardless of the number of Hyenas in the cackle. Hyenas whoop when they first appear, Hindering nearby enemies, and have a chance to Maim enemies they Hit.", skillTypes = { [SkillType.Minion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, [SkillType.CreatesMinion] = true, [SkillType.AttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, @@ -2150,7 +2153,8 @@ skills["HyenaCacklePlayer"] = { minion = true, }, constantStats = { - { "skill_minion_summon_delay_interval_ms", 500 }, + { "skill_minion_summon_delay_interval_ms", 100 }, + { "skill_desired_amount_override", 1 }, }, stats = { "skill_hyena_cackle_size", @@ -2207,7 +2211,7 @@ skills["MetaCastOnBlockPlayer"] = { baseTypeName = "Cast on Block", icon = "Art/2DArt/SkillIcons/CastOnMeleeBlockSkill.dds", fromItem = true, - color = 1, + color = 4, description = "While active, gains Energy when you Block and triggers socketed Spells on reaching maximum Energy.", skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, castTime = 0, @@ -2384,6 +2388,7 @@ skills["SupportMetaCastOnBlockPlayer"] = { stats = { "triggered_by_generic_ongoing_trigger", "generic_ongoing_trigger_triggers_at_maximum_energy", + "no_cost", }, levels = { [1] = { actorLevel = 1, }, @@ -2576,7 +2581,7 @@ skills["ClusterGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/MercClusterGrenade.dds", color = 1, description = "Fire a bouncing Grenade that explodes when its fuse expires, throwing out a ring of mini Grenades that explode when they come to a stop.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -2747,7 +2752,7 @@ skills["ClusterGrenadePlayer"] = { "base_skill_show_average_damage_instead_of_dps", "projectiles_cannot_fork", "projectile_ballistic_angle_from_target_distance", - "no_additional_projectiles", + "number_of_projectiles_cannot_be_modified", "projectiles_nova", "projectiles_not_offset", "display_statset_hide_usage_stats", @@ -2804,7 +2809,7 @@ skills["CrossbowRequiemAmmoPlayer"] = { baseTypeName = "Compose Requiem", icon = "Art/2DArt/SkillIcons/RequiemChargeSkillCrossbow.dds", fromItem = true, - color = 1, + color = 4, description = "Your weapon passively accumulates anguish from the tormented souls within. When fully charged, use this skill to compose the Requiem, transforming your Crossbow shot into a torrent of anguish for a short, fixed amount of time. Does not use Ammunition.", skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, }, weaponTypes = { @@ -2937,46 +2942,46 @@ skills["CrossbowRequiemPlayer"] = { { "active_skill_base_area_of_effect_radius", 0.1 }, }, levels = { - [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 300, baseMultiplier = 3, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 300, baseMultiplier = 3.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 300, baseMultiplier = 3.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 300, baseMultiplier = 3.96, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 300, baseMultiplier = 4.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 300, baseMultiplier = 4.59, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 300, baseMultiplier = 4.92, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 300, baseMultiplier = 5.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 300, baseMultiplier = 5.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 300, baseMultiplier = 5.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 300, baseMultiplier = 6.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 300, baseMultiplier = 6.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 300, baseMultiplier = 6.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 300, baseMultiplier = 6.98, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 300, baseMultiplier = 7.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 300, baseMultiplier = 7.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 300, baseMultiplier = 8.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 300, baseMultiplier = 8.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 300, baseMultiplier = 8.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 300, baseMultiplier = 9.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 300, baseMultiplier = 9.82, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 300, baseMultiplier = 10.32, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 300, baseMultiplier = 10.83, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 300, baseMultiplier = 11.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 300, baseMultiplier = 11.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 300, baseMultiplier = 12.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 300, baseMultiplier = 13.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 300, baseMultiplier = 13.82, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 300, baseMultiplier = 14.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 300, baseMultiplier = 15.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 300, baseMultiplier = 16, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 300, baseMultiplier = 16.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 300, baseMultiplier = 17.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 300, baseMultiplier = 18.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 300, baseMultiplier = 19.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 300, baseMultiplier = 20.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 300, baseMultiplier = 21.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 300, baseMultiplier = 22.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 300, baseMultiplier = 23.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 300, baseMultiplier = 24.83, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3537,10 +3542,7 @@ skills["DefianceBannerPlayer"] = { duration = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 45 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 60 }, { "active_skill_requires_X_glory", 200 }, { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, @@ -3907,10 +3909,7 @@ skills["DreadBannerPlayer"] = { duration = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 45 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 60 }, { "active_skill_requires_X_glory", 200 }, { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, @@ -4145,46 +4144,46 @@ skills["EarthquakePlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { 2, 6, baseMultiplier = 1.6, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 6, baseMultiplier = 1.76, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 6, baseMultiplier = 1.94, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2, 7, baseMultiplier = 2.12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 2, 7, baseMultiplier = 2.29, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 7, baseMultiplier = 2.47, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 8, baseMultiplier = 2.66, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 2, 8, baseMultiplier = 2.83, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, 8, baseMultiplier = 2.99, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 3, 9, baseMultiplier = 3.16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 3, 9, baseMultiplier = 3.35, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 3, 9, baseMultiplier = 3.54, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 3, 10, baseMultiplier = 3.76, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 3, 10, baseMultiplier = 3.99, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 3, 10, baseMultiplier = 4.23, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 4, 11, baseMultiplier = 4.5, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 4, 11, baseMultiplier = 4.79, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 4, 11, baseMultiplier = 5.1, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 4, 12, baseMultiplier = 5.43, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 4, 12, baseMultiplier = 5.8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 5, 12, baseMultiplier = 6.18, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 5, 13, baseMultiplier = 6.59, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 5, 13, baseMultiplier = 7.03, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 5, 13, baseMultiplier = 7.5, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 5, 14, baseMultiplier = 8, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 6, 14, baseMultiplier = 8.53, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 6, 14, baseMultiplier = 9.1, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 6, 15, baseMultiplier = 9.71, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 6, 15, baseMultiplier = 10.36, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 6, 15, baseMultiplier = 11.04, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 7, 15, baseMultiplier = 11.78, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 7, 16, baseMultiplier = 12.57, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 7, 16, baseMultiplier = 13.4, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 7, 16, baseMultiplier = 14.3, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 7, 16, baseMultiplier = 15.25, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8, 16, baseMultiplier = 16.26, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8, 16, baseMultiplier = 17.35, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8, 17, baseMultiplier = 18.5, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8, 17, baseMultiplier = 19.74, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8, 17, baseMultiplier = 21.05, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 2, 6, baseMultiplier = 1.84, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 6, baseMultiplier = 2.02, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 6, baseMultiplier = 2.23, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, 7, baseMultiplier = 2.43, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 2, 7, baseMultiplier = 2.63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 7, baseMultiplier = 2.84, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 8, baseMultiplier = 3.05, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 8, baseMultiplier = 3.25, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 8, baseMultiplier = 3.44, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3, 9, baseMultiplier = 3.64, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3, 9, baseMultiplier = 3.85, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3, 9, baseMultiplier = 4.08, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, 10, baseMultiplier = 4.32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, 10, baseMultiplier = 4.59, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 3, 10, baseMultiplier = 4.87, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 4, 11, baseMultiplier = 5.18, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 4, 11, baseMultiplier = 5.51, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 4, 11, baseMultiplier = 5.86, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 4, 12, baseMultiplier = 6.25, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, 12, baseMultiplier = 6.66, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 5, 12, baseMultiplier = 7.11, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 5, 13, baseMultiplier = 7.58, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 5, 13, baseMultiplier = 8.09, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 5, 13, baseMultiplier = 8.63, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 5, 14, baseMultiplier = 9.2, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 6, 14, baseMultiplier = 9.81, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 6, 14, baseMultiplier = 10.47, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 6, 15, baseMultiplier = 11.16, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 6, 15, baseMultiplier = 11.91, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 6, 15, baseMultiplier = 12.7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 7, 15, baseMultiplier = 13.55, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 7, 16, baseMultiplier = 14.45, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 7, 16, baseMultiplier = 15.41, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 7, 16, baseMultiplier = 16.44, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 7, 16, baseMultiplier = 17.53, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8, 16, baseMultiplier = 18.7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8, 16, baseMultiplier = 19.95, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8, 17, baseMultiplier = 21.28, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8, 17, baseMultiplier = 22.7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8, 17, baseMultiplier = 24.21, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -4381,7 +4380,7 @@ skills["EmergencyReloadPlayer"] = { icon = "Art/2DArt/SkillIcons/MercEmergencyReload.dds", color = 1, description = "Instantly reload all your Crossbow Ammunition clips and Empower each clip's Ammunition to deal more damage for a duration.", - skillTypes = { [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, }, + skillTypes = { [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.IndeterminateEmpowermentAmount] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -4713,7 +4712,7 @@ skills["EternalRagePlayer"] = { icon = "Art/2DArt/SkillIcons/CeaselessRageSkill.dds", color = 1, description = "While active, you constantly regenerate Rage.", - skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.ReserveInAllSets] = true, }, castTime = 0, qualityStats = { { "ceaseless_rage_base_rage_regeneration_per_minute", 1.5 }, @@ -4777,6 +4776,7 @@ skills["EternalRagePlayer"] = { stats = { "ceaseless_rage_base_rage_regeneration_per_minute", "base_deal_no_damage", + "display_skill_reserves_in_all_weapon_sets", }, levels = { [1] = { 15, statInterpolation = { 1, }, actorLevel = 1, }, @@ -4829,7 +4829,7 @@ skills["ExplosiveGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/ExplosiveGrenade.dds", color = 1, description = "Fire a bouncing Grenade that unleashes a devastating fiery blast when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Detonator] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Detonator] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -5087,10 +5087,9 @@ skills["SupportFeralInvocationPlayer"] = { name = "SupportFeralInvocationPlayer", hidden = true, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Shapeshift, SkillType.AND, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, - excludeSkillTypes = { SkillType.InbuiltTrigger, SkillType.Channel, }, - isTrigger = true, + requireSkillTypes = { SkillType.Attack, SkillType.Shapeshift, SkillType.AND, }, + addSkillTypes = { SkillType.UsedByClone, SkillType.UsedByProxy, SkillType.SupportedByFeralInvocation, }, + excludeSkillTypes = { SkillType.Meta, SkillType.HasUsageCondition, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByFeralInvocation, SkillType.NOT, SkillType.AND, }, qualityStats = { }, levels = { @@ -5515,6 +5514,7 @@ skills["WyvernFlameBreathPlayer"] = { { "active_skill_ignite_chance_+%_final", 200 }, { "active_skill_ignite_effect_+%_final", -60 }, { "base_minimum_channel_time_ms", 3000 }, + { "active_skill_energy_generated_+%_final", -98 }, }, stats = { "is_area_damage", @@ -5522,6 +5522,7 @@ skills["WyvernFlameBreathPlayer"] = { "skill_cannot_gain_rage_during_use", "active_skill_compounding_ignites", "channelled_skill_do_not_go_on_cooldown_on_finishing_channel", + "skill_can_be_queued_on_cooldown", }, levels = { [1] = { actorLevel = 1, }, @@ -5574,7 +5575,7 @@ skills["FlashGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/FlashbangGrenade.dds", color = 1, description = "Fire a bouncing Grenade that unleashes a Blinding, Stunning explosion when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -5711,7 +5712,7 @@ skills["ForgeHammerPlayer"] = { icon = "Art/2DArt/SkillIcons/WarriorForgeHammer.dds", color = 1, description = "Hurl a fiery hammer that Slams into the ground and lodges there. While the hammer is lodged in the ground, reusing this Skill recalls the hammer and resets the Skill's cooldown. Alternatively, using a Warcry near the lodged hammer causes it to shatter, releasing a number of Molten Fissures in a spiral.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Cooldown] = true, [SkillType.CanCreateStoneElementals] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Cooldown] = true, [SkillType.CanCreateStoneElementals] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -5779,7 +5780,7 @@ skills["ForgeHammerPlayer"] = { { "active_skill_base_area_of_effect_radius", 18 }, { "forge_hammer_maximum_hammers", 1 }, { "forge_hammer_base_maximum_number_of_fissures", 10 }, - { "forge_hammer_base_number_of_fissures", 5 }, + { "base_number_of_fissures", 5 }, { "forge_hammer_hammer_speed", 300 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 }, { "movement_speed_+%_final_while_performing_action", -70 }, @@ -5849,7 +5850,7 @@ skills["ForgeHammerPlayer"] = { { "attack_maximum_action_distance_+", 40 }, { "forge_hammer_maximum_hammers", 1 }, { "forge_hammer_base_maximum_number_of_fissures", 10 }, - { "forge_hammer_base_number_of_fissures", 5 }, + { "base_number_of_fissures", 5 }, { "forge_hammer_hammer_speed", 300 }, { "active_skill_base_physical_damage_%_to_convert_to_fire", 30 }, { "movement_speed_+%_final_while_performing_action", -70 }, @@ -5920,6 +5921,7 @@ skills["FortifyingCryPlayer"] = { skillTypes = { [SkillType.Warcry] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Damage] = true, [SkillType.ConsumesCharges] = true, [SkillType.Cooldown] = true, [SkillType.Physical] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.Nova] = true, }, castTime = 0.8, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Mana = 19, }, }, @@ -6048,46 +6050,46 @@ skills["FortifyingCryShockwavePlayer"] = { { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { baseMultiplier = 0.5, critChance = 5, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.55, critChance = 5, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.61, critChance = 5, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.67, critChance = 5, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.73, critChance = 5, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.79, critChance = 5, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.85, critChance = 5, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.91, critChance = 5, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.97, critChance = 5, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.03, critChance = 5, levelRequirement = 0, }, - [11] = { baseMultiplier = 1.09, critChance = 5, levelRequirement = 0, }, - [12] = { baseMultiplier = 1.17, critChance = 5, levelRequirement = 0, }, - [13] = { baseMultiplier = 1.25, critChance = 5, levelRequirement = 0, }, - [14] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, }, - [15] = { baseMultiplier = 1.42, critChance = 5, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.53, critChance = 5, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.64, critChance = 5, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.76, critChance = 5, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.89, critChance = 5, levelRequirement = 0, }, - [20] = { baseMultiplier = 2.04, critChance = 5, levelRequirement = 0, }, - [21] = { baseMultiplier = 2.2, critChance = 5, levelRequirement = 0, }, - [22] = { baseMultiplier = 2.37, critChance = 5, levelRequirement = 0, }, - [23] = { baseMultiplier = 2.55, critChance = 5, levelRequirement = 0, }, - [24] = { baseMultiplier = 2.75, critChance = 5, levelRequirement = 0, }, - [25] = { baseMultiplier = 2.96, critChance = 5, levelRequirement = 0, }, - [26] = { baseMultiplier = 3.19, critChance = 5, levelRequirement = 0, }, - [27] = { baseMultiplier = 3.44, critChance = 5, levelRequirement = 0, }, - [28] = { baseMultiplier = 3.7, critChance = 5, levelRequirement = 0, }, - [29] = { baseMultiplier = 3.99, critChance = 5, levelRequirement = 0, }, - [30] = { baseMultiplier = 4.3, critChance = 5, levelRequirement = 0, }, - [31] = { baseMultiplier = 4.63, critChance = 5, levelRequirement = 0, }, - [32] = { baseMultiplier = 4.99, critChance = 5, levelRequirement = 0, }, - [33] = { baseMultiplier = 5.37, critChance = 5, levelRequirement = 0, }, - [34] = { baseMultiplier = 5.79, critChance = 5, levelRequirement = 0, }, - [35] = { baseMultiplier = 6.24, critChance = 5, levelRequirement = 0, }, - [36] = { baseMultiplier = 6.72, critChance = 5, levelRequirement = 0, }, - [37] = { baseMultiplier = 7.24, critChance = 5, levelRequirement = 0, }, - [38] = { baseMultiplier = 7.8, critChance = 5, levelRequirement = 0, }, - [39] = { baseMultiplier = 8.4, critChance = 5, levelRequirement = 0, }, - [40] = { baseMultiplier = 9.05, critChance = 5, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.5, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.55, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.61, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.67, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.73, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.79, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.85, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.91, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.97, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.03, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.09, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.17, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.25, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.33, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.42, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.53, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.64, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.76, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.89, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 2.04, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 2.2, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 2.37, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 2.55, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.75, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.96, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 3.19, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 3.44, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 3.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 3.99, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 4.3, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 4.63, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 4.99, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.37, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 5.79, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.24, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.72, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.24, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.8, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 8.4, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 9.05, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -6122,46 +6124,46 @@ skills["FortifyingCryShockwavePlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 3, 5, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 5, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 8, 12, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11, 17, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 14, 21, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 18, 26, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 21, 32, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 25, 37, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 29, 43, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 33, 50, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 37, 56, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 42, 63, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 47, 70, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 52, 78, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 57, 85, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 62, 93, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 68, 101, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 73, 110, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 79, 119, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 85, 128, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 92, 137, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 98, 147, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 105, 157, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 112, 167, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 119, 178, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 126, 189, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 133, 200, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 141, 211, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 149, 223, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 157, 235, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 165, 247, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 173, 260, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 182, 273, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 191, 286, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 200, 299, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 209, 313, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 218, 327, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 228, 342, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 237, 356, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 247, 371, 6, 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3, 5, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 5, 8, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 17, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 14, 21, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 18, 26, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 32, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 25, 37, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 43, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 33, 50, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 37, 56, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 42, 63, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 47, 70, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 52, 78, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 57, 85, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 62, 93, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 68, 101, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 73, 110, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 79, 119, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 85, 128, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 92, 137, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 98, 147, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 105, 157, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 112, 167, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 119, 178, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 126, 189, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 133, 200, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 141, 211, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 149, 223, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 157, 235, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 165, 247, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 173, 260, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 182, 273, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 191, 286, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 200, 299, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 209, 313, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 218, 327, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 228, 342, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 237, 356, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 247, 371, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -6496,7 +6498,7 @@ skills["ToxicGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/ToxicGrenade.dds", color = 1, description = "Fire a bouncing Grenade that causes a burst of Poison gas when its fuse expires, damaging enemies and leaving behind a growing Poison cloud. Burning effects or Detonator skills will cause the cloud to explode in a fiery blast.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Chaos] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Limit] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -6796,7 +6798,7 @@ skills["GeminiSurgePlayer"] = { baseTypeName = "Gemini Surge", icon = "Art/2DArt/SkillIcons/AmazonElementalInfusionSkillIcon.dds", fromItem = true, - color = 1, + color = 4, description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, @@ -7301,8 +7303,8 @@ skills["HeraldOfBloodPlayer"] = { baseTypeName = "Herald of Blood", icon = "Art/2DArt/SkillIcons/HeraldOfBloodSkill.dds", color = 1, - description = "While active, killing an enemy with Blood Loss will cause a bloody explosion that deals Physical Attack damage to surrounding enemies based off the life of the exploded enemy, destroying their Corpse if the enemy was Normal or Magic. The explosion also has a chance to Aggravate Bleeding.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Herald] = true, [SkillType.UseGlobalStats] = true, [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.SkillConsumesBleeding] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, + description = "While active, killing an enemy with Blood Loss will cause a bloody explosion that deals Physical Attack damage to surrounding enemies. This damage is not based on your Weapon, but is partially based on their accumulated Blood Loss. The explosion destroys their Corpse if the enemy was Normal or Magic, and has a chance to Aggravate Bleeding.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Herald] = true, [SkillType.UseGlobalStats] = true, [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.SkillConsumesBleeding] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, [SkillType.NonWeaponAttack] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -7321,7 +7323,7 @@ skills["HeraldOfBloodPlayer"] = { }, castTime = 1, qualityStats = { - { "skill_herald_of_blood_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", 0.2 }, + { "skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", 0.2 }, }, levels = { [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, @@ -7439,7 +7441,7 @@ skills["HeraldOfBloodPlayer"] = { stats = { "main_hand_weapon_minimum_physical_damage", "main_hand_weapon_maximum_physical_damage", - "skill_herald_of_blood_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", + "skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", "skill_herald_of_blood_explosion_aggravate_bleeding_chance_%", "quality_display_herald_of_blood_is_gem", "is_area_damage", @@ -7877,46 +7879,46 @@ skills["IronWardNovaPlayer"] = { { "active_skill_hit_damage_stun_multiplier_+%_final", 2.5 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -8244,7 +8246,7 @@ skills["ArmourPiercingBoltsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/RapidShotPhysical.dds", description = "Rapidly fire bolts that Break enemy Armour. Can fire a limited number of bolts before needing to reload.", - 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, [SkillType.Physical] = 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, [SkillType.Physical] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8253,46 +8255,46 @@ skills["ArmourPiercingBoltsPlayer"] = { { "armour_break_amount_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = 325, baseMultiplier = 0.25, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 325, baseMultiplier = 0.27, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 325, baseMultiplier = 0.3, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 325, baseMultiplier = 0.33, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 325, baseMultiplier = 0.36, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 325, baseMultiplier = 0.39, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 325, baseMultiplier = 0.42, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 325, baseMultiplier = 0.44, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 325, baseMultiplier = 0.47, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 325, baseMultiplier = 0.49, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 325, baseMultiplier = 0.52, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 325, baseMultiplier = 0.55, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 325, baseMultiplier = 0.59, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 325, baseMultiplier = 0.62, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 325, baseMultiplier = 0.66, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 325, baseMultiplier = 0.7, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 325, baseMultiplier = 0.75, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 325, baseMultiplier = 0.8, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 325, baseMultiplier = 0.85, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 325, baseMultiplier = 0.91, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 325, baseMultiplier = 0.97, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 325, baseMultiplier = 1.03, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 325, baseMultiplier = 1.1, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 325, baseMultiplier = 1.17, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 325, baseMultiplier = 1.25, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 325, baseMultiplier = 1.33, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 325, baseMultiplier = 1.42, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 325, baseMultiplier = 1.52, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 325, baseMultiplier = 1.62, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 325, baseMultiplier = 1.73, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 325, baseMultiplier = 1.84, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 325, baseMultiplier = 1.96, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 325, baseMultiplier = 2.09, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 325, baseMultiplier = 2.23, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 325, baseMultiplier = 2.38, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 325, baseMultiplier = 2.54, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 325, baseMultiplier = 2.71, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 325, baseMultiplier = 2.89, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 325, baseMultiplier = 3.08, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 325, baseMultiplier = 3.29, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 325, baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 325, baseMultiplier = 0.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 325, baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 325, baseMultiplier = 0.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 325, baseMultiplier = 0.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 325, baseMultiplier = 0.39, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 325, baseMultiplier = 0.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 325, baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 325, baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 325, baseMultiplier = 0.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 325, baseMultiplier = 0.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 325, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 325, baseMultiplier = 0.59, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 325, baseMultiplier = 0.62, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 325, baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 325, baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 325, baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 325, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 325, baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 325, baseMultiplier = 0.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 325, baseMultiplier = 0.97, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 325, baseMultiplier = 1.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 325, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 325, baseMultiplier = 1.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 325, baseMultiplier = 1.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 325, baseMultiplier = 1.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 325, baseMultiplier = 1.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 325, baseMultiplier = 1.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 325, baseMultiplier = 1.62, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 325, baseMultiplier = 1.73, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 325, baseMultiplier = 1.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 325, baseMultiplier = 1.96, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 325, baseMultiplier = 2.09, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 325, baseMultiplier = 2.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 325, baseMultiplier = 2.38, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 325, baseMultiplier = 2.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 325, baseMultiplier = 2.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 325, baseMultiplier = 2.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 325, baseMultiplier = 3.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 325, baseMultiplier = 3.29, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -8381,12 +8383,13 @@ skills["ExplosiveShotAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/PowerShotIncendiary.dds", color = 1, description = "Load your Crossbow with flaming bolts that explode on impact. The explosion will cause any Grenades in its area of effect to also explode.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1.5, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 9, }, }, @@ -8499,7 +8502,7 @@ skills["ExplosiveShotPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/PowerShotIncendiary.dds", description = "Fire a flaming bolt that explodes on impact. The explosion will cause any Grenades in its area of effect to also explode.", - 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.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Detonator] = true, }, + 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.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Detonator] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -8508,46 +8511,46 @@ skills["ExplosiveShotPlayer"] = { { "active_skill_ignite_effect_+%_final", 1.5 }, }, levels = { - [1] = { attackSpeedMultiplier = -30, baseMultiplier = 1.3, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = -30, baseMultiplier = 1.43, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = -30, baseMultiplier = 1.57, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = -30, baseMultiplier = 1.85, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = -30, baseMultiplier = 2.26, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = -30, baseMultiplier = 2.37, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = -30, baseMultiplier = 2.49, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = -30, baseMultiplier = 2.61, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = -30, baseMultiplier = 2.74, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = -30, baseMultiplier = 2.88, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = -30, baseMultiplier = 3.18, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = -30, baseMultiplier = 3.34, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = -30, baseMultiplier = 3.5, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = -30, baseMultiplier = 3.68, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = -30, baseMultiplier = 3.86, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = -30, baseMultiplier = 4.05, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = -30, baseMultiplier = 4.26, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = -30, baseMultiplier = 4.47, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = -30, baseMultiplier = 4.69, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = -30, baseMultiplier = 4.93, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = -30, baseMultiplier = 5.17, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = -30, baseMultiplier = 5.43, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = -30, baseMultiplier = 5.71, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = -30, baseMultiplier = 5.99, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = -30, baseMultiplier = 6.29, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = -30, baseMultiplier = 6.6, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = -30, baseMultiplier = 6.93, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = -30, baseMultiplier = 7.28, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = -30, baseMultiplier = 7.65, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = -30, baseMultiplier = 8.03, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = -30, baseMultiplier = 8.43, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = -30, baseMultiplier = 8.85, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = -30, baseMultiplier = 9.29, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = -30, baseMultiplier = 9.76, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = -30, baseMultiplier = 10.25, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = -30, baseMultiplier = 10.76, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -30, baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -30, baseMultiplier = 1.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -30, baseMultiplier = 1.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -30, baseMultiplier = 1.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -30, baseMultiplier = 1.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.99, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -30, baseMultiplier = 2.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -30, baseMultiplier = 2.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -30, baseMultiplier = 2.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -30, baseMultiplier = 2.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -30, baseMultiplier = 2.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -30, baseMultiplier = 2.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -30, baseMultiplier = 2.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -30, baseMultiplier = 3.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -30, baseMultiplier = 3.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -30, baseMultiplier = 3.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -30, baseMultiplier = 3.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -30, baseMultiplier = 3.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -30, baseMultiplier = 3.86, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -30, baseMultiplier = 4.05, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -30, baseMultiplier = 4.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -30, baseMultiplier = 4.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -30, baseMultiplier = 4.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -30, baseMultiplier = 4.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -30, baseMultiplier = 5.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -30, baseMultiplier = 5.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -30, baseMultiplier = 5.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -30, baseMultiplier = 5.99, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -30, baseMultiplier = 6.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -30, baseMultiplier = 6.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -30, baseMultiplier = 6.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -30, baseMultiplier = 7.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -30, baseMultiplier = 7.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -30, baseMultiplier = 8.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -30, baseMultiplier = 8.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -30, baseMultiplier = 8.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -30, baseMultiplier = 9.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -30, baseMultiplier = 9.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -30, baseMultiplier = 10.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -30, baseMultiplier = 10.76, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -8725,6 +8728,7 @@ skills["FragmentationRoundsAmmoPlayer"] = { }, castTime = 0.8, qualityStats = { + { "dummy_stat_display_nothing", 0 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, @@ -8836,55 +8840,55 @@ skills["FragmentationRoundsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/BurstShotPhysical.dds", description = "Fire Piercing bolts that fragment in flight. Bolts that hit a Frozen enemy Consume the Freeze and cause an explosion of ice shards. These fragments can Merge.", - 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, [SkillType.SkillConsumesFreeze] = true, [SkillType.Area] = 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, [SkillType.SkillConsumesFreeze] = true, [SkillType.Area] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "active_skill_physical_damage_+%_final", 1 }, + { "base_number_of_projectiles", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.2, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.22, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.24, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.26, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.29, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.31, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.33, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.35, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.37, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.47, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.56, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.6, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.64, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.68, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.72, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.77, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.82, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.94, levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { baseMultiplier = 1.07, levelRequirement = 0, }, - [27] = { baseMultiplier = 1.14, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.21, levelRequirement = 0, }, - [29] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.38, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.47, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.57, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.68, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.79, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.91, levelRequirement = 0, }, - [36] = { baseMultiplier = 2.03, levelRequirement = 0, }, - [37] = { baseMultiplier = 2.17, levelRequirement = 0, }, - [38] = { baseMultiplier = 2.31, levelRequirement = 0, }, - [39] = { baseMultiplier = 2.47, levelRequirement = 0, }, - [40] = { baseMultiplier = 2.63, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.56, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.72, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.77, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.82, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 1.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 1.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 1.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 1.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 1.38, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 1.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 1.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 1.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 1.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 1.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 2.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 2.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 2.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 2.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 2.63, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -9079,6 +9083,7 @@ skills["GalvanicShardsAmmoPlayer"] = { }, castTime = 0.6, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, @@ -9191,7 +9196,7 @@ skills["GalvanicShardsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/BurstShotStormblast.dds", description = "Rapidly fire charged bolts that fragment in flight, releasing Chaining Lightning beams when they Hit enemies. Can fire a limited number of bursts before needing to reload. These fragments can Merge.", - 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.Lightning] = true, [SkillType.Chains] = 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.Lightning] = true, [SkillType.Chains] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -9200,46 +9205,46 @@ skills["GalvanicShardsPlayer"] = { { "base_number_of_projectiles", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.15, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.16, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.18, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.2, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.21, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.23, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.25, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.27, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.28, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.31, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.33, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.35, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.37, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.51, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.54, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.7, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.75, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.85, levelRequirement = 0, }, - [28] = { baseMultiplier = 0.91, levelRequirement = 0, }, - [29] = { baseMultiplier = 0.97, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.04, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.1, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.18, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.26, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.34, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.43, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.52, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.63, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.73, levelRequirement = 0, }, - [39] = { baseMultiplier = 1.85, levelRequirement = 0, }, - [40] = { baseMultiplier = 1.97, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.51, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.58, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.62, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 0.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 0.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 0.97, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 1.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 1.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 1.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 1.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 1.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 1.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 1.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 1.73, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 1.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 1.97, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -9410,7 +9415,7 @@ skills["GlacialBoltAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/PowerShotPermafrost.dds", color = 1, description = "Load your Crossbow with icy bolts that create two walls of Ice Crystals at the end of their flight.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -9528,54 +9533,55 @@ skills["GlacialBoltPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/PowerShotPermafrost.dds", description = "Fire an icy bolt that creates two walls of Ice Crystals at the end of its flight.", - 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.Cold] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, }, + 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.Cold] = true, [SkillType.Wall] = true, [SkillType.UsableWhileMoving] = true, [SkillType.IceCrystal] = true, [SkillType.Duration] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 0.8, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { - [1] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.48, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.57, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.62, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.71, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.75, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.79, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.84, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.89, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.94, levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { baseMultiplier = 1.06, levelRequirement = 0, }, - [16] = { baseMultiplier = 1.13, levelRequirement = 0, }, - [17] = { baseMultiplier = 1.2, levelRequirement = 0, }, - [18] = { baseMultiplier = 1.27, levelRequirement = 0, }, - [19] = { baseMultiplier = 1.36, levelRequirement = 0, }, - [20] = { baseMultiplier = 1.45, levelRequirement = 0, }, - [21] = { baseMultiplier = 1.55, levelRequirement = 0, }, - [22] = { baseMultiplier = 1.65, levelRequirement = 0, }, - [23] = { baseMultiplier = 1.76, levelRequirement = 0, }, - [24] = { baseMultiplier = 1.88, levelRequirement = 0, }, - [25] = { baseMultiplier = 2, levelRequirement = 0, }, - [26] = { baseMultiplier = 2.13, levelRequirement = 0, }, - [27] = { baseMultiplier = 2.28, levelRequirement = 0, }, - [28] = { baseMultiplier = 2.43, levelRequirement = 0, }, - [29] = { baseMultiplier = 2.59, levelRequirement = 0, }, - [30] = { baseMultiplier = 2.76, levelRequirement = 0, }, - [31] = { baseMultiplier = 2.95, levelRequirement = 0, }, - [32] = { baseMultiplier = 3.14, levelRequirement = 0, }, - [33] = { baseMultiplier = 3.35, levelRequirement = 0, }, - [34] = { baseMultiplier = 3.57, levelRequirement = 0, }, - [35] = { baseMultiplier = 3.81, levelRequirement = 0, }, - [36] = { baseMultiplier = 4.07, levelRequirement = 0, }, - [37] = { baseMultiplier = 4.34, levelRequirement = 0, }, - [38] = { baseMultiplier = 4.63, levelRequirement = 0, }, - [39] = { baseMultiplier = 4.93, levelRequirement = 0, }, - [40] = { baseMultiplier = 5.26, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.62, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.06, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 1.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.59, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 2.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 2.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 3.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 3.81, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 4.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 4.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 4.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 4.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 5.26, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -9683,7 +9689,7 @@ skills["GlacialBoltPlayer"] = { { "active_skill_base_area_of_effect_radius", 18 }, { "ice_crystal_shatter_detonation_damage_+%_final", 0 }, { "ice_crystal_shatter_detonation_area_of_effect_+%_final", 50 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, }, stats = { "frost_wall_maximum_life", @@ -9755,7 +9761,7 @@ skills["HailstormRoundsAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/SiegeCascadePermafrost.dds", color = 1, description = "Passively generate bolts of ice at a frequency equal to reload time, up to a cap. Activate to Load the accumulated bolts into your Crossbow. All loaded bolts are fired at once, causing them to rain down over the target area.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -9878,12 +9884,13 @@ skills["HailstormRoundsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/SiegeCascadePermafrost.dds", description = "Fire all loaded bolts into the sky, causing them to rain down over the target area, starting at the centre and spreading outward.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Rain] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Rain] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { attackSpeedMultiplier = -45, baseMultiplier = 0.63, levelRequirement = 0, cost = { Mana = 24, }, }, @@ -10010,7 +10017,7 @@ skills["HighVelocityRoundsAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/PowerShotPhysical.dds", color = 1, description = "Load your Crossbow with Piercing bolts that apply Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -10127,7 +10134,7 @@ skills["HighVelocityRoundsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/PowerShotPhysical.dds", description = "Fire a powerful Piercing bolt that applies Riven Armour to enemies with Fully Broken Armour, causing any Hits against those enemies to deal extra damage.", - 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.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.Duration] = 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.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ConsumesFullyBrokenArmour] = true, [SkillType.Duration] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -10136,46 +10143,46 @@ skills["HighVelocityRoundsPlayer"] = { { "active_skill_projectile_damage_+%_final_if_pierced_enemy", 1 }, }, levels = { - [1] = { baseMultiplier = 1.6, levelRequirement = 0, }, - [2] = { baseMultiplier = 1.76, levelRequirement = 0, }, - [3] = { baseMultiplier = 1.94, levelRequirement = 0, }, - [4] = { baseMultiplier = 2.11, levelRequirement = 0, }, - [5] = { baseMultiplier = 2.27, levelRequirement = 0, }, - [6] = { baseMultiplier = 2.44, levelRequirement = 0, }, - [7] = { baseMultiplier = 2.6, levelRequirement = 0, }, - [8] = { baseMultiplier = 2.75, levelRequirement = 0, }, - [9] = { baseMultiplier = 2.88, levelRequirement = 0, }, - [10] = { baseMultiplier = 3.02, levelRequirement = 0, }, - [11] = { baseMultiplier = 3.16, levelRequirement = 0, }, - [12] = { baseMultiplier = 3.3, levelRequirement = 0, }, - [13] = { baseMultiplier = 3.45, levelRequirement = 0, }, - [14] = { baseMultiplier = 3.6, levelRequirement = 0, }, - [15] = { baseMultiplier = 3.76, levelRequirement = 0, }, - [16] = { baseMultiplier = 3.93, levelRequirement = 0, }, - [17] = { baseMultiplier = 4.1, levelRequirement = 0, }, - [18] = { baseMultiplier = 4.27, levelRequirement = 0, }, - [19] = { baseMultiplier = 4.45, levelRequirement = 0, }, - [20] = { baseMultiplier = 4.64, levelRequirement = 0, }, - [21] = { baseMultiplier = 4.84, levelRequirement = 0, }, - [22] = { baseMultiplier = 5.04, levelRequirement = 0, }, - [23] = { baseMultiplier = 5.25, levelRequirement = 0, }, - [24] = { baseMultiplier = 5.47, levelRequirement = 0, }, - [25] = { baseMultiplier = 5.7, levelRequirement = 0, }, - [26] = { baseMultiplier = 5.94, levelRequirement = 0, }, - [27] = { baseMultiplier = 6.19, levelRequirement = 0, }, - [28] = { baseMultiplier = 6.45, levelRequirement = 0, }, - [29] = { baseMultiplier = 6.72, levelRequirement = 0, }, - [30] = { baseMultiplier = 7.01, levelRequirement = 0, }, - [31] = { baseMultiplier = 7.3, levelRequirement = 0, }, - [32] = { baseMultiplier = 7.61, levelRequirement = 0, }, - [33] = { baseMultiplier = 7.93, levelRequirement = 0, }, - [34] = { baseMultiplier = 8.26, levelRequirement = 0, }, - [35] = { baseMultiplier = 8.61, levelRequirement = 0, }, - [36] = { baseMultiplier = 8.97, levelRequirement = 0, }, - [37] = { baseMultiplier = 9.34, levelRequirement = 0, }, - [38] = { baseMultiplier = 9.74, levelRequirement = 0, }, - [39] = { baseMultiplier = 10.15, levelRequirement = 0, }, - [40] = { baseMultiplier = 10.57, levelRequirement = 0, }, + [1] = { baseMultiplier = 1.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 2.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 2.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 2.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 2.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 2.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 2.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 3.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 3.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 3.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 3.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 3.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 3.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 3.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 4.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 4.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 4.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 4.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 4.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 5.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 5.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 5.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 5.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 5.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 6.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 6.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 6.72, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 7.01, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 7.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 7.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 7.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 8.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 8.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 8.97, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 9.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 9.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 10.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 10.57, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -10471,7 +10478,7 @@ skills["IceShardsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/RapidShotPermafrost.dds", description = "Rapidly fire icy bolts at the ground, leaving a shard of ice at the impact location that arms after a duration. After arming, the ice shards explode when enemies step on them, dealing more damage the longer they have been armed, up to a maximum. Can fire a limited number of bolts before needing to reload.", - 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, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, [SkillType.CannotChain] = true, }, + 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, [SkillType.Cold] = true, [SkillType.Sustained] = true, [SkillType.Hazard] = true, [SkillType.CannotChain] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -10480,46 +10487,46 @@ skills["IceShardsPlayer"] = { { "active_skill_chill_as_though_damage_+%_final", 5 }, }, levels = { - [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.08, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.09, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.1, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.17, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.67, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.71, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 450, baseMultiplier = 0.81, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 450, baseMultiplier = 0.87, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 450, baseMultiplier = 0.99, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.05, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.09, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.12, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 450, baseMultiplier = 0.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 450, baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 450, baseMultiplier = 0.38, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 450, baseMultiplier = 0.52, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 450, baseMultiplier = 0.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 450, baseMultiplier = 0.59, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 450, baseMultiplier = 0.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 450, baseMultiplier = 0.67, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 450, baseMultiplier = 0.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 450, baseMultiplier = 0.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 450, baseMultiplier = 0.81, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 450, baseMultiplier = 0.87, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 450, baseMultiplier = 0.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 450, baseMultiplier = 0.99, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 450, baseMultiplier = 1.05, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -10627,7 +10634,7 @@ skills["IceShardsPlayer"] = { { "active_skill_base_physical_damage_%_to_convert_to_cold", 40 }, { "permafrost_shard_detection_base_area_of_effect_radius", 8 }, { "active_skill_base_area_of_effect_radius", 25 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "permafrost_shard_limit", 16 }, { "permafrost_shard_arming_time_ms", 1500 }, { "permafrost_shard_bonus_damage_delay_ms", 2000 }, @@ -10819,7 +10826,7 @@ skills["IncendiaryShotPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/BurstShotIncendiary.dds", description = "Fire flaming bolts that fragment in flight, damaging and Igniting enemies on hit, and in a small cone behind their final target. These fragments can Merge.", - 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.Fire] = true, [SkillType.UsableWhileMoving] = true, }, + 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.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -10828,46 +10835,46 @@ skills["IncendiaryShotPlayer"] = { { "ignite_duration_+%_per_shotgun_pellet_hit", 0.75 }, }, levels = { - [1] = { baseMultiplier = 0.1, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.11, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.12, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.13, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.14, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.15, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.17, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.18, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.19, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.2, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.21, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.22, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.23, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.25, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.26, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.28, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.3, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.32, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.34, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.36, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.39, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.41, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.47, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.57, levelRequirement = 0, }, - [28] = { baseMultiplier = 0.61, levelRequirement = 0, }, - [29] = { baseMultiplier = 0.65, levelRequirement = 0, }, - [30] = { baseMultiplier = 0.69, levelRequirement = 0, }, - [31] = { baseMultiplier = 0.74, levelRequirement = 0, }, - [32] = { baseMultiplier = 0.79, levelRequirement = 0, }, - [33] = { baseMultiplier = 0.84, levelRequirement = 0, }, - [34] = { baseMultiplier = 0.89, levelRequirement = 0, }, - [35] = { baseMultiplier = 0.95, levelRequirement = 0, }, - [36] = { baseMultiplier = 1.02, levelRequirement = 0, }, - [37] = { baseMultiplier = 1.08, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.16, levelRequirement = 0, }, - [39] = { baseMultiplier = 1.23, levelRequirement = 0, }, - [40] = { baseMultiplier = 1.32, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.12, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.32, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.39, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.41, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 0.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 0.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 0.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 0.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 1.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 1.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 1.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 1.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 1.32, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -10968,12 +10975,13 @@ skills["PermafrostBoltsAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/BurstShotPermafrost.dds", color = 1, description = "Load your Crossbow with icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 0.8, qualityStats = { + { "dummy_stat_display_nothing", 0 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 6, }, }, @@ -11085,7 +11093,7 @@ skills["PermafrostBoltsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/BurstShotPermafrost.dds", description = "Fire icy bolts that fragment in flight, damaging enemies on hit and in a small cone behind their final target. The icy coating on the bolts makes them extremely potent at Freezing enemies. These fragments can Merge.", - 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.Cold] = true, [SkillType.UsableWhileMoving] = true, }, + 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.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -11094,46 +11102,46 @@ skills["PermafrostBoltsPlayer"] = { { "base_number_of_projectiles", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.17, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.19, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.21, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.22, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.24, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.26, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.28, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.29, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.31, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.32, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.34, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.35, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.37, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.38, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.47, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.49, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.51, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.54, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.56, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.58, levelRequirement = 0, }, - [25] = { baseMultiplier = 0.61, levelRequirement = 0, }, - [26] = { baseMultiplier = 0.63, levelRequirement = 0, }, - [27] = { baseMultiplier = 0.66, levelRequirement = 0, }, - [28] = { baseMultiplier = 0.69, levelRequirement = 0, }, - [29] = { baseMultiplier = 0.71, levelRequirement = 0, }, - [30] = { baseMultiplier = 0.74, levelRequirement = 0, }, - [31] = { baseMultiplier = 0.78, levelRequirement = 0, }, - [32] = { baseMultiplier = 0.81, levelRequirement = 0, }, - [33] = { baseMultiplier = 0.84, levelRequirement = 0, }, - [34] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [35] = { baseMultiplier = 0.91, levelRequirement = 0, }, - [36] = { baseMultiplier = 0.95, levelRequirement = 0, }, - [37] = { baseMultiplier = 0.99, levelRequirement = 0, }, - [38] = { baseMultiplier = 1.03, levelRequirement = 0, }, - [39] = { baseMultiplier = 1.08, levelRequirement = 0, }, - [40] = { baseMultiplier = 1.12, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.32, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.38, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.51, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 0.56, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 0.58, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 0.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 0.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 0.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 0.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 0.78, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 0.81, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 0.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 0.99, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 1.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 1.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 1.12, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -11229,7 +11237,7 @@ skills["PlasmaBlastAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/PowerShotStormblast.dds", color = 1, description = "Load your Crossbow with unstable bolts that require a lengthy charging period to fire but deal devastating damage, Pierce through enemies, and explode upon hitting terrain. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -11347,7 +11355,7 @@ skills["PlasmaBlastPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/PowerShotStormblast.dds", description = "Channel to charge an unstable bolt. The bolt deals devastating damage and explodes on hitting terrain, but cannot be fired at all unless fully charged. Additional Projectiles are fired in a spread, unlike other Crossbow Skills.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -11356,46 +11364,46 @@ skills["PlasmaBlastPlayer"] = { { "active_skill_shock_duration_+%_final", 1.5 }, }, levels = { - [1] = { baseMultiplier = 8.3, levelRequirement = 0, }, - [2] = { baseMultiplier = 9.15, levelRequirement = 0, }, - [3] = { baseMultiplier = 10.11, levelRequirement = 0, }, - [4] = { baseMultiplier = 11.08, levelRequirement = 0, }, - [5] = { baseMultiplier = 12.04, levelRequirement = 0, }, - [6] = { baseMultiplier = 13.04, levelRequirement = 0, }, - [7] = { baseMultiplier = 14.08, levelRequirement = 0, }, - [8] = { baseMultiplier = 15.08, levelRequirement = 0, }, - [9] = { baseMultiplier = 16.02, levelRequirement = 0, }, - [10] = { baseMultiplier = 17.04, levelRequirement = 0, }, - [11] = { baseMultiplier = 18.15, levelRequirement = 0, }, - [12] = { baseMultiplier = 19.36, levelRequirement = 0, }, - [13] = { baseMultiplier = 20.67, levelRequirement = 0, }, - [14] = { baseMultiplier = 22.1, levelRequirement = 0, }, - [15] = { baseMultiplier = 23.65, levelRequirement = 0, }, - [16] = { baseMultiplier = 25.35, levelRequirement = 0, }, - [17] = { baseMultiplier = 27.21, levelRequirement = 0, }, - [18] = { baseMultiplier = 29.24, levelRequirement = 0, }, - [19] = { baseMultiplier = 31.46, levelRequirement = 0, }, - [20] = { baseMultiplier = 33.89, levelRequirement = 0, }, - [21] = { baseMultiplier = 36.51, levelRequirement = 0, }, - [22] = { baseMultiplier = 39.33, levelRequirement = 0, }, - [23] = { baseMultiplier = 42.37, levelRequirement = 0, }, - [24] = { baseMultiplier = 45.64, levelRequirement = 0, }, - [25] = { baseMultiplier = 49.17, levelRequirement = 0, }, - [26] = { baseMultiplier = 52.97, levelRequirement = 0, }, - [27] = { baseMultiplier = 57.07, levelRequirement = 0, }, - [28] = { baseMultiplier = 61.48, levelRequirement = 0, }, - [29] = { baseMultiplier = 66.23, levelRequirement = 0, }, - [30] = { baseMultiplier = 71.35, levelRequirement = 0, }, - [31] = { baseMultiplier = 76.86, levelRequirement = 0, }, - [32] = { baseMultiplier = 82.8, levelRequirement = 0, }, - [33] = { baseMultiplier = 89.2, levelRequirement = 0, }, - [34] = { baseMultiplier = 96.1, levelRequirement = 0, }, - [35] = { baseMultiplier = 103.53, levelRequirement = 0, }, - [36] = { baseMultiplier = 111.53, levelRequirement = 0, }, - [37] = { baseMultiplier = 120.15, levelRequirement = 0, }, - [38] = { baseMultiplier = 129.43, levelRequirement = 0, }, - [39] = { baseMultiplier = 139.44, levelRequirement = 0, }, - [40] = { baseMultiplier = 150.22, levelRequirement = 0, }, + [1] = { baseMultiplier = 8.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 9.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 10.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 11.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 12.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 13.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 14.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 15.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 16.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 17.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 18.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 19.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 20.67, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 22.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 23.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 25.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 27.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 29.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 31.46, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 33.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 36.51, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 39.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 42.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 45.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 49.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 52.97, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 57.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 61.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 66.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 71.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 76.86, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 82.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 89.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 96.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 103.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 111.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 120.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 129.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 139.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 150.22, levelRequirement = 0, cost = { Mana = 0, }, }, }, preDamageFunc = function(activeSkill, output) activeSkill.skillData.channelTimeMultiplier = 1 @@ -11419,7 +11427,6 @@ skills["PlasmaBlastPlayer"] = { { "base_knockback_distance", 400 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "total_attack_time_+_ms", 2000 }, { "channel_end_duration_as_%_of_attack_time", 35 }, { "shock_effect_+%", 50 }, @@ -11498,7 +11505,6 @@ skills["PlasmaBlastPlayer"] = { { "crossbow_barrage_debuff_duration_ms", 300 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "channel_end_duration_as_%_of_attack_time", 35 }, { "shock_effect_+%", 50 }, { "active_skill_base_physical_damage_%_to_convert_to_lightning", 20 }, @@ -11568,7 +11574,7 @@ skills["RapidShotAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/RapidShotIncendiary.dds", color = 1, description = "Load your Crossbow with a large clip of heated bolts. Heat builds up on your Crossbow as you fire them, and reaching maximum Heat will prevent you from firing or reloading these bolts for a short time. However, other Skills can Consume Heat for extra benefits. Using this Skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -11686,7 +11692,7 @@ skills["RapidShotPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/RapidShotIncendiary.dds", description = "Fire a stream of heated bolts. Heat builds up on your Crossbow as you fire, and reaching maximum heat will prevent you from firing these bolts for a short time. However, other Skills can Consume Heat for extra benefits.", - 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, [SkillType.Fire] = 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, [SkillType.Fire] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -11695,46 +11701,46 @@ skills["RapidShotPlayer"] = { { "maximum_number_of_crossbow_heat_stacks", 0.75 }, }, levels = { - [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.34, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.58, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.61, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.65, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.78, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.83, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.94, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 450, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 450, baseMultiplier = 1.14, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 450, baseMultiplier = 1.22, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 450, baseMultiplier = 1.3, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 450, baseMultiplier = 1.39, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 450, baseMultiplier = 1.48, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 450, baseMultiplier = 1.58, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 450, baseMultiplier = 1.68, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 450, baseMultiplier = 1.79, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 450, baseMultiplier = 1.91, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 450, baseMultiplier = 2.04, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 450, baseMultiplier = 2.18, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 450, baseMultiplier = 2.32, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 450, baseMultiplier = 2.48, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 450, baseMultiplier = 2.64, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 450, baseMultiplier = 2.82, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 450, baseMultiplier = 3.01, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 450, baseMultiplier = 3.21, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 450, baseMultiplier = 3.42, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 450, baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 450, baseMultiplier = 0.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 450, baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 450, baseMultiplier = 0.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 450, baseMultiplier = 0.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 450, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 450, baseMultiplier = 0.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 450, baseMultiplier = 0.46, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 450, baseMultiplier = 0.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 450, baseMultiplier = 0.51, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 450, baseMultiplier = 0.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 450, baseMultiplier = 0.58, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 450, baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 450, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 450, baseMultiplier = 0.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 450, baseMultiplier = 0.73, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 450, baseMultiplier = 0.78, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 450, baseMultiplier = 0.83, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 450, baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 450, baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 450, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 450, baseMultiplier = 1.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 450, baseMultiplier = 1.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 450, baseMultiplier = 1.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 450, baseMultiplier = 1.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 450, baseMultiplier = 1.39, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 450, baseMultiplier = 1.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 450, baseMultiplier = 1.58, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 450, baseMultiplier = 1.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 450, baseMultiplier = 1.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 450, baseMultiplier = 1.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 450, baseMultiplier = 2.04, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 450, baseMultiplier = 2.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 450, baseMultiplier = 2.32, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 450, baseMultiplier = 2.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 450, baseMultiplier = 2.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 450, baseMultiplier = 2.82, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 450, baseMultiplier = 3.01, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 450, baseMultiplier = 3.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 450, baseMultiplier = 3.42, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -11945,54 +11951,55 @@ skills["ShockburstRoundsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/RapidShotStormblast.dds", description = "Rapidly fire charged bolts which release damaging pulses upon Hitting an enemy affected by a Lightning Ailment. Can fire a limited number of bolts before needing to reload.", - 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, [SkillType.Lightning] = true, }, + 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, [SkillType.Lightning] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { - [1] = { attackSpeedMultiplier = 300, baseMultiplier = 0.1, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 300, baseMultiplier = 0.11, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = 300, baseMultiplier = 0.12, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = 300, baseMultiplier = 0.13, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = 300, baseMultiplier = 0.14, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = 300, baseMultiplier = 0.15, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = 300, baseMultiplier = 0.17, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = 300, baseMultiplier = 0.18, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = 300, baseMultiplier = 0.19, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = 300, baseMultiplier = 0.2, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = 300, baseMultiplier = 0.21, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = 300, baseMultiplier = 0.22, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = 300, baseMultiplier = 0.23, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = 300, baseMultiplier = 0.25, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = 300, baseMultiplier = 0.26, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = 300, baseMultiplier = 0.28, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = 300, baseMultiplier = 0.3, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = 300, baseMultiplier = 0.32, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = 300, baseMultiplier = 0.34, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = 300, baseMultiplier = 0.36, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = 300, baseMultiplier = 0.39, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = 300, baseMultiplier = 0.41, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = 300, baseMultiplier = 0.44, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = 300, baseMultiplier = 0.47, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = 300, baseMultiplier = 0.5, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = 300, baseMultiplier = 0.53, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = 300, baseMultiplier = 0.57, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = 300, baseMultiplier = 0.61, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = 300, baseMultiplier = 0.65, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = 300, baseMultiplier = 0.69, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = 300, baseMultiplier = 0.74, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = 300, baseMultiplier = 0.79, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = 300, baseMultiplier = 0.84, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = 300, baseMultiplier = 0.89, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = 300, baseMultiplier = 0.95, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = 300, baseMultiplier = 1.02, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = 300, baseMultiplier = 1.08, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = 300, baseMultiplier = 1.16, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = 300, baseMultiplier = 1.23, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = 300, baseMultiplier = 1.32, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = 300, baseMultiplier = 0.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 300, baseMultiplier = 0.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 300, baseMultiplier = 0.12, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 300, baseMultiplier = 0.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 300, baseMultiplier = 0.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 300, baseMultiplier = 0.15, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 300, baseMultiplier = 0.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 300, baseMultiplier = 0.18, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 300, baseMultiplier = 0.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 300, baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 300, baseMultiplier = 0.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 300, baseMultiplier = 0.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 300, baseMultiplier = 0.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 300, baseMultiplier = 0.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 300, baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 300, baseMultiplier = 0.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 300, baseMultiplier = 0.3, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 300, baseMultiplier = 0.32, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 300, baseMultiplier = 0.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 300, baseMultiplier = 0.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 300, baseMultiplier = 0.39, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 300, baseMultiplier = 0.41, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 300, baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 300, baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 300, baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 300, baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 300, baseMultiplier = 0.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 300, baseMultiplier = 0.61, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 300, baseMultiplier = 0.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 300, baseMultiplier = 0.69, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 300, baseMultiplier = 0.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 300, baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 300, baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 300, baseMultiplier = 0.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 300, baseMultiplier = 0.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 300, baseMultiplier = 1.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 300, baseMultiplier = 1.08, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 300, baseMultiplier = 1.16, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 300, baseMultiplier = 1.23, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 300, baseMultiplier = 1.32, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -12163,12 +12170,13 @@ skills["SiegeCascadeAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/SiegeCascadePhysical.dds", color = 1, description = "Load your Crossbow with enemy-seeking payloads which are fired into the air, dropping a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 12, }, }, @@ -12282,7 +12290,7 @@ skills["SiegeCascadePlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/SiegeCascadePhysical.dds", description = "Aim skyward and fires an enemy-seeking payload which drops a bolt near every enemy in the target area. These bolts lodge in the ground and explode after a short delay.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -12291,46 +12299,46 @@ skills["SiegeCascadePlayer"] = { { "active_skill_damage_+%_final_vs_immobilised_enemies", 2 }, }, levels = { - [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, }, - [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 0, }, - [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 0, }, - [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 0, }, - [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, }, - [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, }, - [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.71, levelRequirement = 0, }, - [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, }, - [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 0, }, - [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 0, }, - [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 0, }, - [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 0, }, - [14] = { attackSpeedMultiplier = -25, levelRequirement = 0, }, - [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 0, }, - [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 0, }, - [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 0, }, - [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.27, levelRequirement = 0, }, - [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.36, levelRequirement = 0, }, - [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 0, }, - [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 0, }, - [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.65, levelRequirement = 0, }, - [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 0, }, - [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 0, }, - [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2, levelRequirement = 0, }, - [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 0, }, - [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.28, levelRequirement = 0, }, - [28] = { attackSpeedMultiplier = -25, baseMultiplier = 2.43, levelRequirement = 0, }, - [29] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 0, }, - [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 0, }, - [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 0, }, - [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.14, levelRequirement = 0, }, - [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.35, levelRequirement = 0, }, - [34] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 0, }, - [35] = { attackSpeedMultiplier = -25, baseMultiplier = 3.81, levelRequirement = 0, }, - [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.07, levelRequirement = 0, }, - [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 0, }, - [38] = { attackSpeedMultiplier = -25, baseMultiplier = 4.63, levelRequirement = 0, }, - [39] = { attackSpeedMultiplier = -25, baseMultiplier = 4.93, levelRequirement = 0, }, - [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.26, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -25, baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 0.48, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 0.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 0.62, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 0.66, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 0.71, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 0.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 0.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -25, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 1.06, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 1.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -25, baseMultiplier = 1.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 1.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 1.36, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 1.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 1.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 1.65, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 1.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 1.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 2, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 2.13, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 2.28, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 2.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 2.59, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 2.76, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 2.95, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 3.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 3.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 3.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 3.81, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 4.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 4.34, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 4.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 4.93, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 5.26, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -12498,12 +12506,13 @@ skills["StormblastBoltsAmmoPlayer"] = { icon = "Art/2DArt/SkillIcons/SiegeCascadeStormblast.dds", color = 1, description = "Load your Crossbow with charged bolts that land around the target location and explode if hit by a Detonator Skill. Using this Skill again reloads the clip.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.ReservesManually] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 9, }, }, @@ -12617,7 +12626,7 @@ skills["StormblastBoltsPlayer"] = { hidden = true, icon = "Art/2DArt/SkillIcons/SiegeCascadeStormblast.dds", description = "Aims skyward and fires charged bolts that land around the target location, dealing damage and lodging in the ground for a duration. Detonator Skills will cause these bolts to explode. Can fire a limited number of bolts before needing to reload.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.Rain] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Duration] = true, [SkillType.Rain] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -12626,46 +12635,46 @@ skills["StormblastBoltsPlayer"] = { { "base_reduce_enemy_lightning_resistance_%", 1 }, }, levels = { - [1] = { baseMultiplier = 0.2, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.22, levelRequirement = 0, }, - [3] = { baseMultiplier = 0.24, levelRequirement = 0, }, - [4] = { baseMultiplier = 0.26, levelRequirement = 0, }, - [5] = { baseMultiplier = 0.29, levelRequirement = 0, }, - [6] = { baseMultiplier = 0.31, levelRequirement = 0, }, - [7] = { baseMultiplier = 0.33, levelRequirement = 0, }, - [8] = { baseMultiplier = 0.35, levelRequirement = 0, }, - [9] = { baseMultiplier = 0.37, levelRequirement = 0, }, - [10] = { baseMultiplier = 0.4, levelRequirement = 0, }, - [11] = { baseMultiplier = 0.42, levelRequirement = 0, }, - [12] = { baseMultiplier = 0.44, levelRequirement = 0, }, - [13] = { baseMultiplier = 0.47, levelRequirement = 0, }, - [14] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [15] = { baseMultiplier = 0.53, levelRequirement = 0, }, - [16] = { baseMultiplier = 0.56, levelRequirement = 0, }, - [17] = { baseMultiplier = 0.6, levelRequirement = 0, }, - [18] = { baseMultiplier = 0.64, levelRequirement = 0, }, - [19] = { baseMultiplier = 0.68, levelRequirement = 0, }, - [20] = { baseMultiplier = 0.72, levelRequirement = 0, }, - [21] = { baseMultiplier = 0.77, levelRequirement = 0, }, - [22] = { baseMultiplier = 0.82, levelRequirement = 0, }, - [23] = { baseMultiplier = 0.88, levelRequirement = 0, }, - [24] = { baseMultiplier = 0.94, levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { baseMultiplier = 1.07, levelRequirement = 0, }, - [27] = { baseMultiplier = 1.14, levelRequirement = 0, }, - [28] = { baseMultiplier = 1.21, levelRequirement = 0, }, - [29] = { baseMultiplier = 1.29, levelRequirement = 0, }, - [30] = { baseMultiplier = 1.38, levelRequirement = 0, }, - [31] = { baseMultiplier = 1.47, levelRequirement = 0, }, - [32] = { baseMultiplier = 1.57, levelRequirement = 0, }, - [33] = { baseMultiplier = 1.68, levelRequirement = 0, }, - [34] = { baseMultiplier = 1.79, levelRequirement = 0, }, - [35] = { baseMultiplier = 1.91, levelRequirement = 0, }, - [36] = { baseMultiplier = 2.03, levelRequirement = 0, }, - [37] = { baseMultiplier = 2.17, levelRequirement = 0, }, - [38] = { baseMultiplier = 2.31, levelRequirement = 0, }, - [39] = { baseMultiplier = 2.47, levelRequirement = 0, }, - [40] = { baseMultiplier = 2.63, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.22, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.24, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.26, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.33, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.37, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.42, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 0.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 0.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 0.56, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 0.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 0.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 0.72, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 0.77, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 0.82, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 0.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 1.07, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 1.14, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 1.21, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 1.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 1.38, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 1.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 1.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 1.68, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 1.79, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 1.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 2.03, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 2.17, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 2.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 2.47, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 2.63, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -13060,7 +13069,7 @@ skills["WolfLunarBlessingBeamAttackPlayer"] = { name = "Moonbeam", hidden = true, icon = "Art/2DArt/SkillIcons/DruidLunarBlessing.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Melee] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Cooldown] = true, }, weaponTypes = { ["Talisman"] = true, }, @@ -13116,7 +13125,6 @@ skills["WolfLunarBlessingBeamAttackPlayer"] = { statDescriptionScope = "wolf_lunar_blessing_beam_attack", baseFlags = { attack = true, - melee = true, area = true, }, constantStats = { @@ -13130,6 +13138,9 @@ skills["WolfLunarBlessingBeamAttackPlayer"] = { "wolf_lunar_blessing_beam_attack_extra_beams_to_trigger", "is_area_damage", "triggerable_in_any_set", + "attack_is_not_melee_override", + "base_skill_show_average_damage_instead_of_dps", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { [1] = { 4, statInterpolation = { 1, }, actorLevel = 1, }, @@ -13181,7 +13192,7 @@ skills["MagmaBarrierPlayer"] = { baseTypeName = "Magma Barrier", icon = "Art/2DArt/SkillIcons/BruteMagmaBarrier.dds", color = 1, - description = "While active, increases your Block Chance passively and imbues your Shield with lava over time. When fully imbued, your next Block with your Shield raised will expend the lava to create an explosion, granting you an Endurance Charge.", + description = "While active, increases your Block Chance passively and imbues your Shield with lava over time. When fully imbued, your next Block with your Shield raised will expend the lava to Trigger the Magma Spray skill and grant you an Endurance Charge.", skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Fire] = true, [SkillType.Persistent] = true, [SkillType.GeneratesCharges] = true, }, castTime = 0, qualityStats = { @@ -13371,48 +13382,49 @@ skills["MagmaSprayPlayer"] = { "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", "is_area_damage", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { - [1] = { 4, 6, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 6, 8, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -13423,7 +13435,7 @@ skills["MoltenBlastPlayer"] = { icon = "Art/2DArt/SkillIcons/BruteMoltenBlast.dds", color = 1, description = "Gouge molten rock from the ground and fling it at the target. The Projectile explodes on collision, damaging enemies and scattering shrapnel in a cone behind it.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.AttackInPlace] = true, [SkillType.RangedAttack] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -13573,7 +13585,7 @@ skills["MoltenBlastPlayer"] = { "check_for_targets_between_initiator_and_projectile_source", "precise_cursor_targeting_uses_contact_point_height_offset", "projectiles_fire_at_ground", - "modifiers_to_projectile_count_do_not_apply", + "number_of_projectiles_cannot_be_modified", }, levels = { [1] = { baseMultiplier = 0.65, actorLevel = 1, }, @@ -13625,7 +13637,7 @@ skills["MoltenCrashPlayer"] = { baseTypeName = "Molten Crash", icon = "Art/2DArt/SkillIcons/VesselofWrath.dds", fromItem = true, - color = 1, + color = 4, description = "Shapeshift into a burning monstrosity and leap through the air to crash down upon the earth, Slamming twice and creating Molten Fissures. Consumes Rage to create additional Molten Fissures.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Travel] = true, [SkillType.Movement] = true, [SkillType.Jumping] = true, [SkillType.Shapeshift] = true, [SkillType.Bear] = true, [SkillType.CreatesFissure] = true, [SkillType.ConsumesRage] = true, }, weaponTypes = { @@ -13957,8 +13969,8 @@ skills["SupportMortarCannonPlayer"] = { hidden = true, support = true, requireSkillTypes = { SkillType.Grenade, }, - addSkillTypes = { SkillType.UsedByTotem, }, - excludeSkillTypes = { SkillType.Meta, SkillType.Triggered, SkillType.Channel, SkillType.Persistent, }, + addSkillTypes = { SkillType.UsedByTotem, SkillType.UsedByProxy, SkillType.SupportedByMortarTotem, }, + excludeSkillTypes = { SkillType.Meta, SkillType.HasUsageCondition, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByMortarTotem, SkillType.NOT, SkillType.AND, }, qualityStats = { }, levels = { @@ -14096,46 +14108,46 @@ skills["OilBarragePlayer"] = { { "skill_base_oil_exposure_-_to_total_elemental_resistance", 0.25 }, }, levels = { - [1] = { attackSpeedMultiplier = 200, baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { attackSpeedMultiplier = 200, baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 8, }, }, - [3] = { attackSpeedMultiplier = 200, baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 9, }, }, - [4] = { attackSpeedMultiplier = 200, baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 11, }, }, - [5] = { attackSpeedMultiplier = 200, baseMultiplier = 1.14, levelRequirement = 14, cost = { Mana = 12, }, }, - [6] = { attackSpeedMultiplier = 200, baseMultiplier = 1.22, levelRequirement = 18, cost = { Mana = 14, }, }, - [7] = { attackSpeedMultiplier = 200, baseMultiplier = 1.31, levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { attackSpeedMultiplier = 200, baseMultiplier = 1.39, levelRequirement = 26, cost = { Mana = 17, }, }, - [9] = { attackSpeedMultiplier = 200, baseMultiplier = 1.46, levelRequirement = 31, cost = { Mana = 19, }, }, - [10] = { attackSpeedMultiplier = 200, baseMultiplier = 1.53, levelRequirement = 36, cost = { Mana = 21, }, }, - [11] = { attackSpeedMultiplier = 200, baseMultiplier = 1.61, levelRequirement = 41, cost = { Mana = 23, }, }, - [12] = { attackSpeedMultiplier = 200, baseMultiplier = 1.69, levelRequirement = 46, cost = { Mana = 26, }, }, - [13] = { attackSpeedMultiplier = 200, baseMultiplier = 1.77, levelRequirement = 52, cost = { Mana = 28, }, }, - [14] = { attackSpeedMultiplier = 200, baseMultiplier = 1.86, levelRequirement = 58, cost = { Mana = 31, }, }, - [15] = { attackSpeedMultiplier = 200, baseMultiplier = 1.96, levelRequirement = 64, cost = { Mana = 33, }, }, - [16] = { attackSpeedMultiplier = 200, baseMultiplier = 2.05, levelRequirement = 66, cost = { Mana = 36, }, }, - [17] = { attackSpeedMultiplier = 200, baseMultiplier = 2.16, levelRequirement = 72, cost = { Mana = 39, }, }, - [18] = { attackSpeedMultiplier = 200, baseMultiplier = 2.26, levelRequirement = 78, cost = { Mana = 43, }, }, - [19] = { attackSpeedMultiplier = 200, baseMultiplier = 2.38, levelRequirement = 84, cost = { Mana = 46, }, }, - [20] = { attackSpeedMultiplier = 200, baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 50, }, }, - [21] = { attackSpeedMultiplier = 200, baseMultiplier = 2.62, levelRequirement = 90, cost = { Mana = 54, }, }, - [22] = { attackSpeedMultiplier = 200, baseMultiplier = 2.75, levelRequirement = 90, cost = { Mana = 58, }, }, - [23] = { attackSpeedMultiplier = 200, baseMultiplier = 2.89, levelRequirement = 90, cost = { Mana = 63, }, }, - [24] = { attackSpeedMultiplier = 200, baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 68, }, }, - [25] = { attackSpeedMultiplier = 200, baseMultiplier = 3.18, levelRequirement = 90, cost = { Mana = 73, }, }, - [26] = { attackSpeedMultiplier = 200, baseMultiplier = 3.34, levelRequirement = 90, cost = { Mana = 78, }, }, - [27] = { attackSpeedMultiplier = 200, baseMultiplier = 3.51, levelRequirement = 90, cost = { Mana = 84, }, }, - [28] = { attackSpeedMultiplier = 200, baseMultiplier = 3.69, levelRequirement = 90, cost = { Mana = 90, }, }, - [29] = { attackSpeedMultiplier = 200, baseMultiplier = 3.87, levelRequirement = 90, cost = { Mana = 96, }, }, - [30] = { attackSpeedMultiplier = 200, baseMultiplier = 4.06, levelRequirement = 90, cost = { Mana = 103, }, }, - [31] = { attackSpeedMultiplier = 200, baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 110, }, }, - [32] = { attackSpeedMultiplier = 200, baseMultiplier = 4.48, levelRequirement = 90, cost = { Mana = 118, }, }, - [33] = { attackSpeedMultiplier = 200, baseMultiplier = 4.7, levelRequirement = 90, cost = { Mana = 126, }, }, - [34] = { attackSpeedMultiplier = 200, baseMultiplier = 4.94, levelRequirement = 90, cost = { Mana = 134, }, }, - [35] = { attackSpeedMultiplier = 200, baseMultiplier = 5.19, levelRequirement = 90, cost = { Mana = 143, }, }, - [36] = { attackSpeedMultiplier = 200, baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 153, }, }, - [37] = { attackSpeedMultiplier = 200, baseMultiplier = 5.72, levelRequirement = 90, cost = { Mana = 163, }, }, - [38] = { attackSpeedMultiplier = 200, baseMultiplier = 6, levelRequirement = 90, cost = { Mana = 174, }, }, - [39] = { attackSpeedMultiplier = 200, baseMultiplier = 6.31, levelRequirement = 90, cost = { Mana = 185, }, }, - [40] = { attackSpeedMultiplier = 200, baseMultiplier = 6.62, levelRequirement = 90, cost = { Mana = 197, }, }, + [1] = { attackSpeedMultiplier = 200, baseMultiplier = 0.9, levelRequirement = 0, cost = { Mana = 6, ManaPerMinute = 360, }, }, + [2] = { attackSpeedMultiplier = 200, baseMultiplier = 0.99, levelRequirement = 3, cost = { Mana = 7, ManaPerMinute = 416, }, }, + [3] = { attackSpeedMultiplier = 200, baseMultiplier = 1.09, levelRequirement = 6, cost = { Mana = 8, ManaPerMinute = 476, }, }, + [4] = { attackSpeedMultiplier = 200, baseMultiplier = 1.19, levelRequirement = 10, cost = { Mana = 9, ManaPerMinute = 541, }, }, + [5] = { attackSpeedMultiplier = 200, baseMultiplier = 1.28, levelRequirement = 14, cost = { Mana = 10, ManaPerMinute = 611, }, }, + [6] = { attackSpeedMultiplier = 200, baseMultiplier = 1.38, levelRequirement = 18, cost = { Mana = 11, ManaPerMinute = 685, }, }, + [7] = { attackSpeedMultiplier = 200, baseMultiplier = 1.47, levelRequirement = 22, cost = { Mana = 13, ManaPerMinute = 764, }, }, + [8] = { attackSpeedMultiplier = 200, baseMultiplier = 1.56, levelRequirement = 26, cost = { Mana = 14, ManaPerMinute = 849, }, }, + [9] = { attackSpeedMultiplier = 200, baseMultiplier = 1.64, levelRequirement = 31, cost = { Mana = 16, ManaPerMinute = 940, }, }, + [10] = { attackSpeedMultiplier = 200, baseMultiplier = 1.72, levelRequirement = 36, cost = { Mana = 17, ManaPerMinute = 1037, }, }, + [11] = { attackSpeedMultiplier = 200, baseMultiplier = 1.81, levelRequirement = 41, cost = { Mana = 19, ManaPerMinute = 1140, }, }, + [12] = { attackSpeedMultiplier = 200, baseMultiplier = 1.9, levelRequirement = 46, cost = { Mana = 21, ManaPerMinute = 1250, }, }, + [13] = { attackSpeedMultiplier = 200, baseMultiplier = 1.99, levelRequirement = 52, cost = { Mana = 23, ManaPerMinute = 1368, }, }, + [14] = { attackSpeedMultiplier = 200, baseMultiplier = 2.09, levelRequirement = 58, cost = { Mana = 25, ManaPerMinute = 1493, }, }, + [15] = { attackSpeedMultiplier = 200, baseMultiplier = 2.2, levelRequirement = 64, cost = { Mana = 28, ManaPerMinute = 1626, }, }, + [16] = { attackSpeedMultiplier = 200, baseMultiplier = 2.31, levelRequirement = 66, cost = { Mana = 30, ManaPerMinute = 1768, }, }, + [17] = { attackSpeedMultiplier = 200, baseMultiplier = 2.42, levelRequirement = 72, cost = { Mana = 33, ManaPerMinute = 1919, }, }, + [18] = { attackSpeedMultiplier = 200, baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 35, ManaPerMinute = 2079, }, }, + [19] = { attackSpeedMultiplier = 200, baseMultiplier = 2.67, levelRequirement = 84, cost = { Mana = 38, ManaPerMinute = 2249, }, }, + [20] = { attackSpeedMultiplier = 200, baseMultiplier = 2.81, levelRequirement = 90, cost = { Mana = 41, ManaPerMinute = 2430, }, }, + [21] = { attackSpeedMultiplier = 200, baseMultiplier = 2.95, levelRequirement = 90, cost = { Mana = 45, ManaPerMinute = 2623, }, }, + [22] = { attackSpeedMultiplier = 200, baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 48, ManaPerMinute = 2827, }, }, + [23] = { attackSpeedMultiplier = 200, baseMultiplier = 3.25, levelRequirement = 90, cost = { Mana = 52, ManaPerMinute = 3043, }, }, + [24] = { attackSpeedMultiplier = 200, baseMultiplier = 3.41, levelRequirement = 90, cost = { Mana = 56, ManaPerMinute = 3273, }, }, + [25] = { attackSpeedMultiplier = 200, baseMultiplier = 3.58, levelRequirement = 90, cost = { Mana = 60, ManaPerMinute = 3517, }, }, + [26] = { attackSpeedMultiplier = 200, baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 65, ManaPerMinute = 3775, }, }, + [27] = { attackSpeedMultiplier = 200, baseMultiplier = 3.95, levelRequirement = 90, cost = { Mana = 69, ManaPerMinute = 4049, }, }, + [28] = { attackSpeedMultiplier = 200, baseMultiplier = 4.15, levelRequirement = 90, cost = { Mana = 74, ManaPerMinute = 4340, }, }, + [29] = { attackSpeedMultiplier = 200, baseMultiplier = 4.35, levelRequirement = 90, cost = { Mana = 80, ManaPerMinute = 4647, }, }, + [30] = { attackSpeedMultiplier = 200, baseMultiplier = 4.57, levelRequirement = 90, cost = { Mana = 85, ManaPerMinute = 4973, }, }, + [31] = { attackSpeedMultiplier = 200, baseMultiplier = 4.8, levelRequirement = 90, cost = { Mana = 91, ManaPerMinute = 5318, }, }, + [32] = { attackSpeedMultiplier = 200, baseMultiplier = 5.04, levelRequirement = 90, cost = { Mana = 97, ManaPerMinute = 5683, }, }, + [33] = { attackSpeedMultiplier = 200, baseMultiplier = 5.29, levelRequirement = 90, cost = { Mana = 104, ManaPerMinute = 6070, }, }, + [34] = { attackSpeedMultiplier = 200, baseMultiplier = 5.56, levelRequirement = 90, cost = { Mana = 111, ManaPerMinute = 6479, }, }, + [35] = { attackSpeedMultiplier = 200, baseMultiplier = 5.84, levelRequirement = 90, cost = { Mana = 119, ManaPerMinute = 6911, }, }, + [36] = { attackSpeedMultiplier = 200, baseMultiplier = 6.13, levelRequirement = 90, cost = { Mana = 126, ManaPerMinute = 7369, }, }, + [37] = { attackSpeedMultiplier = 200, baseMultiplier = 6.43, levelRequirement = 90, cost = { Mana = 135, ManaPerMinute = 7852, }, }, + [38] = { attackSpeedMultiplier = 200, baseMultiplier = 6.76, levelRequirement = 90, cost = { Mana = 144, ManaPerMinute = 8364, }, }, + [39] = { attackSpeedMultiplier = 200, baseMultiplier = 7.09, levelRequirement = 90, cost = { Mana = 153, ManaPerMinute = 8904, }, }, + [40] = { attackSpeedMultiplier = 200, baseMultiplier = 7.45, levelRequirement = 90, cost = { Mana = 163, ManaPerMinute = 9475, }, }, }, statSets = { [1] = { @@ -14157,7 +14169,7 @@ skills["OilBarragePlayer"] = { { "channel_start_duration_as_%_of_attack_time", 350 }, { "channel_end_duration_as_%_of_attack_time", 1000 }, { "display_attack_time_+%", 350 }, - { "electric_spit_empowered_channel_consume_power_charge_per_X_ms", 2000 }, + { "electric_spit_empowered_channel_consume_power_charge_per_X_ms", 1500 }, { "minimum_projectile_target_distance_+", 40 }, { "active_skill_override_turn_duration_ms", 200 }, { "ground_oil_art_variation", 2000 }, @@ -14175,7 +14187,6 @@ skills["OilBarragePlayer"] = { "projectiles_barrage", "projectiles_fire_at_ground", "skill_do_not_elapse_channel_time_while_barraging", - "never_ignite", }, levels = { [1] = { actorLevel = 1, }, @@ -14308,7 +14319,7 @@ skills["OilBarragePlayer"] = { { "channel_start_duration_as_%_of_attack_time", 350 }, { "channel_end_duration_as_%_of_attack_time", 1000 }, { "display_attack_time_+%", 350 }, - { "electric_spit_empowered_channel_consume_power_charge_per_X_ms", 2000 }, + { "electric_spit_empowered_channel_consume_power_charge_per_X_ms", 1500 }, { "minimum_projectile_target_distance_+", 40 }, { "active_skill_override_turn_duration_ms", 200 }, { "ground_oil_art_variation", 2000 }, @@ -14327,49 +14338,48 @@ skills["OilBarragePlayer"] = { "projectiles_barrage", "projectiles_fire_at_ground", "skill_do_not_elapse_channel_time_while_barraging", - "never_ignite", }, levels = { - [1] = { baseMultiplier = 1.1, actorLevel = 1, }, - [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.57, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.68, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.8, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.91, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.01, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.11, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.21, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.32, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.44, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.56, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.69, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.82, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 2.96, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.11, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.27, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.43, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 3.6, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 3.78, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 3.97, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 4.17, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 4.38, actorLevel = 136.875, }, - [26] = { baseMultiplier = 4.6, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 4.83, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 5.07, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 5.32, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 5.59, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 5.87, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 6.16, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 6.47, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 6.79, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 7.13, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 7.49, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 7.86, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 8.26, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 8.67, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 9.1, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { baseMultiplier = 1.1, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.21, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.32, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.42, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.53, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.64, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.74, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.82, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.91, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.01, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.22, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 2.33, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 2.44, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.57, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.69, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.83, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.97, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 3.12, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 3.27, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 3.44, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 3.61, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 3.79, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 3.98, actorLevel = 136.875, }, + [26] = { baseMultiplier = 4.18, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 4.39, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 4.61, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 4.84, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 5.08, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 5.33, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 5.6, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 5.88, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 6.18, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 6.48, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 6.81, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 7.15, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 7.51, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 7.88, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 8.28, actorLevel = 288.29998779297, }, }, }, } @@ -14380,7 +14390,7 @@ skills["OilGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/OilGrenade.dds", color = 1, description = "Fire a bouncing Grenade that bursts in a spray of Oil when the fuse expires or when it impacts an Enemy, dealing minimal damage but covering the ground and nearby enemies in Oil. Oil created this way can be Ignited by Detonator Skills or Ignited Ground.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -14922,46 +14932,46 @@ skills["WolfPouncePlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 5, levelRequirement = 0, storedUses = 1, cost = { Mana = 12, }, }, - [2] = { baseMultiplier = 1.1, cooldown = 4.9, levelRequirement = 3, storedUses = 1, cost = { Mana = 14, }, }, - [3] = { baseMultiplier = 1.21, cooldown = 4.9, levelRequirement = 6, storedUses = 1, cost = { Mana = 16, }, }, - [4] = { baseMultiplier = 1.32, cooldown = 4.8, levelRequirement = 10, storedUses = 1, cost = { Mana = 18, }, }, - [5] = { baseMultiplier = 1.42, cooldown = 4.8, levelRequirement = 14, storedUses = 1, cost = { Mana = 20, }, }, - [6] = { baseMultiplier = 1.53, cooldown = 4.7, levelRequirement = 18, storedUses = 1, cost = { Mana = 23, }, }, - [7] = { baseMultiplier = 1.64, cooldown = 4.7, levelRequirement = 22, storedUses = 1, cost = { Mana = 26, }, }, - [8] = { baseMultiplier = 1.74, cooldown = 4.6, levelRequirement = 26, storedUses = 1, cost = { Mana = 29, }, }, - [9] = { baseMultiplier = 1.82, cooldown = 4.6, levelRequirement = 31, storedUses = 1, cost = { Mana = 32, }, }, - [10] = { baseMultiplier = 1.91, cooldown = 4.5, levelRequirement = 36, storedUses = 1, cost = { Mana = 35, }, }, - [11] = { baseMultiplier = 2.01, cooldown = 4.5, levelRequirement = 41, storedUses = 1, cost = { Mana = 39, }, }, - [12] = { baseMultiplier = 2.11, cooldown = 4.4, levelRequirement = 46, storedUses = 1, cost = { Mana = 42, }, }, - [13] = { baseMultiplier = 2.22, cooldown = 4.4, levelRequirement = 52, storedUses = 1, cost = { Mana = 46, }, }, - [14] = { baseMultiplier = 2.33, cooldown = 4.3, levelRequirement = 58, storedUses = 1, cost = { Mana = 51, }, }, - [15] = { baseMultiplier = 2.44, cooldown = 4.3, levelRequirement = 64, storedUses = 1, cost = { Mana = 55, }, }, - [16] = { baseMultiplier = 2.57, cooldown = 4.2, levelRequirement = 66, storedUses = 1, cost = { Mana = 60, }, }, - [17] = { baseMultiplier = 2.69, cooldown = 4.2, levelRequirement = 72, storedUses = 1, cost = { Mana = 65, }, }, - [18] = { baseMultiplier = 2.83, cooldown = 4.1, levelRequirement = 78, storedUses = 1, cost = { Mana = 71, }, }, - [19] = { baseMultiplier = 2.97, cooldown = 4.1, levelRequirement = 84, storedUses = 1, cost = { Mana = 77, }, }, - [20] = { baseMultiplier = 3.12, cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 83, }, }, - [21] = { baseMultiplier = 3.27, cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 89, }, }, - [22] = { baseMultiplier = 3.44, cooldown = 3.9, levelRequirement = 90, storedUses = 1, cost = { Mana = 96, }, }, - [23] = { baseMultiplier = 3.61, cooldown = 3.9, levelRequirement = 90, storedUses = 1, cost = { Mana = 104, }, }, - [24] = { baseMultiplier = 3.79, cooldown = 3.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 112, }, }, - [25] = { baseMultiplier = 3.98, cooldown = 3.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 120, }, }, - [26] = { baseMultiplier = 4.18, cooldown = 3.7, levelRequirement = 90, storedUses = 1, cost = { Mana = 129, }, }, - [27] = { baseMultiplier = 4.39, cooldown = 3.7, levelRequirement = 90, storedUses = 1, cost = { Mana = 138, }, }, - [28] = { baseMultiplier = 4.61, cooldown = 3.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 148, }, }, - [29] = { baseMultiplier = 4.84, cooldown = 3.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 159, }, }, - [30] = { baseMultiplier = 5.08, cooldown = 3.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 170, }, }, - [31] = { baseMultiplier = 5.33, cooldown = 3.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 182, }, }, - [32] = { baseMultiplier = 5.6, cooldown = 3.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 194, }, }, - [33] = { baseMultiplier = 5.88, cooldown = 3.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 208, }, }, - [34] = { baseMultiplier = 6.18, cooldown = 3.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 222, }, }, - [35] = { baseMultiplier = 6.48, cooldown = 3.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 237, }, }, - [36] = { baseMultiplier = 6.81, cooldown = 3.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 252, }, }, - [37] = { baseMultiplier = 7.15, cooldown = 3.3, levelRequirement = 90, storedUses = 1, cost = { Mana = 269, }, }, - [38] = { baseMultiplier = 7.51, cooldown = 3.3, levelRequirement = 90, storedUses = 1, cost = { Mana = 286, }, }, - [39] = { baseMultiplier = 7.88, cooldown = 3.3, levelRequirement = 90, storedUses = 1, cost = { Mana = 305, }, }, - [40] = { baseMultiplier = 8.28, cooldown = 3.3, levelRequirement = 90, storedUses = 1, cost = { Mana = 325, }, }, + [1] = { cooldown = 6, levelRequirement = 0, storedUses = 1, cost = { Mana = 15, }, }, + [2] = { baseMultiplier = 1.1, cooldown = 6, levelRequirement = 3, storedUses = 1, cost = { Mana = 17, }, }, + [3] = { baseMultiplier = 1.21, cooldown = 6, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, + [4] = { baseMultiplier = 1.32, cooldown = 5.9, levelRequirement = 10, storedUses = 1, cost = { Mana = 22, }, }, + [5] = { baseMultiplier = 1.42, cooldown = 5.9, levelRequirement = 14, storedUses = 1, cost = { Mana = 25, }, }, + [6] = { baseMultiplier = 1.53, cooldown = 5.8, levelRequirement = 18, storedUses = 1, cost = { Mana = 28, }, }, + [7] = { baseMultiplier = 1.64, cooldown = 5.8, levelRequirement = 22, storedUses = 1, cost = { Mana = 32, }, }, + [8] = { baseMultiplier = 1.74, cooldown = 5.7, levelRequirement = 26, storedUses = 1, cost = { Mana = 35, }, }, + [9] = { baseMultiplier = 1.82, cooldown = 5.7, levelRequirement = 31, storedUses = 1, cost = { Mana = 39, }, }, + [10] = { baseMultiplier = 1.91, cooldown = 5.6, levelRequirement = 36, storedUses = 1, cost = { Mana = 43, }, }, + [11] = { baseMultiplier = 2.01, cooldown = 5.6, levelRequirement = 41, storedUses = 1, cost = { Mana = 47, }, }, + [12] = { baseMultiplier = 2.11, cooldown = 5.5, levelRequirement = 46, storedUses = 1, cost = { Mana = 52, }, }, + [13] = { baseMultiplier = 2.22, cooldown = 5.5, levelRequirement = 52, storedUses = 1, cost = { Mana = 57, }, }, + [14] = { baseMultiplier = 2.33, cooldown = 5.4, levelRequirement = 58, storedUses = 1, cost = { Mana = 62, }, }, + [15] = { baseMultiplier = 2.44, cooldown = 5.4, levelRequirement = 64, storedUses = 1, cost = { Mana = 68, }, }, + [16] = { baseMultiplier = 2.57, cooldown = 5.3, levelRequirement = 66, storedUses = 1, cost = { Mana = 74, }, }, + [17] = { baseMultiplier = 2.69, cooldown = 5.3, levelRequirement = 72, storedUses = 1, cost = { Mana = 80, }, }, + [18] = { baseMultiplier = 2.83, cooldown = 5.2, levelRequirement = 78, storedUses = 1, cost = { Mana = 87, }, }, + [19] = { baseMultiplier = 2.97, cooldown = 5.2, levelRequirement = 84, storedUses = 1, cost = { Mana = 94, }, }, + [20] = { baseMultiplier = 3.12, cooldown = 5.1, levelRequirement = 90, storedUses = 1, cost = { Mana = 102, }, }, + [21] = { baseMultiplier = 3.27, cooldown = 5.1, levelRequirement = 90, storedUses = 1, cost = { Mana = 110, }, }, + [22] = { baseMultiplier = 3.44, cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { Mana = 118, }, }, + [23] = { baseMultiplier = 3.61, cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { Mana = 127, }, }, + [24] = { baseMultiplier = 3.79, cooldown = 4.9, levelRequirement = 90, storedUses = 1, cost = { Mana = 137, }, }, + [25] = { baseMultiplier = 3.98, cooldown = 4.9, levelRequirement = 90, storedUses = 1, cost = { Mana = 147, }, }, + [26] = { baseMultiplier = 4.18, cooldown = 4.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 158, }, }, + [27] = { baseMultiplier = 4.39, cooldown = 4.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 169, }, }, + [28] = { baseMultiplier = 4.61, cooldown = 4.7, levelRequirement = 90, storedUses = 1, cost = { Mana = 182, }, }, + [29] = { baseMultiplier = 4.84, cooldown = 4.7, levelRequirement = 90, storedUses = 1, cost = { Mana = 195, }, }, + [30] = { baseMultiplier = 5.08, cooldown = 4.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 208, }, }, + [31] = { baseMultiplier = 5.33, cooldown = 4.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 223, }, }, + [32] = { baseMultiplier = 5.6, cooldown = 4.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 238, }, }, + [33] = { baseMultiplier = 5.88, cooldown = 4.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 254, }, }, + [34] = { baseMultiplier = 6.18, cooldown = 4.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 271, }, }, + [35] = { baseMultiplier = 6.48, cooldown = 4.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 290, }, }, + [36] = { baseMultiplier = 6.81, cooldown = 4.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 309, }, }, + [37] = { baseMultiplier = 7.15, cooldown = 4.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 329, }, }, + [38] = { baseMultiplier = 7.51, cooldown = 4.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 351, }, }, + [39] = { baseMultiplier = 7.88, cooldown = 4.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 373, }, }, + [40] = { baseMultiplier = 8.28, cooldown = 4.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 397, }, }, }, statSets = { [1] = { @@ -15028,15 +15038,14 @@ skills["WolfPouncePlayer"] = { }, } } -skills["SupportCrossSlashPlayer"] = { - name = "SupportCrossSlashPlayer", +skills["SupportWolfPouncePlayer"] = { + name = "SupportWolfPouncePlayer", hidden = true, support = true, - requireSkillTypes = { SkillType.Mark, }, + requireSkillTypes = { SkillType.Mark, SkillType.Triggerable, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { }, + excludeSkillTypes = { SkillType.InbuiltTrigger, }, qualityStats = { - { "mark_effect_+%", 0.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -15088,50 +15097,49 @@ skills["SupportCrossSlashPlayer"] = { baseFlags = { }, stats = { - "mark_effect_+%", "triggered_by_cross_slash", }, levels = { - [1] = { 100, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 100, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 100, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 100, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 100, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 100, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 100, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 100, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 100, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 100, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 100, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 100, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 100, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 100, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 100, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 100, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 100, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 100, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 100, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 100, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 100, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 100, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 100, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 100, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 100, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 100, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 100, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 100, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 100, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 100, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 100, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 100, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -15211,6 +15219,7 @@ skills["WolfPounceMarkPlayer"] = { "can_perform_skill_while_moving", "triggerable_in_any_set", "usable_while_shapeshifted", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { [1] = { actorLevel = 1, }, @@ -15257,7 +15266,7 @@ skills["WolfPounceMarkPlayer"] = { }, } } -skills["WolfCrossSlashWolfPlayer"] = { +skills["WolfPounceSummonWolfPlayer"] = { name = "Summon Wolf", hidden = true, icon = "Art/2DArt/SkillIcons/DruidWolfHowl.dds", @@ -15269,48 +15278,49 @@ skills["WolfCrossSlashWolfPlayer"] = { minionSkillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -15332,6 +15342,7 @@ skills["WolfCrossSlashWolfPlayer"] = { "usable_while_shapeshifted", "triggerable_in_any_set", "display_statset_no_hit_damage", + "secondary_skill_triggered_by_primary_skill_of_gem", }, levels = { [1] = { 4, statInterpolation = { 1, }, actorLevel = 1, }, @@ -15513,7 +15524,7 @@ skills["ResonatingShieldPlayer"] = { icon = "Art/2DArt/SkillIcons/BruteResonatingShield.dds", color = 1, description = "Repeatedly hammer your Shield with your weapon causing damaging shockwaves in an area around you. Enemies hit by the shockwave lose Armour for a duration. While Channelling Resonating Shield, your Shield is raised and you will Block all incoming Blockable hits.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Sustained] = true, [SkillType.NonWeaponAttack] = true, [SkillType.ActiveBlock] = true, }, castTime = 1, qualityStats = { { "armour_break_amount_+%", 1 }, @@ -15598,46 +15609,46 @@ skills["ResonatingShieldPlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 4, 6, 6, 8, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 6, 8, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 6, 8, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 6, 8, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 6, 8, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 6, 8, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 6, 8, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 6, 8, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 6, 8, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 6, 8, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 6, 8, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 6, 8, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 6, 8, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 6, 8, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 6, 8, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 6, 8, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 6, 8, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 6, 8, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 6, 8, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 6, 8, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 6, 8, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 6, 8, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 6, 8, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 6, 8, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 6, 8, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 6, 8, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 6, 8, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 6, 8, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 6, 8, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 6, 8, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 6, 8, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 6, 8, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 6, 8, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 6, 8, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 6, 8, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 6, 8, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 6, 8, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 6, 8, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 6, 8, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 6, 8, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 5, 7, 2, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 5, 7, 3, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 5, 7, 5, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 5, 7, 9, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 5, 7, 14, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 5, 7, 21, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 5, 7, 31, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 5, 7, 43, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 5, 7, 63, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 5, 7, 91, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 5, 7, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 5, 7, 179, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 5, 7, 262, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 5, 7, 380, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 5, 7, 545, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 5, 7, 732, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 5, 7, 871, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 5, 7, 1034, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 5, 7, 1298, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 5, 7, 1537, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 5, 7, 1625, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 5, 7, 1719, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 5, 7, 1817, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 5, 7, 1921, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 5, 7, 2030, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 5, 7, 2146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 5, 7, 2267, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 5, 7, 2396, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 5, 7, 2531, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 5, 7, 2674, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 5, 7, 2824, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 5, 7, 2982, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 5, 7, 3149, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 5, 7, 3325, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 5, 7, 3510, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 5, 7, 3706, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 5, 7, 3912, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 5, 7, 4128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 5, 7, 4344, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 5, 7, 4568, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -15648,7 +15659,7 @@ skills["RollingMagmaPlayer"] = { 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.", - 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, }, + 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, }, @@ -15735,37 +15746,37 @@ skills["RollingMagmaPlayer"] = { "disable_quadruped_head_control", }, levels = { - [1] = { 2, 14, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 14, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 2, 14, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 2, 15, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 15, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 15, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [1] = { 3, 14, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 3, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 14, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 14, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, [8] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, [9] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 3, 16, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 3, 17, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [10] = { 4, 16, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 4, 16, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 4, 16, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 4, 16, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 4, 16, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 4, 17, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, [16] = { 4, 17, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, [17] = { 4, 17, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, [18] = { 4, 17, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, [19] = { 4, 17, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 4, 18, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 4, 18, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 4, 18, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 4, 18, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [20] = { 5, 18, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 5, 18, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 5, 18, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 5, 18, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, [24] = { 5, 18, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, [25] = { 5, 19, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, [26] = { 5, 19, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, [27] = { 5, 19, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, [28] = { 5, 19, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, [29] = { 5, 19, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 5, 20, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 5, 20, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [30] = { 6, 20, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 6, 20, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, [32] = { 6, 20, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, [33] = { 6, 20, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, [34] = { 6, 20, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, @@ -15785,7 +15796,7 @@ skills["RollingSlamPlayer"] = { icon = "Art/2DArt/SkillIcons/BruteDoubleSlam.dds", color = 1, description = "Slam the ground to Stun enemies and knock them away, then continue forward and perform a devastating second Slam.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -15847,7 +15858,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1500 }, + { "total_attack_time_+_ms", 1000 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -15914,7 +15925,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1500 }, + { "total_attack_time_+_ms", 1000 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -15931,46 +15942,46 @@ skills["RollingSlamPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 0.9, actorLevel = 1, }, - [2] = { baseMultiplier = 0.99, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.1, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.2, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.31, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.41, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.53, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.64, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 1.74, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 1.85, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.97, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.1, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.24, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.4, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.56, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.75, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 2.95, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.17, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.41, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.67, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 3.96, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 4.26, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 4.59, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 4.95, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 5.33, actorLevel = 136.875, }, - [26] = { baseMultiplier = 5.74, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 6.19, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 6.67, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 7.18, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 7.74, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 8.33, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 8.98, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 9.67, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 10.42, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 11.23, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 12.09, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 13.03, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 14.03, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 15.12, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 16.29, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 0.75, actorLevel = 1, }, + [2] = { baseMultiplier = 0.82, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.91, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.99, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.07, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.16, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.25, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.33, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.4, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.48, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.57, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.66, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.76, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.87, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.98, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.11, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.24, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.39, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 2.55, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 2.72, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 2.9, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 3.09, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 3.3, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 3.52, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 3.75, actorLevel = 136.875, }, + [26] = { baseMultiplier = 4, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 4.27, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 4.55, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 4.85, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 5.18, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 5.52, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 5.89, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 6.28, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 6.7, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 7.15, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 7.62, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 8.13, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 8.67, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 9.25, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 9.87, actorLevel = 288.29998779297, }, }, }, [3] = { @@ -15983,7 +15994,7 @@ skills["RollingSlamPlayer"] = { melee = true, }, constantStats = { - { "total_attack_time_+_ms", 1500 }, + { "total_attack_time_+_ms", 1000 }, { "melee_conditional_step_distance", 15 }, { "attack_maximum_action_distance_+", 20 }, { "totemified_rolling_slam_attack_maximum_action_distance_+", 36 }, @@ -16000,46 +16011,46 @@ skills["RollingSlamPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 1.8, actorLevel = 1, }, - [2] = { baseMultiplier = 1.99, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 2.19, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 2.4, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 2.61, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 2.83, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 3.05, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 3.27, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 3.47, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 3.7, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 3.94, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 4.2, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 4.48, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 4.79, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 5.13, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 5.5, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 5.9, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 6.34, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 6.82, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 7.35, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 7.92, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 8.53, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 9.19, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 9.9, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 10.66, actorLevel = 136.875, }, - [26] = { baseMultiplier = 11.49, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 12.38, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 13.33, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 14.36, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 15.47, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 16.67, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 17.96, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 19.35, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 20.84, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 22.45, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 24.19, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 26.06, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 28.07, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 30.24, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 32.58, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.5, actorLevel = 1, }, + [2] = { baseMultiplier = 1.65, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.82, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.98, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 2.15, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 2.32, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.49, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.65, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.8, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.96, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 3.14, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 3.32, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 3.52, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.74, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.97, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 4.22, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 4.49, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 4.78, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 5.09, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 5.43, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 5.79, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 6.18, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 6.59, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 7.03, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 7.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 8, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 8.53, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 9.1, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 9.71, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 10.35, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 11.04, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 11.78, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 12.56, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 13.4, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 14.29, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 15.25, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 16.26, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 17.35, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 18.5, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 19.73, actorLevel = 288.29998779297, }, }, }, } @@ -16049,7 +16060,7 @@ skills["ScavengedPlatingPlayer"] = { baseTypeName = "Scavenged Plating", icon = "Art/2DArt/SkillIcons/BruteScavengedPlating.dds", color = 1, - description = "While active, uses fragments of armour scavenged from enemies to bolster your own. Fully Breaking an enemy's Armour grants you stacks of Scavenged Plating for a duration based on the enemy's rarity, and you gain Armour and Thorns per stack. Normal enemies grant 1 stack, Magic enemies grant 2 stacks, Rare enemies grant 5 stacks and Unique enemies grant 10 stacks.", + description = "While active, uses fragments of armour scavenged from enemies to bolster your own. Fully Breaking an enemy's Armour grants you stacks of Scavenged Plating for a duration based on the enemy's Rarity, and you gain Armour and Thorns per stack. Normal enemies grant 1 stack, Magic enemies grant 2 stacks, Rare enemies grant 5 stacks and Unique enemies grant 10 stacks.", skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Duration] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { @@ -16434,7 +16445,7 @@ skills["ShieldChargePlayer"] = { icon = "Art/2DArt/SkillIcons/BruteShieldCharge.dds", color = 1, description = "Channel to charge in the target direction. You will crash into enemies on your path, stopping your charge and dealing damage to enemies in an area, and extra damage to the enemies you collided with. While charging, your Shield is raised and you will Block all incoming Blockable hits.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RequiresShield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.NonWeaponAttack] = true, [SkillType.ActiveBlock] = true, }, castTime = 1, qualityStats = { { "base_additional_damage_from_distance_+%_final", 2 }, @@ -16746,7 +16757,7 @@ skills["ShieldWallPlayer"] = { { "active_skill_base_area_of_effect_radius", 40 }, { "active_skill_base_secondary_area_of_effect_radius", 14 }, { "base_number_of_shield_walls_allowed", 2 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "shield_wall_damage_+%_final_when_slammed", 100 }, }, stats = { @@ -16768,46 +16779,46 @@ skills["ShieldWallPlayer"] = { "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 4, 6, 70, 36, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, - [2] = { 6, 9, 70, 64, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 10, 15, 70, 108, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 13, 20, 70, 164, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 17, 26, 70, 240, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 21, 32, 70, 334, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 26, 38, 70, 460, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 30, 45, 70, 624, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 35, 53, 70, 832, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 40, 60, 70, 1100, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 45, 68, 70, 1438, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 51, 76, 70, 1866, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 57, 85, 70, 2408, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 63, 94, 70, 3086, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 69, 103, 70, 3940, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 75, 113, 70, 5016, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 82, 123, 70, 6362, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 89, 133, 70, 8032, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, 144, 70, 10118, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 103, 155, 70, 12714, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 111, 166, 70, 13254, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 119, 178, 70, 14371, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 127, 190, 70, 16378, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 135, 202, 70, 18862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 144, 215, 70, 21933, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 152, 228, 70, 23030, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 161, 242, 70, 24181, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 170, 256, 70, 25390, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 180, 270, 70, 26660, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 190, 284, 70, 27993, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 200, 299, 70, 29392, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 210, 315, 70, 30862, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 220, 330, 70, 32405, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 231, 346, 70, 34025, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 242, 362, 70, 35727, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 253, 379, 70, 37513, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 264, 396, 70, 39389, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 275, 413, 70, 41358, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 287, 431, 70, 43426, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 299, 449, 70, 45597, 6, 8, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4, 6, 70, 36, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, 70, 64, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 15, 70, 108, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 20, 70, 164, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 26, 70, 240, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 32, 70, 334, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 26, 38, 70, 460, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 45, 70, 624, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 35, 53, 70, 832, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 40, 60, 70, 1100, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 45, 68, 70, 1438, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 51, 76, 70, 1866, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 57, 85, 70, 2408, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 94, 70, 3086, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 69, 103, 70, 3940, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 75, 113, 70, 5016, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 82, 123, 70, 6362, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 89, 133, 70, 8032, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, 144, 70, 10118, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 103, 155, 70, 12714, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 111, 166, 70, 13254, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 119, 178, 70, 14371, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 127, 190, 70, 16378, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 135, 202, 70, 18862, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 144, 215, 70, 21933, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 152, 228, 70, 23030, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 161, 242, 70, 24181, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 170, 256, 70, 25390, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 180, 270, 70, 26660, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 190, 284, 70, 27993, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 200, 299, 70, 29392, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 210, 315, 70, 30862, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 220, 330, 70, 32405, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 231, 346, 70, 34025, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 242, 362, 70, 35727, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 253, 379, 70, 37513, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 264, 396, 70, 39389, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 275, 413, 70, 41358, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 287, 431, 70, 43426, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 299, 449, 70, 45597, 5, 7, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -16960,7 +16971,7 @@ skills["ShockwaveTotemQuakePlayer"] = { name = "Shockwave Slam", hidden = true, icon = "Art/2DArt/SkillIcons/BruteShockwaveTotem.dds", - skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, [SkillType.CannotCreateJaggedGround] = true, [SkillType.AttackInPlace] = true, [SkillType.UsableWhileShapeshifted] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Nova] = true, [SkillType.Slam] = true, [SkillType.UsedByTotem] = true, [SkillType.UsedByProxy] = true, [SkillType.CannotCreateJaggedGround] = true, [SkillType.AttackInPlace] = true, [SkillType.UsableWhileShapeshifted] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -17163,6 +17174,7 @@ skills["SiegeBallistaPlayer"] = { skillTotemId = 19, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { levelRequirement = 0, cost = { Mana = 18, }, }, @@ -17284,13 +17296,13 @@ skills["SiegeBallistaProjectilePlayer"] = { name = "Artillery", hidden = true, icon = "Art/2DArt/SkillIcons/MercArtilleryBallista.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Barrageable] = true, [SkillType.AttackInPlaceIsDefault] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.CannotChain] = true, [SkillType.UsedByTotem] = true, [SkillType.UsedByProxy] = true, [SkillType.AttackInPlace] = true, [SkillType.Sustained] = true, }, weaponTypes = { ["Crossbow"] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_secondary_area_of_effect_radius", 0.15 }, + { "active_skill_area_of_effect_+%_final", 1 }, }, levels = { [1] = { attackSpeedMultiplier = -75, baseMultiplier = 0.25, levelRequirement = 0, }, @@ -17489,7 +17501,7 @@ skills["SummonMetaTotemSpellTotemPlayer"] = { icon = "Art/2DArt/SkillIcons/DruidSpellTotem.dds", color = 1, description = "Consume any combination of 3 Power and/or Endurance Charges to raise a Totem that uses socketed Spells. Cannot use Skills with Cooldowns.", - skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Limit] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, + skillTypes = { [SkillType.SummonsTotem] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Meta] = true, [SkillType.Limit] = true, [SkillType.HasUsageCondition] = true, [SkillType.RequiresCharges] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesEnduranceChargesOnUse] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 0.5, qualityStats = { { "base_totem_duration", 200 }, @@ -17549,6 +17561,9 @@ skills["SummonMetaTotemSpellTotemPlayer"] = { constantStats = { { "base_totem_duration", 8000 }, { "base_totem_range", 80 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, { "active_skill_requires_X_power_or_endurance_charges", 3 }, { "spell_totem_maximum_life_+%_final_per_endurance_charge_consumed", 20 }, { "spell_totem_totem_duration_+%_final_per_endurance_charge_consumed", 20 }, @@ -17563,6 +17578,10 @@ skills["SummonMetaTotemSpellTotemPlayer"] = { "skill_is_deploy_skill", "is_spell_totem", "quality_display_base_totem_duration_is_gem", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_number_of_totems_allowed", }, levels = { [1] = { 0, 0, 1, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, @@ -17614,10 +17633,11 @@ skills["SupportMetaTotemSpellTotemPlayer"] = { hidden = true, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Totemable, SkillType.AND, }, - addSkillTypes = { SkillType.UsedByTotem, }, - excludeSkillTypes = { SkillType.Meta, SkillType.Triggered, SkillType.Cooldown, SkillType.Persistent, }, + addSkillTypes = { SkillType.UsedByTotem, SkillType.UsedByProxy, SkillType.SupportedBySpellTotem, }, + excludeSkillTypes = { SkillType.Meta, SkillType.HasUsageCondition, SkillType.Cooldown, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedBySpellTotem, SkillType.NOT, SkillType.AND, }, ignoreMinionTypes = true, qualityStats = { + { "dummy_stat_display_nothing", 0 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -17733,7 +17753,7 @@ skills["StampedePlayer"] = { icon = "Art/2DArt/SkillIcons/BruteStampede.dds", color = 1, description = "Charges forward, cracking the earth and leaving a patch of Jagged Ground with every footstep. At the end of your charge, a massive leaping Slam damages enemies and causes all nearby patches of Jagged Ground to explode, damaging enemies standing on them. Once you begin your charge, the use speed of this Skill is affected by movement speed instead of Attack speed.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Jumping] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.Jumping] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -18204,7 +18224,7 @@ skills["SuperchargedSlamPlayer"] = { baseTypeName = "Supercharged Slam", icon = "Art/2DArt/SkillIcons/BruteSuperchargedSlam.dds", color = 1, - description = "Channel to charge up a heavy swing, drawing earth from the ground to enlarge your mace. Release to Slam the ground, dealing damage in an area around the impact, followed by Aftershocks dealing damage in a larger area.", + description = "Channel to charge up a heavy swing, drawing earth from the ground to enlarge your mace. Release to Slam the ground, dealing damage in an area around the impact, followed by Aftershocks dealing damage in a larger area. This Skill has its own Attack time, which is not affected by your weapon's attack speed and cannot be modified.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.NoDualWield] = true, [SkillType.GainsStages] = true, }, weaponTypes = { ["Two Hand Mace"] = true, @@ -18495,7 +18515,7 @@ skills["ThrashingVinesPlayer"] = { duration = true, }, constantStats = { - { "awakened_forest_spawn_X_vines_per_cast_time", 2 }, + { "awakened_forest_spawn_vines_per_X%_cast_time", 50 }, { "active_skill_base_area_of_effect_radius", 25 }, { "active_skill_base_secondary_area_of_effect_radius", 10 }, { "active_skill_base_tertiary_area_of_effect_radius", 40 }, @@ -18570,7 +18590,7 @@ skills["MetaCastLightningSpellOnHitPlayer"] = { baseTypeName = "Thundergod's Wrath", icon = "Art/2DArt/SkillIcons/CastLightningSpellOnHitSkill.dds", fromItem = true, - color = 1, + color = 4, description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Lightning spells on reaching maximum Energy.", skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, castTime = 0, @@ -18956,7 +18976,7 @@ skills["TimeOfNeedPlayer"] = { icon = "Art/2DArt/SkillIcons/TimeOfNeedSkill.dds", color = 1, description = "While active, periodically invokes divine blessings to heal you and remove Curses and Elemental Ailments from you.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.AffectedByCooldownRate] = true, }, castTime = 1, qualityStats = { { "skill_time_of_need_gain_x_life", 2 }, @@ -19012,54 +19032,52 @@ skills["TimeOfNeedPlayer"] = { duration = true, }, stats = { - "base_skill_effect_duration", + "base_cooldown_modifiable_repeat_interval_ms", "skill_time_of_need_gain_x_life", "base_deal_no_damage", - }, - notMinionStat = { - "base_skill_effect_duration", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", }, levels = { - [1] = { 12000, 17, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 11900, 26, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 11800, 37, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 11700, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 11600, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 11500, 79, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 11400, 97, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 11300, 117, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 11200, 140, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 11100, 166, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 11000, 194, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 10900, 226, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 10800, 262, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 10700, 301, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 10600, 344, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 10500, 392, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 10400, 443, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 10300, 500, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 10200, 561, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 10100, 628, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 10000, 701, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 9900, 777, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 9800, 857, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 9700, 940, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 9600, 1027, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 9500, 1118, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 9400, 1212, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 9300, 1310, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 9200, 1411, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 9100, 1516, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 9000, 1625, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8900, 1737, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8800, 1853, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8700, 1972, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8600, 2095, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8500, 2222, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 2351, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8300, 2485, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8200, 2622, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8100, 2763, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 10000, 17, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 9900, 26, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 9800, 37, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9700, 49, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 9600, 63, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 9500, 79, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 9400, 97, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9300, 117, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 9200, 140, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 9100, 166, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 9000, 194, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 8900, 226, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 8800, 262, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 8700, 301, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8600, 344, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 8500, 392, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 8400, 443, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 8300, 500, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 8200, 561, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 8100, 628, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 8000, 701, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7900, 777, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7800, 857, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7700, 940, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 1027, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 7500, 1118, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7400, 1212, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7300, 1310, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 7200, 1411, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 7100, 1516, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 7000, 1625, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 6900, 1737, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 6800, 1853, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 6700, 1972, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 6600, 2095, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 6500, 2222, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 6400, 2351, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 6300, 2485, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6200, 2622, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 6100, 2763, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -19201,7 +19219,7 @@ skills["ValakosChargePlayer"] = { baseTypeName = "Valako's Charge", icon = "Art/2DArt/SkillIcons/ValakosLuckLightningCoilSkill.dds", fromItem = true, - color = 1, + color = 4, description = "While active, taking Lightning damage builds up charge on you. Reaching full charge expends all charge to Trigger this skill, creating a Chaining lightning bolt that arcs to nearby enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, [SkillType.NoAttackOrCastTime] = true, }, castTime = 0, @@ -19209,46 +19227,46 @@ skills["ValakosChargePlayer"] = { { "number_of_chains", 0.1 }, }, levels = { - [1] = { cooldown = 1, critChance = 9, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 1, critChance = 9, levelRequirement = 3, storedUses = 1, }, - [3] = { cooldown = 1, critChance = 9, levelRequirement = 6, storedUses = 1, }, - [4] = { cooldown = 1, critChance = 9, levelRequirement = 10, storedUses = 1, }, - [5] = { cooldown = 1, critChance = 9, levelRequirement = 14, storedUses = 1, }, - [6] = { cooldown = 1, critChance = 9, levelRequirement = 18, storedUses = 1, }, - [7] = { cooldown = 1, critChance = 9, levelRequirement = 22, storedUses = 1, }, - [8] = { cooldown = 1, critChance = 9, levelRequirement = 26, storedUses = 1, }, - [9] = { cooldown = 1, critChance = 9, levelRequirement = 31, storedUses = 1, }, - [10] = { cooldown = 1, critChance = 9, levelRequirement = 36, storedUses = 1, }, - [11] = { cooldown = 1, critChance = 9, levelRequirement = 41, storedUses = 1, }, - [12] = { cooldown = 1, critChance = 9, levelRequirement = 46, storedUses = 1, }, - [13] = { cooldown = 1, critChance = 9, levelRequirement = 52, storedUses = 1, }, - [14] = { cooldown = 1, critChance = 9, levelRequirement = 58, storedUses = 1, }, - [15] = { cooldown = 1, critChance = 9, levelRequirement = 64, storedUses = 1, }, - [16] = { cooldown = 1, critChance = 9, levelRequirement = 66, storedUses = 1, }, - [17] = { cooldown = 1, critChance = 9, levelRequirement = 72, storedUses = 1, }, - [18] = { cooldown = 1, critChance = 9, levelRequirement = 78, storedUses = 1, }, - [19] = { cooldown = 1, critChance = 9, levelRequirement = 84, storedUses = 1, }, - [20] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [21] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [22] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [23] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [24] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [25] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [26] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [27] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [28] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [29] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [30] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [31] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [32] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [33] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [34] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [35] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [36] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [37] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [38] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [39] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, - [40] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, }, + [1] = { cooldown = 1, critChance = 9, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 1, critChance = 9, levelRequirement = 3, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 1, critChance = 9, levelRequirement = 6, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 1, critChance = 9, levelRequirement = 10, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 1, critChance = 9, levelRequirement = 14, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 1, critChance = 9, levelRequirement = 18, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 1, critChance = 9, levelRequirement = 22, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 1, critChance = 9, levelRequirement = 26, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 1, critChance = 9, levelRequirement = 31, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 1, critChance = 9, levelRequirement = 36, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 1, critChance = 9, levelRequirement = 41, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 1, critChance = 9, levelRequirement = 46, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 1, critChance = 9, levelRequirement = 52, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 1, critChance = 9, levelRequirement = 58, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 1, critChance = 9, levelRequirement = 64, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 1, critChance = 9, levelRequirement = 66, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 1, critChance = 9, levelRequirement = 72, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 1, critChance = 9, levelRequirement = 78, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 1, critChance = 9, levelRequirement = 84, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 1, critChance = 9, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -19394,7 +19412,7 @@ skills["VolcanicFissurePlayer"] = { icon = "Art/2DArt/SkillIcons/BruteVolcanicFissure.dds", color = 1, description = "Slam the ground, creating a branching Molten Fissure that deals damage as it travels and remains for a duration. Using a different Slam on a Molten Fissure creates a spreading Aftershock.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Sustained] = true, [SkillType.CreatesFissure] = true, [SkillType.Limit] = true, [SkillType.AttackInPlace] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["One Hand Mace"] = true, ["Two Hand Mace"] = true, @@ -19525,46 +19543,46 @@ skills["VolcanoPlayer"] = { { "active_skill_base_area_of_effect_radius", 0.1 }, }, levels = { - [1] = { critChance = 5, levelRequirement = 0, cost = { Mana = 7, ManaPerMinute = 360, }, }, - [2] = { critChance = 5, levelRequirement = 3, cost = { Mana = 8, ManaPerMinute = 425, }, }, - [3] = { critChance = 5, levelRequirement = 6, cost = { Mana = 9, ManaPerMinute = 498, }, }, - [4] = { critChance = 5, levelRequirement = 10, cost = { Mana = 11, ManaPerMinute = 578, }, }, - [5] = { critChance = 5, levelRequirement = 14, cost = { Mana = 13, ManaPerMinute = 666, }, }, - [6] = { critChance = 5, levelRequirement = 18, cost = { Mana = 15, ManaPerMinute = 764, }, }, - [7] = { critChance = 5, levelRequirement = 22, cost = { Mana = 17, ManaPerMinute = 871, }, }, - [8] = { critChance = 5, levelRequirement = 26, cost = { Mana = 19, ManaPerMinute = 990, }, }, - [9] = { critChance = 5, levelRequirement = 31, cost = { Mana = 22, ManaPerMinute = 1120, }, }, - [10] = { critChance = 5, levelRequirement = 36, cost = { Mana = 25, ManaPerMinute = 1262, }, }, - [11] = { critChance = 5, levelRequirement = 41, cost = { Mana = 28, ManaPerMinute = 1419, }, }, - [12] = { critChance = 5, levelRequirement = 46, cost = { Mana = 31, ManaPerMinute = 1590, }, }, - [13] = { critChance = 5, levelRequirement = 52, cost = { Mana = 35, ManaPerMinute = 1778, }, }, - [14] = { critChance = 5, levelRequirement = 58, cost = { Mana = 39, ManaPerMinute = 1983, }, }, - [15] = { critChance = 5, levelRequirement = 64, cost = { Mana = 44, ManaPerMinute = 2208, }, }, - [16] = { critChance = 5, levelRequirement = 66, cost = { Mana = 49, ManaPerMinute = 2453, }, }, - [17] = { critChance = 5, levelRequirement = 72, cost = { Mana = 54, ManaPerMinute = 2721, }, }, - [18] = { critChance = 5, levelRequirement = 78, cost = { Mana = 60, ManaPerMinute = 3013, }, }, - [19] = { critChance = 5, levelRequirement = 84, cost = { Mana = 66, ManaPerMinute = 3332, }, }, - [20] = { critChance = 5, levelRequirement = 90, cost = { Mana = 73, ManaPerMinute = 3680, }, }, - [21] = { critChance = 5, levelRequirement = 90, cost = { Mana = 81, ManaPerMinute = 4059, }, }, - [22] = { critChance = 5, levelRequirement = 90, cost = { Mana = 89, ManaPerMinute = 4471, }, }, - [23] = { critChance = 5, levelRequirement = 90, cost = { Mana = 98, ManaPerMinute = 4920, }, }, - [24] = { critChance = 5, levelRequirement = 90, cost = { Mana = 108, ManaPerMinute = 5409, }, }, - [25] = { critChance = 5, levelRequirement = 90, cost = { Mana = 118, ManaPerMinute = 5940, }, }, - [26] = { critChance = 5, levelRequirement = 90, cost = { Mana = 130, ManaPerMinute = 6517, }, }, - [27] = { critChance = 5, levelRequirement = 90, cost = { Mana = 142, ManaPerMinute = 7144, }, }, - [28] = { critChance = 5, levelRequirement = 90, cost = { Mana = 156, ManaPerMinute = 7825, }, }, - [29] = { critChance = 5, levelRequirement = 90, cost = { Mana = 171, ManaPerMinute = 8565, }, }, - [30] = { critChance = 5, levelRequirement = 90, cost = { Mana = 187, ManaPerMinute = 9368, }, }, - [31] = { critChance = 5, levelRequirement = 90, cost = { Mana = 204, ManaPerMinute = 10239, }, }, - [32] = { critChance = 5, levelRequirement = 90, cost = { Mana = 223, ManaPerMinute = 11183, }, }, - [33] = { critChance = 5, levelRequirement = 90, cost = { Mana = 244, ManaPerMinute = 12207, }, }, - [34] = { critChance = 5, levelRequirement = 90, cost = { Mana = 266, ManaPerMinute = 13317, }, }, - [35] = { critChance = 5, levelRequirement = 90, cost = { Mana = 290, ManaPerMinute = 14520, }, }, - [36] = { critChance = 5, levelRequirement = 90, cost = { Mana = 316, ManaPerMinute = 15822, }, }, - [37] = { critChance = 5, levelRequirement = 90, cost = { Mana = 344, ManaPerMinute = 17233, }, }, - [38] = { critChance = 5, levelRequirement = 90, cost = { Mana = 375, ManaPerMinute = 18760, }, }, - [39] = { critChance = 5, levelRequirement = 90, cost = { Mana = 408, ManaPerMinute = 20413, }, }, - [40] = { critChance = 5, levelRequirement = 90, cost = { Mana = 444, ManaPerMinute = 22202, }, }, + [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 7, ManaPerMinute = 360, }, }, + [2] = { critChance = 8, levelRequirement = 3, cost = { Mana = 8, ManaPerMinute = 425, }, }, + [3] = { critChance = 8, levelRequirement = 6, cost = { Mana = 9, ManaPerMinute = 498, }, }, + [4] = { critChance = 8, levelRequirement = 10, cost = { Mana = 11, ManaPerMinute = 578, }, }, + [5] = { critChance = 8, levelRequirement = 14, cost = { Mana = 13, ManaPerMinute = 666, }, }, + [6] = { critChance = 8, levelRequirement = 18, cost = { Mana = 15, ManaPerMinute = 764, }, }, + [7] = { critChance = 8, levelRequirement = 22, cost = { Mana = 17, ManaPerMinute = 871, }, }, + [8] = { critChance = 8, levelRequirement = 26, cost = { Mana = 19, ManaPerMinute = 990, }, }, + [9] = { critChance = 8, levelRequirement = 31, cost = { Mana = 22, ManaPerMinute = 1120, }, }, + [10] = { critChance = 8, levelRequirement = 36, cost = { Mana = 25, ManaPerMinute = 1262, }, }, + [11] = { critChance = 8, levelRequirement = 41, cost = { Mana = 28, ManaPerMinute = 1419, }, }, + [12] = { critChance = 8, levelRequirement = 46, cost = { Mana = 31, ManaPerMinute = 1590, }, }, + [13] = { critChance = 8, levelRequirement = 52, cost = { Mana = 35, ManaPerMinute = 1778, }, }, + [14] = { critChance = 8, levelRequirement = 58, cost = { Mana = 39, ManaPerMinute = 1983, }, }, + [15] = { critChance = 8, levelRequirement = 64, cost = { Mana = 44, ManaPerMinute = 2208, }, }, + [16] = { critChance = 8, levelRequirement = 66, cost = { Mana = 49, ManaPerMinute = 2453, }, }, + [17] = { critChance = 8, levelRequirement = 72, cost = { Mana = 54, ManaPerMinute = 2721, }, }, + [18] = { critChance = 8, levelRequirement = 78, cost = { Mana = 60, ManaPerMinute = 3013, }, }, + [19] = { critChance = 8, levelRequirement = 84, cost = { Mana = 66, ManaPerMinute = 3332, }, }, + [20] = { critChance = 8, levelRequirement = 90, cost = { Mana = 73, ManaPerMinute = 3680, }, }, + [21] = { critChance = 8, levelRequirement = 90, cost = { Mana = 81, ManaPerMinute = 4059, }, }, + [22] = { critChance = 8, levelRequirement = 90, cost = { Mana = 89, ManaPerMinute = 4471, }, }, + [23] = { critChance = 8, levelRequirement = 90, cost = { Mana = 98, ManaPerMinute = 4920, }, }, + [24] = { critChance = 8, levelRequirement = 90, cost = { Mana = 108, ManaPerMinute = 5409, }, }, + [25] = { critChance = 8, levelRequirement = 90, cost = { Mana = 118, ManaPerMinute = 5940, }, }, + [26] = { critChance = 8, levelRequirement = 90, cost = { Mana = 130, ManaPerMinute = 6517, }, }, + [27] = { critChance = 8, levelRequirement = 90, cost = { Mana = 142, ManaPerMinute = 7144, }, }, + [28] = { critChance = 8, levelRequirement = 90, cost = { Mana = 156, ManaPerMinute = 7825, }, }, + [29] = { critChance = 8, levelRequirement = 90, cost = { Mana = 171, ManaPerMinute = 8565, }, }, + [30] = { critChance = 8, levelRequirement = 90, cost = { Mana = 187, ManaPerMinute = 9368, }, }, + [31] = { critChance = 8, levelRequirement = 90, cost = { Mana = 204, ManaPerMinute = 10239, }, }, + [32] = { critChance = 8, levelRequirement = 90, cost = { Mana = 223, ManaPerMinute = 11183, }, }, + [33] = { critChance = 8, levelRequirement = 90, cost = { Mana = 244, ManaPerMinute = 12207, }, }, + [34] = { critChance = 8, levelRequirement = 90, cost = { Mana = 266, ManaPerMinute = 13317, }, }, + [35] = { critChance = 8, levelRequirement = 90, cost = { Mana = 290, ManaPerMinute = 14520, }, }, + [36] = { critChance = 8, levelRequirement = 90, cost = { Mana = 316, ManaPerMinute = 15822, }, }, + [37] = { critChance = 8, levelRequirement = 90, cost = { Mana = 344, ManaPerMinute = 17233, }, }, + [38] = { critChance = 8, levelRequirement = 90, cost = { Mana = 375, ManaPerMinute = 18760, }, }, + [39] = { critChance = 8, levelRequirement = 90, cost = { Mana = 408, ManaPerMinute = 20413, }, }, + [40] = { critChance = 8, levelRequirement = 90, cost = { Mana = 444, ManaPerMinute = 22202, }, }, }, statSets = { [1] = { @@ -19595,6 +19613,7 @@ skills["VolcanoPlayer"] = { { "volcano_gain_stage_every_%_of_cast_time", 100 }, { "volcano_delay_between_slams_ms", 30 }, { "volcano_slam_unscalable_limit", 10 }, + { "volcano_sustains_every_%_of_cast_time", 100 }, }, stats = { "spell_minimum_base_fire_damage", @@ -19687,6 +19706,7 @@ skills["VolcanoPlayer"] = { { "volcano_gain_stage_every_%_of_cast_time", 100 }, { "volcano_delay_between_slams_ms", 30 }, { "volcano_slam_unscalable_limit", 10 }, + { "volcano_sustains_every_%_of_cast_time", 100 }, { "active_skill_base_area_of_effect_radius", -6 }, }, stats = { @@ -19759,7 +19779,7 @@ skills["ShockGrenadePlayer"] = { icon = "Art/2DArt/SkillIcons/ShockGrenade.dds", color = 1, description = "Fire a bouncing Grenade that discharges an Electrocuting Lightning blast when its fuse expires, causing all Lightning Hits against enemies to contribute to Electrocution buildup for a duration.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -20199,6 +20219,7 @@ skills["WalkingCalamityMeteorPlayer"] = { "triggerable_in_any_set", "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", + "triggered_by_walking_calamity", }, levels = { [1] = { actorLevel = 1, }, @@ -20263,6 +20284,7 @@ skills["WalkingCalamityMeteorPlayer"] = { "triggerable_in_any_set", "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", + "triggered_by_walking_calamity", }, levels = { [1] = { baseMultiplier = 1.5, actorLevel = 1, }, @@ -20376,10 +20398,7 @@ skills["WarBannerPlayer"] = { duration = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 45 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 60 }, { "active_skill_requires_X_glory", 200 }, { "active_skill_generates_mp_%_glory_per_attack_hit", 100 }, }, @@ -20599,46 +20618,46 @@ skills["WingBlastPlayer"] = { "display_statset_hide_usage_stats", }, levels = { - [1] = { baseMultiplier = 1.4, actorLevel = 1, }, - [2] = { baseMultiplier = 1.54, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.7, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.85, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 2, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 2.16, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 2.32, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 2.48, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.62, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.77, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.93, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 3.1, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 3.29, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 3.49, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 3.71, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 3.94, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 4.19, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 4.46, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 4.75, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 5.07, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 5.41, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 5.77, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 6.15, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 6.56, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 7, actorLevel = 136.875, }, - [26] = { baseMultiplier = 7.47, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 7.96, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 8.49, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 9.06, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 9.66, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 10.31, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 10.99, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 11.73, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 12.51, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 13.34, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 14.23, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 15.18, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 16.19, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 17.27, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 18.42, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.75, actorLevel = 1, }, + [2] = { baseMultiplier = 1.93, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 2.12, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 2.31, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 2.51, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 2.7, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.91, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 3.1, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 3.27, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 3.46, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 3.66, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 3.88, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 4.11, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 4.36, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 4.63, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 4.92, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 5.24, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 5.58, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 5.94, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 6.34, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 6.76, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 7.21, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 7.69, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 8.2, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 8.75, actorLevel = 136.875, }, + [26] = { baseMultiplier = 9.33, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 9.96, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 10.62, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 11.33, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 12.08, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 12.89, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 13.74, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 14.66, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 15.64, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 16.68, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 17.79, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 18.97, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 20.24, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 21.59, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 23.02, actorLevel = 288.29998779297, }, }, }, } diff --git a/src/Data/Skills/gem-icons_64_64_BC1.dds.zst b/src/Data/Skills/gem-icons_64_64_BC1.dds.zst index 80c79ff3ec..f591297328 100644 Binary files a/src/Data/Skills/gem-icons_64_64_BC1.dds.zst and b/src/Data/Skills/gem-icons_64_64_BC1.dds.zst differ diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index de5aca92c4..22818aa0ea 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -149,9 +149,10 @@ skills["GasShotSkeletonSniperMinion"] = { hidden = true, icon = "Art/2DArt/SkillIcons/WitchArcherSkeleton.dds", description = "Rain an arrow down from above, creating a cloud of flammable poisonous gas where it lands. The cloud will detonate if hit by a Detonator skill or if an Ignited enemy touches it, creating a fiery explosion.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Rain] = true, [SkillType.DamageOverTime] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Rain] = true, [SkillType.DamageOverTime] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.MirageArcherCanUse] = true, }, castTime = 1, qualityStats = { + { "dummy_stat_display_nothing", 0.001 }, }, levels = { [1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.8, cooldown = 6, levelRequirement = 0, storedUses = 1, }, @@ -270,6 +271,7 @@ skills["BoneshatterBruteMinion"] = { baseFlags = { attack = true, melee = true, + area = true, }, constantStats = { { "melee_range_+", 2 }, @@ -277,6 +279,7 @@ skills["BoneshatterBruteMinion"] = { }, stats = { "crushing_blow", + "is_area_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -1332,7 +1335,7 @@ skills["DeathFromAboveDaemonMinion"] = { name = "Death From Above", hidden = true, icon = "Art/2DArt/SkillIcons/TacticianDeathFromAboveSkillIcon.dds", - description = "Fires a flare at a target location, attaching to an enemy if it lands on one. Then fires a series of arrow volleys centred around the flare.", + description = "Fires a flare at a target location, attaching to an enemy if it lands on one, then launches a series of arrow volleys centred around the flare.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { @@ -1370,7 +1373,7 @@ skills["DeathFromAboveDaemonMinion"] = { "skill_cannot_be_electrocuted", "skill_cannot_be_knocked_back", "skill_cannot_be_stunned", - "modifiers_to_projectile_count_do_not_apply", + "base_modifiers_to_projectile_count_do_not_apply", }, levels = { [1] = { actorLevel = 1, }, @@ -1741,6 +1744,7 @@ skills["PassiveTriggeredManaWaveWaterDjinn"] = { stats = { "base_deal_no_damage", "display_statset_hide_usage_stats", + "monster_skill_triggered_by_geal", }, levels = { [1] = { actorLevel = 1, }, @@ -2349,4 +2353,133 @@ skills["HandSlamSandDjinn"] = { }, }, } +} +skills["ApplyTangmazuSwarmAuraPlayer"] = { + name = "Winged Entropy", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + description = "The Flock damages enemies around you.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AffectsPresence] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Winged Entropy", + baseEffectiveness = 7.1999998092651, + incrementalEffectiveness = 0.25, + damageIncrementalEffectiveness = 0.041499998420477, + statDescriptionScope = "apply_tangmazu_swarm_aura", + statMap = { + ["flock_damage_over_time_+%_final_per_tangmazu_raven_in_owners_flock"] = { + mod("Damage", "MORE", nil, ModFlag.Dot, 0, { type = "Multiplier", var = "MistRavenCount", actor = "parent" }), + }, + ["flock_area_of_effect_+%_final_per_tangmazu_raven_in_owners_flock"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "MistRavenCount", actor = "parent" }), + }, + }, + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "flock_damage_over_time_+%_final_per_tangmazu_raven_in_owners_flock", 5 }, + { "flock_area_of_effect_+%_final_per_tangmazu_raven_in_owners_flock", 5 }, + { "active_skill_base_area_of_effect_radius", 20 }, + }, + stats = { + "base_chaos_damage_to_deal_per_minute", + "base_physical_damage_to_deal_per_minute", + "display_statset_no_hit_damage", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { 26.666667660077, 6.6666669150194, statInterpolation = { 3, 3, }, actorLevel = 1, }, + }, + }, + } +} +skills["TangmazuMadFlightMinion"] = { + name = "Mad Flight", + hidden = true, + icon = "Art/2DArt/SkillIcons/RoostOfTheRavenKingCommand.dds", + description = "Command part of your flock to leave and crash through a set of illusory mirrors, Attacking enemies in the area between the mirrors with frequent Hits.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 5.5, cooldown = 10, levelRequirement = 0, storedUses = 1, }, + }, + statSets = { + [1] = { + label = "Mad Flight", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "tangmazu_mad_flight", + baseFlags = { + attack = true, + area = true, + duration = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 22 }, + { "active_skill_base_secondary_area_of_effect_radius", 70 }, + { "base_skill_effect_duration", 5000 }, + { "tangmazu_mad_flight_damage_tick_delay_ms", 120 }, + { "display_commanded_skill_ravens_expended", 10 }, + { "active_skill_base_physical_damage_%_to_convert_to_chaos", 70 }, + }, + stats = { + "is_commandable_skill", + "is_area_damage", + "skill_does_not_pathfind", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } } \ No newline at end of file diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index 5530836910..09905431e9 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -12,7 +12,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.", + 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, @@ -72,7 +72,6 @@ skills["AcidicConcoctionPlayer"] = { baseFlags = { attack = true, projectile = true, - unarmed = true, area = true, }, constantStats = { @@ -235,11 +234,11 @@ skills["AlignFatePlayer"] = { icon = "Art/2DArt/SkillIcons/DruidOracleSpellfluxSkill.dds", fromTree = true, color = 4, - description = "While active, visages of yourself from alternate timelines will occasionally appear and cast one of your Spells from your first valid Weapon Set. Until the next visage appears, your next cast of the same Spell aligns your fate, Empowering that Spell. Visages can only cast non-Channelling, non-Buff Spells you could cast that have no cooldown.", - skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.ReserveInAllSets] = true, }, + description = "While active, visages of yourself from alternate timelines will occasionally appear and cast one of your Spells from your first valid Weapon Set. Until the next visage appears, your next cast of the same Spell aligns your fate, Empowering that Spell. Visages can only cast damaging, non-Channelling, non-Buff Spells you could cast that have no cooldown.", + skillTypes = { [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.ReserveInAllSets] = true, [SkillType.AffectedByCooldownRate] = true, }, castTime = 1, qualityStats = { - { "spellflux_frequency_+%", 1 }, + { "spellflux_frequency_+%_final", 1 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -287,19 +286,20 @@ skills["AlignFatePlayer"] = { [1] = { label = "Align Fate", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "align_fate", baseFlags = { }, constantStats = { - { "spellflux_frequency_+%_per_socketed_valid_spell", 25 }, + { "spellflux_frequency_+%_final_per_socketed_valid_spell", 25 }, { "spellflux_spell_damage_+%_final_if_matching_flux_cast", 30 }, { "skill_desired_amount_override", 1 }, }, stats = { - "spellflux_base_delay_between_fluxes_ms", + "base_cooldown_modifiable_repeat_interval_ms", "base_deal_no_damage", "hide_minion_frame", "skill_does_not_pathfind", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", }, levels = { [1] = { 12000, statInterpolation = { 1, }, actorLevel = 1, }, @@ -358,7 +358,7 @@ skills["AncestralSpiritsPlayer"] = { "AncestralSpiritWarhorn", }, color = 4, - description = "Each of your Totems will summon an Ancestral Spirit Minion to fight for you. If the Totem that summoned the Minion dies then the Ancestral Spirit will too.", + description = "This skill is Triggered each time you summon a Totem, summoning an Ancestral Spirit Minion to fight for you. If the Totem dies then the Ancestral Spirit triggered by it's summoning will die too.", skillTypes = { [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.CreatesMinion] = true, [SkillType.Triggered] = true, [SkillType.AttackInPlace] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chains] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.RangedAttack] = true, [SkillType.ProjectilesFromUser] = true, }, castTime = 0, @@ -416,7 +416,7 @@ skills["AncestralSpiritsPlayer"] = { ["minion_1%_damage_+%_per_X_player_strength"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), div = 3, }, @@ -427,12 +427,13 @@ skills["AncestralSpiritsPlayer"] = { }, constantStats = { { "minion_1%_damage_+%_per_X_player_strength", 1 }, - { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, + { "active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, }, stats = { "display_modifiers_to_totem_life_effect_these_minions", "triggerable_in_any_set", "base_deal_no_damage", + "skill_triggered_when_summoning_totem", }, levels = { [1] = { actorLevel = 1, }, @@ -479,145 +480,290 @@ skills["AncestralSpiritsPlayer"] = { }, } } -skills["BleedingConcoctionPlayer"] = { - name = "Bleeding Concoction", - baseTypeName = "Bleeding Concoction", - icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionBleedSkill.dds", - fromTree = true, +skills["AnimusExchangePlayer"] = { + name = "Animus Exchange", + baseTypeName = "Animus Exchange", + icon = "Art/2DArt/SkillIcons/ExpeditionAnimusExhange.dds", 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.", - 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, - }, - castTime = 1, + description = "Sacrifice a portion of your Life to recover Runic Ward. Runic Ward recovered by this Skill can Overflow.", + skillTypes = { [SkillType.Spell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, }, + castTime = 0.6, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.2 }, + { "base_cooldown_speed_+%", 1 }, }, levels = { - [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 5, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 5, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 5, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 5, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 5, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 5, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 5, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 5, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 5, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 5, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 5, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 5, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 5, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 5, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 5, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 5, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 5, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { cooldown = 4, levelRequirement = 0, storedUses = 1, cost = { Mana = 15, }, }, + [2] = { cooldown = 4, levelRequirement = 3, storedUses = 1, cost = { Mana = 17, }, }, + [3] = { cooldown = 4, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, + [4] = { cooldown = 4, levelRequirement = 10, storedUses = 1, cost = { Mana = 23, }, }, + [5] = { cooldown = 4, levelRequirement = 14, storedUses = 1, cost = { Mana = 27, }, }, + [6] = { cooldown = 4, levelRequirement = 18, storedUses = 1, cost = { Mana = 30, }, }, + [7] = { cooldown = 4, levelRequirement = 22, storedUses = 1, cost = { Mana = 34, }, }, + [8] = { cooldown = 4, levelRequirement = 26, storedUses = 1, cost = { Mana = 37, }, }, + [9] = { cooldown = 4, levelRequirement = 31, storedUses = 1, cost = { Mana = 41, }, }, + [10] = { cooldown = 4, levelRequirement = 36, storedUses = 1, cost = { Mana = 45, }, }, + [11] = { cooldown = 4, levelRequirement = 41, storedUses = 1, cost = { Mana = 50, }, }, + [12] = { cooldown = 4, levelRequirement = 46, storedUses = 1, cost = { Mana = 55, }, }, + [13] = { cooldown = 4, levelRequirement = 52, storedUses = 1, cost = { Mana = 59, }, }, + [14] = { cooldown = 4, levelRequirement = 58, storedUses = 1, cost = { Mana = 64, }, }, + [15] = { cooldown = 4, levelRequirement = 64, storedUses = 1, cost = { Mana = 70, }, }, + [16] = { cooldown = 4, levelRequirement = 66, storedUses = 1, cost = { Mana = 75, }, }, + [17] = { cooldown = 4, levelRequirement = 72, storedUses = 1, cost = { Mana = 81, }, }, + [18] = { cooldown = 4, levelRequirement = 78, storedUses = 1, cost = { Mana = 88, }, }, + [19] = { cooldown = 4, levelRequirement = 84, storedUses = 1, cost = { Mana = 94, }, }, + [20] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 101, }, }, + [21] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 108, }, }, + [22] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 115, }, }, + [23] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 123, }, }, + [24] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 131, }, }, + [25] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 140, }, }, + [26] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 149, }, }, + [27] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 158, }, }, + [28] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 168, }, }, + [29] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 178, }, }, + [30] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 189, }, }, + [31] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 200, }, }, + [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 211, }, }, + [33] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 224, }, }, + [34] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 236, }, }, + [35] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 249, }, }, + [36] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 263, }, }, + [37] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 278, }, }, + [38] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 293, }, }, + [39] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 309, }, }, + [40] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 325, }, }, }, statSets = { [1] = { - label = "Bleeding Concoction", - baseEffectiveness = 4.1999998092651, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "bleeding_concoction", + label = "Animus Exchange", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "animus_exchange", baseFlags = { - attack = true, - projectile = true, - unarmed = true, - area = true, }, constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "throw_flask_effects_type", 3 }, + { "animus_exchange_gain_%_maximum_life_spent_as_ward", 70 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "base_chance_to_inflict_bleeding_%", 100 }, - { "base_aggravate_bleeding_on_attack_hit_chance_%", 100 }, }, stats = { - "main_hand_weapon_minimum_physical_damage", - "main_hand_weapon_maximum_physical_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", + "animus_exchange_spend_up_to_X_life", + "base_deal_no_damage", "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", }, - notMinionStat = { - "main_hand_weapon_minimum_physical_damage", - "main_hand_weapon_maximum_physical_damage", + levels = { + [1] = { 25, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 66, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 107, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 147, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 188, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 229, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 270, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 311, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 351, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 392, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 433, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 474, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 515, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 555, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 596, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 637, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 678, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 719, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 759, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 800, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 822, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 844, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 866, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 888, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 910, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 932, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 954, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 976, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 998, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 1020, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 1044, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 1066, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 1088, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 1110, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 1132, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1154, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1176, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1198, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 1220, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 1242, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaAnimusSplintersPlayer"] = { + name = "Animus Splinters", + baseTypeName = "Animus Splinters", + icon = "Art/2DArt/SkillIcons/ExpeditionFalseLife.dds", + color = 4, + description = "Expend a large amount of Runic Ward to instantly create a short-lived copy of yourself that uses a Socketed Skill once, then vanishes. This Skill's cost is equal to the total cost of Socketed Skills. The copy cannot perform Channelled, Remote, Cooldown or Conditional Skills, or summon Minions.", + skillTypes = { [SkillType.Meta] = true, [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, }, + castTime = 0, + qualityStats = { + { "base_skill_cost_efficiency_+%", 1 }, + }, + levels = { + [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [2] = { cooldown = 8, levelRequirement = 3, storedUses = 1, cost = { Ward = 0, }, }, + [3] = { cooldown = 8, levelRequirement = 6, storedUses = 1, cost = { Ward = 0, }, }, + [4] = { cooldown = 8, levelRequirement = 10, storedUses = 1, cost = { Ward = 0, }, }, + [5] = { cooldown = 8, levelRequirement = 14, storedUses = 1, cost = { Ward = 0, }, }, + [6] = { cooldown = 8, levelRequirement = 18, storedUses = 1, cost = { Ward = 0, }, }, + [7] = { cooldown = 8, levelRequirement = 22, storedUses = 1, cost = { Ward = 0, }, }, + [8] = { cooldown = 8, levelRequirement = 26, storedUses = 1, cost = { Ward = 0, }, }, + [9] = { cooldown = 8, levelRequirement = 31, storedUses = 1, cost = { Ward = 0, }, }, + [10] = { cooldown = 8, levelRequirement = 36, storedUses = 1, cost = { Ward = 0, }, }, + [11] = { cooldown = 8, levelRequirement = 41, storedUses = 1, cost = { Ward = 0, }, }, + [12] = { cooldown = 8, levelRequirement = 46, storedUses = 1, cost = { Ward = 0, }, }, + [13] = { cooldown = 8, levelRequirement = 52, storedUses = 1, cost = { Ward = 0, }, }, + [14] = { cooldown = 8, levelRequirement = 58, storedUses = 1, cost = { Ward = 0, }, }, + [15] = { cooldown = 8, levelRequirement = 64, storedUses = 1, cost = { Ward = 0, }, }, + [16] = { cooldown = 8, levelRequirement = 66, storedUses = 1, cost = { Ward = 0, }, }, + [17] = { cooldown = 8, levelRequirement = 72, storedUses = 1, cost = { Ward = 0, }, }, + [18] = { cooldown = 8, levelRequirement = 78, storedUses = 1, cost = { Ward = 0, }, }, + [19] = { cooldown = 8, levelRequirement = 84, storedUses = 1, cost = { Ward = 0, }, }, + [20] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [21] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [22] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [23] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [24] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [25] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [26] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [27] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [28] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [29] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [30] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [31] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [32] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [33] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [34] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [35] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [36] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [37] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [38] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [39] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + [40] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Ward = 0, }, }, + }, + statSets = { + [1] = { + label = "Animus Splinters", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 60 }, + { "base_skill_ward_cost_as_%_of_life_and_mana_cost", 100 }, + }, + stats = { + "meta_skill_base_costs_equals_%_total_base_costs_from_all_socketed_skills", + "usable_while_shapeshifted", + "base_deal_no_damage", + "hide_minion_frame", }, levels = { - [1] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 19, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 29, 55, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 41, 75, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 52, 97, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 65, 120, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 78, 145, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 92, 171, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 106, 198, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 122, 226, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 138, 256, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 154, 287, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 172, 319, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 190, 353, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 209, 388, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 249, 462, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 270, 501, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 291, 541, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 314, 582, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 337, 625, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 360, 669, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 385, 715, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 410, 761, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 436, 810, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 462, 859, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 490, 910, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 518, 962, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 547, 1015, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 576, 1070, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 606, 1126, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 637, 1183, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 668, 1241, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 701, 1301, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 734, 1362, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 767, 1425, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 802, 1489, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 837, 1554, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 872, 1620, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 909, 1688, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 200, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 198, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 195, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 193, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 190, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 188, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 185, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 183, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 180, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 178, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 175, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 173, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 170, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 168, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 165, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 163, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 160, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 158, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 155, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 153, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 150, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 148, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 145, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 143, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 140, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 138, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 135, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 133, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 130, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 128, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 125, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 123, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 120, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 118, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 115, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 113, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 110, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 108, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 105, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 103, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } +skills["SupportAnimusSplintersPlayer"] = { + name = "SupportAnimusSplintersPlayer", + hidden = true, + support = true, + requireSkillTypes = { }, + addSkillTypes = { SkillType.UsedByClone, SkillType.UsedByProxy, SkillType.SupportedByAnimusSplinters, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.Cooldown, SkillType.Meta, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByAnimusSplinters, SkillType.NOT, SkillType.AND, }, + ignoreMinionTypes = true, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, +} skills["ApocalypsePlayer"] = { name = "Apocalypse", baseTypeName = "Apocalypse", @@ -625,7 +771,7 @@ skills["ApocalypsePlayer"] = { fromTree = true, color = 4, description = "Build Glory by Hitting enemies with Elemental damage. When you have maximum Glory, you may become the walking Apocalypse for a duration, Triggering one of multiple powerful Elemental Skills at an interval while this Buff lasts.", - skillTypes = { [SkillType.Triggers] = true, [SkillType.Damage] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, }, + skillTypes = { [SkillType.Triggers] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.HasUsageCondition] = true, }, castTime = 1, qualityStats = { { "unleash_the_elements_trigger_frequency_+%", 0.75 }, @@ -692,6 +838,7 @@ skills["ApocalypsePlayer"] = { }, stats = { "can_perform_skill_while_moving", + "base_deal_no_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -749,46 +896,46 @@ skills["ApocalypseColdPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 12, levelRequirement = 0, }, - [2] = { critChance = 12, levelRequirement = 0, }, - [3] = { critChance = 12, levelRequirement = 0, }, - [4] = { critChance = 12, levelRequirement = 0, }, - [5] = { critChance = 12, levelRequirement = 0, }, - [6] = { critChance = 12, levelRequirement = 0, }, - [7] = { critChance = 12, levelRequirement = 0, }, - [8] = { critChance = 12, levelRequirement = 0, }, - [9] = { critChance = 12, levelRequirement = 0, }, - [10] = { critChance = 12, levelRequirement = 0, }, - [11] = { critChance = 12, levelRequirement = 0, }, - [12] = { critChance = 12, levelRequirement = 0, }, - [13] = { critChance = 12, levelRequirement = 0, }, - [14] = { critChance = 12, levelRequirement = 0, }, - [15] = { critChance = 12, levelRequirement = 0, }, - [16] = { critChance = 12, levelRequirement = 0, }, - [17] = { critChance = 12, levelRequirement = 0, }, - [18] = { critChance = 12, levelRequirement = 0, }, - [19] = { critChance = 12, levelRequirement = 0, }, - [20] = { critChance = 12, levelRequirement = 0, }, - [21] = { critChance = 12, levelRequirement = 0, }, - [22] = { critChance = 12, levelRequirement = 0, }, - [23] = { critChance = 12, levelRequirement = 0, }, - [24] = { critChance = 12, levelRequirement = 0, }, - [25] = { critChance = 12, levelRequirement = 0, }, - [26] = { critChance = 12, levelRequirement = 0, }, - [27] = { critChance = 12, levelRequirement = 0, }, - [28] = { critChance = 12, levelRequirement = 0, }, - [29] = { critChance = 12, levelRequirement = 0, }, - [30] = { critChance = 12, levelRequirement = 0, }, - [31] = { critChance = 12, levelRequirement = 0, }, - [32] = { critChance = 12, levelRequirement = 0, }, - [33] = { critChance = 12, levelRequirement = 0, }, - [34] = { critChance = 12, levelRequirement = 0, }, - [35] = { critChance = 12, levelRequirement = 0, }, - [36] = { critChance = 12, levelRequirement = 0, }, - [37] = { critChance = 12, levelRequirement = 0, }, - [38] = { critChance = 12, levelRequirement = 0, }, - [39] = { critChance = 12, levelRequirement = 0, }, - [40] = { critChance = 12, levelRequirement = 0, }, + [1] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 12, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -877,46 +1024,46 @@ skills["ApocalypseFirePlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 7, levelRequirement = 0, }, - [2] = { critChance = 7, levelRequirement = 0, }, - [3] = { critChance = 7, levelRequirement = 0, }, - [4] = { critChance = 7, levelRequirement = 0, }, - [5] = { critChance = 7, levelRequirement = 0, }, - [6] = { critChance = 7, levelRequirement = 0, }, - [7] = { critChance = 7, levelRequirement = 0, }, - [8] = { critChance = 7, levelRequirement = 0, }, - [9] = { critChance = 7, levelRequirement = 0, }, - [10] = { critChance = 7, levelRequirement = 0, }, - [11] = { critChance = 7, levelRequirement = 0, }, - [12] = { critChance = 7, levelRequirement = 0, }, - [13] = { critChance = 7, levelRequirement = 0, }, - [14] = { critChance = 7, levelRequirement = 0, }, - [15] = { critChance = 7, levelRequirement = 0, }, - [16] = { critChance = 7, levelRequirement = 0, }, - [17] = { critChance = 7, levelRequirement = 0, }, - [18] = { critChance = 7, levelRequirement = 0, }, - [19] = { critChance = 7, levelRequirement = 0, }, - [20] = { critChance = 7, levelRequirement = 0, }, - [21] = { critChance = 7, levelRequirement = 0, }, - [22] = { critChance = 7, levelRequirement = 0, }, - [23] = { critChance = 7, levelRequirement = 0, }, - [24] = { critChance = 7, levelRequirement = 0, }, - [25] = { critChance = 7, levelRequirement = 0, }, - [26] = { critChance = 7, levelRequirement = 0, }, - [27] = { critChance = 7, levelRequirement = 0, }, - [28] = { critChance = 7, levelRequirement = 0, }, - [29] = { critChance = 7, levelRequirement = 0, }, - [30] = { critChance = 7, levelRequirement = 0, }, - [31] = { critChance = 7, levelRequirement = 0, }, - [32] = { critChance = 7, levelRequirement = 0, }, - [33] = { critChance = 7, levelRequirement = 0, }, - [34] = { critChance = 7, levelRequirement = 0, }, - [35] = { critChance = 7, levelRequirement = 0, }, - [36] = { critChance = 7, levelRequirement = 0, }, - [37] = { critChance = 7, levelRequirement = 0, }, - [38] = { critChance = 7, levelRequirement = 0, }, - [39] = { critChance = 7, levelRequirement = 0, }, - [40] = { critChance = 7, levelRequirement = 0, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1002,46 +1149,46 @@ skills["ApocalypseLightningPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 10, levelRequirement = 0, }, - [2] = { critChance = 10, levelRequirement = 0, }, - [3] = { critChance = 10, levelRequirement = 0, }, - [4] = { critChance = 10, levelRequirement = 0, }, - [5] = { critChance = 10, levelRequirement = 0, }, - [6] = { critChance = 10, levelRequirement = 0, }, - [7] = { critChance = 10, levelRequirement = 0, }, - [8] = { critChance = 10, levelRequirement = 0, }, - [9] = { critChance = 10, levelRequirement = 0, }, - [10] = { critChance = 10, levelRequirement = 0, }, - [11] = { critChance = 10, levelRequirement = 0, }, - [12] = { critChance = 10, levelRequirement = 0, }, - [13] = { critChance = 10, levelRequirement = 0, }, - [14] = { critChance = 10, levelRequirement = 0, }, - [15] = { critChance = 10, levelRequirement = 0, }, - [16] = { critChance = 10, levelRequirement = 0, }, - [17] = { critChance = 10, levelRequirement = 0, }, - [18] = { critChance = 10, levelRequirement = 0, }, - [19] = { critChance = 10, levelRequirement = 0, }, - [20] = { critChance = 10, levelRequirement = 0, }, - [21] = { critChance = 10, levelRequirement = 0, }, - [22] = { critChance = 10, levelRequirement = 0, }, - [23] = { critChance = 10, levelRequirement = 0, }, - [24] = { critChance = 10, levelRequirement = 0, }, - [25] = { critChance = 10, levelRequirement = 0, }, - [26] = { critChance = 10, levelRequirement = 0, }, - [27] = { critChance = 10, levelRequirement = 0, }, - [28] = { critChance = 10, levelRequirement = 0, }, - [29] = { critChance = 10, levelRequirement = 0, }, - [30] = { critChance = 10, levelRequirement = 0, }, - [31] = { critChance = 10, levelRequirement = 0, }, - [32] = { critChance = 10, levelRequirement = 0, }, - [33] = { critChance = 10, levelRequirement = 0, }, - [34] = { critChance = 10, levelRequirement = 0, }, - [35] = { critChance = 10, levelRequirement = 0, }, - [36] = { critChance = 10, levelRequirement = 0, }, - [37] = { critChance = 10, levelRequirement = 0, }, - [38] = { critChance = 10, levelRequirement = 0, }, - [39] = { critChance = 10, levelRequirement = 0, }, - [40] = { critChance = 10, levelRequirement = 0, }, + [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1186,17 +1333,65 @@ skills["ApocalypseLightningPlayer"] = { }, } } -skills["BloodBoilPlayer"] = { - name = "Blood Boil", - baseTypeName = "Blood Boil", - icon = "Art/2DArt/SkillIcons/PrimalistBloodBoilsSkillIcon.dds", +skills["ArbitersReachWardPlayer"] = { + name = "Arbiter's Reach", + description = "Supports Persistent Buff Skills, causing you periodically grant Guard to allies in your Presence while the Skill is active.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { }, + gemFamily = { "ArbitersReach",}, + isLineage = true, + flavourText = {"\"They designed our salvation. No longer shall", "our people's grief be in vain. From their hands,", "perfection is wrought. Within His reach, we are safe.\"", }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Arbiter's Reach", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_mothers_ward_base_duration_ms", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["ArchonOfChayulaPlayer"] = { + name = "Archon of Chayula", + baseTypeName = "Archon of Chayula", + icon = "Art/2DArt/SkillIcons/AcolyteOfChayulaSpecialNodeSkill.dds", fromTree = true, color = 4, - description = "Enemies in your Presence accumulate blood boils periodically. When they die, the boils pop applying Corrupted Blood to enemies near them.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0, + description = "Build Glory by dealing Chaos damage to enemies. When you have maximum Glory, you can entreat the Dreamer to inhabit you, briefly becoming his Archon.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, [SkillType.UsableWhileMoving] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, qualityStats = { - { "base_skill_effect_duration", 75 }, + { "archon_of_chayula_physical_and_chaos_damage_+%_final", 0.25 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -1242,147 +1437,166 @@ skills["BloodBoilPlayer"] = { }, statSets = { [1] = { - label = "Blood Boil", + label = "Archon of Chayula", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "blood_boil", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { - { "active_skill_base_area_of_effect_radius", 15 }, - { "blood_boil_%_health_as_corrupted_blood_damage_per_minute", 120 }, - { "base_skill_effect_duration", 5000 }, - { "blood_boil_explosion_area_+%_final_per_boil", 20 }, - { "blood_boil_explosion_delay_ms", 1000 }, + { "active_skill_requires_X_glory", 100 }, + { "active_skill_generates_mp_%_glory_per_chaos_hit", 100 }, + { "archon_of_chayula_spawn_chaos_tornado_interval_ms", 3000 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "archon_of_chayula_physical_and_chaos_damage_+%_final", 20 }, + { "archon_of_chayula_withered_on_hit_for_4_seconds_%_chance", 25 }, }, stats = { - "blood_boil_application_interval_ms", - "quality_display_base_skill_effect_duration_is_gem", + "can_perform_skill_while_moving", + "base_deal_no_damage", }, levels = { - [1] = { 2000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 1975, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1950, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1925, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 1900, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 1875, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 1850, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 1825, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 1800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 1775, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 1750, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 1725, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 1700, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 1675, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 1650, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 1625, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 1600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 1575, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 1550, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 1525, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 1500, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 1475, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 1450, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 1425, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 1400, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 1375, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 1350, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 1325, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 1300, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 1275, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 1263, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 1250, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 1238, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 1225, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 1213, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 1200, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 1188, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 1175, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 1163, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 1150, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["MeleeBowPlayer"] = { - name = "Bow Shot", - baseTypeName = "Bow Shot", - icon = "Art/2DArt/SkillIcons/BowDefaultSkill.dds", - fromItem = true, - color = 4, - description = "Fire an arrow with your Bow.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, }, +skills["ArchonOfChayulaTornadoPlayer"] = { + name = "Chayula's Will", + hidden = true, + icon = "Art/2DArt/SkillIcons/AcolyteOfChayulaSpecialNodeSkill.dds", + fromTree = true, + description = "Conjure a Chaos tornado that chases down and Slows enemies.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Storm] = true, [SkillType.Chaos] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, }, weaponTypes = { ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, }, - castTime = 1, + castTime = 0, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { baseMultiplier = 0.45, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.49, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.54, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.6, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.64, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.7, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.84, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.89, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.94, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.06, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.12, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.19, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.27, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.35, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.43, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.63, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.74, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.85, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.98, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.25, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.56, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.73, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.91, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 3.11, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.31, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.53, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.77, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 4.02, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 4.29, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 4.57, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 4.88, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 5.2, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 5.55, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 5.92, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Bow Shot", + label = "Chayula's Will", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "archon_of_chayula_tornado", baseFlags = { attack = true, - projectile = true, + duration = true, + area = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 8000 }, + { "active_skill_base_area_of_effect_radius", 28 }, + { "tornado_movement_speed_+%_final", -50 }, + { "tornado_slow_%_at_max_range", 30 }, + { "archon_chayula_storm_movement_speed", 20 }, + { "archon_of_chayula_tornado_attack_interval_ms", 200 }, + { "active_skill_base_secondary_area_of_effect_radius", 80 }, + { "storm_begin_slowing_down_when_at_X_units_from_target", 25 }, + { "storm_end_slowing_down_when_at_X_units_from_target", 10 }, + { "storm_min_slow_down_%_when_close_to_target", 20 }, + { "active_skill_base_physical_damage_%_to_convert_to_chaos", 70 }, }, stats = { - "base_is_projectile", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "skill_can_fire_arrows", - "can_perform_skill_while_moving", - "should_use_additive_aiming_animation", - "has_modular_projectiles_enabled", - "precise_cursor_targeting_uses_contact_point_height_offset", + "is_area_damage", + "secondary_skill_triggered_by_primary_skill_of_gem", + "display_statset_hide_usage_stats", + "base_skill_show_average_damage_instead_of_dps", }, levels = { [1] = { actorLevel = 1, }, @@ -1429,136 +1643,140 @@ skills["MeleeBowPlayer"] = { }, } } -skills["ExplodingPoisonToadPlayer"] = { - name = "Bursting Fen Toad", - baseTypeName = "Bursting Fen Toad", - icon = "Art/2DArt/SkillIcons/MurkshaftToads.dds", +skills["AzmerianSwarmPlayer"] = { + name = "Azmerian Swarms", + baseTypeName = "Azmerian Swarms", + icon = "Art/2DArt/SkillIcons/FluttermothSkillIcon.dds", fromItem = true, color = 4, - description = "A Poisonous Toad leaps towards enemies and explodes, dealing damage in an area and inflicting Poison.", - 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, + 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.", + 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, }, + castTime = 0, qualityStats = { - { "trigger_toad_spawn_chance_%", 0.5 }, + { "max_azmerian_swarms", 0.1 }, }, levels = { - [1] = { baseMultiplier = 2.25, critChance = 5, levelRequirement = 0, }, - [2] = { baseMultiplier = 2.48, critChance = 5, levelRequirement = 3, }, - [3] = { baseMultiplier = 2.72, critChance = 5, levelRequirement = 6, }, - [4] = { baseMultiplier = 2.97, critChance = 5, levelRequirement = 10, }, - [5] = { baseMultiplier = 3.2, critChance = 5, levelRequirement = 14, }, - [6] = { baseMultiplier = 3.45, critChance = 5, levelRequirement = 18, }, - [7] = { baseMultiplier = 3.69, critChance = 5, levelRequirement = 22, }, - [8] = { baseMultiplier = 3.91, critChance = 5, levelRequirement = 26, }, - [9] = { baseMultiplier = 4.1, critChance = 5, levelRequirement = 31, }, - [10] = { baseMultiplier = 4.31, critChance = 5, levelRequirement = 36, }, - [11] = { baseMultiplier = 4.52, critChance = 5, levelRequirement = 41, }, - [12] = { baseMultiplier = 4.75, critChance = 5, levelRequirement = 46, }, - [13] = { baseMultiplier = 4.99, critChance = 5, levelRequirement = 52, }, - [14] = { baseMultiplier = 5.24, critChance = 5, levelRequirement = 58, }, - [15] = { baseMultiplier = 5.5, critChance = 5, levelRequirement = 64, }, - [16] = { baseMultiplier = 5.77, critChance = 5, levelRequirement = 66, }, - [17] = { baseMultiplier = 6.06, critChance = 5, levelRequirement = 72, }, - [18] = { baseMultiplier = 6.37, critChance = 5, levelRequirement = 78, }, - [19] = { baseMultiplier = 6.68, critChance = 5, levelRequirement = 84, }, - [20] = { baseMultiplier = 7.02, critChance = 5, levelRequirement = 90, }, - [21] = { baseMultiplier = 7.37, critChance = 5, levelRequirement = 90, }, - [22] = { baseMultiplier = 7.74, critChance = 5, levelRequirement = 90, }, - [23] = { baseMultiplier = 8.12, critChance = 5, levelRequirement = 90, }, - [24] = { baseMultiplier = 8.53, critChance = 5, levelRequirement = 90, }, - [25] = { baseMultiplier = 8.96, critChance = 5, levelRequirement = 90, }, - [26] = { baseMultiplier = 9.4, critChance = 5, levelRequirement = 90, }, - [27] = { baseMultiplier = 9.87, critChance = 5, levelRequirement = 90, }, - [28] = { baseMultiplier = 10.37, critChance = 5, levelRequirement = 90, }, - [29] = { baseMultiplier = 10.89, critChance = 5, levelRequirement = 90, }, - [30] = { baseMultiplier = 11.43, critChance = 5, levelRequirement = 90, }, - [31] = { baseMultiplier = 12, critChance = 5, levelRequirement = 90, }, - [32] = { baseMultiplier = 12.6, critChance = 5, levelRequirement = 90, }, - [33] = { baseMultiplier = 13.23, critChance = 5, levelRequirement = 90, }, - [34] = { baseMultiplier = 13.89, critChance = 5, levelRequirement = 90, }, - [35] = { baseMultiplier = 14.59, critChance = 5, levelRequirement = 90, }, - [36] = { baseMultiplier = 15.32, critChance = 5, levelRequirement = 90, }, - [37] = { baseMultiplier = 16.08, critChance = 5, levelRequirement = 90, }, - [38] = { baseMultiplier = 16.89, critChance = 5, levelRequirement = 90, }, - [39] = { baseMultiplier = 17.73, critChance = 5, levelRequirement = 90, }, - [40] = { baseMultiplier = 18.62, critChance = 5, levelRequirement = 90, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Bursting Fen Toad", - baseEffectiveness = 2, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "exploding_poison_toad", + label = "Azmerian Swarms", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "azmerian_swarm_statset_0", baseFlags = { - area = true, - attack = true, }, constantStats = { - { "trigger_toad_spawn_chance_%", 25 }, - { "base_chance_to_poison_on_hit_%", 100 }, - { "active_skill_base_area_of_effect_radius", 25 }, + { "max_azmerian_swarms", 8 }, + { "base_skill_effect_duration", 10000 }, + { "skill_grants_%_chance_to_summon_azmerian_swarm_on_kill_affected_by_elemental_ailment", 100 }, + { "skill_grants_%_chance_to_summon_azmerian_swarm_on_hitting_unique_or_rare_enemy_affected_by_elemental_ailment", 10 }, + { "skill_desired_amount_override", 1 }, + { "non_skill_base_physical_damage_%_to_convert_to_random_element", 100 }, + { "%_chance_to_apply_hounded_by_wisps_on_hit", 100 }, + { "active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity", 5 }, }, stats = { - "attack_minimum_added_physical_damage", - "attack_maximum_added_physical_damage", - "is_area_damage", + "minion_damage_+%_final_per_different_elemental_ailment_on_target", + "base_deal_no_damage", + "display_statset_no_hit_damage", }, levels = { - [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 12, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 12, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 14, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 16, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 16, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 18, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 20, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 20, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 22, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 22, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 24, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 24, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 26, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 26, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 28, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 28, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 30, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 30, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 32, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 32, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 34, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 34, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 36, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 36, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 38, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 38, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 40, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 40, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 42, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 42, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 44, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 44, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 46, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 46, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 48, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 48, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 50, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 50, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["MetaDeadeyeMarksPlayer"] = { - name = "Called Shots", - baseTypeName = "Called Shots", - icon = "Art/2DArt/SkillIcons/DeadeyeMarkMetagemSkill.dds", - fromTree = true, +skills["SummonAzmerianWolfPlayer"] = { + name = "Azmerian Wolf", + baseTypeName = "Azmerian Wolf", + icon = "Art/2DArt/SkillIcons/ThePackLeaderBaseMinionSkill.dds", + fromItem = true, color = 4, - description = "Applies a socketed Mark Skill to a nearby unmarked Enemy every few seconds. Consuming socketed Marks will cause them to be reapplied to an unmarked Enemy. This reapplication can happen at most once every few seconds.", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Triggers] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.AttackInPlace] = true, }, + description = "Summons an ancient Reviving Azmerian Wolf that can howl, calling to spirits convening an Eternal Hunt on Command. It Maims when attacking foes, and can lunge to bite and inflict Bleeding, or howl to inspire nearby allies.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, [SkillType.CommandableMinion] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.2 }, + { "active_skill_minion_life_+%_final", 1 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -1604,19 +1822,19 @@ skills["MetaDeadeyeMarksPlayer"] = { }, statSets = { [1] = { - label = "Called Shots", + label = "Minion Info", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "meta_deadeye_marks", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { - { "active_skill_base_area_of_effect_radius", 100 }, - { "deadeye_meta_marks_middle_band_is_%_of_primary_radius", 50 }, - { "deadeye_meta_marks_close_band_is_%_of_primary_radius", 30 }, - { "deadeye_meta_marks_number_of_enemies_to_mark", 1 }, + { "display_minion_monster_type", 2 }, + { "minion_base_resummon_time_ms", 12000 }, { "skill_desired_amount_override", 1 }, }, stats = { + "is_resummoning_minion", + "display_statset_no_hit_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -1663,70 +1881,76 @@ skills["MetaDeadeyeMarksPlayer"] = { }, } } -skills["SupportMetaDeadeyeMarksPlayer"] = { - name = "SupportMetaDeadeyeMarksPlayer", +skills["CommandPackleaderPlayer"] = { + name = "Command: {0} ", hidden = true, - fromTree = true, - support = true, - requireSkillTypes = { SkillType.Mark, }, - addSkillTypes = { }, - excludeSkillTypes = { }, - qualityStats = { - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + fromItem = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 9, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 11, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 13, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 15, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 17, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 20, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 22, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 25, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 29, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 32, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 36, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 46, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 51, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 56, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 63, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 69, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 77, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 85, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 94, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 103, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 114, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 125, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 137, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 151, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 165, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 181, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 198, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 217, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 237, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 259, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 283, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 308, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 336, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 366, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 399, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 435, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 473, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 514, }, }, }, statSets = { [1] = { - label = "SupportMetaDeadeyeMarksPlayer", + label = "Command", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "meta_gem_stat_descriptions", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { - { "your_marks_spread_to_a_nearby_enemies_on_consume_%_chance", 100 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "command_minion_marker_additional_time_ms", 300 }, }, stats = { - "mark_supported_by_deadeye_meta_gem", + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "command_skill_no_command_marker", }, levels = { [1] = { actorLevel = 1, }, @@ -1773,442 +1997,667 @@ skills["SupportMetaDeadeyeMarksPlayer"] = { }, } } -skills["MetaCastOnCharmUsePlayer"] = { - name = "Cast on Charm Use", - baseTypeName = "Cast on Charm Use", - icon = "Art/2DArt/SkillIcons/CastOnCharm.dds", - fromItem = true, +skills["BitterDeadPlayer"] = { + name = "Bitter Dead", + baseTypeName = "Bitter Dead", + icon = "Art/2DArt/SkillIcons/ExpeditionBitterDead.dds", color = 4, - description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0, + description = "Spend Ward and target an area, transforming Corpses into bitter cores that seek out enemies and Chill enemies near them. The cores explode at the end of their duration, creating runes which deal additional Cold damage over time.", + 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.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.TargetsDestructibleCorpses] = true, }, + castTime = 0.75, qualityStats = { - { "energy_generated_+%", 0.75 }, + { "volatile_dead_base_number_of_corpses_to_consume", 0.05 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Ward = 11, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 12, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 14, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 15, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 17, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 19, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 21, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 23, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 26, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 28, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 31, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 33, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 36, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 39, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 42, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 45, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 48, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 52, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 55, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 59, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 63, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 67, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 72, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 76, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 81, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 86, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 91, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 97, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 102, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 108, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 114, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 121, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 128, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 135, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 142, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 150, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 158, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 166, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 175, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 184, }, }, }, statSets = { [1] = { - label = "Cast on Charm Use", + label = "Bitter Dead", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "bitter_dead_statset_0", baseFlags = { }, constantStats = { - { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 }, - { "skill_desired_amount_override", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 35 }, }, stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", + "volatile_dead_base_number_of_corpses_to_consume", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 2, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 3, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 3, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 5, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 5, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 5, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 6, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 6, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 6, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 7, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 7, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 7, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 8, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 8, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 8, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 9, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 9, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 9, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 10, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 10, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 10, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 11, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 11, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 11, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 12, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 12, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 12, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 13, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 13, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 13, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 14, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, - } -} -skills["SupportMetaCastOnCharmUsePlayer"] = { - name = "SupportMetaCastOnCharmUsePlayer", - hidden = true, - fromItem = true, - support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, - excludeSkillTypes = { SkillType.InbuiltTrigger, }, - isTrigger = true, - qualityStats = { - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "SupportMetaCastOnCharmUsePlayer", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "meta_gem_stat_descriptions", + [2] = { + label = "Explosion", + baseEffectiveness = 3, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "bitter_dead_statset_1", baseFlags = { }, constantStats = { - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 20 }, }, stats = { - "triggered_by_generic_ongoing_trigger", - "generic_ongoing_trigger_triggers_at_maximum_energy", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "volatile_dead_base_number_of_corpses_to_consume", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 9, 14, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 13, 19, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 17, 26, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 23, 34, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 29, 43, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, 53, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 43, 65, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 52, 78, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 62, 93, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 73, 110, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 86, 129, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 100, 151, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 117, 175, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 136, 204, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 157, 236, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 181, 272, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 209, 314, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 241, 362, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 277, 416, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 319, 478, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 366, 549, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 421, 631, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 483, 725, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 555, 832, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 637, 956, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 732, 1099, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 842, 1263, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 968, 1453, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1114, 1672, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1284, 1925, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1479, 2219, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1707, 2560, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1971, 2956, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2278, 3417, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2636, 3954, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 3054, 4580, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3541, 5312, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 4112, 6168, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4781, 7171, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 5565, 8348, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Core", + baseEffectiveness = 8.3599996566772, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "bitter_dead_statset_2", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 15 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "volatile_dead_base_number_of_corpses_to_consume", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 26, 39, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 35, 53, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 48, 72, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 63, 94, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 79, 119, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 98, 148, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 120, 180, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 144, 217, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 172, 258, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 203, 305, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 239, 359, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 280, 420, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 326, 489, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 378, 567, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 438, 657, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 506, 759, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 583, 875, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 672, 1007, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 773, 1159, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 888, 1332, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1021, 1531, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1172, 1758, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1346, 2020, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1546, 2319, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1776, 2664, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 2041, 3061, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 2346, 3519, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 2699, 4048, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 3106, 4659, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 3577, 5365, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 4123, 6184, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 4756, 7134, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 5492, 8238, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 6348, 9522, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 7346, 11019, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8509, 12764, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 9869, 14803, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 11459, 17188, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 13322, 19983, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 15509, 23263, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Rune", + baseEffectiveness = 2, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "bitter_dead_statset_3", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 10000 }, + { "bitter_dead_action_speed_+%_final_for_rune", -20 }, + { "active_skill_base_area_of_effect_radius", 15 }, + }, + stats = { + "base_cold_damage_to_deal_per_minute", + "volatile_dead_base_number_of_corpses_to_consume", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + "spell_damage_modifiers_apply_to_skill_dot", + }, + levels = { + [1] = { 389, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 525, 0, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 718, 0, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 939, 0, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1188, 0, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1472, 0, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1794, 0, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2159, 0, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 2573, 0, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 3042, 0, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3576, 0, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 4182, 0, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 4870, 0, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 5654, 0, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 6545, 0, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7561, 0, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 8720, 0, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 10043, 0, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 11554, 0, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 13282, 0, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 15261, 0, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 17529, 0, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 20131, 0, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 23121, 0, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 26559, 0, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 30517, 0, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 35081, 0, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 40349, 0, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 46437, 0, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 53482, 0, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 61645, 0, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 71116, 0, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 82120, 0, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 94921, 0, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 109834, 0, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 127232, 0, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 147557, 0, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 171336, 0, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 199197, 0, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 231886, 0, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["MeleeCrossbowPlayer"] = { - name = "Crossbow Shot", - baseTypeName = "Crossbow Shot", - icon = "Art/2DArt/SkillIcons/PowerShot.dds", - fromItem = true, +skills["BleedingConcoctionPlayer"] = { + name = "Bleeding Concoction", + baseTypeName = "Bleeding Concoction", + icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionBleedSkill.dds", + fromTree = 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, }, + 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 = { - ["Crossbow"] = true, + ["None"] = true, }, castTime = 1, qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.43, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.54, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.66, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.77, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.87, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.98, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.09, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.22, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.35, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.49, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.65, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.81, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.99, levelRequirement = 72, }, - [18] = { baseMultiplier = 3.19, levelRequirement = 78, }, - [19] = { baseMultiplier = 3.4, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.62, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.86, levelRequirement = 90, }, - [22] = { baseMultiplier = 4.12, levelRequirement = 90, }, - [23] = { baseMultiplier = 4.4, levelRequirement = 90, }, - [24] = { baseMultiplier = 4.69, levelRequirement = 90, }, - [25] = { baseMultiplier = 5, levelRequirement = 90, }, - [26] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [27] = { baseMultiplier = 5.69, levelRequirement = 90, }, - [28] = { baseMultiplier = 6.07, levelRequirement = 90, }, - [29] = { baseMultiplier = 6.47, levelRequirement = 90, }, - [30] = { baseMultiplier = 6.9, levelRequirement = 90, }, - [31] = { baseMultiplier = 7.36, levelRequirement = 90, }, - [32] = { baseMultiplier = 7.85, levelRequirement = 90, }, - [33] = { baseMultiplier = 8.38, levelRequirement = 90, }, - [34] = { baseMultiplier = 8.93, levelRequirement = 90, }, - [35] = { baseMultiplier = 9.53, levelRequirement = 90, }, - [36] = { baseMultiplier = 10.16, levelRequirement = 90, }, - [37] = { baseMultiplier = 10.84, levelRequirement = 90, }, - [38] = { baseMultiplier = 11.56, levelRequirement = 90, }, - [39] = { baseMultiplier = 12.33, levelRequirement = 90, }, - [40] = { baseMultiplier = 13.16, levelRequirement = 90, }, + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 5, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 5, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 5, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 5, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 5, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 5, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 5, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 5, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 5, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 5, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 5, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 5, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 5, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 5, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 5, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 5, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 5, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Crossbow Shot", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + label = "Bleeding Concoction", + baseEffectiveness = 4.1999998092651, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "bleeding_concoction", baseFlags = { attack = true, - area = true, projectile = true, + area = true, }, constantStats = { - { "action_required_target_facing_angle_tolerance_degrees", 90 }, - { "crossbow_barrage_attack_time_ratio_%", 10 }, - { "crossbow_barrage_recoil_per_shot", 2 }, - { "crossbow_barrage_total_recoil_buff_count", 8 }, - { "crossbow_barrage_debuff_duration_ms", 300 }, - { "base_knockback_distance", 0 }, + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "throw_flask_effects_type", 3 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + { "base_chance_to_inflict_bleeding_%", 100 }, + { "base_aggravate_bleeding_on_attack_hit_chance_%", 100 }, }, stats = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", "base_is_projectile", - "has_modular_projectiles_enabled", - "action_requires_aiming_stance", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "projectiles_crossbow_barrage", - "cannot_cancel_skill_before_contact_point", - "disable_visual_hit_effect", + "projectile_behaviour_only_explode", "can_perform_skill_while_moving", - "precise_cursor_targeting_uses_contact_point_height_offset", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + }, + notMinionStat = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 11, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 19, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 29, 55, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 41, 75, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 52, 97, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 65, 120, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 78, 145, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 92, 171, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 106, 198, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 122, 226, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 138, 256, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 154, 287, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 172, 319, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 190, 353, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 209, 388, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 228, 424, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 249, 462, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 270, 501, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 291, 541, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 314, 582, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 337, 625, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 360, 669, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 385, 715, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 410, 761, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 436, 810, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 462, 859, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 490, 910, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 518, 962, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 547, 1015, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 576, 1070, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 606, 1126, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 637, 1183, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 668, 1241, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 701, 1301, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 734, 1362, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 767, 1425, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 802, 1489, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 837, 1554, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 872, 1620, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 909, 1688, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["UnloadAmmoPlayer"] = { - name = "Basic Bolt", - hidden = true, - icon = "Art/2DArt/SkillIcons/StandardBolts.dds", +skills["BloodBoilPlayer"] = { + name = "Blood Boil", + baseTypeName = "Blood Boil", + icon = "Art/2DArt/SkillIcons/PrimalistBloodBoilsSkillIcon.dds", + fromTree = true, + color = 4, + description = "Enemies in your Presence accumulate blood boils periodically. When they die, the boils pop applying Corrupted Blood to enemies near them.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "base_skill_effect_duration", 75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Blood Boil", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "blood_boil", + baseFlags = { + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 15 }, + { "blood_boil_%_health_as_corrupted_blood_damage_per_minute", 120 }, + { "base_skill_effect_duration", 5000 }, + { "blood_boil_explosion_area_+%_final_per_boil", 20 }, + { "blood_boil_explosion_delay_ms", 1000 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "blood_boil_application_interval_ms", + "quality_display_base_skill_effect_duration_is_gem", + }, + levels = { + [1] = { 2000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1975, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1950, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1925, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1900, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1875, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 1850, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 1825, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 1800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 1775, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 1750, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 1725, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 1700, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 1675, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 1650, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 1625, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 1600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 1575, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 1550, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 1525, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 1500, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 1475, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 1450, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 1425, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 1400, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 1375, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 1350, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 1325, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 1300, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 1275, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 1263, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 1250, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 1238, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 1225, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 1213, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1200, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1188, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1175, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 1163, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 1150, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeleeBowPlayer"] = { + name = "Bow Shot", + baseTypeName = "Bow Shot", + icon = "Art/2DArt/SkillIcons/BowDefaultSkill.dds", fromItem = true, - description = "Clear your active Bolt and reload any ammunition.", - skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + color = 4, + description = "Fire an arrow with your Bow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Barrageable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Bow] = true, }, weaponTypes = { - ["Crossbow"] = true, + ["Bow"] = true, }, - castTime = 0.5, + castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Ammunition", + label = "Bow Shot", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { + attack = true, + projectile = true, }, constantStats = { - { "action_allowed_queue_time_override_ms", 1000 }, - { "base_number_of_crossbow_bolts", 7 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "crossbow_ammo_skill_binds_default_attack", - "action_can_be_used_in_aiming_stance", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "skill_can_fire_arrows", "can_perform_skill_while_moving", - "base_deal_no_damage", - "crossbow_ammo_skill_does_not_transition", - "can_be_used_instantly_in_any_set", + "should_use_additive_aiming_animation", + "has_modular_projectiles_enabled", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, @@ -2255,196 +2704,228 @@ skills["UnloadAmmoPlayer"] = { }, } } -skills["DemonFormPlayer"] = { - name = "Demon Form", - baseTypeName = "Demon Form", - icon = "Art/2DArt/SkillIcons/WitchTransformDemon.dds", - fromTree = true, +skills["SupportBreachlordsAmalgam"] = { + name = "Breachlord's Amalgam", + description = "Supports Lightning or Cold skills you use yourself which fire Projectiles and do not already have cooldowns, adding a cooldown and making the Projectiles return, piercing through targets as they do so.", color = 4, - description = "Shapeshift into a demon, vastly boosting the power of your Spells. You gain Demonflame every second you remain in demon form, causing your Life to be lost at an ever-increasing rate. Maximum 10 Demonflame. Revert to human form if you reach 1 Life, use a Skill that isn't a Spell, or reactivate this Skill.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, }, - castTime = 1, - qualityStats = { - { "demon_form_grants_cast_speed_+%", 0.5 }, - }, + support = true, + requireSkillTypes = { SkillType.Cold, SkillType.Lightning, SkillType.OR, SkillType.Projectile, SkillType.AND, }, + addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByBreachlordsAmalgam, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByBreachlordsAmalgam, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, + gemFamily = { "GrantsCooldown",}, + isLineage = true, + flavourText = {"The flesh rejoiced. The melding began.", "Then, fear. Something foreign within.", "It was cast out too late. The unity was broken.", }, + ignoreMinionTypes = true, levels = { - [1] = { cooldown = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 6, }, }, - [2] = { cooldown = 15, levelRequirement = 3, storedUses = 1, cost = { Mana = 7, }, }, - [3] = { cooldown = 15, levelRequirement = 6, storedUses = 1, cost = { Mana = 8, }, }, - [4] = { cooldown = 15, levelRequirement = 10, storedUses = 1, cost = { Mana = 10, }, }, - [5] = { cooldown = 15, levelRequirement = 14, storedUses = 1, cost = { Mana = 11, }, }, - [6] = { cooldown = 15, levelRequirement = 18, storedUses = 1, cost = { Mana = 13, }, }, - [7] = { cooldown = 15, levelRequirement = 22, storedUses = 1, cost = { Mana = 15, }, }, - [8] = { cooldown = 15, levelRequirement = 26, storedUses = 1, cost = { Mana = 17, }, }, - [9] = { cooldown = 15, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, - [10] = { cooldown = 15, levelRequirement = 36, storedUses = 1, cost = { Mana = 22, }, }, - [11] = { cooldown = 15, levelRequirement = 41, storedUses = 1, cost = { Mana = 25, }, }, - [12] = { cooldown = 15, levelRequirement = 46, storedUses = 1, cost = { Mana = 28, }, }, - [13] = { cooldown = 15, levelRequirement = 52, storedUses = 1, cost = { Mana = 31, }, }, - [14] = { cooldown = 15, levelRequirement = 58, storedUses = 1, cost = { Mana = 35, }, }, - [15] = { cooldown = 15, levelRequirement = 64, storedUses = 1, cost = { Mana = 39, }, }, - [16] = { cooldown = 15, levelRequirement = 66, storedUses = 1, cost = { Mana = 43, }, }, - [17] = { cooldown = 15, levelRequirement = 72, storedUses = 1, cost = { Mana = 48, }, }, - [18] = { cooldown = 15, levelRequirement = 78, storedUses = 1, cost = { Mana = 53, }, }, - [19] = { cooldown = 15, levelRequirement = 84, storedUses = 1, cost = { Mana = 59, }, }, - [20] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 65, }, }, - [21] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 72, }, }, - [22] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 79, }, }, - [23] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 88, }, }, - [24] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 96, }, }, - [25] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 106, }, }, - [26] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 116, }, }, - [27] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 127, }, }, - [28] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 139, }, }, - [29] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 153, }, }, - [30] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 167, }, }, - [31] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 183, }, }, - [32] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 200, }, }, - [33] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 218, }, }, - [34] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 238, }, }, - [35] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 259, }, }, - [36] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 283, }, }, - [37] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 308, }, }, - [38] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 335, }, }, - [39] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 365, }, }, - [40] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 397, }, }, + [1] = { cooldown = 6, levelRequirement = 0, storedUses = 3, }, }, statSets = { [1] = { - label = "Demon Form", + label = "Breachlord's Amalgam", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "demon_form", - statMap = { - ["demon_form_spell_damage_+%_final_per_stack"] = { - mod("Damage", "MORE", nil, 0, KeywordFlag.Spell, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form"}, { type = "Multiplier", var = "DemonFlameStacks", limitVar = "DemonFlameMaximum" } ), - }, - ["demon_form_grants_cast_speed_+%"] = { - mod("Speed", "INC", nil, ModFlag.Cast, 0, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form" } ), - }, - ["demon_form_life_loss_per_minute_per_stack"] = { - mod("LifeDegen", "BASE", nil, 0, 0, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form" }, { type = "Multiplier", var = "DemonFlameStacks", limitVar = "DemonFlameMaximum" } ), - div = 60, - }, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "projectiles_return", + "returning_projectiles_always_pierce", + }, + levels = { + [1] = { actorLevel = 65, }, }, + }, + } +} +skills["ExplodingPoisonToadPlayer"] = { + name = "Bursting Fen Toad", + baseTypeName = "Bursting Fen Toad", + 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", + 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 = { + { "trigger_toad_spawn_chance_%", 0.5 }, + }, + levels = { + [1] = { baseMultiplier = 2.25, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 2.48, critChance = 5, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 2.72, critChance = 5, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 2.97, critChance = 5, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 3.2, critChance = 5, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 3.45, critChance = 5, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 3.69, critChance = 5, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 3.91, critChance = 5, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 4.1, critChance = 5, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 4.31, critChance = 5, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 4.52, critChance = 5, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 4.75, critChance = 5, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 4.99, critChance = 5, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 5.24, critChance = 5, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 5.5, critChance = 5, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 5.77, critChance = 5, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 6.06, critChance = 5, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 6.37, critChance = 5, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 6.68, critChance = 5, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 7.02, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 7.37, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 7.74, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 8.12, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 8.53, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 8.96, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 9.4, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 9.87, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 10.37, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 10.89, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 11.43, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 12, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 12.6, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 13.23, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 13.89, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 14.59, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 15.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 16.08, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 16.89, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 17.73, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 18.62, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Bursting Fen Toad", + baseEffectiveness = 2, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "exploding_poison_toad", baseFlags = { + area = true, + nonWeaponAttack = true, }, constantStats = { - { "demon_form_spell_damage_+%_final_per_stack", 3 }, + { "trigger_toad_spawn_chance_%", 25 }, + { "base_chance_to_poison_on_hit_%", 100 }, + { "active_skill_base_area_of_effect_radius", 25 }, }, stats = { - "demon_form_grants_cast_speed_+%", - "demon_form_life_loss_per_minute_per_stack", - "base_deal_no_damage", - "demon_transformation_cooldown_does_not_tick", + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + "is_area_damage", + }, + notMinionStat = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 12, 48, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 13, 64, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 14, 100, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 15, 128, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, 144, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 16, 160, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 17, 180, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 17, 210, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 18, 244, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 19, 308, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 20, 346, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 20, 394, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 21, 454, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 22, 518, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 22, 585, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 23, 780, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 24, 848, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 24, 980, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 25, 1112, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 26, 1143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 26, 1179, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 27, 1214, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 28, 1247, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 28, 1278, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 29, 1308, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 30, 1336, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 30, 1364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 31, 1390, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 32, 1416, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 32, 1441, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 33, 1465, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 33, 1488, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 33, 1511, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 34, 1533, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 34, 1555, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 34, 1575, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 35, 1596, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 35, 1616, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 35, 1635, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 10, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 28, 43, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, 53, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 42, 64, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, 87, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 75, 112, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 84, 126, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 94, 140, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 103, 155, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 124, 186, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 203, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 147, 220, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 158, 238, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 183, 275, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 209, 314, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 237, 356, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 252, 378, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 267, 400, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 282, 423, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 347, 520, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 364, 546, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 381, 572, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 399, 599, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 436, 654, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 455, 683, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 475, 712, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 495, 742, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ElementalExpressionTriggeredPlayer"] = { - name = "Elemental Expression", - baseTypeName = "Elemental Expression", - icon = "Art/2DArt/SkillIcons/MonkInvokerWildStrike.dds", +skills["MetaDeadeyeMarksPlayer"] = { + name = "Called Shots", + baseTypeName = "Called Shots", + icon = "Art/2DArt/SkillIcons/DeadeyeMarkMetagemSkill.dds", fromTree = true, color = 4, - description = "Create a fiery explosion, an arcing bolt of lightning, or an icy wave of projectiles. The chance for an explosion is proportional to your Strength, for a bolt proportional to your Dexterity, and for a wave proportional to your Intelligence.", - skillTypes = { [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0, + description = "Applies a socketed Mark Skill to a nearby unmarked Enemy every few seconds. Consuming socketed Marks will cause them to be reapplied to an unmarked Enemy. This reapplication can happen at most once every few seconds.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.Triggers] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 1 }, + { "active_skill_base_area_of_effect_radius", 0.2 }, }, levels = { - [1] = { cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 3, }, }, - [2] = { cooldown = 0.25, levelRequirement = 3, storedUses = 1, cost = { Mana = 4, }, }, - [3] = { cooldown = 0.25, levelRequirement = 6, storedUses = 1, cost = { Mana = 5, }, }, - [4] = { cooldown = 0.25, levelRequirement = 10, storedUses = 1, cost = { Mana = 6, }, }, - [5] = { cooldown = 0.25, levelRequirement = 14, storedUses = 1, cost = { Mana = 7, }, }, - [6] = { cooldown = 0.25, levelRequirement = 18, storedUses = 1, cost = { Mana = 8, }, }, - [7] = { cooldown = 0.25, levelRequirement = 22, storedUses = 1, cost = { Mana = 9, }, }, - [8] = { cooldown = 0.25, levelRequirement = 26, storedUses = 1, cost = { Mana = 10, }, }, - [9] = { cooldown = 0.25, levelRequirement = 31, storedUses = 1, cost = { Mana = 12, }, }, - [10] = { cooldown = 0.25, levelRequirement = 36, storedUses = 1, cost = { Mana = 13, }, }, - [11] = { cooldown = 0.25, levelRequirement = 41, storedUses = 1, cost = { Mana = 15, }, }, - [12] = { cooldown = 0.25, levelRequirement = 46, storedUses = 1, cost = { Mana = 17, }, }, - [13] = { cooldown = 0.25, levelRequirement = 52, storedUses = 1, cost = { Mana = 19, }, }, - [14] = { cooldown = 0.25, levelRequirement = 58, storedUses = 1, cost = { Mana = 21, }, }, - [15] = { cooldown = 0.25, levelRequirement = 64, storedUses = 1, cost = { Mana = 23, }, }, - [16] = { cooldown = 0.25, levelRequirement = 66, storedUses = 1, cost = { Mana = 26, }, }, - [17] = { cooldown = 0.25, levelRequirement = 72, storedUses = 1, cost = { Mana = 29, }, }, - [18] = { cooldown = 0.25, levelRequirement = 78, storedUses = 1, cost = { Mana = 32, }, }, - [19] = { cooldown = 0.25, levelRequirement = 84, storedUses = 1, cost = { Mana = 36, }, }, - [20] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 39, }, }, - [21] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 43, }, }, - [22] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 48, }, }, - [23] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 53, }, }, - [24] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 58, }, }, - [25] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 64, }, }, - [26] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 70, }, }, - [27] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 77, }, }, - [28] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 84, }, }, - [29] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 92, }, }, - [30] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 101, }, }, - [31] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 110, }, }, - [32] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 120, }, }, - [33] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 131, }, }, - [34] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 143, }, }, - [35] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 156, }, }, - [36] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 170, }, }, - [37] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 186, }, }, - [38] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 202, }, }, - [39] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 220, }, }, - [40] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 239, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Elemental Expression", + label = "Called Shots", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "elemental_expression_statset_0", + statDescriptionScope = "meta_deadeye_marks", baseFlags = { }, constantStats = { - { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "active_skill_base_area_of_effect_radius", 100 }, + { "deadeye_meta_marks_middle_band_is_%_of_primary_radius", 50 }, + { "deadeye_meta_marks_close_band_is_%_of_primary_radius", 30 }, + { "deadeye_meta_marks_number_of_enemies_to_mark", 1 }, + { "skill_desired_amount_override", 1 }, }, stats = { }, @@ -2491,293 +2972,7802 @@ skills["ElementalExpressionTriggeredPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Fiery Explosion", - baseEffectiveness = 2.625, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "elemental_expression_statset_1", - baseFlags = { - spell = true, - area = true, - }, - constantStats = { - { "chance_to_be_trigger_elemental_expression_%", 100 }, - { "active_skill_base_area_of_effect_radius", 36 }, - }, - stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - "is_area_damage", - }, - notMinionStat = { - "spell_minimum_base_fire_damage", + } +} +skills["SupportMetaDeadeyeMarksPlayer"] = { + name = "SupportMetaDeadeyeMarksPlayer", + hidden = true, + fromTree = true, + support = true, + requireSkillTypes = { SkillType.Mark, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMetaDeadeyeMarksPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "your_marks_spread_to_a_nearby_enemies_on_consume_%_chance", 100 }, + }, + stats = { + "mark_supported_by_deadeye_meta_gem", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaCastOnCharmUsePlayer"] = { + name = "Cast on Charm Use", + baseTypeName = "Cast on Charm Use", + icon = "Art/2DArt/SkillIcons/CastOnCharm.dds", + fromItem = true, + color = 4, + description = "While active, gains Energy when one of your Charms is used and triggers socketed Spells on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "energy_generated_+%", 0.75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Cast on Charm Use", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm", 200 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "energy_generated_+%", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", + "base_deal_no_damage", + }, + levels = { + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMetaCastOnCharmUsePlayer"] = { + name = "SupportMetaCastOnCharmUsePlayer", + hidden = true, + fromItem = true, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.InbuiltTrigger, }, + isTrigger = true, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMetaCastOnCharmUsePlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + }, + stats = { + "triggered_by_generic_ongoing_trigger", + "generic_ongoing_trigger_triggers_at_maximum_energy", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportCathasBrilliance"] = { + name = "Catha's Brilliance", + description = "Supports skills which create Companions, causing enemies near them to be Blinded and Ignited. The damage of the Ignite is based on the Life of the supported Minion.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Companion, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "InfernalLegion",}, + isLineage = true, + flavourText = {"\"The yellow sap... the Vivid flow... it is the energy of", "harmony between disparate forces. They call it the", "Catha, an aspect of the Goddess. It is so much more.\"", }, + levels = { + [1] = { levelRequirement = 0, reservationMultiplier = 25, }, + }, + statSets = { + [1] = { + label = "Catha's Brilliance", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "minion_cathas_brilliance_blind_aura_radius", 20 }, + { "support_minions_ignite_for_%_max_life", 10 }, + { "infernal_legion_minion_burning_effect_radius", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["ConductiveRunesPlayer"] = { + name = "Conductive Runes", + baseTypeName = "Conductive Runes", + icon = "Art/2DArt/SkillIcons/ExpeditionRunewordHazard.dds", + color = 4, + description = "Spend Runic Ward to create a number of Hazardous Runes in a cone in front of you, which arm after a time. After arming, these Runes will activate when enemies step on them, exploding to deal Attack damage and apply Electrocution buildup.", + skillTypes = { [SkillType.Area] = true, [SkillType.Hazard] = true, [SkillType.Duration] = true, [SkillType.Attack] = true, [SkillType.Damage] = true, [SkillType.Limit] = true, [SkillType.UseGlobalStats] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, }, + castTime = 1, + qualityStats = { + { "rune_hazard_arming_time_ms", -5 }, + { "rune_hazard_detonate_time_ms", -5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Ward = 15, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 17, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 19, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 21, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 24, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 26, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 29, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 32, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 35, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 38, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 42, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 45, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 49, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 53, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 57, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 61, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 66, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 71, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 76, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 81, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 86, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 92, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 98, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 104, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 110, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 117, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 124, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 132, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 140, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 148, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 156, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 165, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 174, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 184, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 194, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 204, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 215, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 227, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 238, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 251, }, }, + }, + statSets = { + [1] = { + label = "Conductive Runes", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "conductive_runes_statset_0", + baseFlags = { + attack = true, + duration = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 85 }, + { "active_skill_base_secondary_area_of_effect_radius", 5 }, + { "base_skill_effect_duration", 10000 }, + { "rune_hazard_cone_angle", 80 }, + { "rune_hazard_number_of_runes_to_create", 10 }, + { "rune_hazard_base_number_of_runes_allowed", 20 }, + { "rune_hazard_arming_time_ms", 400 }, + { "rune_hazard_detonate_time_ms", 300 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "can_perform_skill_while_moving", + "cast_time_overrides_attack_duration", + "base_deal_no_damage", + "usable_while_shapeshifted", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + baseEffectiveness = 1.5, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "conductive_runes_statset_1", + baseFlags = { + attack = true, + }, + constantStats = { + { "rune_hazard_cone_angle", 80 }, + { "rune_hazard_number_of_runes_to_create", 10 }, + { "rune_hazard_base_number_of_runes_allowed", 20 }, + { "rune_hazard_arming_time_ms", 400 }, + { "rune_hazard_detonate_time_ms", 300 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 14 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + }, + stats = { + "main_hand_weapon_minimum_lightning_damage", + "main_hand_weapon_maximum_lightning_damage", + "active_skill_electrocutes_as_though_dealt_damage_+%_final", + "can_perform_skill_while_moving", + "cast_time_overrides_attack_duration", + "usable_while_shapeshifted", + "is_area_damage", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "base_lightning_damage_can_electrocute", + }, + levels = { + [1] = { 1, 11, 50, baseMultiplier = 0.5, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 1, 18, 50, baseMultiplier = 0.55, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 29, 50, baseMultiplier = 0.61, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, 39, 50, baseMultiplier = 0.67, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 3, 51, 50, baseMultiplier = 0.73, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 3, 63, 50, baseMultiplier = 0.79, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 4, 76, 50, baseMultiplier = 0.85, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 5, 89, 50, baseMultiplier = 0.91, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 5, 103, 50, baseMultiplier = 0.97, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6, 118, 50, baseMultiplier = 1.03, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 7, 133, 50, baseMultiplier = 1.09, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 8, 150, 50, baseMultiplier = 1.17, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 9, 167, 50, baseMultiplier = 1.25, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 10, 184, 50, baseMultiplier = 1.33, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 11, 202, 50, baseMultiplier = 1.42, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 12, 221, 50, baseMultiplier = 1.53, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 13, 241, 50, baseMultiplier = 1.64, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 14, 261, 50, baseMultiplier = 1.76, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 15, 282, 50, baseMultiplier = 1.89, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 16, 304, 50, baseMultiplier = 2.04, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 17, 326, 50, baseMultiplier = 2.2, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 18, 349, 50, baseMultiplier = 2.37, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 20, 373, 50, baseMultiplier = 2.55, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 21, 397, 50, baseMultiplier = 2.75, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 22, 423, 50, baseMultiplier = 2.96, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 24, 448, 50, baseMultiplier = 3.19, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 25, 475, 50, baseMultiplier = 3.44, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 26, 502, 50, baseMultiplier = 3.7, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 28, 530, 50, baseMultiplier = 3.99, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 29, 558, 50, baseMultiplier = 4.3, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 31, 588, 50, baseMultiplier = 4.63, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 32, 617, 50, baseMultiplier = 4.99, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 34, 648, 50, baseMultiplier = 5.37, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 36, 679, 50, baseMultiplier = 5.79, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 37, 711, 50, baseMultiplier = 6.24, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 39, 744, 50, baseMultiplier = 6.72, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 41, 777, 50, baseMultiplier = 7.24, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 43, 811, 50, baseMultiplier = 7.8, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 45, 846, 50, baseMultiplier = 8.4, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 46, 881, 50, baseMultiplier = 9.05, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeleeCrossbowPlayer"] = { + name = "Crossbow Shot", + baseTypeName = "Crossbow Shot", + icon = "Art/2DArt/SkillIcons/PowerShot.dds", + 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, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.43, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.54, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.66, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.77, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.87, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.98, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.09, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.22, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.35, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.49, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.65, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.81, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.99, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 3.19, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 3.4, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.62, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.86, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 4.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 4.4, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 4.69, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 5.69, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 6.07, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 6.9, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 7.36, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 7.85, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 8.38, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 8.93, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 9.53, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 10.16, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 10.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 11.56, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 12.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 13.16, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Crossbow Shot", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + projectile = true, + }, + constantStats = { + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "crossbow_barrage_attack_time_ratio_%", 10 }, + { "crossbow_barrage_recoil_per_shot", 2 }, + { "crossbow_barrage_total_recoil_buff_count", 8 }, + { "crossbow_barrage_debuff_duration_ms", 300 }, + { "base_knockback_distance", 0 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "base_is_projectile", + "has_modular_projectiles_enabled", + "action_requires_aiming_stance", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "projectiles_crossbow_barrage", + "cannot_cancel_skill_before_contact_point", + "disable_visual_hit_effect", + "can_perform_skill_while_moving", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["UnloadAmmoPlayer"] = { + name = "Basic Bolt", + hidden = true, + icon = "Art/2DArt/SkillIcons/StandardBolts.dds", + fromItem = true, + description = "Clear your active Bolt and reload any ammunition.", + skillTypes = { [SkillType.CrossbowAmmoSkill] = true, [SkillType.Attack] = true, [SkillType.UsableWhileMoving] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 0.5, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ammunition", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "action_allowed_queue_time_override_ms", 1000 }, + { "base_number_of_crossbow_bolts", 7 }, + }, + stats = { + "crossbow_ammo_skill_binds_default_attack", + "action_can_be_used_in_aiming_stance", + "can_perform_skill_while_moving", + "base_deal_no_damage", + "crossbow_ammo_skill_does_not_transition", + "can_be_used_instantly_in_any_set", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CrushingFearPlayer"] = { + name = "Crushing Fear", + baseTypeName = "Crushing Fear", + icon = "Art/2DArt/SkillIcons/ChokingMistsSkillIcon.dds", + fromItem = true, + color = 4, + description = "Dash to an enemy and Strike them, Culling enemies if their life is low enough. When this skill kills an enemy you draw out their final fears, crushing them to create a shockwave. Enemies around you that can be Culled will be highlighted.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.GeneratesCharges] = true, [SkillType.Palm] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_area_of_effect_+%_final", 0.5 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 4, levelRequirement = 0, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = -25, baseMultiplier = 4.4, levelRequirement = 3, cost = { Mana = 7, }, }, + [3] = { attackSpeedMultiplier = -25, baseMultiplier = 4.84, levelRequirement = 6, cost = { Mana = 8, }, }, + [4] = { attackSpeedMultiplier = -25, baseMultiplier = 5.29, levelRequirement = 10, cost = { Mana = 9, }, }, + [5] = { attackSpeedMultiplier = -25, baseMultiplier = 5.73, levelRequirement = 14, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -25, baseMultiplier = 6.18, levelRequirement = 18, cost = { Mana = 11, }, }, + [7] = { attackSpeedMultiplier = -25, baseMultiplier = 6.64, levelRequirement = 22, cost = { Mana = 13, }, }, + [8] = { attackSpeedMultiplier = -25, baseMultiplier = 7.08, levelRequirement = 26, cost = { Mana = 14, }, }, + [9] = { attackSpeedMultiplier = -25, baseMultiplier = 7.48, levelRequirement = 31, cost = { Mana = 16, }, }, + [10] = { attackSpeedMultiplier = -25, baseMultiplier = 7.9, levelRequirement = 36, cost = { Mana = 17, }, }, + [11] = { attackSpeedMultiplier = -25, baseMultiplier = 8.37, levelRequirement = 41, cost = { Mana = 19, }, }, + [12] = { attackSpeedMultiplier = -25, baseMultiplier = 8.86, levelRequirement = 46, cost = { Mana = 21, }, }, + [13] = { attackSpeedMultiplier = -25, baseMultiplier = 9.39, levelRequirement = 52, cost = { Mana = 23, }, }, + [14] = { attackSpeedMultiplier = -25, baseMultiplier = 9.97, levelRequirement = 58, cost = { Mana = 25, }, }, + [15] = { attackSpeedMultiplier = -25, baseMultiplier = 10.59, levelRequirement = 64, cost = { Mana = 28, }, }, + [16] = { attackSpeedMultiplier = -25, baseMultiplier = 11.25, levelRequirement = 66, cost = { Mana = 30, }, }, + [17] = { attackSpeedMultiplier = -25, baseMultiplier = 11.97, levelRequirement = 72, cost = { Mana = 33, }, }, + [18] = { attackSpeedMultiplier = -25, baseMultiplier = 12.75, levelRequirement = 78, cost = { Mana = 36, }, }, + [19] = { attackSpeedMultiplier = -25, baseMultiplier = 13.58, levelRequirement = 84, cost = { Mana = 38, }, }, + [20] = { attackSpeedMultiplier = -25, baseMultiplier = 14.49, levelRequirement = 90, cost = { Mana = 42, }, }, + [21] = { attackSpeedMultiplier = -25, baseMultiplier = 15.45, levelRequirement = 90, cost = { Mana = 45, }, }, + [22] = { attackSpeedMultiplier = -25, baseMultiplier = 16.48, levelRequirement = 90, cost = { Mana = 49, }, }, + [23] = { attackSpeedMultiplier = -25, baseMultiplier = 17.58, levelRequirement = 90, cost = { Mana = 52, }, }, + [24] = { attackSpeedMultiplier = -25, baseMultiplier = 18.75, levelRequirement = 90, cost = { Mana = 56, }, }, + [25] = { attackSpeedMultiplier = -25, baseMultiplier = 20, levelRequirement = 90, cost = { Mana = 60, }, }, + [26] = { attackSpeedMultiplier = -25, baseMultiplier = 21.33, levelRequirement = 90, cost = { Mana = 65, }, }, + [27] = { attackSpeedMultiplier = -25, baseMultiplier = 22.75, levelRequirement = 90, cost = { Mana = 70, }, }, + [28] = { attackSpeedMultiplier = -25, baseMultiplier = 24.27, levelRequirement = 90, cost = { Mana = 75, }, }, + [29] = { attackSpeedMultiplier = -25, baseMultiplier = 25.89, levelRequirement = 90, cost = { Mana = 80, }, }, + [30] = { attackSpeedMultiplier = -25, baseMultiplier = 27.61, levelRequirement = 90, cost = { Mana = 86, }, }, + [31] = { attackSpeedMultiplier = -25, baseMultiplier = 29.45, levelRequirement = 90, cost = { Mana = 92, }, }, + [32] = { attackSpeedMultiplier = -25, baseMultiplier = 31.41, levelRequirement = 90, cost = { Mana = 98, }, }, + [33] = { attackSpeedMultiplier = -25, baseMultiplier = 33.51, levelRequirement = 90, cost = { Mana = 105, }, }, + [34] = { attackSpeedMultiplier = -25, baseMultiplier = 35.74, levelRequirement = 90, cost = { Mana = 112, }, }, + [35] = { attackSpeedMultiplier = -25, baseMultiplier = 38.12, levelRequirement = 90, cost = { Mana = 119, }, }, + [36] = { attackSpeedMultiplier = -25, baseMultiplier = 40.66, levelRequirement = 90, cost = { Mana = 127, }, }, + [37] = { attackSpeedMultiplier = -25, baseMultiplier = 43.37, levelRequirement = 90, cost = { Mana = 136, }, }, + [38] = { attackSpeedMultiplier = -25, baseMultiplier = 46.26, levelRequirement = 90, cost = { Mana = 144, }, }, + [39] = { attackSpeedMultiplier = -25, baseMultiplier = 49.34, levelRequirement = 90, cost = { Mana = 154, }, }, + [40] = { attackSpeedMultiplier = -25, baseMultiplier = 52.62, levelRequirement = 90, cost = { Mana = 164, }, }, + }, + statSets = { + [1] = { + label = "Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "crushing_fear_statset_0", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + { "base_melee_dash_range", 65 }, + { "active_skill_generic_grace_period_time_ms", 100 }, + { "melee_dash_placement_added_range", -3 }, + { "active_skill_base_physical_damage_%_to_convert_to_chaos", 50 }, + }, + stats = { + "kill_enemy_on_hit_if_under_10%_life", + "active_skill_show_cull_range", + "global_always_hit", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Shockwave", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "crushing_fear_statset_1", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + { "base_melee_dash_range", 65 }, + { "active_skill_generic_grace_period_time_ms", 100 }, + { "melee_dash_placement_added_range", -3 }, + { "active_skill_base_secondary_area_of_effect_radius", 30 }, + { "crushing_fear_damage_+%_final_per_power_of_culled_enemy", 10 }, + { "crushing_fear_area_of_effect_+%_final_per_power_of_culled_enemy", 5 }, + { "active_skill_base_physical_damage_%_to_convert_to_chaos", 80 }, + }, + stats = { + "kill_enemy_on_hit_if_under_10%_life", + "active_skill_show_cull_range", + "global_always_hit", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { baseMultiplier = 4, actorLevel = 1, }, + [2] = { baseMultiplier = 4.4, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 4.84, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 5.29, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 5.73, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 6.18, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 6.64, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 7.08, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 7.48, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 7.9, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 8.37, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 8.86, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 9.39, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 9.97, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 10.59, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 11.25, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 11.97, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 12.75, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 13.58, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 14.49, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 15.45, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 16.48, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 17.58, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 18.75, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 20, actorLevel = 136.875, }, + [26] = { baseMultiplier = 21.33, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 22.75, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 24.27, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 25.89, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 27.61, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 29.45, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 31.41, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 33.51, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 35.74, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 38.12, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 40.66, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 43.37, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 46.26, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 49.34, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 52.62, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportConcussiveRunesPlayer"] = { + name = "Concussive Runes", + description = "Supports Attacks, causing a Runic Shockwave to erupt under enemies they Heavy Stun. The Shockwave costs Runic Ward, and will not Trigger if you do not have enough Runic Ward.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ConcussiveRunes",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "support_trigger_pummel_on_heavy_stun", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["DemonFormPlayer"] = { + name = "Demon Form", + baseTypeName = "Demon Form", + icon = "Art/2DArt/SkillIcons/WitchTransformDemon.dds", + fromTree = true, + color = 4, + description = "Shapeshift into a demon, vastly boosting the power of your Spells. You gain Demonflame every second you remain in demon form, causing your Life to be lost at an ever-increasing rate. Maximum 10 Demonflame. Revert to human form if you reach 1 Life, use a Skill that isn't a Spell, or reactivate this Skill.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Shapeshift] = true, [SkillType.ManualCooldownConsumption] = true, }, + castTime = 1, + qualityStats = { + { "demon_form_grants_cast_speed_+%", 0.5 }, + }, + levels = { + [1] = { cooldown = 15, levelRequirement = 0, storedUses = 1, cost = { Mana = 6, }, }, + [2] = { cooldown = 15, levelRequirement = 3, storedUses = 1, cost = { Mana = 7, }, }, + [3] = { cooldown = 15, levelRequirement = 6, storedUses = 1, cost = { Mana = 8, }, }, + [4] = { cooldown = 15, levelRequirement = 10, storedUses = 1, cost = { Mana = 10, }, }, + [5] = { cooldown = 15, levelRequirement = 14, storedUses = 1, cost = { Mana = 11, }, }, + [6] = { cooldown = 15, levelRequirement = 18, storedUses = 1, cost = { Mana = 13, }, }, + [7] = { cooldown = 15, levelRequirement = 22, storedUses = 1, cost = { Mana = 15, }, }, + [8] = { cooldown = 15, levelRequirement = 26, storedUses = 1, cost = { Mana = 17, }, }, + [9] = { cooldown = 15, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, + [10] = { cooldown = 15, levelRequirement = 36, storedUses = 1, cost = { Mana = 22, }, }, + [11] = { cooldown = 15, levelRequirement = 41, storedUses = 1, cost = { Mana = 25, }, }, + [12] = { cooldown = 15, levelRequirement = 46, storedUses = 1, cost = { Mana = 28, }, }, + [13] = { cooldown = 15, levelRequirement = 52, storedUses = 1, cost = { Mana = 31, }, }, + [14] = { cooldown = 15, levelRequirement = 58, storedUses = 1, cost = { Mana = 35, }, }, + [15] = { cooldown = 15, levelRequirement = 64, storedUses = 1, cost = { Mana = 39, }, }, + [16] = { cooldown = 15, levelRequirement = 66, storedUses = 1, cost = { Mana = 43, }, }, + [17] = { cooldown = 15, levelRequirement = 72, storedUses = 1, cost = { Mana = 48, }, }, + [18] = { cooldown = 15, levelRequirement = 78, storedUses = 1, cost = { Mana = 53, }, }, + [19] = { cooldown = 15, levelRequirement = 84, storedUses = 1, cost = { Mana = 59, }, }, + [20] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 65, }, }, + [21] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 72, }, }, + [22] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 79, }, }, + [23] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 88, }, }, + [24] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 96, }, }, + [25] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 106, }, }, + [26] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 116, }, }, + [27] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 127, }, }, + [28] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 139, }, }, + [29] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 153, }, }, + [30] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 167, }, }, + [31] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 183, }, }, + [32] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 200, }, }, + [33] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 218, }, }, + [34] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 238, }, }, + [35] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 259, }, }, + [36] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 283, }, }, + [37] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 308, }, }, + [38] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 335, }, }, + [39] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 365, }, }, + [40] = { cooldown = 15, levelRequirement = 90, storedUses = 1, cost = { Mana = 397, }, }, + }, + statSets = { + [1] = { + label = "Demon Form", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "demon_form", + statMap = { + ["demon_form_spell_damage_+%_final_per_stack"] = { + mod("Damage", "MORE", nil, 0, KeywordFlag.Spell, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form"}, { type = "Multiplier", var = "DemonFlameStacks", limitVar = "DemonFlameMaximum" } ), + }, + ["demon_form_grants_cast_speed_+%"] = { + mod("Speed", "INC", nil, ModFlag.Cast, 0, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form" } ), + }, + ["demon_form_life_loss_per_minute_per_stack"] = { + mod("LifeDegen", "BASE", nil, 0, 0, { type = "Condition", var = "DemonForm" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Demon Form" }, { type = "Multiplier", var = "DemonFlameStacks", limitVar = "DemonFlameMaximum" } ), + div = 60, + }, + }, + baseFlags = { + }, + constantStats = { + { "demon_form_spell_damage_+%_final_per_stack", 3 }, + }, + stats = { + "demon_form_grants_cast_speed_+%", + "demon_form_life_loss_per_minute_per_stack", + "base_deal_no_damage", + "demon_transformation_cooldown_does_not_tick", + }, + levels = { + [1] = { 12, 48, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 13, 64, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 100, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 15, 128, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, 144, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 16, 160, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 180, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 17, 210, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 18, 244, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 19, 308, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 20, 346, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 20, 394, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 21, 454, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, 518, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 22, 585, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 23, 780, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 24, 848, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 24, 980, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 25, 1112, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 26, 1143, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 26, 1179, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 27, 1214, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 28, 1247, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 28, 1278, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 29, 1308, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 30, 1336, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 30, 1364, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 31, 1390, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 32, 1416, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 32, 1441, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 33, 1465, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 33, 1488, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 33, 1511, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 34, 1533, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 34, 1555, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 34, 1575, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 35, 1596, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 35, 1616, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 35, 1635, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["DetonateLivingPlayer"] = { + name = "Detonate Living", + 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.", + 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 = { + { "corpse_explosion_monster_life_permillage_physical", 1 }, + }, + levels = { + [1] = { critChance = 12, levelRequirement = 0, cost = { Ward = 11, }, }, + [2] = { critChance = 12, levelRequirement = 3, cost = { Ward = 12, }, }, + [3] = { critChance = 12, levelRequirement = 6, cost = { Ward = 14, }, }, + [4] = { critChance = 12, levelRequirement = 10, cost = { Ward = 15, }, }, + [5] = { critChance = 12, levelRequirement = 14, cost = { Ward = 17, }, }, + [6] = { critChance = 12, levelRequirement = 18, cost = { Ward = 19, }, }, + [7] = { critChance = 12, levelRequirement = 22, cost = { Ward = 21, }, }, + [8] = { critChance = 12, levelRequirement = 26, cost = { Ward = 23, }, }, + [9] = { critChance = 12, levelRequirement = 31, cost = { Ward = 26, }, }, + [10] = { critChance = 12, levelRequirement = 36, cost = { Ward = 28, }, }, + [11] = { critChance = 12, levelRequirement = 41, cost = { Ward = 31, }, }, + [12] = { critChance = 12, levelRequirement = 46, cost = { Ward = 33, }, }, + [13] = { critChance = 12, levelRequirement = 52, cost = { Ward = 36, }, }, + [14] = { critChance = 12, levelRequirement = 58, cost = { Ward = 39, }, }, + [15] = { critChance = 12, levelRequirement = 64, cost = { Ward = 42, }, }, + [16] = { critChance = 12, levelRequirement = 66, cost = { Ward = 45, }, }, + [17] = { critChance = 12, levelRequirement = 72, cost = { Ward = 48, }, }, + [18] = { critChance = 12, levelRequirement = 78, cost = { Ward = 52, }, }, + [19] = { critChance = 12, levelRequirement = 84, cost = { Ward = 55, }, }, + [20] = { critChance = 12, levelRequirement = 90, cost = { Ward = 59, }, }, + [21] = { critChance = 12, levelRequirement = 90, cost = { Ward = 63, }, }, + [22] = { critChance = 12, levelRequirement = 90, cost = { Ward = 67, }, }, + [23] = { critChance = 12, levelRequirement = 90, cost = { Ward = 72, }, }, + [24] = { critChance = 12, levelRequirement = 90, cost = { Ward = 76, }, }, + [25] = { critChance = 12, levelRequirement = 90, cost = { Ward = 81, }, }, + [26] = { critChance = 12, levelRequirement = 90, cost = { Ward = 86, }, }, + [27] = { critChance = 12, levelRequirement = 90, cost = { Ward = 91, }, }, + [28] = { critChance = 12, levelRequirement = 90, cost = { Ward = 97, }, }, + [29] = { critChance = 12, levelRequirement = 90, cost = { Ward = 102, }, }, + [30] = { critChance = 12, levelRequirement = 90, cost = { Ward = 108, }, }, + [31] = { critChance = 12, levelRequirement = 90, cost = { Ward = 114, }, }, + [32] = { critChance = 12, levelRequirement = 90, cost = { Ward = 121, }, }, + [33] = { critChance = 12, levelRequirement = 90, cost = { Ward = 128, }, }, + [34] = { critChance = 12, levelRequirement = 90, cost = { Ward = 135, }, }, + [35] = { critChance = 12, levelRequirement = 90, cost = { Ward = 142, }, }, + [36] = { critChance = 12, levelRequirement = 90, cost = { Ward = 150, }, }, + [37] = { critChance = 12, levelRequirement = 90, cost = { Ward = 158, }, }, + [38] = { critChance = 12, levelRequirement = 90, cost = { Ward = 166, }, }, + [39] = { critChance = 12, levelRequirement = 90, cost = { Ward = 175, }, }, + [40] = { critChance = 12, levelRequirement = 90, cost = { Ward = 184, }, }, + }, + statSets = { + [1] = { + label = "Detonate Living", + baseEffectiveness = 0.40000000596046, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0060999998822808, + statDescriptionScope = "detonate_living_statset_0", + baseFlags = { + spell = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "can_perform_skill_while_moving", + "active_skill_show_cull_range", + "spells_have_culling_strike", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 2, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 4, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 5, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 22, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 19, 29, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 27, 41, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 30, 46, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 38, 57, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 48, 71, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 53, 80, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 59, 89, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 66, 99, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 74, 110, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 82, 123, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 91, 137, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 114, 170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 127, 190, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 141, 212, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 176, 264, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 219, 329, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 245, 367, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 274, 410, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + baseEffectiveness = 9, + incrementalEffectiveness = 0.054999999701977, + damageIncrementalEffectiveness = 0.0060999998822808, + statDescriptionScope = "detonate_living_statset_1", + baseFlags = { + area = true, + hit = true, + }, + baseMods = { + skill("explodeCorpse", true), + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 26 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "corpse_explosion_monster_life_permillage_physical", + "can_perform_skill_while_moving", + "active_skill_show_cull_range", + "is_area_damage", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 0, 0, 28, 42, 66, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 32, 48, 70, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 37, 55, 74, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 42, 63, 78, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 48, 72, 82, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 54, 81, 86, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 61, 91, 90, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 68, 101, 94, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 75, 112, 98, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 82, 123, 102, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 90, 135, 106, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 98, 148, 110, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 107, 160, 114, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 116, 174, 118, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 125, 188, 122, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 135, 202, 126, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 145, 217, 130, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 155, 233, 134, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 166, 249, 138, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 177, 265, 142, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 188, 282, 146, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 200, 300, 150, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 212, 318, 154, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 224, 336, 158, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 237, 356, 162, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 250, 375, 166, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 264, 395, 170, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 277, 416, 174, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 291, 437, 178, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 306, 459, 182, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 321, 481, 184, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 336, 504, 186, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 352, 527, 188, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 367, 551, 190, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 384, 575, 192, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 400, 600, 194, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 417, 626, 196, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 434, 652, 198, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 452, 678, 200, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 470, 705, 202, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ElementalExpressionTriggeredPlayer"] = { + name = "Elemental Expression", + baseTypeName = "Elemental Expression", + icon = "Art/2DArt/SkillIcons/MonkInvokerWildStrike.dds", + fromTree = true, + color = 4, + description = "Create a fiery explosion, an arcing bolt of lightning, or an icy wave of projectiles. The chance for an explosion is proportional to your Strength, for a bolt proportional to your Dexterity, and for a wave proportional to your Intelligence.", + skillTypes = { [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Lightning] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "base_cooldown_speed_+%", 1 }, + }, + levels = { + [1] = { cooldown = 0.25, levelRequirement = 0, storedUses = 1, cost = { Mana = 3, }, }, + [2] = { cooldown = 0.25, levelRequirement = 3, storedUses = 1, cost = { Mana = 4, }, }, + [3] = { cooldown = 0.25, levelRequirement = 6, storedUses = 1, cost = { Mana = 5, }, }, + [4] = { cooldown = 0.25, levelRequirement = 10, storedUses = 1, cost = { Mana = 6, }, }, + [5] = { cooldown = 0.25, levelRequirement = 14, storedUses = 1, cost = { Mana = 7, }, }, + [6] = { cooldown = 0.25, levelRequirement = 18, storedUses = 1, cost = { Mana = 8, }, }, + [7] = { cooldown = 0.25, levelRequirement = 22, storedUses = 1, cost = { Mana = 9, }, }, + [8] = { cooldown = 0.25, levelRequirement = 26, storedUses = 1, cost = { Mana = 10, }, }, + [9] = { cooldown = 0.25, levelRequirement = 31, storedUses = 1, cost = { Mana = 12, }, }, + [10] = { cooldown = 0.25, levelRequirement = 36, storedUses = 1, cost = { Mana = 13, }, }, + [11] = { cooldown = 0.25, levelRequirement = 41, storedUses = 1, cost = { Mana = 15, }, }, + [12] = { cooldown = 0.25, levelRequirement = 46, storedUses = 1, cost = { Mana = 17, }, }, + [13] = { cooldown = 0.25, levelRequirement = 52, storedUses = 1, cost = { Mana = 19, }, }, + [14] = { cooldown = 0.25, levelRequirement = 58, storedUses = 1, cost = { Mana = 21, }, }, + [15] = { cooldown = 0.25, levelRequirement = 64, storedUses = 1, cost = { Mana = 23, }, }, + [16] = { cooldown = 0.25, levelRequirement = 66, storedUses = 1, cost = { Mana = 26, }, }, + [17] = { cooldown = 0.25, levelRequirement = 72, storedUses = 1, cost = { Mana = 29, }, }, + [18] = { cooldown = 0.25, levelRequirement = 78, storedUses = 1, cost = { Mana = 32, }, }, + [19] = { cooldown = 0.25, levelRequirement = 84, storedUses = 1, cost = { Mana = 36, }, }, + [20] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 39, }, }, + [21] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 43, }, }, + [22] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 48, }, }, + [23] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 53, }, }, + [24] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 58, }, }, + [25] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 64, }, }, + [26] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 70, }, }, + [27] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 77, }, }, + [28] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 84, }, }, + [29] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 92, }, }, + [30] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 101, }, }, + [31] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 110, }, }, + [32] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 120, }, }, + [33] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 131, }, }, + [34] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 143, }, }, + [35] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 156, }, }, + [36] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 170, }, }, + [37] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 186, }, }, + [38] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 202, }, }, + [39] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 220, }, }, + [40] = { cooldown = 0.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 239, }, }, + }, + statSets = { + [1] = { + label = "Elemental Expression", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_expression_statset_0", + baseFlags = { + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fiery Explosion", + baseEffectiveness = 2.625, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_expression_statset_1", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "active_skill_base_area_of_effect_radius", 36 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "is_area_damage", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 8, 12, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 11, 16, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 22, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 19, 29, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 25, 37, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 37, 55, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 44, 66, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 52, 78, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 61, 91, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 71, 106, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 82, 124, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 95, 143, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 110, 165, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 126, 189, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 144, 216, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 165, 247, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 188, 282, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 214, 321, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 244, 366, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 277, 416, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 315, 473, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 358, 537, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 407, 610, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 462, 693, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 525, 787, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 596, 894, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 677, 1015, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 769, 1153, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 874, 1311, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 994, 1491, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1131, 1697, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1288, 1932, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1468, 2201, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1674, 2510, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1910, 2865, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2181, 3272, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2494, 3741, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2854, 4280, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3269, 4903, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Icy Wave", + baseEffectiveness = 2.1524999141693, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_expression_statset_2", + baseFlags = { + spell = true, + projectile = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "base_number_of_projectiles", 3 }, + { "fixed_projectile_height", 15 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "always_pierce", + "show_number_of_projectiles", + "base_is_projectile", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 7, 10, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 9, 14, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 12, 18, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, 24, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, 30, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 25, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 30, 45, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 36, 54, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 42, 64, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 50, 75, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 58, 87, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 68, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 78, 117, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 90, 135, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 103, 155, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 118, 177, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 203, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 154, 231, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 176, 264, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 227, 341, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 259, 388, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 294, 441, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 334, 500, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 379, 568, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 430, 645, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 488, 733, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 555, 832, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 630, 946, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 717, 1075, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 815, 1223, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 928, 1391, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1056, 1584, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1203, 1805, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1372, 2058, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1566, 2349, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1789, 2683, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2045, 3067, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2340, 3510, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2680, 4020, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Arcing Bolt", + baseEffectiveness = 2.414999961853, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0082000000402331, + statDescriptionScope = "elemental_expression_statset_3", + baseFlags = { + spell = true, + chaining = true, + }, + constantStats = { + { "chance_to_be_trigger_elemental_expression_%", 100 }, + { "number_of_chains", 7 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 3, 16, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 4, 21, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 5, 29, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, 38, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 8, 48, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 10, 59, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 13, 72, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 15, 86, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 18, 101, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 21, 119, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 24, 139, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 33, 186, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 38, 214, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 43, 246, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 50, 282, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 57, 322, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 65, 368, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 74, 419, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 84, 477, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 96, 542, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 109, 616, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 124, 700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 140, 795, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 159, 903, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 181, 1025, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 206, 1165, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 233, 1323, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 265, 1503, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 302, 1709, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 343, 1943, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 390, 2211, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 444, 2518, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 506, 2869, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 577, 3272, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 659, 3734, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 753, 4265, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 860, 4875, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 985, 5579, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1128, 6390, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ElementalStormPlayer"] = { + name = "Elemental Storm", + baseTypeName = "Elemental Storm", + icon = "Art/2DArt/SkillIcons/SorceressElementalStorm.dds", + fromTree = true, + color = 4, + description = "Create a stationary Fire, Cold or Lightning storm at a target location for a duration, based on the highest Elemental Damage type for the Hit that Triggered the storm. Hits which do not deal Elemental Damage will not Trigger the storm.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, }, + castTime = 0, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { cooldown = 3, levelRequirement = 0, storedUses = 1, cost = { Mana = 8, }, }, + [2] = { cooldown = 3, levelRequirement = 3, storedUses = 1, cost = { Mana = 9, }, }, + [3] = { cooldown = 3, levelRequirement = 6, storedUses = 1, cost = { Mana = 10, }, }, + [4] = { cooldown = 3, levelRequirement = 10, storedUses = 1, cost = { Mana = 12, }, }, + [5] = { cooldown = 3, levelRequirement = 14, storedUses = 1, cost = { Mana = 13, }, }, + [6] = { cooldown = 3, levelRequirement = 18, storedUses = 1, cost = { Mana = 15, }, }, + [7] = { cooldown = 3, levelRequirement = 22, storedUses = 1, cost = { Mana = 17, }, }, + [8] = { cooldown = 3, levelRequirement = 26, storedUses = 1, cost = { Mana = 19, }, }, + [9] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 21, }, }, + [10] = { cooldown = 3, levelRequirement = 36, storedUses = 1, cost = { Mana = 23, }, }, + [11] = { cooldown = 3, levelRequirement = 41, storedUses = 1, cost = { Mana = 26, }, }, + [12] = { cooldown = 3, levelRequirement = 46, storedUses = 1, cost = { Mana = 28, }, }, + [13] = { cooldown = 3, levelRequirement = 52, storedUses = 1, cost = { Mana = 31, }, }, + [14] = { cooldown = 3, levelRequirement = 58, storedUses = 1, cost = { Mana = 34, }, }, + [15] = { cooldown = 3, levelRequirement = 64, storedUses = 1, cost = { Mana = 37, }, }, + [16] = { cooldown = 3, levelRequirement = 66, storedUses = 1, cost = { Mana = 40, }, }, + [17] = { cooldown = 3, levelRequirement = 72, storedUses = 1, cost = { Mana = 43, }, }, + [18] = { cooldown = 3, levelRequirement = 78, storedUses = 1, cost = { Mana = 47, }, }, + [19] = { cooldown = 3, levelRequirement = 84, storedUses = 1, cost = { Mana = 51, }, }, + [20] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 55, }, }, + [21] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 60, }, }, + [22] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 64, }, }, + [23] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 69, }, }, + [24] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 74, }, }, + [25] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 80, }, }, + [26] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 86, }, }, + [27] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 92, }, }, + [28] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 99, }, }, + [29] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 106, }, }, + [30] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 113, }, }, + [31] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 121, }, }, + [32] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 130, }, }, + [33] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 138, }, }, + [34] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 148, }, }, + [35] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 158, }, }, + [36] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 168, }, }, + [37] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 179, }, }, + [38] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 191, }, }, + [39] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 203, }, }, + [40] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 216, }, }, + }, + statSets = { + [1] = { + label = "Elemental Storm", + baseEffectiveness = 0.5625, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "elemental_storm", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire", + baseEffectiveness = 0.55000001192093, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "elemental_storm", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + }, + levels = { + [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 89, 133, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 178, 266, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 235, 353, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 271, 407, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 649, 974, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 754, 1131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 876, 1315, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1020, 1530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Lightning", + baseEffectiveness = 0.41999998688698, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "elemental_storm", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 13, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 3, 18, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 4, 22, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 5, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 5, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 8, 47, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 10, 54, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 11, 62, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 15, 82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 17, 95, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 19, 109, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 22, 125, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 25, 144, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 29, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 33, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 38, 218, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 44, 250, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 51, 288, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 59, 332, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 67, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 78, 440, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 90, 508, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 103, 586, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 120, 678, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 138, 784, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 160, 908, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 186, 1054, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 216, 1223, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 251, 1422, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 292, 1656, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Cold", + baseEffectiveness = 0.41999998688698, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "elemental_storm", + statMap = { + ["tornado_base_damage_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "tornado_base_damage_interval_ms", 250 }, + { "number_of_tornados_allowed", 50 }, + { "skill_override_pvp_scaling_time_ms", 1000 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "skill_can_add_multiple_charges_per_action", + "damage_cannot_be_reflected_or_leech_if_used_by_other_object", + "is_area_damage", + "tornado_hinder", + "is_triggerable_elemental_storm", + "global_cannot_crit", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 136, 203, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 207, 311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 239, 358, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 369, 554, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 428, 641, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 496, 744, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 576, 864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 779, 1169, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["AmazonTriggerElementalSurgePlayer"] = { + name = "Elemental Surge", + baseTypeName = "Elemental Surge", + icon = "Art/2DArt/SkillIcons/AmazonElementalInfusionSkillIcon.dds", + fromTree = true, + color = 4, + description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.15 }, + }, + levels = { + [1] = { baseMultiplier = 0.5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.55, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.61, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.66, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.72, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.77, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.83, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.88, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.93, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.99, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.05, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.17, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.25, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.32, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.41, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.5, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.59, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.7, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.93, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 2.06, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 2.2, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.34, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.5, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.67, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 3.03, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 3.24, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 3.45, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.68, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.93, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 4.19, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 4.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 4.76, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 5.42, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 5.78, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 6.58, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Cold Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_surge", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fire Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_surge", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Lightning Surge", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "elemental_surge", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "base_skill_effect_duration", 15000 }, + { "maximum_number_of_instilling_stacks", 6 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + }, + stats = { + "is_area_damage", + "cannot_consume_power_frenzy_endurance_charges", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { baseMultiplier = 0.5, actorLevel = 1, }, + [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["EncaseInJadePlayer"] = { + name = "Encase in Jade", + baseTypeName = "Encase in Jade", + icon = "Art/2DArt/SkillIcons/BruteWarbringerEncasedJade.dds", + fromTree = true, + color = 4, + description = "Consume all stacks of Jade to grant Guard based off your maximum Life for each Jade consumed. You cannot gain Jade stacks while you have Guard.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, }, + castTime = 0.3, + qualityStats = { + { "maximum_life_%_damage_absorbed_per_jade_consumed", 0.05 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 15, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 15, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 15, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 15, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 15, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 15, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 15, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 15, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 15, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 15, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 15, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 15, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 15, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 15, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 15, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 15, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 15, }, }, + }, + statSets = { + [1] = { + label = "Encase in Jade", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "encase_in_jade", + baseFlags = { + duration = true, + }, + constantStats = { + { "maximum_life_%_damage_absorbed_per_jade_consumed", 6 }, + }, + stats = { + "base_skill_effect_duration", + "base_deal_no_damage", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportEshsProwess"] = { + name = "Esh's Prowess", + description = "Supports Lightning skills that Hit targets, granting them an additional level and causing them to only roll the minimum or maximum value for Lightning damage. Does not support skills which do not have levels.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Lightning, SkillType.Damage, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SingleLevelSkill, }, + gemFamily = { "Mastery",}, + isLineage = true, + flavourText = {"Knowledge unending had transcended physical form.", "Her minds raced through metal latticework as the", "flesh of the melding reached up to contain her.", }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Esh's Prowess", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "supported_lightning_skill_gem_level_+", 1 }, + }, + stats = { + "lightning_damage_roll_always_min_or_max", + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["EternalMarchPlayer"] = { + name = "Eternal March", + baseTypeName = "Eternal March", + icon = "Art/2DArt/SkillIcons/ExpeditionWardforgedMinions.dds", + color = 4, + description = "Spend Runic Ward to instantly Revive your Minions. Prioritises the most powerful minions first.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Triggerable] = true, }, + castTime = 0, + qualityStats = { + { "skill_eternal_march_maximum_ward_cost", 10 }, + }, + levels = { + [1] = { cooldown = 4, levelRequirement = 0, storedUses = 1, }, + [2] = { cooldown = 4, levelRequirement = 3, storedUses = 1, }, + [3] = { cooldown = 4, levelRequirement = 6, storedUses = 1, }, + [4] = { cooldown = 4, levelRequirement = 10, storedUses = 1, }, + [5] = { cooldown = 4, levelRequirement = 14, storedUses = 1, }, + [6] = { cooldown = 4, levelRequirement = 18, storedUses = 1, }, + [7] = { cooldown = 4, levelRequirement = 22, storedUses = 1, }, + [8] = { cooldown = 4, levelRequirement = 26, storedUses = 1, }, + [9] = { cooldown = 4, levelRequirement = 31, storedUses = 1, }, + [10] = { cooldown = 4, levelRequirement = 36, storedUses = 1, }, + [11] = { cooldown = 4, levelRequirement = 41, storedUses = 1, }, + [12] = { cooldown = 4, levelRequirement = 46, storedUses = 1, }, + [13] = { cooldown = 4, levelRequirement = 52, storedUses = 1, }, + [14] = { cooldown = 4, levelRequirement = 58, storedUses = 1, }, + [15] = { cooldown = 4, levelRequirement = 64, storedUses = 1, }, + [16] = { cooldown = 4, levelRequirement = 66, storedUses = 1, }, + [17] = { cooldown = 4, levelRequirement = 72, storedUses = 1, }, + [18] = { cooldown = 4, levelRequirement = 78, storedUses = 1, }, + [19] = { cooldown = 4, levelRequirement = 84, storedUses = 1, }, + [20] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [21] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [22] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [23] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [24] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [25] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [26] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [27] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [28] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [29] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [30] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [31] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [33] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [34] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [35] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [36] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [37] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [38] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [39] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [40] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + }, + statSets = { + [1] = { + label = "Eternal March", + baseEffectiveness = 5, + incrementalEffectiveness = 0.27000001072884, + damageIncrementalEffectiveness = 0.0049999998882413, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + stats = { + "skill_eternal_march_maximum_ward_cost", + "skill_eternal_march_life_per_ward_spent_%", + "base_skill_is_instant", + "base_deal_no_damage", + }, + levels = { + [1] = { 19, 300, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 33, 300, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 51, 400, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 71, 400, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 94, 400, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 119, 500, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 146, 500, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 176, 600, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 208, 700, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 244, 700, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 283, 800, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 326, 900, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 373, 1000, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 424, 1100, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 481, 1200, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 542, 1300, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 610, 1500, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 684, 1600, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 764, 1800, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 853, 2000, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 950, 2100, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1057, 2100, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1173, 2200, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1301, 2300, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1442, 2300, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1596, 2400, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1765, 2500, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1952, 2600, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 2157, 2600, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2382, 2700, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2630, 2800, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2903, 2900, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 3204, 3000, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3536, 3100, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 3902, 3200, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 4307, 3300, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 4753, 3400, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 5247, 3500, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 5793, 3600, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 6397, 3700, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ExplosiveConcoctionPlayer"] = { + name = "Explosive Concoction", + baseTypeName = "Explosive Concoction", + 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", + 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, + }, + castTime = 1, + qualityStats = { + { "explosive_concoction_number_of_secondary_projectiles", 0.1 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 5, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 5, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 5, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 5, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 5, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 5, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 5, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 5, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 5, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 5, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 5, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 5, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 5, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 5, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 5, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 5, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 5, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Flask", + baseEffectiveness = 4.5, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "explosive_concoction", + baseFlags = { + attack = true, + projectile = true, + duration = true, + area = true, + }, + constantStats = { + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + { "active_skill_ignite_chance_+%_final", 100 }, + }, + stats = { + "main_hand_weapon_minimum_fire_damage", + "main_hand_weapon_maximum_fire_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", + "can_perform_skill_while_moving", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + }, + levels = { + [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ExplosiveTransmutationPlayer"] = { + name = "Explosive Transmutation", + baseTypeName = "Explosive Transmutation", + icon = "Art/2DArt/SkillIcons/ExpeditionExplosiveTransmutation.dds", + color = 4, + description = "While active, picking up Remnants Triggers a deadly explosion, dealing damage at the location of the Remnant based on the type of Remnant picked up.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + [2] = { levelRequirement = 3, spiritReservationFlat = 30, }, + [3] = { levelRequirement = 6, spiritReservationFlat = 30, }, + [4] = { levelRequirement = 10, spiritReservationFlat = 30, }, + [5] = { levelRequirement = 14, spiritReservationFlat = 30, }, + [6] = { levelRequirement = 18, spiritReservationFlat = 30, }, + [7] = { levelRequirement = 22, spiritReservationFlat = 30, }, + [8] = { levelRequirement = 26, spiritReservationFlat = 30, }, + [9] = { levelRequirement = 31, spiritReservationFlat = 30, }, + [10] = { levelRequirement = 36, spiritReservationFlat = 30, }, + [11] = { levelRequirement = 41, spiritReservationFlat = 30, }, + [12] = { levelRequirement = 46, spiritReservationFlat = 30, }, + [13] = { levelRequirement = 52, spiritReservationFlat = 30, }, + [14] = { levelRequirement = 58, spiritReservationFlat = 30, }, + [15] = { levelRequirement = 64, spiritReservationFlat = 30, }, + [16] = { levelRequirement = 66, spiritReservationFlat = 30, }, + [17] = { levelRequirement = 72, spiritReservationFlat = 30, }, + [18] = { levelRequirement = 78, spiritReservationFlat = 30, }, + [19] = { levelRequirement = 84, spiritReservationFlat = 30, }, + [20] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [21] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [22] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [23] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [24] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [25] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [26] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [27] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [28] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [29] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [30] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [31] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [32] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [33] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [34] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [35] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [36] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [37] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [38] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [39] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [40] = { levelRequirement = 90, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Explosive Transmutation", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "transmutation_reservation", + baseFlags = { + }, + constantStats = { + { "skill_specific_stat_description_mode", 1 }, + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["TriggeredExplosiveTransmutationExplosionPlayer"] = { + name = "Transmutation Explosion", + hidden = true, + icon = "Art/2DArt/SkillIcons/ExpeditionExplosiveTransmutation.dds", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Physical] = true, [SkillType.Cold] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.Chaos] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Damage] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, + }, + levels = { + [1] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 7, }, }, + [2] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 7, }, }, + [3] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 8, }, }, + [4] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 9, }, }, + [5] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 10, }, }, + [6] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 11, }, }, + [7] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 12, }, }, + [8] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 14, }, }, + [9] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 15, }, }, + [10] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 16, }, }, + [11] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 17, }, }, + [12] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 18, }, }, + [13] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 20, }, }, + [14] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 21, }, }, + [15] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 22, }, }, + [16] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 24, }, }, + [17] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 25, }, }, + [18] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 27, }, }, + [19] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 28, }, }, + [20] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 30, }, }, + [21] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 32, }, }, + [22] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 33, }, }, + [23] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 35, }, }, + [24] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 37, }, }, + [25] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 39, }, }, + [26] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 41, }, }, + [27] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 42, }, }, + [28] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 44, }, }, + [29] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 47, }, }, + [30] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 49, }, }, + [31] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 51, }, }, + [32] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 53, }, }, + [33] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 55, }, }, + [34] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 58, }, }, + [35] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 60, }, }, + [36] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 63, }, }, + [37] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 65, }, }, + [38] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 68, }, }, + [39] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 71, }, }, + [40] = { cooldown = 0.5, critChance = 14, levelRequirement = 0, storedUses = 5, cost = { Ward = 74, }, }, + }, + statSets = { + [1] = { + label = "Physical", + baseEffectiveness = 1.3999999761581, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "explosive_transmutation_statset_0", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "is_area_damage", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 4, 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 11, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 24, 36, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 40, 60, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 47, 70, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 55, 82, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 63, 95, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 73, 110, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 85, 127, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 98, 146, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 149, 223, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 171, 256, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 196, 294, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 225, 338, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 259, 388, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 297, 446, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 342, 513, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 393, 589, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 452, 678, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 599, 898, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 690, 1036, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 797, 1195, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 920, 1380, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1063, 1595, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1230, 1845, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1425, 2138, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1653, 2479, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1919, 2878, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2231, 3347, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2597, 3896, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Cold", + baseEffectiveness = 1.2000000476837, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, + statDescriptionScope = "explosive_transmutation_statset_1", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "is_area_damage", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 0, 0, 4, 6, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 5, 8, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 7, 10, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 9, 13, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 11, 17, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 14, 20, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 16, 25, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 20, 29, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 23, 35, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 27, 41, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 31, 47, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 36, 54, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 42, 63, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 48, 72, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 55, 82, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 62, 94, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 71, 106, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 81, 121, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 91, 137, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 103, 155, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 117, 175, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 132, 198, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 149, 223, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 168, 252, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 190, 284, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 214, 321, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 241, 362, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 272, 408, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 307, 460, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 346, 519, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 391, 586, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 441, 662, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 498, 747, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 563, 845, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 637, 955, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 721, 1081, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 816, 1224, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 924, 1387, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 1048, 1572, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 1189, 1784, critChance = 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Fire", + baseEffectiveness = 1.3500000238419, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0074000000022352, + statDescriptionScope = "explosive_transmutation_statset_2", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", + "is_area_damage", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 8, 12, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 11, 16, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 15, 22, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 19, 29, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 25, 37, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 30, 45, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 37, 55, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 44, 66, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 52, 78, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 61, 91, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 71, 106, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 82, 124, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 95, 143, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 110, 165, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 126, 189, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 144, 216, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 165, 247, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 188, 282, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 214, 321, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 244, 366, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 277, 416, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 315, 473, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 358, 537, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 407, 610, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 462, 693, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 525, 787, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 596, 894, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 677, 1015, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 769, 1153, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 874, 1311, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 994, 1491, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1131, 1697, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1288, 1932, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1468, 2201, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1674, 2510, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1910, 2865, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 2181, 3272, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 2494, 3741, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2854, 4280, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 3269, 4903, critChance = 7, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 0, 0, 4, 6, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 6, 8, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 8, 11, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 10, 15, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 12, 19, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 15, 23, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 18, 28, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 22, 33, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 26, 39, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 30, 46, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 35, 53, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 41, 61, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 47, 71, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 54, 81, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 62, 92, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 70, 105, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 80, 120, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 91, 136, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 103, 154, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 116, 174, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 131, 197, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 148, 223, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 168, 251, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 189, 284, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 213, 320, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 241, 361, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 271, 407, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 306, 459, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 345, 518, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 389, 584, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 440, 659, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 496, 744, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 561, 841, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 634, 950, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 716, 1075, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 811, 1216, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 918, 1377, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 1040, 1560, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 1179, 1769, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 1338, 2007, critChance = 8, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [4] = { + label = "Lightning", + baseEffectiveness = 1.25, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, + statDescriptionScope = "explosive_transmutation_statset_3", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "is_area_damage", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 0, 0, 1, 9, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 1, 12, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 1, 17, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 1, 22, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 1, 28, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 2, 35, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 2, 42, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 3, 50, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 3, 60, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 4, 71, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 4, 83, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 5, 96, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 6, 112, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 7, 129, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 8, 149, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 9, 171, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 10, 196, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 12, 225, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 14, 258, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 16, 295, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 18, 337, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 20, 385, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 23, 440, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 26, 503, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 30, 574, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 35, 656, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 39, 749, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 45, 856, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 52, 979, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 59, 1121, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 68, 1283, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 77, 1470, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 89, 1686, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 102, 1935, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 117, 2222, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 134, 2555, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 155, 2941, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 178, 3388, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 206, 3908, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 237, 4512, critChance = 9, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [5] = { + label = "Chaos", + baseEffectiveness = 1.5, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "explosive_transmutation_statset_4", + baseFlags = { + spell = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "is_area_damage", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + }, + levels = { + [1] = { 0, 0, 4, 8, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 6, 10, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 8, 14, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 10, 18, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 12, 23, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 15, 29, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 19, 35, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 23, 42, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 27, 50, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 32, 59, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 38, 70, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 44, 82, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 51, 95, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 59, 110, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 69, 128, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 79, 147, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 92, 170, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 105, 196, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 121, 225, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 139, 259, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 160, 298, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 184, 342, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 211, 393, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 243, 451, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 279, 518, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 320, 595, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 368, 684, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 424, 787, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 488, 906, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 562, 1043, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 647, 1202, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 747, 1387, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 862, 1601, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 997, 1851, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1153, 2142, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1336, 2481, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 1549, 2877, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 1799, 3341, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2092, 3884, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 2435, 4522, critChance = 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaCastFireSpellOnHitPlayer"] = { + name = "Fire Spell on Melee Hit", + baseTypeName = "Fire Spell on Melee Hit", + icon = "Art/2DArt/SkillIcons/SmithOfKitavaTriggerFireballsSkillIcon.dds", + fromTree = true, + color = 4, + description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Fire spells on reaching maximum Energy.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "energy_generated_+%", 0.75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Fire Spell on Melee Hit", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "cast_fire_spell_on_hit", + baseFlags = { + }, + constantStats = { + { "cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "energy_generated_+%", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", + "base_deal_no_damage", + }, + levels = { + [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMetaCastFireSpellOnHitPlayer"] = { + name = "SupportMetaCastFireSpellOnHitPlayer", + hidden = true, + fromTree = true, + support = true, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.Fire, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.InbuiltTrigger, }, + isTrigger = true, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMetaCastFireSpellOnHitPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + }, + stats = { + "damage_+%", + "triggered_by_generic_ongoing_trigger", + "generic_ongoing_trigger_triggers_at_maximum_energy", + "no_cost", + }, + levels = { + [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 30, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 40, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 70, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 80, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 90, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 110, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 120, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 130, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 140, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 150, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 160, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 170, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 180, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 190, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 200, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 210, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 220, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 230, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 240, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 250, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 260, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 270, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 280, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 290, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 300, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 310, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 320, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 330, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 340, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 350, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 360, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 370, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 380, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 390, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 400, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportFistOfKalguurPlayer"] = { + name = "Fist Of Kalguur", + description = "Supports Slams you use yourself, allowing them to spend large amounts of Runic Ward to become Runically Boosted. Runically Boosted Slams are Empowered with extra Physical damage and create a rune the first time they hit an enemy. The rune erupts in an Aftershock after a duration. Cannot support Channelling Skills.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.UsedByProxy, SkillType.Channel, }, + gemFamily = { "FistOfWar",}, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Support", + baseEffectiveness = 7, + incrementalEffectiveness = 0.050000000745058, + damageIncrementalEffectiveness = 0.011500000022352, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_number_of_runic_aftershocks_allowed", 1 }, + { "runic_boosted_attack_damage_%_gained_as_physical", 20 }, + { "support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost", 150 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredFistOfKalguurPlayer"] = { + name = "Fist of Kalguur", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Melee] = true, [SkillType.Slam] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 1.2, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [2] = { baseMultiplier = 1.32, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [3] = { baseMultiplier = 1.46, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [4] = { baseMultiplier = 1.6, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [5] = { baseMultiplier = 1.74, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [6] = { baseMultiplier = 1.89, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [7] = { baseMultiplier = 2.04, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [8] = { baseMultiplier = 2.18, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [9] = { baseMultiplier = 2.32, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [10] = { baseMultiplier = 2.46, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [11] = { baseMultiplier = 2.62, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [12] = { baseMultiplier = 2.8, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [13] = { baseMultiplier = 2.99, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [14] = { baseMultiplier = 3.19, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [15] = { baseMultiplier = 3.42, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [16] = { baseMultiplier = 3.67, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [17] = { baseMultiplier = 3.93, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [18] = { baseMultiplier = 4.23, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [19] = { baseMultiplier = 4.55, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [20] = { baseMultiplier = 4.9, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [21] = { baseMultiplier = 5.28, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [22] = { baseMultiplier = 5.69, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [23] = { baseMultiplier = 6.13, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [24] = { baseMultiplier = 6.6, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [25] = { baseMultiplier = 7.11, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [26] = { baseMultiplier = 7.66, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [27] = { baseMultiplier = 8.25, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [28] = { baseMultiplier = 8.89, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [29] = { baseMultiplier = 9.58, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [30] = { baseMultiplier = 10.32, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [31] = { baseMultiplier = 11.11, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [32] = { baseMultiplier = 11.97, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [33] = { baseMultiplier = 12.9, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [34] = { baseMultiplier = 13.89, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [35] = { baseMultiplier = 14.97, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [36] = { baseMultiplier = 16.12, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [37] = { baseMultiplier = 17.37, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [38] = { baseMultiplier = 18.71, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [39] = { baseMultiplier = 20.16, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [40] = { baseMultiplier = 21.72, cooldown = 0.5, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + }, + statSets = { + [1] = { + label = "Rune", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_fist_of_kalguur", + baseFlags = { + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 24 }, + { "triggered_by_fist_of_kalguur_support_%", 100 }, + { "base_skill_effect_duration", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FragmentsOfThePastPlayer"] = { + name = "Fragments of the Past", + baseTypeName = "Fragments of the Past", + icon = "Art/2DArt/SkillIcons/ExpeditionFragmentsofthePast.dds", + color = 4, + description = "Spend Runic Ward to create a Verisium volcano that deals damage on initial eruption and Triggers Ice Fragments.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GamepadDeflectable] = true, [SkillType.Cold] = true, [SkillType.Sustained] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["None"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -40, baseMultiplier = 0.5, levelRequirement = 0, cost = { Ward = 11, }, }, + [2] = { attackSpeedMultiplier = -40, baseMultiplier = 0.55, levelRequirement = 3, cost = { Ward = 12, }, }, + [3] = { attackSpeedMultiplier = -40, baseMultiplier = 0.61, levelRequirement = 6, cost = { Ward = 14, }, }, + [4] = { attackSpeedMultiplier = -40, baseMultiplier = 0.67, levelRequirement = 10, cost = { Ward = 15, }, }, + [5] = { attackSpeedMultiplier = -40, baseMultiplier = 0.73, levelRequirement = 14, cost = { Ward = 17, }, }, + [6] = { attackSpeedMultiplier = -40, baseMultiplier = 0.79, levelRequirement = 18, cost = { Ward = 19, }, }, + [7] = { attackSpeedMultiplier = -40, baseMultiplier = 0.85, levelRequirement = 22, cost = { Ward = 21, }, }, + [8] = { attackSpeedMultiplier = -40, baseMultiplier = 0.91, levelRequirement = 26, cost = { Ward = 23, }, }, + [9] = { attackSpeedMultiplier = -40, baseMultiplier = 0.97, levelRequirement = 31, cost = { Ward = 26, }, }, + [10] = { attackSpeedMultiplier = -40, baseMultiplier = 1.03, levelRequirement = 36, cost = { Ward = 28, }, }, + [11] = { attackSpeedMultiplier = -40, baseMultiplier = 1.09, levelRequirement = 41, cost = { Ward = 31, }, }, + [12] = { attackSpeedMultiplier = -40, baseMultiplier = 1.17, levelRequirement = 46, cost = { Ward = 33, }, }, + [13] = { attackSpeedMultiplier = -40, baseMultiplier = 1.25, levelRequirement = 52, cost = { Ward = 36, }, }, + [14] = { attackSpeedMultiplier = -40, baseMultiplier = 1.33, levelRequirement = 58, cost = { Ward = 39, }, }, + [15] = { attackSpeedMultiplier = -40, baseMultiplier = 1.42, levelRequirement = 64, cost = { Ward = 42, }, }, + [16] = { attackSpeedMultiplier = -40, baseMultiplier = 1.53, levelRequirement = 66, cost = { Ward = 45, }, }, + [17] = { attackSpeedMultiplier = -40, baseMultiplier = 1.64, levelRequirement = 72, cost = { Ward = 48, }, }, + [18] = { attackSpeedMultiplier = -40, baseMultiplier = 1.76, levelRequirement = 78, cost = { Ward = 52, }, }, + [19] = { attackSpeedMultiplier = -40, baseMultiplier = 1.89, levelRequirement = 84, cost = { Ward = 55, }, }, + [20] = { attackSpeedMultiplier = -40, baseMultiplier = 2.04, levelRequirement = 90, cost = { Ward = 59, }, }, + [21] = { attackSpeedMultiplier = -40, baseMultiplier = 2.2, levelRequirement = 90, cost = { Ward = 63, }, }, + [22] = { attackSpeedMultiplier = -40, baseMultiplier = 2.37, levelRequirement = 90, cost = { Ward = 67, }, }, + [23] = { attackSpeedMultiplier = -40, baseMultiplier = 2.55, levelRequirement = 90, cost = { Ward = 72, }, }, + [24] = { attackSpeedMultiplier = -40, baseMultiplier = 2.75, levelRequirement = 90, cost = { Ward = 76, }, }, + [25] = { attackSpeedMultiplier = -40, baseMultiplier = 2.96, levelRequirement = 90, cost = { Ward = 81, }, }, + [26] = { attackSpeedMultiplier = -40, baseMultiplier = 3.19, levelRequirement = 90, cost = { Ward = 86, }, }, + [27] = { attackSpeedMultiplier = -40, baseMultiplier = 3.44, levelRequirement = 90, cost = { Ward = 91, }, }, + [28] = { attackSpeedMultiplier = -40, baseMultiplier = 3.7, levelRequirement = 90, cost = { Ward = 97, }, }, + [29] = { attackSpeedMultiplier = -40, baseMultiplier = 3.99, levelRequirement = 90, cost = { Ward = 102, }, }, + [30] = { attackSpeedMultiplier = -40, baseMultiplier = 4.3, levelRequirement = 90, cost = { Ward = 108, }, }, + [31] = { attackSpeedMultiplier = -40, baseMultiplier = 4.63, levelRequirement = 90, cost = { Ward = 114, }, }, + [32] = { attackSpeedMultiplier = -40, baseMultiplier = 4.99, levelRequirement = 90, cost = { Ward = 121, }, }, + [33] = { attackSpeedMultiplier = -40, baseMultiplier = 5.37, levelRequirement = 90, cost = { Ward = 128, }, }, + [34] = { attackSpeedMultiplier = -40, baseMultiplier = 5.79, levelRequirement = 90, cost = { Ward = 135, }, }, + [35] = { attackSpeedMultiplier = -40, baseMultiplier = 6.24, levelRequirement = 90, cost = { Ward = 142, }, }, + [36] = { attackSpeedMultiplier = -40, baseMultiplier = 6.72, levelRequirement = 90, cost = { Ward = 150, }, }, + [37] = { attackSpeedMultiplier = -40, baseMultiplier = 7.24, levelRequirement = 90, cost = { Ward = 158, }, }, + [38] = { attackSpeedMultiplier = -40, baseMultiplier = 7.8, levelRequirement = 90, cost = { Ward = 166, }, }, + [39] = { attackSpeedMultiplier = -40, baseMultiplier = 8.4, levelRequirement = 90, cost = { Ward = 175, }, }, + [40] = { attackSpeedMultiplier = -40, baseMultiplier = 9.05, levelRequirement = 90, cost = { Ward = 184, }, }, + }, + statSets = { + [1] = { + label = "Fragments of the Past", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "fragments_of_the_past_statset_0", + baseFlags = { + attack = true, + duration = true, + }, + constantStats = { + { "base_number_of_ice_volcanos_allowed", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_skill_effect_duration", 8000 }, + { "ice_volcano_fires_projectiles_every_x_ms", 500 }, + { "active_skill_base_area_of_effect_radius", 12 }, + { "ice_volcano_eruption_additional_ice_fragment_projectiles", 2 }, + }, + stats = { + "can_perform_skill_while_moving", + "usable_while_shapeshifted", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FragmentsOfThePastFragmentPlayer"] = { + name = "Ice Fragments", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + skillTypes = { [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { baseMultiplier = 0.45, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.49, levelRequirement = 0, }, + [3] = { baseMultiplier = 0.54, levelRequirement = 0, }, + [4] = { baseMultiplier = 0.6, levelRequirement = 0, }, + [5] = { baseMultiplier = 0.64, levelRequirement = 0, }, + [6] = { baseMultiplier = 0.7, levelRequirement = 0, }, + [7] = { baseMultiplier = 0.75, levelRequirement = 0, }, + [8] = { baseMultiplier = 0.8, levelRequirement = 0, }, + [9] = { baseMultiplier = 0.84, levelRequirement = 0, }, + [10] = { baseMultiplier = 0.89, levelRequirement = 0, }, + [11] = { baseMultiplier = 0.94, levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { baseMultiplier = 1.06, levelRequirement = 0, }, + [14] = { baseMultiplier = 1.12, levelRequirement = 0, }, + [15] = { baseMultiplier = 1.19, levelRequirement = 0, }, + [16] = { baseMultiplier = 1.27, levelRequirement = 0, }, + [17] = { baseMultiplier = 1.35, levelRequirement = 0, }, + [18] = { baseMultiplier = 1.43, levelRequirement = 0, }, + [19] = { baseMultiplier = 1.53, levelRequirement = 0, }, + [20] = { baseMultiplier = 1.63, levelRequirement = 0, }, + [21] = { baseMultiplier = 1.74, levelRequirement = 0, }, + [22] = { baseMultiplier = 1.85, levelRequirement = 0, }, + [23] = { baseMultiplier = 1.98, levelRequirement = 0, }, + [24] = { baseMultiplier = 2.11, levelRequirement = 0, }, + [25] = { baseMultiplier = 2.25, levelRequirement = 0, }, + [26] = { baseMultiplier = 2.4, levelRequirement = 0, }, + [27] = { baseMultiplier = 2.56, levelRequirement = 0, }, + [28] = { baseMultiplier = 2.73, levelRequirement = 0, }, + [29] = { baseMultiplier = 2.91, levelRequirement = 0, }, + [30] = { baseMultiplier = 3.11, levelRequirement = 0, }, + [31] = { baseMultiplier = 3.31, levelRequirement = 0, }, + [32] = { baseMultiplier = 3.53, levelRequirement = 0, }, + [33] = { baseMultiplier = 3.77, levelRequirement = 0, }, + [34] = { baseMultiplier = 4.02, levelRequirement = 0, }, + [35] = { baseMultiplier = 4.29, levelRequirement = 0, }, + [36] = { baseMultiplier = 4.57, levelRequirement = 0, }, + [37] = { baseMultiplier = 4.88, levelRequirement = 0, }, + [38] = { baseMultiplier = 5.2, levelRequirement = 0, }, + [39] = { baseMultiplier = 5.55, levelRequirement = 0, }, + [40] = { baseMultiplier = 5.92, levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Ice Fragments", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "ice_fragments", + baseFlags = { + attack = true, + area = true, + projectile = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "ballistic_ice_chunk_cone_angle", 660 }, + { "base_skill_detonation_time", 2500 }, + { "base_number_of_projectiles", 2 }, + { "ice_fragment_min_chunk_distance", 1 }, + { "ice_fragment_max_chunk_distance", 35 }, + { "ice_fragment_auto_aim_radius", 2 }, + { "active_skill_projectile_speed_+%_final", 60 }, + { "ice_fragment_art_variation", 4 }, + { "ice_fragments_initial_firing_angle_override", 70 }, + }, + stats = { + "base_is_projectile", + "ballistic_projectiles_always_bounce", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "is_area_damage", + "triggered_by_primary_skill", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FrostflameNovaPlayer"] = { + name = "Frostflame Nova", + baseTypeName = "Frostflame Nova", + icon = "Art/2DArt/SkillIcons/ExpeditionFrostfireNova.dds", + color = 4, + description = "Unleash a wave of volatile ice that feeds on flames. While the wave doesn't deal damage, the ice latches onto Ignited enemies, refreshing the duration of their active Ignite and rapidly Freezing them but preventing them from being Ignited further until the Ignite expires.", + 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.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cascadable] = true, [SkillType.Fire] = true, }, + castTime = 0.7, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Ward = 11, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 12, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 14, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 15, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 17, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 19, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 21, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 23, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 26, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 28, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 31, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 33, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 36, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 39, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 42, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 45, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 48, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 52, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 55, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 59, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 63, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 67, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 72, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 76, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 81, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 86, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 91, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 97, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 102, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 108, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 114, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 121, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 128, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 135, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 142, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 150, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 158, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 166, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 175, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 184, }, }, + }, + statSets = { + [1] = { + label = "Wave", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "frostflame_nova", + baseFlags = { + spell = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 35 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Volatile Ice", + baseEffectiveness = 0.54000002145767, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "frostflame_nova", + baseFlags = { + spell = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_hit_damage_freeze_multiplier_+permyriad_final_per_1%_of_target_ailment_threshold_being_dealt_by_ignite_per_second", 1000 }, + { "skill_specific_stat_description_mode", 1 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "can_perform_skill_while_moving", + "base_skill_show_average_damage_instead_of_dps", + "display_statset_hide_usage_stats", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 2, 3, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 4, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, 5, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 5, 7, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6, 9, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 8, 12, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 10, 15, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 12, 18, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 14, 21, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 17, 26, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 20, 30, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 24, 36, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 28, 42, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 33, 49, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 38, 58, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, 67, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 52, 78, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 60, 91, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 70, 105, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 81, 122, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 94, 141, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 109, 163, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 126, 189, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 146, 219, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 169, 254, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 197, 295, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 228, 342, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 265, 397, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 308, 462, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 358, 537, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 417, 625, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 486, 728, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 567, 850, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 662, 993, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 774, 1161, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 907, 1360, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1063, 1595, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1249, 1873, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1469, 2203, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1730, 2595, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FulminatingConcoctionPlayer"] = { + name = "Fulminating Concoction", + baseTypeName = "Fulminating Concoction", + 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", + 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, + }, + castTime = 1, + qualityStats = { + { "active_skill_shock_chance_+%_final", 2 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Fulminating Concoction", + baseEffectiveness = 4.1999998092651, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "fulminating_concoction", + baseFlags = { + attack = true, + projectile = true, + duration = true, + area = true, + }, + constantStats = { + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "throw_flask_effects_type", 2 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, + { "active_skill_shock_chance_+%_final", 200 }, + { "active_skill_shock_effect_+%_final", 50 }, + }, + stats = { + "main_hand_weapon_minimum_lightning_damage", + "main_hand_weapon_maximum_lightning_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", + "can_perform_skill_while_moving", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + }, + levels = { + [1] = { 8, 24, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 14, 41, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 21, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 29, 87, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 37, 112, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 46, 139, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 56, 167, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 66, 197, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 76, 228, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 87, 261, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 98, 295, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 110, 331, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 123, 368, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 136, 407, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 149, 447, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 163, 489, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 178, 533, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 193, 578, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 208, 624, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 224, 672, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 240, 721, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 257, 772, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 275, 825, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 293, 879, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 311, 934, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 330, 991, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 350, 1050, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 370, 1110, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 390, 1171, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 411, 1234, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 433, 1299, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 455, 1365, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 477, 1432, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 500, 1501, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 524, 1572, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 548, 1644, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 573, 1718, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 598, 1793, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 623, 1870, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 649, 1948, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["FuturePastPlayer"] = { + name = "Future-Past", + baseTypeName = "Future-Past", + icon = "Art/2DArt/SkillIcons/HinekorasSightUnique.dds", + fromItem = true, + color = 4, + description = "Hinekora observes your Future-Past granting you the opportunity to subvert a lesser fate. After a period of Hindsight, she will grant you her Foresight, which prevents you from avoiding Hits while Dodge Rolling. When you are Hit while Dodge Rolling, Hinekora restores you to full Life immediately before taking damage from the Hit, and grants you Sight Beyond Sight, which prevents you from dying.", + skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "base_secondary_skill_effect_duration", 15 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Future-Past", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "future_past", + baseFlags = { + }, + constantStats = { + { "foresight_clone_duration_ms", 2000 }, + { "skill_desired_amount_override", 1 }, + { "base_skill_effect_duration", 20000 }, + }, + stats = { + "base_secondary_skill_effect_duration", + "base_deal_no_damage", + }, + notMinionStat = { + "base_secondary_skill_effect_duration", + }, + levels = { + [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4200, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4300, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4400, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4600, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4700, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4900, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 5000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 5100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 5200, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 5300, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 5400, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 5500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 5600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 5700, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 5800, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 5900, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 5950, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 6000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 6050, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 6100, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 6150, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 6200, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 6250, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 6300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 6350, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 6400, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 6450, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 6500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 6550, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 6600, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 6700, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 6750, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 6800, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 6850, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 6900, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 6950, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeleeGrenadeLauncherPlayer"] = { + name = "Grenade", + baseTypeName = "Grenade", + icon = "Art/2DArt/SkillIcons/TheRedemption.dds", + fromItem = true, + color = 4, + description = "Fire a bouncing Grenade that unleashes a shrapnel blast when its fuse expires.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Grenade] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Physical] = true, }, + weaponTypes = { + ["Crossbow"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { baseMultiplier = 0.65, cooldown = 1, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.71, cooldown = 1, levelRequirement = 3, storedUses = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.79, cooldown = 1, levelRequirement = 6, storedUses = 3, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.86, cooldown = 1, levelRequirement = 10, storedUses = 3, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.93, cooldown = 1, levelRequirement = 14, storedUses = 3, cost = { Mana = 0, }, }, + [6] = { cooldown = 1, levelRequirement = 18, storedUses = 3, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.08, cooldown = 1, levelRequirement = 22, storedUses = 3, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.15, cooldown = 1, levelRequirement = 26, storedUses = 3, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.21, cooldown = 1, levelRequirement = 31, storedUses = 3, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.28, cooldown = 1, levelRequirement = 36, storedUses = 3, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.36, cooldown = 1, levelRequirement = 41, storedUses = 3, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.44, cooldown = 1, levelRequirement = 46, storedUses = 3, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.53, cooldown = 1, levelRequirement = 52, storedUses = 3, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.62, cooldown = 1, levelRequirement = 58, storedUses = 3, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.72, cooldown = 1, levelRequirement = 64, storedUses = 3, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.83, cooldown = 1, levelRequirement = 66, storedUses = 3, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.95, cooldown = 1, levelRequirement = 72, storedUses = 3, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.07, cooldown = 1, levelRequirement = 78, storedUses = 3, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.21, cooldown = 1, levelRequirement = 84, storedUses = 3, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 2.35, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 2.51, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 2.68, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 2.86, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.05, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.25, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 3.47, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 3.7, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 3.94, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.21, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 4.49, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 4.79, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.1, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.44, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 5.81, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.19, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.61, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.05, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.52, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 8.02, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.55, cooldown = 1, levelRequirement = 90, storedUses = 3, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Grenade", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "player_melee_grenade_launcher", + baseFlags = { + attack = true, + area = true, + projectile = true, + }, + constantStats = { + { "action_allowed_queue_time_override_ms", 1000 }, + { "action_required_target_facing_angle_tolerance_degrees", 90 }, + { "base_skill_detonation_time", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "fixed_projectile_spread", 30 }, + { "active_skill_projectile_speed_+%_variation_final_if_multiple_projectiles", 15 }, + { "active_skill_base_area_of_effect_radius", 15 }, + }, + stats = { + "base_is_projectile", + "projectile_ballistic_angle_from_reference_event", + "projectile_uses_contact_position", + "is_area_damage", + "action_can_be_used_in_aiming_stance", + "ballistic_projectiles_always_bounce", + "can_perform_skill_while_moving", + "projectile_uses_contact_direction", + "base_skill_show_average_damage_instead_of_dps", + "projectiles_cannot_fork", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["GrimPillarsPlayer"] = { + name = "Grim Pillars", + baseTypeName = "Grim Pillars", + icon = "Art/2DArt/SkillIcons/ExpeditionGrimPillars.dds", + color = 4, + description = "Spend Runic Ward to cause damaging Ice-Crystal spears to erupt from the ground around you. These spears can be destroyed for an explosion of Cold damage.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.IceCrystal] = true, [SkillType.Area] = true, [SkillType.Nova] = true, [SkillType.Cascadable] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOn] = true, [SkillType.Limit] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, }, + castTime = 0.7, + qualityStats = { + { "grim_pillars_number_of_pillars_to_create", 0.1 }, + }, + levels = { + [1] = { critChance = 12, levelRequirement = 0, cost = { Ward = 15, }, }, + [2] = { critChance = 12, levelRequirement = 3, cost = { Ward = 17, }, }, + [3] = { critChance = 12, levelRequirement = 6, cost = { Ward = 19, }, }, + [4] = { critChance = 12, levelRequirement = 10, cost = { Ward = 21, }, }, + [5] = { critChance = 12, levelRequirement = 14, cost = { Ward = 24, }, }, + [6] = { critChance = 12, levelRequirement = 18, cost = { Ward = 26, }, }, + [7] = { critChance = 12, levelRequirement = 22, cost = { Ward = 29, }, }, + [8] = { critChance = 12, levelRequirement = 26, cost = { Ward = 32, }, }, + [9] = { critChance = 12, levelRequirement = 31, cost = { Ward = 35, }, }, + [10] = { critChance = 12, levelRequirement = 36, cost = { Ward = 38, }, }, + [11] = { critChance = 12, levelRequirement = 41, cost = { Ward = 42, }, }, + [12] = { critChance = 12, levelRequirement = 46, cost = { Ward = 45, }, }, + [13] = { critChance = 12, levelRequirement = 52, cost = { Ward = 49, }, }, + [14] = { critChance = 12, levelRequirement = 58, cost = { Ward = 53, }, }, + [15] = { critChance = 12, levelRequirement = 64, cost = { Ward = 57, }, }, + [16] = { critChance = 12, levelRequirement = 66, cost = { Ward = 61, }, }, + [17] = { critChance = 12, levelRequirement = 72, cost = { Ward = 66, }, }, + [18] = { critChance = 12, levelRequirement = 78, cost = { Ward = 71, }, }, + [19] = { critChance = 12, levelRequirement = 84, cost = { Ward = 76, }, }, + [20] = { critChance = 12, levelRequirement = 90, cost = { Ward = 81, }, }, + [21] = { critChance = 12, levelRequirement = 90, cost = { Ward = 86, }, }, + [22] = { critChance = 12, levelRequirement = 90, cost = { Ward = 92, }, }, + [23] = { critChance = 12, levelRequirement = 90, cost = { Ward = 98, }, }, + [24] = { critChance = 12, levelRequirement = 90, cost = { Ward = 104, }, }, + [25] = { critChance = 12, levelRequirement = 90, cost = { Ward = 110, }, }, + [26] = { critChance = 12, levelRequirement = 90, cost = { Ward = 117, }, }, + [27] = { critChance = 12, levelRequirement = 90, cost = { Ward = 124, }, }, + [28] = { critChance = 12, levelRequirement = 90, cost = { Ward = 132, }, }, + [29] = { critChance = 12, levelRequirement = 90, cost = { Ward = 140, }, }, + [30] = { critChance = 12, levelRequirement = 90, cost = { Ward = 148, }, }, + [31] = { critChance = 12, levelRequirement = 90, cost = { Ward = 156, }, }, + [32] = { critChance = 12, levelRequirement = 90, cost = { Ward = 165, }, }, + [33] = { critChance = 12, levelRequirement = 90, cost = { Ward = 174, }, }, + [34] = { critChance = 12, levelRequirement = 90, cost = { Ward = 184, }, }, + [35] = { critChance = 12, levelRequirement = 90, cost = { Ward = 194, }, }, + [36] = { critChance = 12, levelRequirement = 90, cost = { Ward = 204, }, }, + [37] = { critChance = 12, levelRequirement = 90, cost = { Ward = 215, }, }, + [38] = { critChance = 12, levelRequirement = 90, cost = { Ward = 227, }, }, + [39] = { critChance = 12, levelRequirement = 90, cost = { Ward = 238, }, }, + [40] = { critChance = 12, levelRequirement = 90, cost = { Ward = 251, }, }, + }, + statSets = { + [1] = { + label = "Pillars", + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.008899999782443, + statDescriptionScope = "grim_pillars_statset_0", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "grim_pillars_number_of_pillars_to_create", 8 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "active_skill_base_secondary_area_of_effect_radius", 12 }, + { "base_skill_effect_duration", 10000 }, + { "base_number_of_grim_pillars_allowed", 20 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "frost_wall_maximum_life", + "frost_wall_damage_taken_+%_final_from_enemies", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 3, 5, 27, -16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 4, 6, 48, 19, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 9, 81, 59, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7, 11, 123, 74, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 9, 14, 180, 97, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 17, 251, 121, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 14, 21, 345, 150, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 25, 468, 184, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 20, 30, 624, 204, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 24, 36, 825, 232, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 28, 42, 1079, 263, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 32, 49, 1400, 299, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 38, 56, 1806, 323, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 43, 65, 2315, 351, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 50, 75, 2955, 382, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 58, 86, 3762, 420, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 66, 99, 4772, 459, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 76, 114, 6024, 489, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 87, 130, 7589, 642, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 99, 149, 9536, 832, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 114, 170, 10013, 879, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 130, 195, 10513, 928, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 148, 222, 11039, 979, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 169, 254, 11591, 1033, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 193, 290, 12170, 1090, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 221, 331, 12779, 1149, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 252, 379, 13418, 1212, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 288, 433, 14088, 1277, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 330, 495, 14793, 1346, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 377, 566, 15533, 1418, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 432, 648, 16309, 1494, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 495, 743, 17125, 1574, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 568, 852, 17981, 1658, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 652, 977, 18880, 1746, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 749, 1123, 19823, 1838, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 861, 1291, 20815, 1935, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 991, 1486, 21856, 2036, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1141, 1712, 22949, 2143, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1316, 1974, 24096, 2255, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1520, 2280, 25301, 2373, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Explosion", + baseEffectiveness = 1.5, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "grim_pillars_statset_1", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "grim_pillars_number_of_pillars_to_create", 8 }, + { "base_skill_effect_duration", 10000 }, + { "base_number_of_grim_pillars_allowed", 20 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_hit_damage_freeze_multiplier_+%_final", 50 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "frost_wall_maximum_life", + "frost_wall_damage_taken_+%_final_from_enemies", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "can_perform_skill_while_moving", + "is_ice_crystal_explosion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + }, + levels = { + [1] = { 0, 0, 5, 7, 27, -16, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 6, 9, 48, 19, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 9, 13, 81, 59, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 11, 17, 123, 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 14, 21, 180, 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 18, 26, 251, 121, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 22, 32, 345, 150, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 26, 39, 468, 184, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 31, 46, 624, 204, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 37, 55, 825, 232, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 43, 64, 1079, 263, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 50, 75, 1400, 299, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 58, 88, 1806, 323, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 68, 102, 2315, 351, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 79, 118, 2955, 382, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 91, 136, 3762, 420, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 105, 157, 4772, 459, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 121, 181, 6024, 489, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 139, 208, 7589, 642, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 159, 239, 9536, 832, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 183, 275, 10013, 879, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 210, 316, 10513, 928, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 242, 362, 11039, 979, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 277, 416, 11591, 1033, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 319, 478, 12170, 1090, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 366, 549, 12779, 1149, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 421, 631, 13418, 1212, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 484, 726, 14088, 1277, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 557, 836, 14793, 1346, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 642, 963, 15533, 1418, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 740, 1110, 16309, 1494, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 853, 1280, 17125, 1574, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 985, 1478, 17981, 1658, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 1139, 1709, 18880, 1746, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 1318, 1977, 19823, 1838, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 1527, 2290, 20815, 1935, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 1771, 2656, 21856, 2036, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 2056, 3084, 22949, 2143, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 2390, 3586, 24096, 2255, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 2783, 4174, 25301, 2373, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportHerDeclarationPlayer"] = { + name = "Her Declaration", + description = "Supports Persistent Buff Skills, causing enemies that enter your Presence to become Intimidated while the Skill is active.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HerDeclaration",}, + isLineage = true, + flavourText = {"\"The laws are binding. They are absolute. If they believe", "it is their choice to enforce them, all the better.", "Upholding our solemn duty is imperative.\"", }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Her Declaration", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms", 4000 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportHealingRunesPlayer"] = { + name = "Healing Runes", + description = "Supports Persistent Buff Skills, causing you to lose Runic Ward and heal nearby allies based on the Ward lost. Healing done is split between allies who are not on full Life.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HealingRunes",}, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 10, }, + }, + statSets = { + [1] = { + label = "Healing Runes", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_healing_runes_maximum_ward_spent_per_pulse_%", 10 }, + { "support_healing_runes_healing_pulse_interval_ms", 5000 }, + { "support_healing_runes_healing_per_ward_spent_%", 200 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["HollowFocusPlayer"] = { + name = "Hollow Focus", + baseTypeName = "Hollow Focus", + icon = "Art/2DArt/SkillIcons/MartialArtistSpectralBellSkill.dds", + fromTree = true, + color = 4, + description = "While active, ethereal bells periodically appear near you. Your Hits immediately destroy the bells, creating a shockwave that damages nearby enemies and causes a Heavy Stun on enemies that are Primed for Stun. The bells are themselves always Primed for Stun, they can be Culled, and Hits against them are always Critical Hits.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.ToggleSpawnedObjectTargetable_DefaultOff] = true, [SkillType.AffectedByCooldownRate] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_base_secondary_area_of_effect_radius", -0.2 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Bells", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "hollow_focus", + baseFlags = { + duration = true, + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "active_skill_base_secondary_area_of_effect_radius", 30 }, + { "spectral_bells_maximum_active_bells", 3 }, + { "base_secondary_skill_effect_duration", 21000 }, + { "bell_distance_limit_for_recall", 90 }, + { "bell_hit_limit", 1 }, + { "bell_shockwave_cooldown_ms", 100 }, + }, + stats = { + "base_cooldown_modifiable_repeat_interval_ms", + "base_deal_no_damage", + "active_skill_show_crush_range", + "cooldown_recovery_modifiers_also_apply_to_repeat_interval", + }, + levels = { + [1] = { 3000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 2950, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2900, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2850, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 2800, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 2750, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2700, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2650, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 2600, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 2550, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 2500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 2450, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 2400, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 2350, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 2300, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 2250, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 2200, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 2150, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 2100, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 2050, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 2050, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 2000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 2000, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 1950, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 1950, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 1900, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 1900, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 1850, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 1850, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 1800, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 1800, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 1750, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 1750, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 1700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 1700, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1700, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1650, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 1600, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 1600, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Shockwave", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "hollow_focus", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "bell_distance_limit_for_recall", 90 }, + { "bell_hit_limit", 1 }, + { "bell_shockwave_cooldown_ms", 100 }, + { "active_skill_base_area_of_effect_radius", 23 }, + { "active_skill_hit_damage_stun_multiplier_+%_final", -100 }, + }, + stats = { + "base_cooldown_modifiable_repeat_interval_ms", + "active_skill_show_crush_range", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "crushing_blow", + "is_spectral_bell_shockwave", + }, + levels = { + [1] = { 0, baseMultiplier = 0.9, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 0, baseMultiplier = 0.99, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, baseMultiplier = 1.08, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, baseMultiplier = 1.18, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, baseMultiplier = 1.27, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, baseMultiplier = 1.36, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, baseMultiplier = 1.44, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, baseMultiplier = 1.52, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, baseMultiplier = 1.58, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, baseMultiplier = 1.65, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, baseMultiplier = 1.72, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, baseMultiplier = 1.79, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, baseMultiplier = 1.86, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, baseMultiplier = 1.93, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, baseMultiplier = 2, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, baseMultiplier = 2.07, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, baseMultiplier = 2.15, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, baseMultiplier = 2.22, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, baseMultiplier = 2.3, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, baseMultiplier = 2.37, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, baseMultiplier = 2.45, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, baseMultiplier = 2.53, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, baseMultiplier = 2.62, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, baseMultiplier = 2.7, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, baseMultiplier = 2.79, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 0, baseMultiplier = 2.89, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, baseMultiplier = 2.98, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, baseMultiplier = 3.08, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, baseMultiplier = 3.18, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, baseMultiplier = 3.29, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, baseMultiplier = 3.4, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, baseMultiplier = 3.51, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, baseMultiplier = 3.63, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, baseMultiplier = 3.75, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, baseMultiplier = 3.87, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, baseMultiplier = 4, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, baseMultiplier = 4.13, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, baseMultiplier = 4.27, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, baseMultiplier = 4.41, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, baseMultiplier = 4.56, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaHollowFormPlayer"] = { + name = "Hollow Form", + baseTypeName = "Hollow Form", + icon = "Art/2DArt/SkillIcons/MartialArtistMantraofIllusionsSkill.dds", + fromTree = true, + color = 4, + description = "Channel to create fleeting images of your astral self near the target location. The images perform a Socketed Melee Attack once then vanish, targeting the closest enemy if possible. The images cannot perform Channelled Skills or Conditional Skills. Consuming a Power Charge creates additional images.", + skillTypes = { [SkillType.Meta] = true, [SkillType.Attack] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.AttackInPlace] = true, [SkillType.Channel] = true, [SkillType.Melee] = true, [SkillType.Sustained] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GamepadDoNotChannelSkillAtLocation] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "base_power_charge_skip_consume_chance_%", 0.5 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -30, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -30, levelRequirement = 3, }, + [3] = { attackSpeedMultiplier = -30, levelRequirement = 6, }, + [4] = { attackSpeedMultiplier = -30, levelRequirement = 10, }, + [5] = { attackSpeedMultiplier = -30, levelRequirement = 14, }, + [6] = { attackSpeedMultiplier = -30, levelRequirement = 18, }, + [7] = { attackSpeedMultiplier = -30, levelRequirement = 22, }, + [8] = { attackSpeedMultiplier = -30, levelRequirement = 26, }, + [9] = { attackSpeedMultiplier = -30, levelRequirement = 31, }, + [10] = { attackSpeedMultiplier = -30, levelRequirement = 36, }, + [11] = { attackSpeedMultiplier = -30, levelRequirement = 41, }, + [12] = { attackSpeedMultiplier = -30, levelRequirement = 46, }, + [13] = { attackSpeedMultiplier = -30, levelRequirement = 52, }, + [14] = { attackSpeedMultiplier = -30, levelRequirement = 58, }, + [15] = { attackSpeedMultiplier = -30, levelRequirement = 64, }, + [16] = { attackSpeedMultiplier = -30, levelRequirement = 66, }, + [17] = { attackSpeedMultiplier = -30, levelRequirement = 72, }, + [18] = { attackSpeedMultiplier = -30, levelRequirement = 78, }, + [19] = { attackSpeedMultiplier = -30, levelRequirement = 84, }, + [20] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [21] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [22] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [23] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [24] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [25] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [26] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [27] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [28] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [29] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [30] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [31] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [32] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [33] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [34] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [35] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [36] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [37] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [38] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [39] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + [40] = { attackSpeedMultiplier = -30, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Hollow Form", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "hollow_form", + baseFlags = { + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 60 }, + { "mantra_of_illusions_bonus_illusions_when_consuming_power_charge", 2 }, + { "mantra_of_illusions_cloned_skill_mana_cost_%", 80 }, + { "channel_start_duration_as_%_of_attack_time", 30 }, + { "channel_end_duration_as_%_of_attack_time", 30 }, + { "movement_speed_+%_final_while_performing_action", -80 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "channel_start_lock_cancelling_of_attack_time_%", 70 }, + }, + stats = { + "base_deal_no_damage", + "usable_while_shapeshifted", + "disable_quadruped_head_control", + "hide_minion_frame", + "can_perform_skill_while_moving", + "channel_start_lock_cancelling_scales_with_attack_speed", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportHollowFormPlayer"] = { + name = "SupportHollowFormPlayer", + hidden = true, + fromTree = true, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { SkillType.UsedByClone, SkillType.UsedByProxy, SkillType.SupportedByHollowForm, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.Meta, SkillType.Triggered, SkillType.Persistent, SkillType.Channel, SkillType.UsedByProxy, SkillType.SupportedByHollowForm, SkillType.NOT, SkillType.AND, }, + ignoreMinionTypes = true, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportHollowFormPlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_gem_stat_descriptions", + statMap = { + ["mantra_of_illusions_triggered_skill_attack_speed_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["mantra_of_illusions_triggered_skill_damage_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), + }, + }, + baseFlags = { + }, + constantStats = { + { "mantra_of_illusions_triggered_skill_attack_speed_+%_final", -30 }, + { "mantra_of_illusions_triggered_skill_damage_+%_final", -15 }, + }, + stats = { + "is_mantra_illusion_skill", + "cannot_consume_power_frenzy_endurance_charges", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["HollowResonancePlayer"] = { + name = "Hollow Resonance", + baseTypeName = "Hollow Resonance", + icon = "Art/2DArt/SkillIcons/MartialArtistCarrySpectralBellSkill.dds", + fromTree = true, + color = 4, + description = "Attaches an ethereal bell to your back. Critical Hits with other Skills will cause the bell to ring out, damaging nearby enemies.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "active_skill_hit_damage_stun_multiplier_+%_final", 1.5 }, + }, + levels = { + [1] = { baseMultiplier = 0.6, cooldown = 0.5, levelRequirement = 0, storedUses = 3, }, + [2] = { baseMultiplier = 0.66, cooldown = 0.5, levelRequirement = 3, storedUses = 3, }, + [3] = { baseMultiplier = 0.73, cooldown = 0.5, levelRequirement = 6, storedUses = 3, }, + [4] = { baseMultiplier = 0.79, cooldown = 0.5, levelRequirement = 10, storedUses = 3, }, + [5] = { baseMultiplier = 0.85, cooldown = 0.5, levelRequirement = 14, storedUses = 3, }, + [6] = { baseMultiplier = 0.92, cooldown = 0.5, levelRequirement = 18, storedUses = 3, }, + [7] = { baseMultiplier = 0.98, cooldown = 0.5, levelRequirement = 22, storedUses = 3, }, + [8] = { baseMultiplier = 1.04, cooldown = 0.5, levelRequirement = 26, storedUses = 3, }, + [9] = { baseMultiplier = 1.09, cooldown = 0.5, levelRequirement = 31, storedUses = 3, }, + [10] = { baseMultiplier = 1.15, cooldown = 0.5, levelRequirement = 36, storedUses = 3, }, + [11] = { baseMultiplier = 1.21, cooldown = 0.5, levelRequirement = 41, storedUses = 3, }, + [12] = { baseMultiplier = 1.27, cooldown = 0.5, levelRequirement = 46, storedUses = 3, }, + [13] = { baseMultiplier = 1.33, cooldown = 0.5, levelRequirement = 52, storedUses = 3, }, + [14] = { baseMultiplier = 1.4, cooldown = 0.5, levelRequirement = 58, storedUses = 3, }, + [15] = { baseMultiplier = 1.47, cooldown = 0.5, levelRequirement = 64, storedUses = 3, }, + [16] = { baseMultiplier = 1.54, cooldown = 0.5, levelRequirement = 66, storedUses = 3, }, + [17] = { baseMultiplier = 1.62, cooldown = 0.5, levelRequirement = 72, storedUses = 3, }, + [18] = { baseMultiplier = 1.7, cooldown = 0.5, levelRequirement = 78, storedUses = 3, }, + [19] = { baseMultiplier = 1.78, cooldown = 0.5, levelRequirement = 84, storedUses = 3, }, + [20] = { baseMultiplier = 1.87, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [21] = { baseMultiplier = 1.96, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [22] = { baseMultiplier = 2.06, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [23] = { baseMultiplier = 2.17, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [24] = { baseMultiplier = 2.27, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [25] = { baseMultiplier = 2.39, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [26] = { baseMultiplier = 2.51, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [27] = { baseMultiplier = 2.63, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [28] = { baseMultiplier = 2.76, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [29] = { baseMultiplier = 2.9, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [30] = { baseMultiplier = 3.05, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [31] = { baseMultiplier = 3.2, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [32] = { baseMultiplier = 3.36, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [33] = { baseMultiplier = 3.53, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [34] = { baseMultiplier = 3.71, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [35] = { baseMultiplier = 3.89, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [36] = { baseMultiplier = 4.08, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [37] = { baseMultiplier = 4.29, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [38] = { baseMultiplier = 4.5, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [39] = { baseMultiplier = 4.73, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + [40] = { baseMultiplier = 4.97, cooldown = 0.5, levelRequirement = 90, storedUses = 3, }, + }, + statSets = { + [1] = { + label = "Hollow Resonance", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "hollow_resonance", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 20 }, + { "chance_to_trigger_carried_spectral_bell_shockwave_on_crit_%", 100 }, + { "active_skill_hit_damage_stun_multiplier_+%_final", 150 }, + }, + stats = { + "is_area_damage", + "is_spectral_bell_shockwave", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["HollowShellPlayer"] = { + name = "Hollow Shell", + baseTypeName = "Hollow Shell", + icon = "Art/2DArt/SkillIcons/ExpeditionHollowShell.dds", + color = 4, + description = "Sacrifice your Runic Ward to send out an energy pulse that grants nearby Allies Guard.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Cascadable] = true, [SkillType.Nova] = true, [SkillType.Triggerable] = true, }, + castTime = 0.6, + qualityStats = { + { "skill_hollow_shell_spent_ward_%_to_grant_as_guard", 0.25 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Ward = 3, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 3, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 3, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 4, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 4, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 5, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 5, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 6, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 6, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 7, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 7, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 8, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 8, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 9, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 9, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 10, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 11, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 11, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 12, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 13, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 13, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 14, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 15, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 15, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 16, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 17, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 18, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 19, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 20, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 21, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 22, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 23, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 23, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 25, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 26, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 27, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 28, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 29, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 30, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 31, }, }, + }, + statSets = { + [1] = { + label = "Hollow Shell", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "hollow_shell", + baseFlags = { + }, + constantStats = { + { "base_skill_effect_duration", 6000 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "hollow_shell_per_target_cooldown_ms", 6000 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "skill_hollow_shell_spent_ward_%_to_grant_as_guard", + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { 30, 45, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 31, 46, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 32, 49, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 33, 51, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 34, 52, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 34, 53, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 35, 54, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 35, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 36, 56, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, 57, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 37, 58, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 37, 59, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 38, 60, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 38, 61, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 39, 62, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 39, 63, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 40, 64, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 40, 65, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 41, 65, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 41, 66, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 42, 66, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 42, 67, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 43, 67, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 43, 68, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 44, 68, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 44, 69, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 45, 69, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 45, 70, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 46, 70, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 46, 71, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 47, 71, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 47, 72, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 48, 72, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 48, 73, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 49, 73, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 49, 74, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["InevitableAgonyPlayer"] = { + name = "Inevitable Agony", + baseTypeName = "Inevitable Agony", + icon = "Art/2DArt/SkillIcons/TemporalistSynchronisationofPainSkill.dds", + fromTree = true, + color = 4, + description = "Debuff all targets in an area, causing a portion of Damage they take from Hits to be tracked by the Debuff. When the debuff's duration expires or can kill the target, the target loses life equal to that tracked damage all at once.", + 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.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, }, + castTime = 0.7, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.25 }, + }, + levels = { + [1] = { cooldown = 2, levelRequirement = 0, storedUses = 1, cost = { Mana = 41, }, }, + [2] = { cooldown = 2, levelRequirement = 3, storedUses = 1, cost = { Mana = 46, }, }, + [3] = { cooldown = 2, levelRequirement = 6, storedUses = 1, cost = { Mana = 52, }, }, + [4] = { cooldown = 2, levelRequirement = 10, storedUses = 1, cost = { Mana = 57, }, }, + [5] = { cooldown = 2, levelRequirement = 14, storedUses = 1, cost = { Mana = 63, }, }, + [6] = { cooldown = 2, levelRequirement = 18, storedUses = 1, cost = { Mana = 69, }, }, + [7] = { cooldown = 2, levelRequirement = 22, storedUses = 1, cost = { Mana = 76, }, }, + [8] = { cooldown = 2, levelRequirement = 26, storedUses = 1, cost = { Mana = 82, }, }, + [9] = { cooldown = 2, levelRequirement = 31, storedUses = 1, cost = { Mana = 89, }, }, + [10] = { cooldown = 2, levelRequirement = 36, storedUses = 1, cost = { Mana = 96, }, }, + [11] = { cooldown = 2, levelRequirement = 41, storedUses = 1, cost = { Mana = 103, }, }, + [12] = { cooldown = 2, levelRequirement = 46, storedUses = 1, cost = { Mana = 110, }, }, + [13] = { cooldown = 2, levelRequirement = 52, storedUses = 1, cost = { Mana = 118, }, }, + [14] = { cooldown = 2, levelRequirement = 58, storedUses = 1, cost = { Mana = 126, }, }, + [15] = { cooldown = 2, levelRequirement = 64, storedUses = 1, cost = { Mana = 134, }, }, + [16] = { cooldown = 2, levelRequirement = 66, storedUses = 1, cost = { Mana = 142, }, }, + [17] = { cooldown = 2, levelRequirement = 72, storedUses = 1, cost = { Mana = 151, }, }, + [18] = { cooldown = 2, levelRequirement = 78, storedUses = 1, cost = { Mana = 160, }, }, + [19] = { cooldown = 2, levelRequirement = 84, storedUses = 1, cost = { Mana = 169, }, }, + [20] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 178, }, }, + [21] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 188, }, }, + [22] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 198, }, }, + [23] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 208, }, }, + [24] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 219, }, }, + [25] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 230, }, }, + [26] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 241, }, }, + [27] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 253, }, }, + [28] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 265, }, }, + [29] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 277, }, }, + [30] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 289, }, }, + [31] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 302, }, }, + [32] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 316, }, }, + [33] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 329, }, }, + [34] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 344, }, }, + [35] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 358, }, }, + [36] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 373, }, }, + [37] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 388, }, }, + [38] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 404, }, }, + [39] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 420, }, }, + [40] = { cooldown = 2, levelRequirement = 90, storedUses = 1, cost = { Mana = 437, }, }, + }, + statSets = { + [1] = { + label = "Inevitable Agony", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "inevitable_agony", + baseFlags = { + area = true, + duration = true, + curse = true, + }, + baseMods = { + skill("debuff", true), + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "curse_pain_synchronisation_base_recorded_damage_%_to_apply", 25 }, + { "base_skill_effect_duration", 12000 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "can_perform_skill_while_moving", + }, + levels = { + [1] = { 15, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 16, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 17, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 18, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 18, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 19, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 20, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 22, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 23, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 23, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 24, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 25, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 26, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 27, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 28, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 28, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 29, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 30, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 31, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 31, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 31, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 32, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 32, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 32, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 33, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 33, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 33, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 34, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 34, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 34, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 35, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 35, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 35, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 36, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 36, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 36, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 37, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 37, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 37, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["IntoTheBreachPlayer"] = { + name = "Into the Breach", + baseTypeName = "Into the Breach", + icon = "Art/2DArt/SkillIcons/MonkBreachWalk.dds", + fromTree = true, + color = 4, + description = "Create a Breach around you, allowing you to see nearby Flames of Chayula. You are considered to be in a Breach while this skill is active.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "remnant_effect_+%", 0.75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Into the Breach", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "into_the_breach", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "breach_flame_mana_leech_%", 20 }, + { "breach_flame_life_leech_%", 20 }, + { "breach_flame_chaos_addition_%", 7 }, + { "breach_flame_spawn_radius", 35 }, + { "base_remnant_duration_ms", 25000 }, + { "breach_walk_base_visibility_range", 50 }, + }, + stats = { + "breach_flame_spawn_rate_ms", + "remnant_effect_+%", + }, + levels = { + [1] = { 1400, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1390, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1380, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1370, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1360, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1350, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1340, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1330, 18, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1320, 21, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1310, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 1300, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 1290, 29, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 1280, 31, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 1270, 34, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 1260, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1250, 39, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1240, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1230, 44, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1220, 47, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1210, 50, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1200, 52, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1190, 54, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1180, 56, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1170, 58, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1160, 60, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1150, 62, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1140, 64, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1130, 66, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1120, 68, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1110, 70, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1105, 72, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1100, 74, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1095, 76, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1090, 78, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1085, 80, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1080, 82, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1075, 84, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1070, 86, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1065, 88, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1060, 90, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CorpseBeetlesPlayer"] = { + name = "Kelari's Malediction", + baseTypeName = "Kelari's Malediction", + icon = "Art/2DArt/SkillIcons/SorceressSandDjinnCorpseBeetles.dds", + fromTree = true, + minionList = { + "BeetleMinion", + }, + color = 4, + description = "Harness Kelari's power to passively Consume Corpses in your Presence, causing Corpse Beetle Minions to burst forth. The Beetles passively follow you until Commanded. On your Command, they rush the target and explode.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.OngoingSkill] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.TargetsDestructibleRareCorpses] = true, [SkillType.AttackInPlace] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Damage] = true, }, + castTime = 1, + qualityStats = { + { "maximum_corpse_beetles_allowed", 0.2 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Kelari's Malediction", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "corpse_beetles", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "skill_specific_stat_description_mode", 2 }, + }, + stats = { + "base_secondary_skill_effect_duration", + "maximum_corpse_beetles_allowed", + "base_deal_no_damage", + }, + notMinionStat = { + "base_secondary_skill_effect_duration", + }, + levels = { + [1] = { 1500, 4, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1500, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1300, 4, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1300, 4, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1300, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 800, 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 800, 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 800, 10, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 800, 10, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 300, 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CommandCorpseBeetleExplodePlayer"] = { + name = "Command: {0} ", + hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + fromTree = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 0.4, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 9, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 12, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 16, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 21, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 23, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 27, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 30, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 34, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 38, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 42, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 47, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 52, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 58, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 64, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 71, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 78, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 86, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 95, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 105, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 115, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 127, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 139, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 152, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 167, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 183, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 200, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 219, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 239, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 261, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 284, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 310, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 338, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 368, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 401, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 436, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 474, }, }, + }, + statSets = { + [1] = { + label = "Command", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + minion = true, + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "command_target_rarity_prioritisation_radius", 20 }, + { "command_location_placement_variance", 7 }, + }, + stats = { + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "play_commanded_additive_animation", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SummonSandDjinnPlayer"] = { + name = "Kelari, the Tainted Sands", + baseTypeName = "Kelari, the Tainted Sands", + icon = "Art/2DArt/SkillIcons/SorceressSummonSandDjinn.dds", + fromTree = true, + minionList = { + "SandDjinn", + }, + color = 4, + description = "Summon Kelari, an invulnerable Sand Djinn Minion, to do your bidding. Kelari will only act when you Command him to do so. Kelari delivers swift Hits with massive Critical Hit potential.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Physical] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Projectile] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.GainsStages] = true, }, + castTime = 0, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Kelari, the Tainted Sands", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "apply_X_stacks_of_critical_weakness_on_hit", 1 }, + { "base_critical_strike_multiplier_+", 50 }, + }, + stats = { + "is_resummoning_minion", + "hide_minion_frame", + "display_statset_no_hit_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["CommandSandDjinnKnifeThrowPlayer"] = { + name = "Command: {0} ", + hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + fromTree = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 0.4, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 3, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 4, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 5, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 5, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 6, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 11, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 12, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 16, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 18, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 20, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 22, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 25, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 27, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 30, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 34, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 37, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 41, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 45, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 50, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 55, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 61, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 66, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 73, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 80, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 88, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 96, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 105, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 114, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 125, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 136, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 149, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 162, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 177, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 192, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 209, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 228, }, }, + }, + statSets = { + [1] = { + label = "Command", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "command_minion_does_not_interrupt", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["LeylinesPlayer"] = { + name = "Leylines", + baseTypeName = "Leylines", + icon = "Art/2DArt/SkillIcons/ExpeditionLeylines.dds", + color = 4, + description = "While active, areas of intense runic energy are revealed to you. Standing over them grants you a powerful Spell damage boost but constantly drains your Runic Ward. Running out of Runic Ward causes the energy to temporarily dissipate.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.Area] = true, [SkillType.Duration] = true, }, + castTime = 1, + qualityStats = { + { "skill_leylines_spell_damage_+%_final", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + [2] = { levelRequirement = 3, spiritReservationFlat = 30, }, + [3] = { levelRequirement = 6, spiritReservationFlat = 30, }, + [4] = { levelRequirement = 10, spiritReservationFlat = 30, }, + [5] = { levelRequirement = 14, spiritReservationFlat = 30, }, + [6] = { levelRequirement = 18, spiritReservationFlat = 30, }, + [7] = { levelRequirement = 22, spiritReservationFlat = 30, }, + [8] = { levelRequirement = 26, spiritReservationFlat = 30, }, + [9] = { levelRequirement = 31, spiritReservationFlat = 30, }, + [10] = { levelRequirement = 36, spiritReservationFlat = 30, }, + [11] = { levelRequirement = 41, spiritReservationFlat = 30, }, + [12] = { levelRequirement = 46, spiritReservationFlat = 30, }, + [13] = { levelRequirement = 52, spiritReservationFlat = 30, }, + [14] = { levelRequirement = 58, spiritReservationFlat = 30, }, + [15] = { levelRequirement = 64, spiritReservationFlat = 30, }, + [16] = { levelRequirement = 66, spiritReservationFlat = 30, }, + [17] = { levelRequirement = 72, spiritReservationFlat = 30, }, + [18] = { levelRequirement = 78, spiritReservationFlat = 30, }, + [19] = { levelRequirement = 84, spiritReservationFlat = 30, }, + [20] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [21] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [22] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [23] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [24] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [25] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [26] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [27] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [28] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [29] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [30] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [31] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [32] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [33] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [34] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [35] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [36] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [37] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [38] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [39] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [40] = { levelRequirement = 90, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Leylines", + baseEffectiveness = 106, + incrementalEffectiveness = 0.27000001072884, + statDescriptionScope = "leylines", + baseFlags = { + }, + constantStats = { + { "skill_leylines_respawn_time_ms", 8000 }, + { "active_skill_base_area_of_effect_radius", 16 }, + { "skill_leylines_density_per_myriad", 60 }, + { "skill_leylines_reveal_radius", 150 }, + { "skill_leylines_minimum_distance_between_leyline_ground_units", 20 }, + }, + stats = { + "skill_leylines_ward_degeneration_per_minute", + "skill_leylines_spell_damage_+%_final", + "base_deal_no_damage", + "display_statset_hide_usage_stats", + }, + levels = { + [1] = { 206, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 342, 11, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 527, 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 723, 13, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 933, 14, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1155, 15, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1389, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1637, 17, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1896, 18, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 2169, 19, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 2453, 20, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 2751, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3061, 22, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3383, 23, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 3718, 24, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 4066, 25, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 4426, 26, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 4799, 27, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 5184, 28, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 5582, 29, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 5993, 30, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 6416, 31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 6851, 32, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7299, 33, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7760, 34, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 8234, 35, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 8719, 36, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 9218, 37, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 9729, 38, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 10252, 39, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 10788, 40, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 11337, 41, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 11898, 42, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 12472, 43, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 13059, 44, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 13658, 45, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 14269, 46, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 14893, 47, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 15530, 48, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 16179, 49, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["LifeRemnantsPlayer"] = { + name = "Life Remnants", + baseTypeName = "Life Remnants", + icon = "Art/2DArt/SkillIcons/BloodChannel.dds", + fromTree = true, + color = 4, + description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.", + skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0, + qualityStats = { + { "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 0.5 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Life Remnants", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "life_remnants", + baseFlags = { + }, + constantStats = { + { "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 25 }, + { "life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms", 3000 }, + { "skill_desired_amount_override", 1 }, + { "base_remnant_duration_ms", 8000 }, + }, + stats = { + "life_remnants_gain_per_globe", + "base_deal_no_damage_over_time", + "base_deal_no_damage", + }, + levels = { + [1] = { 11, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 14, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 23, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 31, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 41, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 52, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 65, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 81, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 95, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 112, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 131, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 157, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 176, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 205, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 232, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 263, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 301, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 337, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 374, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 410, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 448, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 490, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 531, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 574, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 616, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 657, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 706, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 752, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 799, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 851, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 900, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 952, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 1004, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 1062, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 1114, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 1172, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 1229, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 1287, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 1350, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 1408, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["Melee1HMacePlayer"] = { + name = "Mace Strike", + baseTypeName = "Mace Strike", + icon = "Art/2DArt/SkillIcons/OneHandMaceDefaultSkill.dds", + fromItem = true, + color = 4, + description = "Strike with your Mace.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["One Hand Mace"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Mace Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + }, + stats = { + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["Melee2HMacePlayer"] = { + name = "Mace Strike", + baseTypeName = "Mace Strike", + icon = "Art/2DArt/SkillIcons/TwoHandMaceDefaultSkill.dds", + fromItem = true, + color = 4, + description = "Strike with your Mace.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["Two Hand Mace"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Mace Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + }, + stats = { + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeleeMaceMacePlayer"] = { + name = "Mace Strike", + baseTypeName = "Mace Strike", + icon = "Art/2DArt/SkillIcons/DualWieldMaceDefaultSkill.dds", + fromItem = true, + color = 4, + description = "Strike with your Maces.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.DualWieldOnly] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["One Hand Mace"] = true, + ["Two Hand Mace"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Mace Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + { "active_skill_attack_speed_+%_final_while_dual_wielding", -30 }, + }, + stats = { + "is_area_damage", + "skill_double_hits_when_dual_wielding", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["ManifestWeaponPlayer"] = { + name = "Manifest Weapon", + baseTypeName = "Manifest Weapon", + icon = "Art/2DArt/SkillIcons/SmithOfKitavaCreateWeaponSkillIcon.dds", + fromTree = true, + minionList = { + "ManifestWeapon", + }, + color = 4, + description = "Manifest a copy of your main hand Melee Martial Weapon as an immortal Companion to fight by your side. In addition to its standard Strikes, the Manifested Weapon gains an additional Attack depending on its weapon type.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 0, + qualityStats = { + { "minion_attack_speed_+%", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + minionHasItemSet = true, + minionUses = { + ["Weapon 1"] = true, + }, + statSets = { + [1] = { + label = "Manifest Weapon", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, + }, + baseFlags = { + spell = true, + minion = true, + }, + constantStats = { + { "minion_1%_damage_+%_per_X_player_strength", 1 }, + { "active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "is_resummoning_minion", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["BearMaulPlayer"] = { + name = "Maul", + baseTypeName = "Maul", + icon = "Art/2DArt/SkillIcons/DruidBearMaul.dds", + fromItem = true, + color = 4, + description = "Shapeshift into a Bear and rake enemies with your claws, generating Rage on Hit.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Shapeshift] = true, [SkillType.Bear] = true, [SkillType.AttackInPlace] = true, [SkillType.Area] = true, }, + weaponTypes = { + ["Talisman"] = true, + }, + castTime = 1, + qualityStats = { + { "gain_x_rage_on_attack_hit", 0.1 }, + }, + levels = { + [1] = { baseMultiplier = 0.8, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.88, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.97, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.06, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.15, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.24, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.33, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.42, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.5, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.58, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 1.67, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 1.77, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.88, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.99, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.12, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.25, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.39, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.55, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.72, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 2.9, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.09, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.3, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.52, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.75, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 4, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.55, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.85, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 5.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.52, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.89, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 6.28, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 6.7, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 7.62, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 8.13, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 9.25, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 9.87, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 10.52, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Maul", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 5 }, + { "moving_melee_conditional_step_distance", 15 }, + { "gain_x_rage_on_attack_hit", 5 }, + { "use_time_+_ms_if_shapeshift_required", 300 }, + }, + stats = { + "is_area_damage", + "disable_quadruped_head_movement_when_turning", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeditatePlayer"] = { + name = "Meditate", + baseTypeName = "Meditate", + icon = "Art/2DArt/SkillIcons/MonkInvokerMeditate.dds", + fromTree = true, + color = 4, + description = "Channel to Recharge Energy Shield and allow that Recharge to Overflow. Channelling ends when you take damage or your Energy Shield is fully Overflowed.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, + castTime = 1, + qualityStats = { + { "meditate_energy_shield_recharge_rate_+%_final", 0.5 }, + }, + levels = { + [1] = { cooldown = 7, levelRequirement = 0, storedUses = 1, }, + [2] = { cooldown = 6.9, levelRequirement = 3, storedUses = 1, }, + [3] = { cooldown = 6.8, levelRequirement = 6, storedUses = 1, }, + [4] = { cooldown = 6.7, levelRequirement = 10, storedUses = 1, }, + [5] = { cooldown = 6.6, levelRequirement = 14, storedUses = 1, }, + [6] = { cooldown = 6.5, levelRequirement = 18, storedUses = 1, }, + [7] = { cooldown = 6.4, levelRequirement = 22, storedUses = 1, }, + [8] = { cooldown = 6.3, levelRequirement = 26, storedUses = 1, }, + [9] = { cooldown = 6.2, levelRequirement = 31, storedUses = 1, }, + [10] = { cooldown = 6.1, levelRequirement = 36, storedUses = 1, }, + [11] = { cooldown = 6, levelRequirement = 41, storedUses = 1, }, + [12] = { cooldown = 5.9, levelRequirement = 46, storedUses = 1, }, + [13] = { cooldown = 5.8, levelRequirement = 52, storedUses = 1, }, + [14] = { cooldown = 5.7, levelRequirement = 58, storedUses = 1, }, + [15] = { cooldown = 5.6, levelRequirement = 64, storedUses = 1, }, + [16] = { cooldown = 5.5, levelRequirement = 66, storedUses = 1, }, + [17] = { cooldown = 5.4, levelRequirement = 72, storedUses = 1, }, + [18] = { cooldown = 5.3, levelRequirement = 78, storedUses = 1, }, + [19] = { cooldown = 5.2, levelRequirement = 84, storedUses = 1, }, + [20] = { cooldown = 5.1, levelRequirement = 90, storedUses = 1, }, + [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, }, + [22] = { cooldown = 4.9, levelRequirement = 90, storedUses = 1, }, + [23] = { cooldown = 4.8, levelRequirement = 90, storedUses = 1, }, + [24] = { cooldown = 4.7, levelRequirement = 90, storedUses = 1, }, + [25] = { cooldown = 4.6, levelRequirement = 90, storedUses = 1, }, + [26] = { cooldown = 4.5, levelRequirement = 90, storedUses = 1, }, + [27] = { cooldown = 4.4, levelRequirement = 90, storedUses = 1, }, + [28] = { cooldown = 4.3, levelRequirement = 90, storedUses = 1, }, + [29] = { cooldown = 4.2, levelRequirement = 90, storedUses = 1, }, + [30] = { cooldown = 4.1, levelRequirement = 90, storedUses = 1, }, + [31] = { cooldown = 4.05, levelRequirement = 90, storedUses = 1, }, + [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [33] = { cooldown = 3.95, levelRequirement = 90, storedUses = 1, }, + [34] = { cooldown = 3.9, levelRequirement = 90, storedUses = 1, }, + [35] = { cooldown = 3.85, levelRequirement = 90, storedUses = 1, }, + [36] = { cooldown = 3.8, levelRequirement = 90, storedUses = 1, }, + [37] = { cooldown = 3.75, levelRequirement = 90, storedUses = 1, }, + [38] = { cooldown = 3.7, levelRequirement = 90, storedUses = 1, }, + [39] = { cooldown = 3.65, levelRequirement = 90, storedUses = 1, }, + [40] = { cooldown = 3.6, levelRequirement = 90, storedUses = 1, }, + }, + statSets = { + [1] = { + label = "Meditate", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "meditate_energy_shield_recharge_rate_+%_final", + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { 24, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 28, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 36, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 40, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 44, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 48, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 52, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 56, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 60, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 64, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 68, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 72, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 80, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 84, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 88, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 92, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 96, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 104, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 108, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 112, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 116, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 120, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 124, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 128, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 132, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 136, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 140, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 144, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 148, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 152, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 156, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 160, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 164, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 168, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 172, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 176, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 180, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportMedvedsFelling"] = { + name = "Medved's Felling", + description = "Supports Melee Attacks you use yourself, causing them to attack faster the more Rage you have and grant Rage on Hit, but also making you lose Life based on your Rage when using them. ", + color = 4, + support = true, + requireSkillTypes = { SkillType.Melee, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, + gemFamily = { "Rage",}, + isLineage = true, + flavourText = {"\"There is no zealotry like that of a mystic roused", "to battle. He broke his own code, wielding weapons", "long forbidden, to defend that which he loved.\"", }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Medved's Felling", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "gain_x%_of_maximum_rage_on_melee_hit", 10 }, + { "lose_x%_of_life_per_5_rage_on_supported_skill_use", 1 }, + { "supported_skill_attack_speed_+%_per_5_rage", 5 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["MidnightStarPlayer"] = { + name = "Midnight Zenith", + baseTypeName = "Midnight Zenith", + icon = "Art/2DArt/SkillIcons/NattblomSkillIcon.dds", + fromItem = true, + color = 4, + description = "While active, Critical Hits with other skills that kill targets, or hit powerful targets cause you to gain Arctic Petals. Once you have enough Arctic Petals they will be Consumed to create Ice Crystals near the most recent target.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, [SkillType.Cold] = true, [SkillType.IceCrystal] = true, [SkillType.Area] = true, [SkillType.Limit] = true, [SkillType.Damage] = true, }, + castTime = 1, + qualityStats = { + { "midnight_star_max_ice_crystals", 0.1 }, + }, + levels = { + [1] = { critChance = 11, levelRequirement = 0, }, + [2] = { critChance = 11, levelRequirement = 3, }, + [3] = { critChance = 11, levelRequirement = 6, }, + [4] = { critChance = 11, levelRequirement = 10, }, + [5] = { critChance = 11, levelRequirement = 14, }, + [6] = { critChance = 11, levelRequirement = 18, }, + [7] = { critChance = 11, levelRequirement = 22, }, + [8] = { critChance = 11, levelRequirement = 26, }, + [9] = { critChance = 11, levelRequirement = 31, }, + [10] = { critChance = 11, levelRequirement = 36, }, + [11] = { critChance = 11, levelRequirement = 41, }, + [12] = { critChance = 11, levelRequirement = 46, }, + [13] = { critChance = 11, levelRequirement = 52, }, + [14] = { critChance = 11, levelRequirement = 58, }, + [15] = { critChance = 11, levelRequirement = 64, }, + [16] = { critChance = 11, levelRequirement = 66, }, + [17] = { critChance = 11, levelRequirement = 72, }, + [18] = { critChance = 11, levelRequirement = 78, }, + [19] = { critChance = 11, levelRequirement = 84, }, + [20] = { critChance = 11, levelRequirement = 90, }, + [21] = { critChance = 11, levelRequirement = 90, }, + [22] = { critChance = 11, levelRequirement = 90, }, + [23] = { critChance = 11, levelRequirement = 90, }, + [24] = { critChance = 11, levelRequirement = 90, }, + [25] = { critChance = 11, levelRequirement = 90, }, + [26] = { critChance = 11, levelRequirement = 90, }, + [27] = { critChance = 11, levelRequirement = 90, }, + [28] = { critChance = 11, levelRequirement = 90, }, + [29] = { critChance = 11, levelRequirement = 90, }, + [30] = { critChance = 11, levelRequirement = 90, }, + [31] = { critChance = 11, levelRequirement = 90, }, + [32] = { critChance = 11, levelRequirement = 90, }, + [33] = { critChance = 11, levelRequirement = 90, }, + [34] = { critChance = 11, levelRequirement = 90, }, + [35] = { critChance = 11, levelRequirement = 90, }, + [36] = { critChance = 11, levelRequirement = 90, }, + [37] = { critChance = 11, levelRequirement = 90, }, + [38] = { critChance = 11, levelRequirement = 90, }, + [39] = { critChance = 11, levelRequirement = 90, }, + [40] = { critChance = 11, levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Buff", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "midnight_star_statset_0", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "unique_nattblom_crystals_per_trigger", 5 }, + { "unique_nattblom_crystal_radius", 8 }, + }, + stats = { + "midnight_star_gain_x_ice_seeds_when_you_critically_hit_a_rare_or_unique_enemy", + "midnight_star_attempt_to_consume_x_ice_seeds_to_create_an_ice_crystal_each_time_you_gain_ice_seeds", + "midnight_star_gain_ice_seeds_equal_to_enemy_power_on_kill_with_critical_hit", + "display_statset_no_hit_damage", + "display_statset_hide_usage_stats", + "base_skill_cannot_generate_energy", + "base_skill_cannot_generate_midnight_star_petals", + }, + levels = { + [1] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 2, 10, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 3, 10, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 4, 10, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 7, 10, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Crystal", + baseEffectiveness = 2.2799999713898, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0068999999202788, + statDescriptionScope = "midnight_star_statset_1", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "unique_nattblom_crystals_per_trigger", 5 }, + { "unique_nattblom_crystal_radius", 8 }, + { "active_skill_base_area_of_effect_radius", 22 }, + { "midnight_star_max_ice_crystals", 10 }, + { "base_skill_effect_duration", 10000 }, + }, + stats = { + "secondary_minimum_base_cold_damage", + "secondary_maximum_base_cold_damage", + "secondary_minimum_base_cold_damage", + "secondary_maximum_base_cold_damage", + "frost_wall_maximum_life", + "frost_wall_maximum_life", + "midnight_star_gain_ice_seeds_equal_to_enemy_power_on_kill_with_critical_hit", + "display_statset_hide_usage_stats", + "base_skill_cannot_generate_energy", + "base_skill_cannot_generate_midnight_star_petals", + "is_ice_crystal_explosion", + "is_area_damage", + "display_skill_deals_secondary_damage", + }, + notMinionStat = { + "secondary_minimum_base_cold_damage", + "secondary_maximum_base_cold_damage", + }, + levels = { + [1] = { 2, 3, 2, 3, 14, 14, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 2, 4, 2, 4, 24, 24, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 3, 5, 3, 5, 41, 41, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, 6, 4, 6, 62, 62, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 5, 8, 5, 8, 90, 90, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6, 10, 6, 10, 126, 126, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 8, 12, 8, 12, 173, 173, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 9, 14, 9, 14, 234, 234, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 11, 16, 11, 16, 312, 312, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 13, 19, 13, 19, 413, 413, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 15, 22, 15, 22, 540, 540, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 17, 25, 17, 25, 700, 700, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 19, 29, 19, 29, 903, 903, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 22, 33, 22, 33, 1158, 1158, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 25, 38, 25, 38, 1478, 1478, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 29, 43, 29, 43, 1881, 1881, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 32, 49, 32, 49, 2386, 2386, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 37, 55, 37, 55, 3012, 3012, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 41, 62, 41, 62, 3795, 3795, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 47, 70, 47, 70, 4768, 4768, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 53, 79, 53, 79, 5007, 5007, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 59, 89, 59, 89, 5257, 5257, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 67, 100, 67, 100, 5520, 5520, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 75, 112, 75, 112, 5796, 5796, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 84, 126, 84, 126, 6085, 6085, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 95, 142, 95, 142, 6390, 6390, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 106, 159, 106, 159, 6709, 6709, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 119, 179, 119, 179, 7044, 7044, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 134, 201, 134, 201, 7397, 7397, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 150, 225, 150, 225, 7767, 7767, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 169, 253, 169, 253, 8155, 8155, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 190, 285, 190, 285, 8563, 8563, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 213, 320, 213, 320, 8991, 8991, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 240, 360, 240, 360, 9440, 9440, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 270, 405, 270, 405, 9912, 9912, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 304, 455, 304, 455, 10408, 10408, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 342, 513, 342, 513, 10928, 10928, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 385, 578, 385, 578, 11475, 11475, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 434, 651, 434, 651, 12048, 12048, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 490, 735, 490, 735, 12651, 12651, critChance = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MetaMirageDeadeyePlayer"] = { + name = "Mirage Deadeye", + baseTypeName = "Mirage Deadeye", + icon = "Art/2DArt/SkillIcons/RangerDeadeyeMirageSkill.dds", + fromTree = true, + color = 4, + description = "While active, firing a ranged Projectile Attack will create a Mirage that uses socketed ranged Attacks for a short duration, then vanish.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Meta] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Crossbow"] = true, + ["Spear"] = true, + }, + castTime = 0, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Mirage Deadeye", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "mirage_deadeye", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Icy Wave", - baseEffectiveness = 2.1524999141693, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "elemental_expression_statset_2", + } +} +skills["SupportMirageDeadeyePlayer"] = { + name = "SupportMirageDeadeyePlayer", + hidden = true, + fromTree = true, + support = true, + requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, SkillType.MirageArcherCanUse, SkillType.AND, }, + addSkillTypes = { SkillType.UsedByClone, SkillType.UsedByProxy, SkillType.SupportedByMirageDeadeye, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.Melee, SkillType.Meta, SkillType.Triggered, SkillType.Persistent, SkillType.UsedByProxy, SkillType.SupportedByMirageDeadeye, SkillType.NOT, SkillType.AND, }, + ignoreMinionTypes = true, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "SupportMirageDeadeyePlayer", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "meta_gem_stat_descriptions", + statMap = { + ["support_lingering_mirage_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, + }, baseFlags = { - spell = true, - projectile = true, }, constantStats = { - { "chance_to_be_trigger_elemental_expression_%", 100 }, - { "base_number_of_projectiles", 3 }, - { "fixed_projectile_height", 15 }, + { "support_lingering_mirage_damage_+%_final", -50 }, + { "skill_disabled_unless_cloned", 1 }, }, stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "always_pierce", - "show_number_of_projectiles", - "base_is_projectile", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", + "cannot_consume_power_frenzy_endurance_charges", }, levels = { - [1] = { 7, 10, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 9, 14, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 12, 18, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 16, 24, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 20, 30, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, 37, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 30, 45, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 36, 54, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 42, 64, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 50, 75, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 58, 87, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 68, 101, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 78, 117, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 90, 135, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 103, 155, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 118, 177, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 135, 203, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 154, 231, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 176, 264, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 200, 300, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 227, 341, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 259, 388, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 294, 441, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 334, 500, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 379, 568, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 430, 645, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 488, 733, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 555, 832, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 630, 946, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 717, 1075, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 815, 1223, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 928, 1391, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1056, 1584, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1203, 1805, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1372, 2058, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1566, 2349, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1789, 2683, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 2045, 3067, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 2340, 3510, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 2680, 4020, critChance = 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, - [4] = { - label = "Arcing Bolt", - baseEffectiveness = 2.414999961853, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0082000000402331, - statDescriptionScope = "elemental_expression_statset_3", + } +} +skills["MirageDeadeyeSpawnPlayer"] = { + name = "", + hidden = true, + icon = "", + fromTree = true, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.UsedByProxy] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Crossbow"] = true, + ["Spear"] = true, + }, + castTime = 0, + qualityStats = { + { "base_skill_effect_duration", 50 }, + }, + levels = { + [1] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [2] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [3] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [4] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [5] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [6] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [7] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [8] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [9] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [10] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [11] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [12] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [13] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [14] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [15] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [16] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [17] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [18] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [19] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [20] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [21] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [22] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [23] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [24] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [25] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [26] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [27] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [28] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [29] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [30] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [31] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [32] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [33] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [34] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [35] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [36] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [37] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [38] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [39] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [40] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + }, + statSets = { + [1] = { + label = "Mirage", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "create_mirage_deadeye", baseFlags = { - spell = true, - chaining = true, - }, - constantStats = { - { "chance_to_be_trigger_elemental_expression_%", 100 }, - { "number_of_chains", 7 }, }, stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", + "base_skill_effect_duration", + "triggered_by_lingering_mirage", + "hide_minion_frame", + "quality_display_lingering_mirage_is_gem", + "base_deal_no_damage_over_time", }, notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", + "base_skill_effect_duration", }, levels = { - [1] = { 3, 16, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 4, 21, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 5, 29, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 7, 38, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 8, 48, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 10, 59, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 13, 72, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 15, 86, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 18, 101, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 21, 119, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 24, 139, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 28, 161, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 33, 186, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 38, 214, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 43, 246, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 50, 282, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 57, 322, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 65, 368, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 74, 419, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 84, 477, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 96, 542, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 109, 616, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 124, 700, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 140, 795, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 159, 903, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 181, 1025, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 206, 1165, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 233, 1323, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 265, 1503, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 302, 1709, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 343, 1943, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 390, 2211, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 444, 2518, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 506, 2869, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 577, 3272, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 659, 3734, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 753, 4265, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 860, 4875, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 985, 5579, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1128, 6390, critChance = 9, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 4050, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4150, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4200, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4250, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4300, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4350, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4400, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4450, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4500, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4550, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4600, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 4650, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 4750, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 4800, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 4850, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4900, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4950, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 5000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 5050, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5150, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5200, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5250, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5300, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5350, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5400, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5450, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5500, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5550, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5600, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 5650, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 5700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 5750, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 5800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 5850, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 5900, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5950, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 6000, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ElementalStormPlayer"] = { - name = "Elemental Storm", - baseTypeName = "Elemental Storm", - icon = "Art/2DArt/SkillIcons/SorceressElementalStorm.dds", - fromTree = true, +skills["SummonMistRavenPlayer"] = { + name = "Mist Raven", + baseTypeName = "Mist Raven", + icon = "Art/2DArt/SkillIcons/MistRavenSummon.dds", + fromItem = true, color = 4, - description = "Create a stationary Fire, Cold or Lightning storm at a target location for a duration, based on the highest Elemental Damage type for the Hit that Triggered the storm. Hits which do not deal Elemental Damage will not Trigger the storm.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cooldown] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, }, - castTime = 0, + description = "Summons a mysterious undamageable Mist Raven that can be Commanded to dive at target location, crashing through an otherworldly mirror and damaging enemies in an area. The raven grants you a Frenzy Charge for each enemy it Culls.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.Physical] = true, [SkillType.Chaos] = true, [SkillType.CommandableMinion] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, [SkillType.GeneratesCharges] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Melee] = true, }, + castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, + { "chance_to_gain_1_more_frenzy_charge_%", 1 }, }, levels = { - [1] = { cooldown = 3, levelRequirement = 0, storedUses = 1, cost = { Mana = 8, }, }, - [2] = { cooldown = 3, levelRequirement = 3, storedUses = 1, cost = { Mana = 9, }, }, - [3] = { cooldown = 3, levelRequirement = 6, storedUses = 1, cost = { Mana = 10, }, }, - [4] = { cooldown = 3, levelRequirement = 10, storedUses = 1, cost = { Mana = 12, }, }, - [5] = { cooldown = 3, levelRequirement = 14, storedUses = 1, cost = { Mana = 13, }, }, - [6] = { cooldown = 3, levelRequirement = 18, storedUses = 1, cost = { Mana = 15, }, }, - [7] = { cooldown = 3, levelRequirement = 22, storedUses = 1, cost = { Mana = 17, }, }, - [8] = { cooldown = 3, levelRequirement = 26, storedUses = 1, cost = { Mana = 19, }, }, - [9] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 21, }, }, - [10] = { cooldown = 3, levelRequirement = 36, storedUses = 1, cost = { Mana = 23, }, }, - [11] = { cooldown = 3, levelRequirement = 41, storedUses = 1, cost = { Mana = 26, }, }, - [12] = { cooldown = 3, levelRequirement = 46, storedUses = 1, cost = { Mana = 28, }, }, - [13] = { cooldown = 3, levelRequirement = 52, storedUses = 1, cost = { Mana = 31, }, }, - [14] = { cooldown = 3, levelRequirement = 58, storedUses = 1, cost = { Mana = 34, }, }, - [15] = { cooldown = 3, levelRequirement = 64, storedUses = 1, cost = { Mana = 37, }, }, - [16] = { cooldown = 3, levelRequirement = 66, storedUses = 1, cost = { Mana = 40, }, }, - [17] = { cooldown = 3, levelRequirement = 72, storedUses = 1, cost = { Mana = 43, }, }, - [18] = { cooldown = 3, levelRequirement = 78, storedUses = 1, cost = { Mana = 47, }, }, - [19] = { cooldown = 3, levelRequirement = 84, storedUses = 1, cost = { Mana = 51, }, }, - [20] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 55, }, }, - [21] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 60, }, }, - [22] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 64, }, }, - [23] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 69, }, }, - [24] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 74, }, }, - [25] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 80, }, }, - [26] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 86, }, }, - [27] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 92, }, }, - [28] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 99, }, }, - [29] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 106, }, }, - [30] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 113, }, }, - [31] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 121, }, }, - [32] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 130, }, }, - [33] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 138, }, }, - [34] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 148, }, }, - [35] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 158, }, }, - [36] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 168, }, }, - [37] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 179, }, }, - [38] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 191, }, }, - [39] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 203, }, }, - [40] = { cooldown = 3, levelRequirement = 90, storedUses = 1, cost = { Mana = 216, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Elemental Storm", - baseEffectiveness = 0.5625, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "elemental_storm", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, + label = "Minion Info", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "summon_mist_raven", baseFlags = { - area = true, - duration = true, }, - constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, + constantStats = { + { "display_minion_monster_type", 2 }, + { "minion_base_resummon_time_ms", 12000 }, + { "skill_desired_amount_override", 1 }, }, stats = { - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", + "is_resummoning_minion", + "display_statset_no_hit_damage", + "use_owners_culling_threshold_instead_of_your_own", + "kill_enemy_on_hit_if_under_10%_life", }, levels = { [1] = { actorLevel = 1, }, @@ -2817,330 +10807,83 @@ skills["ElementalStormPlayer"] = { [35] = { actorLevel = 232.17500305176, }, [36] = { actorLevel = 242.94799804688, }, [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - [2] = { - label = "Fire", - baseEffectiveness = 0.55000001192093, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "elemental_storm", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, - baseFlags = { - spell = true, - area = true, - duration = true, - }, - constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, - }, - stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", - }, - notMinionStat = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - }, - levels = { - [1] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 5, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6, 10, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 9, 14, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 11, 17, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 13, 20, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 16, 24, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 18, 28, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 25, 37, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 29, 43, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 33, 50, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 38, 58, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 44, 66, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 51, 76, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 58, 88, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 67, 101, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 77, 116, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 89, 133, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 102, 153, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 117, 175, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 134, 201, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 154, 232, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 178, 266, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 204, 306, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 235, 353, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 271, 407, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 313, 469, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 361, 542, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 418, 626, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 483, 725, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 560, 840, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 649, 974, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 754, 1131, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 876, 1315, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1020, 1530, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [3] = { - label = "Lightning", - baseEffectiveness = 0.41999998688698, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "elemental_storm", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, - baseFlags = { - spell = true, - area = true, - duration = true, - }, - constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, - }, - stats = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", - }, - notMinionStat = { - "spell_minimum_base_lightning_damage", - "spell_maximum_base_lightning_damage", - }, - levels = { - [1] = { 1, 3, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1, 7, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1, 8, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 2, 11, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 2, 13, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 3, 15, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 3, 18, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 4, 22, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 5, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 5, 30, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6, 35, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7, 40, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 8, 47, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 10, 54, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 11, 62, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 13, 72, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 15, 82, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 17, 95, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 19, 109, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 22, 125, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 25, 144, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 29, 165, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 33, 190, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 38, 218, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 44, 250, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 51, 288, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 59, 332, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 67, 382, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 78, 440, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 90, 508, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 103, 586, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 120, 678, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 138, 784, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 160, 908, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 186, 1054, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 216, 1223, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 251, 1422, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 292, 1656, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, - }, - }, - [4] = { - label = "Cold", - baseEffectiveness = 0.41999998688698, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0096000004559755, - statDescriptionScope = "elemental_storm", - statMap = { - ["tornado_base_damage_interval_ms"] = { - skill("hitTimeOverride", nil), - div = 1000, - }, - }, - baseFlags = { - spell = true, - area = true, - duration = true, - }, - constantStats = { - { "tornado_base_damage_interval_ms", 250 }, - { "number_of_tornados_allowed", 50 }, - { "skill_override_pvp_scaling_time_ms", 1000 }, - { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 18 }, - }, - stats = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - "skill_can_add_multiple_charges_per_action", - "damage_cannot_be_reflected_or_leech_if_used_by_other_object", - "is_area_damage", - "tornado_hinder", - "is_triggerable_elemental_storm", - "global_cannot_crit", - }, - notMinionStat = { - "spell_minimum_base_cold_damage", - "spell_maximum_base_cold_damage", - }, - levels = { - [1] = { 1, 2, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 2, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 3, 5, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 4, 6, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6, 9, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 7, 11, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 9, 13, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 10, 15, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 16, 25, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 19, 28, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 22, 33, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 25, 38, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 29, 44, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 34, 51, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 39, 58, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 45, 67, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 51, 77, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 59, 88, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 68, 101, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 78, 117, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 89, 134, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 103, 154, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 118, 177, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 136, 203, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 156, 234, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 180, 270, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 207, 311, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 239, 358, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 276, 414, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 319, 478, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 369, 554, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 428, 641, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 496, 744, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 576, 864, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 779, 1169, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["AmazonTriggerElementalSurgePlayer"] = { - name = "Elemental Surge", - baseTypeName = "Elemental Surge", - icon = "Art/2DArt/SkillIcons/AmazonElementalInfusionSkillIcon.dds", - fromTree = true, - color = 4, - description = "Grants your weapon Surges. Non-Melee Projectile Attacks with that weapon Consume Surges to cause the Projectiles fired to explode at the end of their flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.CannotConsumeCharges] = true, [SkillType.AttackInPlace] = true, }, +skills["CommandMistRavenPlayer"] = { + name = "Command: {0} ", + hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + fromItem = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.15 }, }, levels = { - [1] = { baseMultiplier = 0.5, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.55, levelRequirement = 3, }, - [3] = { baseMultiplier = 0.61, levelRequirement = 6, }, - [4] = { baseMultiplier = 0.66, levelRequirement = 10, }, - [5] = { baseMultiplier = 0.72, levelRequirement = 14, }, - [6] = { baseMultiplier = 0.77, levelRequirement = 18, }, - [7] = { baseMultiplier = 0.83, levelRequirement = 22, }, - [8] = { baseMultiplier = 0.88, levelRequirement = 26, }, - [9] = { baseMultiplier = 0.93, levelRequirement = 31, }, - [10] = { baseMultiplier = 0.99, levelRequirement = 36, }, - [11] = { baseMultiplier = 1.05, levelRequirement = 41, }, - [12] = { baseMultiplier = 1.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 1.17, levelRequirement = 52, }, - [14] = { baseMultiplier = 1.25, levelRequirement = 58, }, - [15] = { baseMultiplier = 1.32, levelRequirement = 64, }, - [16] = { baseMultiplier = 1.41, levelRequirement = 66, }, - [17] = { baseMultiplier = 1.5, levelRequirement = 72, }, - [18] = { baseMultiplier = 1.59, levelRequirement = 78, }, - [19] = { baseMultiplier = 1.7, levelRequirement = 84, }, - [20] = { baseMultiplier = 1.81, levelRequirement = 90, }, - [21] = { baseMultiplier = 1.93, levelRequirement = 90, }, - [22] = { baseMultiplier = 2.06, levelRequirement = 90, }, - [23] = { baseMultiplier = 2.2, levelRequirement = 90, }, - [24] = { baseMultiplier = 2.34, levelRequirement = 90, }, - [25] = { baseMultiplier = 2.5, levelRequirement = 90, }, - [26] = { baseMultiplier = 2.67, levelRequirement = 90, }, - [27] = { baseMultiplier = 2.84, levelRequirement = 90, }, - [28] = { baseMultiplier = 3.03, levelRequirement = 90, }, - [29] = { baseMultiplier = 3.24, levelRequirement = 90, }, - [30] = { baseMultiplier = 3.45, levelRequirement = 90, }, - [31] = { baseMultiplier = 3.68, levelRequirement = 90, }, - [32] = { baseMultiplier = 3.93, levelRequirement = 90, }, - [33] = { baseMultiplier = 4.19, levelRequirement = 90, }, - [34] = { baseMultiplier = 4.47, levelRequirement = 90, }, - [35] = { baseMultiplier = 4.76, levelRequirement = 90, }, - [36] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [37] = { baseMultiplier = 5.42, levelRequirement = 90, }, - [38] = { baseMultiplier = 5.78, levelRequirement = 90, }, - [39] = { baseMultiplier = 6.17, levelRequirement = 90, }, - [40] = { baseMultiplier = 6.58, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 8, }, }, }, statSets = { [1] = { - label = "Cold Surge", + label = "Command", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "elemental_surge", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { - attack = true, - area = true, }, constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, - { "base_skill_effect_duration", 15000 }, - { "maximum_number_of_instilling_stacks", 6 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "command_minion_marker_additional_time_ms", 300 }, }, stats = { - "is_area_damage", - "cannot_consume_power_frenzy_endurance_charges", - "base_skill_show_average_damage_instead_of_dps", + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "active_skill_show_cull_range", }, levels = { [1] = { actorLevel = 1, }, @@ -3185,396 +10928,433 @@ skills["AmazonTriggerElementalSurgePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, - [2] = { - label = "Fire Surge", + } +} +skills["TriggeredMoltenShowerPlayer"] = { + name = "Molten Shower", + baseTypeName = "Molten Shower", + icon = "Art/2DArt/SkillIcons/VolcanicEruptionSkillIcon.dds", + fromItem = true, + color = 4, + description = "Fires molten Projectiles from the enemy hit, which will explode when they land nearby, dealing Attack damage in an area.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, }, + castTime = 1, + qualityStats = { + { "base_cooldown_speed_+%", 1 }, + }, + levels = { + [1] = { baseMultiplier = 0.5, cooldown = 0.25, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.55, cooldown = 0.25, levelRequirement = 3, storedUses = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.6, cooldown = 0.25, levelRequirement = 6, storedUses = 3, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.65, cooldown = 0.25, levelRequirement = 10, storedUses = 3, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.7, cooldown = 0.25, levelRequirement = 14, storedUses = 3, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.75, cooldown = 0.25, levelRequirement = 18, storedUses = 3, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.8, cooldown = 0.25, levelRequirement = 22, storedUses = 3, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.84, cooldown = 0.25, levelRequirement = 26, storedUses = 4, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.88, cooldown = 0.25, levelRequirement = 31, storedUses = 4, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.92, cooldown = 0.25, levelRequirement = 36, storedUses = 4, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.95, cooldown = 0.25, levelRequirement = 41, storedUses = 4, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 0.99, cooldown = 0.25, levelRequirement = 46, storedUses = 4, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.03, cooldown = 0.25, levelRequirement = 52, storedUses = 5, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.07, cooldown = 0.25, levelRequirement = 58, storedUses = 5, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.11, cooldown = 0.25, levelRequirement = 64, storedUses = 5, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.15, cooldown = 0.25, levelRequirement = 66, storedUses = 5, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.19, cooldown = 0.25, levelRequirement = 72, storedUses = 5, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.23, cooldown = 0.25, levelRequirement = 78, storedUses = 5, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.28, cooldown = 0.25, levelRequirement = 84, storedUses = 6, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.32, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.36, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.41, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.45, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 1.5, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 1.55, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 1.6, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 1.66, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 1.71, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 1.77, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 1.83, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 1.89, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 1.95, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 2.02, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 2.08, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 2.15, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 2.22, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 2.3, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 2.37, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 2.45, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 2.53, cooldown = 0.25, levelRequirement = 90, storedUses = 6, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Molten Shower", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "elemental_surge", + statDescriptionScope = "triggered_molten_shower", baseFlags = { attack = true, area = true, + projectile = true, }, constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "base_skill_effect_duration", 15000 }, - { "maximum_number_of_instilling_stacks", 6 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + { "active_skill_base_area_of_effect_radius", 10 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 80 }, + { "skill_mortar_minimum_projectile_distance", 5 }, + { "skill_mortar_maximum_projectile_distance", 15 }, }, stats = { + "base_number_of_projectiles", + "base_is_projectile", "is_area_damage", - "cannot_consume_power_frenzy_endurance_charges", - "base_skill_show_average_damage_instead_of_dps", + "skill_has_trigger_from_unique_item", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + [1] = { 4, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 4, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 4, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 4, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 4, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 4, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 4, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 4, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 4, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 4, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 4, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 4, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 4, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 4, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 4, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 4, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 4, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 4, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 4, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 4, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 4, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 4, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 4, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 4, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 4, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 4, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 4, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 4, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Lightning Surge", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "elemental_surge", + } +} +skills["MomentOfVulnerabilityPlayer"] = { + name = "Moment of Vulnerability", + baseTypeName = "Moment of Vulnerability", + icon = "Art/2DArt/SkillIcons/passives/DruidOracleRipFromTimeSkill.dds", + fromTree = true, + color = 4, + description = "Send out a temporal Nova to take advantage of enemies' moment of vulnerability. Hitting enemies that are Primed for Stun, Electrocution, or Freeze causes a visage of them to appear, lasting as long as the original target would have been affected by the form of Immobilisation used to create the visage. A portion of the damage dealt to visages is also dealt to the original.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cooldown] = true, }, + castTime = 0.65, + qualityStats = { + { "time_rip_damage_share_%", 1 }, + }, + levels = { + [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 6, }, }, + [2] = { cooldown = 1, levelRequirement = 3, storedUses = 1, cost = { Mana = 6, }, }, + [3] = { cooldown = 1, levelRequirement = 6, storedUses = 1, cost = { Mana = 7, }, }, + [4] = { cooldown = 1, levelRequirement = 10, storedUses = 1, cost = { Mana = 7, }, }, + [5] = { cooldown = 1, levelRequirement = 14, storedUses = 1, cost = { Mana = 8, }, }, + [6] = { cooldown = 1, levelRequirement = 18, storedUses = 1, cost = { Mana = 9, }, }, + [7] = { cooldown = 1, levelRequirement = 22, storedUses = 1, cost = { Mana = 9, }, }, + [8] = { cooldown = 1, levelRequirement = 26, storedUses = 1, cost = { Mana = 10, }, }, + [9] = { cooldown = 1, levelRequirement = 31, storedUses = 1, cost = { Mana = 11, }, }, + [10] = { cooldown = 1, levelRequirement = 36, storedUses = 1, cost = { Mana = 11, }, }, + [11] = { cooldown = 1, levelRequirement = 41, storedUses = 1, cost = { Mana = 12, }, }, + [12] = { cooldown = 1, levelRequirement = 46, storedUses = 1, cost = { Mana = 13, }, }, + [13] = { cooldown = 1, levelRequirement = 52, storedUses = 1, cost = { Mana = 13, }, }, + [14] = { cooldown = 1, levelRequirement = 58, storedUses = 1, cost = { Mana = 14, }, }, + [15] = { cooldown = 1, levelRequirement = 64, storedUses = 1, cost = { Mana = 15, }, }, + [16] = { cooldown = 1, levelRequirement = 66, storedUses = 1, cost = { Mana = 15, }, }, + [17] = { cooldown = 1, levelRequirement = 72, storedUses = 1, cost = { Mana = 16, }, }, + [18] = { cooldown = 1, levelRequirement = 78, storedUses = 1, cost = { Mana = 17, }, }, + [19] = { cooldown = 1, levelRequirement = 84, storedUses = 1, cost = { Mana = 17, }, }, + [20] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 18, }, }, + [21] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 19, }, }, + [22] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 19, }, }, + [23] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [24] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 21, }, }, + [25] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 21, }, }, + [26] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 22, }, }, + [27] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 23, }, }, + [28] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 23, }, }, + [29] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 24, }, }, + [30] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 25, }, }, + [31] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 25, }, }, + [32] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 26, }, }, + [33] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 27, }, }, + [34] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 27, }, }, + [35] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 28, }, }, + [36] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 29, }, }, + [37] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 29, }, }, + [38] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 30, }, }, + [39] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 31, }, }, + [40] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 31, }, }, + }, + statSets = { + [1] = { + label = "Moment of Vulnerability", + baseEffectiveness = 0.40000000596046, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0060999998822808, + statDescriptionScope = "moment_of_vulnerability", baseFlags = { - attack = true, - area = true, + spell = true, }, constantStats = { - { "chance_to_be_triggered_by_amazon_infusion_%", 100 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "base_skill_effect_duration", 15000 }, - { "maximum_number_of_instilling_stacks", 6 }, - { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + { "rip_from_time_immunity_duration_ms", 10000 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "is_area_damage", - "cannot_consume_power_frenzy_endurance_charges", - "base_skill_show_average_damage_instead_of_dps", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "time_rip_damage_share_%", + "active_skill_show_crush_range", + "active_skill_show_overload_range", + "active_skill_show_freeze_range", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", }, levels = { - [1] = { baseMultiplier = 0.5, actorLevel = 1, }, - [2] = { baseMultiplier = 0.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.61, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.66, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.72, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.77, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.83, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.88, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.93, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.99, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.05, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.11, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.17, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.25, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.32, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.41, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.5, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.59, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.7, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.81, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.93, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.2, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.34, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.5, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.67, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.84, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 3.03, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 3.24, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.45, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.68, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.93, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 4.19, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 4.47, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 4.76, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 5.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 5.42, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 5.78, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 6.17, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 6.58, actorLevel = 288.29998779297, }, + [1] = { 1, 2, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 2, 2, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2, 3, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 3, 4, 66, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 4, 5, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 4, 7, 70, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 5, 8, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6, 9, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 7, 11, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 9, 13, 78, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 10, 15, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 11, 17, 82, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 13, 20, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 15, 22, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 17, 25, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 19, 29, 90, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 21, 32, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 24, 36, 94, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 27, 41, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 30, 46, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 34, 51, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 38, 57, 102, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 43, 64, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 48, 71, 106, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 53, 80, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 59, 89, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 66, 99, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 74, 110, 114, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 82, 123, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 91, 137, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 102, 153, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 114, 170, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 127, 190, 121, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 141, 212, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 157, 236, 123, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 176, 264, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 196, 294, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 219, 329, 126, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 245, 367, 127, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 274, 410, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["EncaseInJadePlayer"] = { - name = "Encase in Jade", - baseTypeName = "Encase in Jade", - icon = "Art/2DArt/SkillIcons/BruteWarbringerEncasedJade.dds", - fromTree = true, +skills["SupportMorrigansInsight"] = { + name = "Morrigan's Insight", + description = "Supports any skill that Hits enemies, causing them to deal more damage and trigger Nature's Exchange when consuming Freeze on enemies. Cannot support skills that Consume Freeze.", color = 4, - description = "Consume all stacks of Jade to grant Guard based off your maximum Life for each Jade consumed. You cannot gain Jade stacks while you have Guard.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, }, - castTime = 0.3, - qualityStats = { - { "maximum_life_%_damage_absorbed_per_jade_consumed", 0.05 }, - }, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SkillConsumesFreeze, SkillType.SupportedByElementalDischarge, }, + gemFamily = { "BitingFrost",}, + isLineage = true, + flavourText = {"\"Wild energy is as misunderstood as the Mórrigan", "itself. Many revere life, yet revile death. What is dead", "feeds the living. Death is but one aspect of the whole.\"", }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 15, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 15, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 15, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 15, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 15, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 15, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 15, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 15, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 15, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 15, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 15, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 15, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 15, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 15, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 15, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 15, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 15, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 15, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 15, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 15, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 15, }, }, + [1] = { levelRequirement = 0, }, }, + grantsThornsDamage = true, statSets = { [1] = { - label = "Encase in Jade", + label = "Morrigan's Insight", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "encase_in_jade", + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_morrigans_refuge_damage_+%_final_vs_frozen_enemies"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), + }, + }, baseFlags = { - duration = true, }, constantStats = { - { "maximum_life_%_damage_absorbed_per_jade_consumed", 6 }, + { "support_morrigans_refuge_damage_+%_final_vs_frozen_enemies", 50 }, }, stats = { - "base_skill_effect_duration", - "base_deal_no_damage", - }, - notMinionStat = { - "base_skill_effect_duration", + "never_freeze", + "consume_enemy_freeze_to_trigger_morrigan_ward", }, levels = { - [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 4050, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4100, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4150, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 4200, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 4250, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 4300, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 4350, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 4400, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 4450, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 4500, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 4550, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 4600, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 4650, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 4700, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 4750, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 4800, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 4850, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4900, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 4950, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5050, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5100, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5150, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5200, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 5250, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 5300, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 5350, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 5400, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 5450, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 5475, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 5500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 5525, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 5550, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 5575, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 5600, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 5625, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 5650, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 5675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 5700, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 65, }, }, }, } } -skills["ExplosiveConcoctionPlayer"] = { - name = "Explosive Concoction", - baseTypeName = "Explosive Concoction", - 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.", - 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, - }, +skills["TriggeredMorrigansInsightPlayer"] = { + name = "Nature's Exchange", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Cold] = true, [SkillType.Guard] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, }, castTime = 1, qualityStats = { - { "explosive_concoction_number_of_secondary_projectiles", 0.1 }, }, levels = { - [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 5, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 5, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 5, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 5, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 5, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 5, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 5, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 5, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 5, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 5, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 5, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 5, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 5, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 5, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 5, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 5, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 5, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 5, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 5, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [2] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [3] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [4] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [5] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [6] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [7] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [8] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [9] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [10] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [11] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [12] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [13] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [14] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [15] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [16] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [17] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [18] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [19] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [20] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [21] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [22] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [23] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [24] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [25] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [26] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [27] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [28] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [29] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [30] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [31] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [32] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [33] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [34] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [35] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [36] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [37] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [38] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [39] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, + [40] = { cooldown = 8, levelRequirement = 0, storedUses = 1, cost = { Ward = 0, }, }, }, statSets = { [1] = { - label = "Flask", - baseEffectiveness = 4.5, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "explosive_concoction", + label = "Nature's Exchange", + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "triggered_morrigans_insight", + statMap = { + ["morrigan_ward_thorns_minimum_base_cold_damage"] = { + mod("ColdMin", "BASE", nil, ModFlag.Thorns, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Nature's Exchange"}), + }, + ["morrigan_ward_thorns_maximum_base_cold_damage"] = { + mod("ColdMax", "BASE", nil, ModFlag.Thorns, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Nature's Exchange"}), + }, + }, baseFlags = { - attack = true, - projectile = true, duration = true, - unarmed = true, - area = true, }, constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "active_skill_ignite_chance_+%_final", 100 }, + { "base_skill_effect_duration", 8000 }, }, stats = { - "main_hand_weapon_minimum_fire_damage", - "main_hand_weapon_maximum_fire_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", - "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", + "morrigan_ward_thorns_minimum_base_cold_damage", + "morrigan_ward_thorns_maximum_base_cold_damage", + "morrigan_ward_gain_X_guard", + "skill_triggered_by_support_which_grants_it", }, levels = { - [1] = { 14, 21, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 23, 35, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 36, 54, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 50, 74, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 64, 96, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 79, 119, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 95, 143, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 112, 169, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 130, 195, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 149, 224, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 169, 253, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 189, 284, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 210, 316, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 233, 349, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 256, 383, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 280, 419, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 304, 457, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 330, 495, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 357, 535, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 384, 576, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 412, 618, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 441, 662, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 471, 707, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 502, 753, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 534, 801, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 566, 849, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 600, 900, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 634, 951, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 669, 1004, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 705, 1058, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 742, 1113, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 780, 1170, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 818, 1228, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 858, 1287, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 898, 1347, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 940, 1409, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 982, 1472, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1025, 1537, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1068, 1603, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1113, 1670, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 3, 5, 16, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 4, 6, 21, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 9, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 8, 11, 38, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 10, 14, 48, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 12, 18, 59, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 14, 22, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 26, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 21, 31, 103, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 24, 37, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 29, 43, 143, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, 50, 167, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 39, 58, 195, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 45, 68, 226, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 52, 79, 262, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 60, 91, 302, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 70, 105, 349, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 80, 121, 402, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 92, 139, 462, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 106, 159, 531, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 122, 183, 610, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 140, 210, 701, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 161, 242, 805, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 185, 277, 925, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 212, 319, 1062, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 244, 366, 1221, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 281, 421, 1403, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 323, 484, 1614, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 371, 557, 1857, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 428, 642, 2139, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 493, 740, 2466, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 569, 853, 2845, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 657, 985, 3285, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 759, 1139, 3797, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 879, 1318, 4393, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1018, 1527, 5089, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1180, 1771, 5902, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1371, 2056, 6853, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1594, 2390, 7968, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1855, 2783, 9275, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["MetaCastFireSpellOnHitPlayer"] = { - name = "Fire Spell on Melee Hit", - baseTypeName = "Fire Spell on Melee Hit", - icon = "Art/2DArt/SkillIcons/SmithOfKitavaTriggerFireballsSkillIcon.dds", +skills["SummonWaterDjinnPlayer"] = { + name = "Navira, the Last Mirage", + baseTypeName = "Navira, the Last Mirage", + icon = "Art/2DArt/SkillIcons/SorceressSummonWaterDjinn.dds", fromTree = true, + minionList = { + "WaterDjinn", + }, color = 4, - description = "While active, gains Energy when you Hit enemies with Melee Attacks and triggers socketed Fire spells on reaching maximum Energy.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.CanHaveMultipleOngoingSkillInstances] = true, [SkillType.GeneratesEnergy] = true, [SkillType.Triggers] = true, [SkillType.AttackInPlace] = true, }, + description = "Summon Navira, an invulnerable Water Djinn Minion to do your bidding. Navira will only act when you Command her to do so, bestowing restorative blessings upon you and your Allies with her Spells.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Cold] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.CreatesGroundEffect] = true, }, castTime = 0, qualityStats = { - { "energy_generated_+%", 0.75 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -3620,327 +11400,491 @@ skills["MetaCastFireSpellOnHitPlayer"] = { }, statSets = { [1] = { - label = "Fire Spell on Melee Hit", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "cast_fire_spell_on_hit", + label = "Navira, the Last Mirage", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "summon_water_djinn", baseFlags = { + minion = true, }, constantStats = { - { "cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit", 300 }, { "skill_desired_amount_override", 1 }, }, stats = { - "energy_generated_+%", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "generic_ongoing_trigger_maximum_energy_is_total_of_socketed_skills", - "base_deal_no_damage", + "water_djinn_mana_wave_mana_regeneration_rate_+%", + "is_resummoning_minion", + "hide_minion_frame", + "display_statset_no_hit_damage", }, levels = { - [1] = { 0, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 3, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 9, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 12, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 15, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 18, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 21, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 24, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 27, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 30, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 33, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 36, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 39, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 42, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 45, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 48, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 51, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 54, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 57, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 60, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 63, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 66, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 69, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 72, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 75, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 78, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 81, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 84, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 87, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 93, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 96, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 99, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 102, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 105, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 108, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 111, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 114, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 117, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 13, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 19, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 22, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 25, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 31, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 34, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 37, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 43, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 46, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 49, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 52, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 55, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 58, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 61, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 64, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 67, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 70, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 73, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 76, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 79, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 82, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 85, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 88, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 91, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 94, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 97, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 100, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 103, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 106, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 109, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 112, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 115, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 118, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 121, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 124, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 127, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["SupportMetaCastFireSpellOnHitPlayer"] = { - name = "SupportMetaCastFireSpellOnHitPlayer", +skills["CommandWaterDjinnBubblePlayer"] = { + name = "Command: {0} ", hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", fromTree = true, - support = true, - requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.Fire, SkillType.AND, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, - excludeSkillTypes = { SkillType.InbuiltTrigger, }, - isTrigger = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 0.4, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 8, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 11, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 13, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 15, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 17, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 20, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 23, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 25, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 29, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 32, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 36, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 40, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 45, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 50, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 55, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 61, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 68, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 75, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 83, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 91, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 101, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 111, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 122, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 133, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 146, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 160, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 176, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 192, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 210, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 229, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 250, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 273, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 298, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 325, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 354, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 385, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 419, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 456, }, }, + }, + statSets = { + [1] = { + label = "Command", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "command_minion_does_not_interrupt", + "command_skill_no_command_marker", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportOlrothsConvictionPlayer"] = { + name = "Olroth's Conviction", + description = "Supports skills that can Empower a specific number of other skills, causing them to apply to more skill uses.", + color = 4, + support = true, + requireSkillTypes = { SkillType.EmpowersOtherSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.IndeterminateEmpowermentAmount, }, + gemFamily = { "OlrothsConviction",}, + isLineage = true, + flavourText = {"The Empty-Eyed Fiend emerged from darkness.", "Olroth raised his sword, gem in its pommel.", "The Fiend smiled. Olroth swung.", "Its head rolled, sockets ablaze with delight.", }, + levels = { + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "SupportMetaCastFireSpellOnHitPlayer", + label = "Olroth's Conviction", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "meta_gem_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time", 10 }, + { "base_skill_ward_cost_as_%_of_life_and_mana_cost", 100 }, + { "support_empowers_x_additional_other_skills", 2 }, }, stats = { - "damage_+%", - "triggered_by_generic_ongoing_trigger", - "generic_ongoing_trigger_triggers_at_maximum_energy", - "no_cost", }, levels = { - [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 20, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 30, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 40, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 50, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 60, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 70, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 80, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 90, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 110, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 120, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 130, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 140, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 150, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 160, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 170, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 180, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 190, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 200, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 210, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 220, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 230, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 240, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 250, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 260, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 270, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 280, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 290, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 300, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 310, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 320, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 330, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 340, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 350, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 360, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 370, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 380, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 390, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 400, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, }, }, } } -skills["FulminatingConcoctionPlayer"] = { - name = "Fulminating Concoction", - baseTypeName = "Fulminating Concoction", - icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionLightningSkill.dds", - fromTree = true, +skills["SupportOlrothsHubrisPlayer"] = { + name = "Olroth's Hubris", + description = "Supports Attacks you use or Trigger yourself, causing them to cost Runic Ward to use but deal additional Physical and Cold damage based on their Runic Ward cost, in addition to causing Physical damage to Contribute to Freeze buildup. Cannot Support Channelling Skills, Sustained Skills, or Skills without a cost.", 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.", - 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, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Sustained, SkillType.HasNoCost, }, + gemFamily = { "RunicInfusion",}, + isLineage = true, + flavourText = {"The gem warmed his palm. \"Our fear of this", "power cost many lives. No longer!\" With his own", "hands, Olroth sealed that expedition's demise.", }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, }, + statSets = { + [1] = { + label = "Olroth's Hubris", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_ward_cost_+_%_of_maximum_ward", 20 }, + { "added_physical_damage_%_ward_cost", 15 }, + { "added_cold_damage_%_ward_cost", 15 }, + }, + stats = { + "physical_damage_can_freeze", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["ParryPlayer"] = { + name = "Parry", + baseTypeName = "Parry", + icon = "Art/2DArt/SkillIcons/HuntressBucklerParry.dds", + fromTree = true, + color = 4, + description = "Ready your Buckler to parry the next Hit you would take, Blocking the Hit and retaliating with a quick sweep that leaves enemies off balance, causing them to take massively increased Attack damage for a short duration. Parrying causes you to accumulate Heavy Stun buildup. You cannot Evade a Hit you could parry, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", + skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.ActiveBlock] = true, }, castTime = 1, qualityStats = { - { "active_skill_shock_chance_+%_final", 2 }, }, levels = { - [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 8, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 8, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 8, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 8, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 8, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 8, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 8, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 8, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 8, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 8, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 8, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 8, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 8, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 8, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 8, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 8, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 8, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 8, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 8, levelRequirement = 90, cost = { Mana = 0, }, }, + [1] = { attackTime = 750, baseMultiplier = 0.65, critChance = 5, levelRequirement = 0, cost = { Mana = 0, ManaPerMinute = 0, }, }, }, statSets = { [1] = { - label = "Fulminating Concoction", - baseEffectiveness = 4.1999998092651, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "fulminating_concoction", + label = "Parry", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "parry", + statMap = { + ["base_parry_buff_damage_taken_+%_final_to_apply"] = { + mod("DamageTaken", "MORE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Parry" }, { type = "Condition", var = "ParryActive" }), + }, + }, baseFlags = { attack = true, - projectile = true, + melee = true, duration = true, - unarmed = true, + shieldAttack = true, area = true, }, + baseMods = { + skill("debuff", true), + }, constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "throw_flask_effects_type", 2 }, - { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_+%_final_while_performing_action", -50 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - { "active_skill_shock_chance_+%_final", 200 }, - { "active_skill_shock_effect_+%_final", 50 }, + { "base_maximum_active_block_distance_for_non_projectiles", 10 }, + { "base_maximum_active_block_distance_for_projectiles", 15 }, + { "base_parry_buff_damage_taken_+%_final_to_apply", 50 }, + { "active_skill_hit_damage_stun_multiplier_+%_final", 400 }, + { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, + { "stun_threshold_+%_final_while_performing_action", -40 }, + { "active_skill_override_turn_duration_ms", 100 }, + { "melee_strike_bonus_attack_distance", 14 }, + { "base_parry_duration_ms", 2000 }, + }, + stats = { + "off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating", + "off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating", + "can_perform_skill_while_moving", + "global_always_hit", + "active_skill_does_not_decay_heavy_stun_during_action", + "always_light_stun", + "quality_display_base_skill_effect_duration_is_gem", + "base_skill_show_average_damage_instead_of_dps", + "replace_off_hand_unarmed_attack_stats_with_shield_type", + "precise_cursor_targeting_uses_contact_point_height_offset", + "is_area_damage", + }, + levels = { + [1] = { 0.80000001192093, 1, statInterpolation = { 3, 3, }, actorLevel = 1, }, + }, + }, + } +} +skills["PinnacleOfPowerPlayer"] = { + name = "Pinnacle of Power", + baseTypeName = "Pinnacle of Power", + icon = "Art/2DArt/SkillIcons/ElementalPowerSkillWand.dds", + fromItem = true, + color = 4, + description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, }, + castTime = 0, + qualityStats = { + { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 }, + }, + levels = { + [20] = { cooldown = 4, levelRequirement = 0, storedUses = 1, cost = { Mana = 93, }, }, + }, + statSets = { + [1] = { + label = "Pinnacle of Power", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "pinnacle_of_power", + statMap = { + ["elemental_power_elemental_damage_+%_final_per_power_charge"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillTypeList = { SkillType.Cold, SkillType.Fire, SkillType.Lightning } }, { type = "Multiplier", var = "RemovablePowerCharge", scalar = "ConsumedPowerChargeEffect" }, { type = "GlobalEffect", effectType = "Buff" }), + flag("ColdCanIgnite", { type = "GlobalEffect", effectType = "Buff" }), flag("ColdCanShock", { type = "GlobalEffect", effectType = "Buff" }), + flag("FireCanFreeze", { type = "GlobalEffect", effectType = "Buff" }), flag("FireCanShock", { type = "GlobalEffect", effectType = "Buff" }), + flag("LightningCanFreeze", { type = "GlobalEffect", effectType = "Buff" }), flag("LightningCanIgnite", { type = "GlobalEffect", effectType = "Buff" }), + }, + ["elemental_power_buff_duration_per_power_charge_ms"] = { + mod("Duration", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge", scalar = "ConsumedPowerChargeEffect" }), + div = 1000, + }, + ["quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem"] = { + -- display only + }, + }, + baseFlags = { + buff = true, + duration = true, + }, + constantStats = { + { "elemental_power_buff_duration_per_power_charge_ms", 5000 }, + { "elemental_power_elemental_damage_+%_final_per_power_charge", 15 }, + }, + stats = { + "base_skill_is_instant", + "base_deal_no_damage", + "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem", + }, + levels = { + [20] = { actorLevel = 60, }, + }, + }, + } +} +skills["PoweredByVerisiumPlayer"] = { + name = "Powered by Verisium", + baseTypeName = "Powered by Verisium", + icon = "Art/2DArt/SkillIcons/ExpeditionVerisiumInfusion.dds", + color = 4, + description = "Spends Ward to generate Verisium Infusions, which can be used in place of any Elemental Infusions.", + skillTypes = { [SkillType.Spell] = true, [SkillType.GeneratesInfusion] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.Cooldown] = true, }, + castTime = 0.7, + qualityStats = { + { "verisium_infusion_duration_+%", 2.5 }, + }, + levels = { + [1] = { cooldown = 7, levelRequirement = 0, storedUses = 1, cost = { Ward = 20, }, }, + [2] = { cooldown = 6.9, levelRequirement = 3, storedUses = 1, cost = { Ward = 24, }, }, + [3] = { cooldown = 6.8, levelRequirement = 6, storedUses = 1, cost = { Ward = 28, }, }, + [4] = { cooldown = 6.7, levelRequirement = 10, storedUses = 1, cost = { Ward = 33, }, }, + [5] = { cooldown = 6.6, levelRequirement = 14, storedUses = 1, cost = { Ward = 38, }, }, + [6] = { cooldown = 6.5, levelRequirement = 18, storedUses = 1, cost = { Ward = 44, }, }, + [7] = { cooldown = 6.4, levelRequirement = 22, storedUses = 1, cost = { Ward = 49, }, }, + [8] = { cooldown = 6.3, levelRequirement = 26, storedUses = 1, cost = { Ward = 55, }, }, + [9] = { cooldown = 6.2, levelRequirement = 31, storedUses = 1, cost = { Ward = 61, }, }, + [10] = { cooldown = 6.1, levelRequirement = 36, storedUses = 1, cost = { Ward = 68, }, }, + [11] = { cooldown = 6, levelRequirement = 41, storedUses = 1, cost = { Ward = 75, }, }, + [12] = { cooldown = 5.9, levelRequirement = 46, storedUses = 1, cost = { Ward = 82, }, }, + [13] = { cooldown = 5.8, levelRequirement = 52, storedUses = 1, cost = { Ward = 90, }, }, + [14] = { cooldown = 5.7, levelRequirement = 58, storedUses = 1, cost = { Ward = 98, }, }, + [15] = { cooldown = 5.6, levelRequirement = 64, storedUses = 1, cost = { Ward = 106, }, }, + [16] = { cooldown = 5.5, levelRequirement = 66, storedUses = 1, cost = { Ward = 115, }, }, + [17] = { cooldown = 5.4, levelRequirement = 72, storedUses = 1, cost = { Ward = 124, }, }, + [18] = { cooldown = 5.3, levelRequirement = 78, storedUses = 1, cost = { Ward = 134, }, }, + [19] = { cooldown = 5.2, levelRequirement = 84, storedUses = 1, cost = { Ward = 144, }, }, + [20] = { cooldown = 5.1, levelRequirement = 90, storedUses = 1, cost = { Ward = 155, }, }, + [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { Ward = 166, }, }, + [22] = { cooldown = 4.9, levelRequirement = 90, storedUses = 1, cost = { Ward = 177, }, }, + [23] = { cooldown = 4.8, levelRequirement = 90, storedUses = 1, cost = { Ward = 190, }, }, + [24] = { cooldown = 4.7, levelRequirement = 90, storedUses = 1, cost = { Ward = 202, }, }, + [25] = { cooldown = 4.6, levelRequirement = 90, storedUses = 1, cost = { Ward = 216, }, }, + [26] = { cooldown = 4.5, levelRequirement = 90, storedUses = 1, cost = { Ward = 230, }, }, + [27] = { cooldown = 4.4, levelRequirement = 90, storedUses = 1, cost = { Ward = 244, }, }, + [28] = { cooldown = 4.3, levelRequirement = 90, storedUses = 1, cost = { Ward = 260, }, }, + [29] = { cooldown = 4.2, levelRequirement = 90, storedUses = 1, cost = { Ward = 276, }, }, + [30] = { cooldown = 4.1, levelRequirement = 90, storedUses = 1, cost = { Ward = 293, }, }, + [31] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Ward = 310, }, }, + [32] = { cooldown = 3.9, levelRequirement = 90, storedUses = 1, cost = { Ward = 329, }, }, + [33] = { cooldown = 3.8, levelRequirement = 90, storedUses = 1, cost = { Ward = 348, }, }, + [34] = { cooldown = 3.7, levelRequirement = 90, storedUses = 1, cost = { Ward = 368, }, }, + [35] = { cooldown = 3.6, levelRequirement = 90, storedUses = 1, cost = { Ward = 389, }, }, + [36] = { cooldown = 3.5, levelRequirement = 90, storedUses = 1, cost = { Ward = 410, }, }, + [37] = { cooldown = 3.4, levelRequirement = 90, storedUses = 1, cost = { Ward = 433, }, }, + [38] = { cooldown = 3.3, levelRequirement = 90, storedUses = 1, cost = { Ward = 457, }, }, + [39] = { cooldown = 3.2, levelRequirement = 90, storedUses = 1, cost = { Ward = 482, }, }, + [40] = { cooldown = 3.1, levelRequirement = 90, storedUses = 1, cost = { Ward = 507, }, }, + }, + statSets = { + [1] = { + label = "Powered by Verisium", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { }, stats = { - "main_hand_weapon_minimum_lightning_damage", - "main_hand_weapon_maximum_lightning_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", - "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", + "verisium_infusion_skill_number_of_verisium_infusion_to_grant", }, levels = { - [1] = { 8, 24, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 14, 41, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 21, 63, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 29, 87, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 37, 112, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 46, 139, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 56, 167, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 66, 197, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 76, 228, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 87, 261, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 98, 295, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 110, 331, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 123, 368, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 136, 407, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 149, 447, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 163, 489, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 178, 533, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 193, 578, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 208, 624, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 224, 672, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 240, 721, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 257, 772, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 275, 825, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 293, 879, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 311, 934, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 330, 991, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 350, 1050, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 370, 1110, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 390, 1171, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 411, 1234, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 433, 1299, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 455, 1365, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 477, 1432, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 500, 1501, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 524, 1572, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 548, 1644, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 573, 1718, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 598, 1793, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 623, 1870, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 649, 1948, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 1, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 1, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 2, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 2, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 2, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 2, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 3, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 3, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 3, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 3, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 3, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 3, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 4, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 4, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 4, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 4, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 4, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 4, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 5, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 5, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 5, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 5, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 5, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 5, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 5, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["FuturePastPlayer"] = { - name = "Future-Past", - baseTypeName = "Future-Past", - icon = "Art/2DArt/SkillIcons/HinekorasSightUnique.dds", - fromItem = true, +skills["PrimalBountyPlayer"] = { + name = "Primal Bounty", + baseTypeName = "Primal Bounty", + icon = "Art/2DArt/SkillIcons/WildspeakerOwlFeathersSkill.dds", + fromTree = true, color = 4, - description = "Hinekora observes your Future-Past granting you the opportunity to subvert a lesser fate. After a period of Hindsight, she will grant you her Foresight, which prevents you from avoiding Hits while Dodge Rolling. When you are Hit while Dodge Rolling, Hinekora restores you to full Life immediately before taking damage from the Hit, and grants you Sight Beyond Sight, which prevents you from dying.", - skillTypes = { [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, }, + description = "Empowers the next Projectile Skill you use, causing it to create additional Projectiles and fly faster.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Instant] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Buff] = true, [SkillType.AttackInPlace] = true, }, castTime = 0, qualityStats = { - { "base_secondary_skill_effect_duration", 15 }, + { "multishot_empowered_projectile_speed_+%", 1.5 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -3986,508 +11930,964 @@ skills["FuturePastPlayer"] = { }, statSets = { [1] = { - label = "Future-Past", + label = "Primal Bounty", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "feathered_ground_evasion_rating_+%", 30 }, + { "feathered_ground_damage_on_full_life_+%", 40 }, + { "owl_feather_buff_timer_ms", 8000 }, + }, + stats = { + "multishot_empowered_projectile_speed_+%", + "base_deal_no_damage", + "skill_triggered_by_owl_feathers", + }, + levels = { + [1] = { 30, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 32, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 34, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 36, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 38, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 40, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 42, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 44, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 46, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 48, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 50, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 52, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 54, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 56, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 58, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 60, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 62, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 64, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 66, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 68, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 70, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 72, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 74, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 76, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 78, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 80, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 82, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 84, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 86, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 88, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 90, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 92, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 94, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 96, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 98, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 100, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 102, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 104, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 106, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 108, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportPrototypeSeventeenPlayer"] = { + name = "Prototype Seventeen", + description = "Supports non-Channelling skill you use yourself that Hits enemies, causing it to gain Critical Hit chance based on Rage, but also remove all Rage upon Critically Hitting.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Channel, }, + gemFamily = { "Prototype",}, + isLineage = true, + flavourText = {"\"The murals tell a story of creation, of design... the Precursors", "delved into the secrets of life itself. In their war with the Abyssals,", "they sought to breed warriors, grown in legions, to fight back...\"", }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Prototype Seventeen", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "critical_strike_chance_+%_per_5_rage", 20 }, + { "lose_%_of_maximum_rage_on_dealing_critical_strike", 100 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["MeleeUnarmedPlayer"] = { + name = "Punch", + hidden = true, + icon = "Art/2DArt/SkillIcons/UnarmedDefaultSkill.dds", + color = 4, + description = "Perform an Unarmed Strike.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Punch", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + }, + stats = { + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["MeleeQuarterstaffPlayer"] = { + name = "Quarterstaff Strike", + baseTypeName = "Quarterstaff Strike", + icon = "Art/2DArt/SkillIcons/QuarterstaffDefaultSkill.dds", + fromItem = true, + color = 4, + description = "Strike with your Quarterstaff.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["Staff"] = true, + }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Quarterstaff Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + attack = true, + melee = true, + area = true, + }, + constantStats = { + { "melee_conditional_step_distance", 10 }, + }, + stats = { + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["RainOfBladesPlayer"] = { + name = "Rain of Blades", + baseTypeName = "Rain of Blades", + icon = "Art/2DArt/SkillIcons/ExpeditionRainofBlades.dds", + color = 4, + description = "Pour your Runic Ward into conjuring blades. For the duration of the Buff, these blades fall on enemies Hit by your Projectile Attacks.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Cooldown] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.IndeterminateEmpowermentAmount] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "base_cooldown_speed_+%", 1 }, + }, + levels = { + [1] = { cooldown = 10, levelRequirement = 0, storedUses = 1, cost = { Ward = 11, }, }, + [2] = { cooldown = 10, levelRequirement = 3, storedUses = 1, cost = { Ward = 12, }, }, + [3] = { cooldown = 10, levelRequirement = 6, storedUses = 1, cost = { Ward = 14, }, }, + [4] = { cooldown = 10, levelRequirement = 10, storedUses = 1, cost = { Ward = 15, }, }, + [5] = { cooldown = 10, levelRequirement = 14, storedUses = 1, cost = { Ward = 17, }, }, + [6] = { cooldown = 10, levelRequirement = 18, storedUses = 1, cost = { Ward = 19, }, }, + [7] = { cooldown = 10, levelRequirement = 22, storedUses = 1, cost = { Ward = 21, }, }, + [8] = { cooldown = 10, levelRequirement = 26, storedUses = 1, cost = { Ward = 23, }, }, + [9] = { cooldown = 10, levelRequirement = 31, storedUses = 1, cost = { Ward = 26, }, }, + [10] = { cooldown = 10, levelRequirement = 36, storedUses = 1, cost = { Ward = 28, }, }, + [11] = { cooldown = 10, levelRequirement = 41, storedUses = 1, cost = { Ward = 31, }, }, + [12] = { cooldown = 10, levelRequirement = 46, storedUses = 1, cost = { Ward = 33, }, }, + [13] = { cooldown = 10, levelRequirement = 52, storedUses = 1, cost = { Ward = 36, }, }, + [14] = { cooldown = 10, levelRequirement = 58, storedUses = 1, cost = { Ward = 39, }, }, + [15] = { cooldown = 10, levelRequirement = 64, storedUses = 1, cost = { Ward = 42, }, }, + [16] = { cooldown = 10, levelRequirement = 66, storedUses = 1, cost = { Ward = 45, }, }, + [17] = { cooldown = 10, levelRequirement = 72, storedUses = 1, cost = { Ward = 48, }, }, + [18] = { cooldown = 10, levelRequirement = 78, storedUses = 1, cost = { Ward = 52, }, }, + [19] = { cooldown = 10, levelRequirement = 84, storedUses = 1, cost = { Ward = 55, }, }, + [20] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 59, }, }, + [21] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 63, }, }, + [22] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 67, }, }, + [23] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 72, }, }, + [24] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 76, }, }, + [25] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 81, }, }, + [26] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 86, }, }, + [27] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 91, }, }, + [28] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 97, }, }, + [29] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 102, }, }, + [30] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 108, }, }, + [31] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 114, }, }, + [32] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 121, }, }, + [33] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 128, }, }, + [34] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 135, }, }, + [35] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 142, }, }, + [36] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 150, }, }, + [37] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 158, }, }, + [38] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 166, }, }, + [39] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 175, }, }, + [40] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 184, }, }, + }, + statSets = { + [1] = { + label = "Rain of Blades", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "future_past", + statDescriptionScope = "rain_of_blades", baseFlags = { }, constantStats = { - { "foresight_clone_duration_ms", 2000 }, - { "skill_desired_amount_override", 1 }, - { "base_skill_effect_duration", 20000 }, + { "base_skill_effect_duration", 5000 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "base_secondary_skill_effect_duration", + "can_perform_skill_while_moving", "base_deal_no_damage", }, - notMinionStat = { - "base_secondary_skill_effect_duration", - }, levels = { - [1] = { 4000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4200, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4300, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 4400, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 4500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 4600, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 4700, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 4800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 4900, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 5000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 5100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 5200, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 5300, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 5400, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 5500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 5600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 5700, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 5800, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 5900, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5950, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 6000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 6050, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 6100, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 6150, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 6200, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 6250, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 6300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 6350, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 6400, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 6450, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 6500, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 6550, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 6600, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 6700, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 6750, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 6800, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 6850, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 6900, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 6950, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["InevitableAgonyPlayer"] = { - name = "Inevitable Agony", - baseTypeName = "Inevitable Agony", - icon = "Art/2DArt/SkillIcons/TemporalistSynchronisationofPainSkill.dds", - fromTree = true, - color = 4, - description = "Curse all targets in an area after a short delay, causing a portion of Damage they take from Hits to be tracked by the Curse debuff. When the debuff's duration expires, they take that tracked damage again, all at once.", - 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.UsableWhileMoving] = true, }, - castTime = 0.7, +skills["RainOfBladesTriggeredPlayer"] = { + name = "Falling Blade", + hidden = true, + icon = "Art/2DArt/SkillIcons/ExpeditionRainofBlades.dds", + skillTypes = { [SkillType.InbuiltTrigger] = true, [SkillType.Instant] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, qualityStats = { - { "base_curse_delay_+%", -0.5 }, - }, - levels = { - [1] = { levelRequirement = 0, cost = { Mana = 41, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 46, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 52, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 57, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 63, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 69, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 76, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 82, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 89, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 96, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 103, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 110, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 118, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 126, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 134, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 142, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 151, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 160, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 169, }, }, - [20] = { levelRequirement = 90, cost = { Mana = 178, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 188, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 198, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 208, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 219, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 230, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 241, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 253, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 265, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 277, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 289, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 302, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 316, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 329, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 344, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 358, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 373, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 388, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 404, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 420, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 437, }, }, + { "base_cooldown_speed_+%", 1 }, + }, + levels = { + [1] = { baseMultiplier = 0.8, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 5, }, }, + [2] = { baseMultiplier = 0.88, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 5, }, }, + [3] = { baseMultiplier = 0.97, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 6, }, }, + [4] = { baseMultiplier = 1.05, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 7, }, }, + [5] = { baseMultiplier = 1.14, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 8, }, }, + [6] = { baseMultiplier = 1.22, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 8, }, }, + [7] = { baseMultiplier = 1.3, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 9, }, }, + [8] = { baseMultiplier = 1.38, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 10, }, }, + [9] = { baseMultiplier = 1.44, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 11, }, }, + [10] = { baseMultiplier = 1.51, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 12, }, }, + [11] = { baseMultiplier = 1.58, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 14, }, }, + [12] = { baseMultiplier = 1.65, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 15, }, }, + [13] = { baseMultiplier = 1.72, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 16, }, }, + [14] = { baseMultiplier = 1.8, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 17, }, }, + [15] = { baseMultiplier = 1.88, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 19, }, }, + [16] = { baseMultiplier = 1.96, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 20, }, }, + [17] = { baseMultiplier = 2.05, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 22, }, }, + [18] = { baseMultiplier = 2.14, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 23, }, }, + [19] = { baseMultiplier = 2.23, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 25, }, }, + [20] = { baseMultiplier = 2.32, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 27, }, }, + [21] = { baseMultiplier = 2.42, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 28, }, }, + [22] = { baseMultiplier = 2.52, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 30, }, }, + [23] = { baseMultiplier = 2.63, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 32, }, }, + [24] = { baseMultiplier = 2.74, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 34, }, }, + [25] = { baseMultiplier = 2.85, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 36, }, }, + [26] = { baseMultiplier = 2.97, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 39, }, }, + [27] = { baseMultiplier = 3.1, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 41, }, }, + [28] = { baseMultiplier = 3.23, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 44, }, }, + [29] = { baseMultiplier = 3.36, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 46, }, }, + [30] = { baseMultiplier = 3.5, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 49, }, }, + [31] = { baseMultiplier = 3.65, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 52, }, }, + [32] = { baseMultiplier = 3.8, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 55, }, }, + [33] = { baseMultiplier = 3.96, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 58, }, }, + [34] = { baseMultiplier = 4.13, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 61, }, }, + [35] = { baseMultiplier = 4.3, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 64, }, }, + [36] = { baseMultiplier = 4.48, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 68, }, }, + [37] = { baseMultiplier = 4.67, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 71, }, }, + [38] = { baseMultiplier = 4.87, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 75, }, }, + [39] = { baseMultiplier = 5.07, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 79, }, }, + [40] = { baseMultiplier = 5.29, cooldown = 0.3, levelRequirement = 0, storedUses = 5, cost = { Ward = 83, }, }, }, statSets = { [1] = { - label = "Inevitable Agony", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "inevitable_agony", + label = "Falling Blade", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "rain_of_blades_triggered_blade", baseFlags = { + attack = true, area = true, - duration = true, - curse = true, - }, - baseMods = { - skill("debuff", true), }, constantStats = { - { "curse_delay_duration_ms", 1500 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "curse_pain_synchronisation_base_recorded_damage_%_to_apply", 50 }, + { "triggered_rain_of_blades_%", 100 }, + { "rain_of_blades_fall_delay_ms", 300 }, + { "active_skill_base_area_of_effect_radius", 12 }, }, stats = { - "base_skill_effect_duration", - "active_skill_base_area_of_effect_radius", - "can_perform_skill_while_moving", - "curse_ignores_curse_limit", - }, - notMinionStat = { - "base_skill_effect_duration", + "triggerable_in_any_set", + "base_all_damage_can_pin", + "display_statset_hide_usage_stats", }, levels = { - [1] = { 6000, 15, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 6200, 16, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 6200, 17, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 6200, 18, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 6400, 18, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 6400, 19, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 6400, 20, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6600, 21, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 6600, 22, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 6600, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 6800, 23, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 6800, 24, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, 25, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 7000, 26, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 7000, 27, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 7000, 28, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 7200, 28, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 7200, 29, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 7200, 30, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 7400, 31, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 7400, 31, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 7400, 31, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 7600, 32, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 7600, 32, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 7600, 32, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 7800, 33, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 7800, 33, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 7800, 33, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 8000, 34, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 8000, 34, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 8000, 34, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 8200, 35, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 8200, 35, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 8200, 35, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 8400, 36, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 8400, 36, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 8400, 36, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 8600, 37, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 8600, 37, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 8600, 37, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["IntoTheBreachPlayer"] = { - name = "Into the Breach", - baseTypeName = "Into the Breach", - icon = "Art/2DArt/SkillIcons/MonkBreachWalk.dds", - fromTree = true, - color = 4, - description = "Create a Breach around you, allowing you to see nearby Flames of Chayula. You are considered to be in a Breach while this skill is active.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0, - qualityStats = { - { "remnant_effect_+%", 0.75 }, - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, +skills["ShieldBlockPlayer"] = { + name = "Raise Shield", + baseTypeName = "Raise Shield", + icon = "Art/2DArt/SkillIcons/BruteShieldBlock.dds", + fromItem = true, + color = 4, + description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking when an enemy is close to perform a Shield Bash, damaging and Stunning enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", + skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, [SkillType.ActiveBlock] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { attackTime = 550, baseMultiplier = 0.8, critChance = 5, levelRequirement = 0, cost = { Mana = 0, ManaPerMinute = 0, }, }, }, statSets = { [1] = { - label = "Into the Breach", + label = "Raise Shield", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "into_the_breach", + statDescriptionScope = "shield_block", baseFlags = { + attack = true, + area = true, + shieldAttack = true, + melee = true, }, constantStats = { - { "skill_desired_amount_override", 1 }, - { "breach_flame_mana_leech_%", 15 }, - { "breach_flame_life_leech_%", 15 }, - { "breach_flame_chaos_addition_%", 7 }, - { "breach_flame_spawn_radius", 35 }, - { "base_remnant_duration_ms", 25000 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "channel_skill_end_animation_duration_override_ms", 35 }, + { "active_block_light_stun_threshold_+%_final", 50 }, + { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, + { "skill_animation_duration_multiplier_override", 4 }, + { "base_minimum_channel_time_ms", 250 }, + { "raise_shield_base_retaliation_duration_ms", 1000 }, + { "active_skill_hit_damage_stun_multiplier_+%_final", 600 }, + { "melee_strike_bonus_attack_distance", 14 }, + { "off_hand_minimum_added_physical_damage_per_5_shield_armour", 3 }, + { "off_hand_maximum_added_physical_damage_per_5_shield_armour", 4 }, + { "active_skill_override_turn_duration_ms", 100 }, + { "base_parry_buff_damage_taken_+%_final_to_apply", 50 }, }, stats = { - "breach_flame_spawn_rate_ms", - "remnant_effect_+%", + "can_perform_skill_while_moving", + "global_always_hit", + "active_skill_does_not_decay_heavy_stun_during_action", + "always_light_stun", + "base_skill_show_average_damage_instead_of_dps", + "replace_off_hand_unarmed_attack_stats_with_shield_type", + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { - [1] = { 1400, 0, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1390, 3, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1380, 5, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1370, 8, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1360, 10, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1350, 13, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1340, 16, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 1330, 18, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 1320, 21, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 1310, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 1300, 26, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 1290, 29, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 1280, 31, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 1270, 34, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 1260, 36, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 1250, 39, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 1240, 42, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 1230, 44, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 1220, 47, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 1210, 50, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 1200, 52, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 1190, 54, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 1180, 56, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 1170, 58, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 1160, 60, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 1150, 62, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 1140, 64, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 1130, 66, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 1120, 68, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 1110, 70, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 1105, 72, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 1100, 74, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 1095, 76, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 1090, 78, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 1085, 80, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 1080, 82, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 1075, 84, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 1070, 86, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 1065, 88, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 1060, 90, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, }, }, } } -skills["CorpseBeetlesPlayer"] = { - name = "Kelari's Malediction", - baseTypeName = "Kelari's Malediction", - icon = "Art/2DArt/SkillIcons/SorceressSandDjinnCorpseBeetles.dds", - fromTree = true, - minionList = { - "BeetleMinion", - }, +skills["RefutationPlayer"] = { + name = "Refutation", + baseTypeName = "Refutation", + icon = "Art/2DArt/SkillIcons/ExpeditionRunicFortress.dds", color = 4, - description = "Harness Kelari's power to passively Consume Corpses in your Presence, causing Corpse Beetle Minions to burst forth. The Beetles passively follow you until Commanded. On your Command, they rush the target and explode.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.OngoingSkill] = true, [SkillType.TargetsDestructibleCorpses] = true, [SkillType.TargetsDestructibleRareCorpses] = true, [SkillType.AttackInPlace] = true, [SkillType.Duration] = true, }, - minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Damage] = true, }, - castTime = 1, + 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.", + 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 = { - { "maximum_corpse_beetles_allowed", 0.2 }, + { "runic_fortress_stun_threshold_+%_final", 1 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { cooldown = 11.9, levelRequirement = 0, storedUses = 1, cost = { Ward = 3, }, }, + [2] = { cooldown = 11.8, levelRequirement = 3, storedUses = 1, cost = { Ward = 3, }, }, + [3] = { cooldown = 11.7, levelRequirement = 6, storedUses = 1, cost = { Ward = 3, }, }, + [4] = { cooldown = 11.6, levelRequirement = 10, storedUses = 1, cost = { Ward = 4, }, }, + [5] = { cooldown = 11.5, levelRequirement = 14, storedUses = 1, cost = { Ward = 4, }, }, + [6] = { cooldown = 11.4, levelRequirement = 18, storedUses = 1, cost = { Ward = 5, }, }, + [7] = { cooldown = 11.3, levelRequirement = 22, storedUses = 1, cost = { Ward = 5, }, }, + [8] = { cooldown = 11.2, levelRequirement = 26, storedUses = 1, cost = { Ward = 6, }, }, + [9] = { cooldown = 11.1, levelRequirement = 31, storedUses = 1, cost = { Ward = 6, }, }, + [10] = { cooldown = 11, levelRequirement = 36, storedUses = 1, cost = { Ward = 7, }, }, + [11] = { cooldown = 10.9, levelRequirement = 41, storedUses = 1, cost = { Ward = 7, }, }, + [12] = { cooldown = 10.8, levelRequirement = 46, storedUses = 1, cost = { Ward = 8, }, }, + [13] = { cooldown = 10.7, levelRequirement = 52, storedUses = 1, cost = { Ward = 8, }, }, + [14] = { cooldown = 10.6, levelRequirement = 58, storedUses = 1, cost = { Ward = 9, }, }, + [15] = { cooldown = 10.5, levelRequirement = 64, storedUses = 1, cost = { Ward = 9, }, }, + [16] = { cooldown = 10.4, levelRequirement = 66, storedUses = 1, cost = { Ward = 10, }, }, + [17] = { cooldown = 10.3, levelRequirement = 72, storedUses = 1, cost = { Ward = 11, }, }, + [18] = { cooldown = 10.2, levelRequirement = 78, storedUses = 1, cost = { Ward = 11, }, }, + [19] = { cooldown = 10.1, levelRequirement = 84, storedUses = 1, cost = { Ward = 12, }, }, + [20] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Ward = 13, }, }, + [21] = { cooldown = 9.95, levelRequirement = 90, storedUses = 1, cost = { Ward = 13, }, }, + [22] = { cooldown = 9.9, levelRequirement = 90, storedUses = 1, cost = { Ward = 14, }, }, + [23] = { cooldown = 9.85, levelRequirement = 90, storedUses = 1, cost = { Ward = 15, }, }, + [24] = { cooldown = 9.8, levelRequirement = 90, storedUses = 1, cost = { Ward = 15, }, }, + [25] = { cooldown = 9.75, levelRequirement = 90, storedUses = 1, cost = { Ward = 16, }, }, + [26] = { cooldown = 9.7, levelRequirement = 90, storedUses = 1, cost = { Ward = 17, }, }, + [27] = { cooldown = 9.65, levelRequirement = 90, storedUses = 1, cost = { Ward = 18, }, }, + [28] = { cooldown = 9.6, levelRequirement = 90, storedUses = 1, cost = { Ward = 19, }, }, + [29] = { cooldown = 9.55, levelRequirement = 90, storedUses = 1, cost = { Ward = 20, }, }, + [30] = { cooldown = 9.5, levelRequirement = 90, storedUses = 1, cost = { Ward = 21, }, }, + [31] = { cooldown = 9.45, levelRequirement = 90, storedUses = 1, cost = { Ward = 22, }, }, + [32] = { cooldown = 9.4, levelRequirement = 90, storedUses = 1, cost = { Ward = 23, }, }, + [33] = { cooldown = 9.35, levelRequirement = 90, storedUses = 1, cost = { Ward = 23, }, }, + [34] = { cooldown = 9.3, levelRequirement = 90, storedUses = 1, cost = { Ward = 25, }, }, + [35] = { cooldown = 9.25, levelRequirement = 90, storedUses = 1, cost = { Ward = 26, }, }, + [36] = { cooldown = 9.2, levelRequirement = 90, storedUses = 1, cost = { Ward = 27, }, }, + [37] = { cooldown = 9.15, levelRequirement = 90, storedUses = 1, cost = { Ward = 28, }, }, + [38] = { cooldown = 9.1, levelRequirement = 90, storedUses = 1, cost = { Ward = 29, }, }, + [39] = { cooldown = 9.05, levelRequirement = 90, storedUses = 1, cost = { Ward = 30, }, }, + [40] = { cooldown = 9, levelRequirement = 90, storedUses = 1, cost = { Ward = 31, }, }, }, statSets = { [1] = { - label = "Kelari's Malediction", + label = "Refutation", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "corpse_beetles", + statDescriptionScope = "refutation", baseFlags = { }, constantStats = { - { "skill_desired_amount_override", 1 }, - { "skill_specific_stat_description_mode", 2 }, + { "base_skill_effect_duration", 4000 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "base_parry_buff_damage_taken_+%_final_to_apply", 50 }, + { "runic_fortress_stun_threshold_+%_final", -50 }, + { "runic_fortress_stun_threshold_+%_final_per_10_ward_spent", 5 }, }, stats = { - "base_secondary_skill_effect_duration", - "maximum_corpse_beetles_allowed", + "base_parry_duration_ms", "base_deal_no_damage", - }, - notMinionStat = { - "base_secondary_skill_effect_duration", + "display_statset_no_hit_damage", + "can_perform_skill_while_moving", }, levels = { - [1] = { 1500, 4, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 1500, 4, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 1400, 4, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 1300, 4, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 1300, 4, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 1300, 6, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 1200, 6, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 1100, 6, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 1000, 8, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 900, 8, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 800, 8, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 800, 8, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 800, 10, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 800, 10, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 700, 10, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 600, 10, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 500, 12, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 400, 12, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 300, 12, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 2000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 2100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 2200, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 2300, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 2400, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 2500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2600, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2700, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 2800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 2900, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 3000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 3100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 3200, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 3300, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 3400, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 3500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 3600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 3700, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 3800, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 3900, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 3950, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 4000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 4150, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 4200, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 4300, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 4350, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 4400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 4450, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 4500, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 4550, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 4600, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 4650, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4700, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4750, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4800, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4850, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4900, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4950, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 5000, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 5050, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["CommandCorpseBeetleExplodePlayer"] = { - name = "Command: {0} ", - hidden = true, - icon = "Art/2DArt/SkillIcons/Rolldodge.dds", - fromTree = true, - skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, - castTime = 0.4, +skills["MetaRemnantsOfKalguurPlayer"] = { + name = "Remnants of Kalguur", + baseTypeName = "Remnants of Kalguur", + icon = "Art/2DArt/SkillIcons/ExpeditionRemnantsofKalguur.dds", + color = 4, + description = "While active, enemies you Stun or kill have a chance to generate a Runic Ward Remnant. These Remnants can Overflow your Runic Ward.", + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.GeneratesRemnants] = true, }, + castTime = 1, qualityStats = { + { "ward_remnants_chance_to_spawn_orb_on_killing_enemy_%", 0.25 }, + { "ward_remnants_chance_to_spawn_remnant_on_stun_%", 0.25 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { levelRequirement = 0, cost = { Mana = 9, }, }, - [3] = { levelRequirement = 0, cost = { Mana = 10, }, }, - [4] = { levelRequirement = 0, cost = { Mana = 12, }, }, - [5] = { levelRequirement = 0, cost = { Mana = 14, }, }, - [6] = { levelRequirement = 0, cost = { Mana = 16, }, }, - [7] = { levelRequirement = 0, cost = { Mana = 18, }, }, - [8] = { levelRequirement = 0, cost = { Mana = 21, }, }, - [9] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [10] = { levelRequirement = 0, cost = { Mana = 27, }, }, - [11] = { levelRequirement = 0, cost = { Mana = 30, }, }, - [12] = { levelRequirement = 0, cost = { Mana = 34, }, }, - [13] = { levelRequirement = 0, cost = { Mana = 38, }, }, - [14] = { levelRequirement = 0, cost = { Mana = 42, }, }, - [15] = { levelRequirement = 0, cost = { Mana = 47, }, }, - [16] = { levelRequirement = 0, cost = { Mana = 52, }, }, - [17] = { levelRequirement = 0, cost = { Mana = 58, }, }, - [18] = { levelRequirement = 0, cost = { Mana = 64, }, }, - [19] = { levelRequirement = 0, cost = { Mana = 71, }, }, - [20] = { levelRequirement = 0, cost = { Mana = 78, }, }, - [21] = { levelRequirement = 0, cost = { Mana = 86, }, }, - [22] = { levelRequirement = 0, cost = { Mana = 95, }, }, - [23] = { levelRequirement = 0, cost = { Mana = 105, }, }, - [24] = { levelRequirement = 0, cost = { Mana = 115, }, }, - [25] = { levelRequirement = 0, cost = { Mana = 127, }, }, - [26] = { levelRequirement = 0, cost = { Mana = 139, }, }, - [27] = { levelRequirement = 0, cost = { Mana = 152, }, }, - [28] = { levelRequirement = 0, cost = { Mana = 167, }, }, - [29] = { levelRequirement = 0, cost = { Mana = 183, }, }, - [30] = { levelRequirement = 0, cost = { Mana = 200, }, }, - [31] = { levelRequirement = 0, cost = { Mana = 219, }, }, - [32] = { levelRequirement = 0, cost = { Mana = 239, }, }, - [33] = { levelRequirement = 0, cost = { Mana = 261, }, }, - [34] = { levelRequirement = 0, cost = { Mana = 284, }, }, - [35] = { levelRequirement = 0, cost = { Mana = 310, }, }, - [36] = { levelRequirement = 0, cost = { Mana = 338, }, }, - [37] = { levelRequirement = 0, cost = { Mana = 368, }, }, - [38] = { levelRequirement = 0, cost = { Mana = 401, }, }, - [39] = { levelRequirement = 0, cost = { Mana = 436, }, }, - [40] = { levelRequirement = 0, cost = { Mana = 474, }, }, + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + [2] = { levelRequirement = 3, spiritReservationFlat = 30, }, + [3] = { levelRequirement = 6, spiritReservationFlat = 30, }, + [4] = { levelRequirement = 10, spiritReservationFlat = 30, }, + [5] = { levelRequirement = 14, spiritReservationFlat = 30, }, + [6] = { levelRequirement = 18, spiritReservationFlat = 30, }, + [7] = { levelRequirement = 22, spiritReservationFlat = 30, }, + [8] = { levelRequirement = 26, spiritReservationFlat = 30, }, + [9] = { levelRequirement = 31, spiritReservationFlat = 30, }, + [10] = { levelRequirement = 36, spiritReservationFlat = 30, }, + [11] = { levelRequirement = 41, spiritReservationFlat = 30, }, + [12] = { levelRequirement = 46, spiritReservationFlat = 30, }, + [13] = { levelRequirement = 52, spiritReservationFlat = 30, }, + [14] = { levelRequirement = 58, spiritReservationFlat = 30, }, + [15] = { levelRequirement = 64, spiritReservationFlat = 30, }, + [16] = { levelRequirement = 66, spiritReservationFlat = 30, }, + [17] = { levelRequirement = 72, spiritReservationFlat = 30, }, + [18] = { levelRequirement = 78, spiritReservationFlat = 30, }, + [19] = { levelRequirement = 84, spiritReservationFlat = 30, }, + [20] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [21] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [22] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [23] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [24] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [25] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [26] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [27] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [28] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [29] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [30] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [31] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [32] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [33] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [34] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [35] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [36] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [37] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [38] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [39] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [40] = { levelRequirement = 90, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Remnants of Kalguur", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "remnants_of_kalguur", + baseFlags = { + }, + constantStats = { + { "ward_remnants_chance_to_spawn_orb_on_killing_enemy_%", 25 }, + { "ward_remnants_chance_to_spawn_remnant_on_stun_%", 50 }, + { "ward_remnants_spawn_remnant_on_stun_cooldown_ms", 3000 }, + { "base_remnant_duration_ms", 8000 }, + }, + stats = { + "ward_remnants_gain_per_globe", + "base_deal_no_damage_over_time", + "base_deal_no_damage", + }, + levels = { + [1] = { 5, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 7, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 11, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 15, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 20, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 26, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 32, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 40, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 47, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 56, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 65, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 78, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 88, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 102, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 116, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 131, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 150, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 168, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 187, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 205, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 224, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 245, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 265, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 287, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 308, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 328, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 353, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 376, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 399, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 425, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 450, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 476, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 502, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 531, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 557, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 586, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 614, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 643, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 675, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 704, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["WyvernRendPlayer"] = { + name = "Rend", + baseTypeName = "Rend", + icon = "Art/2DArt/SkillIcons/DruidWyvernSwipe.dds", + color = 4, + description = "Shapeshift into a Wyvern and perform a wide slash with your wingtip claws. Consumes a Power Charge if possible to grant you a Buff that gives you extra Lightning damage. While you have the Buff, Rend covers a much larger area but is slower.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Shapeshift] = true, [SkillType.Wyvern] = true, [SkillType.ConsumesCharges] = true, [SkillType.Duration] = true, }, + weaponTypes = { + ["Talisman"] = true, + }, + castTime = 1, + qualityStats = { + { "wyvern_devour_base_all_damage_%_to_gain_as_lightning", 0.5 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -10, baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -10, baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -10, baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.57, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.8, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.56, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -10, baseMultiplier = 8.26, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -10, baseMultiplier = 8.67, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -10, baseMultiplier = 9.1, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Command", + label = "Normal Strikes", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "rend", baseFlags = { - minion = true, + attack = true, + area = true, + melee = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "command_target_rarity_prioritisation_radius", 20 }, - { "command_location_placement_variance", 7 }, + { "base_melee_dash_range", 20 }, + { "melee_conditional_step_distance", 10 }, + { "wyvern_devour_base_all_damage_%_to_gain_as_lightning", 50 }, + { "base_skill_effect_duration", 10000 }, }, stats = { - "minions_do_not_move_to_skill_target", - "can_perform_skill_while_moving", - "skill_is_command", - "base_deal_no_damage", - "play_commanded_additive_animation", + "is_area_damage", + "disable_quadruped_head_control", }, levels = { [1] = { actorLevel = 1, }, @@ -4532,197 +12932,394 @@ skills["CommandCorpseBeetleExplodePlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, + [2] = { + label = "Lightning-Charged", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "rend", + baseFlags = { + attack = true, + area = true, + melee = true, + }, + constantStats = { + { "base_melee_dash_range", 20 }, + { "melee_conditional_step_distance", 10 }, + { "supplementary_stat_container_attack_speed_+%_final", -20 }, + { "skill_specific_stat_description_mode", 1 }, + }, + stats = { + "is_area_damage", + "disable_quadruped_head_control", + }, + levels = { + [1] = { baseMultiplier = 1.3, actorLevel = 1, }, + [2] = { baseMultiplier = 1.43, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.57, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.71, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.85, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.99, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 2.13, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 2.26, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 2.37, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.49, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.61, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.74, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.88, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 3.03, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 3.18, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 3.34, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 3.5, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 3.68, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 3.86, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 4.05, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 4.26, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 4.47, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 4.69, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 4.93, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 5.17, actorLevel = 136.875, }, + [26] = { baseMultiplier = 5.43, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 5.71, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 5.99, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 6.29, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 6.6, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 6.93, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 7.28, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 7.65, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 8.03, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 8.43, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 8.85, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 9.29, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 9.76, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 10.25, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 10.76, actorLevel = 288.29998779297, }, + }, + }, } } -skills["SummonSandDjinnPlayer"] = { - name = "Kelari, the Tainted Sands", - baseTypeName = "Kelari, the Tainted Sands", - icon = "Art/2DArt/SkillIcons/SorceressSummonSandDjinn.dds", - fromTree = true, - minionList = { - "SandDjinn", - }, +skills["CurseOfRepulsionPlayer"] = { + name = "Repulsion", + baseTypeName = "Repulsion", + icon = "Art/2DArt/SkillIcons/ExpeditionMarkofRepulsion.dds", color = 4, - description = "Summon Kelari, an invulnerable Sand Djinn Minion, to do your bidding. Kelari will only act when you Command him to do so. Kelari delivers swift Hits with massive Critical Hit potential.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Physical] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, - minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Projectile] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, [SkillType.GainsStages] = true, }, - castTime = 0, + 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.", + 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 = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Ward = 15, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 18, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 21, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 25, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 29, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 33, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 37, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 41, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 46, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 51, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 56, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 61, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 67, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 73, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 79, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 86, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 93, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 100, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 108, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 116, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 124, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 133, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 142, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 152, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 162, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 172, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 183, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 195, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 207, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 219, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 233, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 246, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 261, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 276, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 291, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 308, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 325, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 343, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 361, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 380, }, }, }, statSets = { [1] = { - label = "Kelari, the Tainted Sands", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "skill_stat_descriptions", + label = "Repulsion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "repulsion", baseFlags = { }, constantStats = { - { "skill_desired_amount_override", 1 }, - { "apply_X_stacks_of_critical_weakness_on_hit", 1 }, - { "base_critical_strike_multiplier_+", 50 }, + { "curse_delay_duration_ms", 1500 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "repulsion_curse_when_detonated_prevent_curse_for_X_ms", 1000 }, + { "curse_repulsion_applies_X_fragility", 20 }, }, stats = { - "is_resummoning_minion", - "hide_minion_frame", - "display_statset_no_hit_damage", - "minion_is_not_interupted_when_replaced", + "base_skill_effect_duration", + "active_skill_base_area_of_effect_radius", + "skill_curses_cannot_apply_to_targets_above_level", + "base_deal_no_damage", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_skill_effect_duration", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 6000, 15, 20, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 6200, 16, 23, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6200, 17, 25, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 6200, 18, 29, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 6400, 18, 32, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 6400, 19, 36, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 6400, 20, 39, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 6600, 21, 43, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 6600, 22, 47, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 6600, 23, 52, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 6800, 23, 56, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 6800, 24, 61, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, 25, 66, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 7000, 26, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 7000, 27, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 7000, 28, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 7200, 28, 78, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 7200, 29, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 7200, 30, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 7400, 31, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 7400, 31, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 7400, 31, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 7600, 32, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 7600, 32, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 7600, 32, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 7800, 33, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 7800, 33, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 7800, 33, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 8000, 34, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 8000, 34, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 8000, 34, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 8200, 35, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 8200, 35, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 8200, 35, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 8400, 36, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 8400, 36, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 8400, 36, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 8600, 37, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8600, 37, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 8600, 37, 0, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["CommandSandDjinnKnifeThrowPlayer"] = { - name = "Command: {0} ", +skills["CurseOfRepulsionShockwavePlayer"] = { + name = "Repulsion Wave", hidden = true, - icon = "Art/2DArt/SkillIcons/Rolldodge.dds", - fromTree = true, - skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, - castTime = 0.4, + icon = "Art/2DArt/SkillIcons/ExpeditionMarkofRepulsion.dds", + description = "Deals Physical Attack damage in an area around the Cursed target that is not based on your Weapon's damage. Other targets are Knocked back and take more Stun buildup based on the Fragility they have.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Physical] = true, [SkillType.UseGlobalStats] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Cooldown] = true, }, + castTime = 0, qualityStats = { + { "active_skill_hit_damage_stun_multiplier_+%_final", 2 }, }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 3, }, }, - [2] = { levelRequirement = 0, cost = { Mana = 4, }, }, - [3] = { levelRequirement = 0, cost = { Mana = 5, }, }, - [4] = { levelRequirement = 0, cost = { Mana = 5, }, }, - [5] = { levelRequirement = 0, cost = { Mana = 6, }, }, - [6] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [7] = { levelRequirement = 0, cost = { Mana = 8, }, }, - [8] = { levelRequirement = 0, cost = { Mana = 10, }, }, - [9] = { levelRequirement = 0, cost = { Mana = 11, }, }, - [10] = { levelRequirement = 0, cost = { Mana = 12, }, }, - [11] = { levelRequirement = 0, cost = { Mana = 14, }, }, - [12] = { levelRequirement = 0, cost = { Mana = 16, }, }, - [13] = { levelRequirement = 0, cost = { Mana = 18, }, }, - [14] = { levelRequirement = 0, cost = { Mana = 20, }, }, - [15] = { levelRequirement = 0, cost = { Mana = 22, }, }, - [16] = { levelRequirement = 0, cost = { Mana = 25, }, }, - [17] = { levelRequirement = 0, cost = { Mana = 27, }, }, - [18] = { levelRequirement = 0, cost = { Mana = 30, }, }, - [19] = { levelRequirement = 0, cost = { Mana = 34, }, }, - [20] = { levelRequirement = 0, cost = { Mana = 37, }, }, - [21] = { levelRequirement = 0, cost = { Mana = 41, }, }, - [22] = { levelRequirement = 0, cost = { Mana = 45, }, }, - [23] = { levelRequirement = 0, cost = { Mana = 50, }, }, - [24] = { levelRequirement = 0, cost = { Mana = 55, }, }, - [25] = { levelRequirement = 0, cost = { Mana = 61, }, }, - [26] = { levelRequirement = 0, cost = { Mana = 66, }, }, - [27] = { levelRequirement = 0, cost = { Mana = 73, }, }, - [28] = { levelRequirement = 0, cost = { Mana = 80, }, }, - [29] = { levelRequirement = 0, cost = { Mana = 88, }, }, - [30] = { levelRequirement = 0, cost = { Mana = 96, }, }, - [31] = { levelRequirement = 0, cost = { Mana = 105, }, }, - [32] = { levelRequirement = 0, cost = { Mana = 114, }, }, - [33] = { levelRequirement = 0, cost = { Mana = 125, }, }, - [34] = { levelRequirement = 0, cost = { Mana = 136, }, }, - [35] = { levelRequirement = 0, cost = { Mana = 149, }, }, - [36] = { levelRequirement = 0, cost = { Mana = 162, }, }, - [37] = { levelRequirement = 0, cost = { Mana = 177, }, }, - [38] = { levelRequirement = 0, cost = { Mana = 192, }, }, - [39] = { levelRequirement = 0, cost = { Mana = 209, }, }, - [40] = { levelRequirement = 0, cost = { Mana = 228, }, }, + [1] = { baseMultiplier = 0.5, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [2] = { baseMultiplier = 0.55, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [3] = { baseMultiplier = 0.61, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [4] = { baseMultiplier = 0.67, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [5] = { baseMultiplier = 0.73, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [6] = { baseMultiplier = 0.79, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [7] = { baseMultiplier = 0.85, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [8] = { baseMultiplier = 0.91, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [9] = { baseMultiplier = 0.97, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [10] = { baseMultiplier = 1.03, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [11] = { baseMultiplier = 1.09, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [12] = { baseMultiplier = 1.17, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [13] = { baseMultiplier = 1.25, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [14] = { baseMultiplier = 1.33, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [15] = { baseMultiplier = 1.42, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [16] = { baseMultiplier = 1.53, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [17] = { baseMultiplier = 1.64, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [18] = { baseMultiplier = 1.76, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [19] = { baseMultiplier = 1.89, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [20] = { baseMultiplier = 2.04, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [21] = { baseMultiplier = 2.2, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [22] = { baseMultiplier = 2.37, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [23] = { baseMultiplier = 2.55, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [24] = { baseMultiplier = 2.75, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [25] = { baseMultiplier = 2.96, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [26] = { baseMultiplier = 3.19, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [27] = { baseMultiplier = 3.44, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [28] = { baseMultiplier = 3.7, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [29] = { baseMultiplier = 3.99, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [30] = { baseMultiplier = 4.3, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [31] = { baseMultiplier = 4.63, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [32] = { baseMultiplier = 4.99, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [33] = { baseMultiplier = 5.37, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [34] = { baseMultiplier = 5.79, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [35] = { baseMultiplier = 6.24, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [36] = { baseMultiplier = 6.72, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [37] = { baseMultiplier = 7.24, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [38] = { baseMultiplier = 7.8, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [39] = { baseMultiplier = 8.4, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + [40] = { baseMultiplier = 9.05, cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 0, }, }, + }, + statSets = { + [1] = { + label = "Repulsion Wave", + baseEffectiveness = 1.5, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "repulsion_shockwave", + baseFlags = { + nonWeaponAttack = true, + area = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 15 }, + { "knockback_distance_+%", 200 }, + { "curse_repulsion_shockwave_hit_damage_stun_multiplier_+%_final_per_fragility_on_special_object", 10 }, + }, + stats = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + "display_statset_hide_usage_stats", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "base_skill_show_average_damage_instead_of_dps", + "triggerable_in_any_set", + "is_area_damage", + "triggered_by_primary_skill", + "global_knockback", + "repulsion_mark_cannot_knockback_special_object", + }, + notMinionStat = { + "main_hand_weapon_minimum_physical_damage", + "main_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 5, 7, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 8, 12, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 17, 25, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 21, 32, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 26, 40, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 32, 48, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 37, 56, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 43, 65, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 50, 75, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 56, 84, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 63, 95, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 70, 105, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 78, 116, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 85, 128, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 93, 140, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 101, 152, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 110, 165, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 119, 178, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 128, 192, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 137, 206, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 147, 221, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 157, 236, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 167, 251, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 178, 267, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 189, 283, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 200, 300, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 211, 317, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 223, 335, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 235, 353, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 247, 371, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 260, 390, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 273, 409, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 299, 449, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 313, 470, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 327, 491, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 342, 512, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 356, 534, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 371, 557, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["RighteousDescentPlayer"] = { + name = "Righteous Descent", + baseTypeName = "Righteous Descent", + icon = "Art/2DArt/SkillIcons/ChallengersAscentSkill.dds", + fromItem = true, + color = 4, + description = "Leap into the air carried by divine wings, damaging enemies with your spear where you land. If there is a Fragment of Divinity near you or the targeted location, this attack will Consume it when you leap to become Empowered, dealing more damage and granting life and mana recovery. This skill does not use up its Cooldown when empowered.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Movement] = true, [SkillType.Cooldown] = true, [SkillType.Spear] = true, [SkillType.ManualCooldownConsumption] = true, [SkillType.Slam] = true, [SkillType.Travel] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, + }, + levels = { + [1] = { baseMultiplier = 4, cooldown = 10, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 4.4, cooldown = 10, levelRequirement = 3, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 4.84, cooldown = 10, levelRequirement = 6, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 5.29, cooldown = 10, levelRequirement = 10, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 5.73, cooldown = 10, levelRequirement = 14, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 6.18, cooldown = 10, levelRequirement = 18, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 6.64, cooldown = 10, levelRequirement = 22, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 7.08, cooldown = 10, levelRequirement = 26, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 7.48, cooldown = 10, levelRequirement = 31, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 7.9, cooldown = 10, levelRequirement = 36, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 8.37, cooldown = 10, levelRequirement = 41, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 8.86, cooldown = 10, levelRequirement = 46, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 9.39, cooldown = 10, levelRequirement = 52, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 9.97, cooldown = 10, levelRequirement = 58, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 10.59, cooldown = 10, levelRequirement = 64, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 11.25, cooldown = 10, levelRequirement = 66, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 11.97, cooldown = 10, levelRequirement = 72, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 12.75, cooldown = 10, levelRequirement = 78, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 13.58, cooldown = 10, levelRequirement = 84, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 14.49, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 15.45, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 16.48, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 17.58, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 18.75, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 20, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 21.33, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 22.75, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 24.27, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 25.89, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 27.61, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 29.45, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 31.41, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 33.51, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 35.74, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 38.12, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 40.66, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 43.37, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 46.26, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 49.34, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 52.62, cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Command", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + label = "Impact", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "righteous_descent_statset_0", baseFlags = { + attack = true, + area = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "total_attack_time_+_ms", 2000 }, + { "leap_slam_animation_distance_threshold", 200 }, + { "active_skill_base_area_of_effect_radius", 25 }, + { "attack_maximum_action_distance_+", 75 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, + { "skill_specific_stat_description_mode", 3 }, }, stats = { - "minions_do_not_move_to_skill_target", - "can_perform_skill_while_moving", - "skill_is_command", - "base_deal_no_damage", - "command_minion_does_not_interrupt", + "is_area_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -4767,197 +13364,423 @@ skills["CommandSandDjinnKnifeThrowPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, + [2] = { + label = "Empowered", + baseEffectiveness = 0, + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "righteous_descent_statset_1", + baseFlags = { + attack = true, + area = true, + }, + constantStats = { + { "total_attack_time_+_ms", 2000 }, + { "leap_slam_animation_distance_threshold", 200 }, + { "attack_maximum_action_distance_+", 75 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, + { "skill_specific_stat_description_mode", 3 }, + { "active_skill_base_area_of_effect_radius", 40 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 40 }, + { "recover_%_of_mana_over_2_seconds_when_consuming_a_divine_fragment", 10 }, + { "recover_%_of_life_over_2_seconds_when_consuming_a_divine_fragment", 10 }, + }, + stats = { + "is_area_damage", + "base_skill_exerted_itself", + "display_no_cooldown_use_if_empowered", + }, + levels = { + [1] = { baseMultiplier = 4, actorLevel = 1, }, + [2] = { baseMultiplier = 4.4, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 4.84, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 5.29, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 5.73, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 6.18, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 6.64, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 7.08, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 7.48, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 7.9, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 8.37, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 8.86, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 9.39, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 9.97, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 10.59, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 11.25, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 11.97, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 12.75, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 13.58, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 14.49, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 15.45, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 16.48, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 17.58, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 18.75, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 20, actorLevel = 136.875, }, + [26] = { baseMultiplier = 21.33, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 22.75, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 24.27, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 25.89, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 27.61, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 29.45, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 31.41, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 33.51, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 35.74, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 38.12, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 40.66, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 43.37, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 46.26, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 49.34, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 52.62, actorLevel = 288.29998779297, }, + }, + }, } } -skills["LifeRemnantsPlayer"] = { - name = "Life Remnants", - baseTypeName = "Life Remnants", - icon = "Art/2DArt/SkillIcons/BloodChannel.dds", +skills["SacredGroundPlayer"] = { + name = "Rite of Restoration", + baseTypeName = "Rite of Restoration", + icon = "Art/2DArt/SkillIcons/HuskofDreamsSkill.dds", + fromItem = true, + color = 4, + description = "Place a Sigil on the ground, providing a powerful Buff to you and Allies standing in it which grants Life Regeneration and amplifies Armour, Evasion and Energy Shield. The Buff becomes more powerful the more mana you spend while standing in the Sigil. ", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Limit] = true, [SkillType.GainsStages] = true, }, + castTime = 0.6, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.4 }, + }, + levels = { + [1] = { cooldown = 10, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 10, levelRequirement = 3, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 10, levelRequirement = 6, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 10, levelRequirement = 10, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 10, levelRequirement = 14, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 10, levelRequirement = 18, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 10, levelRequirement = 22, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 10, levelRequirement = 26, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 10, levelRequirement = 31, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 10, levelRequirement = 36, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 10, levelRequirement = 41, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 10, levelRequirement = 46, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 10, levelRequirement = 52, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 10, levelRequirement = 58, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 10, levelRequirement = 64, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 10, levelRequirement = 66, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 10, levelRequirement = 72, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 10, levelRequirement = 78, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 10, levelRequirement = 84, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Rite of Restoration", + baseEffectiveness = 0.1630000025034, + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "sigil_of_life", + baseFlags = { + }, + constantStats = { + { "circle_of_power_max_stages", 4 }, + { "base_number_of_sigil_of_power_allowed", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 45 }, + { "circle_of_power_minimum_time_between_stage_increases_ms", 1000 }, + { "base_circle_of_power_mana_%_spend_per_upgrade", 35 }, + }, + stats = { + "sacred_ground_life_regeneration_for_allies_per_minute_per_stage", + "sacred_ground_armour_evasion_energy_shield_+%_final_per_stage", + "base_skill_effect_duration", + "display_sigil_of_power_stage_gain_delay", + "can_perform_skill_while_moving", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 65, 10, 10000, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 130, 10, 10100, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 195, 10, 10200, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 260, 10, 10300, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 325, 11, 10400, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 390, 11, 10500, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 455, 11, 10600, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 520, 11, 10700, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 585, 12, 10800, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 650, 12, 10900, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 715, 12, 11000, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 780, 12, 11100, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 845, 13, 11200, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 910, 13, 11300, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 975, 13, 11400, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1040, 13, 11500, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1105, 14, 11600, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1170, 14, 11700, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1235, 14, 11800, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1300, 14, 11900, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1365, 15, 12000, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1430, 15, 12100, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1495, 15, 12200, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1560, 15, 12300, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1625, 16, 12400, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 1690, 16, 12500, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1755, 16, 12600, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1820, 16, 12700, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1885, 17, 12800, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1950, 17, 12900, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2015, 17, 13000, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2080, 17, 13100, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 2145, 18, 13200, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 2210, 18, 13300, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2275, 18, 13400, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2340, 18, 13500, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2405, 19, 13600, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2470, 19, 13700, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2535, 19, 13800, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 2600, 20, 13900, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["RitualSacrificePlayer"] = { + name = "Ritual Sacrifice", + baseTypeName = "Ritual Sacrifice", + icon = "Art/2DArt/SkillIcons/PrimalistStabCorpseSkillIcon.dds", fromTree = true, color = 4, - description = "Drink the blood of your enemies to restore your Life. While active, enemies you kill have a chance to spawn a Life Remnant, and Hitting a target spawns a Life Remnant every few seconds. Picking up a Life Remnant grants you Life which can Overflow maximum Life.", - skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0, + description = "Sacrifice the Corpse of a Rare Monster to grant you its Modifiers for a duration, or gain a single random Modifier at the cost of your own life force.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleRareCorpses] = true, }, + castTime = 5, qualityStats = { - { "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 0.5 }, + { "base_skill_effect_duration", 1000 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 20, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 20, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 20, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 20, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 20, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 20, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 20, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 20, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 20, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 20, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 20, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 20, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 20, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 20, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 20, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 20, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 20, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 20, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 20, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 20, }, }, }, statSets = { [1] = { - label = "Life Remnants", + label = "Ritual Sacrifice", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "life_remnants", + statDescriptionScope = "ritual_sacrifice", baseFlags = { + attack = true, + area = true, }, constantStats = { - { "life_remnants_chance_to_spawn_orb_on_killing_enemy_%", 25 }, - { "life_remnants_spawn_remnant_on_hit_vs_enemy_every_X_ms", 3000 }, - { "skill_desired_amount_override", 1 }, - { "base_remnant_duration_ms", 8000 }, + { "head_hunt_%_life_to_remove_on_self_stab", 20 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "life_remnants_gain_per_globe", - "base_deal_no_damage_over_time", + "base_skill_effect_duration", + "can_perform_skill_while_moving", + "quality_display_base_skill_effect_duration_is_gem", "base_deal_no_damage", }, + notMinionStat = { + "base_skill_effect_duration", + }, levels = { - [1] = { 11, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 14, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 23, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 31, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 41, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 52, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 65, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 81, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 95, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 112, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 131, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 157, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 176, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 205, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 232, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 263, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 301, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 337, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 374, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 410, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 448, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 490, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 531, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 574, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 616, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 657, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 706, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 752, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 799, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 851, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 900, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 952, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 1004, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 1062, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 1114, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 1172, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 1229, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 1287, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 1350, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 1408, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 82000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 84000, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 86000, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 88000, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 90000, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 92000, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 94000, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 96000, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 98000, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 100000, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 102000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 104000, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 106000, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 108000, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 110000, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 112000, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 114000, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 116000, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 118000, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 120000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 122000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 124000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 126000, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 128000, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 130000, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 132000, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 134000, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 136000, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 138000, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 140000, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 141000, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 142000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 143000, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 144000, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 145000, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 146000, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 147000, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 148000, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 149000, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 150000, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["Melee1HMacePlayer"] = { - name = "Mace Strike", - baseTypeName = "Mace Strike", - icon = "Art/2DArt/SkillIcons/OneHandMaceDefaultSkill.dds", - fromItem = true, +skills["SupportRuneforgedBladesPlayer"] = { + name = "Runeforged Blades", + description = "Supports Attacks you use yourself, causing them to Consume Fully Broken Armour on enemies to fire a nova of runic Projectiles at the cost of Runic Ward. The Projectiles cannot Hit the enemy from which they originated. Cannot support skills that Consume Broken Armour.", color = 4, - description = "Strike with your Mace.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, - weaponTypes = { - ["One Hand Mace"] = true, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Channel, SkillType.Sustained, SkillType.ConsumesFullyBrokenArmour, }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, }, + statSets = { + [1] = { + label = "Runeforged Blades", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "cannot_break_armour", + "consume_armour_break_to_trigger_rune_forged_blades", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredRuneforgedBladesPlayer"] = { + name = "Runeforged Blades", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.SkillGrantedBySupport] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { baseMultiplier = 1.5, levelRequirement = 0, cost = { Ward = 7, }, }, + [2] = { baseMultiplier = 1.65, levelRequirement = 0, cost = { Ward = 8, }, }, + [3] = { baseMultiplier = 1.82, levelRequirement = 0, cost = { Ward = 9, }, }, + [4] = { baseMultiplier = 1.98, levelRequirement = 0, cost = { Ward = 10, }, }, + [5] = { baseMultiplier = 2.14, levelRequirement = 0, cost = { Ward = 11, }, }, + [6] = { baseMultiplier = 2.3, levelRequirement = 0, cost = { Ward = 12, }, }, + [7] = { baseMultiplier = 2.46, levelRequirement = 0, cost = { Ward = 13, }, }, + [8] = { baseMultiplier = 2.61, levelRequirement = 0, cost = { Ward = 15, }, }, + [9] = { baseMultiplier = 2.74, levelRequirement = 0, cost = { Ward = 16, }, }, + [10] = { baseMultiplier = 2.87, levelRequirement = 0, cost = { Ward = 18, }, }, + [11] = { baseMultiplier = 3.02, levelRequirement = 0, cost = { Ward = 19, }, }, + [12] = { baseMultiplier = 3.17, levelRequirement = 0, cost = { Ward = 21, }, }, + [13] = { baseMultiplier = 3.32, levelRequirement = 0, cost = { Ward = 23, }, }, + [14] = { baseMultiplier = 3.49, levelRequirement = 0, cost = { Ward = 24, }, }, + [15] = { baseMultiplier = 3.67, levelRequirement = 0, cost = { Ward = 26, }, }, + [16] = { baseMultiplier = 3.85, levelRequirement = 0, cost = { Ward = 28, }, }, + [17] = { baseMultiplier = 4.04, levelRequirement = 0, cost = { Ward = 31, }, }, + [18] = { baseMultiplier = 4.24, levelRequirement = 0, cost = { Ward = 33, }, }, + [19] = { baseMultiplier = 4.46, levelRequirement = 0, cost = { Ward = 35, }, }, + [20] = { baseMultiplier = 4.68, levelRequirement = 0, cost = { Ward = 37, }, }, + [21] = { baseMultiplier = 4.91, levelRequirement = 0, cost = { Ward = 40, }, }, + [22] = { baseMultiplier = 5.16, levelRequirement = 0, cost = { Ward = 43, }, }, + [23] = { baseMultiplier = 5.42, levelRequirement = 0, cost = { Ward = 45, }, }, + [24] = { baseMultiplier = 5.69, levelRequirement = 0, cost = { Ward = 48, }, }, + [25] = { baseMultiplier = 5.97, levelRequirement = 0, cost = { Ward = 51, }, }, + [26] = { baseMultiplier = 6.27, levelRequirement = 0, cost = { Ward = 54, }, }, + [27] = { baseMultiplier = 6.58, levelRequirement = 0, cost = { Ward = 58, }, }, + [28] = { baseMultiplier = 6.91, levelRequirement = 0, cost = { Ward = 61, }, }, + [29] = { baseMultiplier = 7.26, levelRequirement = 0, cost = { Ward = 65, }, }, + [30] = { baseMultiplier = 7.62, levelRequirement = 0, cost = { Ward = 69, }, }, + [31] = { baseMultiplier = 8, levelRequirement = 0, cost = { Ward = 73, }, }, + [32] = { baseMultiplier = 8.4, levelRequirement = 0, cost = { Ward = 77, }, }, + [33] = { baseMultiplier = 8.82, levelRequirement = 0, cost = { Ward = 81, }, }, + [34] = { baseMultiplier = 9.26, levelRequirement = 0, cost = { Ward = 85, }, }, + [35] = { baseMultiplier = 9.73, levelRequirement = 0, cost = { Ward = 90, }, }, + [36] = { baseMultiplier = 10.21, levelRequirement = 0, cost = { Ward = 95, }, }, + [37] = { baseMultiplier = 10.72, levelRequirement = 0, cost = { Ward = 100, }, }, + [38] = { baseMultiplier = 11.26, levelRequirement = 0, cost = { Ward = 105, }, }, + [39] = { baseMultiplier = 11.82, levelRequirement = 0, cost = { Ward = 111, }, }, + [40] = { baseMultiplier = 12.41, levelRequirement = 0, cost = { Ward = 117, }, }, }, statSets = { [1] = { - label = "Mace Strike", + label = "Runeforged Blades", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { - attack = true, - area = true, - melee = true, }, constantStats = { - { "melee_conditional_step_distance", 10 }, + { "base_number_of_projectiles", 7 }, + { "triggered_by_support_rune_forged_blades_%", 100 }, }, stats = { - "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", + "base_is_projectile", + "projectiles_nova", + "projectile_uses_contact_position", + "projectiles_not_offset", + "cannot_break_armour", + "display_statset_hide_usage_stats", }, levels = { [1] = { actorLevel = 1, }, @@ -5004,274 +13827,211 @@ skills["Melee1HMacePlayer"] = { }, } } -skills["Melee2HMacePlayer"] = { - name = "Mace Strike", - baseTypeName = "Mace Strike", - icon = "Art/2DArt/SkillIcons/TwoHandMaceDefaultSkill.dds", - fromItem = true, +skills["SupportRunicExtractionPlayer"] = { + name = "Runic Extraction", + description = "Supports any Skill that deals damage. Enemies you kill with supported Skills have a chance to drop a Verisium Infusion Remnant.", color = 4, - description = "Strike with your Mace.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, - weaponTypes = { - ["Two Hand Mace"] = true, - }, - castTime = 1, - qualityStats = { - }, + support = true, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "RunicExtraction",}, levels = { [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Mace Strike", + label = "Runic Extraction", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - attack = true, - area = true, - melee = true, }, constantStats = { - { "melee_conditional_step_distance", 10 }, + { "create_verisium_remmant_on_kill_enemy_%", 35 }, + { "base_remnant_duration_ms", 8000 }, + { "base_skill_ward_cost_as_%_of_life_and_mana_cost", 20 }, }, stats = { - "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", }, levels = { [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["MeleeMaceMacePlayer"] = { - name = "Mace Strike", - baseTypeName = "Mace Strike", - icon = "Art/2DArt/SkillIcons/DualWieldMaceDefaultSkill.dds", - fromItem = true, +skills["SupportRunicInfusionPlayer"] = { + name = "Runic Infusion", + description = "Supports Attacks you use or Trigger yourself, causing them to cost Runic Ward to use but deal additional Physical damage based on their Runic Ward cost. Cannot Support Channelling Skills, Sustained Skills, or Skills without a cost.", color = 4, - description = "Strike with your Maces.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.DualWieldOnly] = true, [SkillType.AttackInPlace] = true, }, - weaponTypes = { - ["One Hand Mace"] = true, - ["Two Hand Mace"] = true, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, SkillType.Channel, SkillType.Sustained, SkillType.HasNoCost, }, + gemFamily = { "RunicInfusion",}, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, }, - castTime = 1, + statSets = { + [1] = { + label = "Runic Infusion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_ward_cost_+_%_of_maximum_ward", 20 }, + { "added_physical_damage_%_ward_cost", 25 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["RunicReprievePlayer"] = { + name = "Runic Reprieve", + baseTypeName = "Runic Reprieve", + icon = "Art/2DArt/SkillIcons/ExpeditionKalguuranWard.dds", + color = 4, + description = "Channel to create a protective bubble all around you, Blocking Hits against you. While Channelling this Skill, you cannot be Light Stunned by Hits you Block, and damage you take from Hits is also removed from Runic Ward. Blocking Hits this way causes you to accumulate Heavy Stun buildup. You cannot recover Runic Ward while this Skill is active. ", + skillTypes = { [SkillType.Channel] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Spell] = true, [SkillType.ActiveBlock] = true, [SkillType.CanCancelActions] = true, }, + castTime = 0.12, qualityStats = { + { "active_skill_stun_threshold_+%_while_performing_action", 2 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { WardPerMinute = 180, }, }, + [2] = { levelRequirement = 3, cost = { WardPerMinute = 203, }, }, + [3] = { levelRequirement = 6, cost = { WardPerMinute = 227, }, }, + [4] = { levelRequirement = 10, cost = { WardPerMinute = 252, }, }, + [5] = { levelRequirement = 14, cost = { WardPerMinute = 278, }, }, + [6] = { levelRequirement = 18, cost = { WardPerMinute = 305, }, }, + [7] = { levelRequirement = 22, cost = { WardPerMinute = 332, }, }, + [8] = { levelRequirement = 26, cost = { WardPerMinute = 360, }, }, + [9] = { levelRequirement = 31, cost = { WardPerMinute = 390, }, }, + [10] = { levelRequirement = 36, cost = { WardPerMinute = 420, }, }, + [11] = { levelRequirement = 41, cost = { WardPerMinute = 451, }, }, + [12] = { levelRequirement = 46, cost = { WardPerMinute = 484, }, }, + [13] = { levelRequirement = 52, cost = { WardPerMinute = 517, }, }, + [14] = { levelRequirement = 58, cost = { WardPerMinute = 551, }, }, + [15] = { levelRequirement = 64, cost = { WardPerMinute = 586, }, }, + [16] = { levelRequirement = 66, cost = { WardPerMinute = 623, }, }, + [17] = { levelRequirement = 72, cost = { WardPerMinute = 660, }, }, + [18] = { levelRequirement = 78, cost = { WardPerMinute = 699, }, }, + [19] = { levelRequirement = 84, cost = { WardPerMinute = 739, }, }, + [20] = { levelRequirement = 90, cost = { WardPerMinute = 780, }, }, + [21] = { levelRequirement = 90, cost = { WardPerMinute = 822, }, }, + [22] = { levelRequirement = 90, cost = { WardPerMinute = 866, }, }, + [23] = { levelRequirement = 90, cost = { WardPerMinute = 911, }, }, + [24] = { levelRequirement = 90, cost = { WardPerMinute = 957, }, }, + [25] = { levelRequirement = 90, cost = { WardPerMinute = 1005, }, }, + [26] = { levelRequirement = 90, cost = { WardPerMinute = 1054, }, }, + [27] = { levelRequirement = 90, cost = { WardPerMinute = 1104, }, }, + [28] = { levelRequirement = 90, cost = { WardPerMinute = 1156, }, }, + [29] = { levelRequirement = 90, cost = { WardPerMinute = 1210, }, }, + [30] = { levelRequirement = 90, cost = { WardPerMinute = 1265, }, }, + [31] = { levelRequirement = 90, cost = { WardPerMinute = 1321, }, }, + [32] = { levelRequirement = 90, cost = { WardPerMinute = 1380, }, }, + [33] = { levelRequirement = 90, cost = { WardPerMinute = 1439, }, }, + [34] = { levelRequirement = 90, cost = { WardPerMinute = 1501, }, }, + [35] = { levelRequirement = 90, cost = { WardPerMinute = 1564, }, }, + [36] = { levelRequirement = 90, cost = { WardPerMinute = 1629, }, }, + [37] = { levelRequirement = 90, cost = { WardPerMinute = 1696, }, }, + [38] = { levelRequirement = 90, cost = { WardPerMinute = 1765, }, }, + [39] = { levelRequirement = 90, cost = { WardPerMinute = 1836, }, }, + [40] = { levelRequirement = 90, cost = { WardPerMinute = 1909, }, }, }, statSets = { [1] = { - label = "Mace Strike", + label = "Runic Reprieve", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "runic_reprieve", baseFlags = { - attack = true, - area = true, - melee = true, }, constantStats = { - { "melee_conditional_step_distance", 10 }, - { "active_skill_attack_speed_+%_final_while_dual_wielding", -30 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, + { "skill_animation_duration_multiplier_override", 6 }, + { "base_minimum_channel_time_ms", 300 }, + { "active_skill_override_turn_duration_ms", 240 }, + { "channel_start_duration_as_%_of_cast_time", 200 }, + { "rune_ward_requires_%_maximum_ward_to_perform", 20 }, }, stats = { - "is_area_damage", - "skill_double_hits_when_dual_wielding", + "active_skill_stun_threshold_+%_while_performing_action", + "rune_ward_block_%_damage_taken", + "can_perform_skill_while_moving", + "active_skill_does_not_decay_heavy_stun_during_action", + "base_skill_show_average_damage_instead_of_dps", "precise_cursor_targeting_uses_contact_point_height_offset", + "base_deal_no_damage", + "display_statset_hide_usage_stats", + "non_ward_damage_taken_from_blocked_hits_is_taken_to_ward_as_well", }, levels = { - [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, + [1] = { 5, 25, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 10, 25, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 25, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 20, 25, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 25, 24, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 30, 24, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 35, 24, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 40, 24, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 45, 23, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 50, 23, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 55, 23, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 60, 23, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 65, 22, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 70, 22, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 75, 22, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 80, 22, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 85, 21, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 90, 21, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 95, 21, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 100, 21, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 105, 20, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 110, 20, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 115, 20, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 120, 20, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 125, 20, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 130, 20, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 135, 20, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 140, 20, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 145, 20, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 150, 20, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 155, 20, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 160, 20, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 165, 20, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 170, 20, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 175, 20, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 180, 20, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 185, 20, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 190, 20, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 195, 20, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 200, 20, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["ManifestWeaponPlayer"] = { - name = "Manifest Weapon", - baseTypeName = "Manifest Weapon", - icon = "Art/2DArt/SkillIcons/SmithOfKitavaCreateWeaponSkillIcon.dds", +skills["SummonFireDjinnPlayer"] = { + name = "Ruzhan, the Blazing Sword", + baseTypeName = "Ruzhan, the Blazing Sword", + icon = "Art/2DArt/SkillIcons/SorceressSummonFireDjinn.dds", fromTree = true, minionList = { - "ManifestWeapon", + "FireDjinn", }, color = 4, - description = "Manifest a copy of your main hand Melee Martial Weapon as an immortal Companion to fight by your side. In addition to its standard Strikes, the Manifested Weapon gains an additional Attack depending on its weapon type.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CreatesCompanion] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, - weaponTypes = { - ["Claw"] = true, - ["Dagger"] = true, - ["Flail"] = true, - ["One Hand Axe"] = true, - ["One Hand Mace"] = true, - ["One Hand Sword"] = true, - ["Spear"] = true, - ["Staff"] = true, - ["Talisman"] = true, - ["Two Hand Axe"] = true, - ["Two Hand Mace"] = true, - ["Two Hand Sword"] = true, - }, + description = "Summon Ruzhan, an invulnerable Flame Djinn Minion, to do your bidding. Ruzhan emerges to Strike enemies with his greatsword whenever you use a damaging Skill, and casts devastating Fire Spells when Commanded to do so.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Fire] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Hazard] = true, [SkillType.Cooldown] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Cascadable] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Limit] = true, [SkillType.Attack] = true, }, castTime = 0, qualityStats = { - { "minion_attack_speed_+%", 1 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -5309,41 +14069,29 @@ skills["ManifestWeaponPlayer"] = { [33] = { levelRequirement = 90, }, [34] = { levelRequirement = 90, }, [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, - }, - minionHasItemSet = true, - minionUses = { - ["Weapon 1"] = true, - }, - statSets = { - [1] = { - label = "Manifest Weapon", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - statMap = { - ["minion_1%_damage_+%_per_X_player_strength"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), - }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { - mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), - div = 3, - }, - }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Ruzhan, the Blazing Sword", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "summon_fire_djinn", baseFlags = { - spell = true, - minion = true, }, constantStats = { - { "minion_1%_damage_+%_per_X_player_strength", 1 }, - { "minion_1%_attack_speed_+%_per_X_player_dexterity", 3 }, { "skill_desired_amount_override", 1 }, + { "djinn_damage_+%_final_per_number_of_damaging_skills_my_parent_has_used_recently", 10 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { "is_resummoning_minion", + "hide_minion_frame", + "active_skill_tracks_number_of_damaging_skills_recently_for_minions", + "display_statset_no_hit_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -5390,82 +14138,75 @@ skills["ManifestWeaponPlayer"] = { }, } } -skills["BearMaulPlayer"] = { - name = "Maul", - baseTypeName = "Maul", - icon = "Art/2DArt/SkillIcons/DruidBearMaul.dds", - fromItem = true, - color = 4, - description = "Shapeshift into a Bear and rake enemies with your claws, generating Rage on Hit.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Shapeshift] = true, [SkillType.Bear] = true, [SkillType.AttackInPlace] = true, [SkillType.Area] = true, }, - weaponTypes = { - ["Talisman"] = true, - }, - castTime = 1, +skills["CommandFireDjinnLivingBombPlayer"] = { + name = "Command: {0} ", + hidden = true, + icon = "Art/2DArt/SkillIcons/Rolldodge.dds", + fromTree = true, + skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 0.4, qualityStats = { - { "gain_x_rage_on_attack_hit", 0.1 }, }, levels = { - [1] = { baseMultiplier = 0.8, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.88, levelRequirement = 3, }, - [3] = { baseMultiplier = 0.97, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.06, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.15, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.24, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.33, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.42, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.5, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.58, levelRequirement = 36, }, - [11] = { baseMultiplier = 1.67, levelRequirement = 41, }, - [12] = { baseMultiplier = 1.77, levelRequirement = 46, }, - [13] = { baseMultiplier = 1.88, levelRequirement = 52, }, - [14] = { baseMultiplier = 1.99, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.12, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.25, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.39, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.55, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.72, levelRequirement = 84, }, - [20] = { baseMultiplier = 2.9, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.09, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.3, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.52, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.75, levelRequirement = 90, }, - [25] = { baseMultiplier = 4, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.27, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.55, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.85, levelRequirement = 90, }, - [29] = { baseMultiplier = 5.18, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.52, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.89, levelRequirement = 90, }, - [32] = { baseMultiplier = 6.28, levelRequirement = 90, }, - [33] = { baseMultiplier = 6.7, levelRequirement = 90, }, - [34] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [35] = { baseMultiplier = 7.62, levelRequirement = 90, }, - [36] = { baseMultiplier = 8.13, levelRequirement = 90, }, - [37] = { baseMultiplier = 8.67, levelRequirement = 90, }, - [38] = { baseMultiplier = 9.25, levelRequirement = 90, }, - [39] = { baseMultiplier = 9.87, levelRequirement = 90, }, - [40] = { baseMultiplier = 10.52, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 2, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 3, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 4, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 4, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 5, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 6, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 7, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 9, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 10, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 11, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 12, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 14, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 15, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 17, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 19, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 21, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 24, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 26, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 29, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 32, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 36, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 39, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 43, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 47, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 52, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 57, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 63, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 68, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 75, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 82, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 90, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 98, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 107, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 116, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 127, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 138, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 151, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 164, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 178, }, }, }, statSets = { [1] = { - label = "Maul", + label = "Command", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { - attack = true, - area = true, - melee = true, }, constantStats = { - { "melee_conditional_step_distance", 5 }, - { "moving_melee_conditional_step_distance", 15 }, - { "gain_x_rage_on_attack_hit", 5 }, - { "use_time_+_ms_if_shapeshift_required", 300 }, + { "movement_speed_+%_final_while_performing_action", -50 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, }, stats = { - "is_area_damage", - "disable_quadruped_head_movement_when_turning", + "minions_do_not_move_to_skill_target", + "can_perform_skill_while_moving", + "skill_is_command", + "base_deal_no_damage", + "command_minion_does_not_interrupt", }, levels = { [1] = { actorLevel = 1, }, @@ -5512,440 +14253,552 @@ skills["BearMaulPlayer"] = { }, } } -skills["MeditatePlayer"] = { - name = "Meditate", - baseTypeName = "Meditate", - icon = "Art/2DArt/SkillIcons/MonkInvokerMeditate.dds", - fromTree = true, +skills["SupportScouringFlamePlayer"] = { + name = "Scouring Flame", + description = "Supports any skill that Hits enemies, causing inflicted Ignites to deal more damage but the skill to gain a Runic Ward cost.", color = 4, - description = "Channel to Recharge Energy Shield and allow that Recharge to Overflow. Channelling ends when you take damage or your Energy Shield is fully Overflowed.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, - castTime = 1, - qualityStats = { - { "meditate_energy_shield_recharge_rate_+%_final", 0.5 }, - }, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "SearingFlame",}, levels = { - [1] = { cooldown = 7, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 6.9, levelRequirement = 3, storedUses = 1, }, - [3] = { cooldown = 6.8, levelRequirement = 6, storedUses = 1, }, - [4] = { cooldown = 6.7, levelRequirement = 10, storedUses = 1, }, - [5] = { cooldown = 6.6, levelRequirement = 14, storedUses = 1, }, - [6] = { cooldown = 6.5, levelRequirement = 18, storedUses = 1, }, - [7] = { cooldown = 6.4, levelRequirement = 22, storedUses = 1, }, - [8] = { cooldown = 6.3, levelRequirement = 26, storedUses = 1, }, - [9] = { cooldown = 6.2, levelRequirement = 31, storedUses = 1, }, - [10] = { cooldown = 6.1, levelRequirement = 36, storedUses = 1, }, - [11] = { cooldown = 6, levelRequirement = 41, storedUses = 1, }, - [12] = { cooldown = 5.9, levelRequirement = 46, storedUses = 1, }, - [13] = { cooldown = 5.8, levelRequirement = 52, storedUses = 1, }, - [14] = { cooldown = 5.7, levelRequirement = 58, storedUses = 1, }, - [15] = { cooldown = 5.6, levelRequirement = 64, storedUses = 1, }, - [16] = { cooldown = 5.5, levelRequirement = 66, storedUses = 1, }, - [17] = { cooldown = 5.4, levelRequirement = 72, storedUses = 1, }, - [18] = { cooldown = 5.3, levelRequirement = 78, storedUses = 1, }, - [19] = { cooldown = 5.2, levelRequirement = 84, storedUses = 1, }, - [20] = { cooldown = 5.1, levelRequirement = 90, storedUses = 1, }, - [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, }, - [22] = { cooldown = 4.9, levelRequirement = 90, storedUses = 1, }, - [23] = { cooldown = 4.8, levelRequirement = 90, storedUses = 1, }, - [24] = { cooldown = 4.7, levelRequirement = 90, storedUses = 1, }, - [25] = { cooldown = 4.6, levelRequirement = 90, storedUses = 1, }, - [26] = { cooldown = 4.5, levelRequirement = 90, storedUses = 1, }, - [27] = { cooldown = 4.4, levelRequirement = 90, storedUses = 1, }, - [28] = { cooldown = 4.3, levelRequirement = 90, storedUses = 1, }, - [29] = { cooldown = 4.2, levelRequirement = 90, storedUses = 1, }, - [30] = { cooldown = 4.1, levelRequirement = 90, storedUses = 1, }, - [31] = { cooldown = 4.05, levelRequirement = 90, storedUses = 1, }, - [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, - [33] = { cooldown = 3.95, levelRequirement = 90, storedUses = 1, }, - [34] = { cooldown = 3.9, levelRequirement = 90, storedUses = 1, }, - [35] = { cooldown = 3.85, levelRequirement = 90, storedUses = 1, }, - [36] = { cooldown = 3.8, levelRequirement = 90, storedUses = 1, }, - [37] = { cooldown = 3.75, levelRequirement = 90, storedUses = 1, }, - [38] = { cooldown = 3.7, levelRequirement = 90, storedUses = 1, }, - [39] = { cooldown = 3.65, levelRequirement = 90, storedUses = 1, }, - [40] = { cooldown = 3.6, levelRequirement = 90, storedUses = 1, }, + [1] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Meditate", + label = "Scouring Flame", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "support_scouring_flame_ignite_effect_+%_final", 50 }, + { "base_skill_ward_cost_as_%_of_life_and_mana_cost", 25 }, }, stats = { - "meditate_energy_shield_recharge_rate_+%_final", - "can_perform_skill_while_moving", - "base_deal_no_damage", + "support_scouring_flame_ignite_art_variation", }, levels = { - [1] = { 24, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 28, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 32, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 36, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 40, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 44, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 48, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 52, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 56, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 60, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 64, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 68, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 72, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 76, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 80, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 84, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 88, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 92, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 96, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 104, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 108, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 112, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 116, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 120, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 124, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 128, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 132, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 136, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 140, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 144, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 148, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 152, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 156, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 160, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 164, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 168, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 172, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 176, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 180, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, }, }, } } -skills["MomentOfVulnerabilityPlayer"] = { - name = "Moment of Vulnerability", - baseTypeName = "Moment of Vulnerability", - icon = "Art/2DArt/SkillIcons/passives/DruidOracleRipFromTimeSkill.dds", - fromTree = true, +skills["SupportSeraphsHeartPlayer"] = { + name = "Seraph's Heart", + description = "Supports Persistent Buff Skills, providing a chance for enemies to calculate their Hits as though your Resistances were 90% while the skill is active.", color = 4, - description = "Send out a temporal Nova to take advantage of enemies' moment of vulnerability. Hitting enemies that are Primed for Stun, Electrocution, or Freeze causes a visage of them to appear, lasting as long as the original target would have been affected by the form of Immobilisation used to create the visage. A portion of the damage dealt to visages is also dealt to the original.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Nova] = true, [SkillType.Area] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Damage] = true, [SkillType.Cooldown] = true, }, - castTime = 0.65, - qualityStats = { - { "time_rip_damage_share_%", 1 }, - }, - levels = { - [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 6, }, }, - [2] = { cooldown = 1, levelRequirement = 3, storedUses = 1, cost = { Mana = 6, }, }, - [3] = { cooldown = 1, levelRequirement = 6, storedUses = 1, cost = { Mana = 7, }, }, - [4] = { cooldown = 1, levelRequirement = 10, storedUses = 1, cost = { Mana = 7, }, }, - [5] = { cooldown = 1, levelRequirement = 14, storedUses = 1, cost = { Mana = 8, }, }, - [6] = { cooldown = 1, levelRequirement = 18, storedUses = 1, cost = { Mana = 9, }, }, - [7] = { cooldown = 1, levelRequirement = 22, storedUses = 1, cost = { Mana = 9, }, }, - [8] = { cooldown = 1, levelRequirement = 26, storedUses = 1, cost = { Mana = 10, }, }, - [9] = { cooldown = 1, levelRequirement = 31, storedUses = 1, cost = { Mana = 11, }, }, - [10] = { cooldown = 1, levelRequirement = 36, storedUses = 1, cost = { Mana = 11, }, }, - [11] = { cooldown = 1, levelRequirement = 41, storedUses = 1, cost = { Mana = 12, }, }, - [12] = { cooldown = 1, levelRequirement = 46, storedUses = 1, cost = { Mana = 13, }, }, - [13] = { cooldown = 1, levelRequirement = 52, storedUses = 1, cost = { Mana = 13, }, }, - [14] = { cooldown = 1, levelRequirement = 58, storedUses = 1, cost = { Mana = 14, }, }, - [15] = { cooldown = 1, levelRequirement = 64, storedUses = 1, cost = { Mana = 15, }, }, - [16] = { cooldown = 1, levelRequirement = 66, storedUses = 1, cost = { Mana = 15, }, }, - [17] = { cooldown = 1, levelRequirement = 72, storedUses = 1, cost = { Mana = 16, }, }, - [18] = { cooldown = 1, levelRequirement = 78, storedUses = 1, cost = { Mana = 17, }, }, - [19] = { cooldown = 1, levelRequirement = 84, storedUses = 1, cost = { Mana = 17, }, }, - [20] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 18, }, }, - [21] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 19, }, }, - [22] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 19, }, }, - [23] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [24] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 21, }, }, - [25] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 21, }, }, - [26] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 22, }, }, - [27] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 23, }, }, - [28] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 23, }, }, - [29] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 24, }, }, - [30] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 25, }, }, - [31] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 25, }, }, - [32] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 26, }, }, - [33] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 27, }, }, - [34] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 27, }, }, - [35] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 28, }, }, - [36] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 29, }, }, - [37] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 29, }, }, - [38] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 30, }, }, - [39] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 31, }, }, - [40] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Mana = 31, }, }, + support = true, + requireSkillTypes = { SkillType.Persistent, SkillType.Buff, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "SeraphsHeart",}, + isLineage = true, + flavourText = {"Intricate machinery imperceptibly woven into a", "biological foundation. It felt delicate in her hands.", "In him, it would be her greatest achievement.", }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 45, }, }, statSets = { [1] = { - label = "Moment of Vulnerability", - baseEffectiveness = 0.40000000596046, - incrementalEffectiveness = 0.12999999523163, - damageIncrementalEffectiveness = 0.0060999998822808, - statDescriptionScope = "moment_of_vulnerability", + label = "Seraph's Heart", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", baseFlags = { - spell = true, }, constantStats = { - { "rip_from_time_immunity_duration_ms", 10000 }, - { "active_skill_base_area_of_effect_radius", 40 }, + { "support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%", 20 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["ShatteringConcoctionPlayer"] = { + name = "Shattering Concoction", + baseTypeName = "Shattering Concoction", + 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", + 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, + }, + castTime = 1, + qualityStats = { + { "freeze_duration_+%", 1 }, + }, + levels = { + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Shattering Concoction", + baseEffectiveness = 3.9000000953674, + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "shattering_concoction", + baseFlags = { + attack = true, + projectile = true, + duration = true, + area = true, + }, + constantStats = { + { "flask_throw_base_charges_used", 5 }, + { "base_number_of_projectiles", 1 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "throw_flask_effects_type", 1 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_base_weapon_attack_duration_ms", 714 }, }, stats = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", - "time_rip_damage_share_%", - "active_skill_show_crush_range", - "active_skill_show_overload_range", - "active_skill_show_freeze_range", + "main_hand_weapon_minimum_cold_damage", + "main_hand_weapon_maximum_cold_damage", + "base_is_projectile", + "projectile_behaviour_only_explode", "can_perform_skill_while_moving", - }, - notMinionStat = { - "spell_minimum_base_physical_damage", - "spell_maximum_base_physical_damage", + "replace_main_hand_unarmed_attack_stats_with_nothing_type", + "is_area_damage", + "has_freeze_cull", + "inflict_all_exposure_on_hit", + "active_skill_show_freeze_range", }, levels = { - [1] = { 1, 2, 60, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, - [2] = { 2, 2, 62, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 2, 3, 64, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 3, 4, 66, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 4, 5, 68, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 4, 7, 70, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 5, 8, 72, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 6, 9, 74, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 7, 11, 76, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 9, 13, 78, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 10, 15, 80, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 11, 17, 82, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 13, 20, 84, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 15, 22, 86, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 17, 25, 88, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 19, 29, 90, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 21, 32, 92, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 24, 36, 94, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 27, 41, 96, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 30, 46, 98, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 34, 51, 100, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 38, 57, 102, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 43, 64, 104, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 48, 71, 106, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 53, 80, 108, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, - [26] = { 59, 89, 110, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 66, 99, 112, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 74, 110, 114, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 82, 123, 116, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 91, 137, 118, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 102, 153, 119, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 114, 170, 120, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 127, 190, 121, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 141, 212, 122, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 157, 236, 123, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 176, 264, 124, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 196, 294, 125, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 219, 329, 126, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 245, 367, 127, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 274, 410, 128, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 164, 246, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 222, 332, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 264, 396, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 357, 536, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 382, 574, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 435, 653, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 463, 694, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 550, 824, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 611, 917, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 643, 965, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 676, 1014, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 709, 1064, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 744, 1115, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 814, 1221, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 851, 1276, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 926, 1389, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 965, 1447, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["SummonWaterDjinnPlayer"] = { - name = "Navira, the Last Mirage", - baseTypeName = "Navira, the Last Mirage", - icon = "Art/2DArt/SkillIcons/SorceressSummonWaterDjinn.dds", - fromTree = true, - minionList = { - "WaterDjinn", - }, +skills["WolfShredPlayer"] = { + name = "Shred", + baseTypeName = "Shred", + icon = "Art/2DArt/SkillIcons/DruidFrozenClaws.dds", + fromItem = true, color = 4, - description = "Summon Navira, an invulnerable Water Djinn Minion to do your bidding. Navira will only act when you Command her to do so, bestowing restorative blessings upon you and your Allies with her Spells.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Cold] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, - minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Cold] = true, [SkillType.Area] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.CreatesGroundEffect] = true, }, - castTime = 0, - qualityStats = { + description = "Shapeshift into a Werewolf and lash out with a flurry of claw swipes. The first Attack can dash to faraway enemies and the final Attack Strikes twice. Attacking a Frozen enemy will create Ice Fragments, which are Projectiles that land and explode after a short delay.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Shapeshift] = true, [SkillType.Wolf] = true, [SkillType.PerformsFinalStrike] = true, }, + weaponTypes = { + ["Talisman"] = true, }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + castTime = 1, + qualityStats = { + { "attack_speed_+%", 1 }, + }, + levels = { + [1] = { attackSpeedMultiplier = 100, baseMultiplier = 0.4, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackSpeedMultiplier = 100, baseMultiplier = 0.44, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { attackSpeedMultiplier = 100, baseMultiplier = 0.48, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { attackSpeedMultiplier = 100, baseMultiplier = 0.53, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { attackSpeedMultiplier = 100, baseMultiplier = 0.57, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { attackSpeedMultiplier = 100, baseMultiplier = 0.61, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { attackSpeedMultiplier = 100, baseMultiplier = 0.66, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { attackSpeedMultiplier = 100, baseMultiplier = 0.69, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { attackSpeedMultiplier = 100, baseMultiplier = 0.73, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { attackSpeedMultiplier = 100, baseMultiplier = 0.77, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { attackSpeedMultiplier = 100, baseMultiplier = 0.8, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { attackSpeedMultiplier = 100, baseMultiplier = 0.84, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { attackSpeedMultiplier = 100, baseMultiplier = 0.89, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { attackSpeedMultiplier = 100, baseMultiplier = 0.93, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { attackSpeedMultiplier = 100, baseMultiplier = 0.98, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { attackSpeedMultiplier = 100, baseMultiplier = 1.03, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { attackSpeedMultiplier = 100, baseMultiplier = 1.08, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { attackSpeedMultiplier = 100, baseMultiplier = 1.13, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { attackSpeedMultiplier = 100, baseMultiplier = 1.19, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { attackSpeedMultiplier = 100, baseMultiplier = 1.25, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { attackSpeedMultiplier = 100, baseMultiplier = 1.31, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { attackSpeedMultiplier = 100, baseMultiplier = 1.38, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { attackSpeedMultiplier = 100, baseMultiplier = 1.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { attackSpeedMultiplier = 100, baseMultiplier = 1.52, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { attackSpeedMultiplier = 100, baseMultiplier = 1.59, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { attackSpeedMultiplier = 100, baseMultiplier = 1.67, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { attackSpeedMultiplier = 100, baseMultiplier = 1.76, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { attackSpeedMultiplier = 100, baseMultiplier = 1.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { attackSpeedMultiplier = 100, baseMultiplier = 1.94, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { attackSpeedMultiplier = 100, baseMultiplier = 2.03, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { attackSpeedMultiplier = 100, baseMultiplier = 2.13, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { attackSpeedMultiplier = 100, baseMultiplier = 2.24, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { attackSpeedMultiplier = 100, baseMultiplier = 2.35, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { attackSpeedMultiplier = 100, baseMultiplier = 2.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { attackSpeedMultiplier = 100, baseMultiplier = 2.59, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { attackSpeedMultiplier = 100, baseMultiplier = 2.72, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { attackSpeedMultiplier = 100, baseMultiplier = 2.86, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { attackSpeedMultiplier = 100, baseMultiplier = 3, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { attackSpeedMultiplier = 100, baseMultiplier = 3.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { attackSpeedMultiplier = 100, baseMultiplier = 3.31, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Navira, the Last Mirage", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "summon_water_djinn", + label = "Normal Strikes", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "shred", baseFlags = { - minion = true, + attack = true, + melee = true, + area = true, }, constantStats = { - { "skill_desired_amount_override", 1 }, + { "statset_index_for_third_animation_combo_index", 1 }, + { "statset_index_for_fourth_animation_combo_index", 1 }, + { "statset_index_for_fifth_animation_combo_index", 1 }, + { "statset_index_for_final_animation_combo_index", 2 }, + { "base_melee_dash_range", 40 }, + { "melee_conditional_step_distance", 10 }, + { "frozen_claws_dash_cooldown_ms", 1500 }, }, stats = { - "water_djinn_mana_wave_mana_regeneration_rate_+%", - "is_resummoning_minion", - "hide_minion_frame", - "display_statset_no_hit_damage", - "minion_is_not_interupted_when_replaced", + "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze", }, levels = { - [1] = { 10, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 13, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 16, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 19, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 22, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 25, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 28, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 31, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 34, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 37, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 40, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 43, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 46, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 49, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 52, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 55, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 58, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 61, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 64, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 67, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 70, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 73, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 76, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 79, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 82, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 85, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 88, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 91, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 94, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 97, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 100, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 103, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 106, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 109, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 112, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 115, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 118, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 121, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 124, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 127, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + [2] = { + label = "Fast Strikes", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "shred", + baseFlags = { + attack = true, + melee = true, + area = true, + }, + constantStats = { + { "statset_index_for_third_animation_combo_index", 1 }, + { "statset_index_for_fourth_animation_combo_index", 1 }, + { "statset_index_for_fifth_animation_combo_index", 1 }, + { "statset_index_for_final_animation_combo_index", 2 }, + { "base_melee_dash_range", 40 }, + { "melee_conditional_step_distance", 10 }, + { "frozen_claws_dash_cooldown_ms", 1500 }, + { "supplementary_stat_container_attack_speed_+%_final", 35 }, + }, + stats = { + "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze", + }, + levels = { + [1] = { baseMultiplier = 0.35, actorLevel = 1, }, + [2] = { baseMultiplier = 0.38, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.42, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.46, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.5, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.54, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.57, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 0.61, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 0.64, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 0.67, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 0.7, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 0.74, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 0.78, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 0.81, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 0.86, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 0.9, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 0.94, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 0.99, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.04, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.09, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.15, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 1.2, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 1.26, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 1.33, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 1.39, actorLevel = 136.875, }, + [26] = { baseMultiplier = 1.46, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 1.54, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 1.61, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 1.69, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 1.78, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 1.87, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 1.96, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 2.06, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 2.16, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 2.27, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 2.38, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 2.5, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 2.63, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 2.76, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 2.9, actorLevel = 288.29998779297, }, + }, + }, + [3] = { + label = "Final Strike", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "shred", + baseFlags = { + attack = true, + melee = true, + area = true, + }, + constantStats = { + { "statset_index_for_third_animation_combo_index", 1 }, + { "statset_index_for_fourth_animation_combo_index", 1 }, + { "statset_index_for_fifth_animation_combo_index", 1 }, + { "statset_index_for_final_animation_combo_index", 2 }, + { "base_melee_dash_range", 40 }, + { "melee_conditional_step_distance", 10 }, + { "frozen_claws_dash_cooldown_ms", 1500 }, + { "melee_range_+", 6 }, + { "melee_conditional_step_distance", 6 }, + { "supplementary_stat_container_attack_speed_+%_final", -55 }, + }, + stats = { + "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", + "is_area_damage", + "precise_cursor_targeting_uses_contact_point_height_offset", + "never_freeze", + "is_final_strike", + }, + levels = { + [1] = { baseMultiplier = 0.6, actorLevel = 1, }, + [2] = { baseMultiplier = 0.66, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 0.73, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 0.79, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 0.85, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 0.92, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 0.98, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.04, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.09, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 1.15, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 1.21, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 1.27, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 1.33, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 1.4, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 1.47, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 1.54, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 1.62, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 1.7, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 1.78, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 1.87, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 1.96, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 2.17, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 2.27, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 2.39, actorLevel = 136.875, }, + [26] = { baseMultiplier = 2.51, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 2.63, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 2.76, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 2.9, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 3.05, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 3.2, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 3.36, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 3.53, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 3.71, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 3.89, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 4.08, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 4.29, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 4.5, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 4.73, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 4.97, actorLevel = 288.29998779297, }, }, }, } } -skills["CommandWaterDjinnBubblePlayer"] = { - name = "Command: {0} ", - hidden = true, - icon = "Art/2DArt/SkillIcons/Rolldodge.dds", - fromTree = true, - skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, - castTime = 0.4, +skills["IceFragmentsPlayer"] = { + name = "Ice Fragments", + baseTypeName = "Ice Fragments", + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + fromItem = true, + color = 4, + skillTypes = { [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [2] = { levelRequirement = 0, cost = { Mana = 8, }, }, - [3] = { levelRequirement = 0, cost = { Mana = 10, }, }, - [4] = { levelRequirement = 0, cost = { Mana = 11, }, }, - [5] = { levelRequirement = 0, cost = { Mana = 13, }, }, - [6] = { levelRequirement = 0, cost = { Mana = 15, }, }, - [7] = { levelRequirement = 0, cost = { Mana = 17, }, }, - [8] = { levelRequirement = 0, cost = { Mana = 20, }, }, - [9] = { levelRequirement = 0, cost = { Mana = 23, }, }, - [10] = { levelRequirement = 0, cost = { Mana = 25, }, }, - [11] = { levelRequirement = 0, cost = { Mana = 29, }, }, - [12] = { levelRequirement = 0, cost = { Mana = 32, }, }, - [13] = { levelRequirement = 0, cost = { Mana = 36, }, }, - [14] = { levelRequirement = 0, cost = { Mana = 40, }, }, - [15] = { levelRequirement = 0, cost = { Mana = 45, }, }, - [16] = { levelRequirement = 0, cost = { Mana = 50, }, }, - [17] = { levelRequirement = 0, cost = { Mana = 55, }, }, - [18] = { levelRequirement = 0, cost = { Mana = 61, }, }, - [19] = { levelRequirement = 0, cost = { Mana = 68, }, }, - [20] = { levelRequirement = 0, cost = { Mana = 75, }, }, - [21] = { levelRequirement = 0, cost = { Mana = 83, }, }, - [22] = { levelRequirement = 0, cost = { Mana = 91, }, }, - [23] = { levelRequirement = 0, cost = { Mana = 101, }, }, - [24] = { levelRequirement = 0, cost = { Mana = 111, }, }, - [25] = { levelRequirement = 0, cost = { Mana = 122, }, }, - [26] = { levelRequirement = 0, cost = { Mana = 133, }, }, - [27] = { levelRequirement = 0, cost = { Mana = 146, }, }, - [28] = { levelRequirement = 0, cost = { Mana = 160, }, }, - [29] = { levelRequirement = 0, cost = { Mana = 176, }, }, - [30] = { levelRequirement = 0, cost = { Mana = 192, }, }, - [31] = { levelRequirement = 0, cost = { Mana = 210, }, }, - [32] = { levelRequirement = 0, cost = { Mana = 229, }, }, - [33] = { levelRequirement = 0, cost = { Mana = 250, }, }, - [34] = { levelRequirement = 0, cost = { Mana = 273, }, }, - [35] = { levelRequirement = 0, cost = { Mana = 298, }, }, - [36] = { levelRequirement = 0, cost = { Mana = 325, }, }, - [37] = { levelRequirement = 0, cost = { Mana = 354, }, }, - [38] = { levelRequirement = 0, cost = { Mana = 385, }, }, - [39] = { levelRequirement = 0, cost = { Mana = 419, }, }, - [40] = { levelRequirement = 0, cost = { Mana = 456, }, }, + [1] = { baseMultiplier = 0.45, levelRequirement = 0, }, + [2] = { baseMultiplier = 0.49, levelRequirement = 3, }, + [3] = { baseMultiplier = 0.54, levelRequirement = 6, }, + [4] = { baseMultiplier = 0.59, levelRequirement = 10, }, + [5] = { baseMultiplier = 0.64, levelRequirement = 14, }, + [6] = { baseMultiplier = 0.69, levelRequirement = 18, }, + [7] = { baseMultiplier = 0.74, levelRequirement = 22, }, + [8] = { baseMultiplier = 0.78, levelRequirement = 26, }, + [9] = { baseMultiplier = 0.82, levelRequirement = 31, }, + [10] = { baseMultiplier = 0.86, levelRequirement = 36, }, + [11] = { baseMultiplier = 0.9, levelRequirement = 41, }, + [12] = { baseMultiplier = 0.95, levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { baseMultiplier = 1.05, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.1, levelRequirement = 64, }, + [16] = { baseMultiplier = 1.15, levelRequirement = 66, }, + [17] = { baseMultiplier = 1.21, levelRequirement = 72, }, + [18] = { baseMultiplier = 1.27, levelRequirement = 78, }, + [19] = { baseMultiplier = 1.34, levelRequirement = 84, }, + [20] = { baseMultiplier = 1.4, levelRequirement = 90, }, + [21] = { baseMultiplier = 1.47, levelRequirement = 90, }, + [22] = { baseMultiplier = 1.55, levelRequirement = 90, }, + [23] = { baseMultiplier = 1.62, levelRequirement = 90, }, + [24] = { baseMultiplier = 1.71, levelRequirement = 90, }, + [25] = { baseMultiplier = 1.79, levelRequirement = 90, }, + [26] = { baseMultiplier = 1.88, levelRequirement = 90, }, + [27] = { baseMultiplier = 1.97, levelRequirement = 90, }, + [28] = { baseMultiplier = 2.07, levelRequirement = 90, }, + [29] = { baseMultiplier = 2.18, levelRequirement = 90, }, + [30] = { baseMultiplier = 2.29, levelRequirement = 90, }, + [31] = { baseMultiplier = 2.4, levelRequirement = 90, }, + [32] = { baseMultiplier = 2.52, levelRequirement = 90, }, + [33] = { baseMultiplier = 2.65, levelRequirement = 90, }, + [34] = { baseMultiplier = 2.78, levelRequirement = 90, }, + [35] = { baseMultiplier = 2.92, levelRequirement = 90, }, + [36] = { baseMultiplier = 3.06, levelRequirement = 90, }, + [37] = { baseMultiplier = 3.22, levelRequirement = 90, }, + [38] = { baseMultiplier = 3.38, levelRequirement = 90, }, + [39] = { baseMultiplier = 3.55, levelRequirement = 90, }, + [40] = { baseMultiplier = 3.72, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Command", + label = "Ice Fragments", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "ice_fragments", baseFlags = { + attack = true, + projectile = true, + area = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, + { "ballistic_ice_chunk_cone_angle", 100 }, + { "base_skill_detonation_time", 2500 }, + { "base_number_of_projectiles", 3 }, + { "ice_fragment_min_chunk_distance", 1 }, + { "ice_fragment_max_chunk_distance", 40 }, + { "active_skill_projectile_speed_+%_final", 60 }, }, stats = { - "minions_do_not_move_to_skill_target", - "can_perform_skill_while_moving", - "skill_is_command", - "base_deal_no_damage", - "command_minion_does_not_interrupt", + "base_is_projectile", + "ballistic_projectiles_always_bounce", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "is_area_damage", + "projectiles_can_shotgun", + "triggered_by_primary_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -5992,190 +14845,682 @@ skills["CommandWaterDjinnBubblePlayer"] = { }, } } -skills["ParryPlayer"] = { - name = "Parry", - baseTypeName = "Parry", - icon = "Art/2DArt/SkillIcons/HuntressBucklerParry.dds", - fromTree = true, +skills["SkyfallPlayer"] = { + name = "Skyfall", + baseTypeName = "Skyfall", + icon = "Art/2DArt/SkillIcons/ExpeditionVerisiumComet.dds", color = 4, - description = "Ready your Buckler to parry the next Strike or Projectile that would Hit you, Blocking the Hit and retaliating with a quick sweep that leaves enemies off balance, causing them to take massively increased Attack damage for a short duration. Parrying causes you to accumulate Heavy Stun buildup. You cannot Evade a Hit you could parry, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", - skillTypes = { [SkillType.RequiresBuckler] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Physical] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, }, + 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, qualityStats = { + { "base_spell_%_chance_to_echo", 0.5 }, }, levels = { - [1] = { attackTime = 750, baseMultiplier = 0.65, critChance = 5, levelRequirement = 0, }, + [1] = { critChance = 14, levelRequirement = 0, cost = { Ward = 25, }, }, + [2] = { critChance = 14, levelRequirement = 3, cost = { Ward = 28, }, }, + [3] = { critChance = 14, levelRequirement = 6, cost = { Ward = 32, }, }, + [4] = { critChance = 14, levelRequirement = 10, cost = { Ward = 36, }, }, + [5] = { critChance = 14, levelRequirement = 14, cost = { Ward = 40, }, }, + [6] = { critChance = 14, levelRequirement = 18, cost = { Ward = 44, }, }, + [7] = { critChance = 14, levelRequirement = 22, cost = { Ward = 49, }, }, + [8] = { critChance = 14, levelRequirement = 26, cost = { Ward = 54, }, }, + [9] = { critChance = 14, levelRequirement = 31, cost = { Ward = 59, }, }, + [10] = { critChance = 14, levelRequirement = 36, cost = { Ward = 64, }, }, + [11] = { critChance = 14, levelRequirement = 41, cost = { Ward = 70, }, }, + [12] = { critChance = 14, levelRequirement = 46, cost = { Ward = 76, }, }, + [13] = { critChance = 14, levelRequirement = 52, cost = { Ward = 82, }, }, + [14] = { critChance = 14, levelRequirement = 58, cost = { Ward = 89, }, }, + [15] = { critChance = 14, levelRequirement = 64, cost = { Ward = 96, }, }, + [16] = { critChance = 14, levelRequirement = 66, cost = { Ward = 103, }, }, + [17] = { critChance = 14, levelRequirement = 72, cost = { Ward = 110, }, }, + [18] = { critChance = 14, levelRequirement = 78, cost = { Ward = 118, }, }, + [19] = { critChance = 14, levelRequirement = 84, cost = { Ward = 126, }, }, + [20] = { critChance = 14, levelRequirement = 90, cost = { Ward = 135, }, }, + [21] = { critChance = 14, levelRequirement = 90, cost = { Ward = 144, }, }, + [22] = { critChance = 14, levelRequirement = 90, cost = { Ward = 153, }, }, + [23] = { critChance = 14, levelRequirement = 90, cost = { Ward = 163, }, }, + [24] = { critChance = 14, levelRequirement = 90, cost = { Ward = 174, }, }, + [25] = { critChance = 14, levelRequirement = 90, cost = { Ward = 184, }, }, + [26] = { critChance = 14, levelRequirement = 90, cost = { Ward = 196, }, }, + [27] = { critChance = 14, levelRequirement = 90, cost = { Ward = 208, }, }, + [28] = { critChance = 14, levelRequirement = 90, cost = { Ward = 220, }, }, + [29] = { critChance = 14, levelRequirement = 90, cost = { Ward = 233, }, }, + [30] = { critChance = 14, levelRequirement = 90, cost = { Ward = 246, }, }, + [31] = { critChance = 14, levelRequirement = 90, cost = { Ward = 260, }, }, + [32] = { critChance = 14, levelRequirement = 90, cost = { Ward = 275, }, }, + [33] = { critChance = 14, levelRequirement = 90, cost = { Ward = 290, }, }, + [34] = { critChance = 14, levelRequirement = 90, cost = { Ward = 307, }, }, + [35] = { critChance = 14, levelRequirement = 90, cost = { Ward = 323, }, }, + [36] = { critChance = 14, levelRequirement = 90, cost = { Ward = 341, }, }, + [37] = { critChance = 14, levelRequirement = 90, cost = { Ward = 359, }, }, + [38] = { critChance = 14, levelRequirement = 90, cost = { Ward = 378, }, }, + [39] = { critChance = 14, levelRequirement = 90, cost = { Ward = 398, }, }, + [40] = { critChance = 14, levelRequirement = 90, cost = { Ward = 418, }, }, }, statSets = { [1] = { - label = "Parry", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "parry", - statMap = { - ["base_parry_buff_damage_taken_+%_final_to_apply"] = { - mod("DamageTaken", "MORE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Parry" }, { type = "Condition", var = "ParryActive" }), - }, + label = "Skyfall", + baseEffectiveness = 5.1999998092651, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "skyfall", + baseFlags = { + spell = true, + area = true, + duration = true, + }, + constantStats = { + { "range_backflip_conditional_distance", 30 }, + { "total_cast_time_+_ms", 1000 }, + { "active_skill_generates_%_of_ward_spent_as_glory", 100 }, + { "comet_fall_time_ms", 470 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "base_number_of_verisium_octopus_minions_allowed", 12 }, + { "base_skill_effect_duration", 20000 }, + { "verisium_comet_number_of_minions_to_create", 3 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "active_skill_requires_X_glory", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "active_skill_consumes_a_verisium_infusion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "active_skill_requires_X_glory", + }, + levels = { + [1] = { 16, 24, 16, 24, 50, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 22, 33, 22, 33, 56, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 30, 45, 30, 45, 64, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 39, 59, 39, 59, 72, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 49, 74, 49, 74, 80, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 61, 92, 61, 92, 88, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 75, 112, 75, 112, 98, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 90, 135, 90, 135, 108, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 107, 161, 107, 161, 118, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 127, 190, 127, 190, 128, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 149, 223, 149, 223, 140, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 174, 261, 174, 261, 152, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 203, 304, 203, 304, 164, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 235, 353, 235, 353, 178, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 272, 408, 272, 408, 192, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 315, 472, 315, 472, 206, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 363, 544, 363, 544, 220, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 418, 627, 418, 627, 236, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 481, 721, 481, 721, 252, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 553, 829, 553, 829, 270, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 635, 952, 635, 952, 288, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 729, 1094, 729, 1094, 306, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 837, 1256, 837, 1256, 326, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 962, 1443, 962, 1443, 348, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1105, 1657, 1105, 1657, 368, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 1270, 1904, 1270, 1904, 392, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1459, 2189, 1459, 2189, 416, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1679, 2518, 1679, 2518, 440, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1932, 2898, 1932, 2898, 466, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 2225, 3337, 2225, 3337, 492, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 2564, 3847, 2564, 3847, 520, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 2958, 4438, 2958, 4438, 550, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 3416, 5124, 3416, 5124, 580, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 3949, 5923, 3949, 5923, 614, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 4569, 6854, 4569, 6854, 646, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 5293, 7939, 5293, 7939, 682, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 6138, 9208, 6138, 9208, 718, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 7128, 10691, 7128, 10691, 756, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 8287, 12430, 8287, 12430, 796, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 9646, 14470, 9646, 14470, 836, statInterpolation = { 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, + }, + [2] = { + label = "Verisium-Infused", + baseEffectiveness = 5.1999998092651, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "skyfall", baseFlags = { - attack = true, - melee = true, + spell = true, + area = true, duration = true, - shieldAttack = true, }, - baseMods = { - skill("debuff", true), + constantStats = { + { "range_backflip_conditional_distance", 30 }, + { "total_cast_time_+_ms", 1000 }, + { "active_skill_generates_%_of_ward_spent_as_glory", 100 }, + { "comet_fall_time_ms", 470 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "base_number_of_verisium_octopus_minions_allowed", 12 }, + { "base_skill_effect_duration", 20000 }, + { "verisium_comet_number_of_minions_to_create", 3 }, + { "verisium_comet_number_of_minions_to_create", 3 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "active_skill_requires_X_glory", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "active_skill_consumes_a_verisium_infusion", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "active_skill_requires_X_glory", + }, + levels = { + [1] = { 0, 0, 0, 0, 16, 24, 16, 24, 50, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 0, 0, 0, 0, 22, 33, 22, 33, 56, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 0, 0, 0, 0, 30, 45, 30, 45, 64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 0, 0, 0, 0, 39, 59, 39, 59, 72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 0, 0, 0, 0, 49, 74, 49, 74, 80, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 0, 0, 0, 0, 61, 92, 61, 92, 88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 0, 0, 0, 0, 75, 112, 75, 112, 98, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 0, 0, 0, 0, 90, 135, 90, 135, 108, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 0, 0, 0, 0, 107, 161, 107, 161, 118, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 0, 0, 0, 0, 127, 190, 127, 190, 128, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 0, 0, 0, 0, 149, 223, 149, 223, 140, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 0, 0, 0, 0, 174, 261, 174, 261, 152, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 0, 0, 0, 0, 203, 304, 203, 304, 164, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 0, 0, 0, 0, 235, 353, 235, 353, 178, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 0, 0, 0, 0, 272, 408, 272, 408, 192, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 0, 0, 0, 0, 315, 472, 315, 472, 206, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 0, 0, 0, 0, 363, 544, 363, 544, 220, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 0, 0, 0, 0, 418, 627, 418, 627, 236, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 0, 0, 0, 0, 481, 721, 481, 721, 252, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 0, 0, 0, 0, 553, 829, 553, 829, 270, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 0, 0, 0, 0, 635, 952, 635, 952, 288, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 0, 0, 0, 0, 729, 1094, 729, 1094, 306, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 0, 0, 0, 0, 837, 1256, 837, 1256, 326, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 0, 0, 0, 0, 962, 1443, 962, 1443, 348, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 0, 0, 0, 0, 1105, 1657, 1105, 1657, 368, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 0, 0, 0, 0, 1270, 1904, 1270, 1904, 392, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 0, 0, 0, 0, 1459, 2189, 1459, 2189, 416, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 0, 0, 0, 0, 1679, 2518, 1679, 2518, 440, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 0, 0, 0, 0, 1932, 2898, 1932, 2898, 466, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 0, 0, 0, 0, 2225, 3337, 2225, 3337, 492, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 0, 0, 0, 0, 2564, 3847, 2564, 3847, 520, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 0, 0, 0, 0, 2958, 4438, 2958, 4438, 550, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 0, 0, 0, 0, 3416, 5124, 3416, 5124, 580, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 0, 0, 0, 0, 3949, 5923, 3949, 5923, 614, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 0, 0, 0, 0, 4569, 6854, 4569, 6854, 646, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 0, 0, 0, 0, 5293, 7939, 5293, 7939, 682, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 0, 0, 0, 0, 6138, 9208, 6138, 9208, 718, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 0, 0, 0, 0, 7128, 10691, 7128, 10691, 756, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 0, 0, 0, 0, 8287, 12430, 8287, 12430, 796, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 0, 0, 0, 0, 9646, 14470, 9646, 14470, 836, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["NightfallSoaringMidnightPlayer"] = { + name = "Soaring Midnight", + baseTypeName = "Soaring Midnight", + icon = "Art/2DArt/SkillIcons/ShieldNightfall1.dds", + fromItem = true, + color = 4, + description = "Hurl your Shield as a Projectile which Returns to you at the end of its flight. While the Shield is in flight, this skill is replaced with Embrace the Fall. This skill's cooldown is skipped if you catch the Shield as it Returns, or destroy an Ice Crystal with the Embrace the Fall.", + skillTypes = { [SkillType.ManualCooldownConsumption] = true, [SkillType.Cooldown] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.RequiresShield] = true, [SkillType.Travel] = true, [SkillType.Physical] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, }, + castTime = 1, + qualityStats = { + { "projectile_base_number_of_targets_to_pierce", 0.1 }, + }, + levels = { + [1] = { attackTime = 1000, baseMultiplier = 0.5, cooldown = 4, critChance = 10, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { attackTime = 1000, baseMultiplier = 0.55, cooldown = 4, critChance = 10, levelRequirement = 3, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { attackTime = 1000, baseMultiplier = 0.6, cooldown = 4, critChance = 10, levelRequirement = 6, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { attackTime = 1000, baseMultiplier = 0.66, cooldown = 4, critChance = 10, levelRequirement = 10, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { attackTime = 1000, baseMultiplier = 0.71, cooldown = 4, critChance = 10, levelRequirement = 14, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { attackTime = 1000, baseMultiplier = 0.77, cooldown = 4, critChance = 10, levelRequirement = 18, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { attackTime = 1000, baseMultiplier = 0.82, cooldown = 4, critChance = 10, levelRequirement = 22, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { attackTime = 1000, baseMultiplier = 0.87, cooldown = 4, critChance = 10, levelRequirement = 26, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { attackTime = 1000, baseMultiplier = 0.91, cooldown = 4, critChance = 10, levelRequirement = 31, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { attackTime = 1000, baseMultiplier = 0.96, cooldown = 4, critChance = 10, levelRequirement = 36, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { attackTime = 1000, baseMultiplier = 1.01, cooldown = 4, critChance = 10, levelRequirement = 41, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { attackTime = 1000, baseMultiplier = 1.06, cooldown = 4, critChance = 10, levelRequirement = 46, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { attackTime = 1000, baseMultiplier = 1.11, cooldown = 4, critChance = 10, levelRequirement = 52, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { attackTime = 1000, baseMultiplier = 1.16, cooldown = 4, critChance = 10, levelRequirement = 58, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { attackTime = 1000, baseMultiplier = 1.22, cooldown = 4, critChance = 10, levelRequirement = 64, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { attackTime = 1000, baseMultiplier = 1.28, cooldown = 4, critChance = 10, levelRequirement = 66, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { attackTime = 1000, baseMultiplier = 1.35, cooldown = 4, critChance = 10, levelRequirement = 72, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { attackTime = 1000, baseMultiplier = 1.41, cooldown = 4, critChance = 10, levelRequirement = 78, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { attackTime = 1000, baseMultiplier = 1.49, cooldown = 4, critChance = 10, levelRequirement = 84, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { attackTime = 1000, baseMultiplier = 1.56, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { attackTime = 1000, baseMultiplier = 1.64, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { attackTime = 1000, baseMultiplier = 1.72, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { attackTime = 1000, baseMultiplier = 1.81, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { attackTime = 1000, baseMultiplier = 1.9, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { attackTime = 1000, baseMultiplier = 1.99, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { attackTime = 1000, baseMultiplier = 2.09, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { attackTime = 1000, baseMultiplier = 2.19, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { attackTime = 1000, baseMultiplier = 2.3, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { attackTime = 1000, baseMultiplier = 2.42, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { attackTime = 1000, baseMultiplier = 2.54, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { attackTime = 1000, baseMultiplier = 2.67, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { attackTime = 1000, baseMultiplier = 2.8, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { attackTime = 1000, baseMultiplier = 2.94, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { attackTime = 1000, baseMultiplier = 3.09, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { attackTime = 1000, baseMultiplier = 3.24, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { attackTime = 1000, baseMultiplier = 3.4, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { attackTime = 1000, baseMultiplier = 3.57, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { attackTime = 1000, baseMultiplier = 3.75, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { attackTime = 1000, baseMultiplier = 3.94, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { attackTime = 1000, baseMultiplier = 4.14, cooldown = 4, critChance = 10, levelRequirement = 90, storedUses = 1, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Soaring Midnight", + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "nightfall_soaring_midnight", + baseFlags = { + attack = true, + projectile = true, + shieldAttack = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -50 }, + { "projectile_base_number_of_targets_to_pierce", 3 }, + { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "base_maximum_active_block_distance_for_non_projectiles", 10 }, - { "base_maximum_active_block_distance_for_projectiles", 15 }, - { "base_parry_buff_damage_taken_+%_final_to_apply", 50 }, - { "base_skill_effect_duration", 2000 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", 400 }, - { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, - { "stun_threshold_+%_final_while_performing_action", -40 }, - { "active_skill_override_turn_duration_ms", 100 }, - { "melee_strike_bonus_attack_distance", 14 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 50 }, }, stats = { - "off_hand_minimum_added_physical_damage_per_5_shield_evasion_rating", - "off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating", + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + "off_hand_minimum_added_physical_damage_per_15_shield_armour", + "off_hand_maximum_added_physical_damage_per_15_shield_armour", + "base_is_projectile", + "projectiles_return", + "returning_projectiles_always_pierce", + "modifiers_to_number_of_projectiles_instead_apply_to_number_of_targets_projectile_pierces", + "replace_off_hand_unarmed_attack_stats_with_shield_type", + "projectiles_cannot_fork", + "projectiles_cannot_split", "can_perform_skill_while_moving", - "skill_is_not_considered_a_skill", - "global_always_hit", - "active_skill_does_not_decay_heavy_stun_during_action", - "always_light_stun", - "quality_display_base_skill_effect_duration_is_gem", - "base_skill_show_average_damage_instead_of_dps", + }, + notMinionStat = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + }, + levels = { + [1] = { 2, 5, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 4, 9, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 6, 14, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 8, 19, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 11, 25, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 13, 31, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 16, 37, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 19, 44, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 22, 51, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 25, 58, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 28, 66, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 32, 74, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 35, 82, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, 90, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 43, 99, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 47, 109, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 51, 118, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 55, 128, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 59, 139, 6, 10, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 64, 149, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 69, 160, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 74, 172, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 79, 183, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 84, 195, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 89, 208, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 94, 220, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 100, 233, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 106, 247, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 112, 260, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 118, 274, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 124, 289, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 130, 303, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 136, 318, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 143, 334, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 150, 349, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 157, 365, 8, 12, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 164, 382, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 171, 398, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 178, 415, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 186, 433, 9, 13, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["NightfallEmbraceTheFallPlayer"] = { + name = "Embrace The Fall", + hidden = true, + icon = "Art/2DArt/SkillIcons/ShieldNightfall2.dds", + fromItem = true, + description = "Teleport to your thrown Shield, appearing in the air and Slamming it into the ground to deal damage in an area. Destroying an Ice Crystal with this skill skips the cooldown of Soaring Midnight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Travel] = true, [SkillType.Physical] = true, [SkillType.Cold] = true, [SkillType.NonWeaponAttack] = true, [SkillType.Slam] = true, [SkillType.Melee] = true, [SkillType.RequiresOffHandNotWeapon] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { attackTime = 650, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { attackTime = 650, baseMultiplier = 1.1, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { attackTime = 650, baseMultiplier = 1.21, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { attackTime = 650, baseMultiplier = 1.32, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { attackTime = 650, baseMultiplier = 1.42, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { attackTime = 650, baseMultiplier = 1.53, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { attackTime = 650, baseMultiplier = 1.64, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { attackTime = 650, baseMultiplier = 1.74, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { attackTime = 650, baseMultiplier = 1.82, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { attackTime = 650, baseMultiplier = 1.91, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { attackTime = 650, baseMultiplier = 2.01, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { attackTime = 650, baseMultiplier = 2.11, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { attackTime = 650, baseMultiplier = 2.22, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { attackTime = 650, baseMultiplier = 2.33, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { attackTime = 650, baseMultiplier = 2.44, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { attackTime = 650, baseMultiplier = 2.57, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { attackTime = 650, baseMultiplier = 2.69, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { attackTime = 650, baseMultiplier = 2.83, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { attackTime = 650, baseMultiplier = 2.97, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { attackTime = 650, baseMultiplier = 3.12, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { attackTime = 650, baseMultiplier = 3.27, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { attackTime = 650, baseMultiplier = 3.44, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { attackTime = 650, baseMultiplier = 3.61, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { attackTime = 650, baseMultiplier = 3.79, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { attackTime = 650, baseMultiplier = 3.98, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { attackTime = 650, baseMultiplier = 4.18, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { attackTime = 650, baseMultiplier = 4.39, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { attackTime = 650, baseMultiplier = 4.61, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { attackTime = 650, baseMultiplier = 4.84, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { attackTime = 650, baseMultiplier = 5.08, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { attackTime = 650, baseMultiplier = 5.33, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { attackTime = 650, baseMultiplier = 5.6, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { attackTime = 650, baseMultiplier = 5.88, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { attackTime = 650, baseMultiplier = 6.18, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { attackTime = 650, baseMultiplier = 6.48, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { attackTime = 650, baseMultiplier = 6.81, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { attackTime = 650, baseMultiplier = 7.15, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { attackTime = 650, baseMultiplier = 7.51, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { attackTime = 650, baseMultiplier = 7.88, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { attackTime = 650, baseMultiplier = 8.28, critChance = 15, levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Embrace The Fall", + incrementalEffectiveness = 0.27349999547005, + statDescriptionScope = "nightfall_embrace_the_fall", + baseFlags = { + attack = true, + melee = true, + shieldAttack = true, + area = true, + }, + constantStats = { + { "total_attack_time_+_ms", 600 }, + { "active_skill_base_area_of_effect_radius", 37 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 80 }, + }, + stats = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", + "off_hand_minimum_added_physical_damage_per_15_shield_armour", + "off_hand_maximum_added_physical_damage_per_15_shield_armour", + "destroy_frost_wall_segment_on_hit", "replace_off_hand_unarmed_attack_stats_with_shield_type", - "precise_cursor_targeting_uses_contact_point_height_offset", + "is_area_damage", + }, + notMinionStat = { + "off_hand_weapon_minimum_physical_damage", + "off_hand_weapon_maximum_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1, statInterpolation = { 3, 3, }, actorLevel = 1, }, + [1] = { 6, 9, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 10, 16, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 16, 24, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 22, 33, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 28, 43, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 35, 53, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 42, 64, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 50, 75, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 58, 87, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 66, 99, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 75, 112, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 84, 126, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 94, 140, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 103, 155, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 114, 170, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 124, 186, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 135, 203, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 147, 220, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 158, 238, 12, 20, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 171, 256, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 183, 275, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 196, 294, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 209, 314, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 223, 335, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 237, 356, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 252, 378, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 267, 400, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 282, 423, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 297, 446, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 313, 470, 14, 22, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 330, 495, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 347, 520, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 364, 546, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 381, 572, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 399, 599, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 418, 626, 16, 24, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 436, 654, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 455, 683, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 475, 712, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 495, 742, 18, 26, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["PinnacleOfPowerPlayer"] = { - name = "Pinnacle of Power", - baseTypeName = "Pinnacle of Power", - icon = "Art/2DArt/SkillIcons/ElementalPowerSkillWand.dds", - fromItem = true, +skills["SorceryWardPlayer"] = { + name = "Sorcery Ward", + baseTypeName = "Sorcery Ward", + icon = "Art/2DArt/SkillIcons/WitchunterSpellAegis.dds", + fromTree = true, color = 4, - description = "Consume all Power Charges to master the elements, gaining Elemental Damage and the ability to apply Elemental Ailments with other damage types. Can only be used while you have maximum Power Charges.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.HasUsageCondition] = true, }, - castTime = 0, + description = "Passively manifests a protective barrier which takes Elemental Damage from Hits for you until depleted. The barrier instantly recharges to its full value a short time after it stops taking damage or is fully depleted.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Aegis] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, qualityStats = { - { "elemental_power_elemental_damage_+%_final_per_power_charge", 0.1 }, + { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.25 }, }, levels = { - [20] = { cooldown = 4, levelRequirement = 0, storedUses = 1, cost = { Mana = 93, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Pinnacle of Power", + label = "Sorcery Ward", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "pinnacle_of_power", + statDescriptionScope = "sorcery_ward", statMap = { - ["elemental_power_elemental_damage_+%_final_per_power_charge"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "SkillType", skillTypeList = { SkillType.Cold, SkillType.Fire, SkillType.Lightning } }, { type = "Multiplier", var = "RemovablePowerCharge", scalar = "ConsumedPowerChargeEffect" }, { type = "GlobalEffect", effectType = "Buff" }), - flag("ColdCanIgnite", { type = "GlobalEffect", effectType = "Buff" }), flag("ColdCanShock", { type = "GlobalEffect", effectType = "Buff" }), - flag("FireCanFreeze", { type = "GlobalEffect", effectType = "Buff" }), flag("FireCanShock", { type = "GlobalEffect", effectType = "Buff" }), - flag("LightningCanFreeze", { type = "GlobalEffect", effectType = "Buff" }), flag("LightningCanIgnite", { type = "GlobalEffect", effectType = "Buff" }), - }, - ["elemental_power_buff_duration_per_power_charge_ms"] = { - mod("Duration", "BASE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge", scalar = "ConsumedPowerChargeEffect" }), - div = 1000, - }, - ["quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem"] = { - -- display only + ["aegis_unique_shield_max_value_from_%_armour_evasion"] = { + mod("ElementalAegisValue", "MAX", nil, 0, 0, { type = "Condition", var = "SorceryWard" }, { type = "Condition", var = "CeremonialAblution", neg = true }, { type = "PercentStat", statList = { "Armour", "Evasion" }, percent = 1 }, { type = "GlobalEffect", effectType = "Buff" }), + mod("AegisValue", "MAX", nil, 0, 0, { type = "Condition", var = "SorceryWard" }, { type = "Condition", var = "CeremonialAblution" }, { type = "PercentStat", statList = { "Armour", "Evasion" }, percent = 1 }, { type = "GlobalEffect", effectType = "Buff" }), }, }, baseFlags = { - buff = true, - duration = true, }, constantStats = { - { "elemental_power_buff_duration_per_power_charge_ms", 5000 }, - { "elemental_power_elemental_damage_+%_final_per_power_charge", 15 }, + { "skill_desired_amount_override", 1 }, + { "active_skill_display_aegis_variation", 4 }, + { "aegis_unique_shield_max_value_from_%_armour_evasion", 30 }, }, stats = { - "base_skill_is_instant", + "aegis_recharge_delay_ms", "base_deal_no_damage", - "quality_stat_elemental_power_elemental_damage_+%_final_per_power_charge_is_gem", + "display_statset_hide_usage_stats", }, levels = { - [20] = { actorLevel = 60, }, + [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 7900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 7800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 7700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 7600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 7500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 7400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 7300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 7200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 7100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 7000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 6900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 6800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 6700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 6600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 6500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 6400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 6300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 6200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 6100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 6000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 5900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 5800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 5700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 5600, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 5500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 5400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 5300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 5200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 5100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 5050, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 5000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 4950, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 4900, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 4850, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 4800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 4750, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 4700, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 4650, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 4600, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["MeleeUnarmedPlayer"] = { - name = "Punch", - hidden = true, - icon = "Art/2DArt/SkillIcons/UnarmedDefaultSkill.dds", +skills["MeleeSpearOffHandPlayer"] = { + name = "Spear Stab", + baseTypeName = "Spear Stab", + icon = "Art/2DArt/SkillIcons/SpearDefaultSkill.dds", + fromItem = true, color = 4, - description = "Perform an Unarmed Strike.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.AttackInPlace] = true, }, + description = "Strike with your Spear.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.AttackInPlace] = true, }, + weaponTypes = { + ["Spear"] = true, + }, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Punch", + label = "Spear Stab", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { attack = true, - area = true, melee = true, + area = true, }, constantStats = { - { "melee_conditional_step_distance", 10 }, + { "melee_conditional_step_distance", 15 }, }, stats = { "is_area_damage", @@ -6226,65 +15571,65 @@ skills["MeleeUnarmedPlayer"] = { }, } } -skills["MeleeQuarterstaffPlayer"] = { - name = "Quarterstaff Strike", - baseTypeName = "Quarterstaff Strike", - icon = "Art/2DArt/SkillIcons/QuarterstaffDefaultSkill.dds", +skills["MeleeSpearPlayer"] = { + name = "Spear Stab", + baseTypeName = "Spear Stab", + icon = "Art/2DArt/SkillIcons/TwoHandSpearDefaultSkill.dds", fromItem = true, color = 4, - description = "Strike with your Quarterstaff.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.QuarterstaffSkill] = true, [SkillType.AttackInPlace] = true, }, + description = "Strike with your Spear.", + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { - ["Staff"] = true, + ["Spear"] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.42, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.53, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.64, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.74, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.82, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 1.91, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.01, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.11, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.22, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.33, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.44, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.57, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.69, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.83, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 2.97, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.12, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.27, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.79, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.39, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.84, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 5.08, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.6, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 6.18, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 6.48, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.81, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 7.15, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 7.51, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 7.88, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 8.28, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Quarterstaff Strike", + label = "Spear Stab", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", baseFlags = { @@ -6293,7 +15638,8 @@ skills["MeleeQuarterstaffPlayer"] = { area = true, }, constantStats = { - { "melee_conditional_step_distance", 10 }, + { "melee_conditional_step_distance", 15 }, + { "melee_range_+", 4 }, }, stats = { "is_area_damage", @@ -6344,139 +15690,84 @@ skills["MeleeQuarterstaffPlayer"] = { }, } } -skills["ShieldBlockPlayer"] = { - name = "Raise Shield", - baseTypeName = "Raise Shield", - icon = "Art/2DArt/SkillIcons/BruteShieldBlock.dds", +skills["SpearThrowPlayer"] = { + name = "Spear Throw", + baseTypeName = "Spear Throw", + icon = "Art/2DArt/SkillIcons/HuntressIceSpear.dds", fromItem = true, color = 4, - description = "Raise your Shield to Block all incoming Blockable hits. Release immediately after Blocking when an enemy is close to perform a Shield Bash, damaging and Stunning enemies. While your Shield is raised you cannot be Light Stunned by hits you Block, but Blocking too much damage may Heavy Stun you. You cannot Evade while your Shield is raised, but Evasion instead grants an equal chance to avoid this Heavy Stun buildup.", - skillTypes = { [SkillType.Channel] = true, [SkillType.RequiresShield] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Melee] = true, }, - castTime = 1, - qualityStats = { - }, - levels = { - [1] = { attackTime = 550, baseMultiplier = 0.8, critChance = 5, levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Raise Shield", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "shield_block", - baseFlags = { - attack = true, - area = true, - shieldAttack = true, - melee = true, - }, - constantStats = { - { "movement_speed_+%_final_while_performing_action", -50 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "channel_skill_end_animation_duration_override_ms", 35 }, - { "active_block_light_stun_threshold_+%_final", 50 }, - { "active_skill_heavy_stun_decay_after_action_delay_ms", 2000 }, - { "skill_animation_duration_multiplier_override", 4 }, - { "base_minimum_channel_time_ms", 250 }, - { "raise_shield_base_retaliation_duration_ms", 1000 }, - { "active_skill_hit_damage_stun_multiplier_+%_final", 600 }, - { "melee_strike_bonus_attack_distance", 14 }, - { "off_hand_minimum_added_physical_damage_per_5_shield_armour", 3 }, - { "off_hand_maximum_added_physical_damage_per_5_shield_armour", 4 }, - { "active_skill_override_turn_duration_ms", 100 }, - }, - stats = { - "can_perform_skill_while_moving", - "global_always_hit", - "active_skill_does_not_decay_heavy_stun_during_action", - "skill_is_not_considered_a_skill", - "always_light_stun", - "base_skill_show_average_damage_instead_of_dps", - "replace_off_hand_unarmed_attack_stats_with_shield_type", - "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - } -} -skills["WyvernRendPlayer"] = { - name = "Rend", - baseTypeName = "Rend", - icon = "Art/2DArt/SkillIcons/DruidWyvernSwipe.dds", - color = 4, - description = "Shapeshift into a Wyvern and perform a wide slash with your wingtip claws. Consumes a Power Charge if possible to grant you a Buff that gives you extra Lightning damage. While you have the Buff, Rend covers a much larger area but is slower.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Shapeshift] = true, [SkillType.Wyvern] = true, [SkillType.ConsumesCharges] = true, [SkillType.Duration] = true, }, + description = "Hurl your Spear with force. Consumes a Frenzy Charge if you have one to cause the Spear to explode at the end of its flight.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, }, weaponTypes = { - ["Talisman"] = true, + ["Spear"] = true, }, castTime = 1, qualityStats = { - { "wyvern_devour_base_all_damage_%_to_gain_as_lightning", 0.5 }, }, levels = { - [1] = { attackSpeedMultiplier = -10, baseMultiplier = 1.1, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = -10, baseMultiplier = 1.21, levelRequirement = 3, }, - [3] = { attackSpeedMultiplier = -10, baseMultiplier = 1.33, levelRequirement = 6, }, - [4] = { attackSpeedMultiplier = -10, baseMultiplier = 1.45, levelRequirement = 10, }, - [5] = { attackSpeedMultiplier = -10, baseMultiplier = 1.57, levelRequirement = 14, }, - [6] = { attackSpeedMultiplier = -10, baseMultiplier = 1.68, levelRequirement = 18, }, - [7] = { attackSpeedMultiplier = -10, baseMultiplier = 1.8, levelRequirement = 22, }, - [8] = { attackSpeedMultiplier = -10, baseMultiplier = 1.91, levelRequirement = 26, }, - [9] = { attackSpeedMultiplier = -10, baseMultiplier = 2.01, levelRequirement = 31, }, - [10] = { attackSpeedMultiplier = -10, baseMultiplier = 2.11, levelRequirement = 36, }, - [11] = { attackSpeedMultiplier = -10, baseMultiplier = 2.21, levelRequirement = 41, }, - [12] = { attackSpeedMultiplier = -10, baseMultiplier = 2.32, levelRequirement = 46, }, - [13] = { attackSpeedMultiplier = -10, baseMultiplier = 2.44, levelRequirement = 52, }, - [14] = { attackSpeedMultiplier = -10, baseMultiplier = 2.56, levelRequirement = 58, }, - [15] = { attackSpeedMultiplier = -10, baseMultiplier = 2.69, levelRequirement = 64, }, - [16] = { attackSpeedMultiplier = -10, baseMultiplier = 2.82, levelRequirement = 66, }, - [17] = { attackSpeedMultiplier = -10, baseMultiplier = 2.96, levelRequirement = 72, }, - [18] = { attackSpeedMultiplier = -10, baseMultiplier = 3.11, levelRequirement = 78, }, - [19] = { attackSpeedMultiplier = -10, baseMultiplier = 3.27, levelRequirement = 84, }, - [20] = { attackSpeedMultiplier = -10, baseMultiplier = 3.43, levelRequirement = 90, }, - [21] = { attackSpeedMultiplier = -10, baseMultiplier = 3.6, levelRequirement = 90, }, - [22] = { attackSpeedMultiplier = -10, baseMultiplier = 3.78, levelRequirement = 90, }, - [23] = { attackSpeedMultiplier = -10, baseMultiplier = 3.97, levelRequirement = 90, }, - [24] = { attackSpeedMultiplier = -10, baseMultiplier = 4.17, levelRequirement = 90, }, - [25] = { attackSpeedMultiplier = -10, baseMultiplier = 4.38, levelRequirement = 90, }, - [26] = { attackSpeedMultiplier = -10, baseMultiplier = 4.6, levelRequirement = 90, }, - [27] = { attackSpeedMultiplier = -10, baseMultiplier = 4.83, levelRequirement = 90, }, - [28] = { attackSpeedMultiplier = -10, baseMultiplier = 5.07, levelRequirement = 90, }, - [29] = { attackSpeedMultiplier = -10, baseMultiplier = 5.32, levelRequirement = 90, }, - [30] = { attackSpeedMultiplier = -10, baseMultiplier = 5.59, levelRequirement = 90, }, - [31] = { attackSpeedMultiplier = -10, baseMultiplier = 5.87, levelRequirement = 90, }, - [32] = { attackSpeedMultiplier = -10, baseMultiplier = 6.16, levelRequirement = 90, }, - [33] = { attackSpeedMultiplier = -10, baseMultiplier = 6.47, levelRequirement = 90, }, - [34] = { attackSpeedMultiplier = -10, baseMultiplier = 6.79, levelRequirement = 90, }, - [35] = { attackSpeedMultiplier = -10, baseMultiplier = 7.13, levelRequirement = 90, }, - [36] = { attackSpeedMultiplier = -10, baseMultiplier = 7.49, levelRequirement = 90, }, - [37] = { attackSpeedMultiplier = -10, baseMultiplier = 7.86, levelRequirement = 90, }, - [38] = { attackSpeedMultiplier = -10, baseMultiplier = 8.26, levelRequirement = 90, }, - [39] = { attackSpeedMultiplier = -10, baseMultiplier = 8.67, levelRequirement = 90, }, - [40] = { attackSpeedMultiplier = -10, baseMultiplier = 9.1, levelRequirement = 90, }, + [1] = { attackSpeedMultiplier = -30, baseMultiplier = 1.25, levelRequirement = 0, }, + [2] = { attackSpeedMultiplier = -30, baseMultiplier = 1.38, levelRequirement = 3, }, + [3] = { attackSpeedMultiplier = -30, baseMultiplier = 1.51, levelRequirement = 6, }, + [4] = { attackSpeedMultiplier = -30, baseMultiplier = 1.65, levelRequirement = 10, }, + [5] = { attackSpeedMultiplier = -30, baseMultiplier = 1.78, levelRequirement = 14, }, + [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.91, levelRequirement = 18, }, + [7] = { attackSpeedMultiplier = -30, baseMultiplier = 2.05, levelRequirement = 22, }, + [8] = { attackSpeedMultiplier = -30, baseMultiplier = 2.17, levelRequirement = 26, }, + [9] = { attackSpeedMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 31, }, + [10] = { attackSpeedMultiplier = -30, baseMultiplier = 2.39, levelRequirement = 36, }, + [11] = { attackSpeedMultiplier = -30, baseMultiplier = 2.51, levelRequirement = 41, }, + [12] = { attackSpeedMultiplier = -30, baseMultiplier = 2.64, levelRequirement = 46, }, + [13] = { attackSpeedMultiplier = -30, baseMultiplier = 2.77, levelRequirement = 52, }, + [14] = { attackSpeedMultiplier = -30, baseMultiplier = 2.91, levelRequirement = 58, }, + [15] = { attackSpeedMultiplier = -30, baseMultiplier = 3.05, levelRequirement = 64, }, + [16] = { attackSpeedMultiplier = -30, baseMultiplier = 3.21, levelRequirement = 66, }, + [17] = { attackSpeedMultiplier = -30, baseMultiplier = 3.37, levelRequirement = 72, }, + [18] = { attackSpeedMultiplier = -30, baseMultiplier = 3.54, levelRequirement = 78, }, + [19] = { attackSpeedMultiplier = -30, baseMultiplier = 3.71, levelRequirement = 84, }, + [20] = { attackSpeedMultiplier = -30, baseMultiplier = 3.9, levelRequirement = 90, }, + [21] = { attackSpeedMultiplier = -30, baseMultiplier = 4.09, levelRequirement = 90, }, + [22] = { attackSpeedMultiplier = -30, baseMultiplier = 4.3, levelRequirement = 90, }, + [23] = { attackSpeedMultiplier = -30, baseMultiplier = 4.51, levelRequirement = 90, }, + [24] = { attackSpeedMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, }, + [25] = { attackSpeedMultiplier = -30, baseMultiplier = 4.98, levelRequirement = 90, }, + [26] = { attackSpeedMultiplier = -30, baseMultiplier = 5.22, levelRequirement = 90, }, + [27] = { attackSpeedMultiplier = -30, baseMultiplier = 5.49, levelRequirement = 90, }, + [28] = { attackSpeedMultiplier = -30, baseMultiplier = 5.76, levelRequirement = 90, }, + [29] = { attackSpeedMultiplier = -30, baseMultiplier = 6.05, levelRequirement = 90, }, + [30] = { attackSpeedMultiplier = -30, baseMultiplier = 6.35, levelRequirement = 90, }, + [31] = { attackSpeedMultiplier = -30, baseMultiplier = 6.67, levelRequirement = 90, }, + [32] = { attackSpeedMultiplier = -30, baseMultiplier = 7, levelRequirement = 90, }, + [33] = { attackSpeedMultiplier = -30, baseMultiplier = 7.35, levelRequirement = 90, }, + [34] = { attackSpeedMultiplier = -30, baseMultiplier = 7.72, levelRequirement = 90, }, + [35] = { attackSpeedMultiplier = -30, baseMultiplier = 8.11, levelRequirement = 90, }, + [36] = { attackSpeedMultiplier = -30, baseMultiplier = 8.51, levelRequirement = 90, }, + [37] = { attackSpeedMultiplier = -30, baseMultiplier = 8.94, levelRequirement = 90, }, + [38] = { attackSpeedMultiplier = -30, baseMultiplier = 9.38, levelRequirement = 90, }, + [39] = { attackSpeedMultiplier = -30, baseMultiplier = 9.85, levelRequirement = 90, }, + [40] = { attackSpeedMultiplier = -30, baseMultiplier = 10.34, levelRequirement = 90, }, }, statSets = { [1] = { - label = "Normal Strikes", + label = "Spear Throw", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "rend", + statDescriptionScope = "player_ranged_spear", baseFlags = { attack = true, - area = true, - melee = true, + projectile = true, }, constantStats = { - { "base_melee_dash_range", 20 }, - { "melee_conditional_step_distance", 10 }, - { "wyvern_devour_base_all_damage_%_to_gain_as_lightning", 50 }, - { "base_skill_effect_duration", 10000 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_weapon_range_+", 105 }, }, stats = { - "is_area_damage", - "disable_quadruped_head_control", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", + "can_perform_skill_while_moving", + "has_modular_projectiles_enabled", }, levels = { [1] = { actorLevel = 1, }, @@ -6522,205 +15813,88 @@ skills["WyvernRendPlayer"] = { }, }, [2] = { - label = "Lightning-Charged", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "rend", - baseFlags = { - attack = true, - area = true, - melee = true, - }, - constantStats = { - { "base_melee_dash_range", 20 }, - { "melee_conditional_step_distance", 10 }, - { "supplementary_stat_container_attack_speed_+%_final", -20 }, - { "skill_specific_stat_description_mode", 1 }, - }, - stats = { - "is_area_damage", - "disable_quadruped_head_control", - }, - levels = { - [1] = { baseMultiplier = 1.1, actorLevel = 1, }, - [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 1.57, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 1.68, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 1.8, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.91, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 2.01, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 2.11, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 2.21, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 2.32, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 2.44, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 2.56, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 2.69, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 2.82, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 2.96, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 3.11, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 3.27, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 3.43, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 3.6, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 3.78, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 3.97, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 4.17, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 4.38, actorLevel = 136.875, }, - [26] = { baseMultiplier = 4.6, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 4.83, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 5.07, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 5.32, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 5.59, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 5.87, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 6.16, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 6.47, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 6.79, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 7.13, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 7.49, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 7.86, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 8.26, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 8.67, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 9.1, actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["RitualSacrificePlayer"] = { - name = "Ritual Sacrifice", - baseTypeName = "Ritual Sacrifice", - icon = "Art/2DArt/SkillIcons/PrimalistStabCorpseSkillIcon.dds", - fromTree = true, - color = 4, - description = "Sacrifice the Corpse of a Rare Monster to grant you its Modifiers for a duration.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.TargetsDestructibleRareCorpses] = true, }, - castTime = 5, - qualityStats = { - { "base_skill_effect_duration", 1000 }, - }, - levels = { - [1] = { levelRequirement = 0, cost = { Mana = 20, }, }, - [2] = { levelRequirement = 3, cost = { Mana = 20, }, }, - [3] = { levelRequirement = 6, cost = { Mana = 20, }, }, - [4] = { levelRequirement = 10, cost = { Mana = 20, }, }, - [5] = { levelRequirement = 14, cost = { Mana = 20, }, }, - [6] = { levelRequirement = 18, cost = { Mana = 20, }, }, - [7] = { levelRequirement = 22, cost = { Mana = 20, }, }, - [8] = { levelRequirement = 26, cost = { Mana = 20, }, }, - [9] = { levelRequirement = 31, cost = { Mana = 20, }, }, - [10] = { levelRequirement = 36, cost = { Mana = 20, }, }, - [11] = { levelRequirement = 41, cost = { Mana = 20, }, }, - [12] = { levelRequirement = 46, cost = { Mana = 20, }, }, - [13] = { levelRequirement = 52, cost = { Mana = 20, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 20, }, }, - [15] = { levelRequirement = 64, cost = { Mana = 20, }, }, - [16] = { levelRequirement = 66, cost = { Mana = 20, }, }, - [17] = { levelRequirement = 72, cost = { Mana = 20, }, }, - [18] = { levelRequirement = 78, cost = { Mana = 20, }, }, - [19] = { levelRequirement = 84, cost = { Mana = 20, }, }, - [20] = { cooldown = 8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [21] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [22] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [23] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [24] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [25] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [26] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [27] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [28] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [29] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [31] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [32] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [33] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [34] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [35] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [36] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [37] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [38] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [39] = { levelRequirement = 90, cost = { Mana = 20, }, }, - [40] = { levelRequirement = 90, cost = { Mana = 20, }, }, - }, - statSets = { - [1] = { - label = "Ritual Sacrifice", + label = "Explosion", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "ritual_sacrifice", + statDescriptionScope = "player_ranged_spear", baseFlags = { attack = true, + projectile = true, area = true, }, constantStats = { - { "head_hunt_%_life_to_remove_on_self_stab", 20 }, { "movement_speed_+%_final_while_performing_action", -70 }, { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "main_hand_weapon_range_+", 105 }, + { "active_skill_base_area_of_effect_radius", 20 }, }, stats = { - "base_skill_effect_duration", + "base_is_projectile", + "projectile_uses_contact_position", + "projectile_uses_contact_direction", + "check_for_targets_between_initiator_and_projectile_source", "can_perform_skill_while_moving", - "quality_display_base_skill_effect_duration_is_gem", - }, - notMinionStat = { - "base_skill_effect_duration", + "has_modular_projectiles_enabled", + "is_area_damage", + "display_statset_hide_usage_stats", }, levels = { - [1] = { 82000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 84000, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 86000, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 88000, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 90000, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 92000, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 94000, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 96000, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 98000, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 100000, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 102000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 104000, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 106000, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 108000, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 110000, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 112000, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 114000, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 116000, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 118000, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 120000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 122000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 124000, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 126000, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 128000, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 130000, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 132000, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 134000, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 136000, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 138000, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 140000, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 141000, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 142000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 143000, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 144000, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 145000, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 146000, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 147000, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 148000, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 149000, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 150000, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 2.32, actorLevel = 1, }, + [2] = { baseMultiplier = 2.55, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 2.81, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 3.06, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 3.3, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 3.55, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 3.8, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 4.03, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 4.23, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 4.44, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 4.66, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 4.9, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 5.14, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 5.4, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 5.67, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 5.95, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 6.25, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 6.56, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 6.89, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 7.24, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 7.6, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 7.98, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 8.38, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 8.8, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 9.23, actorLevel = 136.875, }, + [26] = { baseMultiplier = 9.7, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 10.18, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 10.69, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 11.23, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 11.79, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 12.38, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 12.99, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 13.64, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 14.33, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 15.04, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 15.8, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 16.58, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 17.41, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 18.28, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 19.2, actorLevel = 288.29998779297, }, }, }, } } -skills["SummonFireDjinnPlayer"] = { - name = "Ruzhan, the Blazing Sword", - baseTypeName = "Ruzhan, the Blazing Sword", - icon = "Art/2DArt/SkillIcons/SorceressSummonFireDjinn.dds", - fromTree = true, - minionList = { - "FireDjinn", - }, +skills["SpiritVesselPlayer"] = { + name = "Spirit Vessel", + baseTypeName = "Spirit Vessel", + icon = "Art/2DArt/SkillIcons/TheAncientOrder.dds", + fromItem = true, color = 4, - description = "Summon Ruzhan, an invulnerable Flame Djinn Minion, to do your bidding. Ruzhan emerges to Strike enemies with his greatsword whenever you use a damaging Skill, and casts devastating Fire Spells when Commanded to do so.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Fire] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.MinionsAreUndamagable] = true, [SkillType.CommandableMinion] = true, [SkillType.ReserveInAllSets] = true, }, - minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Fire] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Duration] = true, [SkillType.Hazard] = true, [SkillType.Cooldown] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Cascadable] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Limit] = true, [SkillType.Attack] = true, }, - castTime = 0, + description = "Summons a Shapeshifting Spirit Vessel Companion that uses copies of socketed Bear, Werewolf, and Wyvern Skills.", + skillTypes = { [SkillType.Companion] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CreatesCompanion] = true, [SkillType.AttackInPlace] = true, [SkillType.Meta] = true, [SkillType.Persistent] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, }, + castTime = 1, qualityStats = { + { "active_skill_minion_life_+%_final", 1 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -6766,22 +15940,19 @@ skills["SummonFireDjinnPlayer"] = { }, statSets = { [1] = { - label = "Ruzhan, the Blazing Sword", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "summon_fire_djinn", + label = "Spirit Vessel", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", baseFlags = { }, constantStats = { + { "spirit_vessel_damage_+%_final_per_skill_socketed_in_meta_gem", 20 }, { "skill_desired_amount_override", 1 }, - { "djinn_damage_+%_final_per_number_of_damaging_skills_my_parent_has_used_recently", 10 }, - { "skill_specific_stat_description_mode", 1 }, }, stats = { + "ignore_talisman_inherent_form_restriction", + "ignore_shapeshift_talisman_requirement", "is_resummoning_minion", - "hide_minion_frame", - "active_skill_tracks_number_of_damaging_skills_recently_for_minions", - "display_statset_no_hit_damage", - "minion_is_not_interupted_when_replaced", }, levels = { [1] = { actorLevel = 1, }, @@ -6828,75 +15999,71 @@ skills["SummonFireDjinnPlayer"] = { }, } } -skills["CommandFireDjinnLivingBombPlayer"] = { - name = "Command: {0} ", +skills["SpiritVesselSupport"] = { + name = "SpiritVesselSupport", hidden = true, - icon = "Art/2DArt/SkillIcons/Rolldodge.dds", - fromTree = true, - skillTypes = { [SkillType.CommandsMinions] = true, [SkillType.UsableWhileMoving] = true, [SkillType.UsableWhileShapeshifted] = true, }, - castTime = 0.4, + fromItem = true, + support = true, + requireSkillTypes = { SkillType.Bear, SkillType.Wolf, SkillType.OR, SkillType.Wyvern, SkillType.OR, SkillType.Shapeshift, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.InbuiltTrigger, }, + ignoreMinionTypes = true, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, cost = { Mana = 2, }, }, - [2] = { levelRequirement = 0, cost = { Mana = 3, }, }, - [3] = { levelRequirement = 0, cost = { Mana = 4, }, }, - [4] = { levelRequirement = 0, cost = { Mana = 4, }, }, - [5] = { levelRequirement = 0, cost = { Mana = 5, }, }, - [6] = { levelRequirement = 0, cost = { Mana = 6, }, }, - [7] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [8] = { levelRequirement = 0, cost = { Mana = 7, }, }, - [9] = { levelRequirement = 0, cost = { Mana = 9, }, }, - [10] = { levelRequirement = 0, cost = { Mana = 10, }, }, - [11] = { levelRequirement = 0, cost = { Mana = 11, }, }, - [12] = { levelRequirement = 0, cost = { Mana = 12, }, }, - [13] = { levelRequirement = 0, cost = { Mana = 14, }, }, - [14] = { levelRequirement = 0, cost = { Mana = 15, }, }, - [15] = { levelRequirement = 0, cost = { Mana = 17, }, }, - [16] = { levelRequirement = 0, cost = { Mana = 19, }, }, - [17] = { levelRequirement = 0, cost = { Mana = 21, }, }, - [18] = { levelRequirement = 0, cost = { Mana = 24, }, }, - [19] = { levelRequirement = 0, cost = { Mana = 26, }, }, - [20] = { levelRequirement = 0, cost = { Mana = 29, }, }, - [21] = { levelRequirement = 0, cost = { Mana = 32, }, }, - [22] = { levelRequirement = 0, cost = { Mana = 36, }, }, - [23] = { levelRequirement = 0, cost = { Mana = 39, }, }, - [24] = { levelRequirement = 0, cost = { Mana = 43, }, }, - [25] = { levelRequirement = 0, cost = { Mana = 47, }, }, - [26] = { levelRequirement = 0, cost = { Mana = 52, }, }, - [27] = { levelRequirement = 0, cost = { Mana = 57, }, }, - [28] = { levelRequirement = 0, cost = { Mana = 63, }, }, - [29] = { levelRequirement = 0, cost = { Mana = 68, }, }, - [30] = { levelRequirement = 0, cost = { Mana = 75, }, }, - [31] = { levelRequirement = 0, cost = { Mana = 82, }, }, - [32] = { levelRequirement = 0, cost = { Mana = 90, }, }, - [33] = { levelRequirement = 0, cost = { Mana = 98, }, }, - [34] = { levelRequirement = 0, cost = { Mana = 107, }, }, - [35] = { levelRequirement = 0, cost = { Mana = 116, }, }, - [36] = { levelRequirement = 0, cost = { Mana = 127, }, }, - [37] = { levelRequirement = 0, cost = { Mana = 138, }, }, - [38] = { levelRequirement = 0, cost = { Mana = 151, }, }, - [39] = { levelRequirement = 0, cost = { Mana = 164, }, }, - [40] = { levelRequirement = 0, cost = { Mana = 178, }, }, + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 0, }, + [3] = { levelRequirement = 0, }, + [4] = { levelRequirement = 0, }, + [5] = { levelRequirement = 0, }, + [6] = { levelRequirement = 0, }, + [7] = { levelRequirement = 0, }, + [8] = { levelRequirement = 0, }, + [9] = { levelRequirement = 0, }, + [10] = { levelRequirement = 0, }, + [11] = { levelRequirement = 0, }, + [12] = { levelRequirement = 0, }, + [13] = { levelRequirement = 0, }, + [14] = { levelRequirement = 0, }, + [15] = { levelRequirement = 0, }, + [16] = { levelRequirement = 0, }, + [17] = { levelRequirement = 0, }, + [18] = { levelRequirement = 0, }, + [19] = { levelRequirement = 0, }, + [20] = { levelRequirement = 0, }, + [21] = { levelRequirement = 0, }, + [22] = { levelRequirement = 0, }, + [23] = { levelRequirement = 0, }, + [24] = { levelRequirement = 0, }, + [25] = { levelRequirement = 0, }, + [26] = { levelRequirement = 0, }, + [27] = { levelRequirement = 0, }, + [28] = { levelRequirement = 0, }, + [29] = { levelRequirement = 0, }, + [30] = { levelRequirement = 0, }, + [31] = { levelRequirement = 0, }, + [32] = { levelRequirement = 0, }, + [33] = { levelRequirement = 0, }, + [34] = { levelRequirement = 0, }, + [35] = { levelRequirement = 0, }, + [36] = { levelRequirement = 0, }, + [37] = { levelRequirement = 0, }, + [38] = { levelRequirement = 0, }, + [39] = { levelRequirement = 0, }, + [40] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "Command", + label = "SpiritVesselSupport", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "meta_gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - }, stats = { - "minions_do_not_move_to_skill_target", - "can_perform_skill_while_moving", - "skill_is_command", - "base_deal_no_damage", - "command_minion_does_not_interrupt", + "ignore_talisman_inherent_form_restriction", + "ignore_shapeshift_talisman_requirement", + "disable_all_skill_indicators", + "skill_unusable", }, levels = { [1] = { actorLevel = 1, }, @@ -6926,241 +16093,111 @@ skills["CommandFireDjinnLivingBombPlayer"] = { [25] = { actorLevel = 136.875, }, [26] = { actorLevel = 145.38800048828, }, [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["ShatteringConcoctionPlayer"] = { - name = "Shattering Concoction", - baseTypeName = "Shattering Concoction", - 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.", - 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, - }, - castTime = 1, - qualityStats = { - { "freeze_duration_+%", 1 }, - }, - levels = { - [1] = { attackSpeedMultiplier = -15, baseMultiplier = 0.7, critChance = 11, levelRequirement = 0, cost = { Mana = 0, }, }, - [2] = { attackSpeedMultiplier = -15, baseMultiplier = 0.77, critChance = 11, levelRequirement = 3, cost = { Mana = 0, }, }, - [3] = { attackSpeedMultiplier = -15, baseMultiplier = 0.84, critChance = 11, levelRequirement = 6, cost = { Mana = 0, }, }, - [4] = { attackSpeedMultiplier = -15, baseMultiplier = 0.92, critChance = 11, levelRequirement = 10, cost = { Mana = 0, }, }, - [5] = { attackSpeedMultiplier = -15, baseMultiplier = 0.99, critChance = 11, levelRequirement = 14, cost = { Mana = 0, }, }, - [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.05, critChance = 11, levelRequirement = 18, cost = { Mana = 0, }, }, - [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.12, critChance = 11, levelRequirement = 22, cost = { Mana = 0, }, }, - [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.18, critChance = 11, levelRequirement = 26, cost = { Mana = 0, }, }, - [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.23, critChance = 11, levelRequirement = 31, cost = { Mana = 0, }, }, - [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.28, critChance = 11, levelRequirement = 36, cost = { Mana = 0, }, }, - [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.34, critChance = 11, levelRequirement = 41, cost = { Mana = 0, }, }, - [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.39, critChance = 11, levelRequirement = 46, cost = { Mana = 0, }, }, - [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.44, critChance = 11, levelRequirement = 52, cost = { Mana = 0, }, }, - [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.5, critChance = 11, levelRequirement = 58, cost = { Mana = 0, }, }, - [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.55, critChance = 11, levelRequirement = 64, cost = { Mana = 0, }, }, - [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.61, critChance = 11, levelRequirement = 66, cost = { Mana = 0, }, }, - [17] = { attackSpeedMultiplier = -15, baseMultiplier = 1.67, critChance = 11, levelRequirement = 72, cost = { Mana = 0, }, }, - [18] = { attackSpeedMultiplier = -15, baseMultiplier = 1.73, critChance = 11, levelRequirement = 78, cost = { Mana = 0, }, }, - [19] = { attackSpeedMultiplier = -15, baseMultiplier = 1.79, critChance = 11, levelRequirement = 84, cost = { Mana = 0, }, }, - [20] = { attackSpeedMultiplier = -15, baseMultiplier = 1.85, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [21] = { attackSpeedMultiplier = -15, baseMultiplier = 1.91, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [22] = { attackSpeedMultiplier = -15, baseMultiplier = 1.97, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.04, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.1, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.17, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.24, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.32, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.4, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.48, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.56, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.64, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.73, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.82, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.91, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [35] = { attackSpeedMultiplier = -15, baseMultiplier = 3.01, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [36] = { attackSpeedMultiplier = -15, baseMultiplier = 3.11, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [37] = { attackSpeedMultiplier = -15, baseMultiplier = 3.21, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [38] = { attackSpeedMultiplier = -15, baseMultiplier = 3.32, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [39] = { attackSpeedMultiplier = -15, baseMultiplier = 3.43, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - [40] = { attackSpeedMultiplier = -15, baseMultiplier = 3.55, critChance = 11, levelRequirement = 90, cost = { Mana = 0, }, }, - }, - statSets = { - [1] = { - label = "Shattering Concoction", - baseEffectiveness = 3.9000000953674, - incrementalEffectiveness = 0.27349999547005, - statDescriptionScope = "shattering_concoction", - baseFlags = { - attack = true, - projectile = true, - duration = true, - unarmed = true, - area = true, - }, - constantStats = { - { "flask_throw_base_charges_used", 5 }, - { "base_number_of_projectiles", 1 }, - { "active_skill_base_area_of_effect_radius", 18 }, - { "throw_flask_effects_type", 1 }, - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_base_weapon_attack_duration_ms", 714 }, - }, - stats = { - "main_hand_weapon_minimum_cold_damage", - "main_hand_weapon_maximum_cold_damage", - "base_is_projectile", - "projectile_behaviour_only_explode", - "can_perform_skill_while_moving", - "replace_main_hand_unarmed_attack_stats_with_nothing_type", - "is_area_damage", - "has_freeze_cull", - "inflict_all_exposure_on_hit", - "active_skill_show_freeze_range", - }, - levels = { - [1] = { 12, 18, statInterpolation = { 1, 1, }, actorLevel = 1, }, - [2] = { 20, 30, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, - [3] = { 31, 47, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, - [4] = { 43, 64, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, - [5] = { 55, 83, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, - [6] = { 69, 103, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, - [7] = { 83, 124, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, - [8] = { 97, 146, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, - [9] = { 113, 169, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, - [10] = { 129, 194, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, - [11] = { 146, 219, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, - [12] = { 164, 246, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, - [13] = { 182, 274, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, - [14] = { 202, 302, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, - [15] = { 222, 332, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, - [16] = { 242, 363, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, - [17] = { 264, 396, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, - [18] = { 286, 429, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, - [19] = { 309, 463, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 333, 499, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 357, 536, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 382, 574, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 408, 613, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 435, 653, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 463, 694, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 491, 736, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 520, 780, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 550, 824, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 580, 870, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 611, 917, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 643, 965, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 676, 1014, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 709, 1064, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 744, 1115, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 779, 1168, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 814, 1221, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 851, 1276, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 888, 1332, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 926, 1389, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 965, 1447, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["WolfShredPlayer"] = { - name = "Shred", - baseTypeName = "Shred", - icon = "Art/2DArt/SkillIcons/DruidFrozenClaws.dds", +skills["StarbornOnslaughtPlayer"] = { + name = "Starborn Onslaught", + baseTypeName = "Starborn Onslaught", + icon = "Art/2DArt/SkillIcons/HimindrygrSkillIcon.dds", fromItem = true, color = 4, - description = "Shapeshift into a Werewolf and lash out with a flurry of claw swipes. The first Attack can dash to faraway enemies and the final Attack Strikes twice. Attacking a Frozen enemy will create Ice Fragments, which are Projectiles that land and explode after a short delay.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Shapeshift] = true, [SkillType.Wolf] = true, [SkillType.PerformsFinalStrike] = true, }, + description = "Build up Glory by Freezing or Chilling enemies. When you have maximum Glory you may jump backwards loosing your Mace with the force of a falling comet onto your target. The impact releases Fissures and causes stars to fall in the area for a brief period.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Slam] = true, [SkillType.Cold] = true, [SkillType.Physical] = true, [SkillType.CreatesFissure] = true, [SkillType.Duration] = true, }, weaponTypes = { - ["Talisman"] = true, + ["Two Hand Mace"] = true, }, castTime = 1, qualityStats = { - { "active_skill_attack_speed_+%_final", 0.5 }, - }, - levels = { - [1] = { attackSpeedMultiplier = 100, baseMultiplier = 0.4, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = 100, baseMultiplier = 0.44, levelRequirement = 3, }, - [3] = { attackSpeedMultiplier = 100, baseMultiplier = 0.48, levelRequirement = 6, }, - [4] = { attackSpeedMultiplier = 100, baseMultiplier = 0.53, levelRequirement = 10, }, - [5] = { attackSpeedMultiplier = 100, baseMultiplier = 0.57, levelRequirement = 14, }, - [6] = { attackSpeedMultiplier = 100, baseMultiplier = 0.61, levelRequirement = 18, }, - [7] = { attackSpeedMultiplier = 100, baseMultiplier = 0.66, levelRequirement = 22, }, - [8] = { attackSpeedMultiplier = 100, baseMultiplier = 0.69, levelRequirement = 26, }, - [9] = { attackSpeedMultiplier = 100, baseMultiplier = 0.73, levelRequirement = 31, }, - [10] = { attackSpeedMultiplier = 100, baseMultiplier = 0.77, levelRequirement = 36, }, - [11] = { attackSpeedMultiplier = 100, baseMultiplier = 0.8, levelRequirement = 41, }, - [12] = { attackSpeedMultiplier = 100, baseMultiplier = 0.84, levelRequirement = 46, }, - [13] = { attackSpeedMultiplier = 100, baseMultiplier = 0.89, levelRequirement = 52, }, - [14] = { attackSpeedMultiplier = 100, baseMultiplier = 0.93, levelRequirement = 58, }, - [15] = { attackSpeedMultiplier = 100, baseMultiplier = 0.98, levelRequirement = 64, }, - [16] = { attackSpeedMultiplier = 100, baseMultiplier = 1.03, levelRequirement = 66, }, - [17] = { attackSpeedMultiplier = 100, baseMultiplier = 1.08, levelRequirement = 72, }, - [18] = { attackSpeedMultiplier = 100, baseMultiplier = 1.13, levelRequirement = 78, }, - [19] = { attackSpeedMultiplier = 100, baseMultiplier = 1.19, levelRequirement = 84, }, - [20] = { attackSpeedMultiplier = 100, baseMultiplier = 1.25, levelRequirement = 90, }, - [21] = { attackSpeedMultiplier = 100, baseMultiplier = 1.31, levelRequirement = 90, }, - [22] = { attackSpeedMultiplier = 100, baseMultiplier = 1.38, levelRequirement = 90, }, - [23] = { attackSpeedMultiplier = 100, baseMultiplier = 1.44, levelRequirement = 90, }, - [24] = { attackSpeedMultiplier = 100, baseMultiplier = 1.52, levelRequirement = 90, }, - [25] = { attackSpeedMultiplier = 100, baseMultiplier = 1.59, levelRequirement = 90, }, - [26] = { attackSpeedMultiplier = 100, baseMultiplier = 1.67, levelRequirement = 90, }, - [27] = { attackSpeedMultiplier = 100, baseMultiplier = 1.76, levelRequirement = 90, }, - [28] = { attackSpeedMultiplier = 100, baseMultiplier = 1.84, levelRequirement = 90, }, - [29] = { attackSpeedMultiplier = 100, baseMultiplier = 1.94, levelRequirement = 90, }, - [30] = { attackSpeedMultiplier = 100, baseMultiplier = 2.03, levelRequirement = 90, }, - [31] = { attackSpeedMultiplier = 100, baseMultiplier = 2.13, levelRequirement = 90, }, - [32] = { attackSpeedMultiplier = 100, baseMultiplier = 2.24, levelRequirement = 90, }, - [33] = { attackSpeedMultiplier = 100, baseMultiplier = 2.35, levelRequirement = 90, }, - [34] = { attackSpeedMultiplier = 100, baseMultiplier = 2.47, levelRequirement = 90, }, - [35] = { attackSpeedMultiplier = 100, baseMultiplier = 2.59, levelRequirement = 90, }, - [36] = { attackSpeedMultiplier = 100, baseMultiplier = 2.72, levelRequirement = 90, }, - [37] = { attackSpeedMultiplier = 100, baseMultiplier = 2.86, levelRequirement = 90, }, - [38] = { attackSpeedMultiplier = 100, baseMultiplier = 3, levelRequirement = 90, }, - [39] = { attackSpeedMultiplier = 100, baseMultiplier = 3.15, levelRequirement = 90, }, - [40] = { attackSpeedMultiplier = 100, baseMultiplier = 3.31, levelRequirement = 90, }, + { "empyrean_descent_number_of_explosions", 0.2 }, + }, + levels = { + [1] = { baseMultiplier = 1.1, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 1.21, levelRequirement = 3, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 1.33, levelRequirement = 6, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 1.45, levelRequirement = 10, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 1.56, levelRequirement = 14, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 1.68, levelRequirement = 18, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 1.79, levelRequirement = 22, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 1.89, levelRequirement = 26, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 1.98, levelRequirement = 31, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 2.07, levelRequirement = 36, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 2.17, levelRequirement = 41, cost = { Mana = 0, }, }, + [12] = { baseMultiplier = 2.27, levelRequirement = 46, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 2.37, levelRequirement = 52, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 2.48, levelRequirement = 58, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 2.59, levelRequirement = 64, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 2.7, levelRequirement = 66, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 2.82, levelRequirement = 72, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 2.94, levelRequirement = 78, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 3.06, levelRequirement = 84, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 3.19, levelRequirement = 90, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 3.33, levelRequirement = 90, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 3.47, levelRequirement = 90, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 3.61, levelRequirement = 90, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 3.76, levelRequirement = 90, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 3.92, levelRequirement = 90, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 4.09, levelRequirement = 90, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 4.26, levelRequirement = 90, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 4.44, levelRequirement = 90, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 4.62, levelRequirement = 90, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 4.82, levelRequirement = 90, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 5.02, levelRequirement = 90, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 5.23, levelRequirement = 90, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 5.45, levelRequirement = 90, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 5.68, levelRequirement = 90, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 5.92, levelRequirement = 90, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 6.17, levelRequirement = 90, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 6.42, levelRequirement = 90, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 6.69, levelRequirement = 90, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 6.98, levelRequirement = 90, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 7.27, levelRequirement = 90, cost = { Mana = 0, }, }, }, statSets = { [1] = { - label = "Normal Strikes", + label = "Impact", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "shred", + statDescriptionScope = "starborn_onslaught_statset_0", baseFlags = { attack = true, - melee = true, area = true, + duration = true, }, constantStats = { - { "statset_index_for_third_animation_combo_index", 1 }, - { "statset_index_for_fourth_animation_combo_index", 1 }, - { "statset_index_for_fifth_animation_combo_index", 1 }, - { "statset_index_for_final_animation_combo_index", 2 }, - { "base_melee_dash_range", 40 }, - { "melee_conditional_step_distance", 10 }, - { "frozen_claws_dash_cooldown_ms", 1500 }, + { "total_attack_time_+_ms", 1200 }, + { "leap_slam_animation_distance_threshold", 200 }, + { "active_skill_base_area_of_effect_radius", 25 }, + { "empyrean_descent_number_of_explosions", 20 }, + { "active_skill_requires_X_glory", 20 }, + { "volcanic_fissure_base_maximum_number_of_fissures", 8 }, + { "base_number_of_fissures", 3 }, + { "base_skill_effect_duration", 8000 }, + { "attack_maximum_action_distance_+", 60 }, + { "active_skill_generates_mp_%_glory_per_freeze", 100 }, + { "empyrean_descent_secondary_explosions_initial_delay_ms", 300 }, + { "empyrean_descent_secondary_explosions_delay_ms", 300 }, + { "empyrean_descent_secondary_explosions_inner_radius", 20 }, + { "empyrean_descent_secondary_explosions_outer_radius", 60 }, + { "number_of_branching_fissures", 2 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 70 }, }, stats = { - "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", - "never_freeze", + "fissures_nova", }, levels = { [1] = { actorLevel = 1, }, @@ -7206,226 +16243,230 @@ skills["WolfShredPlayer"] = { }, }, [2] = { - label = "Fast Strikes", + label = "Star Fall", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "shred", + statDescriptionScope = "starborn_onslaught_statset_1", baseFlags = { attack = true, - melee = true, area = true, + duration = true, }, constantStats = { - { "statset_index_for_third_animation_combo_index", 1 }, - { "statset_index_for_fourth_animation_combo_index", 1 }, - { "statset_index_for_fifth_animation_combo_index", 1 }, - { "statset_index_for_final_animation_combo_index", 2 }, - { "base_melee_dash_range", 40 }, - { "melee_conditional_step_distance", 10 }, - { "frozen_claws_dash_cooldown_ms", 1500 }, - { "supplementary_stat_container_attack_speed_+%_final", 35 }, + { "total_attack_time_+_ms", 1200 }, + { "leap_slam_animation_distance_threshold", 200 }, + { "empyrean_descent_number_of_explosions", 20 }, + { "base_skill_effect_duration", 8000 }, + { "attack_maximum_action_distance_+", 60 }, + { "active_skill_generates_mp_%_glory_per_freeze", 100 }, + { "empyrean_descent_secondary_explosions_initial_delay_ms", 300 }, + { "empyrean_descent_secondary_explosions_delay_ms", 300 }, + { "empyrean_descent_secondary_explosions_inner_radius", 20 }, + { "empyrean_descent_secondary_explosions_outer_radius", 60 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, }, stats = { - "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", - "never_freeze", + "fissures_nova", }, levels = { - [1] = { baseMultiplier = 0.35, actorLevel = 1, }, - [2] = { baseMultiplier = 0.38, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.42, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.46, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.5, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.54, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.57, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 0.61, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 0.64, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 0.67, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 0.7, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 0.74, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 0.78, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 0.81, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 0.86, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 0.9, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 0.94, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 0.99, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.04, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.09, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.15, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 1.2, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 1.26, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 1.33, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 1.39, actorLevel = 136.875, }, - [26] = { baseMultiplier = 1.46, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 1.54, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 1.61, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 1.69, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 1.78, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 1.87, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 1.96, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 2.06, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 2.16, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 2.27, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 2.38, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 2.5, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 2.63, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 2.76, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 2.9, actorLevel = 288.29998779297, }, + [1] = { baseMultiplier = 1.1, actorLevel = 1, }, + [2] = { baseMultiplier = 1.21, actorLevel = 3.4519999027252, }, + [3] = { baseMultiplier = 1.33, actorLevel = 6.7670001983643, }, + [4] = { baseMultiplier = 1.45, actorLevel = 10.307999610901, }, + [5] = { baseMultiplier = 1.56, actorLevel = 14.074999809265, }, + [6] = { baseMultiplier = 1.68, actorLevel = 18.068000793457, }, + [7] = { baseMultiplier = 1.79, actorLevel = 22.287000656128, }, + [8] = { baseMultiplier = 1.89, actorLevel = 26.732000350952, }, + [9] = { baseMultiplier = 1.98, actorLevel = 31.40299987793, }, + [10] = { baseMultiplier = 2.07, actorLevel = 36.299999237061, }, + [11] = { baseMultiplier = 2.17, actorLevel = 41.423000335693, }, + [12] = { baseMultiplier = 2.27, actorLevel = 46.771999359131, }, + [13] = { baseMultiplier = 2.37, actorLevel = 52.34700012207, }, + [14] = { baseMultiplier = 2.48, actorLevel = 58.147998809814, }, + [15] = { baseMultiplier = 2.59, actorLevel = 64.175003051758, }, + [16] = { baseMultiplier = 2.7, actorLevel = 70.428001403809, }, + [17] = { baseMultiplier = 2.82, actorLevel = 76.906997680664, }, + [18] = { baseMultiplier = 2.94, actorLevel = 83.611999511719, }, + [19] = { baseMultiplier = 3.06, actorLevel = 90.542999267578, }, + [20] = { baseMultiplier = 3.19, actorLevel = 97.699996948242, }, + [21] = { baseMultiplier = 3.33, actorLevel = 105.08300018311, }, + [22] = { baseMultiplier = 3.47, actorLevel = 112.69200134277, }, + [23] = { baseMultiplier = 3.61, actorLevel = 120.52700042725, }, + [24] = { baseMultiplier = 3.76, actorLevel = 128.58799743652, }, + [25] = { baseMultiplier = 3.92, actorLevel = 136.875, }, + [26] = { baseMultiplier = 4.09, actorLevel = 145.38800048828, }, + [27] = { baseMultiplier = 4.26, actorLevel = 154.12699890137, }, + [28] = { baseMultiplier = 4.44, actorLevel = 163.09199523926, }, + [29] = { baseMultiplier = 4.62, actorLevel = 172.28300476074, }, + [30] = { baseMultiplier = 4.82, actorLevel = 181.69999694824, }, + [31] = { baseMultiplier = 5.02, actorLevel = 191.34300231934, }, + [32] = { baseMultiplier = 5.23, actorLevel = 201.21200561523, }, + [33] = { baseMultiplier = 5.45, actorLevel = 211.30700683594, }, + [34] = { baseMultiplier = 5.68, actorLevel = 221.62800598145, }, + [35] = { baseMultiplier = 5.92, actorLevel = 232.17500305176, }, + [36] = { baseMultiplier = 6.17, actorLevel = 242.94799804688, }, + [37] = { baseMultiplier = 6.42, actorLevel = 253.94700622559, }, + [38] = { baseMultiplier = 6.69, actorLevel = 265.17199707031, }, + [39] = { baseMultiplier = 6.98, actorLevel = 276.62298583984, }, + [40] = { baseMultiplier = 7.27, actorLevel = 288.29998779297, }, }, }, - [3] = { - label = "Final Strike", + } +} +skills["SupportStyrnsFerocity"] = { + name = "Styrn's Ferocity", + description = "Supports Shield Skills that Hit enemies, causing those Hits to Crush their targets, additionally causing any Physical Damage Hits against those targets while Crushed to Break their Armour.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.OR, SkillType.RequiresShield, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "ArmourBreak",}, + isLineage = true, + flavourText = {"Each knight who encountered Styrn challenged", "him to the traditional duel. One by one, he fought", "his way across all of Middengard... and beyond.", }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Styrn's Ferocity", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "shred", + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_knights_ferocity_crush_on_hit_ms"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + flag("Condition:Crushed", { type = "GlobalEffect", effectType = "Debuff" }) + }, + }, baseFlags = { - attack = true, - melee = true, - area = true, }, constantStats = { - { "statset_index_for_third_animation_combo_index", 1 }, - { "statset_index_for_fourth_animation_combo_index", 1 }, - { "statset_index_for_fifth_animation_combo_index", 1 }, - { "statset_index_for_final_animation_combo_index", 2 }, - { "base_melee_dash_range", 40 }, - { "melee_conditional_step_distance", 10 }, - { "frozen_claws_dash_cooldown_ms", 1500 }, - { "melee_range_+", 6 }, - { "melee_conditional_step_distance", 6 }, - { "supplementary_stat_container_attack_speed_+%_final", -55 }, + { "support_knights_ferocity_crush_on_hit_ms", 8000 }, + { "crushed_target_%_physical_damage_taken_as_armour_break", 10 }, }, stats = { - "frozen_claws_hits_trigger_ballistic_ice_chunks_vs_frozen_enemies", - "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", - "never_freeze", - "is_final_strike", }, levels = { - [1] = { baseMultiplier = 0.6, actorLevel = 1, }, - [2] = { baseMultiplier = 0.66, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 0.73, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 0.79, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 0.85, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 0.92, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 0.98, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 1.04, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 1.09, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 1.15, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 1.21, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 1.27, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 1.33, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 1.4, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 1.47, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 1.54, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 1.62, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 1.7, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 1.78, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 1.87, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 1.96, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 2.06, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 2.17, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 2.27, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 2.39, actorLevel = 136.875, }, - [26] = { baseMultiplier = 2.51, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 2.63, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 2.76, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 2.9, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 3.05, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 3.2, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 3.36, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 3.53, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 3.71, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 3.89, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 4.08, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 4.29, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 4.5, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 4.73, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 4.97, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 65, }, }, }, } } -skills["IceFragmentsPlayer"] = { - name = "Ice Fragments", - baseTypeName = "Ice Fragments", - icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", - fromItem = true, +skills["SupportStyrnsMountain"] = { + name = "Styrn's Mountain", + description = "Supports Skills that Raise your Shield causing your other melee skills to deal more damage if you block.", color = 4, - skillTypes = { [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.AttackInPlace] = true, }, - castTime = 1, - qualityStats = { - }, + support = true, + requireSkillTypes = { SkillType.ActiveBlock, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "StyrnsMountain",}, + isLineage = true, + flavourText = {"Bound by his oath to the Runefathers, Styrn the", "Indomitable refused to bow to Cadigan the First.", "His resistance laid the seeds for future defiance.", }, levels = { - [1] = { baseMultiplier = 0.45, levelRequirement = 0, }, - [2] = { baseMultiplier = 0.49, levelRequirement = 3, }, - [3] = { baseMultiplier = 0.54, levelRequirement = 6, }, - [4] = { baseMultiplier = 0.59, levelRequirement = 10, }, - [5] = { baseMultiplier = 0.64, levelRequirement = 14, }, - [6] = { baseMultiplier = 0.69, levelRequirement = 18, }, - [7] = { baseMultiplier = 0.74, levelRequirement = 22, }, - [8] = { baseMultiplier = 0.78, levelRequirement = 26, }, - [9] = { baseMultiplier = 0.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 0.86, levelRequirement = 36, }, - [11] = { baseMultiplier = 0.9, levelRequirement = 41, }, - [12] = { baseMultiplier = 0.95, levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { baseMultiplier = 1.05, levelRequirement = 58, }, - [15] = { baseMultiplier = 1.1, levelRequirement = 64, }, - [16] = { baseMultiplier = 1.15, levelRequirement = 66, }, - [17] = { baseMultiplier = 1.21, levelRequirement = 72, }, - [18] = { baseMultiplier = 1.27, levelRequirement = 78, }, - [19] = { baseMultiplier = 1.34, levelRequirement = 84, }, - [20] = { baseMultiplier = 1.4, levelRequirement = 90, }, - [21] = { baseMultiplier = 1.47, levelRequirement = 90, }, - [22] = { baseMultiplier = 1.55, levelRequirement = 90, }, - [23] = { baseMultiplier = 1.62, levelRequirement = 90, }, - [24] = { baseMultiplier = 1.71, levelRequirement = 90, }, - [25] = { baseMultiplier = 1.79, levelRequirement = 90, }, - [26] = { baseMultiplier = 1.88, levelRequirement = 90, }, - [27] = { baseMultiplier = 1.97, levelRequirement = 90, }, - [28] = { baseMultiplier = 2.07, levelRequirement = 90, }, - [29] = { baseMultiplier = 2.18, levelRequirement = 90, }, - [30] = { baseMultiplier = 2.29, levelRequirement = 90, }, - [31] = { baseMultiplier = 2.4, levelRequirement = 90, }, - [32] = { baseMultiplier = 2.52, levelRequirement = 90, }, - [33] = { baseMultiplier = 2.65, levelRequirement = 90, }, - [34] = { baseMultiplier = 2.78, levelRequirement = 90, }, - [35] = { baseMultiplier = 2.92, levelRequirement = 90, }, - [36] = { baseMultiplier = 3.06, levelRequirement = 90, }, - [37] = { baseMultiplier = 3.22, levelRequirement = 90, }, - [38] = { baseMultiplier = 3.38, levelRequirement = 90, }, - [39] = { baseMultiplier = 3.55, levelRequirement = 90, }, - [40] = { baseMultiplier = 3.72, levelRequirement = 90, }, + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Styrn's Mountain", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Styrn's Mountain" }, { type = "SkillType", skillType = SkillType.ActiveBlock, neg = true }, { type = "Condition", var = "BlockedRecently" }), + }, + }, + baseFlags = { + }, + constantStats = { + { "knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently", 20 }, + { "support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action", 50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["SummonInfernalHoundPlayer"] = { + name = "Summon Infernal Hound", + baseTypeName = "Summon Infernal Hound", + icon = "Art/2DArt/SkillIcons/WitchSummonInfernalFamiliar.dds", + fromTree = true, + minionList = { + "SummonedHellhound", + }, + color = 4, + description = "Activate to summon a Reviving Infernal Hound which Ignites enemies near it.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.Fire] = true, [SkillType.CreatesDemonMinion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, [SkillType.AttackInPlace] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_minion_life_+%_final", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Ice Fragments", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "ice_fragments", + label = "Summon Infernal Hound", + incrementalEffectiveness = 0.092720001935959, + statDescriptionScope = "summon_infernal_hound", baseFlags = { - attack = true, - projectile = true, - area = true, + spell = true, + minion = true, + duration = true, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 18 }, - { "active_skill_base_physical_damage_%_to_convert_to_cold", 100 }, - { "ballistic_ice_chunk_cone_angle", 100 }, - { "base_skill_detonation_time", 2500 }, - { "base_number_of_projectiles", 3 }, - { "ice_fragment_min_chunk_distance", 1 }, - { "ice_fragment_max_chunk_distance", 40 }, - { "active_skill_projectile_speed_+%_final", 60 }, + { "display_minion_monster_type", 8 }, + { "infernal_familiar_minion_burns_for_%_max_life", 20 }, + { "infernal_familiar_minion_burn_radius", 25 }, + { "skill_desired_amount_override", 1 }, }, stats = { - "base_is_projectile", - "ballistic_projectiles_always_bounce", - "triggerable_in_any_set", - "usable_while_shapeshifted", - "is_area_damage", - "projectiles_can_shotgun", - "triggered_by_primary_skill", + "is_resummoning_minion", }, levels = { [1] = { actorLevel = 1, }, @@ -7472,17 +16513,21 @@ skills["IceFragmentsPlayer"] = { }, } } -skills["SorceryWardPlayer"] = { - name = "Sorcery Ward", - baseTypeName = "Sorcery Ward", - icon = "Art/2DArt/SkillIcons/WitchunterSpellAegis.dds", +skills["SupportingFirePlayer"] = { + name = "Supporting Fire", + baseTypeName = "Supporting Fire", + icon = "Art/2DArt/SkillIcons/TacticianDeathFromAboveSkillIcon.dds", fromTree = true, + minionList = { + "TacticianMinion", + }, color = 4, - description = "Passively manifests a protective barrier which takes Elemental Damage from Hits for you until depleted. The barrier instantly recharges to its full value a short time after it stops taking damage or is fully depleted.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Aegis] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Buff] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.HasReservation] = true, [SkillType.AttackInPlace] = true, }, - castTime = 1, + description = "Recruit artillery Minions that take up positions behind you. They will lie in wait for your Command, then fire volleys of arrows at the target location.", + skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, }, + castTime = 0, qualityStats = { - { "aegis_unique_shield_max_value_from_%_armour_evasion", 0.25 }, + { "active_skill_minion_damage_+%_final", 1 }, }, levels = { [1] = { levelRequirement = 0, }, @@ -7528,144 +16573,339 @@ skills["SorceryWardPlayer"] = { }, statSets = { [1] = { - label = "Sorcery Ward", + label = "Minion Info", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + statMap = { + ["minion_1%_damage_+%_per_X_player_strength"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + }, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"] = { + mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), + div = 3, + }, + }, + baseFlags = { + minion = true, + duration = true, + }, + constantStats = { + { "minion_1%_damage_+%_per_X_player_strength", 1 }, + { "minion_1%_area_of_effect_+%_per_X_player_dexterity", 3 }, + { "skill_desired_amount_override", 1 }, + }, + stats = { + "display_statset_no_hit_damage", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportTangMazusThuriblePlayer"] = { + name = "Tangmazu's Thurible", + description = "Supports Skills which summon Companions causing them to be Gigantic and gain Evasion and Deflection based on your own.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Companion, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "HulkingMinions",}, + isLineage = true, + flavourText = {"In his roiling fog, their fear becomes form.", "Dark truths unveiled by a shroud. They see only", "their perception of him, and thus, he is remade.", }, + levels = { + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + }, + statSets = { + [1] = { + label = "Tangmazu's Thurible", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["companion_evasion_rating_+_per_10_summoner_evasion_rating"] = { + mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent" }) }), + }, + ["companion_deflection_rating_+_per_10_summoner_deflection_rating"] = { + mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent" }) }), + }, + }, + baseFlags = { + }, + constantStats = { + { "companion_evasion_rating_+_per_10_summoner_evasion_rating", 4 }, + { "companion_deflection_rating_+_per_10_summoner_deflection_rating", 4 }, + }, + stats = { + "companions_are_gigantic", + "companion_tangmazu_thurible_visual_effect", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TemperWeaponPlayer"] = { + name = "Temper Weapon", + baseTypeName = "Temper Weapon", + icon = "Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds", + fromTree = true, + color = 4, + description = "Channel to temper your main hand Melee Martial Weapon. Each hit of the hammer against the anvil Empowers subsequent Attacks to Combust when Hitting enemies.", + skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1.125, + qualityStats = { + { "skill_speed_+%", 1 }, + }, + levels = { + [1] = { cooldown = 5, levelRequirement = 0, storedUses = 1, cost = { ManaPerMinute = 174, }, }, + [2] = { cooldown = 5, levelRequirement = 3, storedUses = 1, cost = { ManaPerMinute = 201, }, }, + [3] = { cooldown = 5, levelRequirement = 6, storedUses = 1, cost = { ManaPerMinute = 231, }, }, + [4] = { cooldown = 5, levelRequirement = 10, storedUses = 1, cost = { ManaPerMinute = 262, }, }, + [5] = { cooldown = 5, levelRequirement = 14, storedUses = 1, cost = { ManaPerMinute = 296, }, }, + [6] = { cooldown = 5, levelRequirement = 18, storedUses = 1, cost = { ManaPerMinute = 332, }, }, + [7] = { cooldown = 5, levelRequirement = 22, storedUses = 1, cost = { ManaPerMinute = 371, }, }, + [8] = { cooldown = 5, levelRequirement = 26, storedUses = 1, cost = { ManaPerMinute = 412, }, }, + [9] = { cooldown = 5, levelRequirement = 31, storedUses = 1, cost = { ManaPerMinute = 456, }, }, + [10] = { cooldown = 5, levelRequirement = 36, storedUses = 1, cost = { ManaPerMinute = 503, }, }, + [11] = { cooldown = 5, levelRequirement = 41, storedUses = 1, cost = { ManaPerMinute = 553, }, }, + [12] = { cooldown = 5, levelRequirement = 46, storedUses = 1, cost = { ManaPerMinute = 606, }, }, + [13] = { cooldown = 5, levelRequirement = 52, storedUses = 1, cost = { ManaPerMinute = 663, }, }, + [14] = { cooldown = 5, levelRequirement = 58, storedUses = 1, cost = { ManaPerMinute = 724, }, }, + [15] = { cooldown = 5, levelRequirement = 64, storedUses = 1, cost = { ManaPerMinute = 789, }, }, + [16] = { cooldown = 5, levelRequirement = 66, storedUses = 1, cost = { ManaPerMinute = 857, }, }, + [17] = { cooldown = 5, levelRequirement = 72, storedUses = 1, cost = { ManaPerMinute = 930, }, }, + [18] = { cooldown = 5, levelRequirement = 78, storedUses = 1, cost = { ManaPerMinute = 1008, }, }, + [19] = { cooldown = 5, levelRequirement = 84, storedUses = 1, cost = { ManaPerMinute = 1091, }, }, + [20] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1179, }, }, + [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1272, }, }, + [22] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1371, }, }, + [23] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1476, }, }, + [24] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1588, }, }, + [25] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1706, }, }, + [26] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1831, }, }, + [27] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1964, }, }, + [28] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2105, }, }, + [29] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2254, }, }, + [30] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2412, }, }, + [31] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2580, }, }, + [32] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2757, }, }, + [33] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2944, }, }, + [34] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3143, }, }, + [35] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3352, }, }, + [36] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3574, }, }, + [37] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3809, }, }, + [38] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4057, }, }, + [39] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4319, }, }, + [40] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4596, }, }, + }, + preDamageFunc = function(activeSkill, output) + activeSkill.skillData.channelTimeMultiplier = activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:TemperWeaponStage") + end, + statSets = { + [1] = { + label = "Temper Weapon", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "sorcery_ward", + statDescriptionScope = "skill_stat_descriptions", statMap = { - ["aegis_unique_shield_max_value_from_%_armour_evasion"] = { - mod("ElementalAegisValue", "MAX", nil, 0, 0, { type = "Condition", var = "SorceryWard" }, { type = "Condition", var = "CeremonialAblution", neg = true }, { type = "PercentStat", statList = { "Armour", "Evasion" }, percent = 1 }, { type = "GlobalEffect", effectType = "Buff" }), - mod("AegisValue", "MAX", nil, 0, 0, { type = "Condition", var = "SorceryWard" }, { type = "Condition", var = "CeremonialAblution" }, { type = "PercentStat", statList = { "Armour", "Evasion" }, percent = 1 }, { type = "GlobalEffect", effectType = "Buff" }), + ["imbue_weapon_max_exerts"] = { + mod("Multiplier:TemperWeaponMaxStages", "BASE", nil), + div = 3, }, }, baseFlags = { + channelRelease = true, }, constantStats = { - { "skill_desired_amount_override", 1 }, - { "active_skill_display_aegis_variation", 4 }, - { "aegis_unique_shield_max_value_from_%_armour_evasion", 30 }, + { "imbue_weapon_max_exerts", 12 }, + { "channel_skill_end_animation_duration_override_ms", 83 }, + { "temper_weapon_empowers_per_strike", 3 }, }, stats = { - "aegis_recharge_delay_ms", "base_deal_no_damage", - "display_statset_hide_usage_stats", + "no_cost", }, levels = { - [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 7900, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 7800, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 7700, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 7600, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 7500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 7400, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 7300, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 7200, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 7100, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 7000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 6900, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 6800, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 6700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 6600, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 6500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 6400, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 6300, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 6200, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 6100, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 6000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5900, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5800, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5700, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5600, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 5500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 5400, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 5300, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 5200, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 5100, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 5050, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 5000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 4950, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 4900, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 4850, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 4800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 4750, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 4700, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 4650, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 4600, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["MeleeSpearOffHandPlayer"] = { - name = "Spear Stab", - baseTypeName = "Spear Stab", - icon = "Art/2DArt/SkillIcons/SpearDefaultSkill.dds", - fromItem = true, - color = 4, - description = "Strike with your Spear.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.AttackInPlace] = true, }, +skills["TemperWeaponCombustionPlayer"] = { + name = "Combust", + hidden = true, + icon = "Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds", + fromTree = true, + description = "Explode, dealing Fire damage in an area.", + skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, ["Spear"] = true, + ["Staff"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, }, - castTime = 1, + castTime = 0, qualityStats = { }, levels = { [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [2] = { baseMultiplier = 1.1, levelRequirement = 0, }, + [3] = { baseMultiplier = 1.21, levelRequirement = 0, }, + [4] = { baseMultiplier = 1.32, levelRequirement = 0, }, + [5] = { baseMultiplier = 1.43, levelRequirement = 0, }, + [6] = { baseMultiplier = 1.54, levelRequirement = 0, }, + [7] = { baseMultiplier = 1.66, levelRequirement = 0, }, + [8] = { baseMultiplier = 1.77, levelRequirement = 0, }, + [9] = { baseMultiplier = 1.87, levelRequirement = 0, }, + [10] = { baseMultiplier = 1.98, levelRequirement = 0, }, + [11] = { baseMultiplier = 2.09, levelRequirement = 0, }, + [12] = { baseMultiplier = 2.22, levelRequirement = 0, }, + [13] = { baseMultiplier = 2.35, levelRequirement = 0, }, + [14] = { baseMultiplier = 2.49, levelRequirement = 0, }, + [15] = { baseMultiplier = 2.65, levelRequirement = 0, }, + [16] = { baseMultiplier = 2.81, levelRequirement = 0, }, + [17] = { baseMultiplier = 2.99, levelRequirement = 0, }, + [18] = { baseMultiplier = 3.19, levelRequirement = 0, }, + [19] = { baseMultiplier = 3.4, levelRequirement = 0, }, + [20] = { baseMultiplier = 3.62, levelRequirement = 0, }, + [21] = { baseMultiplier = 3.86, levelRequirement = 0, }, + [22] = { baseMultiplier = 4.12, levelRequirement = 0, }, + [23] = { baseMultiplier = 4.4, levelRequirement = 0, }, + [24] = { baseMultiplier = 4.69, levelRequirement = 0, }, + [25] = { baseMultiplier = 5, levelRequirement = 0, }, + [26] = { baseMultiplier = 5.33, levelRequirement = 0, }, + [27] = { baseMultiplier = 5.69, levelRequirement = 0, }, + [28] = { baseMultiplier = 6.07, levelRequirement = 0, }, + [29] = { baseMultiplier = 6.47, levelRequirement = 0, }, + [30] = { baseMultiplier = 6.9, levelRequirement = 0, }, + [31] = { baseMultiplier = 7.36, levelRequirement = 0, }, + [32] = { baseMultiplier = 7.85, levelRequirement = 0, }, + [33] = { baseMultiplier = 8.38, levelRequirement = 0, }, + [34] = { baseMultiplier = 8.93, levelRequirement = 0, }, + [35] = { baseMultiplier = 9.53, levelRequirement = 0, }, + [36] = { baseMultiplier = 10.16, levelRequirement = 0, }, + [37] = { baseMultiplier = 10.84, levelRequirement = 0, }, + [38] = { baseMultiplier = 11.56, levelRequirement = 0, }, + [39] = { baseMultiplier = 12.33, levelRequirement = 0, }, + [40] = { baseMultiplier = 13.16, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Spear Stab", + label = "Combust", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "temper_weapon_combustion", baseFlags = { attack = true, - melee = true, area = true, }, constantStats = { - { "melee_conditional_step_distance", 15 }, + { "imbue_weapon_combust_trigger_chance_%", 100 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, }, stats = { "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", + "base_skill_show_average_damage_instead_of_dps", + "global_always_hit", }, levels = { [1] = { actorLevel = 1, }, @@ -7712,79 +16952,76 @@ skills["MeleeSpearOffHandPlayer"] = { }, } } -skills["MeleeSpearPlayer"] = { - name = "Spear Stab", - baseTypeName = "Spear Stab", - icon = "Art/2DArt/SkillIcons/TwoHandSpearDefaultSkill.dds", - fromItem = true, +skills["TemporalRiftPlayer"] = { + name = "Temporal Rift", + baseTypeName = "Temporal Rift", + icon = "Art/2DArt/SkillIcons/SorceressTemporalistTemporalRift.dds", + fromTree = true, color = 4, - description = "Strike with your Spear.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Spear] = true, [SkillType.AttackInPlace] = true, }, - weaponTypes = { - ["Spear"] = true, - }, - castTime = 1, + description = "While active, passively leaves afterimages of your recent past. Cast the Spell to return to the oldest afterimage, teleporting to that location and resetting your Life, Mana and Energy Shield to the values they had at the time. Removes any upcoming damage delayed by Phased Form on use.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.PersistentShowsCastTime] = true, [SkillType.FixedCastTime] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0.1, qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 3, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 6, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 10, }, - [5] = { baseMultiplier = 1.42, levelRequirement = 14, }, - [6] = { baseMultiplier = 1.53, levelRequirement = 18, }, - [7] = { baseMultiplier = 1.64, levelRequirement = 22, }, - [8] = { baseMultiplier = 1.74, levelRequirement = 26, }, - [9] = { baseMultiplier = 1.82, levelRequirement = 31, }, - [10] = { baseMultiplier = 1.91, levelRequirement = 36, }, - [11] = { baseMultiplier = 2.01, levelRequirement = 41, }, - [12] = { baseMultiplier = 2.11, levelRequirement = 46, }, - [13] = { baseMultiplier = 2.22, levelRequirement = 52, }, - [14] = { baseMultiplier = 2.33, levelRequirement = 58, }, - [15] = { baseMultiplier = 2.44, levelRequirement = 64, }, - [16] = { baseMultiplier = 2.57, levelRequirement = 66, }, - [17] = { baseMultiplier = 2.69, levelRequirement = 72, }, - [18] = { baseMultiplier = 2.83, levelRequirement = 78, }, - [19] = { baseMultiplier = 2.97, levelRequirement = 84, }, - [20] = { baseMultiplier = 3.12, levelRequirement = 90, }, - [21] = { baseMultiplier = 3.27, levelRequirement = 90, }, - [22] = { baseMultiplier = 3.44, levelRequirement = 90, }, - [23] = { baseMultiplier = 3.61, levelRequirement = 90, }, - [24] = { baseMultiplier = 3.79, levelRequirement = 90, }, - [25] = { baseMultiplier = 3.98, levelRequirement = 90, }, - [26] = { baseMultiplier = 4.18, levelRequirement = 90, }, - [27] = { baseMultiplier = 4.39, levelRequirement = 90, }, - [28] = { baseMultiplier = 4.61, levelRequirement = 90, }, - [29] = { baseMultiplier = 4.84, levelRequirement = 90, }, - [30] = { baseMultiplier = 5.08, levelRequirement = 90, }, - [31] = { baseMultiplier = 5.33, levelRequirement = 90, }, - [32] = { baseMultiplier = 5.6, levelRequirement = 90, }, - [33] = { baseMultiplier = 5.88, levelRequirement = 90, }, - [34] = { baseMultiplier = 6.18, levelRequirement = 90, }, - [35] = { baseMultiplier = 6.48, levelRequirement = 90, }, - [36] = { baseMultiplier = 6.81, levelRequirement = 90, }, - [37] = { baseMultiplier = 7.15, levelRequirement = 90, }, - [38] = { baseMultiplier = 7.51, levelRequirement = 90, }, - [39] = { baseMultiplier = 7.88, levelRequirement = 90, }, - [40] = { baseMultiplier = 8.28, levelRequirement = 90, }, + [1] = { cooldown = 7, levelRequirement = 0, storedUses = 1, }, + [2] = { cooldown = 6.9, levelRequirement = 3, storedUses = 1, }, + [3] = { cooldown = 6.8, levelRequirement = 6, storedUses = 1, }, + [4] = { cooldown = 6.7, levelRequirement = 10, storedUses = 1, }, + [5] = { cooldown = 6.6, levelRequirement = 14, storedUses = 1, }, + [6] = { cooldown = 6.5, levelRequirement = 18, storedUses = 1, }, + [7] = { cooldown = 6.4, levelRequirement = 22, storedUses = 1, }, + [8] = { cooldown = 6.3, levelRequirement = 26, storedUses = 1, }, + [9] = { cooldown = 6.2, levelRequirement = 31, storedUses = 1, }, + [10] = { cooldown = 6.1, levelRequirement = 36, storedUses = 1, }, + [11] = { cooldown = 6, levelRequirement = 41, storedUses = 1, }, + [12] = { cooldown = 5.9, levelRequirement = 46, storedUses = 1, }, + [13] = { cooldown = 5.8, levelRequirement = 52, storedUses = 1, }, + [14] = { cooldown = 5.7, levelRequirement = 58, storedUses = 1, }, + [15] = { cooldown = 5.6, levelRequirement = 64, storedUses = 1, }, + [16] = { cooldown = 5.5, levelRequirement = 66, storedUses = 1, }, + [17] = { cooldown = 5.4, levelRequirement = 72, storedUses = 1, }, + [18] = { cooldown = 5.3, levelRequirement = 78, storedUses = 1, }, + [19] = { cooldown = 5.2, levelRequirement = 84, storedUses = 1, }, + [20] = { cooldown = 5.1, levelRequirement = 90, storedUses = 1, }, + [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, }, + [22] = { cooldown = 4.9, levelRequirement = 90, storedUses = 1, }, + [23] = { cooldown = 4.8, levelRequirement = 90, storedUses = 1, }, + [24] = { cooldown = 4.7, levelRequirement = 90, storedUses = 1, }, + [25] = { cooldown = 4.6, levelRequirement = 90, storedUses = 1, }, + [26] = { cooldown = 4.5, levelRequirement = 90, storedUses = 1, }, + [27] = { cooldown = 4.4, levelRequirement = 90, storedUses = 1, }, + [28] = { cooldown = 4.3, levelRequirement = 90, storedUses = 1, }, + [29] = { cooldown = 4.2, levelRequirement = 90, storedUses = 1, }, + [30] = { cooldown = 4.1, levelRequirement = 90, storedUses = 1, }, + [31] = { cooldown = 4.05, levelRequirement = 90, storedUses = 1, }, + [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, + [33] = { cooldown = 3.95, levelRequirement = 90, storedUses = 1, }, + [34] = { cooldown = 3.9, levelRequirement = 90, storedUses = 1, }, + [35] = { cooldown = 3.85, levelRequirement = 90, storedUses = 1, }, + [36] = { cooldown = 3.8, levelRequirement = 90, storedUses = 1, }, + [37] = { cooldown = 3.75, levelRequirement = 90, storedUses = 1, }, + [38] = { cooldown = 3.7, levelRequirement = 90, storedUses = 1, }, + [39] = { cooldown = 3.65, levelRequirement = 90, storedUses = 1, }, + [40] = { cooldown = 3.6, levelRequirement = 90, storedUses = 1, }, }, statSets = { [1] = { - label = "Spear Stab", + label = "Temporal Rift", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "temporal_rift", baseFlags = { - attack = true, - melee = true, - area = true, }, - constantStats = { - { "melee_conditional_step_distance", 15 }, - { "melee_range_+", 4 }, + constantStats = { + { "skill_desired_amount_override", 1 }, + { "temporal_rift_snapshot_interval", 250 }, + { "temporal_rift_maximum_snapshots", 16 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { - "is_area_damage", - "precise_cursor_targeting_uses_contact_point_height_offset", + "spell_cast_time_cannot_be_modified", + "skill_cannot_be_stunned", }, levels = { [1] = { actorLevel = 1, }, @@ -7831,84 +17068,82 @@ skills["MeleeSpearPlayer"] = { }, } } -skills["SpearThrowPlayer"] = { - name = "Spear Throw", - baseTypeName = "Spear Throw", - icon = "Art/2DArt/SkillIcons/HuntressIceSpear.dds", +skills["TheStarsAnswerPlayer"] = { + name = "The Stars Answer", + baseTypeName = "The Stars Answer", + icon = "Art/2DArt/SkillIcons/Runeseeker.dds", fromItem = true, color = 4, - description = "Hurl your Spear with force. Consumes a Frenzy Charge if you have one to cause the Spear to explode at the end of its flight.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpeed] = true, [SkillType.RangedAttack] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Barrageable] = true, [SkillType.Spear] = true, [SkillType.UsableWhileMounted] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesFrenzyChargesOnUse] = true, [SkillType.Area] = true, }, - weaponTypes = { - ["Spear"] = true, - }, - castTime = 1, + description = "Leash the stars themselves by leveraging your vast magical power, repeatedly Triggering Starfall targeting an enemy in an area around you, or a random location in that area if no enemies can be targeted.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Physical] = true, [SkillType.UsableWhileShapeshifted] = true, }, + castTime = 2, qualityStats = { }, levels = { - [1] = { attackSpeedMultiplier = -30, baseMultiplier = 1.25, levelRequirement = 0, }, - [2] = { attackSpeedMultiplier = -30, baseMultiplier = 1.38, levelRequirement = 3, }, - [3] = { attackSpeedMultiplier = -30, baseMultiplier = 1.51, levelRequirement = 6, }, - [4] = { attackSpeedMultiplier = -30, baseMultiplier = 1.65, levelRequirement = 10, }, - [5] = { attackSpeedMultiplier = -30, baseMultiplier = 1.78, levelRequirement = 14, }, - [6] = { attackSpeedMultiplier = -30, baseMultiplier = 1.91, levelRequirement = 18, }, - [7] = { attackSpeedMultiplier = -30, baseMultiplier = 2.05, levelRequirement = 22, }, - [8] = { attackSpeedMultiplier = -30, baseMultiplier = 2.17, levelRequirement = 26, }, - [9] = { attackSpeedMultiplier = -30, baseMultiplier = 2.28, levelRequirement = 31, }, - [10] = { attackSpeedMultiplier = -30, baseMultiplier = 2.39, levelRequirement = 36, }, - [11] = { attackSpeedMultiplier = -30, baseMultiplier = 2.51, levelRequirement = 41, }, - [12] = { attackSpeedMultiplier = -30, baseMultiplier = 2.64, levelRequirement = 46, }, - [13] = { attackSpeedMultiplier = -30, baseMultiplier = 2.77, levelRequirement = 52, }, - [14] = { attackSpeedMultiplier = -30, baseMultiplier = 2.91, levelRequirement = 58, }, - [15] = { attackSpeedMultiplier = -30, baseMultiplier = 3.05, levelRequirement = 64, }, - [16] = { attackSpeedMultiplier = -30, baseMultiplier = 3.21, levelRequirement = 66, }, - [17] = { attackSpeedMultiplier = -30, baseMultiplier = 3.37, levelRequirement = 72, }, - [18] = { attackSpeedMultiplier = -30, baseMultiplier = 3.54, levelRequirement = 78, }, - [19] = { attackSpeedMultiplier = -30, baseMultiplier = 3.71, levelRequirement = 84, }, - [20] = { attackSpeedMultiplier = -30, baseMultiplier = 3.9, levelRequirement = 90, }, - [21] = { attackSpeedMultiplier = -30, baseMultiplier = 4.09, levelRequirement = 90, }, - [22] = { attackSpeedMultiplier = -30, baseMultiplier = 4.3, levelRequirement = 90, }, - [23] = { attackSpeedMultiplier = -30, baseMultiplier = 4.51, levelRequirement = 90, }, - [24] = { attackSpeedMultiplier = -30, baseMultiplier = 4.74, levelRequirement = 90, }, - [25] = { attackSpeedMultiplier = -30, baseMultiplier = 4.98, levelRequirement = 90, }, - [26] = { attackSpeedMultiplier = -30, baseMultiplier = 5.22, levelRequirement = 90, }, - [27] = { attackSpeedMultiplier = -30, baseMultiplier = 5.49, levelRequirement = 90, }, - [28] = { attackSpeedMultiplier = -30, baseMultiplier = 5.76, levelRequirement = 90, }, - [29] = { attackSpeedMultiplier = -30, baseMultiplier = 6.05, levelRequirement = 90, }, - [30] = { attackSpeedMultiplier = -30, baseMultiplier = 6.35, levelRequirement = 90, }, - [31] = { attackSpeedMultiplier = -30, baseMultiplier = 6.67, levelRequirement = 90, }, - [32] = { attackSpeedMultiplier = -30, baseMultiplier = 7, levelRequirement = 90, }, - [33] = { attackSpeedMultiplier = -30, baseMultiplier = 7.35, levelRequirement = 90, }, - [34] = { attackSpeedMultiplier = -30, baseMultiplier = 7.72, levelRequirement = 90, }, - [35] = { attackSpeedMultiplier = -30, baseMultiplier = 8.11, levelRequirement = 90, }, - [36] = { attackSpeedMultiplier = -30, baseMultiplier = 8.51, levelRequirement = 90, }, - [37] = { attackSpeedMultiplier = -30, baseMultiplier = 8.94, levelRequirement = 90, }, - [38] = { attackSpeedMultiplier = -30, baseMultiplier = 9.38, levelRequirement = 90, }, - [39] = { attackSpeedMultiplier = -30, baseMultiplier = 9.85, levelRequirement = 90, }, - [40] = { attackSpeedMultiplier = -30, baseMultiplier = 10.34, levelRequirement = 90, }, + [1] = { levelRequirement = 0, cost = { Mana = 10000, }, }, + [2] = { levelRequirement = 3, cost = { Mana = 10000, }, }, + [3] = { levelRequirement = 6, cost = { Mana = 10000, }, }, + [4] = { levelRequirement = 10, cost = { Mana = 10000, }, }, + [5] = { levelRequirement = 14, cost = { Mana = 10000, }, }, + [6] = { levelRequirement = 18, cost = { Mana = 10000, }, }, + [7] = { levelRequirement = 22, cost = { Mana = 10000, }, }, + [8] = { levelRequirement = 26, cost = { Mana = 10000, }, }, + [9] = { levelRequirement = 31, cost = { Mana = 10000, }, }, + [10] = { levelRequirement = 36, cost = { Mana = 10000, }, }, + [11] = { levelRequirement = 41, cost = { Mana = 10000, }, }, + [12] = { levelRequirement = 46, cost = { Mana = 10000, }, }, + [13] = { levelRequirement = 52, cost = { Mana = 10000, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 10000, }, }, + [15] = { levelRequirement = 64, cost = { Mana = 10000, }, }, + [16] = { levelRequirement = 66, cost = { Mana = 10000, }, }, + [17] = { levelRequirement = 72, cost = { Mana = 10000, }, }, + [18] = { levelRequirement = 78, cost = { Mana = 10000, }, }, + [19] = { levelRequirement = 84, cost = { Mana = 10000, }, }, + [20] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [21] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [22] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [23] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [24] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [25] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [26] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [27] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [28] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [29] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [31] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [32] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [33] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [34] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [35] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [36] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [37] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [38] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [39] = { levelRequirement = 90, cost = { Mana = 10000, }, }, + [40] = { levelRequirement = 90, cost = { Mana = 10000, }, }, }, statSets = { [1] = { - label = "Spear Throw", + label = "The Stars Answer", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "player_ranged_spear", + statDescriptionScope = "the_stars_answer", baseFlags = { - attack = true, - projectile = true, + spell = true, + duration = true, }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_weapon_range_+", 105 }, + { "active_skill_base_area_of_effect_radius", 80 }, + { "walking_calamity_spawn_meteor_every_ms", 300 }, + { "walking_calamity_large_meteor_every", 15 }, + { "walking_calamity_large_meteor_same_target_prevention_duration_ms", 2000 }, + { "walking_calamity_meteor_frequency_+%_per_enemy_in_walking_calamity_radius", 50 }, + { "walking_calamity_meteor_frequency_+%_cap", 200 }, + { "walking_calamity_ignore_first_x_enemies_for_frequency_increase", 1 }, + { "mana_required_to_activate_skill", 10000 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { - "base_is_projectile", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "can_perform_skill_while_moving", - "has_modular_projectiles_enabled", + "base_deal_no_damage", + "base_skill_show_average_damage_instead_of_dps", }, levels = { [1] = { actorLevel = 1, }, @@ -7953,153 +17188,291 @@ skills["SpearThrowPlayer"] = { [40] = { actorLevel = 288.29998779297, }, }, }, + } +} +skills["TheStarsAnswerCometPlayer"] = { + name = "Starfall", + hidden = true, + icon = "Art/2DArt/SkillIcons/Runeseeker.dds", + fromItem = true, + description = "A star falls at a targeted location, dealing area damage on impact. Larger stars leave Chilled Ground for a short duration.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, }, + castTime = 0, + qualityStats = { + { "base_skill_area_of_effect_+%", 1 }, + }, + levels = { + [1] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 8, levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Small Star", + baseEffectiveness = 1.6000000238419, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "the_stars_answer_comet", + baseFlags = { + spell = true, + area = true, + }, + baseMods = { + skill("hitTimeOverride", 0.3), + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 8 }, + }, + stats = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "is_area_damage", + "triggerable_in_any_set", + "base_skill_show_average_damage_instead_of_dps", + "display_statset_hide_usage_stats", + "triggered_by_walking_calamity", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 5, 7, 5, 7, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 11, 7, 11, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 16, 10, 16, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 21, 14, 21, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 18, 28, 18, 28, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 23, 35, 23, 35, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 29, 43, 29, 43, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 35, 53, 35, 53, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 42, 63, 42, 63, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 51, 76, 51, 76, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 60, 90, 60, 90, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 71, 106, 71, 106, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 83, 125, 83, 125, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 97, 146, 97, 146, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 114, 170, 114, 170, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 132, 199, 132, 199, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 154, 231, 154, 231, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 179, 268, 179, 268, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 207, 311, 207, 311, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 240, 361, 240, 361, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 279, 418, 279, 418, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 323, 484, 323, 484, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 374, 561, 374, 561, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 433, 650, 433, 650, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 502, 753, 502, 753, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 582, 873, 582, 873, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 676, 1013, 676, 1013, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 784, 1177, 784, 1177, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 912, 1367, 912, 1367, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1060, 1590, 1060, 1590, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1234, 1852, 1234, 1852, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1439, 2158, 1439, 2158, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1679, 2518, 1679, 2518, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1961, 2942, 1961, 2942, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2294, 3441, 2294, 3441, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2686, 4030, 2686, 4030, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3151, 4726, 3151, 4726, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 3700, 5551, 3700, 5551, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4352, 6528, 4352, 6528, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 5127, 7690, 5127, 7690, statInterpolation = { 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, [2] = { - label = "Explosion", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "player_ranged_spear", + label = "Large Star", + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "the_stars_answer_comet", baseFlags = { - attack = true, - projectile = true, + spell = true, area = true, }, + baseMods = { + skill("hitTimeOverride", 2), + }, constantStats = { - { "movement_speed_+%_final_while_performing_action", -70 }, - { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, - { "movement_speed_while_performing_action_locked_duration_%", 50 }, - { "main_hand_weapon_range_+", 105 }, - { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_area_of_effect_radius", 14 }, + { "base_skill_effect_duration", 5000 }, }, stats = { - "base_is_projectile", - "projectile_uses_contact_position", - "projectile_uses_contact_direction", - "check_for_targets_between_initiator_and_projectile_source", - "can_perform_skill_while_moving", - "has_modular_projectiles_enabled", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", "is_area_damage", + "triggerable_in_any_set", + "base_skill_show_average_damage_instead_of_dps", "display_statset_hide_usage_stats", + "triggered_by_walking_calamity", + }, + notMinionStat = { + "spell_minimum_base_cold_damage", + "spell_maximum_base_cold_damage", + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", }, levels = { - [1] = { baseMultiplier = 2.32, actorLevel = 1, }, - [2] = { baseMultiplier = 2.55, actorLevel = 3.4519999027252, }, - [3] = { baseMultiplier = 2.81, actorLevel = 6.7670001983643, }, - [4] = { baseMultiplier = 3.06, actorLevel = 10.307999610901, }, - [5] = { baseMultiplier = 3.3, actorLevel = 14.074999809265, }, - [6] = { baseMultiplier = 3.55, actorLevel = 18.068000793457, }, - [7] = { baseMultiplier = 3.8, actorLevel = 22.287000656128, }, - [8] = { baseMultiplier = 4.03, actorLevel = 26.732000350952, }, - [9] = { baseMultiplier = 4.23, actorLevel = 31.40299987793, }, - [10] = { baseMultiplier = 4.44, actorLevel = 36.299999237061, }, - [11] = { baseMultiplier = 4.66, actorLevel = 41.423000335693, }, - [12] = { baseMultiplier = 4.9, actorLevel = 46.771999359131, }, - [13] = { baseMultiplier = 5.14, actorLevel = 52.34700012207, }, - [14] = { baseMultiplier = 5.4, actorLevel = 58.147998809814, }, - [15] = { baseMultiplier = 5.67, actorLevel = 64.175003051758, }, - [16] = { baseMultiplier = 5.95, actorLevel = 70.428001403809, }, - [17] = { baseMultiplier = 6.25, actorLevel = 76.906997680664, }, - [18] = { baseMultiplier = 6.56, actorLevel = 83.611999511719, }, - [19] = { baseMultiplier = 6.89, actorLevel = 90.542999267578, }, - [20] = { baseMultiplier = 7.24, actorLevel = 97.699996948242, }, - [21] = { baseMultiplier = 7.6, actorLevel = 105.08300018311, }, - [22] = { baseMultiplier = 7.98, actorLevel = 112.69200134277, }, - [23] = { baseMultiplier = 8.38, actorLevel = 120.52700042725, }, - [24] = { baseMultiplier = 8.8, actorLevel = 128.58799743652, }, - [25] = { baseMultiplier = 9.23, actorLevel = 136.875, }, - [26] = { baseMultiplier = 9.7, actorLevel = 145.38800048828, }, - [27] = { baseMultiplier = 10.18, actorLevel = 154.12699890137, }, - [28] = { baseMultiplier = 10.69, actorLevel = 163.09199523926, }, - [29] = { baseMultiplier = 11.23, actorLevel = 172.28300476074, }, - [30] = { baseMultiplier = 11.79, actorLevel = 181.69999694824, }, - [31] = { baseMultiplier = 12.38, actorLevel = 191.34300231934, }, - [32] = { baseMultiplier = 12.99, actorLevel = 201.21200561523, }, - [33] = { baseMultiplier = 13.64, actorLevel = 211.30700683594, }, - [34] = { baseMultiplier = 14.33, actorLevel = 221.62800598145, }, - [35] = { baseMultiplier = 15.04, actorLevel = 232.17500305176, }, - [36] = { baseMultiplier = 15.8, actorLevel = 242.94799804688, }, - [37] = { baseMultiplier = 16.58, actorLevel = 253.94700622559, }, - [38] = { baseMultiplier = 17.41, actorLevel = 265.17199707031, }, - [39] = { baseMultiplier = 18.28, actorLevel = 276.62298583984, }, - [40] = { baseMultiplier = 19.2, actorLevel = 288.29998779297, }, + [1] = { 5, 7, 5, 7, 7, 11, 7, 11, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 1, }, + [2] = { 7, 11, 7, 11, 11, 16, 11, 16, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 16, 10, 16, 16, 24, 16, 24, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 14, 21, 14, 21, 21, 32, 21, 32, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 18, 28, 18, 28, 28, 41, 28, 41, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 23, 35, 23, 35, 35, 52, 35, 52, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 29, 43, 29, 43, 43, 65, 43, 65, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 35, 53, 35, 53, 53, 79, 53, 79, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 42, 63, 42, 63, 63, 95, 63, 95, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 51, 76, 51, 76, 76, 114, 76, 114, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 60, 90, 60, 90, 90, 135, 90, 135, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 71, 106, 71, 106, 106, 159, 106, 159, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 83, 125, 83, 125, 125, 187, 125, 187, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 97, 146, 97, 146, 146, 219, 146, 219, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 114, 170, 114, 170, 170, 256, 170, 256, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 132, 199, 132, 199, 199, 298, 199, 298, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 154, 231, 154, 231, 231, 346, 231, 346, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 179, 268, 179, 268, 268, 402, 268, 402, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 207, 311, 207, 311, 311, 467, 311, 467, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 240, 361, 240, 361, 361, 541, 361, 541, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 279, 418, 279, 418, 418, 627, 418, 627, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 323, 484, 323, 484, 484, 726, 484, 726, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 374, 561, 374, 561, 561, 841, 561, 841, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 433, 650, 433, 650, 650, 975, 650, 975, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 502, 753, 502, 753, 753, 1130, 753, 1130, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 582, 873, 582, 873, 873, 1310, 873, 1310, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 676, 1013, 676, 1013, 1013, 1520, 1013, 1520, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 784, 1177, 784, 1177, 1177, 1765, 1177, 1765, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 912, 1367, 912, 1367, 1367, 2051, 1367, 2051, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1060, 1590, 1060, 1590, 1590, 2386, 1590, 2386, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1234, 1852, 1234, 1852, 1852, 2777, 1852, 2777, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1439, 2158, 1439, 2158, 2158, 3237, 2158, 3237, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1679, 2518, 1679, 2518, 2518, 3777, 2518, 3777, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1961, 2942, 1961, 2942, 2942, 4412, 2942, 4412, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 2294, 3441, 2294, 3441, 3441, 5161, 3441, 5161, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 2686, 4030, 2686, 4030, 4030, 6045, 4030, 6045, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 3151, 4726, 3151, 4726, 4726, 7089, 4726, 7089, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 3700, 5551, 3700, 5551, 5551, 8326, 5551, 8326, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 4352, 6528, 4352, 6528, 6528, 9793, 6528, 9793, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 5127, 7690, 5127, 7690, 7690, 11535, 7690, 11535, critChance = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } -skills["SummonInfernalHoundPlayer"] = { - name = "Summon Infernal Hound", - baseTypeName = "Summon Infernal Hound", - icon = "Art/2DArt/SkillIcons/WitchSummonInfernalFamiliar.dds", +skills["TimeFreezePlayer"] = { + name = "Time Freeze", + baseTypeName = "Time Freeze", + icon = "Art/2DArt/SkillIcons/SorceressTemporalistTimeStop.dds", fromTree = true, - minionList = { - "SummonedHellhound", - }, color = 4, - description = "Activate to summon a Reviving Infernal Hound which Ignites enemies near it.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Persistent] = true, [SkillType.Fire] = true, [SkillType.CreatesDemonMinion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.HasReservation] = true, [SkillType.Companion] = true, [SkillType.CreatesCompanion] = true, [SkillType.AttackInPlace] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, }, - castTime = 0, - qualityStats = { - { "active_skill_minion_life_+%_final", 1 }, - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + description = "Release a large wave that stops time for all affected enemies for a duration. Duration is lower the more times the enemy has had time stopped for them.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0.7, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + levels = { + [1] = { cooldown = 65, levelRequirement = 0, storedUses = 1, cost = { Mana = 20, }, }, + [2] = { cooldown = 64.5, levelRequirement = 3, storedUses = 1, cost = { Mana = 20, }, }, + [3] = { cooldown = 64, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, + [4] = { cooldown = 63.5, levelRequirement = 10, storedUses = 1, cost = { Mana = 20, }, }, + [5] = { cooldown = 63, levelRequirement = 14, storedUses = 1, cost = { Mana = 20, }, }, + [6] = { cooldown = 62.5, levelRequirement = 18, storedUses = 1, cost = { Mana = 20, }, }, + [7] = { cooldown = 62, levelRequirement = 22, storedUses = 1, cost = { Mana = 20, }, }, + [8] = { cooldown = 61.5, levelRequirement = 26, storedUses = 1, cost = { Mana = 20, }, }, + [9] = { cooldown = 61, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, + [10] = { cooldown = 60.5, levelRequirement = 36, storedUses = 1, cost = { Mana = 20, }, }, + [11] = { cooldown = 60, levelRequirement = 41, storedUses = 1, cost = { Mana = 20, }, }, + [12] = { cooldown = 59.5, levelRequirement = 46, storedUses = 1, cost = { Mana = 20, }, }, + [13] = { cooldown = 59, levelRequirement = 52, storedUses = 1, cost = { Mana = 20, }, }, + [14] = { cooldown = 58.5, levelRequirement = 58, storedUses = 1, cost = { Mana = 20, }, }, + [15] = { cooldown = 58, levelRequirement = 64, storedUses = 1, cost = { Mana = 20, }, }, + [16] = { cooldown = 57.5, levelRequirement = 66, storedUses = 1, cost = { Mana = 20, }, }, + [17] = { cooldown = 57, levelRequirement = 72, storedUses = 1, cost = { Mana = 20, }, }, + [18] = { cooldown = 56.5, levelRequirement = 78, storedUses = 1, cost = { Mana = 20, }, }, + [19] = { cooldown = 56, levelRequirement = 84, storedUses = 1, cost = { Mana = 20, }, }, + [20] = { cooldown = 55.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [21] = { cooldown = 55, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [22] = { cooldown = 54.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [23] = { cooldown = 54, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [24] = { cooldown = 53.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [25] = { cooldown = 53, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [26] = { cooldown = 52.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [27] = { cooldown = 52, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [28] = { cooldown = 51.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [29] = { cooldown = 51, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [30] = { cooldown = 50.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [31] = { cooldown = 50.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [32] = { cooldown = 50, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [33] = { cooldown = 49.75, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [34] = { cooldown = 49.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [35] = { cooldown = 49.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [36] = { cooldown = 49, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [37] = { cooldown = 48.75, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [38] = { cooldown = 48.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [39] = { cooldown = 48.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [40] = { cooldown = 48, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, }, statSets = { [1] = { - label = "Summon Infernal Hound", - incrementalEffectiveness = 0.092720001935959, - statDescriptionScope = "summon_infernal_hound", + label = "Time Freeze", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "time_freeze", baseFlags = { - spell = true, - minion = true, + area = true, duration = true, }, constantStats = { - { "display_minion_monster_type", 8 }, - { "infernal_familiar_minion_burns_for_%_max_life", 20 }, - { "infernal_familiar_minion_burn_radius", 25 }, - { "skill_desired_amount_override", 1 }, + { "base_skill_effect_duration", 3000 }, + { "active_skill_base_area_of_effect_radius", 100 }, + { "time_freeze_resistance_duration_ms", 30000 }, }, stats = { - "is_resummoning_minion", + "cannot_cancel_skill_before_contact_point", }, levels = { [1] = { actorLevel = 1, }, @@ -8146,89 +17519,68 @@ skills["SummonInfernalHoundPlayer"] = { }, } } -skills["SupportingFirePlayer"] = { - name = "Supporting Fire", - baseTypeName = "Supporting Fire", - icon = "Art/2DArt/SkillIcons/TacticianDeathFromAboveSkillIcon.dds", +skills["TimeSnapPlayer"] = { + name = "Time Snap", + baseTypeName = "Time Snap", + icon = "Art/2DArt/SkillIcons/SorceressTemporalistReloadCooldown.dds", fromTree = true, - minionList = { - "TacticianMinion", - }, color = 4, - description = "Recruit artillery Minions that takes up positions behind you. They will lay in wait for your Command then fire volleys of arrows at the target location.", - skillTypes = { [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CommandableMinion] = true, [SkillType.MinionsAreUndamagable] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, [SkillType.Cooldown] = true, [SkillType.CannotChain] = true, [SkillType.GroundTargetedProjectile] = true, [SkillType.ProjectileNoCollision] = true, }, - castTime = 0, + description = "Manipulate time, resetting the cooldowns of your other Skills.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, }, + castTime = 0.6, qualityStats = { - { "active_skill_minion_damage_+%_final", 1 }, + { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + [1] = { cooldown = 40, levelRequirement = 0, storedUses = 1, cost = { Mana = 20, }, }, + [2] = { cooldown = 39.6, levelRequirement = 3, storedUses = 1, cost = { Mana = 20, }, }, + [3] = { cooldown = 39.2, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, + [4] = { cooldown = 38.8, levelRequirement = 10, storedUses = 1, cost = { Mana = 20, }, }, + [5] = { cooldown = 38.4, levelRequirement = 14, storedUses = 1, cost = { Mana = 20, }, }, + [6] = { cooldown = 38, levelRequirement = 18, storedUses = 1, cost = { Mana = 20, }, }, + [7] = { cooldown = 37.6, levelRequirement = 22, storedUses = 1, cost = { Mana = 20, }, }, + [8] = { cooldown = 37.2, levelRequirement = 26, storedUses = 1, cost = { Mana = 20, }, }, + [9] = { cooldown = 36.8, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, + [10] = { cooldown = 36.4, levelRequirement = 36, storedUses = 1, cost = { Mana = 20, }, }, + [11] = { cooldown = 36, levelRequirement = 41, storedUses = 1, cost = { Mana = 20, }, }, + [12] = { cooldown = 35.6, levelRequirement = 46, storedUses = 1, cost = { Mana = 20, }, }, + [13] = { cooldown = 35.2, levelRequirement = 52, storedUses = 1, cost = { Mana = 20, }, }, + [14] = { cooldown = 34.8, levelRequirement = 58, storedUses = 1, cost = { Mana = 20, }, }, + [15] = { cooldown = 34.4, levelRequirement = 64, storedUses = 1, cost = { Mana = 20, }, }, + [16] = { cooldown = 34, levelRequirement = 66, storedUses = 1, cost = { Mana = 20, }, }, + [17] = { cooldown = 33.6, levelRequirement = 72, storedUses = 1, cost = { Mana = 20, }, }, + [18] = { cooldown = 33.2, levelRequirement = 78, storedUses = 1, cost = { Mana = 20, }, }, + [19] = { cooldown = 32.8, levelRequirement = 84, storedUses = 1, cost = { Mana = 20, }, }, + [20] = { cooldown = 32.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [21] = { cooldown = 32, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [22] = { cooldown = 31.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [23] = { cooldown = 31.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [24] = { cooldown = 30.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [25] = { cooldown = 30.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [26] = { cooldown = 30, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [27] = { cooldown = 29.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [28] = { cooldown = 29.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [29] = { cooldown = 28.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [30] = { cooldown = 28.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [31] = { cooldown = 28.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [32] = { cooldown = 28, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [33] = { cooldown = 27.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [34] = { cooldown = 27.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [35] = { cooldown = 27.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [36] = { cooldown = 27.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [37] = { cooldown = 27, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [38] = { cooldown = 26.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [39] = { cooldown = 26.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [40] = { cooldown = 26.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, }, statSets = { [1] = { - label = "Minion Info", + label = "Time Snap", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "skill_stat_descriptions", - statMap = { - ["minion_1%_damage_+%_per_X_player_strength"] = { - mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), - }, - ["minion_1%_area_of_effect_+%_per_X_player_dexterity"] = { - mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil, 0, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), - div = 3, - }, - }, baseFlags = { - minion = true, - duration = true, - }, - constantStats = { - { "minion_1%_damage_+%_per_X_player_strength", 1 }, - { "minion_1%_area_of_effect_+%_per_X_player_dexterity", 3 }, - { "skill_desired_amount_override", 1 }, }, stats = { - "display_statset_no_hit_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -8275,98 +17627,105 @@ skills["SupportingFirePlayer"] = { }, } } -skills["TemperWeaponPlayer"] = { - name = "Temper Weapon", - baseTypeName = "Temper Weapon", - icon = "Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds", - fromTree = true, +skills["SupportTrickstersShardPlayer"] = { + name = "Trickster's Shard", + description = "Supports non-instant Spells you cast yourself. Supported Spells will Trigger Fragment Self, creating a Fractured Mimic which will cast that Spell if you get enough of them.", color = 4, - description = "Channel to temper your main hand Melee Martial Weapon. Each hit of the hammer against the anvil Empowers subsequent Attacks to Combust when Hitting enemies.", - skillTypes = { [SkillType.Buff] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Channel] = true, [SkillType.Cooldown] = true, }, - weaponTypes = { - ["Claw"] = true, - ["Dagger"] = true, - ["Flail"] = true, - ["One Hand Axe"] = true, - ["One Hand Mace"] = true, - ["One Hand Sword"] = true, - ["Spear"] = true, - ["Staff"] = true, - ["Two Hand Axe"] = true, - ["Two Hand Mace"] = true, - ["Two Hand Sword"] = true, - }, - castTime = 1.125, - qualityStats = { - { "skill_speed_+%", 1 }, - }, + support = true, + requireSkillTypes = { SkillType.Spell, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Instant, }, + gemFamily = { "SpellEcho",}, + isLineage = true, + flavourText = {"They'd cast him out, declared him a dark omen. Their judgement", "rattled in his head. He'd no control over crops, or herds, but", "that mattered little. Upon his return, their fear was his weapon.", }, + ignoreMinionTypes = true, levels = { - [1] = { cooldown = 5, levelRequirement = 0, storedUses = 1, cost = { ManaPerMinute = 174, }, }, - [2] = { cooldown = 5, levelRequirement = 3, storedUses = 1, cost = { ManaPerMinute = 201, }, }, - [3] = { cooldown = 5, levelRequirement = 6, storedUses = 1, cost = { ManaPerMinute = 231, }, }, - [4] = { cooldown = 5, levelRequirement = 10, storedUses = 1, cost = { ManaPerMinute = 262, }, }, - [5] = { cooldown = 5, levelRequirement = 14, storedUses = 1, cost = { ManaPerMinute = 296, }, }, - [6] = { cooldown = 5, levelRequirement = 18, storedUses = 1, cost = { ManaPerMinute = 332, }, }, - [7] = { cooldown = 5, levelRequirement = 22, storedUses = 1, cost = { ManaPerMinute = 371, }, }, - [8] = { cooldown = 5, levelRequirement = 26, storedUses = 1, cost = { ManaPerMinute = 412, }, }, - [9] = { cooldown = 5, levelRequirement = 31, storedUses = 1, cost = { ManaPerMinute = 456, }, }, - [10] = { cooldown = 5, levelRequirement = 36, storedUses = 1, cost = { ManaPerMinute = 503, }, }, - [11] = { cooldown = 5, levelRequirement = 41, storedUses = 1, cost = { ManaPerMinute = 553, }, }, - [12] = { cooldown = 5, levelRequirement = 46, storedUses = 1, cost = { ManaPerMinute = 606, }, }, - [13] = { cooldown = 5, levelRequirement = 52, storedUses = 1, cost = { ManaPerMinute = 663, }, }, - [14] = { cooldown = 5, levelRequirement = 58, storedUses = 1, cost = { ManaPerMinute = 724, }, }, - [15] = { cooldown = 5, levelRequirement = 64, storedUses = 1, cost = { ManaPerMinute = 789, }, }, - [16] = { cooldown = 5, levelRequirement = 66, storedUses = 1, cost = { ManaPerMinute = 857, }, }, - [17] = { cooldown = 5, levelRequirement = 72, storedUses = 1, cost = { ManaPerMinute = 930, }, }, - [18] = { cooldown = 5, levelRequirement = 78, storedUses = 1, cost = { ManaPerMinute = 1008, }, }, - [19] = { cooldown = 5, levelRequirement = 84, storedUses = 1, cost = { ManaPerMinute = 1091, }, }, - [20] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1179, }, }, - [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1272, }, }, - [22] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1371, }, }, - [23] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1476, }, }, - [24] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1588, }, }, - [25] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1706, }, }, - [26] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1831, }, }, - [27] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 1964, }, }, - [28] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2105, }, }, - [29] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2254, }, }, - [30] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2412, }, }, - [31] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2580, }, }, - [32] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2757, }, }, - [33] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 2944, }, }, - [34] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3143, }, }, - [35] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3352, }, }, - [36] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3574, }, }, - [37] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 3809, }, }, - [38] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4057, }, }, - [39] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4319, }, }, - [40] = { cooldown = 5, levelRequirement = 90, storedUses = 1, cost = { ManaPerMinute = 4596, }, }, + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Trickster's Shard", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "skill_used_by_fractured_mimic_spell_damage_+%_final", -50 }, + }, + stats = { + "support_tricksters_shard_trigger_fractured_self_on_cast", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredFracturedSelfPlayer"] = { + name = "Fragment Self", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + description = "Creates a Fractured Mimic of yourself, suspended in time at the point of casting the Triggering Spell. If you reach the Limit of Fractured Mimics, they will all finish casting their Spells and disappear.", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, [SkillType.Area] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, - preDamageFunc = function(activeSkill, output) - activeSkill.skillData.channelTimeMultiplier = activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:TemperWeaponStage") - end, statSets = { [1] = { - label = "Temper Weapon", + label = "Fragment Self", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", - statMap = { - ["imbue_weapon_max_exerts"] = { - mod("Multiplier:TemperWeaponMaxStages", "BASE", nil), - div = 3, - }, - }, + statDescriptionScope = "triggered_fractured_self", baseFlags = { - channelRelease = true, }, constantStats = { - { "imbue_weapon_max_exerts", 12 }, - { "channel_skill_end_animation_duration_override_ms", 83 }, - { "temper_weapon_empowers_per_strike", 3 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "support_tricksters_shard_maximum_active_mimics", 4 }, }, stats = { - "base_deal_no_damage", - "no_cost", + "skill_triggered_by_support_which_grants_it", }, levels = { [1] = { actorLevel = 1, }, @@ -8413,203 +17772,423 @@ skills["TemperWeaponPlayer"] = { }, } } -skills["TemperWeaponCombustionPlayer"] = { - name = "Combust", - hidden = true, - icon = "Art/2DArt/SkillIcons/SmithOfKitavaImbueWeaponSkillIcon.dds", - fromTree = true, - description = "Explode, dealing Fire damage in an area.", - skillTypes = { [SkillType.Fire] = true, [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, - weaponTypes = { - ["Claw"] = true, - ["Dagger"] = true, - ["Flail"] = true, - ["One Hand Axe"] = true, - ["One Hand Mace"] = true, - ["One Hand Sword"] = true, - ["Spear"] = true, - ["Staff"] = true, - ["Two Hand Axe"] = true, - ["Two Hand Mace"] = true, - ["Two Hand Sword"] = true, +skills["TriskelionCascadePlayer"] = { + name = "Triskelion Cascade", + baseTypeName = "Triskelion Cascade", + icon = "Art/2DArt/SkillIcons/ExpeditionTriskelionCascade.dds", + color = 4, + description = "Tap into the power of the Triskelion Flame to Empower the next Cascadable Spell you cast. The Empowered Spell becomes centred on your location, and Cascades to six areas around you in a Triskelion pattern.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Buff] = true, [SkillType.ModifiesNextSkill] = true, [SkillType.Duration] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.UsableWhileMoving] = true, }, + castTime = 0.45, + qualityStats = { + { "triskelion_cascade_next_skill_damage_+%_final", 0.5 }, + }, + levels = { + [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Ward = 20, }, }, + [2] = { cooldown = 1, levelRequirement = 3, storedUses = 1, cost = { Ward = 24, }, }, + [3] = { cooldown = 1, levelRequirement = 6, storedUses = 1, cost = { Ward = 28, }, }, + [4] = { cooldown = 1, levelRequirement = 10, storedUses = 1, cost = { Ward = 33, }, }, + [5] = { cooldown = 1, levelRequirement = 14, storedUses = 1, cost = { Ward = 38, }, }, + [6] = { cooldown = 1, levelRequirement = 18, storedUses = 1, cost = { Ward = 44, }, }, + [7] = { cooldown = 1, levelRequirement = 22, storedUses = 1, cost = { Ward = 49, }, }, + [8] = { cooldown = 1, levelRequirement = 26, storedUses = 1, cost = { Ward = 55, }, }, + [9] = { cooldown = 1, levelRequirement = 31, storedUses = 1, cost = { Ward = 61, }, }, + [10] = { cooldown = 1, levelRequirement = 36, storedUses = 1, cost = { Ward = 68, }, }, + [11] = { cooldown = 1, levelRequirement = 41, storedUses = 1, cost = { Ward = 75, }, }, + [12] = { cooldown = 1, levelRequirement = 46, storedUses = 1, cost = { Ward = 82, }, }, + [13] = { cooldown = 1, levelRequirement = 52, storedUses = 1, cost = { Ward = 90, }, }, + [14] = { cooldown = 1, levelRequirement = 58, storedUses = 1, cost = { Ward = 98, }, }, + [15] = { cooldown = 1, levelRequirement = 64, storedUses = 1, cost = { Ward = 106, }, }, + [16] = { cooldown = 1, levelRequirement = 66, storedUses = 1, cost = { Ward = 115, }, }, + [17] = { cooldown = 1, levelRequirement = 72, storedUses = 1, cost = { Ward = 124, }, }, + [18] = { cooldown = 1, levelRequirement = 78, storedUses = 1, cost = { Ward = 134, }, }, + [19] = { cooldown = 1, levelRequirement = 84, storedUses = 1, cost = { Ward = 144, }, }, + [20] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 155, }, }, + [21] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 166, }, }, + [22] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 177, }, }, + [23] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 190, }, }, + [24] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 202, }, }, + [25] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 216, }, }, + [26] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 230, }, }, + [27] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 244, }, }, + [28] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 260, }, }, + [29] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 276, }, }, + [30] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 293, }, }, + [31] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 310, }, }, + [32] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 329, }, }, + [33] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 348, }, }, + [34] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 368, }, }, + [35] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 389, }, }, + [36] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 410, }, }, + [37] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 433, }, }, + [38] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 457, }, }, + [39] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 482, }, }, + [40] = { cooldown = 1, levelRequirement = 90, storedUses = 1, cost = { Ward = 507, }, }, + }, + statSets = { + [1] = { + label = "Triskelion Cascade", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triskelion_cascade", + baseFlags = { + }, + constantStats = { + { "base_skill_effect_duration", 4000 }, + { "number_of_triskelion_cascades_for_next_skill", 2 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "triskelion_cascade_cooldown_%_of_cast_time", + "triskelion_cascade_next_skill_damage_+%_final", + "triskelion_cascade_next_skill_area_of_effect_+%_final", + "can_perform_skill_while_moving", + "base_deal_no_damage", + }, + levels = { + [1] = { 800, -30, -40, statInterpolation = { 1, 1, 1, }, actorLevel = 1, }, + [2] = { 760, -29, -40, statInterpolation = { 1, 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 720, -28, -39, statInterpolation = { 1, 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 690, -27, -39, statInterpolation = { 1, 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 650, -26, -38, statInterpolation = { 1, 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 620, -25, -38, statInterpolation = { 1, 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 590, -24, -37, statInterpolation = { 1, 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 560, -23, -37, statInterpolation = { 1, 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 530, -22, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 500, -21, -36, statInterpolation = { 1, 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 480, -20, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 450, -19, -35, statInterpolation = { 1, 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 430, -18, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 410, -17, -34, statInterpolation = { 1, 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 390, -16, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 370, -15, -33, statInterpolation = { 1, 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 350, -14, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 330, -13, -32, statInterpolation = { 1, 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 320, -12, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 300, -11, -31, statInterpolation = { 1, 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 290, -10, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 270, -9, -30, statInterpolation = { 1, 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 260, -8, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 240, -7, -29, statInterpolation = { 1, 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 230, -6, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 136.875, }, + [26] = { 220, -5, -28, statInterpolation = { 1, 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 210, -4, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 200, -3, -27, statInterpolation = { 1, 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 190, -2, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 180, -1, -26, statInterpolation = { 1, 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 180, 0, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 170, 1, -25, statInterpolation = { 1, 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 170, 2, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 160, 3, -24, statInterpolation = { 1, 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 160, 4, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 150, 5, -23, statInterpolation = { 1, 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 150, 6, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 150, 7, -22, statInterpolation = { 1, 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 140, 8, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 130, 9, -21, statInterpolation = { 1, 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportTulsAvalanche"] = { + name = "Tul's Avalanche", + description = "Supports Cascadable Spells you cast yourself, Sealing them when you Block, The Seals are broken when used, each making the Spell Echo. Cannot support skills with a Cooldown or which already gain Seals.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Cascadable, }, + addSkillTypes = { SkillType.HasSeals, SkillType.SupportedByTulsAvalanche, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.HasSeals, SkillType.SupportedByTulsAvalanche, SkillType.NOT, SkillType.AND, }, + gemFamily = { "SpellEcho","Seal",}, + isLineage = true, + flavourText = {"Then, there was movement. What once preserved them", "now pulled them free from their silence. In the", "absence of stillness, their screams echoed.", }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, }, + statSets = { + [1] = { + label = "Tul's Avalanche", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "base_maximum_seals_for_skill", 4 }, + { "skill_gain_seal_every_x_hits_blocked", 2 }, + { "skill_echoes_per_seal_broken", 1 }, + }, + stats = { + "base_skill_is_sealed_skill", + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["UnboundAvatarPlayer"] = { + name = "Unbound Avatar", + baseTypeName = "Unbound Avatar", + icon = "Art/2DArt/SkillIcons/MonkInvokerUnboundAvatar.dds", + fromTree = true, + color = 4, + description = "Gain Unbound Fury by inflicting Elemental Ailments with Hits on enemies. Once you reach maximum Unbound Fury, consume it to become Unbound for a duration, vastly augmenting your Elemental prowess.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, }, castTime = 0, qualityStats = { + { "base_skill_effect_duration", 50 }, + }, + levels = { + [1] = { cooldown = 12, levelRequirement = 0, storedUses = 1, }, + [2] = { cooldown = 12, levelRequirement = 3, storedUses = 1, }, + [3] = { cooldown = 12, levelRequirement = 6, storedUses = 1, }, + [4] = { cooldown = 12, levelRequirement = 10, storedUses = 1, }, + [5] = { cooldown = 12, levelRequirement = 14, storedUses = 1, }, + [6] = { cooldown = 12, levelRequirement = 18, storedUses = 1, }, + [7] = { cooldown = 12, levelRequirement = 22, storedUses = 1, }, + [8] = { cooldown = 12, levelRequirement = 26, storedUses = 1, }, + [9] = { cooldown = 12, levelRequirement = 31, storedUses = 1, }, + [10] = { cooldown = 12, levelRequirement = 36, storedUses = 1, }, + [11] = { cooldown = 12, levelRequirement = 41, storedUses = 1, }, + [12] = { cooldown = 12, levelRequirement = 46, storedUses = 1, }, + [13] = { cooldown = 12, levelRequirement = 52, storedUses = 1, }, + [14] = { cooldown = 12, levelRequirement = 58, storedUses = 1, }, + [15] = { cooldown = 12, levelRequirement = 64, storedUses = 1, }, + [16] = { cooldown = 12, levelRequirement = 66, storedUses = 1, }, + [17] = { cooldown = 12, levelRequirement = 72, storedUses = 1, }, + [18] = { cooldown = 12, levelRequirement = 78, storedUses = 1, }, + [19] = { cooldown = 12, levelRequirement = 84, storedUses = 1, }, + [20] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [21] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [22] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [23] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [24] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [25] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [26] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [27] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [28] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [29] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [30] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [31] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [32] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [33] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [34] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [35] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [36] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [37] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [38] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [39] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, + [40] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, }, + statSets = { + [1] = { + label = "Unbound Avatar", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "unbound_avatar", + baseFlags = { + }, + constantStats = { + { "display_max_ailment_bearer_charges", 100 }, + { "display_ailment_bearer_charge_interval", 1 }, + { "ailment_bearer_elemental_damage_+%_final", 40 }, + { "unbound_ailment_elemental_ailment_chance_+%_final", 80 }, + { "unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final", 40 }, + { "ailment_bearer_required_stacks_to_use", 100 }, + }, + stats = { + "base_skill_effect_duration", + "base_deal_no_damage", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 8100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 8200, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 8300, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 8400, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 8500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 8600, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 8700, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 8800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 8900, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 9000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 9100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 9200, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 9300, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 9400, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 9500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 9600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 9700, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 9800, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 9900, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 10000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 10100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 10200, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 10300, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 10400, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 10500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 10600, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 10700, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 10800, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 10900, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 10950, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 11000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 11050, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 11100, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 11150, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 11200, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 11250, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 11300, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 11350, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 11400, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["SupportUhtredsConstellation"] = { + name = "Uhtred's Constellation", + description = "Supports non-instant skills which have a cooldown, granting them two additional cooldown uses and more damage per different skill with a cooldown you have used recently.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Instant, }, + gemFamily = { "SecondWind",}, + isLineage = true, + flavourText = {"\"In the stars, I see our future. My plans are laid,", "lines tracing a constellation. You may only see", "pieces, but I see the whole, and it will be glorious.\"", }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Uhtred's Constellation", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds", 8 }, + { "support_added_cooldown_count_if_not_instant", 2 }, + { "base_cooldown_speed_+%_final", -50 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["SupportUhtredsRitePlayer"] = { + name = "Uhtred's Rite", + description = "Supports skills with Cooldowns, causing them to grant Overflowing Chalice when used. Supported skills deal more damage during the effect of your Life Flask and have increased Mana Cost Efficiency during the effect of your Mana Flask.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Cooldown, }, + addSkillTypes = { SkillType.Duration, SkillType.Buff, }, + excludeSkillTypes = { }, + gemFamily = { "UhtredChalice",}, + isLineage = true, + flavourText = {"\"To control the stars, we swallow the firmament.", "We imbibe the truth. We are filled with the void.", "We embrace the vast emptiness, or we die.\"", }, levels = { [1] = { levelRequirement = 0, }, - [2] = { baseMultiplier = 1.1, levelRequirement = 0, }, - [3] = { baseMultiplier = 1.21, levelRequirement = 0, }, - [4] = { baseMultiplier = 1.32, levelRequirement = 0, }, - [5] = { baseMultiplier = 1.43, levelRequirement = 0, }, - [6] = { baseMultiplier = 1.54, levelRequirement = 0, }, - [7] = { baseMultiplier = 1.66, levelRequirement = 0, }, - [8] = { baseMultiplier = 1.77, levelRequirement = 0, }, - [9] = { baseMultiplier = 1.87, levelRequirement = 0, }, - [10] = { baseMultiplier = 1.98, levelRequirement = 0, }, - [11] = { baseMultiplier = 2.09, levelRequirement = 0, }, - [12] = { baseMultiplier = 2.22, levelRequirement = 0, }, - [13] = { baseMultiplier = 2.35, levelRequirement = 0, }, - [14] = { baseMultiplier = 2.49, levelRequirement = 0, }, - [15] = { baseMultiplier = 2.65, levelRequirement = 0, }, - [16] = { baseMultiplier = 2.81, levelRequirement = 0, }, - [17] = { baseMultiplier = 2.99, levelRequirement = 0, }, - [18] = { baseMultiplier = 3.19, levelRequirement = 0, }, - [19] = { baseMultiplier = 3.4, levelRequirement = 0, }, - [20] = { baseMultiplier = 3.62, levelRequirement = 0, }, - [21] = { baseMultiplier = 3.86, levelRequirement = 0, }, - [22] = { baseMultiplier = 4.12, levelRequirement = 0, }, - [23] = { baseMultiplier = 4.4, levelRequirement = 0, }, - [24] = { baseMultiplier = 4.69, levelRequirement = 0, }, - [25] = { baseMultiplier = 5, levelRequirement = 0, }, - [26] = { baseMultiplier = 5.33, levelRequirement = 0, }, - [27] = { baseMultiplier = 5.69, levelRequirement = 0, }, - [28] = { baseMultiplier = 6.07, levelRequirement = 0, }, - [29] = { baseMultiplier = 6.47, levelRequirement = 0, }, - [30] = { baseMultiplier = 6.9, levelRequirement = 0, }, - [31] = { baseMultiplier = 7.36, levelRequirement = 0, }, - [32] = { baseMultiplier = 7.85, levelRequirement = 0, }, - [33] = { baseMultiplier = 8.38, levelRequirement = 0, }, - [34] = { baseMultiplier = 8.93, levelRequirement = 0, }, - [35] = { baseMultiplier = 9.53, levelRequirement = 0, }, - [36] = { baseMultiplier = 10.16, levelRequirement = 0, }, - [37] = { baseMultiplier = 10.84, levelRequirement = 0, }, - [38] = { baseMultiplier = 11.56, levelRequirement = 0, }, - [39] = { baseMultiplier = 12.33, levelRequirement = 0, }, - [40] = { baseMultiplier = 13.16, levelRequirement = 0, }, }, statSets = { [1] = { - label = "Combust", + label = "Uhtred's Rite", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "temper_weapon_combustion", + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_uhtreds_chalice_damage_+%_final_during_life_flask"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "UsingLifeFlask" }), + }, + ["base_mana_cost_efficiency_+%_during_mana_flask"] = { + mod("ManaCostEfficiency", "INC", nil, 0, 0, { type = "Condition", var = "UsingManaFlask" }), + }, + }, baseFlags = { - attack = true, - area = true, }, constantStats = { - { "imbue_weapon_combust_trigger_chance_%", 100 }, - { "active_skill_base_area_of_effect_radius", 30 }, - { "active_skill_base_physical_damage_%_to_convert_to_fire", 100 }, + { "support_uhtreds_chalice_buff_on_skill_use_duration_ms_per_1000_ms_cooldown", 1000 }, + { "support_uhtreds_chalice_damage_+%_final_during_life_flask", 20 }, + { "base_mana_cost_efficiency_+%_during_mana_flask", 20 }, }, stats = { - "is_area_damage", - "base_skill_show_average_damage_instead_of_dps", - "global_always_hit", }, levels = { [1] = { actorLevel = 1, }, - [2] = { actorLevel = 3.4519999027252, }, - [3] = { actorLevel = 6.7670001983643, }, - [4] = { actorLevel = 10.307999610901, }, - [5] = { actorLevel = 14.074999809265, }, - [6] = { actorLevel = 18.068000793457, }, - [7] = { actorLevel = 22.287000656128, }, - [8] = { actorLevel = 26.732000350952, }, - [9] = { actorLevel = 31.40299987793, }, - [10] = { actorLevel = 36.299999237061, }, - [11] = { actorLevel = 41.423000335693, }, - [12] = { actorLevel = 46.771999359131, }, - [13] = { actorLevel = 52.34700012207, }, - [14] = { actorLevel = 58.147998809814, }, - [15] = { actorLevel = 64.175003051758, }, - [16] = { actorLevel = 70.428001403809, }, - [17] = { actorLevel = 76.906997680664, }, - [18] = { actorLevel = 83.611999511719, }, - [19] = { actorLevel = 90.542999267578, }, - [20] = { actorLevel = 97.699996948242, }, - [21] = { actorLevel = 105.08300018311, }, - [22] = { actorLevel = 112.69200134277, }, - [23] = { actorLevel = 120.52700042725, }, - [24] = { actorLevel = 128.58799743652, }, - [25] = { actorLevel = 136.875, }, - [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, }, }, } } -skills["TemporalRiftPlayer"] = { - name = "Temporal Rift", - baseTypeName = "Temporal Rift", - icon = "Art/2DArt/SkillIcons/SorceressTemporalistTemporalRift.dds", - fromTree = true, +skills["VerisiumManifestationPlayer"] = { + name = "Verisium Manifestations", + baseTypeName = "Verisium Manifestations", + icon = "Art/2DArt/SkillIcons/ExpeditionRunewordManifest.dds", color = 4, - description = "While active, passively leaves afterimages of your recent past. Cast the Spell to return to the oldest afterimage, teleporting to that location and resetting your Life, Mana and Energy Shield to the values they had at the time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.HasReservation] = true, [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.PersistentShowsCastTime] = true, [SkillType.FixedCastTime] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0.5, + 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, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, }, + castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, }, levels = { - [1] = { cooldown = 7, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 6.9, levelRequirement = 3, storedUses = 1, }, - [3] = { cooldown = 6.8, levelRequirement = 6, storedUses = 1, }, - [4] = { cooldown = 6.7, levelRequirement = 10, storedUses = 1, }, - [5] = { cooldown = 6.6, levelRequirement = 14, storedUses = 1, }, - [6] = { cooldown = 6.5, levelRequirement = 18, storedUses = 1, }, - [7] = { cooldown = 6.4, levelRequirement = 22, storedUses = 1, }, - [8] = { cooldown = 6.3, levelRequirement = 26, storedUses = 1, }, - [9] = { cooldown = 6.2, levelRequirement = 31, storedUses = 1, }, - [10] = { cooldown = 6.1, levelRequirement = 36, storedUses = 1, }, - [11] = { cooldown = 6, levelRequirement = 41, storedUses = 1, }, - [12] = { cooldown = 5.9, levelRequirement = 46, storedUses = 1, }, - [13] = { cooldown = 5.8, levelRequirement = 52, storedUses = 1, }, - [14] = { cooldown = 5.7, levelRequirement = 58, storedUses = 1, }, - [15] = { cooldown = 5.6, levelRequirement = 64, storedUses = 1, }, - [16] = { cooldown = 5.5, levelRequirement = 66, storedUses = 1, }, - [17] = { cooldown = 5.4, levelRequirement = 72, storedUses = 1, }, - [18] = { cooldown = 5.3, levelRequirement = 78, storedUses = 1, }, - [19] = { cooldown = 5.2, levelRequirement = 84, storedUses = 1, }, - [20] = { cooldown = 5.1, levelRequirement = 90, storedUses = 1, }, - [21] = { cooldown = 5, levelRequirement = 90, storedUses = 1, }, - [22] = { cooldown = 4.9, levelRequirement = 90, storedUses = 1, }, - [23] = { cooldown = 4.8, levelRequirement = 90, storedUses = 1, }, - [24] = { cooldown = 4.7, levelRequirement = 90, storedUses = 1, }, - [25] = { cooldown = 4.6, levelRequirement = 90, storedUses = 1, }, - [26] = { cooldown = 4.5, levelRequirement = 90, storedUses = 1, }, - [27] = { cooldown = 4.4, levelRequirement = 90, storedUses = 1, }, - [28] = { cooldown = 4.3, levelRequirement = 90, storedUses = 1, }, - [29] = { cooldown = 4.2, levelRequirement = 90, storedUses = 1, }, - [30] = { cooldown = 4.1, levelRequirement = 90, storedUses = 1, }, - [31] = { cooldown = 4.05, levelRequirement = 90, storedUses = 1, }, - [32] = { cooldown = 4, levelRequirement = 90, storedUses = 1, }, - [33] = { cooldown = 3.95, levelRequirement = 90, storedUses = 1, }, - [34] = { cooldown = 3.9, levelRequirement = 90, storedUses = 1, }, - [35] = { cooldown = 3.85, levelRequirement = 90, storedUses = 1, }, - [36] = { cooldown = 3.8, levelRequirement = 90, storedUses = 1, }, - [37] = { cooldown = 3.75, levelRequirement = 90, storedUses = 1, }, - [38] = { cooldown = 3.7, levelRequirement = 90, storedUses = 1, }, - [39] = { cooldown = 3.65, levelRequirement = 90, storedUses = 1, }, - [40] = { cooldown = 3.6, levelRequirement = 90, storedUses = 1, }, + [1] = { levelRequirement = 0, spiritReservationFlat = 30, }, + [2] = { levelRequirement = 3, spiritReservationFlat = 30, }, + [3] = { levelRequirement = 6, spiritReservationFlat = 30, }, + [4] = { levelRequirement = 10, spiritReservationFlat = 30, }, + [5] = { levelRequirement = 14, spiritReservationFlat = 30, }, + [6] = { levelRequirement = 18, spiritReservationFlat = 30, }, + [7] = { levelRequirement = 22, spiritReservationFlat = 30, }, + [8] = { levelRequirement = 26, spiritReservationFlat = 30, }, + [9] = { levelRequirement = 31, spiritReservationFlat = 30, }, + [10] = { levelRequirement = 36, spiritReservationFlat = 30, }, + [11] = { levelRequirement = 41, spiritReservationFlat = 30, }, + [12] = { levelRequirement = 46, spiritReservationFlat = 30, }, + [13] = { levelRequirement = 52, spiritReservationFlat = 30, }, + [14] = { levelRequirement = 58, spiritReservationFlat = 30, }, + [15] = { levelRequirement = 64, spiritReservationFlat = 30, }, + [16] = { levelRequirement = 66, spiritReservationFlat = 30, }, + [17] = { levelRequirement = 72, spiritReservationFlat = 30, }, + [18] = { levelRequirement = 78, spiritReservationFlat = 30, }, + [19] = { levelRequirement = 84, spiritReservationFlat = 30, }, + [20] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [21] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [22] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [23] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [24] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [25] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [26] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [27] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [28] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [29] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [30] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [31] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [32] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [33] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [34] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [35] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [36] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [37] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [38] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [39] = { levelRequirement = 90, spiritReservationFlat = 30, }, + [40] = { levelRequirement = 90, spiritReservationFlat = 30, }, }, statSets = { [1] = { - label = "Temporal Rift", + label = "Verisium Manifestations", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "temporal_rift", + statDescriptionScope = "verisium_manifestation", baseFlags = { }, constantStats = { - { "skill_desired_amount_override", 1 }, - { "temporal_rift_snapshot_interval", 250 }, - { "temporal_rift_maximum_snapshots", 16 }, + { "skill_specific_stat_description_mode", 1 }, }, stats = { - "spell_cast_time_cannot_be_modified", + "base_deal_no_damage", }, levels = { [1] = { actorLevel = 1, }, @@ -8656,76 +18235,75 @@ skills["TemporalRiftPlayer"] = { }, } } -skills["TimeFreezePlayer"] = { - name = "Time Freeze", - baseTypeName = "Time Freeze", - icon = "Art/2DArt/SkillIcons/SorceressTemporalistTimeStop.dds", - fromTree = true, - color = 4, - description = "Release a large wave that stops time for all affected enemies for a duration. Duration is lower the more times the enemy has had time stopped for them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0.7, +skills["TriggeredManifestRunePlayer"] = { + name = "Manifest Rune", + hidden = true, + icon = "Art/2DArt/SkillIcons/ExpeditionRunewordManifest.dds", + description = "Summon a short-lived Verisium Manifestation that launches Projectile Attacks at enemies.", + skillTypes = { [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.UsableWhileMoving] = true, [SkillType.OngoingSkill] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, }, + castTime = 1, qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, + { "base_skill_effect_duration", 100 }, }, levels = { - [1] = { cooldown = 65, levelRequirement = 0, storedUses = 1, cost = { Mana = 20, }, }, - [2] = { cooldown = 64.5, levelRequirement = 3, storedUses = 1, cost = { Mana = 20, }, }, - [3] = { cooldown = 64, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, - [4] = { cooldown = 63.5, levelRequirement = 10, storedUses = 1, cost = { Mana = 20, }, }, - [5] = { cooldown = 63, levelRequirement = 14, storedUses = 1, cost = { Mana = 20, }, }, - [6] = { cooldown = 62.5, levelRequirement = 18, storedUses = 1, cost = { Mana = 20, }, }, - [7] = { cooldown = 62, levelRequirement = 22, storedUses = 1, cost = { Mana = 20, }, }, - [8] = { cooldown = 61.5, levelRequirement = 26, storedUses = 1, cost = { Mana = 20, }, }, - [9] = { cooldown = 61, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, - [10] = { cooldown = 60.5, levelRequirement = 36, storedUses = 1, cost = { Mana = 20, }, }, - [11] = { cooldown = 60, levelRequirement = 41, storedUses = 1, cost = { Mana = 20, }, }, - [12] = { cooldown = 59.5, levelRequirement = 46, storedUses = 1, cost = { Mana = 20, }, }, - [13] = { cooldown = 59, levelRequirement = 52, storedUses = 1, cost = { Mana = 20, }, }, - [14] = { cooldown = 58.5, levelRequirement = 58, storedUses = 1, cost = { Mana = 20, }, }, - [15] = { cooldown = 58, levelRequirement = 64, storedUses = 1, cost = { Mana = 20, }, }, - [16] = { cooldown = 57.5, levelRequirement = 66, storedUses = 1, cost = { Mana = 20, }, }, - [17] = { cooldown = 57, levelRequirement = 72, storedUses = 1, cost = { Mana = 20, }, }, - [18] = { cooldown = 56.5, levelRequirement = 78, storedUses = 1, cost = { Mana = 20, }, }, - [19] = { cooldown = 56, levelRequirement = 84, storedUses = 1, cost = { Mana = 20, }, }, - [20] = { cooldown = 55.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [21] = { cooldown = 55, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [22] = { cooldown = 54.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [23] = { cooldown = 54, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [24] = { cooldown = 53.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [25] = { cooldown = 53, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [26] = { cooldown = 52.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [27] = { cooldown = 52, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [28] = { cooldown = 51.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [29] = { cooldown = 51, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [30] = { cooldown = 50.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [31] = { cooldown = 50.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [32] = { cooldown = 50, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [33] = { cooldown = 49.75, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [34] = { cooldown = 49.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [35] = { cooldown = 49.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [36] = { cooldown = 49, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [37] = { cooldown = 48.75, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [38] = { cooldown = 48.5, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [39] = { cooldown = 48.25, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [40] = { cooldown = 48, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + [1] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 7, }, }, + [2] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 7, }, }, + [3] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 8, }, }, + [4] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 9, }, }, + [5] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 10, }, }, + [6] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 11, }, }, + [7] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 12, }, }, + [8] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 14, }, }, + [9] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 15, }, }, + [10] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 16, }, }, + [11] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 17, }, }, + [12] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 18, }, }, + [13] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 20, }, }, + [14] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 21, }, }, + [15] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 22, }, }, + [16] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 24, }, }, + [17] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 25, }, }, + [18] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 27, }, }, + [19] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 28, }, }, + [20] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 30, }, }, + [21] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 32, }, }, + [22] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 33, }, }, + [23] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 35, }, }, + [24] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 37, }, }, + [25] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 39, }, }, + [26] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 41, }, }, + [27] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 42, }, }, + [28] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 44, }, }, + [29] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 47, }, }, + [30] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 49, }, }, + [31] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 51, }, }, + [32] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 53, }, }, + [33] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 55, }, }, + [34] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 58, }, }, + [35] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 60, }, }, + [36] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 63, }, }, + [37] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 65, }, }, + [38] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 68, }, }, + [39] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 71, }, }, + [40] = { cooldown = 0.5, levelRequirement = 0, storedUses = 5, cost = { Ward = 74, }, }, }, statSets = { [1] = { - label = "Time Freeze", + label = "Manifest Rune", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "time_freeze", + statDescriptionScope = "manifest_rune", baseFlags = { - area = true, - duration = true, }, constantStats = { - { "base_skill_effect_duration", 3000 }, - { "active_skill_base_area_of_effect_radius", 100 }, - { "time_freeze_resistance_duration_ms", 30000 }, + { "base_number_of_verisium_runes_allowed", 10 }, + { "base_skill_effect_duration", 8000 }, }, stats = { - "cannot_cancel_skill_before_contact_point", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "triggered_by_primary_skill", + "display_statset_hide_usage_stats", }, levels = { [1] = { actorLevel = 1, }, @@ -8772,68 +18350,101 @@ skills["TimeFreezePlayer"] = { }, } } -skills["TimeSnapPlayer"] = { - name = "Time Snap", - baseTypeName = "Time Snap", - icon = "Art/2DArt/SkillIcons/SorceressTemporalistReloadCooldown.dds", +skills["VividStampedePlayer"] = { + name = "Vivid Stampede", + baseTypeName = "Vivid Stampede", + icon = "Art/2DArt/SkillIcons/WildspeakerVividStagsSkill.dds", fromTree = true, color = 4, - description = "Manipulate time, resetting the cooldowns of your other Skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, }, - castTime = 0.6, - qualityStats = { - { "base_cooldown_speed_+%", 0.5 }, - }, - levels = { - [1] = { cooldown = 40, levelRequirement = 0, storedUses = 1, cost = { Mana = 20, }, }, - [2] = { cooldown = 39.6, levelRequirement = 3, storedUses = 1, cost = { Mana = 20, }, }, - [3] = { cooldown = 39.2, levelRequirement = 6, storedUses = 1, cost = { Mana = 20, }, }, - [4] = { cooldown = 38.8, levelRequirement = 10, storedUses = 1, cost = { Mana = 20, }, }, - [5] = { cooldown = 38.4, levelRequirement = 14, storedUses = 1, cost = { Mana = 20, }, }, - [6] = { cooldown = 38, levelRequirement = 18, storedUses = 1, cost = { Mana = 20, }, }, - [7] = { cooldown = 37.6, levelRequirement = 22, storedUses = 1, cost = { Mana = 20, }, }, - [8] = { cooldown = 37.2, levelRequirement = 26, storedUses = 1, cost = { Mana = 20, }, }, - [9] = { cooldown = 36.8, levelRequirement = 31, storedUses = 1, cost = { Mana = 20, }, }, - [10] = { cooldown = 36.4, levelRequirement = 36, storedUses = 1, cost = { Mana = 20, }, }, - [11] = { cooldown = 36, levelRequirement = 41, storedUses = 1, cost = { Mana = 20, }, }, - [12] = { cooldown = 35.6, levelRequirement = 46, storedUses = 1, cost = { Mana = 20, }, }, - [13] = { cooldown = 35.2, levelRequirement = 52, storedUses = 1, cost = { Mana = 20, }, }, - [14] = { cooldown = 34.8, levelRequirement = 58, storedUses = 1, cost = { Mana = 20, }, }, - [15] = { cooldown = 34.4, levelRequirement = 64, storedUses = 1, cost = { Mana = 20, }, }, - [16] = { cooldown = 34, levelRequirement = 66, storedUses = 1, cost = { Mana = 20, }, }, - [17] = { cooldown = 33.6, levelRequirement = 72, storedUses = 1, cost = { Mana = 20, }, }, - [18] = { cooldown = 33.2, levelRequirement = 78, storedUses = 1, cost = { Mana = 20, }, }, - [19] = { cooldown = 32.8, levelRequirement = 84, storedUses = 1, cost = { Mana = 20, }, }, - [20] = { cooldown = 32.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [21] = { cooldown = 32, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [22] = { cooldown = 31.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [23] = { cooldown = 31.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [24] = { cooldown = 30.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [25] = { cooldown = 30.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [26] = { cooldown = 30, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [27] = { cooldown = 29.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [28] = { cooldown = 29.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [29] = { cooldown = 28.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [30] = { cooldown = 28.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [31] = { cooldown = 28.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [32] = { cooldown = 28, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [33] = { cooldown = 27.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [34] = { cooldown = 27.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [35] = { cooldown = 27.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [36] = { cooldown = 27.2, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [37] = { cooldown = 27, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [38] = { cooldown = 26.8, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [39] = { cooldown = 26.6, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, - [40] = { cooldown = 26.4, levelRequirement = 90, storedUses = 1, cost = { Mana = 20, }, }, + description = "Call upon Spirits of the Stag, sending them leaping forward. Each Stag releases a damaging shockwave each time it lands, and any Stags that travel the maximum possible distance also leave behind Shocked Ground.", + skillTypes = { [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Attack] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["None"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Talisman"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 0, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.25 }, + }, + levels = { + [1] = { cooldown = 0.3, levelRequirement = 0, storedUses = 1, }, + [2] = { baseMultiplier = 1.1, cooldown = 0.3, levelRequirement = 3, storedUses = 1, }, + [3] = { baseMultiplier = 1.21, cooldown = 0.3, levelRequirement = 6, storedUses = 1, }, + [4] = { baseMultiplier = 1.32, cooldown = 0.3, levelRequirement = 10, storedUses = 1, }, + [5] = { baseMultiplier = 1.43, cooldown = 0.3, levelRequirement = 14, storedUses = 1, }, + [6] = { baseMultiplier = 1.54, cooldown = 0.3, levelRequirement = 18, storedUses = 1, }, + [7] = { baseMultiplier = 1.66, cooldown = 0.3, levelRequirement = 22, storedUses = 1, }, + [8] = { baseMultiplier = 1.77, cooldown = 0.3, levelRequirement = 26, storedUses = 1, }, + [9] = { baseMultiplier = 1.87, cooldown = 0.3, levelRequirement = 31, storedUses = 1, }, + [10] = { baseMultiplier = 1.98, cooldown = 0.3, levelRequirement = 36, storedUses = 1, }, + [11] = { baseMultiplier = 2.09, cooldown = 0.3, levelRequirement = 41, storedUses = 1, }, + [12] = { baseMultiplier = 2.22, cooldown = 0.3, levelRequirement = 46, storedUses = 1, }, + [13] = { baseMultiplier = 2.35, cooldown = 0.3, levelRequirement = 52, storedUses = 1, }, + [14] = { baseMultiplier = 2.49, cooldown = 0.3, levelRequirement = 58, storedUses = 1, }, + [15] = { baseMultiplier = 2.65, cooldown = 0.3, levelRequirement = 64, storedUses = 1, }, + [16] = { baseMultiplier = 2.81, cooldown = 0.3, levelRequirement = 66, storedUses = 1, }, + [17] = { baseMultiplier = 2.99, cooldown = 0.3, levelRequirement = 72, storedUses = 1, }, + [18] = { baseMultiplier = 3.19, cooldown = 0.3, levelRequirement = 78, storedUses = 1, }, + [19] = { baseMultiplier = 3.4, cooldown = 0.3, levelRequirement = 84, storedUses = 1, }, + [20] = { baseMultiplier = 3.62, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [21] = { baseMultiplier = 3.86, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [22] = { baseMultiplier = 4.12, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [23] = { baseMultiplier = 4.4, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [24] = { baseMultiplier = 4.69, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [25] = { baseMultiplier = 5, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [26] = { baseMultiplier = 5.33, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [27] = { baseMultiplier = 5.69, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [28] = { baseMultiplier = 6.07, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [29] = { baseMultiplier = 6.47, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [30] = { baseMultiplier = 6.9, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [31] = { baseMultiplier = 7.36, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [32] = { baseMultiplier = 7.85, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [33] = { baseMultiplier = 8.38, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [34] = { baseMultiplier = 8.93, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [35] = { baseMultiplier = 9.53, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [36] = { baseMultiplier = 10.16, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [37] = { baseMultiplier = 10.84, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [38] = { baseMultiplier = 11.56, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [39] = { baseMultiplier = 12.33, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, + [40] = { baseMultiplier = 13.16, cooldown = 0.3, levelRequirement = 90, storedUses = 1, }, }, statSets = { [1] = { - label = "Time Snap", + label = "Vivid Stampede", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "skill_stat_descriptions", + statDescriptionScope = "vivid_stampede", baseFlags = { + attack = true, + area = true, + duration = true, + }, + constantStats = { + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 60 }, + { "vivid_stag_cascade_number_of_damaging_areas", 4 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "vivid_stag_spacing", 10 }, + { "active_skill_shock_chance_+%_final", 50 }, + { "base_skill_effect_duration", 4000 }, }, stats = { + "is_area_damage", + "attack_is_not_melee_override", + "skill_triggered_on_hit_while_have_vivid_stag_wisps", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + "base_skill_show_average_damage_instead_of_dps", }, levels = { [1] = { actorLevel = 1, }, @@ -8880,127 +18491,6 @@ skills["TimeSnapPlayer"] = { }, } } -skills["UnboundAvatarPlayer"] = { - name = "Unbound Avatar", - baseTypeName = "Unbound Avatar", - icon = "Art/2DArt/SkillIcons/MonkInvokerUnboundAvatar.dds", - fromTree = true, - color = 4, - description = "Gain Unbound Fury by inflicting Elemental Ailments with Hits on enemies. Once you reach maximum Unbound Fury, consume it to become Unbound for a duration, vastly augmenting your Elemental prowess.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.Instant] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Duration] = true, [SkillType.HasUsageCondition] = true, }, - castTime = 0, - qualityStats = { - { "base_skill_effect_duration", 50 }, - }, - levels = { - [1] = { cooldown = 12, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 12, levelRequirement = 3, storedUses = 1, }, - [3] = { cooldown = 12, levelRequirement = 6, storedUses = 1, }, - [4] = { cooldown = 12, levelRequirement = 10, storedUses = 1, }, - [5] = { cooldown = 12, levelRequirement = 14, storedUses = 1, }, - [6] = { cooldown = 12, levelRequirement = 18, storedUses = 1, }, - [7] = { cooldown = 12, levelRequirement = 22, storedUses = 1, }, - [8] = { cooldown = 12, levelRequirement = 26, storedUses = 1, }, - [9] = { cooldown = 12, levelRequirement = 31, storedUses = 1, }, - [10] = { cooldown = 12, levelRequirement = 36, storedUses = 1, }, - [11] = { cooldown = 12, levelRequirement = 41, storedUses = 1, }, - [12] = { cooldown = 12, levelRequirement = 46, storedUses = 1, }, - [13] = { cooldown = 12, levelRequirement = 52, storedUses = 1, }, - [14] = { cooldown = 12, levelRequirement = 58, storedUses = 1, }, - [15] = { cooldown = 12, levelRequirement = 64, storedUses = 1, }, - [16] = { cooldown = 12, levelRequirement = 66, storedUses = 1, }, - [17] = { cooldown = 12, levelRequirement = 72, storedUses = 1, }, - [18] = { cooldown = 12, levelRequirement = 78, storedUses = 1, }, - [19] = { cooldown = 12, levelRequirement = 84, storedUses = 1, }, - [20] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [21] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [22] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [23] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [24] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [25] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [26] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [27] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [28] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [29] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [30] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [31] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [32] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [33] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [34] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [35] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [36] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [37] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [38] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [39] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - [40] = { cooldown = 12, levelRequirement = 90, storedUses = 1, }, - }, - statSets = { - [1] = { - label = "Unbound Avatar", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "unbound_avatar", - baseFlags = { - }, - constantStats = { - { "display_max_ailment_bearer_charges", 100 }, - { "display_ailment_bearer_charge_interval", 1 }, - { "ailment_bearer_elemental_damage_+%_final", 40 }, - { "unbound_ailment_elemental_ailment_chance_+%_final", 80 }, - { "unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final", 40 }, - { "ailment_bearer_required_stacks_to_use", 100 }, - }, - stats = { - "base_skill_effect_duration", - "base_deal_no_damage", - }, - notMinionStat = { - "base_skill_effect_duration", - }, - levels = { - [1] = { 8000, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 8100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 8200, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 8300, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 8400, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 8500, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 8600, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 8700, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 8800, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 8900, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 9000, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 9100, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 9200, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 9300, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 9400, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 9500, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 9600, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 9700, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 9800, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 9900, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 10000, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 10100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 10200, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 10300, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 10400, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 10500, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 10600, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 10700, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 10800, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 10900, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 10950, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 11000, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 11050, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 11100, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 11150, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 11200, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 11250, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 11300, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 11350, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 11400, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, - }, - }, - } -} skills["VoidIllusionPlayer"] = { name = "Void Illusion", baseTypeName = "Void Illusion", @@ -9135,70 +18625,208 @@ skills["VoidIllusionSpawnPlayer"] = { hidden = true, icon = "", fromTree = true, - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, [SkillType.UsedByClone] = true, [SkillType.UsedByProxy] = true, }, + castTime = 1, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.2 }, + }, + levels = { + [1] = { baseMultiplier = 3.5, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [2] = { baseMultiplier = 3.85, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [3] = { baseMultiplier = 4.24, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [4] = { baseMultiplier = 4.63, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [5] = { baseMultiplier = 5.01, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [6] = { baseMultiplier = 5.41, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [7] = { baseMultiplier = 5.81, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [8] = { baseMultiplier = 6.19, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [9] = { baseMultiplier = 6.54, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [10] = { baseMultiplier = 6.92, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [11] = { baseMultiplier = 7.32, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [12] = { baseMultiplier = 7.75, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [13] = { baseMultiplier = 8.22, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [14] = { baseMultiplier = 8.72, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [15] = { baseMultiplier = 9.26, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [16] = { baseMultiplier = 9.85, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [17] = { baseMultiplier = 10.47, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [18] = { baseMultiplier = 11.15, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [19] = { baseMultiplier = 11.89, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [20] = { baseMultiplier = 12.68, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [21] = { baseMultiplier = 13.52, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [22] = { baseMultiplier = 14.42, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [23] = { baseMultiplier = 15.38, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [24] = { baseMultiplier = 16.41, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [25] = { baseMultiplier = 17.5, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [26] = { baseMultiplier = 18.67, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [27] = { baseMultiplier = 19.91, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [28] = { baseMultiplier = 21.24, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [29] = { baseMultiplier = 22.65, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [30] = { baseMultiplier = 24.16, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [31] = { baseMultiplier = 25.77, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [32] = { baseMultiplier = 27.49, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [33] = { baseMultiplier = 29.32, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [34] = { baseMultiplier = 31.27, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [35] = { baseMultiplier = 33.35, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [36] = { baseMultiplier = 35.58, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [37] = { baseMultiplier = 37.95, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [38] = { baseMultiplier = 40.47, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [39] = { baseMultiplier = 43.17, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [40] = { baseMultiplier = 46.05, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + }, + statSets = { + [1] = { + label = "Void Illusion", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "create_void_illusion", + baseFlags = { + attack = true, + }, + constantStats = { + { "base_skill_effect_duration", 2000 }, + { "active_skill_base_area_of_effect_radius", 30 }, + }, + stats = { + "hide_minion_frame", + "triggered_by_void_illusion", + "quality_display_active_skill_base_area_of_effect_radius_is_gem", + }, + levels = { + [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["VoltaicBarrierPlayer"] = { + name = "Voltaic Barrier", + 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.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Totemable] = true, }, + weaponTypes = { + ["Bow"] = true, + ["Claw"] = true, + ["Crossbow"] = true, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, castTime = 1, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.2 }, + { "skill_effect_duration_+%", 2 }, }, levels = { - [1] = { baseMultiplier = 3.5, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [2] = { baseMultiplier = 3.85, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [3] = { baseMultiplier = 4.24, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [4] = { baseMultiplier = 4.63, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [5] = { baseMultiplier = 5.01, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [6] = { baseMultiplier = 5.41, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [7] = { baseMultiplier = 5.81, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [8] = { baseMultiplier = 6.19, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [9] = { baseMultiplier = 6.54, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [10] = { baseMultiplier = 6.92, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [11] = { baseMultiplier = 7.32, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [12] = { baseMultiplier = 7.75, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [13] = { baseMultiplier = 8.22, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [14] = { baseMultiplier = 8.72, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [15] = { baseMultiplier = 9.26, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [16] = { baseMultiplier = 9.85, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [17] = { baseMultiplier = 10.47, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [18] = { baseMultiplier = 11.15, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [19] = { baseMultiplier = 11.89, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [20] = { baseMultiplier = 12.68, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [21] = { baseMultiplier = 13.52, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [22] = { baseMultiplier = 14.42, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [23] = { baseMultiplier = 15.38, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [24] = { baseMultiplier = 16.41, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [25] = { baseMultiplier = 17.5, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [26] = { baseMultiplier = 18.67, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [27] = { baseMultiplier = 19.91, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [28] = { baseMultiplier = 21.24, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [29] = { baseMultiplier = 22.65, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [30] = { baseMultiplier = 24.16, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [31] = { baseMultiplier = 25.77, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [32] = { baseMultiplier = 27.49, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [33] = { baseMultiplier = 29.32, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [34] = { baseMultiplier = 31.27, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [35] = { baseMultiplier = 33.35, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [36] = { baseMultiplier = 35.58, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [37] = { baseMultiplier = 37.95, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [38] = { baseMultiplier = 40.47, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [39] = { baseMultiplier = 43.17, cooldown = 4, levelRequirement = 0, storedUses = 3, }, - [40] = { baseMultiplier = 46.05, cooldown = 4, levelRequirement = 0, storedUses = 3, }, + [1] = { attackTime = 750, baseMultiplier = 0.2, levelRequirement = 0, cost = { Ward = 20, }, }, + [2] = { attackTime = 750, baseMultiplier = 0.22, levelRequirement = 3, cost = { Ward = 22, }, }, + [3] = { attackTime = 750, baseMultiplier = 0.24, levelRequirement = 6, cost = { Ward = 25, }, }, + [4] = { attackTime = 750, baseMultiplier = 0.26, levelRequirement = 10, cost = { Ward = 29, }, }, + [5] = { attackTime = 750, baseMultiplier = 0.28, levelRequirement = 14, cost = { Ward = 32, }, }, + [6] = { attackTime = 750, baseMultiplier = 0.31, levelRequirement = 18, cost = { Ward = 35, }, }, + [7] = { attackTime = 750, baseMultiplier = 0.33, levelRequirement = 22, cost = { Ward = 39, }, }, + [8] = { attackTime = 750, baseMultiplier = 0.35, levelRequirement = 26, cost = { Ward = 43, }, }, + [9] = { attackTime = 750, baseMultiplier = 0.36, levelRequirement = 31, cost = { Ward = 47, }, }, + [10] = { attackTime = 750, baseMultiplier = 0.38, levelRequirement = 36, cost = { Ward = 51, }, }, + [11] = { attackTime = 750, baseMultiplier = 0.4, levelRequirement = 41, cost = { Ward = 56, }, }, + [12] = { attackTime = 750, baseMultiplier = 0.42, levelRequirement = 46, cost = { Ward = 61, }, }, + [13] = { attackTime = 750, baseMultiplier = 0.44, levelRequirement = 52, cost = { Ward = 66, }, }, + [14] = { attackTime = 750, baseMultiplier = 0.47, levelRequirement = 58, cost = { Ward = 71, }, }, + [15] = { attackTime = 750, baseMultiplier = 0.49, levelRequirement = 64, cost = { Ward = 76, }, }, + [16] = { attackTime = 750, baseMultiplier = 0.51, levelRequirement = 66, cost = { Ward = 82, }, }, + [17] = { attackTime = 750, baseMultiplier = 0.54, levelRequirement = 72, cost = { Ward = 88, }, }, + [18] = { attackTime = 750, baseMultiplier = 0.57, levelRequirement = 78, cost = { Ward = 94, }, }, + [19] = { attackTime = 750, baseMultiplier = 0.59, levelRequirement = 84, cost = { Ward = 101, }, }, + [20] = { attackTime = 750, baseMultiplier = 0.62, levelRequirement = 90, cost = { Ward = 108, }, }, + [21] = { attackTime = 750, baseMultiplier = 0.65, levelRequirement = 90, cost = { Ward = 115, }, }, + [22] = { attackTime = 750, baseMultiplier = 0.69, levelRequirement = 90, cost = { Ward = 123, }, }, + [23] = { attackTime = 750, baseMultiplier = 0.72, levelRequirement = 90, cost = { Ward = 131, }, }, + [24] = { attackTime = 750, baseMultiplier = 0.76, levelRequirement = 90, cost = { Ward = 139, }, }, + [25] = { attackTime = 750, baseMultiplier = 0.8, levelRequirement = 90, cost = { Ward = 147, }, }, + [26] = { attackTime = 750, baseMultiplier = 0.84, levelRequirement = 90, cost = { Ward = 157, }, }, + [27] = { attackTime = 750, baseMultiplier = 0.88, levelRequirement = 90, cost = { Ward = 166, }, }, + [28] = { attackTime = 750, baseMultiplier = 0.92, levelRequirement = 90, cost = { Ward = 176, }, }, + [29] = { attackTime = 750, baseMultiplier = 0.97, levelRequirement = 90, cost = { Ward = 186, }, }, + [30] = { attackTime = 750, baseMultiplier = 1.02, levelRequirement = 90, cost = { Ward = 197, }, }, + [31] = { attackTime = 750, baseMultiplier = 1.07, levelRequirement = 90, cost = { Ward = 208, }, }, + [32] = { attackTime = 750, baseMultiplier = 1.12, levelRequirement = 90, cost = { Ward = 220, }, }, + [33] = { attackTime = 750, baseMultiplier = 1.18, levelRequirement = 90, cost = { Ward = 232, }, }, + [34] = { attackTime = 750, baseMultiplier = 1.24, levelRequirement = 90, cost = { Ward = 245, }, }, + [35] = { attackTime = 750, baseMultiplier = 1.3, levelRequirement = 90, cost = { Ward = 258, }, }, + [36] = { attackTime = 750, baseMultiplier = 1.36, levelRequirement = 90, cost = { Ward = 272, }, }, + [37] = { attackTime = 750, baseMultiplier = 1.43, levelRequirement = 90, cost = { Ward = 287, }, }, + [38] = { attackTime = 750, baseMultiplier = 1.5, levelRequirement = 90, cost = { Ward = 302, }, }, + [39] = { attackTime = 750, baseMultiplier = 1.58, levelRequirement = 90, cost = { Ward = 318, }, }, + [40] = { attackTime = 750, baseMultiplier = 1.66, levelRequirement = 90, cost = { Ward = 335, }, }, }, statSets = { [1] = { - label = "Void Illusion", + label = "Voltaic Barrier", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "create_void_illusion", + statDescriptionScope = "voltaic_barrier", baseFlags = { attack = true, }, constantStats = { - { "base_skill_effect_duration", 2000 }, - { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_base_area_of_effect_radius", 60 }, + { "base_skill_effect_duration", 6000 }, + { "voltaic_barrier_damage_interval_ms", 250 }, + { "voltaic_barrier_active_actions_limit", 1 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, + { "active_skill_electrocutes_as_though_dealt_damage_+%_final", 300 }, + { "console_cast_on_self_custom_range", 15 }, }, stats = { - "hide_minion_frame", - "triggered_by_void_illusion", - "quality_display_active_skill_base_area_of_effect_radius_is_gem", - "base_skill_sources_hollow_palm_physical_damage", + "is_area_damage", + "can_perform_skill_while_moving", + "never_shock", + "base_lightning_damage_can_electrocute", }, levels = { [1] = { actorLevel = 1, }, @@ -9245,207 +18873,91 @@ skills["VoidIllusionSpawnPlayer"] = { }, } } - skills["EnemyExplode"] = { - name = "On Kill Monster Explosion", - hidden = true, - color = 4, - skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, }, - castTime = 0, - levels = { - [1] = { damageEffectiveness = 0, baseMultiplier = 1, levelRequirement = 1, } - }, - preDamageFunc = function(activeSkill, output) - output.ExplodeChance = 0 - local statSet = activeSkill.activeEffect.statSet or activeSkill.activeEffect.statSetCalcs - if statSet.index ~= 3 then - local allExplodeMods = activeSkill.skillModList:Tabulate("LIST", activeSkill.skillCfg, "ExplodeMod") - for _, explodeMod in ipairs(allExplodeMods) do - local activeEffectSource = activeSkill.activeEffect.srcInstance.explodeSource.modSource or "Tree:"..activeSkill.activeEffect.srcInstance.explodeSource.id - if explodeMod.mod.source == activeEffectSource then - local explodeMod = explodeMod.value - if explodeMod.type == "RandomElement" then - activeSkill.skillData["FireEffectiveExplodePercentage"] = explodeMod.amount / 3 - activeSkill.skillData["ColdEffectiveExplodePercentage"] = explodeMod.amount / 3 - activeSkill.skillData["LightningEffectiveExplodePercentage"] = explodeMod.amount / 3 - else - activeSkill.skillData[explodeMod.type.."EffectiveExplodePercentage"] = explodeMod.amount - end - output.ExplodeChance = statSet.index == 2 and 1 or explodeMod.value / 100 - end - end - else - local typeAmountChances = { } - local explodeModList = activeSkill.skillModList:List(activeSkill.skillCfg, "ExplodeMod") - for _, explodeMod in ipairs(explodeModList) do - local amountChance = typeAmountChances[explodeMod.type] or { } - amountChance[explodeMod.amount] = (amountChance[explodeMod.amount] or 0) + explodeMod.value / 100 - typeAmountChances[explodeMod.type] = amountChance - end - for type, amountChance in pairs(typeAmountChances) do - local physExplodeChance = 0 - for amount, chance in pairs(amountChance) do - local amountXChance = amount * chance - if type == "RandomElement" then - activeSkill.skillData["FireEffectiveExplodePercentage"] = (activeSkill.skillData["FireEffectiveExplodePercentage"] or 0) + amountXChance / 3 - activeSkill.skillData["ColdEffectiveExplodePercentage"] = (activeSkill.skillData["ColdEffectiveExplodePercentage"] or 0) + amountXChance / 3 - activeSkill.skillData["LightningEffectiveExplodePercentage"] = (activeSkill.skillData["LightningEffectiveExplodePercentage"] or 0) + amountXChance / 3 - else - activeSkill.skillData[type.."EffectiveExplodePercentage"] = (activeSkill.skillData[type.."EffectiveExplodePercentage"] or 0) + amountXChance - end - if type == "Physical" then - physExplodeChance = 1 - ((1 - physExplodeChance) * (1 - chance)) - end - output.ExplodeChance = 1 - ((1 - output.ExplodeChance) * (1 - chance)) - end - if type == "Physical" and physExplodeChance ~= 0 then - activeSkill.skillModList:NewMod("CalcArmourAsThoughDealing", "MORE", 100 / math.min(physExplodeChance, 1) - 100) - end - end - end - output.ExplodeChance = math.min(output.ExplodeChance * 100, 100) - end, - statSets = { - [1] = { - label = "This Source Only", - baseFlags = { - area = true, - monsterExplode = true, - }, - baseMods = { - skill("radius", 22), - skill("showAverage", true), - skill("corpseExplosionLifeMultiplier", 0), - skill("explodeCorpse", true), - skill("hitChanceIsExplodeChance", true), - }, - stats = { - "is_area_damage", - "base_skill_show_average_damage_instead_of_dps", - "display_skill_deals_secondary_damage", - "damage_cannot_be_reflected", - "skill_can_add_multiple_charges_per_action", - }, - levels = { - [1] = { }, - }, - }, - [2] = { - label = "This Source Only, Ignoring Chance", - baseFlags = { - area = true, - monsterExplode = true, - }, - baseMods = { - skill("radius", 22), - skill("showAverage", true), - skill("corpseExplosionLifeMultiplier", 0), - skill("explodeCorpse", true), - }, - stats = { - "is_area_damage", - "base_skill_show_average_damage_instead_of_dps", - "display_skill_deals_secondary_damage", - "damage_cannot_be_reflected", - "skill_can_add_multiple_charges_per_action", - }, - levels = { - [1] = { }, - }, - }, - [3] = { - label = "Average of All Sources", - baseFlags = { - area = true, - monsterExplode = true, - }, - baseMods = { - skill("radius", 22), - skill("showAverage", true), - skill("corpseExplosionLifeMultiplier", 0), - skill("explodeCorpse", true), - }, - stats = { - "is_area_damage", - "base_skill_show_average_damage_instead_of_dps", - "display_skill_deals_secondary_damage", - "damage_cannot_be_reflected", - "skill_can_add_multiple_charges_per_action", - }, - levels = { - [1] = { }, - }, - }, - } - } - -skills["MetaMirageDeadeyePlayer"] = { - name = "Mirage Deadeye", - baseTypeName = "Mirage Deadeye", - icon = "Art/2DArt/SkillIcons/RangerDeadeyeMirageSkill.dds", - color = 4, - description = "While active, firing a ranged Projectile Attack will create a Mirage that uses socketed ranged Attacks for a short duration, then vanish.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Meta] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, }, +skills["VoltaicBarrierTriggeredChainLightningPlayer"] = { + name = "", + hidden = true, + icon = "Art/2DArt/SkillIcons/ExpeditionCracklingBarrier.dds", + skillTypes = { [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Attack] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, }, weaponTypes = { ["Bow"] = true, + ["Claw"] = true, ["Crossbow"] = true, - ["Spear"] = true, - }, - castTime = 0, - qualityStats = { - }, - levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 3, }, - [3] = { levelRequirement = 6, }, - [4] = { levelRequirement = 10, }, - [5] = { levelRequirement = 14, }, - [6] = { levelRequirement = 18, }, - [7] = { levelRequirement = 22, }, - [8] = { levelRequirement = 26, }, - [9] = { levelRequirement = 31, }, - [10] = { levelRequirement = 36, }, - [11] = { levelRequirement = 41, }, - [12] = { levelRequirement = 46, }, - [13] = { levelRequirement = 52, }, - [14] = { levelRequirement = 58, }, - [15] = { levelRequirement = 64, }, - [16] = { levelRequirement = 66, }, - [17] = { levelRequirement = 72, }, - [18] = { levelRequirement = 78, }, - [19] = { levelRequirement = 84, }, - [20] = { levelRequirement = 90, }, - [21] = { levelRequirement = 90, }, - [22] = { levelRequirement = 90, }, - [23] = { levelRequirement = 90, }, - [24] = { levelRequirement = 90, }, - [25] = { levelRequirement = 90, }, - [26] = { levelRequirement = 90, }, - [27] = { levelRequirement = 90, }, - [28] = { levelRequirement = 90, }, - [29] = { levelRequirement = 90, }, - [30] = { levelRequirement = 90, }, - [31] = { levelRequirement = 90, }, - [32] = { levelRequirement = 90, }, - [33] = { levelRequirement = 90, }, - [34] = { levelRequirement = 90, }, - [35] = { levelRequirement = 90, }, - [36] = { levelRequirement = 90, }, - [37] = { levelRequirement = 90, }, - [38] = { levelRequirement = 90, }, - [39] = { levelRequirement = 90, }, - [40] = { levelRequirement = 90, }, + ["Dagger"] = true, + ["Flail"] = true, + ["One Hand Axe"] = true, + ["One Hand Mace"] = true, + ["One Hand Sword"] = true, + ["Spear"] = true, + ["Staff"] = true, + ["Two Hand Axe"] = true, + ["Two Hand Mace"] = true, + ["Two Hand Sword"] = true, + }, + castTime = 1, + qualityStats = { + { "dummy_stat_display_nothing", 0 }, + }, + levels = { + [1] = { baseMultiplier = 0.4, levelRequirement = 0, cost = { Ward = 0, }, }, + [2] = { baseMultiplier = 0.44, levelRequirement = 0, cost = { Ward = 0, }, }, + [3] = { baseMultiplier = 0.48, levelRequirement = 0, cost = { Ward = 0, }, }, + [4] = { baseMultiplier = 0.53, levelRequirement = 0, cost = { Ward = 0, }, }, + [5] = { baseMultiplier = 0.57, levelRequirement = 0, cost = { Ward = 0, }, }, + [6] = { baseMultiplier = 0.61, levelRequirement = 0, cost = { Ward = 0, }, }, + [7] = { baseMultiplier = 0.66, levelRequirement = 0, cost = { Ward = 0, }, }, + [8] = { baseMultiplier = 0.69, levelRequirement = 0, cost = { Ward = 0, }, }, + [9] = { baseMultiplier = 0.73, levelRequirement = 0, cost = { Ward = 0, }, }, + [10] = { baseMultiplier = 0.77, levelRequirement = 0, cost = { Ward = 0, }, }, + [11] = { baseMultiplier = 0.8, levelRequirement = 0, cost = { Ward = 0, }, }, + [12] = { baseMultiplier = 0.84, levelRequirement = 0, cost = { Ward = 0, }, }, + [13] = { baseMultiplier = 0.89, levelRequirement = 0, cost = { Ward = 0, }, }, + [14] = { baseMultiplier = 0.93, levelRequirement = 0, cost = { Ward = 0, }, }, + [15] = { baseMultiplier = 0.98, levelRequirement = 0, cost = { Ward = 0, }, }, + [16] = { baseMultiplier = 1.03, levelRequirement = 0, cost = { Ward = 0, }, }, + [17] = { baseMultiplier = 1.08, levelRequirement = 0, cost = { Ward = 0, }, }, + [18] = { baseMultiplier = 1.13, levelRequirement = 0, cost = { Ward = 0, }, }, + [19] = { baseMultiplier = 1.19, levelRequirement = 0, cost = { Ward = 0, }, }, + [20] = { baseMultiplier = 1.25, levelRequirement = 0, cost = { Ward = 0, }, }, + [21] = { baseMultiplier = 1.31, levelRequirement = 0, cost = { Ward = 0, }, }, + [22] = { baseMultiplier = 1.38, levelRequirement = 0, cost = { Ward = 0, }, }, + [23] = { baseMultiplier = 1.44, levelRequirement = 0, cost = { Ward = 0, }, }, + [24] = { baseMultiplier = 1.52, levelRequirement = 0, cost = { Ward = 0, }, }, + [25] = { baseMultiplier = 1.59, levelRequirement = 0, cost = { Ward = 0, }, }, + [26] = { baseMultiplier = 1.67, levelRequirement = 0, cost = { Ward = 0, }, }, + [27] = { baseMultiplier = 1.76, levelRequirement = 0, cost = { Ward = 0, }, }, + [28] = { baseMultiplier = 1.84, levelRequirement = 0, cost = { Ward = 0, }, }, + [29] = { baseMultiplier = 1.94, levelRequirement = 0, cost = { Ward = 0, }, }, + [30] = { baseMultiplier = 2.03, levelRequirement = 0, cost = { Ward = 0, }, }, + [31] = { baseMultiplier = 2.13, levelRequirement = 0, cost = { Ward = 0, }, }, + [32] = { baseMultiplier = 2.24, levelRequirement = 0, cost = { Ward = 0, }, }, + [33] = { baseMultiplier = 2.35, levelRequirement = 0, cost = { Ward = 0, }, }, + [34] = { baseMultiplier = 2.47, levelRequirement = 0, cost = { Ward = 0, }, }, + [35] = { baseMultiplier = 2.59, levelRequirement = 0, cost = { Ward = 0, }, }, + [36] = { baseMultiplier = 2.72, levelRequirement = 0, cost = { Ward = 0, }, }, + [37] = { baseMultiplier = 2.86, levelRequirement = 0, cost = { Ward = 0, }, }, + [38] = { baseMultiplier = 3, levelRequirement = 0, cost = { Ward = 0, }, }, + [39] = { baseMultiplier = 3.15, levelRequirement = 0, cost = { Ward = 0, }, }, + [40] = { baseMultiplier = 3.31, levelRequirement = 0, cost = { Ward = 0, }, }, }, statSets = { [1] = { - label = "Mirage Deadeye", + label = "Beam", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "mirage_deadeye", + statDescriptionScope = "voltaic_barrier_triggered_chain_lightning", baseFlags = { + attack = true, + area = true, + duration = true, }, constantStats = { - { "skill_desired_amount_override", 1 }, + { "triggered_on_voltaic_barrier_boosted_projectile_collision", 100 }, + { "active_skill_base_area_of_effect_radius", 20 }, + { "number_of_chains", 3 }, + { "voltaic_barrier_trigger_maximum_number_of_extra_targets", 3 }, + { "active_skill_base_physical_damage_%_to_convert_to_lightning", 100 }, }, stats = { + "triggerable_in_any_set", }, levels = { [1] = { actorLevel = 1, }, @@ -9492,75 +19004,264 @@ skills["MetaMirageDeadeyePlayer"] = { }, } } -skills["SupportMirageDeadeyePlayer"] = { - name = "SupportMirageDeadeyePlayer", - hidden = true, +skills["SupportVoranasSiege"] = { + name = "Vorana's Siege", + description = "Supports skills which Hit targets and have an area of effect, increasing the affected area and causing it to Hit Isolated targets harder.", + color = 4, support = true, - requireSkillTypes = { SkillType.RangedAttack, SkillType.CrossbowAmmoSkill, SkillType.OR, }, + requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, SkillType.OR, SkillType.Damage, SkillType.Attack, SkillType.OR, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.HasUsageCondition, }, - qualityStats = { - }, + excludeSkillTypes = { }, + gemFamily = { "IncreasedAreaOfEffect","ConcentratedEffect",}, + isLineage = true, + flavourText = {"\"Your laws of war are asinine. I shall prevail!", "I'll crush every pawn you put before me.", "Face me, coward! Play by my rules.\"", }, levels = { [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, }, statSets = { [1] = { - label = "SupportMirageDeadeyePlayer", + label = "Vorana's Siege", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "meta_gem_stat_descriptions", + statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_lingering_mirage_damage_+%_final"] = { - mod("Damage", "MORE", nil), + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Isolated" }), }, }, baseFlags = { }, constantStats = { - { "support_lingering_mirage_damage_+%_final", -50 }, - { "skill_disabled_unless_cloned", 1 }, + { "base_skill_area_of_effect_+%", 35 }, + { "support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies", 20 }, }, stats = { - "cannot_consume_power_frenzy_endurance_charges", + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["SupportVruunsAftermath"] = { + name = "Vruun's Aftermath", + description = "Supports Warcries, causing them to destroy Ice Crystals and Ice Fragments. Supported Skills empower additional Attacks if they destroy enough Ice Crystals and Ice Fragments.", + color = 4, + support = true, + requireSkillTypes = { SkillType.Warcry, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "VruunsWarhorn",}, + isLineage = true, + flavourText = {"Vruun tore through Tul's preserved, shattering their", "bodies with reckless malice. \"The will of the Lords!\"", "he roared over his decimation. \"All broods must serve.\"", }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Vruun's Aftermath", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_warcries_empower_x_additional_per_5_total_ice_crystals_or_fragments_destroyed", 3 }, + }, + stats = { + "support_warcries_explode_ice_crystals", + "support_warcries_detonate_your_ice_fragments", + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} +skills["WardboundMinionsPlayer"] = { + name = "Wardbound Minions", + baseTypeName = "Wardbound Minions", + icon = "Art/2DArt/SkillIcons/ExpeditionWardboundMinions.dds", + color = 4, + description = "Spend all your Runic Ward to summon Temporary Wardbound Casters. These Minions target nearby enemies with damaging Cold Spells.", + skillTypes = { [SkillType.Spell] = true, [SkillType.CreatesMinion] = true, [SkillType.Duration] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Minion] = true, }, + minionSkillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Cold] = true, }, + castTime = 0.75, + qualityStats = { + { "wardbound_minion_maximum_number_of_casts", 0.1 }, + }, + levels = { + [1] = { levelRequirement = 0, cost = { Ward = 11, }, }, + [2] = { levelRequirement = 3, cost = { Ward = 12, }, }, + [3] = { levelRequirement = 6, cost = { Ward = 14, }, }, + [4] = { levelRequirement = 10, cost = { Ward = 15, }, }, + [5] = { levelRequirement = 14, cost = { Ward = 17, }, }, + [6] = { levelRequirement = 18, cost = { Ward = 19, }, }, + [7] = { levelRequirement = 22, cost = { Ward = 21, }, }, + [8] = { levelRequirement = 26, cost = { Ward = 23, }, }, + [9] = { levelRequirement = 31, cost = { Ward = 26, }, }, + [10] = { levelRequirement = 36, cost = { Ward = 28, }, }, + [11] = { levelRequirement = 41, cost = { Ward = 31, }, }, + [12] = { levelRequirement = 46, cost = { Ward = 33, }, }, + [13] = { levelRequirement = 52, cost = { Ward = 36, }, }, + [14] = { levelRequirement = 58, cost = { Ward = 39, }, }, + [15] = { levelRequirement = 64, cost = { Ward = 42, }, }, + [16] = { levelRequirement = 66, cost = { Ward = 45, }, }, + [17] = { levelRequirement = 72, cost = { Ward = 48, }, }, + [18] = { levelRequirement = 78, cost = { Ward = 52, }, }, + [19] = { levelRequirement = 84, cost = { Ward = 55, }, }, + [20] = { levelRequirement = 90, cost = { Ward = 59, }, }, + [21] = { levelRequirement = 90, cost = { Ward = 63, }, }, + [22] = { levelRequirement = 90, cost = { Ward = 67, }, }, + [23] = { levelRequirement = 90, cost = { Ward = 72, }, }, + [24] = { levelRequirement = 90, cost = { Ward = 76, }, }, + [25] = { levelRequirement = 90, cost = { Ward = 81, }, }, + [26] = { levelRequirement = 90, cost = { Ward = 86, }, }, + [27] = { levelRequirement = 90, cost = { Ward = 91, }, }, + [28] = { levelRequirement = 90, cost = { Ward = 97, }, }, + [29] = { levelRequirement = 90, cost = { Ward = 102, }, }, + [30] = { levelRequirement = 90, cost = { Ward = 108, }, }, + [31] = { levelRequirement = 90, cost = { Ward = 114, }, }, + [32] = { levelRequirement = 90, cost = { Ward = 121, }, }, + [33] = { levelRequirement = 90, cost = { Ward = 128, }, }, + [34] = { levelRequirement = 90, cost = { Ward = 135, }, }, + [35] = { levelRequirement = 90, cost = { Ward = 142, }, }, + [36] = { levelRequirement = 90, cost = { Ward = 150, }, }, + [37] = { levelRequirement = 90, cost = { Ward = 158, }, }, + [38] = { levelRequirement = 90, cost = { Ward = 166, }, }, + [39] = { levelRequirement = 90, cost = { Ward = 175, }, }, + [40] = { levelRequirement = 90, cost = { Ward = 184, }, }, + }, + statSets = { + [1] = { + label = "Wardbound Minions", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "wardbound_minions", + baseFlags = { + }, + constantStats = { + { "base_skill_effect_duration", 15000 }, + { "wardbound_minion_maximum_number_of_casts", 6 }, + { "movement_speed_+%_final_while_performing_action", -70 }, + { "movement_speed_acceleration_+%_per_second_while_performing_action", 160 }, + { "movement_speed_while_performing_action_locked_duration_%", 50 }, + }, + stats = { + "wardbound_minions_summon_minion_for_every_X_runic_ward_spent", + "base_number_of_wardbound_minions_allowed", + "can_perform_skill_while_moving", + }, + levels = { + [1] = { 11, 15, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 12, 15, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 14, 16, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 15, 16, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 17, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 19, 17, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 21, 18, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 23, 18, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 26, 19, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 28, 19, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 31, 20, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 33, 20, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 36, 21, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 39, 21, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 42, 22, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 45, 22, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 48, 23, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 52, 23, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 55, 24, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 59, 24, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 63, 25, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 67, 25, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 72, 26, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 76, 26, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 81, 27, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 86, 27, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 91, 28, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 97, 28, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 102, 29, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 108, 29, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 114, 30, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 121, 30, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 128, 31, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 135, 31, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 142, 32, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 150, 32, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 158, 33, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 166, 33, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 175, 34, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 184, 35, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["WildProtectorPlayer"] = { + name = "Wild Protector", + baseTypeName = "Wild Protector", + icon = "Art/2DArt/SkillIcons/WildspeakerBearSkill.dds", + fromTree = true, + color = 4, + description = "Call upon a Bear Spirit Companion to maul your foes. The Bear Spirit leaps at enemies to Maim them, Leeches Life with its slam, and periodically roars to Intimidate enemies. The Bear Spirit does not count toward your Companion limit.", + skillTypes = { [SkillType.Companion] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.CreatesCompanion] = true, [SkillType.AttackInPlace] = true, [SkillType.Physical] = true, }, + minionSkillTypes = { [SkillType.Area] = true, [SkillType.Warcry] = true, [SkillType.Attack] = true, [SkillType.Slam] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, + castTime = 0, + qualityStats = { + { "active_skill_minion_damage_+%_final", 1 }, + { "active_skill_minion_life_+%_final", 1 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, + }, + statSets = { + [1] = { + label = "Minion Info", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "skill_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "skill_desired_amount_override", 1 }, + }, + stats = { + "is_resummoning_minion", }, levels = { [1] = { actorLevel = 1, }, @@ -9589,142 +19290,276 @@ skills["SupportMirageDeadeyePlayer"] = { [24] = { actorLevel = 128.58799743652, }, [25] = { actorLevel = 136.875, }, [26] = { actorLevel = 145.38800048828, }, - [27] = { actorLevel = 154.12699890137, }, - [28] = { actorLevel = 163.09199523926, }, - [29] = { actorLevel = 172.28300476074, }, - [30] = { actorLevel = 181.69999694824, }, - [31] = { actorLevel = 191.34300231934, }, - [32] = { actorLevel = 201.21200561523, }, - [33] = { actorLevel = 211.30700683594, }, - [34] = { actorLevel = 221.62800598145, }, - [35] = { actorLevel = 232.17500305176, }, - [36] = { actorLevel = 242.94799804688, }, - [37] = { actorLevel = 253.94700622559, }, - [38] = { actorLevel = 265.17199707031, }, - [39] = { actorLevel = 276.62298583984, }, - [40] = { actorLevel = 288.29998779297, }, - }, - }, - } -} -skills["MirageDeadeyeSpawnPlayer"] = { - name = "", - hidden = true, - icon = "", - skillTypes = { [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Proxy] = true, }, - weaponTypes = { - ["Bow"] = true, - ["Crossbow"] = true, - ["Spear"] = true, - }, - castTime = 0, - qualityStats = { - { "base_skill_effect_duration", 50 }, - }, - levels = { - [1] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [3] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [4] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [5] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [6] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [7] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [8] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [9] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [10] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [11] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [12] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [13] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [14] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [15] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [16] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [17] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [18] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [19] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [20] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [21] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [22] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [23] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [24] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [25] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [26] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [27] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [28] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [29] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [30] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [31] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [32] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [33] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [34] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [35] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [36] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [37] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [38] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [39] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, - [40] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, + }, + }, + } +} +skills["AncientGiftsPlayer"] = { + name = "Wildwood's Gifts", + baseTypeName = "Wildwood's Gifts", + icon = "Art/2DArt/SkillIcons/TheHollowMaskSkill.dds", + fromItem = true, + color = 4, + description = "You are chosen by Azmerian spirits who provide guidance, allowing you to see nearby Ancient Blooms.", + skillTypes = { [SkillType.Buff] = true, [SkillType.Persistent] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.GeneratesRemnants] = true, [SkillType.AttackInPlace] = true, }, + castTime = 1, + qualityStats = { + { "remnant_effect_+%", 0.75 }, + }, + levels = { + [1] = { levelRequirement = 0, }, + [2] = { levelRequirement = 3, }, + [3] = { levelRequirement = 6, }, + [4] = { levelRequirement = 10, }, + [5] = { levelRequirement = 14, }, + [6] = { levelRequirement = 18, }, + [7] = { levelRequirement = 22, }, + [8] = { levelRequirement = 26, }, + [9] = { levelRequirement = 31, }, + [10] = { levelRequirement = 36, }, + [11] = { levelRequirement = 41, }, + [12] = { levelRequirement = 46, }, + [13] = { levelRequirement = 52, }, + [14] = { levelRequirement = 58, }, + [15] = { levelRequirement = 64, }, + [16] = { levelRequirement = 66, }, + [17] = { levelRequirement = 72, }, + [18] = { levelRequirement = 78, }, + [19] = { levelRequirement = 84, }, + [20] = { levelRequirement = 90, }, + [21] = { levelRequirement = 90, }, + [22] = { levelRequirement = 90, }, + [23] = { levelRequirement = 90, }, + [24] = { levelRequirement = 90, }, + [25] = { levelRequirement = 90, }, + [26] = { levelRequirement = 90, }, + [27] = { levelRequirement = 90, }, + [28] = { levelRequirement = 90, }, + [29] = { levelRequirement = 90, }, + [30] = { levelRequirement = 90, }, + [31] = { levelRequirement = 90, }, + [32] = { levelRequirement = 90, }, + [33] = { levelRequirement = 90, }, + [34] = { levelRequirement = 90, }, + [35] = { levelRequirement = 90, }, + [36] = { levelRequirement = 90, }, + [37] = { levelRequirement = 90, }, + [38] = { levelRequirement = 90, }, + [39] = { levelRequirement = 90, }, + [40] = { levelRequirement = 90, }, }, statSets = { [1] = { - label = "Mirage", + label = "Wildwood's Gifts", incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "create_mirage_deadeye", + statDescriptionScope = "ancient_gifts", baseFlags = { }, - stats = { - "base_skill_effect_duration", - "triggered_by_lingering_mirage", - "hide_minion_frame", - "quality_display_lingering_mirage_is_gem", - "base_deal_no_damage_over_time", + constantStats = { + { "skill_desired_amount_override", 1 }, + { "breach_flame_spawn_radius", 35 }, + { "base_remnant_duration_ms", 25000 }, + { "ancient_gifts_life_flask_charges_restored", 5 }, + { "ancient_gifts_mana_flask_charges_restored", 5 }, + { "ancient_gifts_charm_charges_restored", 5 }, + { "breach_walk_base_visibility_range", 50 }, }, - notMinionStat = { - "base_skill_effect_duration", + stats = { + "breach_flame_spawn_rate_ms", + "remnant_effect_+%", }, levels = { - [1] = { 4050, statInterpolation = { 1, }, actorLevel = 1, }, - [2] = { 4100, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, - [3] = { 4150, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, - [4] = { 4200, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, - [5] = { 4250, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, - [6] = { 4300, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, - [7] = { 4350, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, - [8] = { 4400, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, - [9] = { 4450, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, - [10] = { 4500, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, - [11] = { 4550, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, - [12] = { 4600, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, - [13] = { 4650, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, - [14] = { 4700, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, - [15] = { 4750, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, - [16] = { 4800, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, - [17] = { 4850, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, - [18] = { 4900, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, - [19] = { 4950, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, - [20] = { 5000, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, - [21] = { 5050, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, - [22] = { 5100, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, - [23] = { 5150, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, - [24] = { 5200, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, - [25] = { 5250, statInterpolation = { 1, }, actorLevel = 136.875, }, - [26] = { 5300, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, - [27] = { 5350, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, - [28] = { 5400, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, - [29] = { 5450, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, - [30] = { 5500, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, - [31] = { 5550, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, - [32] = { 5600, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, - [33] = { 5650, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, - [34] = { 5700, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, - [35] = { 5750, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, - [36] = { 5800, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, - [37] = { 5850, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, - [38] = { 5900, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, - [39] = { 5950, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, - [40] = { 6000, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + [1] = { 1400, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 1390, 10, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 1380, 15, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1370, 20, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 1360, 25, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 1350, 30, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 1340, 35, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 1330, 40, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 1320, 45, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 1310, 50, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 1300, 55, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 1290, 60, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 1280, 65, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 1270, 70, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 1260, 75, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 1250, 80, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 1240, 85, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 1230, 90, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 1220, 95, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 1210, 100, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 1200, 105, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 1190, 110, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 1180, 115, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 1170, 120, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 1160, 125, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 1150, 130, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 1140, 135, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 1130, 140, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 1120, 145, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 1110, 150, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 1105, 155, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 1100, 160, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1095, 165, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1090, 170, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1085, 175, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1080, 180, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 1075, 185, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 1070, 190, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 1065, 195, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 1060, 200, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } } + skills["EnemyExplode"] = { + name = "On Kill Monster Explosion", + hidden = true, + color = 4, + skillTypes = { [SkillType.Damage] = true, [SkillType.Area] = true, }, + castTime = 0, + levels = { + [1] = { damageEffectiveness = 0, baseMultiplier = 1, levelRequirement = 1, } + }, + preDamageFunc = function(activeSkill, output) + output.ExplodeChance = 0 + local statSet = activeSkill.activeEffect.statSet or activeSkill.activeEffect.statSetCalcs + if statSet.index ~= 3 then + local allExplodeMods = activeSkill.skillModList:Tabulate("LIST", activeSkill.skillCfg, "ExplodeMod") + for _, explodeMod in ipairs(allExplodeMods) do + local activeEffectSource = activeSkill.activeEffect.srcInstance.explodeSource.modSource or "Tree:"..activeSkill.activeEffect.srcInstance.explodeSource.id + if explodeMod.mod.source == activeEffectSource then + local explodeMod = explodeMod.value + if explodeMod.type == "RandomElement" then + activeSkill.skillData["FireEffectiveExplodePercentage"] = explodeMod.amount / 3 + activeSkill.skillData["ColdEffectiveExplodePercentage"] = explodeMod.amount / 3 + activeSkill.skillData["LightningEffectiveExplodePercentage"] = explodeMod.amount / 3 + else + activeSkill.skillData[explodeMod.type.."EffectiveExplodePercentage"] = explodeMod.amount + end + output.ExplodeChance = statSet.index == 2 and 1 or explodeMod.value / 100 + end + end + else + local typeAmountChances = { } + local explodeModList = activeSkill.skillModList:List(activeSkill.skillCfg, "ExplodeMod") + for _, explodeMod in ipairs(explodeModList) do + local amountChance = typeAmountChances[explodeMod.type] or { } + amountChance[explodeMod.amount] = (amountChance[explodeMod.amount] or 0) + explodeMod.value / 100 + typeAmountChances[explodeMod.type] = amountChance + end + for type, amountChance in pairs(typeAmountChances) do + local physExplodeChance = 0 + for amount, chance in pairs(amountChance) do + local amountXChance = amount * chance + if type == "RandomElement" then + activeSkill.skillData["FireEffectiveExplodePercentage"] = (activeSkill.skillData["FireEffectiveExplodePercentage"] or 0) + amountXChance / 3 + activeSkill.skillData["ColdEffectiveExplodePercentage"] = (activeSkill.skillData["ColdEffectiveExplodePercentage"] or 0) + amountXChance / 3 + activeSkill.skillData["LightningEffectiveExplodePercentage"] = (activeSkill.skillData["LightningEffectiveExplodePercentage"] or 0) + amountXChance / 3 + else + activeSkill.skillData[type.."EffectiveExplodePercentage"] = (activeSkill.skillData[type.."EffectiveExplodePercentage"] or 0) + amountXChance + end + if type == "Physical" then + physExplodeChance = 1 - ((1 - physExplodeChance) * (1 - chance)) + end + output.ExplodeChance = 1 - ((1 - output.ExplodeChance) * (1 - chance)) + end + if type == "Physical" and physExplodeChance ~= 0 then + activeSkill.skillModList:NewMod("CalcArmourAsThoughDealing", "MORE", 100 / math.min(physExplodeChance, 1) - 100) + end + end + end + output.ExplodeChance = math.min(output.ExplodeChance * 100, 100) + end, + statSets = { + [1] = { + label = "This Source Only", + baseFlags = { + area = true, + monsterExplode = true, + }, + baseMods = { + skill("radius", 22), + skill("showAverage", true), + skill("corpseExplosionLifeMultiplier", 0), + skill("explodeCorpse", true), + skill("hitChanceIsExplodeChance", true), + }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "display_skill_deals_secondary_damage", + "damage_cannot_be_reflected", + "skill_can_add_multiple_charges_per_action", + }, + levels = { + [1] = { }, + }, + }, + [2] = { + label = "This Source Only, Ignoring Chance", + baseFlags = { + area = true, + monsterExplode = true, + }, + baseMods = { + skill("radius", 22), + skill("showAverage", true), + skill("corpseExplosionLifeMultiplier", 0), + skill("explodeCorpse", true), + }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "display_skill_deals_secondary_damage", + "damage_cannot_be_reflected", + "skill_can_add_multiple_charges_per_action", + }, + levels = { + [1] = { }, + }, + }, + [3] = { + label = "Average of All Sources", + baseFlags = { + area = true, + monsterExplode = true, + }, + baseMods = { + skill("radius", 22), + skill("showAverage", true), + skill("corpseExplosionLifeMultiplier", 0), + skill("explodeCorpse", true), + }, + stats = { + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + "display_skill_deals_secondary_damage", + "damage_cannot_be_reflected", + "skill_can_add_multiple_charges_per_action", + }, + levels = { + [1] = { }, + }, + }, + } + } + skills["ThornsPlayer"] = { name = "Thorns", hidden = true, diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index d68804aba5..3bdedaabfe 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -241,6 +241,7 @@ skills["AzmeriPictBowRainOfSpores"] = { "cannot_pierce", "action_attack_or_cast_time_uses_animation_length", "base_cannot_be_blocked", + "skill_allow_base_use_time_when_using_anim_length", }, levels = { [1] = { 16.666667039196, statInterpolation = { 3, }, actorLevel = 1, }, @@ -577,7 +578,7 @@ skills["CultistBeastSunder"] = { qualityStats = { }, levels = { - [1] = { attackSpeedMultiplier = -25, baseMultiplier = 1.75, levelRequirement = 0, }, + [1] = { attackSpeedMultiplier = -25, baseMultiplier = 1.4, levelRequirement = 0, }, }, statSets = { [1] = { @@ -588,6 +589,11 @@ skills["CultistBeastSunder"] = { triggerable = true, attack = true, }, + constantStats = { + { "apply_X_armour_break_on_hit", 10000 }, + { "maim_on_hit_%", 50 }, + { "voll_slam_damage_+%_final_at_centre", 30 }, + }, stats = { "is_area_damage", }, @@ -971,20 +977,19 @@ skills["ExpeditionGroundLaser"] = { { "spell_maximum_action_distance_+%", -65 }, }, stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", - "active_skill_ignite_effect_+%_final", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", "is_area_damage", "cannot_stun", "disable_visual_hit_effect", }, notMinionStat = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 50, statInterpolation = { 3, 3, 1, }, actorLevel = 1, }, - [2] = { 0.80000001192093, 1.2000000476837, 200, statInterpolation = { 3, 3, 1, }, actorLevel = 68, }, + [1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, }, + [2] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 68, }, }, }, } @@ -2436,7 +2441,7 @@ skills["GPSPaleWalkerWave"] = { name = "Wave", hidden = true, icon = "", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -2453,6 +2458,7 @@ skills["GPSPaleWalkerWave"] = { baseFlags = { triggerable = true, hit = true, + spell = true, }, constantStats = { { "knockback_distance_+%", 175 }, @@ -3593,7 +3599,6 @@ skills["MMSBaneSapling"] = { }, constantStats = { { "projectile_spread_radius", 5 }, - { "active_skill_base_physical_damage_%_to_convert_to_chaos", 40 }, { "spell_maximum_action_distance_+%", -40 }, { "monster_projectile_variation", 1340 }, }, @@ -3605,6 +3610,7 @@ skills["MMSBaneSapling"] = { "projectile_uses_contact_position", "use_scaled_contact_offset", "projectile_ballistic_angle_from_target_distance", + "base_deal_no_damage", }, notMinionStat = { "spell_minimum_base_physical_damage", @@ -3724,7 +3730,7 @@ skills["MMSVaalGuardGrenade"] = { hidden = true, icon = "Art/2DArt/SkillIcons/ExplosiveGrenade.dds", description = "Fire a bouncing Grenade that unleashes a devastating fiery blast when its fuse expires.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Detonator] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.Detonator] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -3771,7 +3777,7 @@ skills["MMSVaalGuardOilTrap"] = { hidden = true, icon = "Art/2DArt/SkillIcons/OilGrenade.dds", description = "Fire a bouncing Grenade that bursts in a spray of Oil when the fuse expires or when it impacts an Enemy, dealing minimal damage but covering the ground and nearby enemies in Oil. Oil created this way can be Ignited by Detonator Skills or Ignited Ground.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileNumber] = true, [SkillType.ProjectileSpeed] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, [SkillType.Grenade] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Projectile] = true, [SkillType.MirageArcherCanUse] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -4267,8 +4273,8 @@ skills["MPSArmourCasterBasic"] = { { "base_number_of_projectiles", 1 }, }, stats = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", "base_is_projectile", "projectile_uses_contact_position", "use_scaled_contact_offset", @@ -4276,11 +4282,11 @@ skills["MPSArmourCasterBasic"] = { "distribute_projectiles_over_contact_points", }, notMinionStat = { - "spell_minimum_base_fire_damage", - "spell_maximum_base_fire_damage", + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, statInterpolation = { 3, 3, }, actorLevel = 1, }, + [1] = { 0.5, 1.5, statInterpolation = { 3, 3, }, actorLevel = 1, }, }, }, } @@ -4638,6 +4644,7 @@ skills["MPSBreachEliteBoneProjectile"] = { constantStats = { { "monster_projectile_variation", 1361 }, { "spell_maximum_action_distance_+%", -30 }, + { "monster_breaks_brequel_npc_concentration", 1 }, }, stats = { "spell_minimum_base_cold_damage", @@ -4686,6 +4693,7 @@ skills["MPSBreachEliteFallenLunarisMonsterChaosSpark"] = { { "monster_projectile_variation", 1360 }, { "number_of_additional_projectiles", 5 }, { "projectile_spread_radius", 12 }, + { "projectile_ballistic_angle_override", 1 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -4694,9 +4702,8 @@ skills["MPSBreachEliteFallenLunarisMonsterChaosSpark"] = { "projectile_uses_contact_position", "maintain_projectile_direction_when_using_contact_position", "action_attack_or_cast_time_uses_animation_length", - "projectile_ballistic_angle_from_reference_event", - "ballistic_projectiles_always_bounce", "distribute_projectiles_over_contact_points", + "ballistic_projectiles_always_bounce", }, notMinionStat = { "spell_minimum_base_chaos_damage", @@ -6260,7 +6267,7 @@ skills["ShellMonsterSprayMortar"] = { "projectile_uses_contact_direction", "base_skill_can_be_blocked", "base_skill_can_be_avoided_by_dodge_roll", - "no_additional_projectiles", + "number_of_projectiles_cannot_be_modified", }, notMinionStat = { "spell_minimum_base_fire_damage", @@ -6324,11 +6331,10 @@ skills["ShellMonsterSprayMortarPoison"] = { } } skills["SkelemancerSkelenado"] = { - name = "Spark", + name = "", hidden = true, - icon = "Art/2DArt/SkillIcons/SorceressSpark.dds", - description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire. Consumes a Cold Infusion if possible to fire many sparks in a circle.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + icon = "", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -6337,11 +6343,11 @@ skills["SkelemancerSkelenado"] = { }, statSets = { [1] = { - label = "Spark", + label = "", baseEffectiveness = 3, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, - statDescriptionScope = "spark_statset_0", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, projectile = true, @@ -6886,7 +6892,7 @@ skills["VaalHumanoidShockRifle"] = { statSets = { [1] = { label = "Shock Rifle", - baseEffectiveness = 5, + baseEffectiveness = 4.5, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, statDescriptionScope = "skill_stat_descriptions", @@ -6900,6 +6906,7 @@ skills["VaalHumanoidShockRifle"] = { { "spectral_throw_deceleration_override", 100 }, { "spell_maximum_action_distance_+%", -45 }, { "base_skill_effect_duration", 200 }, + { "active_skill_cast_speed_+%_final", -12 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -6920,9 +6927,8 @@ skills["VaalHumanoidShockRifle"] = { skills["VaalZealotLightningSpark"] = { name = "Spark", hidden = true, - icon = "Art/2DArt/SkillIcons/SorceressSpark.dds", - description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire. Consumes a Cold Infusion if possible to fire many sparks in a circle.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + icon = "", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.AttackInPlace] = true, }, castTime = 1.2, qualityStats = { }, @@ -6935,7 +6941,7 @@ skills["VaalZealotLightningSpark"] = { baseEffectiveness = 2.8499999046326, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, - statDescriptionScope = "spark_statset_0", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, projectile = true, @@ -6971,9 +6977,8 @@ skills["VaalZealotLightningSpark"] = { skills["VaalZealotLightningSparkNova"] = { name = "Spark Nova", hidden = true, - icon = "Art/2DArt/SkillIcons/SorceressSpark.dds", - description = "Launch a spray of sparking Projectiles that travel erratically along the ground until they hit an enemy or expire. Consumes a Cold Infusion if possible to fire many sparks in a circle.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.UsableWhileMoving] = true, }, + icon = "", + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Unleashable] = true, [SkillType.Invokable] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { }, @@ -6986,7 +6991,7 @@ skills["VaalZealotLightningSparkNova"] = { baseEffectiveness = 3, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, - statDescriptionScope = "spark_statset_0", + statDescriptionScope = "skill_stat_descriptions", baseFlags = { spell = true, projectile = true, @@ -7438,7 +7443,7 @@ skills["TBExcavatorSceptreErraticBeam"] = { statSets = { [1] = { label = "Beam", - baseEffectiveness = 1.25, + baseEffectiveness = 0.55000001192093, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, statDescriptionScope = "skill_stat_descriptions", diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index 514bcfa883..e1fc490d4b 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -417,7 +417,7 @@ skills["SupportAmmoConservationPlayerFour"] = { baseFlags = { }, constantStats = { - { "chance_to_load_a_bolt_on_killing_an_enemy_%", 100 }, + { "chance_to_load_a_bolt_on_killing_an_enemy_%", 25 }, }, stats = { }, @@ -429,12 +429,12 @@ skills["SupportAmmoConservationPlayerFour"] = { } skills["SupportAtzirisImpatiencePlayer"] = { name = "Atziri's Impatience", - description = "Supports Skills with Cooldowns, dramatically increasing the rate at which those Cooldowns Recover, but causing you to lose Life, Mana, and Energy Shield when they are used. Cannot Support Meta Skills or modify the Skills of Minions.", + description = "Supports Skills you use yourself that have Cooldowns, dramatically increasing the rate at which those Cooldowns Recover, but causing you to lose Life, Mana, and Energy Shield when they are used. Cannot Support Meta Skills or Persistent Skills, or modify the Skills of Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Meta, SkillType.Proxy, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Meta, SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "CooldownRecovery",}, isLineage = true, flavourText = {"\"Those who bored the Queen suffered an excessive punishment:", "everyone they had ever known would be killed, effectively", "erasing their life. So, no matter the cost... none kept her waiting.\"", }, @@ -668,7 +668,7 @@ skills["PlagueBurstPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -701,7 +701,7 @@ skills["SupportCadencePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.NoAttackOrCastTime, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.NoAttackOrCastTime, }, gemFamily = { "Cadence",}, ignoreMinionTypes = true, levels = { @@ -765,7 +765,7 @@ skills["TriggeredCaltropsPlayer"] = { qualityStats = { }, levels = { - [1] = { attackTime = 1, levelRequirement = 0, }, + [1] = { attackTime = 1, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1007,46 +1007,46 @@ skills["TriggeredChargedMarkPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1290,12 +1290,12 @@ skills["SupportCloseCombatPlayerTwo"] = { } skills["SupportComboFinisherPlayer"] = { name = "Combo Finisher I", - description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal more damage. Cannot support skills which already Combo, or Triggered Skills.", + description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal more damage. Cannot support skills which already Combo.", color = 2, support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboFinisher, SkillType.HasUsageCondition, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Cooldown, SkillType.Herald, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Spell, SkillType.Warcry, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Cooldown, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, gemFamily = { "ComboFinisher",}, ignoreMinionTypes = true, levels = { @@ -1323,12 +1323,12 @@ skills["SupportComboFinisherPlayer"] = { } skills["SupportComboFinisherPlayerTwo"] = { name = "Combo Finisher II", - description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal massively more damage. Cannot support skills which already Combo, or Triggered Skills.", + description = "Supports Melee Attacks you use yourself. Supported Skills cannot be used until enough Combo has been built up, but deal massively more damage. Cannot support skills which already Combo.", color = 2, support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByComboFinisher, SkillType.HasUsageCondition, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Cooldown, SkillType.Herald, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Spell, SkillType.Warcry, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Cooldown, SkillType.HasUsageCondition, SkillType.SupportedByComboFinisher, SkillType.NOT, SkillType.AND, }, gemFamily = { "ComboFinisher",}, ignoreMinionTypes = true, levels = { @@ -1356,13 +1356,14 @@ skills["SupportComboFinisherPlayerTwo"] = { } skills["SupportCommiseratePlayer"] = { name = "Commiserate", - description = "Supports Skills you use yourself or Trigger, which can cause Damaging Hits. Supported Skills inflict more powerful Ailments if you are afflicted with those Ailments when you inflict them, while also removing from you any Ailment that they inflict.", + description = "Supports Skills you use or Trigger yourself, which can cause Damaging Hits. Supported Skills inflict more powerful Ailments if you are afflicted with those Ailments when you inflict them, while also removing from you any Ailment that they inflict.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.DegenOnlySpellDamage, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "Commiserate",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -1431,7 +1432,7 @@ skills["SupportCooldownRecoveryPlayer"] = { description = "Supports skills with Cooldowns, increasing the rate at which those Cooldowns Recover. Cannot modify the skills of minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "CooldownRecovery",}, @@ -1467,7 +1468,7 @@ skills["SupportCooldownRecoveryPlayerTwo"] = { description = "Supports skills with Cooldowns, increasing the rate at which those Cooldowns Recover. Cannot modify the skills of minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "CooldownRecovery",}, @@ -1599,7 +1600,7 @@ skills["SupportCullingStrikePlayerTwo"] = { } skills["SupportCulminationPlayer"] = { name = "Culmination I", - description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Does not modify Skills used by Minions.", + description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Cannot modify the Skills of Minions.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, @@ -1617,7 +1618,7 @@ skills["SupportCulminationPlayer"] = { baseFlags = { }, constantStats = { - { "support_damage_+%_final_per_combo_stack", 3 }, + { "support_culmination_damage_+%_final_per_combo_stack", 3 }, { "base_combo_stacks_decay_delay_ms", 4000 }, { "skill_maximum_number_of_combo_stacks", 10 }, }, @@ -1631,7 +1632,7 @@ skills["SupportCulminationPlayer"] = { } skills["SupportCulminationPlayerTwo"] = { name = "Culmination II", - description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Does not modify Skills used by Minions.", + description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills reset their Combo on use, dealing more Damage the higher Combo you had on use. Cannot support skills which already gain Combo. Cannot modify the Skills of Minions.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, @@ -1649,10 +1650,9 @@ skills["SupportCulminationPlayerTwo"] = { baseFlags = { }, constantStats = { - { "support_damage_+%_final_per_combo_stack", 2 }, - { "base_combo_stacks_decay_delay_ms", 4000 }, - { "combo_falloff_speed_+%", -50 }, - { "skill_maximum_number_of_combo_stacks", 20 }, + { "support_culmination_damage_+%_final_per_combo_stack", 4 }, + { "base_combo_stacks_decay_delay_ms", 6000 }, + { "skill_maximum_number_of_combo_stacks", 10 }, }, stats = { }, @@ -1929,10 +1929,15 @@ skills["SupportPietysMercyPlayer"] = { label = "Dominus' Grasp", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_dominus_grasp_chain_count_+%_final"] = { + mod("ChainCountMax", "MORE", nil), + }, + }, baseFlags = { }, constantStats = { - { "chains_hit_X_more_times", 1 }, + { "support_dominus_grasp_chain_count_+%_final", 100 }, }, stats = { }, @@ -2002,6 +2007,163 @@ skills["SupportElectrocutePlayer"] = { }, } } +skills["SupportEonyrsThunderPlayer"] = { + name = "Eonyr's Thunder", + description = "Supports any Skill which can deal damage. Lightning damage from Supported Skills can inflict Electrocute, but Supported Skills cannot inflict Shock. Enemies slain while Electrocuted by Supported Skills explode, dealing a percentage of their maximum Life as Lightning damage.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Electrocute",}, + isLineage = true, + flavourText = {"\"How? Well, the Great Wyvern granted her passage, of course.", "Eonyr and his flock soar the winds between us and the Moon.", "The roar of the storm... that's them, as they hunt and call.\"", }, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Eonyr's Thunder", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "base_lightning_damage_can_electrocute", + "never_shock", + "support_electrocute_lineage_triggers_explosion", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredLightningDetonateDeadPlayer"] = { + name = "Voltaic Fulmination", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + skillTypes = { [SkillType.SkillGrantedBySupport] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Spell] = true, [SkillType.Cooldown] = true, }, + castTime = 0, + qualityStats = { + }, + levels = { + [1] = { cooldown = 0.3, levelRequirement = 0, storedUses = 5, }, + [2] = { cooldown = 0.295, levelRequirement = 0, storedUses = 5, }, + [3] = { cooldown = 0.29, levelRequirement = 0, storedUses = 5, }, + [4] = { cooldown = 0.285, levelRequirement = 0, storedUses = 5, }, + [5] = { cooldown = 0.28, levelRequirement = 0, storedUses = 5, }, + [6] = { cooldown = 0.275, levelRequirement = 0, storedUses = 5, }, + [7] = { cooldown = 0.27, levelRequirement = 0, storedUses = 5, }, + [8] = { cooldown = 0.265, levelRequirement = 0, storedUses = 5, }, + [9] = { cooldown = 0.26, levelRequirement = 0, storedUses = 5, }, + [10] = { cooldown = 0.255, levelRequirement = 0, storedUses = 5, }, + [11] = { cooldown = 0.25, levelRequirement = 0, storedUses = 5, }, + [12] = { cooldown = 0.245, levelRequirement = 0, storedUses = 5, }, + [13] = { cooldown = 0.24, levelRequirement = 0, storedUses = 5, }, + [14] = { cooldown = 0.235, levelRequirement = 0, storedUses = 5, }, + [15] = { cooldown = 0.23, levelRequirement = 0, storedUses = 5, }, + [16] = { cooldown = 0.225, levelRequirement = 0, storedUses = 5, }, + [17] = { cooldown = 0.22, levelRequirement = 0, storedUses = 5, }, + [18] = { cooldown = 0.215, levelRequirement = 0, storedUses = 5, }, + [19] = { cooldown = 0.21, levelRequirement = 0, storedUses = 5, }, + [20] = { cooldown = 0.205, levelRequirement = 0, storedUses = 5, }, + [21] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, + [22] = { cooldown = 0.195, levelRequirement = 0, storedUses = 5, }, + [23] = { cooldown = 0.19, levelRequirement = 0, storedUses = 5, }, + [24] = { cooldown = 0.185, levelRequirement = 0, storedUses = 5, }, + [25] = { cooldown = 0.18, levelRequirement = 0, storedUses = 5, }, + [26] = { cooldown = 0.175, levelRequirement = 0, storedUses = 5, }, + [27] = { cooldown = 0.17, levelRequirement = 0, storedUses = 5, }, + [28] = { cooldown = 0.165, levelRequirement = 0, storedUses = 5, }, + [29] = { cooldown = 0.16, levelRequirement = 0, storedUses = 5, }, + [30] = { cooldown = 0.155, levelRequirement = 0, storedUses = 5, }, + [31] = { cooldown = 0.15, levelRequirement = 0, storedUses = 5, }, + [32] = { cooldown = 0.145, levelRequirement = 0, storedUses = 5, }, + [33] = { cooldown = 0.14, levelRequirement = 0, storedUses = 5, }, + [34] = { cooldown = 0.135, levelRequirement = 0, storedUses = 5, }, + [35] = { cooldown = 0.13, levelRequirement = 0, storedUses = 5, }, + [36] = { cooldown = 0.125, levelRequirement = 0, storedUses = 5, }, + [37] = { cooldown = 0.12, levelRequirement = 0, storedUses = 5, }, + [38] = { cooldown = 0.115, levelRequirement = 0, storedUses = 5, }, + [39] = { cooldown = 0.11, levelRequirement = 0, storedUses = 5, }, + [40] = { cooldown = 0.105, levelRequirement = 0, storedUses = 5, }, + }, + statSets = { + [1] = { + label = "Voltaic Fulmination", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "triggered_lightning_detonate_dead", + statMap = { + ["skill_specific_stat_description_mode"] = { + skill("corpseExplosionLifeMultiplier", nil), + div = 100, + }, + }, + baseFlags = { + area = true, + hit = true, + }, + baseMods = { + skill("explodeCorpse", true), + skill("corpseExplosionDamageType", "Lightning"), + }, + constantStats = { + { "triggered_by_support_electrocute_lineage_%", 100 }, + { "explosion_delay_ms", 400 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "skill_specific_stat_description_mode", + "triggerable_in_any_set", + "usable_while_shapeshifted", + "cannot_electrocute", + }, + levels = { + [1] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 15, 5, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 15, 6, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 16, 6, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 16, 7, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 16, 7, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 17, 8, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 17, 8, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 17, 9, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 18, 9, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 18, 10, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 18, 10, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 19, 11, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 19, 11, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 19, 12, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 20, 12, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 20, 13, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 20, 13, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 21, 14, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 21, 14, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 21, 15, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 22, 15, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 22, 15, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 22, 15, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 22, 16, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 22, 16, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 22, 16, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 23, 16, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 23, 17, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 23, 17, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 23, 17, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 23, 17, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 23, 18, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 24, 18, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 24, 18, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 24, 18, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 24, 19, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 24, 19, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 24, 19, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 25, 19, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["SupportEscalatingPoisonPlayer"] = { name = "Escalating Poison", description = "Supports any skill that Hits enemies, allowing it to inflict an extra Poison on enemies but shortening the duration of those Poisons.", @@ -2049,8 +2211,9 @@ skills["SupportFerocityPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.CrossbowAmmoSkill, SkillType.Attack, }, addSkillTypes = { SkillType.SupportedByFerocity, }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Minion, SkillType.SummonsTotem, SkillType.SupportedByTumult, SkillType.UsedByTotem, SkillType.Persistent, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByFerocity, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.SupportedByTumult, SkillType.SkillConsumesFrenzyChargesOnUse, SkillType.SupportedByFerocity, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Ferocity",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -2119,12 +2282,12 @@ skills["SupportForkPlayer"] = { } skills["SupportFrenziedRipostePlayer"] = { name = "Frenzied Riposte", - description = "Supports Attacks you use yourself or that you Trigger, causing them to Consume the Parried Debuff on Hit to grant you a Frenzy Charge. Cannot support Skills which already Consume the Parried Debuff.", + description = "Supports Attacks you use or Trigger yourself, causing them to Consume the Parried Debuff on Hit to grant you a Frenzy Charge. Cannot support Skills which already Consume the Parried Debuff.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SkillConsumesParried, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, SkillType.SkillConsumesParried, }, gemFamily = { "Retort",}, ignoreMinionTypes = true, levels = { @@ -2183,11 +2346,11 @@ skills["TriggeredSupportFrozenSpiteIceFragmentPlayer"] = { icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", description = "Explodes to deal Cold Damage in an area after a short delay, based on the life of the slain frozen Enemy.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Projectile] = true, [SkillType.DetonatesAfterTime] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.FrozenSpite] = true, [SkillType.AttackInPlace] = true, }, - castTime = 1, + castTime = 0, qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.75, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -2226,12 +2389,12 @@ skills["TriggeredSupportFrozenSpiteIceFragmentPlayer"] = { } skills["SupportGarukhansResolvePlayer"] = { name = "Garukhan's Resolve", - description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills have a maximum Critical Hit chance, but will Bifurcate Critical Hit Chance. Cannot support Skills which have a Cooldown or that are Triggered, and does not modify skills used by Minions.", + description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills have a maximum Critical Hit chance, but will Bifurcate Critical Hit Chance.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, }, - addSkillTypes = { SkillType.SupportedByGarukhan, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByGarukhan, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.Triggered, SkillType.UsedByTotem, }, + addSkillTypes = { SkillType.SupportedByGarukhan, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByGarukhan, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "GarukhansResolve",}, isLineage = true, flavourText = {"At the last, her hope gone - but not her resolve - she threw her", "beloved Tangletongue. That was the day a god bled. For this, the", "Great Roc graced a Maraketh warrior with a feather for the first time.", }, @@ -2369,12 +2532,12 @@ skills["SupportHeightenedChargesPlayer"] = { } skills["SupportHitAndRunPlayer"] = { name = "Hit and Run", - description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills can only be used after you have moved a certain distance, but have massively increased Skill Speed. Cannot support Skills which have a Cooldown or that are Triggered, and does not modify skills used by Minions.", + description = "Supports Attack Skills you use yourself which do not already have some Condition for use. Supported Skills can only be used after you have moved a certain distance, but have massively increased Skill Speed. Cannot support Skills which have a cooldown.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByMobileAssault, SkillType.NOT, SkillType.AND, SkillType.Instant, SkillType.Cooldown, }, gemFamily = { "HitAndRun",}, ignoreMinionTypes = true, levels = { @@ -2437,13 +2600,14 @@ skills["SupportImpalePlayer"] = { } skills["SupportChargeInhibitionPlayer"] = { name = "Inhibitor", - description = "Supports any Skill you use yourself or that you Trigger. Supported Skills cannot consume Charges or Infusion by any means. Cannot Support Skills which require Charges or Infusion to be used.", + description = "Supports any Skill you use or Trigger yourself. Supported Skills cannot consume Charges or Infusion by any means. Cannot Support Skills which require Charges or Infusion to be used.", color = 2, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, SkillType.Spell, SkillType.DegenOnlySpellDamage, }, addSkillTypes = { SkillType.CannotConsumeCharges, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.RequiresCharges, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, SkillType.RequiresCharges, }, gemFamily = { "Inhibitor",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -2481,7 +2645,7 @@ skills["SupportInnervatePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Innervate",}, ignoreMinionTypes = true, levels = { @@ -2843,7 +3007,7 @@ skills["SupportMaimPlayer"] = { } skills["SupportMaladyPlayer"] = { name = "Malady", - description = "Supports Skills which can cause Damaging Hits, causing base chance to inflict Bleed with Supported Skills to instead apply to base chance to Poison, and causing base chance to Poison to instead apply to Bleed.", + description = "Supports Skills which can cause Damaging Hits, causing base chance to inflict Bleeding with Supported Skills to instead apply to base chance to Poison, and causing base chance to Poison to instead apply to Bleeding.", color = 2, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, @@ -2938,7 +3102,7 @@ skills["SupportMomentumPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Momentum",}, ignoreMinionTypes = true, levels = { @@ -3214,7 +3378,7 @@ skills["SupportNovaProjectilesTwoPlayer"] = { } skills["SupportIncreaseLimitPlayer"] = { name = "Overabundance I", - description = "Supports skills which can have a Limited number of effects active at once, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", + description = "Supports Skills which have a Limit, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", color = 2, support = true, requireSkillTypes = { SkillType.Limit, }, @@ -3250,7 +3414,7 @@ skills["SupportIncreaseLimitPlayer"] = { } skills["SupportIncreaseLimitPlayerTwo"] = { name = "Overabundance II", - description = "Supports skills which can have a Limited number of effects active at once, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", + description = "Supports Skills which have a Limit, increasing that Limit at the cost of their duration. Only applies to restrictions that use the word \"Limit\".", color = 2, support = true, requireSkillTypes = { SkillType.Limit, }, @@ -3322,8 +3486,9 @@ skills["SupportOverextendPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Overextend",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 15, }, }, @@ -3812,46 +3977,46 @@ skills["TriggeredPoisonSporesPustule"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [3] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [4] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [5] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [6] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [7] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [8] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [9] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [10] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [11] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [12] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [13] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [14] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [15] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [16] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [17] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [18] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [19] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [20] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [21] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [22] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [23] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [24] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [25] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [26] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [27] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [28] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [29] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [30] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [31] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [32] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [33] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [34] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [35] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [36] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [37] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [38] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [39] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, - [40] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 0.1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -4561,9 +4726,9 @@ skills["SupportCombatReloadPlayer"] = { baseFlags = { }, constantStats = { - { "crossbow_load_x_bolts_on_dodge", 5 }, - { "support_double_barrel_number_of_crossbow_bolts_+", 4 }, - { "attack_speed_+%", 20 }, + { "crossbow_load_x_bolts_on_dodge", 4 }, + { "support_double_barrel_number_of_crossbow_bolts_+", 3 }, + { "attack_speed_+%", 10 }, }, stats = { "active_skill_cannot_manually_reload", @@ -4863,13 +5028,14 @@ skills["SupportRigwaldsFerocityPlayer"] = { } skills["SupportSalvoPlayer"] = { name = "Salvo", - description = "Supports Attack Skills you use yourself which fire Projectiles. Supported Skills accumulate Seals over time, and consume them when used. For each Seal consumed, the Attack will fire additional Projectiles. Projectiles from Supported Skills are fired in random directions. Cannot Support Skills which require Combo, have a Cooldown or already gain Seals.", + description = "Supports Attack Skills you use yourself which fire Projectiles, Sealing them over time. The Seals are broken when used, causing additional Projectiles to be fired. Projectiles from Supported Skills are fired in random directions. Cannot Support Skills which require Combo, have a Cooldown or which already gain Seals.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Projectile, SkillType.AND, }, addSkillTypes = { SkillType.HasSeals, SkillType.SupportedBySalvo, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.Minion, SkillType.UsedByTotem, SkillType.Vaal, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedBySalvo, SkillType.NOT, SkillType.AND, }, - gemFamily = { "AdditionalProjectiles",}, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedBySalvo, SkillType.NOT, SkillType.AND, }, + gemFamily = { "AdditionalProjectiles","Seal",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -4881,12 +5047,13 @@ skills["SupportSalvoPlayer"] = { baseFlags = { }, constantStats = { - { "support_salvo_seals_gain_base_interval_ms", 2000 }, - { "support_salvo_additional_projectiles_fired_per_seal", 2 }, - { "support_salvo_maximum_seals", 3 }, + { "base_skill_seal_gain_interval_ms", 1000 }, + { "skill_additional_projectiles_per_seal_broken", 1 }, + { "base_maximum_seals_for_skill", 6 }, }, stats = { "random_projectile_direction", + "base_skill_is_sealed_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -4899,9 +5066,9 @@ skills["SupportSecondWindPlayer"] = { description = "Supports Skills which have a cooldown, giving them extra uses of that cooldown. Cannot support Meta, instant, or Triggered Skills, and cannot modify the Skills of Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.Proxy, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.UsedByProxy, }, gemFamily = { "SecondWind",}, ignoreMinionTypes = true, levels = { @@ -4931,9 +5098,9 @@ skills["SupportSecondWindPlayerTwo"] = { description = "Supports Skills which have a cooldown, giving them extra uses of that cooldown. Cannot support Meta, instant, or Triggered Skills, and cannot modify the Skills of Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.Proxy, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.UsedByProxy, }, gemFamily = { "SecondWind",}, ignoreMinionTypes = true, levels = { @@ -4963,9 +5130,9 @@ skills["SupportSecondWindPlayerThree"] = { description = "Supports Skills which have a cooldown, giving them extra uses of that cooldown and causing them to recover your Life when a Skill is used and goes on cooldown. Cannot support Meta, instant, or Triggered Skills, and cannot modify the Skills of Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Cooldown, }, + requireSkillTypes = { SkillType.Cooldown, SkillType.AffectedByCooldownRate, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.Proxy, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.Instant, SkillType.Meta, SkillType.UsedByProxy, }, gemFamily = { "SecondWind",}, ignoreMinionTypes = true, levels = { @@ -5125,8 +5292,9 @@ skills["SupportSpectralVolleyPlayer"] = { support = true, requireSkillTypes = { SkillType.Bow, SkillType.Attack, SkillType.AND, SkillType.Spear, SkillType.Projectile, SkillType.AND, SkillType.Attack, SkillType.AND, SkillType.OR, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Rain, SkillType.Channel, SkillType.Jumping, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Rain, SkillType.Channel, SkillType.Jumping, }, gemFamily = { "SpectralVolley",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 20, }, }, @@ -5172,11 +5340,9 @@ skills["SupportStormchainPlayer"] = { statDescriptionScope = "gem_stat_descriptions", baseFlags = { }, - constantStats = { - { "chance_to_chain_from_shocked_enemy_%", 100 }, - }, stats = { "never_shock", + "always_chain_from_shocked_enemies", }, levels = { [1] = { actorLevel = 1, }, @@ -5450,7 +5616,7 @@ skills["SupportUnerringPowerPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "UnerringPower",}, ignoreMinionTypes = true, levels = { @@ -5490,7 +5656,7 @@ skills["SupportUntouchablePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Channel, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Channel, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Untouchable",}, ignoreMinionTypes = true, levels = { @@ -5521,8 +5687,9 @@ skills["SupportVoltPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Projectile, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Volt",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 20, }, }, @@ -5534,8 +5701,8 @@ skills["SupportVoltPlayer"] = { baseFlags = { }, constantStats = { - { "support_static_charge_charge_gain_per_metre", 3 }, - { "support_static_charge_%_damage_gained_as_lightning_per_10_charge", 5 }, + { "support_static_charge_charge_gain_per_metre", 2 }, + { "support_static_charge_%_damage_gained_as_lightning_per_10_charge", 10 }, { "support_static_charge_maximum_charge", 30 }, }, stats = { diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index 9724457b51..bbe5d4aba2 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -13,7 +13,7 @@ skills["SupportAbidingHexPlayer"] = { support = true, requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, }, + excludeSkillTypes = { SkillType.Aura, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "AbidingHex",}, ignoreMinionTypes = true, levels = { @@ -75,46 +75,46 @@ skills["TriggeredExplosiveGrowthPlayerTwo"] = { qualityStats = { }, levels = { - [1] = { critChance = 10, levelRequirement = 0, }, - [2] = { critChance = 10, levelRequirement = 0, }, - [3] = { critChance = 10, levelRequirement = 0, }, - [4] = { critChance = 10, levelRequirement = 0, }, - [5] = { critChance = 10, levelRequirement = 0, }, - [6] = { critChance = 10, levelRequirement = 0, }, - [7] = { critChance = 10, levelRequirement = 0, }, - [8] = { critChance = 10, levelRequirement = 0, }, - [9] = { critChance = 10, levelRequirement = 0, }, - [10] = { critChance = 10, levelRequirement = 0, }, - [11] = { critChance = 10, levelRequirement = 0, }, - [12] = { critChance = 10, levelRequirement = 0, }, - [13] = { critChance = 10, levelRequirement = 0, }, - [14] = { critChance = 10, levelRequirement = 0, }, - [15] = { critChance = 10, levelRequirement = 0, }, - [16] = { critChance = 10, levelRequirement = 0, }, - [17] = { critChance = 10, levelRequirement = 0, }, - [18] = { critChance = 10, levelRequirement = 0, }, - [19] = { critChance = 10, levelRequirement = 0, }, - [20] = { critChance = 10, levelRequirement = 0, }, - [21] = { critChance = 10, levelRequirement = 0, }, - [22] = { critChance = 10, levelRequirement = 0, }, - [23] = { critChance = 10, levelRequirement = 0, }, - [24] = { critChance = 10, levelRequirement = 0, }, - [25] = { critChance = 10, levelRequirement = 0, }, - [26] = { critChance = 10, levelRequirement = 0, }, - [27] = { critChance = 10, levelRequirement = 0, }, - [28] = { critChance = 10, levelRequirement = 0, }, - [29] = { critChance = 10, levelRequirement = 0, }, - [30] = { critChance = 10, levelRequirement = 0, }, - [31] = { critChance = 10, levelRequirement = 0, }, - [32] = { critChance = 10, levelRequirement = 0, }, - [33] = { critChance = 10, levelRequirement = 0, }, - [34] = { critChance = 10, levelRequirement = 0, }, - [35] = { critChance = 10, levelRequirement = 0, }, - [36] = { critChance = 10, levelRequirement = 0, }, - [37] = { critChance = 10, levelRequirement = 0, }, - [38] = { critChance = 10, levelRequirement = 0, }, - [39] = { critChance = 10, levelRequirement = 0, }, - [40] = { critChance = 10, levelRequirement = 0, }, + [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -224,46 +224,46 @@ skills["TriggeredExplosiveGrowthPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 10, levelRequirement = 0, }, - [2] = { critChance = 10, levelRequirement = 0, }, - [3] = { critChance = 10, levelRequirement = 0, }, - [4] = { critChance = 10, levelRequirement = 0, }, - [5] = { critChance = 10, levelRequirement = 0, }, - [6] = { critChance = 10, levelRequirement = 0, }, - [7] = { critChance = 10, levelRequirement = 0, }, - [8] = { critChance = 10, levelRequirement = 0, }, - [9] = { critChance = 10, levelRequirement = 0, }, - [10] = { critChance = 10, levelRequirement = 0, }, - [11] = { critChance = 10, levelRequirement = 0, }, - [12] = { critChance = 10, levelRequirement = 0, }, - [13] = { critChance = 10, levelRequirement = 0, }, - [14] = { critChance = 10, levelRequirement = 0, }, - [15] = { critChance = 10, levelRequirement = 0, }, - [16] = { critChance = 10, levelRequirement = 0, }, - [17] = { critChance = 10, levelRequirement = 0, }, - [18] = { critChance = 10, levelRequirement = 0, }, - [19] = { critChance = 10, levelRequirement = 0, }, - [20] = { critChance = 10, levelRequirement = 0, }, - [21] = { critChance = 10, levelRequirement = 0, }, - [22] = { critChance = 10, levelRequirement = 0, }, - [23] = { critChance = 10, levelRequirement = 0, }, - [24] = { critChance = 10, levelRequirement = 0, }, - [25] = { critChance = 10, levelRequirement = 0, }, - [26] = { critChance = 10, levelRequirement = 0, }, - [27] = { critChance = 10, levelRequirement = 0, }, - [28] = { critChance = 10, levelRequirement = 0, }, - [29] = { critChance = 10, levelRequirement = 0, }, - [30] = { critChance = 10, levelRequirement = 0, }, - [31] = { critChance = 10, levelRequirement = 0, }, - [32] = { critChance = 10, levelRequirement = 0, }, - [33] = { critChance = 10, levelRequirement = 0, }, - [34] = { critChance = 10, levelRequirement = 0, }, - [35] = { critChance = 10, levelRequirement = 0, }, - [36] = { critChance = 10, levelRequirement = 0, }, - [37] = { critChance = 10, levelRequirement = 0, }, - [38] = { critChance = 10, levelRequirement = 0, }, - [39] = { critChance = 10, levelRequirement = 0, }, - [40] = { critChance = 10, levelRequirement = 0, }, + [1] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 10, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -367,12 +367,12 @@ skills["SupportAcrimonyPlayer"] = { } skills["SupportAdvancingStormPlayer"] = { name = "Advancing Storm", - description = "Supports Spells which create Storms, causing them to originate from the player and move towards the target location. Cannot Support Triggered Skills.", + description = "Supports Storm skills, causing them to appear at the user's location and move towards the target location.", color = 3, support = true, - requireSkillTypes = { SkillType.Storm, SkillType.Spell, SkillType.AND, }, + requireSkillTypes = { SkillType.Storm, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { }, gemFamily = { "MovingStorms",}, levels = { [1] = { levelRequirement = 0, }, @@ -385,7 +385,7 @@ skills["SupportAdvancingStormPlayer"] = { baseFlags = { }, constantStats = { - { "storm_base_movement_speed", 25 }, + { "support_storm_base_movement_speed", 25 }, }, stats = { "storm_skills_spawn_at_initiator_location", @@ -437,7 +437,7 @@ skills["SupportAmbrosiaPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Ambrosia",}, ignoreMinionTypes = true, levels = { @@ -481,7 +481,7 @@ skills["SupportAmbrosiaPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Ambrosia",}, ignoreMinionTypes = true, levels = { @@ -593,8 +593,9 @@ skills["SupportArcaneSurgePlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, gemFamily = { "ArcaneSurge",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -660,10 +661,11 @@ skills["SupportAtzirisAllurePlayer"] = { support = true, requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "AtziriAllureLineage",}, isLineage = true, flavourText = {"Such was her seductive power, every noble in the court fell", "over themselves to do her bidding. Winning a single glance", "away from her mirror meant more than their lives.", }, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -699,7 +701,7 @@ skills["SupportBhatairsVengeancePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.Warcry, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "IceBite",}, isLineage = true, flavourText = {"It is said that the Steward of Tales roams Wraeclast still,", "lost in the form of a Wyvern, full of sorrow and fury at", "the loss of his beloved pupils to the King in the Mists...", }, @@ -715,7 +717,7 @@ skills["SupportBhatairsVengeancePlayer"] = { baseFlags = { }, constantStats = { - { "supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze", 20000 }, + { "supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze", 15000 }, }, stats = { }, @@ -905,7 +907,7 @@ skills["SupportBlazingCriticalPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "BlazingCritical",}, ignoreMinionTypes = true, levels = { @@ -977,7 +979,7 @@ skills["TriggeredBoneShrapnelPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 13, levelRequirement = 0, }, + [1] = { critChance = 13, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1098,7 +1100,7 @@ skills["SupportBurgeonPlayer"] = { support = true, requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Burgeon",}, ignoreMinionTypes = true, levels = { @@ -1138,7 +1140,7 @@ skills["SupportBurgeonPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Burgeon",}, ignoreMinionTypes = true, levels = { @@ -1209,46 +1211,46 @@ skills["TriggeredBurningRunesPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1360,46 +1362,46 @@ skills["TriggeredCatalysingDischargePlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [2] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [3] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [4] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [5] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [6] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [7] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [8] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [9] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [10] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [11] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [12] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [13] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [14] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [15] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [16] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [17] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [18] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [19] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [20] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [21] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [22] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [23] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [24] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [25] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [26] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [27] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [28] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [29] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [30] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [31] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [32] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [33] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [34] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [35] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [36] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [37] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [38] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [39] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, - [40] = { cooldown = 1, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [2] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [3] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [4] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [5] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [6] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [7] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [8] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [9] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [10] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [11] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [12] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [13] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [14] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [15] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [16] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [17] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [18] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [19] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [20] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [21] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [22] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [23] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [24] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [25] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [26] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [27] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [28] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [29] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [30] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [31] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [32] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [33] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [34] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [35] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [36] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [37] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [38] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [39] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, + [40] = { cooldown = 1, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1654,13 +1656,14 @@ skills["TriggeredCatalysingDischargePlayer"] = { } skills["SupportCatharsisPlayer"] = { name = "Catharsis", - description = "Supports any Skill you use yourself, causing supported Skill to detonate Volatility that is present on you. Supported Skill can only be used while you have a certain amount of Volatility and cannot support Skills which already have another Condition. Does not support Triggered Skills.", + description = "Supports any Skill you use yourself, causing supported Skill to detonate Volatility that is present on you. Supported Skill can only be used while you have a certain amount of Volatility and cannot support Skills which already have another Condition.", color = 3, support = true, requireSkillTypes = { }, addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByCleanse, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Catharsis",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -2096,8 +2099,9 @@ skills["SupportConsideredCastingPlayer"] = { support = true, requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.FixedCastTime, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.FixedCastTime, SkillType.HasReservation, SkillType.ReservationBecomesCost, SkillType.NOT, SkillType.AND, }, gemFamily = { "ConsideredCasting",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 15, }, }, @@ -2234,46 +2238,46 @@ skills["TriggeredDeadlyCurrentPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [2] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [3] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [4] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [5] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [6] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [7] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [8] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [9] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [10] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [11] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [12] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [13] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [14] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [15] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [16] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [17] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [18] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [19] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [20] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [21] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [22] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [23] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [24] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [25] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [26] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [27] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [28] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [29] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [30] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [31] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [32] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [33] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [34] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [35] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [36] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [37] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [38] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [39] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, - [40] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, }, + [1] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [2] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [3] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [4] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [5] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [6] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [7] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [8] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [9] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [10] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [11] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [13] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [14] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [15] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [16] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [17] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [18] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [19] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [20] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [21] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [22] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [23] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [24] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [25] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [26] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [27] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [28] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [29] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [30] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [31] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [32] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [33] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [34] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [35] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [36] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [37] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [38] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [39] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, + [40] = { cooldown = 0.2, critChance = 10, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -2452,46 +2456,46 @@ skills["TriggeredCreepingChillPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, - [2] = { levelRequirement = 0, }, - [3] = { levelRequirement = 0, }, - [4] = { levelRequirement = 0, }, - [5] = { levelRequirement = 0, }, - [6] = { levelRequirement = 0, }, - [7] = { levelRequirement = 0, }, - [8] = { levelRequirement = 0, }, - [9] = { levelRequirement = 0, }, - [10] = { levelRequirement = 0, }, - [11] = { levelRequirement = 0, }, - [12] = { levelRequirement = 0, }, - [13] = { levelRequirement = 0, }, - [14] = { levelRequirement = 0, }, - [15] = { levelRequirement = 0, }, - [16] = { levelRequirement = 0, }, - [17] = { levelRequirement = 0, }, - [18] = { levelRequirement = 0, }, - [19] = { levelRequirement = 0, }, - [20] = { levelRequirement = 0, }, - [21] = { levelRequirement = 0, }, - [22] = { levelRequirement = 0, }, - [23] = { levelRequirement = 0, }, - [24] = { levelRequirement = 0, }, - [25] = { levelRequirement = 0, }, - [26] = { levelRequirement = 0, }, - [27] = { levelRequirement = 0, }, - [28] = { levelRequirement = 0, }, - [29] = { levelRequirement = 0, }, - [30] = { levelRequirement = 0, }, - [31] = { levelRequirement = 0, }, - [32] = { levelRequirement = 0, }, - [33] = { levelRequirement = 0, }, - [34] = { levelRequirement = 0, }, - [35] = { levelRequirement = 0, }, - [36] = { levelRequirement = 0, }, - [37] = { levelRequirement = 0, }, - [38] = { levelRequirement = 0, }, - [39] = { levelRequirement = 0, }, - [40] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -2783,7 +2787,7 @@ skills["SupportDeathmarchPlayer"] = { } skills["SupportDecayingHexPlayer"] = { name = "Decaying Hex", - description = "Supports Curse skills. Cursed enemies' bodies decay, taking Chaos damage over time.", + description = "Supports Curse skills. Supported skill Trigger Profane Decay on each target they curse to inflict a damaging Debuff.", color = 3, support = true, requireSkillTypes = { SkillType.AppliesCurse, }, @@ -2809,10 +2813,8 @@ skills["SupportDecayingHexPlayer"] = { baseMods = { mod("Multiplier:ChaosDebuff", "BASE", 1, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Decaying Hex" }), }, - constantStats = { - { "support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds", 6000 }, - }, stats = { + "curse_triggers_decaying_hex", }, levels = { [1] = { actorLevel = 1, }, @@ -2820,6 +2822,118 @@ skills["SupportDecayingHexPlayer"] = { }, } } +skills["TriggeredDecayingHexPlayer"] = { + name = "Profane Decay", + hidden = true, + icon = "", + description = "Inflicts Decay on the target, dealing Chaos Damage over time.", + skillTypes = { [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.DamageOverTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Profane Decay", + baseEffectiveness = 5.5, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "triggered_decaying_hex", + baseFlags = { + }, + constantStats = { + { "base_skill_effect_duration", 8000 }, + }, + stats = { + "base_chaos_damage_to_deal_per_minute", + "skill_triggered_by_support_which_grants_it", + }, + levels = { + [1] = { 356, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 518, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 750, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1015, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1317, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1664, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2059, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2511, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3027, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 3618, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4294, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 5067, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 5954, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 6971, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 8139, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 9481, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 11025, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 12803, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 14852, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 17217, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 19951, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 23113, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 26777, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 31026, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 35961, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 41701, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 48385, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 56180, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 65284, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 75932, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 88403, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 103032, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 120217, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 140438, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 164266, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 192389, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 225635, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 265001, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 311688, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 367150, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["SupportLastingFrostPlayer"] = { name = "Deep Freeze", description = "Supports any skill that Hits enemies, causing Freeze it inflicts to last longer.", @@ -2857,7 +2971,7 @@ skills["SupportDerangePlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, SkillType.Channel, SkillType.Persistent, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Channel, }, gemFamily = { "Derange",}, ignoreMinionTypes = true, levels = { @@ -2911,7 +3025,7 @@ skills["SupportDiallasDesirePlayer"] = { }, constantStats = { { "supported_active_skill_gem_level_+", 1 }, - { "supported_active_skill_gem_quality_%", 10 }, + { "supported_active_skill_gem_quality_%", 5 }, }, stats = { }, @@ -2921,37 +3035,122 @@ skills["SupportDiallasDesirePlayer"] = { }, } } -skills["SupportDoedresUndoingPlayer"] = { - name = "Doedre's Undoing", - description = "Supports Curse Skills. Supported Curse Skills create Hazardous areas which explode when Enemies enter them, Cursing Enemies and dealing Chaos Damage.", - color = 3, - support = true, - requireSkillTypes = { SkillType.AppliesCurse, }, - addSkillTypes = { SkillType.Limit, SkillType.Hazard, }, - excludeSkillTypes = { }, - gemFamily = { "CursedGround",}, - isLineage = true, - flavourText = {"\"Let the meat show us the way. Hail the meat, praise the", "meat. The meat is both debasement and divinity alike. The", "meat shall lead us down the path to true enlightenment.\"", }, - levels = { - [1] = { levelRequirement = 0, }, +skills["ChaosFrogExplosionPlayer"] = { + name = "Dark Consequences", + hidden = true, + icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", + description = "Explodes a Witchtoad to deal spell damage in an area.", + skillTypes = { [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Spell] = true, [SkillType.AreaSpell] = true, [SkillType.AttackInPlace] = true, [SkillType.Damage] = true, }, + castTime = 1, + qualityStats = { }, - statSets = { - [1] = { - label = "Doedre's Undoing", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", + levels = { + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Dark Consequences", + baseEffectiveness = 2, + incrementalEffectiveness = 0.12999999523163, + damageIncrementalEffectiveness = 0.0096000004559755, + statDescriptionScope = "triggered_chaos_frog_explosion", baseFlags = { + spell = true, + area = true, }, constantStats = { - { "maximum_curse_zones_allowed", 2 }, - { "support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%", 100 }, + { "triggered_by_chaos_frog_explosion_chance_%", 100 }, + { "active_skill_base_area_of_effect_radius", 16 }, }, stats = { - "curse_apply_as_curse_zone", - "curse_zones_are_hazards", + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", + "triggerable_in_any_set", + }, + notMinionStat = { + "spell_minimum_base_chaos_damage", + "spell_maximum_base_chaos_damage", }, levels = { - [1] = { actorLevel = 1, }, + [1] = { 5, 10, statInterpolation = { 1, 1, }, actorLevel = 1, }, + [2] = { 7, 14, statInterpolation = { 1, 1, }, actorLevel = 3.4519999027252, }, + [3] = { 10, 19, statInterpolation = { 1, 1, }, actorLevel = 6.7670001983643, }, + [4] = { 13, 24, statInterpolation = { 1, 1, }, actorLevel = 10.307999610901, }, + [5] = { 17, 31, statInterpolation = { 1, 1, }, actorLevel = 14.074999809265, }, + [6] = { 21, 38, statInterpolation = { 1, 1, }, actorLevel = 18.068000793457, }, + [7] = { 25, 47, statInterpolation = { 1, 1, }, actorLevel = 22.287000656128, }, + [8] = { 30, 56, statInterpolation = { 1, 1, }, actorLevel = 26.732000350952, }, + [9] = { 36, 67, statInterpolation = { 1, 1, }, actorLevel = 31.40299987793, }, + [10] = { 43, 79, statInterpolation = { 1, 1, }, actorLevel = 36.299999237061, }, + [11] = { 50, 93, statInterpolation = { 1, 1, }, actorLevel = 41.423000335693, }, + [12] = { 59, 109, statInterpolation = { 1, 1, }, actorLevel = 46.771999359131, }, + [13] = { 68, 127, statInterpolation = { 1, 1, }, actorLevel = 52.34700012207, }, + [14] = { 79, 147, statInterpolation = { 1, 1, }, actorLevel = 58.147998809814, }, + [15] = { 92, 170, statInterpolation = { 1, 1, }, actorLevel = 64.175003051758, }, + [16] = { 106, 197, statInterpolation = { 1, 1, }, actorLevel = 70.428001403809, }, + [17] = { 122, 227, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, + [18] = { 141, 261, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, + [19] = { 162, 300, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, + [20] = { 186, 345, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 214, 397, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 245, 456, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 282, 523, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 324, 601, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 372, 691, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 427, 793, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 491, 912, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 565, 1049, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 650, 1207, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 749, 1391, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 863, 1603, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 996, 1849, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 1150, 2135, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 1329, 2468, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 1538, 2856, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 1781, 3308, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 2066, 3836, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 2399, 4455, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 2789, 5179, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 3246, 6029, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -2966,46 +3165,46 @@ skills["TriggeredCurseZoneHazardExplosionPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 7, levelRequirement = 0, }, - [2] = { critChance = 7, levelRequirement = 0, }, - [3] = { critChance = 7, levelRequirement = 0, }, - [4] = { critChance = 7, levelRequirement = 0, }, - [5] = { critChance = 7, levelRequirement = 0, }, - [6] = { critChance = 7, levelRequirement = 0, }, - [7] = { critChance = 7, levelRequirement = 0, }, - [8] = { critChance = 7, levelRequirement = 0, }, - [9] = { critChance = 7, levelRequirement = 0, }, - [10] = { critChance = 7, levelRequirement = 0, }, - [11] = { critChance = 7, levelRequirement = 0, }, - [12] = { critChance = 7, levelRequirement = 0, }, - [13] = { critChance = 7, levelRequirement = 0, }, - [14] = { critChance = 7, levelRequirement = 0, }, - [15] = { critChance = 7, levelRequirement = 0, }, - [16] = { critChance = 7, levelRequirement = 0, }, - [17] = { critChance = 7, levelRequirement = 0, }, - [18] = { critChance = 7, levelRequirement = 0, }, - [19] = { critChance = 7, levelRequirement = 0, }, - [20] = { critChance = 7, levelRequirement = 0, }, - [21] = { critChance = 7, levelRequirement = 0, }, - [22] = { critChance = 7, levelRequirement = 0, }, - [23] = { critChance = 7, levelRequirement = 0, }, - [24] = { critChance = 7, levelRequirement = 0, }, - [25] = { critChance = 7, levelRequirement = 0, }, - [26] = { critChance = 7, levelRequirement = 0, }, - [27] = { critChance = 7, levelRequirement = 0, }, - [28] = { critChance = 7, levelRequirement = 0, }, - [29] = { critChance = 7, levelRequirement = 0, }, - [30] = { critChance = 7, levelRequirement = 0, }, - [31] = { critChance = 7, levelRequirement = 0, }, - [32] = { critChance = 7, levelRequirement = 0, }, - [33] = { critChance = 7, levelRequirement = 0, }, - [34] = { critChance = 7, levelRequirement = 0, }, - [35] = { critChance = 7, levelRequirement = 0, }, - [36] = { critChance = 7, levelRequirement = 0, }, - [37] = { critChance = 7, levelRequirement = 0, }, - [38] = { critChance = 7, levelRequirement = 0, }, - [39] = { critChance = 7, levelRequirement = 0, }, - [40] = { critChance = 7, levelRequirement = 0, }, + [1] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 7, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3151,46 +3350,46 @@ skills["TriggeredShockingRiftPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 9, levelRequirement = 0, }, - [2] = { critChance = 9, levelRequirement = 0, }, - [3] = { critChance = 9, levelRequirement = 0, }, - [4] = { critChance = 9, levelRequirement = 0, }, - [5] = { critChance = 9, levelRequirement = 0, }, - [6] = { critChance = 9, levelRequirement = 0, }, - [7] = { critChance = 9, levelRequirement = 0, }, - [8] = { critChance = 9, levelRequirement = 0, }, - [9] = { critChance = 9, levelRequirement = 0, }, - [10] = { critChance = 9, levelRequirement = 0, }, - [11] = { critChance = 9, levelRequirement = 0, }, - [12] = { critChance = 9, levelRequirement = 0, }, - [13] = { critChance = 9, levelRequirement = 0, }, - [14] = { critChance = 9, levelRequirement = 0, }, - [15] = { critChance = 9, levelRequirement = 0, }, - [16] = { critChance = 9, levelRequirement = 0, }, - [17] = { critChance = 9, levelRequirement = 0, }, - [18] = { critChance = 9, levelRequirement = 0, }, - [19] = { critChance = 9, levelRequirement = 0, }, - [20] = { critChance = 9, levelRequirement = 0, }, - [21] = { critChance = 9, levelRequirement = 0, }, - [22] = { critChance = 9, levelRequirement = 0, }, - [23] = { critChance = 9, levelRequirement = 0, }, - [24] = { critChance = 9, levelRequirement = 0, }, - [25] = { critChance = 9, levelRequirement = 0, }, - [26] = { critChance = 9, levelRequirement = 0, }, - [27] = { critChance = 9, levelRequirement = 0, }, - [28] = { critChance = 9, levelRequirement = 0, }, - [29] = { critChance = 9, levelRequirement = 0, }, - [30] = { critChance = 9, levelRequirement = 0, }, - [31] = { critChance = 9, levelRequirement = 0, }, - [32] = { critChance = 9, levelRequirement = 0, }, - [33] = { critChance = 9, levelRequirement = 0, }, - [34] = { critChance = 9, levelRequirement = 0, }, - [35] = { critChance = 9, levelRequirement = 0, }, - [36] = { critChance = 9, levelRequirement = 0, }, - [37] = { critChance = 9, levelRequirement = 0, }, - [38] = { critChance = 9, levelRequirement = 0, }, - [39] = { critChance = 9, levelRequirement = 0, }, - [40] = { critChance = 9, levelRequirement = 0, }, + [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3404,7 +3603,7 @@ skills["TriggeredElementalDischargePlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 1, critChance = 10, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 1, critChance = 10, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3718,8 +3917,9 @@ skills["SupportExcisePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.SupportedByExcise, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExcise, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExcise, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "GrantsCooldown",}, + ignoreMinionTypes = true, levels = { [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, }, }, @@ -3754,8 +3954,9 @@ skills["SupportExecratePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.SupportedByExecrate, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExecrate, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExecrate, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "GrantsCooldown",}, + ignoreMinionTypes = true, levels = { [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, }, }, @@ -3788,13 +3989,14 @@ skills["SupportExecratePlayer"] = { } skills["SupportExpandPlayer"] = { name = "Expand", - description = "Supports Spells you cast yourself, increasing their area of effect when cast. Cannot support Channelling Skills or Skills with a Cooldown.", + description = "Supports Spells you cast yourself, Sealing them over time. The Seals are broken when cast, increasing area of effect. Cannot support Channelling Skills or Skills with a Cooldown or which already gain Seals.", color = 3, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Area, SkillType.AND, }, addSkillTypes = { SkillType.HasSeals, SkillType.SupportedByExpand, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByExpand, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByExpand, SkillType.NOT, SkillType.AND, }, gemFamily = { "Seal","IncreasedAreaOfEffect",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 20, }, }, @@ -3804,29 +4006,25 @@ skills["SupportExpandPlayer"] = { incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_expand_max_seals"] = { - mod("SealCount", "BASE", nil), - }, - ["skill_area_of_effect_+%_per_expand_seal"] = { + ["skill_area_of_effect_+%_per_broken_seal"] = { mod("SealRepeatPenalty", "MORE", nil), }, - ["expand_support_seal_gain_frequency_as_%_of_total_cast_time"] = { + ["support_%_of_total_cast_time_as_base_skill_seal_gain_interval"] = { mod("SealGainFrequency", "BASE", nil), }, }, baseFlags = { }, baseMods = { - flag("HasSeals"), flag("AreaSeal"), }, constantStats = { - { "support_expand_max_seals", 3 }, - { "support_expand_charge_gain_interval_ms", 0 }, - { "expand_support_seal_gain_frequency_as_%_of_total_cast_time", 200 }, - { "skill_area_of_effect_+%_per_expand_seal", 30 }, + { "base_maximum_seals_for_skill", 3 }, + { "support_%_of_total_cast_time_as_base_skill_seal_gain_interval", 200 }, + { "skill_area_of_effect_+%_per_broken_seal", 30 }, }, stats = { + "base_skill_is_sealed_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -3841,8 +4039,9 @@ skills["SupportExpansePlayer"] = { support = true, requireSkillTypes = { SkillType.Area, SkillType.MinionsCanExplode, }, addSkillTypes = { SkillType.SupportedByExpanse, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExpanse, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByExpanse, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "GrantsCooldown",}, + ignoreMinionTypes = true, levels = { [1] = { cooldown = 8, levelRequirement = 0, storedUses = 1, }, }, @@ -4017,7 +4216,7 @@ skills["TriggeredFieryDeathPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 8, levelRequirement = 0, manaMultiplier = 20, }, + [1] = { critChance = 8, levelRequirement = 0, manaMultiplier = 20, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -4556,10 +4755,10 @@ skills["SupportGuatelitzisAblationPlayer"] = { } skills["SupportHayoxisBindingPlayer"] = { name = "Hayoxi's Fulmination", - description = "Supports Curse Skills. Supported Curse Skills create areas which Curse enemies so long as they are within them. Cursed areas from Supported Skills gather power before erupting in a column of annihilating light after a moderate delay.", + description = "Supports Curse Skills, giving them a short cooldown but causing them to create areas which Curse enemies so long as they are within them. Cursed areas from Supported Skills gather power before erupting in a column of annihilating light after a moderate delay.", color = 3, support = true, - requireSkillTypes = { }, + requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHayoxi, SkillType.Limit, }, excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHayoxi, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Channel, SkillType.Attack, SkillType.Triggered, }, gemFamily = { "CursedGround",}, @@ -4597,46 +4796,46 @@ skills["SupportTriggeredAnnihilationPlayer"] = { qualityStats = { }, levels = { - [1] = { critChance = 9, levelRequirement = 0, }, - [2] = { critChance = 9, levelRequirement = 0, }, - [3] = { critChance = 9, levelRequirement = 0, }, - [4] = { critChance = 9, levelRequirement = 0, }, - [5] = { critChance = 9, levelRequirement = 0, }, - [6] = { critChance = 9, levelRequirement = 0, }, - [7] = { critChance = 9, levelRequirement = 0, }, - [8] = { critChance = 9, levelRequirement = 0, }, - [9] = { critChance = 9, levelRequirement = 0, }, - [10] = { critChance = 9, levelRequirement = 0, }, - [11] = { critChance = 9, levelRequirement = 0, }, - [12] = { critChance = 9, levelRequirement = 0, }, - [13] = { critChance = 9, levelRequirement = 0, }, - [14] = { critChance = 9, levelRequirement = 0, }, - [15] = { critChance = 9, levelRequirement = 0, }, - [16] = { critChance = 9, levelRequirement = 0, }, - [17] = { critChance = 9, levelRequirement = 0, }, - [18] = { critChance = 9, levelRequirement = 0, }, - [19] = { critChance = 9, levelRequirement = 0, }, - [20] = { critChance = 9, levelRequirement = 0, }, - [21] = { critChance = 9, levelRequirement = 0, }, - [22] = { critChance = 9, levelRequirement = 0, }, - [23] = { critChance = 9, levelRequirement = 0, }, - [24] = { critChance = 9, levelRequirement = 0, }, - [25] = { critChance = 9, levelRequirement = 0, }, - [26] = { critChance = 9, levelRequirement = 0, }, - [27] = { critChance = 9, levelRequirement = 0, }, - [28] = { critChance = 9, levelRequirement = 0, }, - [29] = { critChance = 9, levelRequirement = 0, }, - [30] = { critChance = 9, levelRequirement = 0, }, - [31] = { critChance = 9, levelRequirement = 0, }, - [32] = { critChance = 9, levelRequirement = 0, }, - [33] = { critChance = 9, levelRequirement = 0, }, - [34] = { critChance = 9, levelRequirement = 0, }, - [35] = { critChance = 9, levelRequirement = 0, }, - [36] = { critChance = 9, levelRequirement = 0, }, - [37] = { critChance = 9, levelRequirement = 0, }, - [38] = { critChance = 9, levelRequirement = 0, }, - [39] = { critChance = 9, levelRequirement = 0, }, - [40] = { critChance = 9, levelRequirement = 0, }, + [1] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { critChance = 9, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -4773,10 +4972,11 @@ skills["SupportHourglassPlayer"] = { description = "Supports any damaging skill that you use yourself, causing it to deal significantly more damage but gain a long cooldown. Cannot support Skills which already have a cooldown.", color = 3, support = true, - requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, }, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.DegenOnlySpellDamage, SkillType.CrossbowAmmoSkill, SkillType.DamageOverTime, }, addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByHourglass, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "GrantsCooldown",}, + ignoreMinionTypes = true, levels = { [1] = { cooldown = 10, levelRequirement = 0, storedUses = 1, }, }, @@ -4839,7 +5039,7 @@ skills["SupportIceBitePlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.Warcry, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "IceBite",}, ignoreMinionTypes = true, levels = { @@ -4880,7 +5080,7 @@ skills["SupportIceBitePlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.Warcry, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "IceBite",}, ignoreMinionTypes = true, levels = { @@ -4956,8 +5156,9 @@ skills["ViciousHexSupportPlayer"] = { support = true, requireSkillTypes = { SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.Aura, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Aura, }, gemFamily = { "ImpendingDoom",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 30, }, }, @@ -5104,7 +5305,7 @@ skills["SupportInevitableCriticalsPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "InexorableCritical",}, ignoreMinionTypes = true, levels = { @@ -5145,7 +5346,7 @@ skills["SupportInevitableCriticalsPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "InexorableCritical",}, ignoreMinionTypes = true, levels = { @@ -5330,7 +5531,7 @@ skills["SupportKhatalsRejuvenationPlayer"] = { } skills["SupportKulemaksDominionPlayer"] = { name = "Kulemak's Dominion", - description = "Supports Offering Skills, causing Spells that affect an area around you or a target location to also affect the area around Supported Offerings.", + description = "Supports Offering Skills, causing your Cascadable Spells to Cascade to the locations of Supported Offerings.", color = 3, support = true, requireSkillTypes = { SkillType.Offering, }, @@ -5396,7 +5597,7 @@ skills["SupportKurgalsLeashPlayer"] = { } skills["SupportLastGaspPlayer"] = { name = "Last Gasp", - description = "Supports skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a short duration or when they take further damage exceeding their maximum Life.", + description = "Supports Skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a short duration.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, SkillType.Persistent, SkillType.AND, }, @@ -5496,46 +5697,46 @@ skills["TriggeredLivingLightningPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [2] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [3] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [4] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [5] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [6] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [7] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [8] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [9] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [10] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [11] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [12] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [13] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [14] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [15] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [16] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [17] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [18] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [19] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [20] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [21] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [22] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [23] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [24] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [25] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [26] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [27] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [28] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [29] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [30] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [31] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [32] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [33] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [34] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [35] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [36] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [37] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [38] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [39] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, - [40] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, }, + [1] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [2] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [3] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [4] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [5] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [6] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [7] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [8] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [9] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [10] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [11] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [13] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [14] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [15] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [16] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [17] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [18] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [19] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [20] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [21] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [22] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [23] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [24] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [25] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [26] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [27] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [28] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [29] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [30] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [31] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [32] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [33] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [34] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [35] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [36] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [37] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [38] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [39] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [40] = { cooldown = 0.2, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -5653,7 +5854,46 @@ skills["TriggeredLivingLightningPlayerTwo"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.2, levelRequirement = 0, storedUses = 8, }, + [1] = { cooldown = 0.2, levelRequirement = 0, storedUses = 8, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -5665,7 +5905,7 @@ skills["TriggeredLivingLightningPlayerTwo"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 5 }) }), div = 5, }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 10 }) }), div = 10, }, @@ -5687,7 +5927,7 @@ skills["TriggeredLivingLightningPlayerTwo"] = { { "minion_base_physical_damage_%_to_convert_to_lightning", 100 }, { "living_lightning_beam_attack_time_ms", 140 }, { "minion_1%_damage_+%_per_X_player_strength", 5 }, - { "minion_1%_attack_speed_+%_per_X_player_dexterity", 10 }, + { "active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity", 10 }, { "number_of_chains", 3 }, }, stats = { @@ -5696,6 +5936,45 @@ skills["TriggeredLivingLightningPlayerTwo"] = { }, levels = { [1] = { actorLevel = 1, }, + [2] = { actorLevel = 3.4519999027252, }, + [3] = { actorLevel = 6.7670001983643, }, + [4] = { actorLevel = 10.307999610901, }, + [5] = { actorLevel = 14.074999809265, }, + [6] = { actorLevel = 18.068000793457, }, + [7] = { actorLevel = 22.287000656128, }, + [8] = { actorLevel = 26.732000350952, }, + [9] = { actorLevel = 31.40299987793, }, + [10] = { actorLevel = 36.299999237061, }, + [11] = { actorLevel = 41.423000335693, }, + [12] = { actorLevel = 46.771999359131, }, + [13] = { actorLevel = 52.34700012207, }, + [14] = { actorLevel = 58.147998809814, }, + [15] = { actorLevel = 64.175003051758, }, + [16] = { actorLevel = 70.428001403809, }, + [17] = { actorLevel = 76.906997680664, }, + [18] = { actorLevel = 83.611999511719, }, + [19] = { actorLevel = 90.542999267578, }, + [20] = { actorLevel = 97.699996948242, }, + [21] = { actorLevel = 105.08300018311, }, + [22] = { actorLevel = 112.69200134277, }, + [23] = { actorLevel = 120.52700042725, }, + [24] = { actorLevel = 128.58799743652, }, + [25] = { actorLevel = 136.875, }, + [26] = { actorLevel = 145.38800048828, }, + [27] = { actorLevel = 154.12699890137, }, + [28] = { actorLevel = 163.09199523926, }, + [29] = { actorLevel = 172.28300476074, }, + [30] = { actorLevel = 181.69999694824, }, + [31] = { actorLevel = 191.34300231934, }, + [32] = { actorLevel = 201.21200561523, }, + [33] = { actorLevel = 211.30700683594, }, + [34] = { actorLevel = 221.62800598145, }, + [35] = { actorLevel = 232.17500305176, }, + [36] = { actorLevel = 242.94799804688, }, + [37] = { actorLevel = 253.94700622559, }, + [38] = { actorLevel = 265.17199707031, }, + [39] = { actorLevel = 276.62298583984, }, + [40] = { actorLevel = 288.29998779297, }, }, }, } @@ -5873,7 +6152,7 @@ skills["TriggeredManaFlarePlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 1, critChance = 7, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 1, critChance = 7, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -5959,8 +6238,8 @@ skills["SupportMarkOfSiphoningPlayerTwo"] = { baseFlags = { }, constantStats = { - { "marked_enemies_leech_attack_damage_taken_as_mana_to_you_permyriad", 500 }, - { "marked_enemies_leech_attack_damage_taken_as_life_to_you_permyriad", 500 }, + { "marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad", 800 }, + { "marked_enemies_leech_physical_attack_damage_taken_as_life_to_you_permyriad", 800 }, }, stats = { }, @@ -5990,7 +6269,7 @@ skills["SupportMarkOfSiphoningPlayer"] = { baseFlags = { }, constantStats = { - { "marked_enemies_leech_attack_damage_taken_as_mana_to_you_permyriad", 500 }, + { "marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad", 800 }, }, stats = { }, @@ -6073,7 +6352,7 @@ skills["SupportMinionPactPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Persistent, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "MinionPact",}, ignoreMinionTypes = true, levels = { @@ -6110,7 +6389,7 @@ skills["SupportMinionPactPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.DamageOverTime, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Persistent, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "MinionPact",}, ignoreMinionTypes = true, levels = { @@ -6142,12 +6421,12 @@ skills["SupportMinionPactPlayerTwo"] = { } skills["SupportMorganasTempestPlayer"] = { name = "Morgana's Tempest", - description = "Supports Spells which create Storms, increasing their Limit and causing them to move from the player towards the target location faster, but become less effective. Cannot Support Triggered Skills.", + description = "Supports Storm skills, increasing their Limit and causing them to move quickly from the user to the target location, but become less effective. Cannot Support Triggered Skills.", color = 3, support = true, - requireSkillTypes = { SkillType.Storm, SkillType.Spell, SkillType.AND, }, + requireSkillTypes = { SkillType.Storm, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByCleanse, SkillType.NOT, SkillType.AND, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { }, gemFamily = { "MovingStorms","Overabundance",}, isLineage = true, flavourText = {"On the nights the fugue would come over her, the Ezomytes would", "gather below, begging her to bring the rains. Atop the Taisce,", "wailing with unknown sorrows, her cries made the skies rage.", }, @@ -6170,7 +6449,7 @@ skills["SupportMorganasTempestPlayer"] = { baseFlags = { }, constantStats = { - { "storm_base_movement_speed", 25 }, + { "support_storm_base_movement_speed", 25 }, { "support_approaching_storms_movement_speed_+%_final", 60 }, { "support_approaching_storms_area_of_effect_+%_final", -25 }, { "support_approaching_storms_damage_+%_final", -35 }, @@ -6191,7 +6470,7 @@ skills["SupportMusterPlayer"] = { description = "Supports Skills which summon Minions. Supported Minions deal more Damage the more different kinds of Reviving Minions you have summoned.", color = 3, support = true, - requireSkillTypes = { SkillType.Minion, }, + requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "Muster",}, @@ -6291,37 +6570,6 @@ skills["SupportMysticismPlayerTwo"] = { }, } } -skills["SupportNadirPlayer"] = { - name = "Nadir", - description = "Supports Skills which gain Stages or Seals. Supported Skills have lower Maximum Stage or Seal count, but have a Minimum Stage or Seal count they cannot fall below.", - color = 3, - support = true, - requireSkillTypes = { SkillType.GainsStages, SkillType.HasSeals, }, - addSkillTypes = { }, - excludeSkillTypes = { }, - gemFamily = { "Nadir",}, - levels = { - [1] = { levelRequirement = 0, }, - }, - statSets = { - [1] = { - label = "Nadir", - incrementalEffectiveness = 0.054999999701977, - statDescriptionScope = "gem_stat_descriptions", - baseFlags = { - }, - constantStats = { - { "skill_X_fewer_maximum_stages", 1 }, - { "skill_X_minimum_stages", 1 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, - }, - }, - } -} skills["SupportOisinsOathPlayer"] = { name = "Oisin's Oath", description = "Supports Skills which Hit enemies, causing their Mana Leech to recover based on Elemental damage instead of Physical damage.", @@ -6551,12 +6799,12 @@ skills["SupportPracticalMagicPlayerTwo"] = { } skills["SupportProfanityPlayer"] = { name = "Profanity I", - description = "Supports Skills you use yourself. Supported Skills consume a Corpse on use, dealing more Chaos Damage if they do. Cannot support Triggered Skills or Reservation Skills.", + description = "Supports Skills you use yourself. Supported Skills consume a Corpse on use, dealing more Chaos Damage if they do.", color = 3, support = true, requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.HasReservation, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.Aura, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Profanity",}, ignoreMinionTypes = true, levels = { @@ -6584,12 +6832,12 @@ skills["SupportProfanityPlayer"] = { } skills["SupportProfanityPlayerTwo"] = { name = "Profanity II", - description = "Supports Skills you use yourself. Supported Skills consume many Corpses on use, dealing more Chaos Damage per Corpse consumed. Cannot support Triggered Skills or Reservation Skills.", + description = "Supports Skills you use yourself. Supported Skills consume many Corpses on use, dealing more Chaos Damage per Corpse consumed.", color = 3, support = true, requireSkillTypes = { }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.HasReservation, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.Aura, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Profanity",}, ignoreMinionTypes = true, levels = { @@ -6679,7 +6927,7 @@ skills["SupportRapidCastingPlayerTwo"] = { } skills["SupportRapidCastingPlayerThree"] = { name = "Rapid Casting III", - description = "Supports Spells, causing them to cast faster for each different Spell you've cast Recently.", + description = "Supports Spells, causing them to cast faster for each different Spell you've cast in the last eight seconds.", color = 3, support = true, requireSkillTypes = { SkillType.Spell, }, @@ -6781,7 +7029,7 @@ skills["SupportRitualisticCursePlayer"] = { } skills["SupportSacrificialLambPlayer"] = { name = "Sacrificial Lamb I", - description = "Supports skills which create Minions, causing your skills which can target Minions to prioritise targeting Minions from the Supported Skill.", + description = "Supports Skills which create Minions, causing your Skills which can target Minions to prioritise targeting Minions from the Supported Skill before your other Minions where possible.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -6812,7 +7060,7 @@ skills["SupportSacrificialLambPlayer"] = { } skills["SupportSacrificialLambPlayerTwo"] = { name = "Sacrificial Lamb II", - description = "Supports skills which create Minions, causing your skills which can target Minions to prioritise targeting Minions from the Supported Skill, as well as causing them to always be considered Detonatable.", + description = "Supports Skills which create Minions, causing your Skills which can target Minions to prioritise targeting Minions from the Supported Skill before your other Minions where possible, as well as causing them to always be considered Detonatable.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -6880,7 +7128,7 @@ skills["SupportSacrificalOfferingPlayer"] = { } } skills["SupportShockConductionPlayer"] = { - name = "Shock Conduction I", + name = "Shock Conduction", description = "Supports any skill that Hits enemies, giving it a chance to also Shock nearby enemies when you Shock an enemy.", color = 3, support = true, @@ -6893,7 +7141,7 @@ skills["SupportShockConductionPlayer"] = { }, statSets = { [1] = { - label = "Shock Conduction I", + label = "Shock Conduction", incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", baseFlags = { @@ -7015,12 +7263,12 @@ skills["SupportWildshardsPlayerThree"] = { } skills["SupportSpellCascadePlayer"] = { name = "Spell Cascade", - description = "Supports Spells that affect an area around you or a target location, causing those Spells to also target additional areas on either side of the target area, along a randomly chosen axis. Cannot support Channelling skills or Remote skills.", + description = "Supports Cascadable Spells, causing them to Cascade to either side of the target area, along a randomly chosen axis.", color = 3, support = true, requireSkillTypes = { SkillType.Cascadable, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, }, + excludeSkillTypes = { }, gemFamily = { "SpellCascade",}, levels = { [1] = { levelRequirement = 0, }, @@ -7056,13 +7304,14 @@ skills["SupportSpellCascadePlayer"] = { } skills["SupportSpellEchoPlayer"] = { name = "Spell Echo", - description = "Supports Spells that affect an area around you or a target location. Supported Spells echo, causing their effects to happen again after a short delay. Cannot support Channelling skills Remote skills or skills which are Triggered.", + description = "Supports Cascadable Spells you use yourself. Supported Spells Echo.", color = 3, support = true, requireSkillTypes = { SkillType.Cascadable, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Triggered, SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "SpellEcho",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 50, }, }, @@ -7079,10 +7328,9 @@ skills["SupportSpellEchoPlayer"] = { baseFlags = { }, constantStats = { - { "support_spell_echo_cascade_delay_ms", 500 }, { "support_multicast_cast_speed_+%_final", -30 }, { "support_spell_echo_number_of_echo_cascades", 1 }, - { "support_spell_echo_area_of_effect_+%", 40 }, + { "echoed_spell_area_of_effect_+%", 40 }, }, stats = { }, @@ -7094,7 +7342,7 @@ skills["SupportSpellEchoPlayer"] = { } skills["SupportStaticShocksPlayer"] = { name = "Static Shocks", - description = "Supports Skills which can Hit enemies. Shocking an enemy with Supported Skills Triggers Static Shocks, causing that enemy to become a source of Lightning damage sending pulses towards nearby enemies.", + description = "Supports Skills which can Hit enemies. Shocking an enemy with Hits from Supported Skills Triggers Static Shocks, causing that enemy to become a source of Lightning damage sending pulses towards nearby enemies.", color = 3, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, }, @@ -7133,46 +7381,46 @@ skills["TriggeredStaticShocksPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [2] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [3] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [4] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [5] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [6] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [7] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [8] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [9] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [10] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [11] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [12] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [13] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [14] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [15] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [16] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [17] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [18] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [19] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [20] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [21] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [22] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [23] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [24] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [25] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [26] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [27] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [28] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [29] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [30] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [31] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [32] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [33] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [34] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [35] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [36] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [37] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [38] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [39] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, - [40] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, }, + [1] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [2] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [3] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [4] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [5] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [6] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [7] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [8] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [9] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [10] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [11] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [13] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [14] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [15] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [16] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [17] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [18] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [19] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [20] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [21] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [22] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [23] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [24] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [25] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [26] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [27] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [28] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [29] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [30] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [31] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [32] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [33] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [34] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [35] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [36] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [37] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [38] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [39] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, + [40] = { cooldown = 0.4, critChance = 9, levelRequirement = 0, storedUses = 3, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -7352,7 +7600,7 @@ skills["SupportIncreasedCriticalDamagePlayer"] = { } skills["SupportTecrodsRevengePlayer"] = { name = "Tecrod's Revenge", - description = "Supports skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a duration or when they take further damage exceeding their maximum Life. Minions from Supported Skills gain Soul Eater and a burst of speed on entering this state.", + description = "Supports Skills that create Persistent Minions, causing those Minions to fight on when they are fatally wounded, dying after a duration. Minions from Supported Skills gain Soul Eater and a burst of speed on entering this state.", color = 3, support = true, requireSkillTypes = { SkillType.CreatesMinion, SkillType.Persistent, SkillType.AND, }, @@ -7391,7 +7639,7 @@ skills["SupportThrillOfTheKillPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "ThrillOfTheKill",}, ignoreMinionTypes = true, levels = { @@ -7423,8 +7671,9 @@ skills["SupportThrillOfTheKillPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.Duration, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Persistent, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "ThrillOfTheKill",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -7450,13 +7699,14 @@ skills["SupportThrillOfTheKillPlayerTwo"] = { } skills["SupportUnleashPlayer"] = { name = "Unleash", - description = "Supports Spells you cast yourself, making their effect reoccur when cast. Cannot support Channelling Skills or Skills with a Cooldown.", + description = "Supports Repeatable Spells you cast yourself, Sealing them over time. The Seals are broken when cast, each causing the Spell to Repeat. Cannot support skills with a Cooldown or which already gain Seals.", color = 3, support = true, requireSkillTypes = { SkillType.Unleashable, SkillType.Spell, SkillType.AND, }, addSkillTypes = { SkillType.HasSeals, SkillType.SupportedByUnleash, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Instant, SkillType.Channel, SkillType.Cooldown, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, gemFamily = { "Seal",}, + ignoreMinionTypes = true, levels = { [1] = { PvPDamageMultiplier = -40, levelRequirement = 0, manaMultiplier = 50, }, }, @@ -7468,15 +7718,16 @@ skills["SupportUnleashPlayer"] = { baseFlags = { }, baseMods = { - flag("HasSeals"), flag("DamageSeal"), }, constantStats = { { "support_spell_rapid_fire_repeat_use_damage_+%_final", -50 }, - { "unleash_support_seal_gain_frequency_as_%_of_total_cast_time", 200 }, - { "support_anticipation_rapid_fire_count", 2 }, + { "support_%_of_total_cast_time_as_base_skill_seal_gain_interval", 200 }, + { "base_maximum_seals_for_skill", 2 }, + { "skill_rapid_fire_repeats_per_broken_seal", 1 }, }, stats = { + "base_skill_is_sealed_skill", }, levels = { [1] = { actorLevel = 1, }, @@ -7546,7 +7797,7 @@ skills["SupportUpwellingPlayerTwo"] = { } skills["SupportVarashtasBlessingPlayer"] = { name = "Varashta's Blessing", - description = "Supports any Skill that can deal Damage, causing it to deal more Damage per different Command Skill used.", + description = "Supports any Skill that can deal damage, causing it to deal more damage for each different Command Skill you have used in the past few seconds. Cannot modify the Skills of Minions.", color = 3, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.DegenOnlySpellDamage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, @@ -7555,6 +7806,7 @@ skills["SupportVarashtasBlessingPlayer"] = { gemFamily = { "VarashtasBlessing",}, isLineage = true, flavourText = {"\"These traditions we shall set forth, so that we may remain", "strong, so that we may endure throughout the ages. Not to", "bind, not to dominate, but to protect... and guide.\"", }, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 20, }, }, @@ -7583,8 +7835,9 @@ skills["SupportVerglasPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.DegenOnlySpellDamage, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Verglas",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 20, }, }, @@ -7646,7 +7899,7 @@ skills["SupportVolatilityPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Volatility",}, ignoreMinionTypes = true, levels = { @@ -7838,7 +8091,7 @@ skills["TriggeredXibaquasRendingPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -7866,15 +8119,16 @@ skills["TriggeredXibaquasRendingPlayer"] = { } skills["SupportZarokhsRefrainPlayer"] = { name = "Zarokh's Refrain", - description = "Supports Spells that affect an area around you or a target location. Supported Spells echo thrice, causing their effects to happen again after a short delay, but Supported Skills are given a short Cooldown. Cannot support Channelling skills, Remote skills, skills which already have a Cooldown, or skills which are Triggered.", + description = "Supports Cascadable Spells you cast yourself. Supported Spells Echo thrice, but are given a Cooldown. Cannot support skills which already have a Cooldown.", color = 3, support = true, requireSkillTypes = { SkillType.Cascadable, }, addSkillTypes = { SkillType.Cooldown, SkillType.SupportedByZarokh, }, - excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByZarokh, SkillType.NOT, SkillType.AND, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Channel, SkillType.Attack, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Cooldown, SkillType.SupportedByZarokh, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Channel, SkillType.Attack, }, gemFamily = { "SpellEcho",}, isLineage = true, flavourText = {"Reliving the same day for all time, Zarokh raged against", "the moments that made up his prison. There would be", "no redemption, for he had broken his only barya.", }, + ignoreMinionTypes = true, levels = { [1] = { cooldown = 5, levelRequirement = 0, manaMultiplier = 30, storedUses = 1, }, }, @@ -7887,8 +8141,7 @@ skills["SupportZarokhsRefrainPlayer"] = { }, constantStats = { { "support_spell_echo_number_of_echo_cascades", 3 }, - { "support_spell_echo_cascade_delay_ms", 500 }, - { "support_spell_echo_area_of_effect_+%", 40 }, + { "echoed_spell_area_of_effect_+%", 40 }, }, stats = { }, @@ -7900,15 +8153,16 @@ skills["SupportZarokhsRefrainPlayer"] = { } skills["SupportZarokhsRevoltPlayer"] = { name = "Zarokh's Revolt", - description = "Supports Spells you cast yourself, making their effect reoccur up to five times when cast, but giving them a moderate Cooldown. Cannot support Channelling Skills.", + description = "Supports Repeatable Spells you cast yourself, Sealing them over time and giving them a moderate Cooldown. The Seals are broken when cast, each causing the Spell to Repeat. Cannot support skills which already have a Cooldown or gain seals.", color = 3, support = true, requireSkillTypes = { SkillType.Unleashable, SkillType.Spell, SkillType.AND, }, addSkillTypes = { SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Instant, SkillType.Channel, SkillType.ComboStacking, SkillType.HasSeals, SkillType.SupportedByUnleash, SkillType.NOT, SkillType.AND, }, gemFamily = { "Seal",}, isLineage = true, flavourText = {"Zarokh's ire built over the centuries as he planned his escape.", "The Afarud would find what he sought, and then... the", "Weeping Black would break the chains of his prison.", }, + ignoreMinionTypes = true, levels = { [1] = { PvPDamageMultiplier = -40, cooldown = 10, levelRequirement = 0, manaMultiplier = 100, storedUses = 1, }, }, @@ -7920,15 +8174,16 @@ skills["SupportZarokhsRevoltPlayer"] = { baseFlags = { }, baseMods = { - flag("HasSeals"), flag("DamageSeal"), }, constantStats = { { "support_spell_rapid_fire_repeat_use_damage_+%_final", -20 }, - { "unleash_support_seal_gain_frequency_as_%_of_total_cast_time", 50 }, - { "support_anticipation_rapid_fire_count", 5 }, + { "support_%_of_total_cast_time_as_base_skill_seal_gain_interval", 50 }, + { "base_maximum_seals_for_skill", 5 }, + { "skill_rapid_fire_repeats_per_broken_seal", 1 }, }, stats = { + "base_skill_is_sealed_skill", }, levels = { [1] = { actorLevel = 1, }, diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index 9ad67640b3..fe3c67606d 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -12,7 +12,7 @@ skills["SupportAftershockChancePlayer"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Aftershock",}, ignoreMinionTypes = true, levels = { @@ -43,7 +43,7 @@ skills["SupportAftershockChancePlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Aftershock",}, ignoreMinionTypes = true, levels = { @@ -106,7 +106,7 @@ skills["SupportAncestralAidPlayer"] = { support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, SkillType.NOT, SkillType.AND, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByAncestralAid, SkillType.NOT, SkillType.AND, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "AncestralCall",}, ignoreMinionTypes = true, levels = { @@ -136,9 +136,9 @@ skills["SupportAncestralCallPlayer"] = { description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every few seconds. Cannot Support Channelled Skills and does not modify Skills used by Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, SkillType.SpecialAncestralBoost, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "AncestralCall",}, ignoreMinionTypes = true, levels = { @@ -168,9 +168,9 @@ skills["SupportAncestralCallPlayerTwo"] = { description = "Supports Strikes you use yourself, providing a powerful Ancestral Boost every few seconds. Cannot Support Channelled Skills and does not modify Skills used by Minions.", color = 1, support = true, - requireSkillTypes = { SkillType.MeleeSingleTarget, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, SkillType.SpecialAncestralBoost, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.CannotSpiritStrike, SkillType.Channel, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "AncestralCall",}, ignoreMinionTypes = true, levels = { @@ -389,12 +389,12 @@ skills["ArmourExplosionPlayer"] = { name = "Armour Explosion", hidden = true, icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, [SkillType.Fire] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -525,7 +525,7 @@ skills["SupportAutoReloadPlayer"] = { } skills["SupportBarbsPlayer"] = { name = "Barbs I", - description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit after you've Retaliated with Thorns Damage.", + description = "Supports Melee Strike Skills. After you Retaliate with Thorns Damage, you also deal your Thorns damage to enemies you Hit with Supported Skills.", color = 1, support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, @@ -591,7 +591,7 @@ skills["SupportBarbsPlayer"] = { skills["SupportBarbsPlayerTwo"] = { name = "Barbs II", - description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit after you've Retaliated with Thorns Damage.", + description = "Supports Melee Strike Skills. After you Retaliate with Thorns Damage, you also deal your Thorns damage to enemies you Hit with Supported Skills.", color = 1, support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, @@ -657,7 +657,7 @@ skills["SupportBarbsPlayerTwo"] = { skills["SupportBarbsPlayerThree"] = { name = "Barbs III", - description = "Supports Melee Strike Skills. Supported Skills deal your Thorns Damage on Hit twice after you've Retaliated with Thorns Damage.", + description = "Supports Melee Strike Skills. After you Retaliate with Thorns Damage, you also deal your Thorns damage twice to enemies you Hit with Supported Skills.", color = 1, support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, @@ -762,7 +762,7 @@ skills["TriggeredBattershoutExplosionPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1053,7 +1053,7 @@ skills["TriggeredBrambleslamPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.15, levelRequirement = 0, storedUses = 6, }, + [1] = { cooldown = 0.15, levelRequirement = 0, storedUses = 6, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1069,7 +1069,7 @@ skills["TriggeredBrambleslamPlayer"] = { { "base_skill_effect_duration", 8000 }, { "briarpatches_arming_time_ms", 400 }, { "active_skill_has_%_standard_scaling_attack_damage", 35 }, - { "ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, + { "hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self", -80 }, { "plant_skill_damage_+%_final_when_wet", 50 }, }, stats = { @@ -1579,7 +1579,7 @@ skills["SupportConcoctPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Concoct",}, ignoreMinionTypes = true, levels = { @@ -1623,7 +1623,7 @@ skills["SupportConcoctPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Meta, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Concoct",}, ignoreMinionTypes = true, levels = { @@ -1697,7 +1697,7 @@ skills["SupportCoolheadedPlayer"] = { } skills["SupportCorruptingCryPlayer"] = { name = "Corrupting Cry I", - description = "Supports Warcries, causing them to inflict Corrupted Blood on enemies in their area of effect.", + description = "Supports Warcries, Triggering Corrupted Cry to inflict Corrupted Blood on enemies in their area of effect.", color = 1, support = true, requireSkillTypes = { SkillType.Warcry, }, @@ -1714,39 +1714,20 @@ skills["SupportCorruptingCryPlayer"] = { incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, - }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { - mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) - }, ["support_corrupting_cry_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + ["warcry_triggers_corrupting_cry"] = { -- Display only }, }, baseFlags = { }, - baseMods = { - skill("debuff", true), - flag("dotIsCorruptingBlood"), - mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), - mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst", limit = 9}), - }, constantStats = { - { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 1 }, - { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, { "support_corrupting_cry_area_of_effect_+%_final", -30 }, - { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, }, stats = { + "warcry_triggers_corrupting_cry", }, levels = { [1] = { actorLevel = 1, }, @@ -1754,9 +1735,134 @@ skills["SupportCorruptingCryPlayer"] = { }, } } +skills["TriggeredCorruptingCryPlayer"] = { + name = "Corrupted Cry", + hidden = true, + icon = "", + description = "Covers the target in Corrupted Blood which damages them.", + skillTypes = { [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.UsableWhileShapeshifted] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Corrupted Cry", + baseEffectiveness = 5.5, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "triggered_corrupting_cry", + statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, + }, + baseFlags = { + }, + baseMods = { + skill("debuff", true), + flag("dotIsCorruptingBlood"), + mod("Multiplier:CorruptingCryMaxStages", "BASE", 10), + mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst", limit = 9}), + }, + constantStats = { + { "base_skill_effect_duration", 5000 }, + { "add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict", 1 }, + }, + stats = { + "base_physical_damage_to_deal_per_minute", + "skill_triggered_by_support_which_grants_it", + "modifiers_to_warcry_damage_also_apply_to_this", + }, + levels = { + [1] = { 356, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 518, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 750, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1015, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1317, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1664, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2059, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2511, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3027, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 3618, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4294, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 5067, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 5954, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 6971, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 8139, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 9481, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 11025, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 12803, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 14852, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 17217, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 19951, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 23113, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 26777, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 31026, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 35961, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 41701, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 48385, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 56180, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 65284, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 75932, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 88403, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 103032, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 120217, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 140438, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 164266, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 192389, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 225635, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 265001, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 311688, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 367150, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, + }, + }, + } +} skills["SupportCorruptingCryPlayerTwo"] = { name = "Corrupting Cry II", - description = "Supports Warcries, causing them to inflict Corrupted Blood on enemies in their area of effect.", + description = "Supports Warcries, Triggering Corrupted Cry to inflict Corrupted Blood on enemies in their area of effect.", color = 1, support = true, requireSkillTypes = { SkillType.Warcry, }, @@ -1773,20 +1879,83 @@ skills["SupportCorruptingCryPlayerTwo"] = { incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, + ["warcry_triggers_corrupting_cry"] = { + -- Display only }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + }, + baseFlags = { + }, + stats = { + "warcry_triggers_corrupting_cry", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredCorruptingCryTwoPlayer"] = { + name = "Corrupted Cry", + hidden = true, + icon = "", + description = "Covers the target in Corrupted Blood which damages them.", + skillTypes = { [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.UsableWhileShapeshifted] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Corrupted Cry", + baseEffectiveness = 5.5, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "triggered_corrupting_cry", + statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { - -- Display only - }, }, baseFlags = { }, @@ -1797,14 +1966,55 @@ skills["SupportCorruptingCryPlayerTwo"] = { mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst", limit = 9}), }, constantStats = { - { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 1 }, - { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, - { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, + { "base_skill_effect_duration", 5000 }, + { "add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict", 1 }, + }, + stats = { + "base_physical_damage_to_deal_per_minute", + "skill_triggered_by_support_which_grants_it", + "modifiers_to_warcry_damage_also_apply_to_this", + }, + levels = { + [1] = { 356, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 518, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 750, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1015, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1317, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1664, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2059, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2511, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3027, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 3618, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 4294, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 5067, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 5954, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 6971, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 8139, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 9481, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 11025, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 12803, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 14852, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 17217, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 19951, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 23113, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 26777, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 31026, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 35961, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 41701, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 48385, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 56180, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 65284, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 75932, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 88403, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 103032, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 120217, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 140438, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 164266, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 192389, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 225635, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 265001, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 311688, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 367150, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -1850,7 +2060,7 @@ skills["TriggeredCraterPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -1918,12 +2128,12 @@ skills["SupportDaressosPassionPlayer"] = { } skills["SupportDauntlessPlayer"] = { name = "Dauntless", - description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills cannot be used unless you have been stationary for a certain duration, but deal increasingly more damage the longer you are stationary. Cannot support Skills which have a reservation, are Triggered, have a cooldown or have another usage Condition.", + description = "Supports Skills you use yourself which can cause Damaging Hits. Supported Skills cannot be used unless you have been stationary for a certain duration, but deal increasingly more damage the longer you are stationary. Cannot support Skills which have a cooldown or another usage Condition.", color = 1, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, SkillType.NOT, SkillType.AND, SkillType.DegenOnlySpellDamage, SkillType.HasReservation, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Cooldown, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByUnmoving, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Dauntless",}, ignoreMinionTypes = true, levels = { @@ -2042,8 +2252,9 @@ skills["SupportDefyPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Defy",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -2070,8 +2281,9 @@ skills["SupportDefyPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Defy",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -2285,12 +2497,12 @@ skills["SupportDoubleBarrelPlayerThree"] = { } skills["SupportEchoingCryPlayer"] = { name = "Echoing Cry", - description = "Supports Warcries. Supported Skills echo, causing their effects to happen again after a short delay, growing larger each time, but are less effective and require you to have travelled a certain distance before use.", + description = "Supports Warcries. Supported Skills Echo twice, and their area grows larger each time, but are less effective and require you to have travelled a certain distance before use.", color = 1, support = true, requireSkillTypes = { SkillType.Warcry, }, - addSkillTypes = { }, - excludeSkillTypes = { }, + addSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByEchoingCry, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByEchoingCry, SkillType.NOT, SkillType.AND, }, gemFamily = { "EchoingCry",}, levels = { [1] = { levelRequirement = 0, manaMultiplier = 50, }, @@ -2951,52 +3163,52 @@ skills["TriggeredFanTheFlamesPlayer"] = { name = "Fan the Flames", hidden = true, icon = "Art/2DArt/SkillIcons/Support/FanTheFlames.dds", - description = "Causes a fiery explosion in a cone behind the target, dealing Attack damage.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cooldown] = true, }, + description = "Causes a fiery explosion in a cone behind the target, dealing Attack damage which is not based on your Weapon", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cooldown] = true, [SkillType.NonWeaponAttack] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.45, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [2] = { baseMultiplier = 0.49, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [3] = { baseMultiplier = 0.54, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [4] = { baseMultiplier = 0.6, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [5] = { baseMultiplier = 0.64, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [6] = { baseMultiplier = 0.7, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [7] = { baseMultiplier = 0.75, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [8] = { baseMultiplier = 0.8, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [9] = { baseMultiplier = 0.84, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [10] = { baseMultiplier = 0.89, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [11] = { baseMultiplier = 0.94, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [12] = { cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [13] = { baseMultiplier = 1.06, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [14] = { baseMultiplier = 1.12, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [15] = { baseMultiplier = 1.19, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [16] = { baseMultiplier = 1.27, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [17] = { baseMultiplier = 1.35, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [18] = { baseMultiplier = 1.43, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [19] = { baseMultiplier = 1.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [20] = { baseMultiplier = 1.63, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [21] = { baseMultiplier = 1.74, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [22] = { baseMultiplier = 1.85, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [23] = { baseMultiplier = 1.98, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [24] = { baseMultiplier = 2.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [25] = { baseMultiplier = 2.25, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [26] = { baseMultiplier = 2.4, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [27] = { baseMultiplier = 2.56, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [28] = { baseMultiplier = 2.73, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [29] = { baseMultiplier = 2.91, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [30] = { baseMultiplier = 3.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [31] = { baseMultiplier = 3.31, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [32] = { baseMultiplier = 3.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [33] = { baseMultiplier = 3.77, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [34] = { baseMultiplier = 4.02, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [35] = { baseMultiplier = 4.29, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [36] = { baseMultiplier = 4.57, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [37] = { baseMultiplier = 4.88, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [38] = { baseMultiplier = 5.2, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [39] = { baseMultiplier = 5.55, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [40] = { baseMultiplier = 5.92, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, + [1] = { baseMultiplier = 0.45, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.49, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.54, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.6, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.64, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.7, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.75, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.8, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.84, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.89, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.94, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.06, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.12, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.19, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.27, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.35, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.43, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.63, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.74, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.85, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.98, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.25, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.4, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.56, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.73, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.91, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 3.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.31, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.77, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 4.02, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 4.29, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 4.57, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 4.88, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 5.2, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 5.55, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 5.92, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3005,7 +3217,7 @@ skills["TriggeredFanTheFlamesPlayer"] = { incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "triggered_fan_the_flames", baseFlags = { - attack = true, + nonWeaponAttack = true, area = true, }, constantStats = { @@ -3098,52 +3310,52 @@ skills["TriggeredFanTheFlamesPlayerTwo"] = { name = "Fan the Flames", hidden = true, icon = "Art/2DArt/SkillIcons/Support/FanTheFlames.dds", - description = "Causes a fiery explosion in a cone behind the target, dealing Attack damage.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cooldown] = true, }, + description = "Causes a fiery explosion in a cone behind the target, dealing Attack damage which is not based on your Weapon", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, [SkillType.Attack] = true, [SkillType.UseGlobalStats] = true, [SkillType.Cooldown] = true, [SkillType.NonWeaponAttack] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { baseMultiplier = 0.45, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [2] = { baseMultiplier = 0.49, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [3] = { baseMultiplier = 0.54, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [4] = { baseMultiplier = 0.6, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [5] = { baseMultiplier = 0.64, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [6] = { baseMultiplier = 0.7, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [7] = { baseMultiplier = 0.75, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [8] = { baseMultiplier = 0.8, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [9] = { baseMultiplier = 0.84, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [10] = { baseMultiplier = 0.89, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [11] = { baseMultiplier = 0.94, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [12] = { cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [13] = { baseMultiplier = 1.06, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [14] = { baseMultiplier = 1.12, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [15] = { baseMultiplier = 1.19, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [16] = { baseMultiplier = 1.27, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [17] = { baseMultiplier = 1.35, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [18] = { baseMultiplier = 1.43, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [19] = { baseMultiplier = 1.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [20] = { baseMultiplier = 1.63, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [21] = { baseMultiplier = 1.74, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [22] = { baseMultiplier = 1.85, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [23] = { baseMultiplier = 1.98, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [24] = { baseMultiplier = 2.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [25] = { baseMultiplier = 2.25, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [26] = { baseMultiplier = 2.4, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [27] = { baseMultiplier = 2.56, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [28] = { baseMultiplier = 2.73, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [29] = { baseMultiplier = 2.91, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [30] = { baseMultiplier = 3.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [31] = { baseMultiplier = 3.31, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [32] = { baseMultiplier = 3.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [33] = { baseMultiplier = 3.77, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [34] = { baseMultiplier = 4.02, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [35] = { baseMultiplier = 4.29, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [36] = { baseMultiplier = 4.57, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [37] = { baseMultiplier = 4.88, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [38] = { baseMultiplier = 5.2, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [39] = { baseMultiplier = 5.55, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, - [40] = { baseMultiplier = 5.92, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, }, + [1] = { baseMultiplier = 0.45, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [2] = { baseMultiplier = 0.49, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [3] = { baseMultiplier = 0.54, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [4] = { baseMultiplier = 0.6, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [5] = { baseMultiplier = 0.64, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [6] = { baseMultiplier = 0.7, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [7] = { baseMultiplier = 0.75, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [8] = { baseMultiplier = 0.8, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [9] = { baseMultiplier = 0.84, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [10] = { baseMultiplier = 0.89, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [11] = { baseMultiplier = 0.94, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [12] = { cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [13] = { baseMultiplier = 1.06, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [14] = { baseMultiplier = 1.12, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [15] = { baseMultiplier = 1.19, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [16] = { baseMultiplier = 1.27, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [17] = { baseMultiplier = 1.35, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [18] = { baseMultiplier = 1.43, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [19] = { baseMultiplier = 1.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [20] = { baseMultiplier = 1.63, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [21] = { baseMultiplier = 1.74, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [22] = { baseMultiplier = 1.85, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [23] = { baseMultiplier = 1.98, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [24] = { baseMultiplier = 2.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [25] = { baseMultiplier = 2.25, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [26] = { baseMultiplier = 2.4, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [27] = { baseMultiplier = 2.56, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [28] = { baseMultiplier = 2.73, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [29] = { baseMultiplier = 2.91, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [30] = { baseMultiplier = 3.11, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [31] = { baseMultiplier = 3.31, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [32] = { baseMultiplier = 3.53, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [33] = { baseMultiplier = 3.77, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [34] = { baseMultiplier = 4.02, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [35] = { baseMultiplier = 4.29, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [36] = { baseMultiplier = 4.57, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [37] = { baseMultiplier = 4.88, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [38] = { baseMultiplier = 5.2, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [39] = { baseMultiplier = 5.55, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, + [40] = { baseMultiplier = 5.92, cooldown = 0.5, critChance = 7, levelRequirement = 0, storedUses = 5, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3152,7 +3364,7 @@ skills["TriggeredFanTheFlamesPlayerTwo"] = { incrementalEffectiveness = 0.27349999547005, statDescriptionScope = "triggered_fan_the_flames", baseFlags = { - attack = true, + nonWeaponAttack = true, area = true, }, constantStats = { @@ -3347,8 +3559,9 @@ skills["FistOfWarSupportPlayer"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "FistOfWar",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 50, }, }, @@ -3378,8 +3591,9 @@ skills["FistOfWarSupportPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "FistOfWar",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 50, }, }, @@ -3409,8 +3623,9 @@ skills["FistOfWarSupportPlayerThree"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "FistOfWar",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, manaMultiplier = 100, }, }, @@ -3441,7 +3656,7 @@ skills["SupportFlamePillarPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowSkill, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByFlamePillar, }, - excludeSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByFlamePillar, SkillType.NOT, SkillType.AND, SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, }, + excludeSkillTypes = { SkillType.SkillConsumesIgnite, SkillType.SupportedByFlamePillar, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "FlamePillar",}, ignoreMinionTypes = true, levels = { @@ -3478,7 +3693,7 @@ skills["TriggeredFlamePillarPlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3649,7 +3864,7 @@ skills["SupportHaemocrystalsPlayer"] = { support = true, requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { SkillType.SkillConsumesBleeding, SkillType.SupportedByHaemoCrystals, }, - excludeSkillTypes = { SkillType.SkillConsumesBleeding, SkillType.SupportedByHaemoCrystals, SkillType.NOT, SkillType.AND, SkillType.Persistent, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, }, + excludeSkillTypes = { SkillType.SkillConsumesBleeding, SkillType.SupportedByHaemoCrystals, SkillType.NOT, SkillType.AND, SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Haemocrystals",}, ignoreMinionTypes = true, levels = { @@ -3680,13 +3895,13 @@ skills["TriggeredHaemocrystalsPlayer"] = { name = "Haemocrystals", hidden = true, icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", - description = "Deal Physical Damage in an Area based on a percentage of the expected Damage of the Consumed Bleed.", + description = "Deal Physical Damage in an Area based on a percentage of the expected Damage of the Consumed Bleeding.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -3856,6 +4071,41 @@ skills["SupportHeftPlayer"] = { }, } } +skills["SupportHelbrymsHidePlayer"] = { + name = "Helbrym's Hide", + description = "Supports Shapeshifting Skills, causing them to grant Helbrym's Composure for a brief duration when they cause you to Shapeshift. Shapeshifting into a different form before the Buff expires causes it to be removed without effect.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Shapeshift, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "Helbrym",}, + isLineage = true, + flavourText = {"Surrounded by abominations, Lysanda of Myr expected her", "time had come to an end. Helbrym of Tarth charged from", "the trees, breaking his oath, to save the Ezomyte Queen.", }, + levels = { + [1] = { levelRequirement = 0, manaMultiplier = 30, }, + }, + statSets = { + [1] = { + label = "Helbrym's Hide", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "support_hide_of_helbrym_soak_duration_ms", 2000 }, + { "support_hide_of_helbrym_guard_duration_ms", 4000 }, + { "support_hide_of_helbrym_gain_guard_from_%_of_damage_taken", 50 }, + { "support_hide_of_helbrym_gain_rage_from_%_of_damage_taken", 3 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportHerbalismPlayer"] = { name = "Herbalism I", description = "Supports Persistent Buff Skills, causing you to gain increased Life recovery from Flasks while the Skill is active.", @@ -4175,7 +4425,7 @@ skills["SupportIncisionPlayer"] = { } skills["SupportInfernalLegionPlayer"] = { name = "Infernal Legion I", - description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Ignite. The damage of the Ignite is based on the Life of the supported Minion.", color = 1, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -4205,8 +4455,8 @@ skills["SupportInfernalLegionPlayer"] = { baseFlags = { }, constantStats = { - { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1200 }, - { "support_minions_ignite_for_%_max_life", 20 }, + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 600 }, + { "support_minions_ignite_for_%_max_life", 10 }, { "infernal_legion_minion_burning_effect_radius", 15 }, }, stats = { @@ -4219,7 +4469,7 @@ skills["SupportInfernalLegionPlayer"] = { } skills["SupportInfernalLegionPlayerTwo"] = { name = "Infernal Legion II", - description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Ignite. The damage of the Ignite is based on the Life of the supported Minion.", color = 1, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -4248,9 +4498,10 @@ skills["SupportInfernalLegionPlayerTwo"] = { baseFlags = { }, constantStats = { - { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1200 }, - { "support_minions_ignite_for_%_max_life", 20 }, + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 600 }, + { "support_minions_ignite_for_%_max_life", 10 }, { "infernal_legion_minion_burning_effect_radius", 20 }, + { "minion_fire_damage_resistance_%", 20 }, }, stats = { }, @@ -4262,7 +4513,7 @@ skills["SupportInfernalLegionPlayerTwo"] = { } skills["SupportInfernalLegionPlayerThree"] = { name = "Infernal Legion III", - description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Burn. Damage dealt by the Burning is based off the Life of the supported Minion.", + description = "Supports skills which create Minions which can be damaged, causing them and enemies near them to Ignite. The damage of the Ignite is based on the Life of the supported Minion.", color = 1, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, @@ -4292,9 +4543,10 @@ skills["SupportInfernalLegionPlayerThree"] = { baseFlags = { }, constantStats = { - { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 1800 }, - { "support_minions_ignite_for_%_max_life", 25 }, + { "minion_fire_damage_%_of_maximum_life_taken_per_minute", 600 }, + { "support_minions_ignite_for_%_max_life", 10 }, { "infernal_legion_minion_burning_effect_radius", 20 }, + { "minion_fire_damage_resistance_%", 20 }, }, stats = { }, @@ -4815,6 +5067,65 @@ skills["SupportMeatShieldPlayerTwo"] = { }, } } +skills["SupportMinionMeleeSplashPlayer"] = { + name = "Minion Splash I", + description = "Supports Skills which create Minions which Strike, causing those Minions' Strikes to have Melee Splash.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Minion, SkillType.MeleeSingleTarget, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "MinionMeleeSplash",}, + levels = { + [1] = { levelRequirement = 0, manaMultiplier = 10, }, + }, + statSets = { + [1] = { + label = "Minion Splash I", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + stats = { + "minion_melee_splash", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["SupportMinionMeleeSplashPlayerTwo"] = { + name = "Minion Splash II", + description = "Supports Skills which create Minions which Strike, increasing their Area of Effect and causing those Minions' Strikes to have Melee Splash.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Minion, SkillType.MeleeSingleTarget, SkillType.AND, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + gemFamily = { "MinionMeleeSplash",}, + levels = { + [1] = { levelRequirement = 0, manaMultiplier = 10, }, + }, + statSets = { + [1] = { + label = "Minion Splash II", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "minion_skill_area_of_effect_+%", 20 }, + }, + stats = { + "minion_melee_splash", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} skills["SupportOpeningMovePlayer"] = { name = "Opening Move", description = "Supports Travel Skills which Hit enemies. Hits with Supported Skills against enemies on full life will Daze.", @@ -4845,7 +5156,7 @@ skills["SupportOpeningMovePlayer"] = { } skills["SupportCorruptingCryPlayerThree"] = { name = "Paquate's Pact", - description = "Supports Warcries, causing them to inflict massive amounts of Corrupted Blood on enemies in their area of effect, at the cost of your Life.", + description = "Supports Warcries, Triggering Twisted Pact to inflict Corrupted Blood on enemies in their area of effect., at the cost of your Life.", color = 1, support = true, requireSkillTypes = { SkillType.Warcry, }, @@ -4864,20 +5175,86 @@ skills["SupportCorruptingCryPlayerThree"] = { incrementalEffectiveness = 0.054999999701977, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, + ["warcry_triggers_paquates_pact"] = { + -- Display only }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { + }, + baseFlags = { + }, + constantStats = { + { "support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%", 10 }, + }, + stats = { + "warcry_triggers_paquates_pact", + }, + levels = { + [1] = { actorLevel = 1, }, + }, + }, + } +} +skills["TriggeredCorruptingCryThreePlayer"] = { + name = "Twisted Pact", + hidden = true, + icon = "", + description = "Covers the target in large quantities of Corrupted Blood which severly damages them.", + skillTypes = { [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.UsableWhileShapeshifted] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, }, + castTime = 1, + qualityStats = { + }, + levels = { + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [2] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [3] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [4] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [5] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [6] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [7] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [8] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [9] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [10] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [11] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [12] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [13] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [14] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [15] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [16] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [17] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [18] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [19] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [20] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [21] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [22] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [23] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [24] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [25] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [26] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [27] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [28] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [29] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [30] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [31] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [32] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [33] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [34] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [35] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [36] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [37] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [38] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [39] = { levelRequirement = 0, cost = { Mana = 0, }, }, + [40] = { levelRequirement = 0, cost = { Mana = 0, }, }, + }, + statSets = { + [1] = { + label = "Twisted Pact", + baseEffectiveness = 6.5, + incrementalEffectiveness = 0.17000000178814, + damageIncrementalEffectiveness = 0.010599999688566, + statDescriptionScope = "triggered_paquates_pact", + statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { - -- Display only - }, }, baseFlags = { }, @@ -4888,15 +5265,55 @@ skills["SupportCorruptingCryPlayerThree"] = { mod("Damage", "MORE", 100, 0, KeywordFlag.PhysicalDot, { type = "Multiplier", var = "CorruptingCryStageAfterFirst", limit = 9}), }, constantStats = { - { "support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood", 5 }, - { "support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength", 1500 }, - { "support_corrupting_cry_corrupted_blood_duration_ms", 5000 }, - { "support_corrupting_cry_%_life_lost_per_corrupting_blood_applied", 2 }, - }, - stats = { - }, - levels = { - [1] = { actorLevel = 1, }, + { "base_skill_effect_duration", 5000 }, + { "add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict", 5 }, + }, + stats = { + "base_physical_damage_to_deal_per_minute", + "skill_triggered_by_support_which_grants_it", + "modifiers_to_warcry_damage_also_apply_to_this", + }, + levels = { + [1] = { 421, statInterpolation = { 1, }, actorLevel = 1, }, + [2] = { 612, statInterpolation = { 1, }, actorLevel = 3.4519999027252, }, + [3] = { 886, statInterpolation = { 1, }, actorLevel = 6.7670001983643, }, + [4] = { 1199, statInterpolation = { 1, }, actorLevel = 10.307999610901, }, + [5] = { 1557, statInterpolation = { 1, }, actorLevel = 14.074999809265, }, + [6] = { 1966, statInterpolation = { 1, }, actorLevel = 18.068000793457, }, + [7] = { 2433, statInterpolation = { 1, }, actorLevel = 22.287000656128, }, + [8] = { 2967, statInterpolation = { 1, }, actorLevel = 26.732000350952, }, + [9] = { 3578, statInterpolation = { 1, }, actorLevel = 31.40299987793, }, + [10] = { 4275, statInterpolation = { 1, }, actorLevel = 36.299999237061, }, + [11] = { 5074, statInterpolation = { 1, }, actorLevel = 41.423000335693, }, + [12] = { 5989, statInterpolation = { 1, }, actorLevel = 46.771999359131, }, + [13] = { 7037, statInterpolation = { 1, }, actorLevel = 52.34700012207, }, + [14] = { 8239, statInterpolation = { 1, }, actorLevel = 58.147998809814, }, + [15] = { 9619, statInterpolation = { 1, }, actorLevel = 64.175003051758, }, + [16] = { 11205, statInterpolation = { 1, }, actorLevel = 70.428001403809, }, + [17] = { 13029, statInterpolation = { 1, }, actorLevel = 76.906997680664, }, + [18] = { 15130, statInterpolation = { 1, }, actorLevel = 83.611999511719, }, + [19] = { 17552, statInterpolation = { 1, }, actorLevel = 90.542999267578, }, + [20] = { 20348, statInterpolation = { 1, }, actorLevel = 97.699996948242, }, + [21] = { 23578, statInterpolation = { 1, }, actorLevel = 105.08300018311, }, + [22] = { 27315, statInterpolation = { 1, }, actorLevel = 112.69200134277, }, + [23] = { 31645, statInterpolation = { 1, }, actorLevel = 120.52700042725, }, + [24] = { 36667, statInterpolation = { 1, }, actorLevel = 128.58799743652, }, + [25] = { 42499, statInterpolation = { 1, }, actorLevel = 136.875, }, + [26] = { 49283, statInterpolation = { 1, }, actorLevel = 145.38800048828, }, + [27] = { 57182, statInterpolation = { 1, }, actorLevel = 154.12699890137, }, + [28] = { 66395, statInterpolation = { 1, }, actorLevel = 163.09199523926, }, + [29] = { 77154, statInterpolation = { 1, }, actorLevel = 172.28300476074, }, + [30] = { 89738, statInterpolation = { 1, }, actorLevel = 181.69999694824, }, + [31] = { 104476, statInterpolation = { 1, }, actorLevel = 191.34300231934, }, + [32] = { 121765, statInterpolation = { 1, }, actorLevel = 201.21200561523, }, + [33] = { 142075, statInterpolation = { 1, }, actorLevel = 211.30700683594, }, + [34] = { 165972, statInterpolation = { 1, }, actorLevel = 221.62800598145, }, + [35] = { 194132, statInterpolation = { 1, }, actorLevel = 232.17500305176, }, + [36] = { 227369, statInterpolation = { 1, }, actorLevel = 242.94799804688, }, + [37] = { 266660, statInterpolation = { 1, }, actorLevel = 253.94700622559, }, + [38] = { 313183, statInterpolation = { 1, }, actorLevel = 265.17199707031, }, + [39] = { 368359, statInterpolation = { 1, }, actorLevel = 276.62298583984, }, + [40] = { 433905, statInterpolation = { 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -5110,7 +5527,7 @@ skills["TriggeredQuillburstPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.15, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 0.15, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -5148,7 +5565,6 @@ skills["SupportRagePlayer"] = { addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "Rage",}, - ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -5181,7 +5597,6 @@ skills["SupportRagePlayerTwo"] = { addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "Rage",}, - ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -5207,14 +5622,13 @@ skills["SupportRagePlayerTwo"] = { } skills["SupportRagePlayerThree"] = { name = "Rage III", - description = "Supports Melee Attacks, causing them to grant Rage on Hit. Supported Skills have signficantly higher Attack speed while you are not at maximum Rage.", + description = "Supports Melee Attacks, causing them to grant Rage on Hit. Supported Skills have signficantly higher Attack speed while you or supported minion are not at maximum Rage.", color = 1, support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, gemFamily = { "Rage",}, - ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -5246,12 +5660,12 @@ skills["SupportRagePlayerThree"] = { } skills["SupportRageforgedPlayer"] = { name = "Rageforged I", - description = "Supports any damaging skill that you use or trigger yourself, causing it to spend Rage to deal more damage. If you don't have enough Rage to spend, the damage bonus will not apply.", + description = "Supports any damaging skill that you use or Trigger yourself, causing it to spend Rage to deal more damage. If you don't have enough Rage to spend, the damage bonus will not apply.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, SkillType.DamageOverTime, }, addSkillTypes = { SkillType.ConsumesRage, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "RageForged",}, ignoreMinionTypes = true, levels = { @@ -5283,12 +5697,12 @@ skills["SupportRageforgedPlayer"] = { } skills["SupportRageforgedPlayerTwo"] = { name = "Rageforged II", - description = "Supports any damaging skill that you use or trigger yourself, causing it to spend Rage to deal more damage, with a chance to skip spending Rage while still benefitting as though it had. If you don't have enough Rage to spend, the damage bonus will not apply.", + description = "Supports any damaging skill that you use or Trigger yourself, causing it to spend Rage to deal more damage, with a chance to skip spending Rage while still benefitting as though it had. If you don't have enough Rage to spend, the damage bonus will not apply.", color = 1, support = true, - requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, }, + requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, SkillType.DegenOnlySpellDamage, SkillType.DamageOverTime, }, addSkillTypes = { SkillType.ConsumesRage, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "RageForged",}, ignoreMinionTypes = true, levels = { @@ -5351,7 +5765,7 @@ skills["SupportRagingCryPlayer"] = { } skills["SupportRefractionPlayer"] = { name = "Refraction I", - description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which causes Armour to partially apply to Elemental Hit Damage.", + description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which grants Deflection Rating and causes Armour to partially apply to Elemental Hit Damage.", color = 1, support = true, requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, @@ -5372,11 +5786,15 @@ skills["SupportRefractionPlayer"] = { mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"] = { + mod("EvasionGainAsDeflection", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + }, }, baseFlags = { }, constantStats = { { "support_tempered_valour_%_armour_to_apply_to_elemental_damage", 20 }, + { "support_tempered_valour_deflection_rating_%_of_evasion_rating", 15 }, }, stats = { }, @@ -5388,7 +5806,7 @@ skills["SupportRefractionPlayer"] = { } skills["SupportRefractionPlayerTwo"] = { name = "Refraction II", - description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which causes Armour to partially apply to Elemental Hit Damage.", + description = "Supports Banner Skills, causing those affected by Auras they create to gain Refractive Plating, a Buff which grants Deflection Rating and causes Armour to partially apply to Elemental Hit Damage.", color = 1, support = true, requireSkillTypes = { SkillType.Banner, SkillType.Persistent, SkillType.Buff, SkillType.AND, SkillType.AND, }, @@ -5409,11 +5827,15 @@ skills["SupportRefractionPlayerTwo"] = { mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"] = { + mod("EvasionGainAsDeflection", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + }, }, baseFlags = { }, constantStats = { { "support_tempered_valour_%_armour_to_apply_to_elemental_damage", 30 }, + { "support_tempered_valour_deflection_rating_%_of_evasion_rating", 20 }, }, stats = { }, @@ -5529,7 +5951,7 @@ skills["SupportRelentlessRagePlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowAmmoSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Triggered, SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.Triggered, SkillType.UsedByTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "RelentlessRage",}, ignoreMinionTypes = true, levels = { @@ -5683,7 +6105,7 @@ skills["SupportRetaliatePlayer"] = { support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Meta, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Retaliate",}, ignoreMinionTypes = true, levels = { @@ -5714,7 +6136,7 @@ skills["SupportRetaliatePlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Meta, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Retaliate",}, ignoreMinionTypes = true, levels = { @@ -5771,12 +6193,12 @@ skills["SupportReveberatePlayer"] = { } skills["SupportRipPlayer"] = { name = "Rip", - description = "Supports Melee Attack Skills you use yourself or that you Trigger. Killing Blows with Supported Skills on Bleeding enemies create a Blood Remnant. Blood Remnants increase your Life regeneration rate for a short while after being collected.", + description = "Supports Melee Attack Skills you use or Trigger yourself. Killing Blows with Supported Skills on Bleeding enemies create a Blood Remnant. Blood Remnants increase your Life regeneration rate for a short while after being collected.", color = 1, support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { SkillType.GeneratesRemnants, SkillType.Duration, }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "Rip",}, ignoreMinionTypes = true, levels = { @@ -6125,7 +6547,7 @@ skills["TriggeredSkitteringStonePlayer"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -6199,7 +6621,7 @@ skills["TriggeredSkitteringStonePlayerTwo"] = { qualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -6340,7 +6762,7 @@ skills["SupportSteadfastPlayer"] = { support = true, requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Steadfast",}, ignoreMinionTypes = true, levels = { @@ -6371,7 +6793,7 @@ skills["SupportSteadfastPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Channel, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Steadfast",}, ignoreMinionTypes = true, levels = { @@ -6403,7 +6825,7 @@ skills["SupportStoicismPlayer"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Spell, }, gemFamily = { "Stoicism",}, ignoreMinionTypes = true, levels = { @@ -6435,7 +6857,7 @@ skills["SupportStoicismPlayerTwo"] = { support = true, requireSkillTypes = { SkillType.Damage, SkillType.Attack, SkillType.CrossbowSkill, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.Spell, }, gemFamily = { "Stoicism",}, ignoreMinionTypes = true, levels = { @@ -6650,8 +7072,9 @@ skills["SupportSyzygyPlayer"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Syzygy",}, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, @@ -6721,7 +7144,7 @@ skills["TriggeredSplinterExplosionHardyTotems"] = { qualityStats = { }, levels = { - [1] = { critChance = 5, levelRequirement = 0, }, + [1] = { critChance = 5, levelRequirement = 0, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -6749,12 +7172,12 @@ skills["TriggeredSplinterExplosionHardyTotems"] = { } skills["SupportTearPlayer"] = { name = "Tear", - description = "Supports Melee Attacks you use yourself or that you Trigger. On-Kill effects caused by Killing Blows with Supported Skills on Bleeding enemies have a chance to occur twice.", + description = "Supports Melee Attacks you use or Trigger yourself. On-Kill effects caused by Killing Blows with Supported Skills on Bleeding enemies have a chance to occur twice.", color = 1, support = true, requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.UsedByTotem, SkillType.SummonsTotem, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Persistent, }, gemFamily = { "Tear",}, ignoreMinionTypes = true, levels = { @@ -6785,7 +7208,7 @@ skills["SupportSlamAftershocksPlayer"] = { support = true, requireSkillTypes = { SkillType.Slam, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.Vaal, SkillType.Triggered, SkillType.CreatesFissure, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, SkillType.CreatesFissure, }, gemFamily = { "Aftershock",}, ignoreMinionTypes = true, levels = { @@ -6915,7 +7338,7 @@ skills["SupportTirelessPlayer"] = { } skills["SupportUhtredAuguryPlayer"] = { name = "Uhtred's Augury", - description = "Supports Skills which can gain levels, granting them many additional levels provided exactly two other supports are used with the supported Skill. Does not support skills which do not have levels.", + description = "Supports Skills which can gain levels, granting them additional levels provided exactly two other supports are used with the supported Skill. Does not support skills which do not have levels.", color = 1, support = true, requireSkillTypes = { }, @@ -6940,7 +7363,7 @@ skills["SupportUhtredAuguryPlayer"] = { baseFlags = { }, constantStats = { - { "supported_active_skill_gem_level_+_if_two_other_supports", 3 }, + { "supported_active_skill_gem_level_+_if_two_other_supports", 2 }, }, stats = { }, @@ -6989,7 +7412,7 @@ skills["SupportUhtredExodusPlayer"] = { } skills["SupportUhtredOmenPlayer"] = { name = "Uhtred's Omen", - description = "Supports Skills which can gain levels, granting them many additional levels provided exactly one other support is used with the supported Skill. Does not support skills which do not have levels.", + description = "Supports Skills which can gain levels, granting them additional levels provided exactly one other support is used with the supported Skill. Does not support skills which do not have levels.", color = 1, support = true, requireSkillTypes = { }, @@ -7014,7 +7437,7 @@ skills["SupportUhtredOmenPlayer"] = { baseFlags = { }, constantStats = { - { "supported_active_skill_gem_level_+_if_one_other_support", 3 }, + { "supported_active_skill_gem_level_+_if_one_other_support", 2 }, }, stats = { }, @@ -7436,7 +7859,7 @@ skills["SupportVolcanicEruptionPlayer"] = { support = true, requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Persistent, SkillType.Minion, SkillType.SummonsTotem, SkillType.UsedByTotem, SkillType.Triggered, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "VolcanicEruption",}, ignoreMinionTypes = true, levels = { @@ -7470,7 +7893,7 @@ skills["TriggeredVolcanicEruptionPlayer"] = { qualityStats = { }, levels = { - [1] = { cooldown = 0.4, levelRequirement = 0, storedUses = 1, }, + [1] = { cooldown = 0.4, levelRequirement = 0, storedUses = 1, cost = { Mana = 0, }, }, }, statSets = { [1] = { @@ -7500,6 +7923,41 @@ skills["TriggeredVolcanicEruptionPlayer"] = { }, } } +skills["SupportVruunsInevitability"] = { + name = "Vruun's Inevitability", + description = "Supports Melee Attack Skills. Supported Skills gain Combo when you successfully Strike Enemies with other Melee Attacks. Supported Skills expend their Combo when used, gaining more area of effect the higher Combo they had. Cannot support skills which already gain Combo. Cannot modify the Skills of Minions.", + color = 1, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Melee, SkillType.AND, }, + addSkillTypes = { SkillType.ComboStacking, SkillType.SupportedByVruunsInevitablity, SkillType.HasUsageCondition, }, + excludeSkillTypes = { SkillType.HasUsageCondition, SkillType.SupportedByVruunsInevitablity, SkillType.NOT, SkillType.AND, }, + gemFamily = { "IncreasedAreaOfEffect",}, + isLineage = true, + flavourText = {"\"If you think you've won, it's only because you don't", "understand their strategy. Each Vruun you kill only", "teaches the next one how to endure against you.\"", }, + ignoreMinionTypes = true, + levels = { + [1] = { levelRequirement = 0, }, + }, + statSets = { + [1] = { + label = "Vruun's Inevitability", + incrementalEffectiveness = 0.054999999701977, + statDescriptionScope = "gem_stat_descriptions", + baseFlags = { + }, + constantStats = { + { "area_of_effect_+%_per_combo_stack", 6 }, + { "base_combo_stacks_decay_delay_ms", 6000 }, + { "skill_maximum_number_of_combo_stacks", 10 }, + }, + stats = { + }, + levels = { + [1] = { actorLevel = 65, }, + }, + }, + } +} skills["SupportXophsPyrePlayer"] = { name = "Xoph's Pyre", description = "Supports Skills that can cause Damaging Hits, granting extra Chaos damage and causing Chaos damage to Contribute to Ignites.", @@ -7538,12 +7996,13 @@ skills["SupportZerphisLegacyPlayer"] = { description = "Supports Attacks and Warcries you use yourself. Supported Skills gain a Glory requirement, and build Glory when you spend Life on Skills. Supported Skills deal more damage and have significantly\n increased area of effect.", color = 1, support = true, - requireSkillTypes = { SkillType.Area, SkillType.Attack, SkillType.RangedAttack, SkillType.Warcry, }, + requireSkillTypes = { SkillType.Attack, SkillType.Warcry, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.UsedByTotem, SkillType.Buff, SkillType.Persistent, SkillType.Triggered, SkillType.Spell, SkillType.Minion, }, + excludeSkillTypes = { SkillType.UsedByProxy, SkillType.Triggered, SkillType.Persistent, }, gemFamily = { "Zerphi",}, isLineage = true, flavourText = {"\"It was the quality of his heinous acts that set him apart, not", "the quantity... all of the physical trauma inflicted occurred", "while the victim was still alive. Perhaps this was the key.\"", }, + ignoreMinionTypes = true, levels = { [1] = { levelRequirement = 0, }, }, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/align_fate.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/align_fate.lua new file mode 100644 index 0000000000..cf372a0c33 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/align_fate.lua @@ -0,0 +1,104 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0} second delay between Visages" + } + }, + stats={ + [1]="base_cooldown_modifiable_repeat_interval_ms" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Cooldown Recovery Rate also apply to\nVisage appearance frequency" + } + }, + stats={ + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Visage frequency per Spell Visages could cast" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Visage frequency per Spell Visages could cast" + } + }, + stats={ + [1]="spellflux_frequency_+%_final_per_socketed_valid_spell" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Casting the matching Spell before the next\nVisage appears Empowers that Spell\nEmpowered Spells deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Casting the matching Spell before the next\nVisage appears Empowers that Spell\nEmpowered Spells deal {0}% less damage" + } + }, + stats={ + [1]="spellflux_spell_damage_+%_final_if_matching_flux_cast" + } + }, + ["base_cooldown_modifiable_repeat_interval_ms"]=1, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=2, + parent="skill_stat_descriptions", + ["spellflux_frequency_+%_final_per_socketed_valid_spell"]=3, + ["spellflux_spell_damage_+%_final_if_matching_flux_cast"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancient_gifts.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancient_gifts.lua new file mode 100644 index 0000000000..d57ea576ca --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ancient_gifts.lua @@ -0,0 +1,125 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Ancient Blooms fade after {0} second if not picked up" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ancient Blooms fade after {0} seconds if not picked up" + } + }, + stats={ + [1]="base_remnant_duration_ms" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ancient Blooms within 5m of you are revealed" + } + }, + stats={ + [1]="breach_flame_spawn_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="An Ancient Bloom manifests within 8.5m of\n you every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="An Ancient Bloom manifests within 8.5m of\n you every {0} seconds" + } + }, + stats={ + [1]="breach_flame_spawn_rate_ms" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ancient Blooms have {0}% increased effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Ancient Blooms have {0}% reduced effect" + } + }, + stats={ + [1]="remnant_effect_+%" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="virtual_remnant_duration_ms" + } + }, + ["base_remnant_duration_ms"]=1, + ["breach_flame_spawn_radius"]=2, + ["breach_flame_spawn_rate_ms"]=3, + parent="skill_stat_descriptions", + ["remnant_effect_+%"]=4, + ["virtual_remnant_duration_ms"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/animus_exchange.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/animus_exchange.lua new file mode 100644 index 0000000000..930fcd59e5 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/animus_exchange.lua @@ -0,0 +1,177 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Sacrifices up to {1} Energy Shield" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Sacrifices up to {0} Life" + }, + [3]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Sacrifices up to {0} Life and {1} Energy Shield" + } + }, + stats={ + [1]="animus_exchange_spend_up_to_X_life", + [2]="animus_exchange_spend_%_maximum_energy_shield", + [3]="animus_exchange_additional_%_spend_per_animus_exchange_stack" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gain Runic Ward equal to {1}% of Sacrificed Energy Shield" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Gain Runic Ward equal to {0}% of Sacrificed Life" + }, + [3]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gain Runic Ward equal to {0}% of Sacrificed Life and\n{1}% of Sacrificed Energy Shield" + } + }, + stats={ + [1]="animus_exchange_gain_%_maximum_life_spent_as_ward", + [2]="animus_exchange_gain_%_maximum_energy_shield_spent_as_ward" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of damage taken Recouped as Life while\nyou have Animus Sensitivity" + } + }, + stats={ + [1]="animus_exchange_damage_taken_goes_to_life_over_4_seconds_%" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Animus Sensitivity duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Animus Sensitivity duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["animus_exchange_additional_%_spend_per_animus_exchange_stack"]=1, + ["animus_exchange_damage_taken_goes_to_life_over_4_seconds_%"]=3, + ["animus_exchange_gain_%_maximum_energy_shield_spent_as_ward"]=2, + ["animus_exchange_gain_%_maximum_life_spent_as_ward"]=2, + ["animus_exchange_spend_%_maximum_energy_shield"]=1, + ["animus_exchange_spend_up_to_X_life"]=1, + ["base_skill_effect_duration"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_tangmazu_swarm_aura.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_tangmazu_swarm_aura.lua new file mode 100644 index 0000000000..1032681608 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/apply_tangmazu_swarm_aura.lua @@ -0,0 +1,82 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Damage radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Area of Effect per Raven" + } + }, + stats={ + [1]="flock_area_of_effect_+%_final_per_tangmazu_raven_in_owners_flock" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Damage over time per Raven" + } + }, + stats={ + [1]="flock_damage_over_time_+%_final_per_tangmazu_raven_in_owners_flock" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["flock_area_of_effect_+%_final_per_tangmazu_raven_in_owners_flock"]=3, + ["flock_damage_over_time_+%_final_per_tangmazu_raven_in_owners_flock"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/archon_of_chayula_tornado.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/archon_of_chayula_tornado.lua new file mode 100644 index 0000000000..315fb7d30f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/archon_of_chayula_tornado.lua @@ -0,0 +1,118 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Tornado radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Tornado radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="{0:+d} second to Tornado duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} seconds to Tornado duration" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Tornado duration is {0} second" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Tornado duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/attrition.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/attrition.lua index 5e9e290330..873d6969cd 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/attrition.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/attrition.lua @@ -21,6 +21,20 @@ return { [2]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="You deal {0}% more Hit damage to Rare and Unique enemies for every 2 seconds they have ever been in your Presence, up to {1}%" + }, + [2]={ limit={ [1]={ [1]=1, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/atziri_herald.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/atziri_herald.lua new file mode 100644 index 0000000000..33487fc6c3 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/atziri_herald.lua @@ -0,0 +1,107 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="cannot_cause_bleeding" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies with Blood Loss you kill explode" + } + }, + stats={ + [1]="display_herald_of_blood_behaviour" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Deals {0:+d}% of exploded enemy's Blood Loss\nas unscalable Physical Attack Damage" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals {0}% of exploded enemy's Blood Loss\nas unscalable Physical Attack Damage" + } + }, + stats={ + [1]="skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", + [2]="quality_display_herald_of_blood_is_gem" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["cannot_cause_bleeding"]=1, + ["display_herald_of_blood_behaviour"]=4, + parent="skill_stat_descriptions", + ["quality_display_herald_of_blood_is_gem"]=5, + ["skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/azmerian_swarm_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/azmerian_swarm_statset_0.lua new file mode 100644 index 0000000000..efd43eaedc --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/azmerian_swarm_statset_0.lua @@ -0,0 +1,186 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Summon an Azmerian Swarm when you kill a target affected by an Elemental Ailment" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to summon an Azmerian Swarm when you kill a target affected by an Elemental Ailment" + } + }, + stats={ + [1]="skill_grants_%_chance_to_summon_azmerian_swarm_on_kill_affected_by_elemental_ailment" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to summon an Azmerian Swarm when you Hit a Rare or Unique target affected by an Elemental Ailment" + } + }, + stats={ + [1]="skill_grants_%_chance_to_summon_azmerian_swarm_on_hitting_unique_or_rare_enemy_affected_by_elemental_ailment" + } + }, + [3]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=0, + [2]="#" + } + }, + text="Maximum {0:+d} Azmerian Swarms" + }, + [2]={ + limit={ + [1]={ + [1]=0, + [2]="#" + } + }, + text="Maximum {0} Azmerian Swarms" + } + }, + stats={ + [1]="max_azmerian_swarms" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Swarms have {0}% chance to inflict 1 Faerie Fire on Hit" + } + }, + stats={ + [1]="%_chance_to_apply_hounded_by_wisps_on_hit" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarms Convert {0}% of Physical Damage to a random Element" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Swarm duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarm duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="minion_duration" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarms have 1% increased Attack Speed\nper {0} of your Dexterity" + } + }, + stats={ + [1]="active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarms deal {0}% more Damage with Hits for each type of Elemental Ailment on target" + } + }, + stats={ + [1]="minion_damage_+%_final_per_different_elemental_ailment_on_target" + } + }, + ["%_chance_to_apply_hounded_by_wisps_on_hit"]=4, + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"]=8, + ["base_skill_effect_duration"]=6, + ["max_azmerian_swarms"]=3, + ["minion_damage_+%_final_per_different_elemental_ailment_on_target"]=9, + ["minion_duration"]=7, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=5, + parent="skill_stat_descriptions", + ["skill_grants_%_chance_to_summon_azmerian_swarm_on_hitting_unique_or_rare_enemy_affected_by_elemental_ailment"]=2, + ["skill_grants_%_chance_to_summon_azmerian_swarm_on_kill_affected_by_elemental_ailment"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_0.lua new file mode 100644 index 0000000000..283fd18a06 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_0.lua @@ -0,0 +1,146 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + stats={ + [1]="skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Transformation radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Transformation radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Transforms {0:+d} Corpse" + }, + [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Transforms {0:+d} Corpses" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Transforms up to {0} Corpse" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Transforms up to {0} Corpses" + } + }, + stats={ + [1]="volatile_dead_base_number_of_corpses_to_consume" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Core duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Core duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=6, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_effect_duration"]=5, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7, + ["volatile_dead_base_number_of_corpses_to_consume"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_1.lua new file mode 100644 index 0000000000..ef47290e48 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_1.lua @@ -0,0 +1,77 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="volatile_dead_base_number_of_corpses_to_consume" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals {0} to {1} Cold damage" + } + }, + stats={ + [1]="spell_minimum_base_cold_damage", + [2]="spell_maximum_base_cold_damage" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=3, + parent="skill_stat_descriptions", + ["spell_maximum_base_cold_damage"]=2, + ["spell_minimum_base_cold_damage"]=2, + ["volatile_dead_base_number_of_corpses_to_consume"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_2.lua new file mode 100644 index 0000000000..a2316e336a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_2.lua @@ -0,0 +1,64 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="volatile_dead_base_number_of_corpses_to_consume" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Chills enemies as though dealing {0} to {1} Cold damage" + } + }, + stats={ + [1]="spell_minimum_base_cold_damage", + [2]="spell_maximum_base_cold_damage" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chills enemies within {0} metre radius" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=3, + parent="skill_stat_descriptions", + ["spell_maximum_base_cold_damage"]=2, + ["spell_minimum_base_cold_damage"]=2, + ["volatile_dead_base_number_of_corpses_to_consume"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_3.lua new file mode 100644 index 0000000000..cd7dbdf94b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bitter_dead_statset_3.lua @@ -0,0 +1,117 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="volatile_dead_base_number_of_corpses_to_consume" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals {0} Cold damage per second" + } + }, + stats={ + [1]="base_cold_damage_to_deal_per_minute" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Rune radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Rune duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_cold_damage_to_deal_per_minute"]=2, + ["base_skill_effect_duration"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=6, + ["volatile_dead_base_number_of_corpses_to_consume"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blood_hunt.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blood_hunt.lua index f6ef8f8eba..957c1ddad7 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blood_hunt.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/blood_hunt.lua @@ -93,6 +93,16 @@ return { [4]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies lose Life equal to +{0}% of Consumed Blood Loss" + }, + [2]={ limit={ [1]={ [1]="#", diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bloodhounds_mark.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bloodhounds_mark.lua index 2d676f0f32..6fdf3a5dc1 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bloodhounds_mark.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bloodhounds_mark.lua @@ -65,7 +65,7 @@ return { [2]="#" } }, - text="Activates when Marked enemy is Heavy Stunned\nActivates when when Marked enemy dies if they had at least {0}% Heavy Stun buildup from Blood Loss\nTriggers blood explosion when Activated" + text="Activates when Marked enemy is Heavy Stunned\nActivates when Marked enemy dies if they had at least {0}% Heavy Stun buildup from Blood Loss\nTriggers blood explosion when Activated" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_0.lua index a4b5d82425..81e5b17011 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_0.lua @@ -67,7 +67,7 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["base_number_of_allowed_bone_storm_projectiles"]=2, @@ -75,5 +75,5 @@ return { ["base_skill_effect_duration"]=3, parent="skill_stat_descriptions", ["skill_effect_duration"]=4, - ["total_number_of_projectiles_to_fire"]=5 + ["total_number_of_projectiles_to_fire_from_stats"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_1.lua index 9d765888e4..a1c752eb21 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/bonestorm_statset_1.lua @@ -9,7 +9,7 @@ return { }, [2]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [3]={ @@ -126,5 +126,5 @@ return { ["bone_spear_power_charged_aoe_+"]=7, ["bone_spear_power_charged_aoe_+%_final_per_additional_power_charge"]=6, parent="specific_skill_stat_descriptions/bonestorm_statset_0", - ["total_number_of_projectiles_to_fire"]=2 + ["total_number_of_projectiles_to_fire_from_stats"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_shield_charge.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_shield_charge.lua index 91819e7b2f..d885b13016 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_shield_charge.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/channel_shield_charge.lua @@ -47,8 +47,26 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [4]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased maximum travel distance" + } + }, + stats={ + [1]="shield_charge_extra_distance" + } + }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, ["base_skill_effect_duration"]=1, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["shield_charge_extra_distance"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/charge_regulation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/charge_regulation.lua index 7ff8a1ecaa..b601a88d94 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/charge_regulation.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/charge_regulation.lua @@ -40,7 +40,7 @@ return { [2]="#" } }, - text="{0}% more Defences while you have an Endurance Charge" + text="{0}% more Armour, Evasion and Energy Shield while you have an Endurance Charge" }, [2]={ [1]={ @@ -53,11 +53,11 @@ return { [2]=-1 } }, - text="{0}% less Defences while you have an Endurance Charge" + text="{0}% less Armour, Evasion and Energy Shield while you have an Endurance Charge" } }, stats={ - [1]="charge_mastery_defences_+%_final_with_endurance_charges" + [1]="charge_mastery_armour_evasion_energy_shield_+%_final_with_endurance_charges" } }, [3]={ @@ -147,8 +147,8 @@ return { [1]="consume_frenzy_power_and_endurance_charge_every_x_ms" } }, + ["charge_mastery_armour_evasion_energy_shield_+%_final_with_endurance_charges"]=2, ["charge_mastery_crit_chance_+%_final_with_power_charges"]=1, - ["charge_mastery_defences_+%_final_with_endurance_charges"]=2, ["charge_mastery_skill_speed_+%_final_with_frenzy_charges"]=3, ["charge_mastery_skill_speed_+%_with_frenzy_charges"]=4, ["consume_frenzy_power_and_endurance_charge_every_x_ms"]=5, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua index fdfd171445..2dc94b5322 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/cluster_grenade.lua @@ -92,11 +92,65 @@ return { [1]="grenade_fuse_duration" } }, + [7]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Detonation Time" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Detonation Time" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Detonation Time" + }, + [4]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Detonation Time" + } + }, + stats={ + [1]="skill_detonation_time_+%" + } + }, ["active_skill_area_of_effect_radius"]=3, ["active_skill_base_area_of_effect_radius"]=4, ["active_skill_base_secondary_area_of_effect_radius"]=1, ["base_skill_effect_duration"]=5, ["grenade_fuse_duration"]=6, parent="skill_stat_descriptions", - ["projectiles_nova"]=2 + ["projectiles_nova"]=2, + ["skill_detonation_time_+%"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/combat_frenzy.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/combat_frenzy.lua index 46a4c79674..b8b36642c0 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/combat_frenzy.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/combat_frenzy.lua @@ -5,6 +5,20 @@ return { [1]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0} seconds to delay on gaining a Frenzy Charge" + }, + [2]={ limit={ [1]={ [1]=1000, @@ -13,7 +27,7 @@ return { }, text="Gain a Frenzy Charge when you Freeze, Electrocute or Pin an enemy, no more than once per second" }, - [2]={ + [3]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/concussive_runes.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/concussive_runes.lua new file mode 100644 index 0000000000..7f777f166c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/concussive_runes.lua @@ -0,0 +1,61 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_0.lua new file mode 100644 index 0000000000..dc469641f4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_0.lua @@ -0,0 +1,256 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="global_maim_on_hit" + } + }, + [2]={ + stats={ + [1]="spearfield_maim_slows_an_additional_%" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Runes emerge within a {0} metre length cone" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Rune duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="{0:+d} second to arming time" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} seconds to arming time" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Runes arm after {0} second" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Runes arm after {0} seconds" + } + }, + stats={ + [1]="rune_hazard_arming_time_ms" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Limit {0} active Runes" + } + }, + stats={ + [1]="rune_hazard_base_number_of_runes_allowed" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="{0:+d} second to activation time" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} seconds to activation time" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Runes detonate {0} second after activation" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Runes detonate {0} seconds after activation" + } + }, + stats={ + [1]="rune_hazard_detonate_time_ms" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Rune" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Creates {0} Runes" + } + }, + stats={ + [1]="rune_hazard_number_of_runes_to_create" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=5, + ["global_maim_on_hit"]=1, + parent="skill_stat_descriptions", + ["rune_hazard_arming_time_ms"]=6, + ["rune_hazard_base_number_of_runes_allowed"]=7, + ["rune_hazard_detonate_time_ms"]=8, + ["rune_hazard_number_of_runes_to_create"]=9, + ["skill_effect_duration"]=10, + ["spearfield_maim_slows_an_additional_%"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_1.lua new file mode 100644 index 0000000000..7b7a4c7fd9 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/conductive_runes_statset_1.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="global_maim_on_hit" + } + }, + [2]={ + stats={ + [1]="spearfield_maim_slows_an_additional_%" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Electrocution buildup from Hits with this skill" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Electrocution buildup from Hits with this skill" + } + }, + stats={ + [1]="active_skill_electrocutes_as_though_dealt_damage_+%_final" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Rune explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=3, + ["global_maim_on_hit"]=1, + parent="skill_stat_descriptions", + ["spearfield_maim_slows_an_additional_%"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_earth.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_earth.lua new file mode 100644 index 0000000000..977d73d2ae --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_earth.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_0.lua new file mode 100644 index 0000000000..0158caaf54 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_0.lua @@ -0,0 +1,12 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + ["base_secondary_skill_effect_duration"]=1, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_1.lua new file mode 100644 index 0000000000..21c1755f8e --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/crushing_fear_statset_1.lua @@ -0,0 +1,88 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="bell_hit_limit" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Area of Effect per Power of killed target" + } + }, + stats={ + [1]="crushing_fear_area_of_effect_+%_final_per_power_of_culled_enemy" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Damage per Power of killed target" + } + }, + stats={ + [1]="crushing_fear_damage_+%_final_per_power_of_culled_enemy" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["bell_hit_limit"]=1, + ["crushing_fear_area_of_effect_+%_final_per_power_of_culled_enemy"]=4, + ["crushing_fear_damage_+%_final_per_power_of_culled_enemy"]=5, + parent="specific_skill_stat_descriptions/tempest_bell_statset_0" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_0.lua new file mode 100644 index 0000000000..e0161165ec --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_0.lua @@ -0,0 +1,23 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Culling Strike" + } + }, + stats={ + [1]="spells_have_culling_strike" + } + }, + parent="skill_stat_descriptions", + ["spells_have_culling_strike"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_1.lua new file mode 100644 index 0000000000..51c1178e7f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/detonate_living_statset_1.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua index 85e9c68b9f..e6cf4b8eda 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/electrocuting_arrow.lua @@ -132,6 +132,35 @@ return { } }, [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Targets with attached Rods take {0}% increased damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Targets with attached Rods take {0}% reduced damage" + } + }, + stats={ + [1]="electrocuting_arrow_damage_taken_+%" + } + }, + [7]={ [1]={ }, stats={ @@ -143,7 +172,8 @@ return { ["base_skill_effect_duration"]=5, ["cannot_pierce"]=3, ["electrocuting_arrow_%_damage_gained_as_extra_lightning_on_debuffed_target"]=4, + ["electrocuting_arrow_damage_taken_+%"]=6, parent="skill_stat_descriptions", ["quality_display_base_skill_effect_duration_is_gem"]=5, - ["skill_effect_duration"]=6 + ["skill_effect_duration"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_0.lua index 832af3483a..c8a1351341 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_0.lua @@ -77,7 +77,7 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["base_skill_effect_duration"]=4, @@ -87,5 +87,5 @@ return { ["skill_effect_duration"]=6, ["spell_maximum_base_fire_damage"]=2, ["spell_minimum_base_fire_damage"]=1, - ["total_number_of_projectiles_to_fire"]=7 + ["total_number_of_projectiles_to_fire_from_stats"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_1.lua index 2ef185ab66..a74e72c7a3 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_1.lua @@ -4,7 +4,7 @@ return { [1]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [2]={ @@ -69,5 +69,5 @@ return { ["active_skill_base_area_of_effect_radius"]=4, ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=1 + ["total_number_of_projectiles_to_fire_from_stats"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_2.lua index cc206c96ec..4b2bd64215 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_2.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ember_fusillade_statset_2.lua @@ -4,9 +4,9 @@ return { [1]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=1 + ["total_number_of_projectiles_to_fire_from_stats"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/exploding_poison_toad.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/exploding_poison_toad.lua index c0b437c8f9..02a4e24517 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/exploding_poison_toad.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/exploding_poison_toad.lua @@ -63,20 +63,15 @@ return { [1]={ limit={ [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0} to {1} Base Physical Damage" + text="{0}% chance to Poison on Hit" } }, stats={ - [1]="attack_minimum_added_physical_damage", - [2]="attack_maximum_added_physical_damage" + [1]="base_chance_to_poison_on_hit_%" } }, [5]={ @@ -84,22 +79,27 @@ return { [1]={ limit={ [1]={ - [1]=1, + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", [2]="#" } }, - text="{0}% chance to Poison on Hit" + text="{0} to {1} Base Physical Damage" } }, stats={ - [1]="base_chance_to_poison_on_hit_%" + [1]="main_hand_weapon_minimum_physical_damage", + [2]="main_hand_weapon_maximum_physical_damage" } }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, - ["attack_maximum_added_physical_damage"]=4, - ["attack_minimum_added_physical_damage"]=4, - ["base_chance_to_poison_on_hit_%"]=5, + ["base_chance_to_poison_on_hit_%"]=4, + ["main_hand_weapon_maximum_physical_damage"]=5, + ["main_hand_weapon_minimum_physical_damage"]=5, parent="skill_stat_descriptions", ["trigger_toad_spawn_chance_%"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_0.lua new file mode 100644 index 0000000000..b7b67a11c1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_0.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_1.lua new file mode 100644 index 0000000000..b7b67a11c1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_1.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_2.lua new file mode 100644 index 0000000000..b7b67a11c1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_2.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_3.lua new file mode 100644 index 0000000000..b7b67a11c1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_3.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_4.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_4.lua new file mode 100644 index 0000000000..b7b67a11c1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/explosive_transmutation_statset_4.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to Explosion radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to Explosion radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua index 114f8acb7d..1972bfc46a 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/eye_of_winter_new.lua @@ -3,6 +3,43 @@ return { [1]={ + stats={ + [1]="base_number_of_projectiles" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires {0} Shard Projectile per second" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Fires {0} Shard Projectiles per second" + } + }, + stats={ + [1]="base_number_of_projectiles" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="display_scaled_number_of_projectiles" + } + }, + [4]={ [1]={ [1]={ limit={ @@ -18,7 +55,7 @@ return { [1]="eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type" } }, - [2]={ + [5]={ [1]={ [1]={ [1]={ @@ -47,7 +84,9 @@ return { [1]="eye_of_winter_first_hit_damage_+%_final" } }, - ["eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type"]=1, - ["eye_of_winter_first_hit_damage_+%_final"]=2, + ["base_number_of_projectiles"]=2, + ["display_scaled_number_of_projectiles"]=3, + ["eye_of_winter_damage_%_to_gain_as_element_per_ground_effect_type"]=4, + ["eye_of_winter_first_hit_damage_+%_final"]=5, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/flame_wall.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/flame_wall.lua index a041a509ff..c3d6f5de1d 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/flame_wall.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/flame_wall.lua @@ -221,6 +221,40 @@ return { [2]="spell_maximum_base_fire_damage" } }, + [12]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} metres to Wall length" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wall length is {0} metres" + } + }, + stats={ + [1]="wall_maximum_length" + } + }, ["base_fire_damage_to_deal_per_minute"]=1, ["base_secondary_skill_effect_duration"]=2, ["base_skill_effect_duration"]=3, @@ -235,5 +269,6 @@ return { ["secondary_skill_effect_duration"]=9, ["skill_effect_duration"]=10, ["spell_maximum_base_fire_damage"]=11, - ["spell_minimum_base_fire_damage"]=11 + ["spell_minimum_base_fire_damage"]=11, + ["wall_maximum_length"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragmentation_rounds_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragmentation_rounds_statset_0.lua index d93d883cea..86401d0b5c 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragmentation_rounds_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragmentation_rounds_statset_0.lua @@ -33,14 +33,36 @@ return { [2]={ [1]="#", [2]="#" + }, + [3]={ + [1]="#", + [2]="#" } }, text="Fires {0} fragments per shot" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Fires {0:+d} fragments per shot" } }, stats={ [1]="base_number_of_projectiles", - [2]="skill_can_fire_arrows" + [2]="skill_can_fire_arrows", + [3]="quality_display_base_number_of_projectiles_is_gem" } }, [6]={ @@ -78,6 +100,6 @@ return { parent="skill_stat_descriptions", ["projectile_base_number_of_targets_to_pierce"]=6, ["projectiles_can_shotgun"]=4, - ["quality_display_base_number_of_projectiles_is_gem"]=2, + ["quality_display_base_number_of_projectiles_is_gem"]=5, ["skill_can_fire_arrows"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_0.lua new file mode 100644 index 0000000000..7eb478f45c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_0.lua @@ -0,0 +1,209 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to eruption radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to eruption radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Eruption radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Eruption radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Volcano" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Limit {0} Volcanoes" + } + }, + stats={ + [1]="base_number_of_ice_volcanos_allowed" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Volcano duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Volcano duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Initial eruption Triggers Ice Fragments with\n{0} additional Projectiles" + } + }, + stats={ + [1]="ice_volcano_eruption_additional_ice_fragment_projectiles" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Triggers Ice Fragments every {0:+d} seconds" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Triggers Ice Fragments every second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Triggers Ice Fragments every {0} seconds" + } + }, + stats={ + [1]="ice_volcano_fires_projectiles_every_x_ms" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_number_of_ice_volcanos_allowed"]=3, + ["base_skill_effect_duration"]=4, + ["ice_volcano_eruption_additional_ice_fragment_projectiles"]=5, + ["ice_volcano_fires_projectiles_every_x_ms"]=6, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_1.lua new file mode 100644 index 0000000000..978bb75b10 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fragments_of_the_past_statset_1.lua @@ -0,0 +1,76 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to impact radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to impact radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua index 90e28ea3af..977d73d2ae 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/freezing_salvo.lua @@ -42,84 +42,7 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [3]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Accumulates up to {0} additional missiles" - } - }, - stats={ - [1]="freezing_salvo_maximum_number_of_seals" - } - }, - [4]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - }, - [2]={ - [1]=0, - [2]=0 - } - }, - text="Delay between missile accumulation is {0} seconds shorter" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Accumulates a missile every {0} seconds" - } - }, - stats={ - [1]="freezing_salvo_seals_gain_base_interval_ms", - [2]="quality_display_freezing_salvo_is_gem" - } - }, - [5]={ - [1]={ - }, - stats={ - [1]="freezing_salvo_seals_gain_interval_ms" - } - }, - [6]={ - [1]={ - }, - stats={ - [1]="virtual_freezing_salvo_maximum_number_of_seals" - } - }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - ["freezing_salvo_maximum_number_of_seals"]=3, - ["freezing_salvo_seals_gain_base_interval_ms"]=4, - ["freezing_salvo_seals_gain_interval_ms"]=5, - parent="skill_stat_descriptions", - ["quality_display_freezing_salvo_is_gem"]=4, - ["virtual_freezing_salvo_maximum_number_of_seals"]=6 + parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua index 6c24ed4d63..4ce1cabd5a 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_darts_statset_0.lua @@ -2,5 +2,51 @@ -- Item data (c) Grinding Gear Games return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Forks an additional Time" + }, + [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Forks {0} additional Times" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Forks an additional Time" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Forks {0} additional Times" + } + }, + stats={ + [1]="number_of_additional_forks_base" + } + }, + ["number_of_additional_forks_base"]=1, parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua index 5e3d1b5914..c16904ee12 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frost_wall_new_statset_1.lua @@ -24,7 +24,7 @@ return { }, [5]={ stats={ - [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + [1]="ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, [6]={ @@ -71,7 +71,7 @@ return { ["active_skill_hit_damage_freeze_multiplier_+%_final"]=4, ["active_skill_secondary_area_of_effect_radius"]=6, ["frost_wall_maximum_life"]=3, - ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=5, + ["ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=5, parent="skill_stat_descriptions", ["skill_effect_duration"]=2, ["wall_maximum_length"]=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frostflame_nova.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frostflame_nova.lua new file mode 100644 index 0000000000..32c678fe17 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/frostflame_nova.lua @@ -0,0 +1,114 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to wave radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to wave radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Wave radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Freeze Buildup for each 1% of enemy's Ailment Threshold dealt by the affected Ignite per second" + } + }, + stats={ + [1]="active_skill_hit_damage_freeze_multiplier_+permyriad_final_per_1%_of_target_ailment_threshold_being_dealt_by_ignite_per_second" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits enemies every 0.5 seconds until affected Ignite expires" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_hit_damage_freeze_multiplier_+permyriad_final_per_1%_of_target_ailment_threshold_being_dealt_by_ignite_per_second"]=3, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_0.lua new file mode 100644 index 0000000000..bc8ed62c85 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_0.lua @@ -0,0 +1,74 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Mushroom duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Mushroom duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Maximum {0} Mushrooms" + } + }, + stats={ + [1]="fungal_terrain_maximum_mushrooms" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Spawns {0} Mushrooms per Skill Use" + } + }, + stats={ + [1]="fungal_terrain_number_of_mushrooms_per_use" + } + }, + ["base_skill_effect_duration"]=1, + ["fungal_terrain_maximum_mushrooms"]=2, + ["fungal_terrain_number_of_mushrooms_per_use"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_1.lua new file mode 100644 index 0000000000..b8b5201019 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/fungal_terrain_statset_1.lua @@ -0,0 +1,61 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="DNT Spore Cloud duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Spore Cloud duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Spore Cloud deals {0} Chaos damage per second" + } + }, + stats={ + [1]="fungal_terrain_spore_cloud_chaos_damage_per_minute" + } + }, + ["base_skill_effect_duration"]=1, + ["fungal_terrain_spore_cloud_chaos_damage_per_minute"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_1.lua index afeab062d9..6c2fd90721 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_1.lua @@ -4,7 +4,7 @@ return { [1]={ stats={ - [1]="total_number_of_arrows_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [2]={ @@ -136,5 +136,5 @@ return { parent="specific_skill_stat_descriptions/gas_arrow_statset_0", ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=3, ["skill_effect_duration"]=5, - ["total_number_of_arrows_to_fire"]=1 + ["total_number_of_projectiles_to_fire_from_stats"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_2.lua index 8bb6cbccf9..be95285a39 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_2.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gas_arrow_statset_2.lua @@ -19,12 +19,12 @@ return { }, [4]={ stats={ - [1]="total_number_of_arrows_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["active_skill_area_of_effect_description_mode"]=1, ["active_skill_area_of_effect_radius"]=3, ["active_skill_base_area_of_effect_radius"]=2, parent="specific_skill_stat_descriptions/gas_arrow_statset_0", - ["total_number_of_arrows_to_fire"]=4 + ["total_number_of_projectiles_to_fire_from_stats"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_1.lua index 3da4bb5159..8fd1c77a27 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_1.lua @@ -7,48 +7,6 @@ return { [1]="total_attack_time_+_ms" } }, - [2]={ - [1]={ - }, - stats={ - [1]="active_skill_area_of_effect_radius" - } - }, - [3]={ - [1]={ - [1]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=10, - [2]=10 - } - }, - text="Shocked Ground width is {0} metre" - }, - [2]={ - [1]={ - k="divide_by_ten_1dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Shocked Ground width is {0} metres" - } - }, - stats={ - [1]="active_skill_base_area_of_effect_radius" - } - }, - ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_area_of_effect_radius"]=3, parent="skill_stat_descriptions", ["total_attack_time_+_ms"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_2.lua index 600d50a24f..bc38fef768 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_2.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_2.lua @@ -47,44 +47,8 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, - [4]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } - }, - text="Maximum {0:+d} shockwaves per use" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Maximum {0} shockwaves per use" - } - }, - stats={ - [1]="gathering_storm_perfect_aoe_limit", - [2]="quality_display_gathering_storm_is_gem" - } - }, ["active_skill_area_of_effect_radius"]=2, ["active_skill_base_area_of_effect_radius"]=3, - ["gathering_storm_perfect_aoe_limit"]=4, parent="skill_stat_descriptions", - ["quality_display_gathering_storm_is_gem"]=4, ["total_attack_time_+_ms"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_3.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_3.lua new file mode 100644 index 0000000000..9c076d7230 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gathering_storm_statset_3.lua @@ -0,0 +1,54 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_attack_time_+_ms" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre\nShocked Ground radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres\nShocked Ground radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + parent="skill_stat_descriptions", + ["total_attack_time_+_ms"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_0.lua new file mode 100644 index 0000000000..23ffb56c1a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_0.lua @@ -0,0 +1,12 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="herald_of_thunder_storm_max_hits" + } + }, + ["herald_of_thunder_storm_max_hits"]=1, + parent="specific_skill_stat_descriptions/herald_of_thunder_statset_0" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_1.lua new file mode 100644 index 0000000000..045f5bb389 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/gelid_palm_statset_1.lua @@ -0,0 +1,116 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="herald_of_thunder_storm_max_hits" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="#", + [2]=-1 + } + }, + text="-{1} seconds to burst cooldown" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Creates an icy burst when you Hit with Unarmed Melee damage, no more than {0} time every {1} seconds" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Creates an icy burst when you Hit with Unarmed Melee damage, no more than {0} times every {1} seconds" + } + }, + stats={ + [1]="thunderfist_number_of_bolts_delays", + [2]="thunderfist_bolt_delay_ms" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Ice burst radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ice burst radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + ["herald_of_thunder_storm_max_hits"]=1, + parent="specific_skill_stat_descriptions/herald_of_thunder_statset_0", + ["thunderfist_bolt_delay_ms"]=2, + ["thunderfist_number_of_bolts_delays"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghost_dance.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghost_dance.lua index f94e286ef2..af654cf8cb 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghost_dance.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ghost_dance.lua @@ -5,6 +5,19 @@ return { [1]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain a Ghost Shroud every second" + }, + [2]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 @@ -15,18 +28,27 @@ return { [2]="#" } }, - text="{0} second duration between gaining Ghost Shrouds" + text="Gain a Ghost Shroud every {0} seconds" } }, stats={ - [1]="base_skill_effect_duration" + [1]="base_cooldown_modifiable_repeat_interval_ms" } }, [2]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Cooldown Recovery Rate also apply to\nGhost Shroud gain frequency" + } }, stats={ - [1]="display_skill_ghost_dance_grants_energy_shield_when_hit" + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" } }, [3]={ @@ -48,42 +70,28 @@ return { [4]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]=0, - [2]=0 - } + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 }, - text="Ghost Shrouds recover Energy Shield equal to {0:+d}% of your Evasion" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" - }, - [2]={ - [1]="#", - [2]="#" } }, - text="When Hit, Consume a Ghost Shroud to\nrecover Energy Shield equal to {0}% of your Evasion" + text="When Hit, lose a Ghost Shroud \nRegenerate Energy Shield equal to {0}% of your Evasion Rating per second if you have lost a Ghost Shroud Recently" } }, stats={ - [1]="skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit", - [2]="quality_display_ghost_dance_is_gem" + [1]="skill_base_ghost_dance_grants_%_evasion_as_es_regeneration_per_minute_if_have_lost_ghost_dance_shroud_recently" } }, [5]={ [1]={ }, stats={ - [1]="skill_effect_duration" + [1]="virtual_cooldown_modifiable_repeat_interval_ms" } }, [6]={ @@ -93,12 +101,11 @@ return { [1]="virtual_ghost_dance_max_stacks" } }, - ["base_skill_effect_duration"]=1, - ["display_skill_ghost_dance_grants_energy_shield_when_hit"]=2, + ["base_cooldown_modifiable_repeat_interval_ms"]=1, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=2, ["ghost_dance_max_stacks"]=3, parent="skill_stat_descriptions", - ["quality_display_ghost_dance_is_gem"]=4, - ["skill_base_ghost_dance_grants_%_evasion_as_energy_shield_when_hit"]=4, - ["skill_effect_duration"]=5, + ["skill_base_ghost_dance_grants_%_evasion_as_es_regeneration_per_minute_if_have_lost_ghost_dance_shroud_recently"]=4, + ["virtual_cooldown_modifiable_repeat_interval_ms"]=5, ["virtual_ghost_dance_max_stacks"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_0.lua new file mode 100644 index 0000000000..bfd12eb9f0 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_0.lua @@ -0,0 +1,304 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to creation radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to creation radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Creation radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Creation radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0:+d} Grim Pillar" + }, + [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0:+d} Grim Pillars" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Grim Pillars" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Grim Pillars" + } + }, + stats={ + [1]="grim_pillars_number_of_pillars_to_create" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="{0:+d} metre to eruption radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to eruption radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Eruption radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Eruption radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Grim Pillar duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grim Pillar duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Grim Pillars have {0} maximum Life" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Grim Pillar has {0} maximum Life" + } + }, + stats={ + [1]="frost_wall_maximum_life", + [2]="frozen_locus_crystal_display_stat" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Grim Pillars" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Grim Pillars" + } + }, + stats={ + [1]="base_number_of_grim_pillars_allowed" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="number_of_grim_pillars_allowed" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="skill_ground_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=7, + ["active_skill_base_area_of_effect_radius"]=1, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_secondary_area_of_effect_radius"]=8, + ["base_number_of_grim_pillars_allowed"]=6, + ["base_skill_effect_duration"]=4, + ["frost_wall_maximum_life"]=5, + ["frozen_locus_crystal_display_stat"]=5, + ["grim_pillars_number_of_pillars_to_create"]=2, + ["number_of_grim_pillars_allowed"]=9, + parent="skill_stat_descriptions", + ["skill_ground_effect_duration"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_1.lua new file mode 100644 index 0000000000..f719c7f042 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/grim_pillars_statset_1.lua @@ -0,0 +1,78 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="frost_wall_maximum_life" + } + }, + [2]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + stats={ + [1]="skill_ground_effect_duration" + } + }, + [4]={ + stats={ + [1]="base_number_of_grim_pillars_allowed" + } + }, + [5]={ + stats={ + [1]="grim_pillars_number_of_pillars_to_create" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=6, + ["active_skill_base_area_of_effect_radius"]=7, + ["base_number_of_grim_pillars_allowed"]=4, + ["base_skill_effect_duration"]=2, + ["frost_wall_maximum_life"]=1, + ["grim_pillars_number_of_pillars_to_create"]=5, + parent="specific_skill_stat_descriptions/grim_pillars_statset_0", + ["skill_ground_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua index 008af61cd4..405e91c6ba 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hammer_of_ngamahu_statset_1.lua @@ -16,11 +16,11 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["active_skill_requires_X_glory"]=2, ["base_skill_effect_duration"]=1, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=3 + ["total_number_of_projectiles_to_fire_from_stats"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/harbinger_of_madness.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/harbinger_of_madness.lua new file mode 100644 index 0000000000..b8424a5b00 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/harbinger_of_madness.lua @@ -0,0 +1,176 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Swarm duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Swarm duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unstable Apparitions spawned from slain enemies deal {0}% of that enemy's Life as added unscalable Physical damage" + } + }, + stats={ + [1]="harbinger_of_madness_additional_damage_from_%_source_enemy_life" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unstable Apparitions deal {0}% more damage per Power of the enemy they're drawn from" + } + }, + stats={ + [1]="harbinger_of_madness_damage_+%_final_per_power_of_source_enemy" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="{0}% Chance to draw out an Unstable Apparition from Rare or Unique enemies you Hit" + }, + [2]={ + limit={ + [1]={ + [1]=99, + [2]="#" + } + }, + text="Draws out an Unstable Apparition from Rare or Unique enemies you Hit" + } + }, + stats={ + [1]="unique_chance_to_spawn_harbinger_of_madness_orb_on_hitting_rare_or_unique_enemy_with_melee_attacks_%" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Draws out an Unstable Apparition from enemies you kill with Melee Hits, no more than once every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Draws out an Unstable Apparition from enemies you kill with Melee Hits, no more than once every {0} seconds" + } + }, + stats={ + [1]="skill_grants_spawn_harbinger_of_madness_orb_on_melee_kill_once_per_timer_ms" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_effect_duration"]=1, + ["harbinger_of_madness_additional_damage_from_%_source_enemy_life"]=4, + ["harbinger_of_madness_damage_+%_final_per_power_of_source_enemy"]=5, + parent="skill_stat_descriptions", + ["skill_grants_spawn_harbinger_of_madness_orb_on_melee_kill_once_per_timer_ms"]=7, + ["unique_chance_to_spawn_harbinger_of_madness_orb_on_hitting_rare_or_unique_enemy_with_melee_attacks_%"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/herald_of_blood.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/herald_of_blood.lua index 5c0b00a79d..5dc0cb9637 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/herald_of_blood.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/herald_of_blood.lua @@ -93,7 +93,7 @@ return { } }, stats={ - [1]="skill_herald_of_blood_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", + [1]="skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage", [2]="quality_display_herald_of_blood_is_gem" } }, @@ -119,6 +119,6 @@ return { ["display_herald_of_blood_behaviour"]=4, parent="skill_stat_descriptions", ["quality_display_herald_of_blood_is_gem"]=5, - ["skill_herald_of_blood_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage"]=5, + ["skill_herald_bleeding_enemies_explode_for_%_blood_loss_as_unscalable_physical_damage"]=5, ["skill_herald_of_blood_explosion_aggravate_bleeding_chance_%"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_focus.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_focus.lua new file mode 100644 index 0000000000..acef4f9061 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_focus.lua @@ -0,0 +1,222 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} metres to bell appearance radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bells appear within {0} metre radius of you" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="A bell appears every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="A bell appears every {0} seconds" + } + }, + stats={ + [1]="base_cooldown_modifiable_repeat_interval_ms" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Bell duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bell duration is {0} seconds" + } + }, + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Cooldown Recovery Rate also apply to\nbell appearance frequency" + } + }, + stats={ + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="secondary_skill_effect_duration" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} active Bell" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} active Bells" + } + }, + stats={ + [1]="spectral_bells_maximum_active_bells" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="virtual_cooldown_modifiable_repeat_interval_ms" + } + }, + [11]={ + [1]={ + }, + stats={ + [1]="virtual_spectral_bells_maximum_active_bells" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_secondary_area_of_effect_radius"]=4, + ["base_cooldown_modifiable_repeat_interval_ms"]=5, + ["base_secondary_skill_effect_duration"]=6, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=7, + parent="skill_stat_descriptions", + ["secondary_skill_effect_duration"]=8, + ["spectral_bells_maximum_active_bells"]=9, + ["virtual_cooldown_modifiable_repeat_interval_ms"]=10, + ["virtual_spectral_bells_maximum_active_bells"]=11 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_form.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_form.lua new file mode 100644 index 0000000000..7f35b45050 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_form.lua @@ -0,0 +1,87 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Images can be created within {0} metre radius of you" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Creating an Image spends Socketed Skill's Cost" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Creating an Image spends {0}% of Socketed Skill's Cost" + } + }, + stats={ + [1]="mantra_of_illusions_cloned_skill_mana_cost_%" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Consumes a Power Charge to create {0} additional Image" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Consumes a Power Charge to create {0} additional Images" + } + }, + stats={ + [1]="mantra_of_illusions_bonus_illusions_when_consuming_power_charge" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["mantra_of_illusions_bonus_illusions_when_consuming_power_charge"]=4, + ["mantra_of_illusions_cloned_skill_mana_cost_%"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_resonance.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_resonance.lua new file mode 100644 index 0000000000..919b0d8ea0 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_resonance.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Shockwave radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_shell.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_shell.lua new file mode 100644 index 0000000000..a1826b5627 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/hollow_shell.lua @@ -0,0 +1,161 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pulse grants Guard equal to an additional {0}% of Runic Ward spent" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pulse spends 100% of your Runic Ward to grant Allies\nGuard equal to {0}% of Runic Ward spent" + } + }, + stats={ + [1]="skill_hollow_shell_spent_ward_%_to_grant_as_guard" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Pulse radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pulse radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} seconds to Guard duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Guard duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Guard duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Cannot affect the same target more than once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot affect the same target more than once every {0} seconds" + } + }, + stats={ + [1]="hollow_shell_per_target_cooldown_ms" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_effect_duration"]=4, + ["hollow_shell_per_target_cooldown_ms"]=5, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=6, + ["skill_hollow_shell_spent_ward_%_to_grant_as_guard"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_shards.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_shards.lua index 0d5e49c584..fc72688f25 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_shards.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ice_shards.lua @@ -9,7 +9,7 @@ return { }, [2]={ stats={ - [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + [1]="hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, [3]={ @@ -190,7 +190,7 @@ return { ["active_skill_area_of_effect_radius"]=3, ["active_skill_base_area_of_effect_radius"]=4, ["base_knockback_distance"]=1, - ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=2, + ["hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=2, parent="skill_stat_descriptions", ["permafrost_shard_arming_time_ms"]=5, ["permafrost_shard_bonus_damage_delay_ms"]=6, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua index 22bb4a2324..8f91df7c40 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/incinerate_player_statset_0.lua @@ -149,6 +149,20 @@ return { [9]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} seconds of Maximum fuel" + }, + [2]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 @@ -161,7 +175,7 @@ return { }, text="Can store up to {0} second of fuel" }, - [2]={ + [3]={ [1]={ k="milliseconds_to_seconds_2dp_if_required", v=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/inevitable_agony.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/inevitable_agony.lua index a432efccb6..aa45d2f6ad 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/inevitable_agony.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/inevitable_agony.lua @@ -12,6 +12,20 @@ return { [2]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} Metres to initial cast radius" + }, + [2]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 @@ -22,9 +36,9 @@ return { [2]=10 } }, - text="Curse radius is {0} metre" + text="Initial cast radius is {0} metre" }, - [2]={ + [3]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 @@ -35,7 +49,7 @@ return { [2]="#" } }, - text="Curse radius is {0} metres" + text="Initial cast radius is {0} metres" } }, stats={ @@ -55,7 +69,7 @@ return { [2]=1000 } }, - text="Curse duration is {0} second" + text="Debuff duration is {0} second" }, [2]={ [1]={ @@ -68,7 +82,7 @@ return { [2]="#" } }, - text="Curse duration is {0} seconds" + text="Debuff duration is {0} seconds" } }, stats={ @@ -84,7 +98,7 @@ return { [2]="#" } }, - text="Cursed targets take {0}% of Hit Damage dealt to them while Cursed again when Curse expires\nTaking Damage again this way cannot inflict Ailments on the Cursed target" + text="Debuffed targets lose life equal to {0}% of Hit Damage dealt to them while Debuffed when Debuff expires\n Culls enemies if Debuff reaches Culling Strike Threshold" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/into_the_breach.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/into_the_breach.lua index fa6af4c659..b04c69c880 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/into_the_breach.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/into_the_breach.lua @@ -36,6 +36,51 @@ return { } }, [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Flame of Chayula within 5m of you are revealed" + } + }, + stats={ + [1]="breach_flame_spawn_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Flames of Chayula have {0}% increased effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Flames of Chayula have {0}% reduced effect" + } + }, + stats={ + [1]="remnant_effect_+%" + } + }, + [4]={ [1]={ }, stats={ @@ -43,6 +88,8 @@ return { } }, ["base_remnant_duration_ms"]=1, + ["breach_flame_spawn_radius"]=2, parent="skill_stat_descriptions", - ["virtual_remnant_duration_ms"]=2 + ["remnant_effect_+%"]=3, + ["virtual_remnant_duration_ms"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/leylines.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/leylines.lua new file mode 100644 index 0000000000..5c53a37299 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/leylines.lua @@ -0,0 +1,120 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deal {0}% more Spell damage while on a Leyline" + } + }, + stats={ + [1]="skill_leylines_spell_damage_+%_final" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Lose {0} Runic Ward per second while on a Leyline\nCannot Recover Runic Ward while on a Leyline" + } + }, + stats={ + [1]="skill_leylines_ward_degeneration_per_minute" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Leyline radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Leyline radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Leylines reappear a second after dissipating" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Leylines reappear {0} seconds after dissipating" + } + }, + stats={ + [1]="skill_leylines_respawn_time_ms" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=4, + parent="skill_stat_descriptions", + ["skill_leylines_respawn_time_ms"]=5, + ["skill_leylines_spell_damage_+%_final"]=1, + ["skill_leylines_ward_degeneration_per_minute"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_spear_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_spear_statset_0.lua index 5ca9ff53e0..3dc1737547 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_spear_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/lightning_spear_statset_0.lua @@ -19,7 +19,7 @@ return { }, [4]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [5]={ @@ -77,5 +77,5 @@ return { ["lightning_spear_damage_+%_final_when_charged"]=7, parent="skill_stat_descriptions", ["skill_can_fire_arrows"]=1, - ["total_number_of_projectiles_to_fire"]=4 + ["total_number_of_projectiles_to_fire_from_stats"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_0.lua index 38e2d8ea45..ced05be368 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_0.lua @@ -111,7 +111,7 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["active_skill_area_of_effect_radius"]=2, @@ -120,5 +120,5 @@ return { parent="skill_stat_descriptions", ["quality_display_base_number_of_projectiles_is_gem"]=4, ["skill_can_fire_arrows"]=4, - ["total_number_of_projectiles_to_fire"]=5 + ["total_number_of_projectiles_to_fire_from_stats"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_1.lua index 4c267df22c..5766b2d752 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/magnetic_salvo_statset_1.lua @@ -9,7 +9,7 @@ return { }, [2]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [3]={ @@ -56,5 +56,5 @@ return { ["active_skill_base_area_of_effect_radius"]=4, ["base_number_of_projectiles"]=1, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=2 + ["total_number_of_projectiles_to_fire_from_stats"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/manifest_rune.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/manifest_rune.lua new file mode 100644 index 0000000000..dbf08e7fe3 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/manifest_rune.lua @@ -0,0 +1,98 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Verisium Manifestation Limit" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Summoned Verisium Manifestation" + }, + [3]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Limit {0} Summoned Verisium Manifestations" + } + }, + stats={ + [1]="base_number_of_verisium_runes_allowed" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}s to Manifestation duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Manifestation duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Manifestation duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="minion_duration" + } + }, + ["base_number_of_verisium_runes_allowed"]=1, + ["base_skill_effect_duration"]=2, + ["minion_duration"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_0.lua new file mode 100644 index 0000000000..0b6a0a8ff4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_0.lua @@ -0,0 +1,89 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot gain Arctic Petals from this Skill's Critical Hits" + } + }, + stats={ + [1]="base_skill_cannot_generate_midnight_star_petals" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="+1 Arctic Petal per Power of targets Killed with Critical Hits" + } + }, + stats={ + [1]="midnight_star_gain_ice_seeds_equal_to_enemy_power_on_kill_with_critical_hit" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="{0:+d} Arctic Petal on Critically Hitting Rare or Unique targets" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="{0:+d} Arctic Petals on Critically Hitting Rare or Unique targets" + } + }, + stats={ + [1]="midnight_star_gain_x_ice_seeds_when_you_critically_hit_a_rare_or_unique_enemy" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Consumes {0} Arctic Petals to create {1} Ice Crystals when able" + } + }, + stats={ + [1]="midnight_star_attempt_to_consume_x_ice_seeds_to_create_an_ice_crystal_each_time_you_gain_ice_seeds", + [2]="unique_nattblom_crystals_per_trigger" + } + }, + ["base_skill_cannot_generate_midnight_star_petals"]=1, + ["midnight_star_attempt_to_consume_x_ice_seeds_to_create_an_ice_crystal_each_time_you_gain_ice_seeds"]=4, + ["midnight_star_gain_ice_seeds_equal_to_enemy_power_on_kill_with_critical_hit"]=2, + ["midnight_star_gain_x_ice_seeds_when_you_critically_hit_a_rare_or_unique_enemy"]=3, + parent="skill_stat_descriptions", + ["unique_nattblom_crystals_per_trigger"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_1.lua new file mode 100644 index 0000000000..b497d501b1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/midnight_star_statset_1.lua @@ -0,0 +1,166 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_cannot_generate_energy" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Ice Crystal duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ice Crystal duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Ice Crystals have {0} maximum Life" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ice Crystal has {0} maximum Life" + } + }, + stats={ + [1]="frost_wall_maximum_life", + [2]="frozen_locus_crystal_display_stat" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Ice Crystal" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Ice Crystals" + } + }, + stats={ + [1]="midnight_star_max_ice_crystals" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="virtual_midnight_star_max_ice_crystals" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_skill_cannot_generate_energy"]=1, + ["base_skill_effect_duration"]=4, + ["frost_wall_maximum_life"]=5, + ["frozen_locus_crystal_display_stat"]=5, + ["midnight_star_max_ice_crystals"]=6, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7, + ["virtual_midnight_star_max_ice_crystals"]=8 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mirror_of_refraction.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mirror_of_refraction.lua index 6452e8b1e0..96baaf40ff 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mirror_of_refraction.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mirror_of_refraction.lua @@ -13,6 +13,39 @@ return { } }, [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="A Mirror appears in your Presence every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="A Mirror appears in your Presence every {0} seconds" + } + }, + stats={ + [1]="base_cooldown_modifiable_repeat_interval_ms" + } + }, + [4]={ [1]={ [1]={ limit={ @@ -37,7 +70,7 @@ return { [1]="base_mirror_of_refraction_limit" } }, - [4]={ + [5]={ [1]={ [1]={ ["gem_quality"]=true, @@ -82,7 +115,7 @@ return { [1]="base_number_of_projectiles" } }, - [5]={ + [6]={ [1]={ [1]={ [1]={ @@ -102,66 +135,58 @@ return { [1]="base_skill_effect_duration" } }, - [6]={ - [1]={ - }, - stats={ - [1]="mirror_of_refraction_limit" - } - }, [7]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="A Mirror appears in your Presence every second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]="#", [2]="#" } }, - text="A Mirror appears in your Presence every {0} seconds" + text="Modifiers to Cooldown Recovery Rate also apply to\nMirror appearance frequency" } }, stats={ - [1]="mirror_of_refraction_placement_interval_ms" + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" } }, [8]={ [1]={ }, stats={ - [1]="skill_effect_duration" + [1]="mirror_of_refraction_limit" } }, [9]={ [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="skill_effect_duration" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="total_number_of_projectiles_to_fire_from_stats" + } + }, + [11]={ + [1]={ + }, + stats={ + [1]="virtual_cooldown_modifiable_repeat_interval_ms" } }, - ["base_mirror_of_refraction_limit"]=3, - ["base_number_of_projectiles"]=4, - ["base_skill_effect_duration"]=5, - ["mirror_of_refraction_limit"]=6, - ["mirror_of_refraction_placement_interval_ms"]=7, + ["base_cooldown_modifiable_repeat_interval_ms"]=3, + ["base_mirror_of_refraction_limit"]=4, + ["base_number_of_projectiles"]=5, + ["base_skill_effect_duration"]=6, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=7, + ["mirror_of_refraction_limit"]=8, parent="skill_stat_descriptions", - ["skill_effect_duration"]=8, - ["total_number_of_projectiles_to_fire"]=9 + ["skill_effect_duration"]=9, + ["total_number_of_projectiles_to_fire_from_stats"]=10, + ["virtual_cooldown_modifiable_repeat_interval_ms"]=11 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mist_raven_dive_bomb.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mist_raven_dive_bomb.lua new file mode 100644 index 0000000000..3b6db336b7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/mist_raven_dive_bomb.lua @@ -0,0 +1,71 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="use_owners_culling_threshold_instead_of_your_own" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants you a Frenzy Charge when Culling an enemy" + } + }, + stats={ + [1]="grant_owner_a_frenzy_charge_when_culling_an_enemy" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["grant_owner_a_frenzy_charge_when_culling_an_enemy"]=4, + parent="skill_stat_descriptions", + ["use_owners_culling_threshold_instead_of_your_own"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_blast_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_blast_statset_1.lua index fa39de706f..e57e90bbbd 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_blast_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_blast_statset_1.lua @@ -11,10 +11,10 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["base_skill_effect_duration"]=1, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=2 + ["total_number_of_projectiles_to_fire_from_stats"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_crash_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_crash_statset_1.lua index 9acdb80119..5c13ce44cb 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_crash_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/molten_crash_statset_1.lua @@ -123,33 +123,8 @@ return { [1]="molten_crash_max_number_of_fissures" } }, - [7]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Limit {0} Fissure" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Limit {0} Fissures" - } - }, - stats={ - [1]="molten_crash_max_number_of_fissures" - } - }, ["base_skill_effect_duration"]=5, - ["molten_crash_max_number_of_fissures"]=7, + ["molten_crash_max_number_of_fissures"]=6, ["molten_crash_number_of_additional_fissures_from_rage_consumption"]=3, ["molten_crash_optionally_consume_X_rage_for_fissures"]=4, parent="skill_stat_descriptions", diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_new_arctic_armour.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_new_arctic_armour.lua new file mode 100644 index 0000000000..05e80b07e6 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/new_new_arctic_armour.lua @@ -0,0 +1,66 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_buff_stack_gain_frequency_ms" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gains a Stage every second, up to a maximum of {1} Stages" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gains a Stage every {0} seconds, up to a maximum of {1} Stages" + } + }, + stats={ + [1]="base_active_skill_buff_stack_gain_frequency_ms", + [2]="maximum_number_of_arctic_armour_stationary_stacks" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="virtual_maximum_number_of_arctic_armour_stationary_stacks" + } + }, + ["active_skill_buff_stack_gain_frequency_ms"]=1, + ["base_active_skill_buff_stack_gain_frequency_ms"]=2, + ["maximum_number_of_arctic_armour_stationary_stacks"]=2, + parent="skill_stat_descriptions", + ["virtual_maximum_number_of_arctic_armour_stationary_stacks"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_embrace_the_fall.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_embrace_the_fall.lua new file mode 100644 index 0000000000..248318ef62 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_embrace_the_fall.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits destroy Ice Crystals" + } + }, + stats={ + [1]="destroy_frost_wall_segment_on_hit" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["destroy_frost_wall_segment_on_hit"]=3, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_soaring_midnight.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_soaring_midnight.lua new file mode 100644 index 0000000000..554a106c37 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/nightfall_soaring_midnight.lua @@ -0,0 +1,14 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/packleader_great_hunt.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/packleader_great_hunt.lua new file mode 100644 index 0000000000..a4c4d93039 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/packleader_great_hunt.lua @@ -0,0 +1,29 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="active_skill_secondary_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Summons {0} Spirit Wolves\n Wolves dash at enemies over 8 seconds" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + ["active_skill_secondary_area_of_effect_radius"]=1, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua index c4203c7cb1..843dd54afb 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/parry.lua @@ -104,14 +104,11 @@ return { k="milliseconds_to_seconds_2dp_if_required", v=1 }, + ["gem_quality"]=true, limit={ [1]={ [1]="#", [2]="#" - }, - [2]={ - [1]=0, - [2]=0 } }, text="Parried Debuff lasts for an additional {0:+d} seconds" @@ -125,10 +122,6 @@ return { [1]={ [1]=1000, [2]=1000 - }, - [2]={ - [1]="#", - [2]="#" } }, text="Parried Debuff duration is {0} second" @@ -142,18 +135,13 @@ return { [1]={ [1]="#", [2]="#" - }, - [2]={ - [1]="#", - [2]="#" } }, text="Parried Debuff duration is {0} seconds" } }, stats={ - [1]="base_skill_effect_duration", - [2]="quality_display_base_skill_effect_duration_is_gem" + [1]="base_parry_duration_ms" } }, [5]={ @@ -209,13 +197,13 @@ return { [1]={ }, stats={ - [1]="skill_effect_duration" + [1]="virtual_parry_duration_ms" } }, ["base_maximum_active_block_distance_for_non_projectiles"]=1, ["base_maximum_active_block_distance_for_projectiles"]=2, ["base_parry_buff_damage_taken_+%_final_to_apply"]=3, - ["base_skill_effect_duration"]=4, + ["base_parry_duration_ms"]=4, ["maximum_active_block_distance_for_non_projectiles"]=5, ["maximum_active_block_distance_for_projectiles"]=6, ["off_hand_maximum_added_physical_damage_per_5_shield_evasion_rating"]=7, @@ -223,6 +211,5 @@ return { parent="skill_stat_descriptions", ["parry_buff_attack_damage_taken_+%_final_magnitude_to_apply"]=8, ["parry_buff_spell_damage_taken_+%_final_magnitude_to_apply"]=9, - ["quality_display_base_skill_effect_duration_is_gem"]=4, - ["skill_effect_duration"]=10 + ["virtual_parry_duration_ms"]=10 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/player_melee_grenade_launcher.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/player_melee_grenade_launcher.lua new file mode 100644 index 0000000000..e667e9d227 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/player_melee_grenade_launcher.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fuse duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fuse duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="grenade_fuse_duration" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=1, + ["grenade_fuse_duration"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades.lua new file mode 100644 index 0000000000..21ae7c2b02 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades_triggered_blade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades_triggered_blade.lua new file mode 100644 index 0000000000..977d73d2ae --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/rain_of_blades_triggered_blade.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua index 3d7155d8d4..53993c3447 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ravenous_swarm.lua @@ -56,7 +56,7 @@ return { [2]=1000 } }, - text="Swarm duration is {0} second" + text="Spawn a new Swarm once every second" }, [2]={ [1]={ @@ -69,21 +69,14 @@ return { [2]="#" } }, - text="Swarm duration is {0} seconds" + text="Spawn a new Swarm once every {0} seconds" } }, stats={ - [1]="base_skill_effect_duration" + [1]="base_cooldown_modifiable_repeat_interval_ms" } }, [4]={ - [1]={ - }, - stats={ - [1]="minion_duration" - } - }, - [5]={ [1]={ [1]={ [1]={ @@ -96,7 +89,7 @@ return { [2]=1000 } }, - text="Spawn a new Swarm once every second" + text="Swarm duration is {0} second" }, [2]={ [1]={ @@ -109,14 +102,44 @@ return { [2]="#" } }, - text="Spawn a new Swarm once every {0} seconds" + text="Swarm duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Cooldown Recovery Rate also apply to\nSwarm spawning frequency" } }, stats={ - [1]="ravenous_swarm_create_new_swarm_every_X_ms" + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" } }, [6]={ + [1]={ + }, + stats={ + [1]="minion_duration" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="virtual_cooldown_modifiable_repeat_interval_ms" + } + }, + [8]={ [1]={ [1]={ limit={ @@ -143,9 +166,11 @@ return { }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_effect_duration"]=3, - ["minion_duration"]=4, + ["base_cooldown_modifiable_repeat_interval_ms"]=3, + ["base_skill_effect_duration"]=4, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=5, + ["minion_duration"]=6, parent="skill_stat_descriptions", - ["ravenous_swarm_create_new_swarm_every_X_ms"]=5, - ["virtual_ravenous_swarm_maximum_swarm_count"]=6 + ["virtual_cooldown_modifiable_repeat_interval_ms"]=7, + ["virtual_ravenous_swarm_maximum_swarm_count"]=8 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/refutation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/refutation.lua new file mode 100644 index 0000000000..45f455c96f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/refutation.lua @@ -0,0 +1,247 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="While the Buff is active, automatically Block from all directions and inflict Parried to Blocked enemies" + } + }, + stats={ + [1]="display_statset_no_hit_damage" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% more Stun Threshold while Buff is active" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Stun Threshold while Buff is active" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Stun Threshold while Buff is active" + } + }, + stats={ + [1]="runic_fortress_stun_threshold_+%_final" + } + }, + [4]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% more Stun Threshold while Buff is active per 10 Runic Ward spent" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Stun Threshold while Buff is active per 10 Runic Ward spent" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Stun Threshold while Buff is active per 10 Runic Ward spent" + } + }, + stats={ + [1]="runic_fortress_stun_threshold_+%_final_per_10_ward_spent" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="secondary_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Parried Debuff makes targets take {0}% more Attack Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Parried Debuff makes targets take {0}% less Attack Damage" + } + }, + stats={ + [1]="base_parry_buff_damage_taken_+%_final_to_apply" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Parried Debuff lasts for an additional {0:+d} seconds" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Parried Debuff duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Parried Debuff duration is {0} seconds" + } + }, + stats={ + [1]="base_parry_duration_ms" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="parry_buff_attack_damage_taken_+%_final_magnitude_to_apply" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="parry_buff_spell_damage_taken_+%_final_magnitude_to_apply" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="virtual_parry_duration_ms" + } + }, + ["base_parry_buff_damage_taken_+%_final_to_apply"]=6, + ["base_parry_duration_ms"]=7, + ["base_skill_effect_duration"]=2, + ["display_statset_no_hit_damage"]=1, + parent="skill_stat_descriptions", + ["parry_buff_attack_damage_taken_+%_final_magnitude_to_apply"]=8, + ["parry_buff_spell_damage_taken_+%_final_magnitude_to_apply"]=9, + ["runic_fortress_stun_threshold_+%_final"]=3, + ["runic_fortress_stun_threshold_+%_final_per_10_ward_spent"]=4, + ["secondary_skill_effect_duration"]=5, + ["virtual_parry_duration_ms"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/remnants_of_kalguur.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/remnants_of_kalguur.lua new file mode 100644 index 0000000000..a33f9af506 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/remnants_of_kalguur.lua @@ -0,0 +1,151 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% chance to spawn a Remnant on Stunning an Enemy" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=99 + }, + [2]={ + [1]=1000, + [2]=1000 + } + }, + text="{0}% chance to spawn a Remnant on Stunning an Enemy, no more than once per second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=99 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to spawn a Remnant on Stunning an Enemy, no more than once every {1} seconds" + }, + [4]={ + limit={ + [1]={ + [1]=100, + [2]="#" + }, + [2]={ + [1]=1000, + [2]=1000 + } + }, + text="Spawn a Remnant on Stunning an Enemy, no more than once per second" + }, + [5]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=100, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Spawn a Remnant on Stunning an Enemy, no more than once every {1} seconds" + } + }, + stats={ + [1]="ward_remnants_chance_to_spawn_remnant_on_stun_%", + [2]="ward_remnants_spawn_remnant_on_stun_cooldown_ms" + } + }, + [2]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% chance to spawn a Remnant on killing an enemy" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to spawn a Remnant on killing an enemy" + }, + [3]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Spawn a Remnant on killing an enemy" + } + }, + stats={ + [1]="ward_remnants_chance_to_spawn_orb_on_killing_enemy_%" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Each Remnant grants {0} Runic Ward" + } + }, + stats={ + [1]="ward_remnants_gain_per_globe" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="virtual_ward_remnants_gain_per_globe" + } + }, + parent="skill_stat_descriptions", + ["virtual_ward_remnants_gain_per_globe"]=4, + ["ward_remnants_chance_to_spawn_orb_on_killing_enemy_%"]=2, + ["ward_remnants_chance_to_spawn_remnant_on_stun_%"]=1, + ["ward_remnants_gain_per_globe"]=3, + ["ward_remnants_spawn_remnant_on_stun_cooldown_ms"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion.lua new file mode 100644 index 0000000000..4a7a0ad4e2 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion.lua @@ -0,0 +1,97 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Curse duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curse applies {0} Fragility" + } + }, + stats={ + [1]="curse_repulsion_applies_X_fragility" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Marked target" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Marked targets" + } + }, + stats={ + [1]="number_of_marks_allowed_per_type" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_secondary_skill_effect_duration"]=1, + ["base_skill_effect_duration"]=2, + ["curse_repulsion_applies_X_fragility"]=3, + ["number_of_marks_allowed_per_type"]=4, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion_shockwave.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion_shockwave.lua new file mode 100644 index 0000000000..798b78f1e3 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/repulsion_shockwave.lua @@ -0,0 +1,80 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Stun buildup on Hit\nper Fragility on the target" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=1 + } + }, + text="{0}% less Stun buildup on Hit\nper Fragility on the target" + } + }, + stats={ + [1]="curse_repulsion_shockwave_hit_damage_stun_multiplier_+%_final_per_fragility_on_special_object" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_secondary_skill_effect_duration"]=1, + ["curse_repulsion_shockwave_hit_damage_stun_multiplier_+%_final_per_fragility_on_special_object"]=4, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_0.lua new file mode 100644 index 0000000000..b735f9785c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_0.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Will Consume a Fragment of Divinity within 3 metres of you or targeted location when you leap to become Empowered" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_1.lua new file mode 100644 index 0000000000..a77b061e62 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/righteous_descent_statset_1.lua @@ -0,0 +1,105 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_attack_time_+_ms" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Does not consume a Cooldown Use" + } + }, + stats={ + [1]="display_no_cooldown_use_if_empowered" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0}% of maximum Life over 2 seconds" + } + }, + stats={ + [1]="recover_%_of_life_over_2_seconds_when_consuming_a_divine_fragment" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0}% of maximum Mana over 2 seconds" + } + }, + stats={ + [1]="recover_%_of_mana_over_2_seconds_when_consuming_a_divine_fragment" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["display_no_cooldown_use_if_empowered"]=4, + parent="skill_stat_descriptions", + ["recover_%_of_life_over_2_seconds_when_consuming_a_divine_fragment"]=5, + ["recover_%_of_mana_over_2_seconds_when_consuming_a_divine_fragment"]=6, + ["total_attack_time_+_ms"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua index f0c4b2061e..2bf8857272 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ripwire_arrow.lua @@ -9,7 +9,7 @@ return { }, [2]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [3]={ @@ -90,12 +90,12 @@ return { } }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["active_skill_area_of_effect_radius"]=3, ["active_skill_base_area_of_effect_radius"]=4, ["base_number_of_projectiles"]=5, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=6 + ["total_number_of_projectiles_to_fire_from_stats"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ritual_sacrifice.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ritual_sacrifice.lua index 597ae31565..0c9aa37836 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ritual_sacrifice.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/ritual_sacrifice.lua @@ -19,7 +19,7 @@ return { [2]=0 } }, - text="{0:+d} second to Stolen Modifier duration" + text="{0:+d} second to Modifier duration" }, [2]={ [1]={ @@ -36,7 +36,7 @@ return { [2]=0 } }, - text="{0:+d} seconds to Stolen Modifier duration" + text="{0:+d} seconds to Modifier duration" }, [3]={ [1]={ @@ -53,7 +53,7 @@ return { [2]="#" } }, - text="Stolen Modifier duration is {0} second" + text="Modifier duration is {0} second" }, [4]={ [1]={ @@ -70,7 +70,7 @@ return { [2]="#" } }, - text="Stolen Modifier duration is {0} seconds" + text="Modifier duration is {0} seconds" } }, stats={ @@ -79,6 +79,22 @@ return { } }, [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When used on yourself, removes {0}% of maximum Life to grant a random Monster Modifier, replacing any previous\nModifier gained this way" + } + }, + stats={ + [1]="head_hunt_%_life_to_remove_on_self_stab" + } + }, + [3]={ [1]={ }, stats={ @@ -86,7 +102,8 @@ return { } }, ["base_skill_effect_duration"]=1, + ["head_hunt_%_life_to_remove_on_self_stab"]=2, parent="skill_stat_descriptions", ["quality_display_base_skill_effect_duration_is_gem"]=1, - ["skill_effect_duration"]=2 + ["skill_effect_duration"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_reprieve.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_reprieve.lua new file mode 100644 index 0000000000..0e4b77e298 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_reprieve.lua @@ -0,0 +1,77 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You take {0}% of damage from Blocked Hits" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You take {0}% of damage from Blocked Hits" + } + }, + stats={ + [1]="rune_ward_block_%_damage_taken" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lose Runic Ward on Block equal to the damage you took from that Hit" + } + }, + stats={ + [1]="non_ward_damage_taken_from_blocked_hits_is_taken_to_ward_as_well" + } + }, + [3]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Requires {0:+d}% of maximum Runic Ward to be able to use this Skill" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Requires at least {0}% of maximum Runic Ward to be able to use this Skill" + } + }, + stats={ + [1]="rune_ward_requires_%_maximum_ward_to_perform" + } + }, + ["non_ward_damage_taken_from_blocked_hits_is_taken_to_ward_as_well"]=2, + parent="skill_stat_descriptions", + ["rune_ward_block_%_damage_taken"]=1, + ["rune_ward_requires_%_maximum_ward_to_perform"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua index 092fd37529..4e15e6128b 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/runic_tempering.lua @@ -3,10 +3,30 @@ return { [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ [1]={ [1]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Backlash radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", v=1 }, limit={ @@ -15,14 +35,47 @@ return { [2]="#" } }, - text="DNT-UNUSED Minimum of {0} second between each backlash" + text="Backlash radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Can backlash once every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Can backlash once every {0} seconds" } }, stats={ [1]="runic_tempering_backlash_cooldown_ms" } }, - [2]={ + [4]={ [1]={ [1]={ limit={ @@ -31,7 +84,7 @@ return { [2]="#" } }, - text="DNT-UNUSED {0}% increase Damage taken while you have runes" + text="You take {0}% more Damage from Hits while you have Runic Plates" }, [2]={ [1]={ @@ -44,14 +97,14 @@ return { [2]=-1 } }, - text="DNT-UNUSED {0}% decrease Damage taken while you have runes" + text="You take {0}% less Damage from Hits while you have Runic Plates" } }, stats={ - [1]="runic_tempering_damage_taken_+%" + [1]="runic_tempering_damage_taken_+%_final" } }, - [3]={ + [5]={ [1]={ [1]={ limit={ @@ -60,7 +113,7 @@ return { [2]=1 } }, - text="DNT-UNUSED Each rune can backlash {0} time" + text="A Runic Plate is lost for every {0} backlash" }, [2]={ limit={ @@ -69,32 +122,53 @@ return { [2]="#" } }, - text="DNT-UNUSED Each rune can backlash {0} times" + text="A Runic Plate is lost for every {0} backlashes" } }, stats={ [1]="runic_tempering_hit_per_rune" } }, - [4]={ + [6]={ [1]={ [1]={ limit={ [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Maximum {0} Runic Plate" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ [1]="#", [2]="#" } }, - text="DNT-UNUSED Maximum {0} Runes" + text="Maximum {0} Runic Plates" } }, stats={ - [1]="runic_tempering_max_runes" + [1]="runic_tempering_max_runes", + [2]="runic_tempering_stacks" } }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, parent="skill_stat_descriptions", - ["runic_tempering_backlash_cooldown_ms"]=1, - ["runic_tempering_damage_taken_+%"]=2, - ["runic_tempering_hit_per_rune"]=3, - ["runic_tempering_max_runes"]=4 + ["runic_tempering_backlash_cooldown_ms"]=3, + ["runic_tempering_damage_taken_+%_final"]=4, + ["runic_tempering_hit_per_rune"]=5, + ["runic_tempering_max_runes"]=6, + ["runic_tempering_stacks"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sanguine_revelry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sanguine_revelry.lua new file mode 100644 index 0000000000..d079ede45f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sanguine_revelry.lua @@ -0,0 +1,108 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Spawn a Remnant on Hitting a Bleeding enemy, no more than once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spawn a Remnant on Hitting a Bleeding enemy, no more than once every {0} seconds" + } + }, + stats={ + [1]="create_furious_remnant_when_hitting_bleeding_enemies_once_every_x_ms" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Spawn a Remnant on killing a Bleeding enemy" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Spawn a Remnant on killing a Bleeding enemy" + } + }, + stats={ + [1]="sanguine_revelry_%_change_to_create_remnant_on_killing_bleeding_enemy" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Each Remnant grants {0} Rage" + } + }, + stats={ + [1]="sanguine_revelry_rage_gain_per_pickup" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_thousand_1dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Each Remnant causes you to recover {0}% of maximum Life per 5 Current Rage" + } + }, + stats={ + [1]="sanguine_revelry_remnant_restore_%_permyriad_of_max_life_per_5_current_rage" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="virtual_mana_remnants_mana_gain_per_globe" + } + }, + ["create_furious_remnant_when_hitting_bleeding_enemies_once_every_x_ms"]=1, + parent="skill_stat_descriptions", + ["sanguine_revelry_%_change_to_create_remnant_on_killing_bleeding_enemy"]=2, + ["sanguine_revelry_rage_gain_per_pickup"]=3, + ["sanguine_revelry_remnant_restore_%_permyriad_of_max_life_per_5_current_rage"]=4, + ["virtual_mana_remnants_mana_gain_per_globe"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/savage_fury.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/savage_fury.lua index 00efa0a421..07a91e4516 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/savage_fury.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/savage_fury.lua @@ -5,6 +5,16 @@ return { [1]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} additional Fury on Attack Hit" + }, + [2]={ limit={ [1]={ [1]="#", diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua index e057f214a0..02f0793e2d 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_0.lua @@ -153,7 +153,7 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["base_secondary_skill_effect_duration"]=1, @@ -164,5 +164,5 @@ return { ["quality_display_ember_fusilade_is_gem"]=4, ["secondary_skill_effect_duration"]=5, ["skill_effect_duration"]=6, - ["total_number_of_projectiles_to_fire"]=7 + ["total_number_of_projectiles_to_fire_from_stats"]=7 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua index 599a69895b..e1c6d956e6 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/scattering_calamity_statset_1.lua @@ -4,7 +4,7 @@ return { [1]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [2]={ @@ -69,5 +69,5 @@ return { ["active_skill_base_area_of_effect_radius"]=4, ["blazing_cluster_maximum_number_of_projectiles_allowed"]=2, parent="specific_skill_stat_descriptions/ember_fusillade_statset_0", - ["total_number_of_projectiles_to_fire"]=1 + ["total_number_of_projectiles_to_fire_from_stats"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_spite.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_spite.lua index 980c7bce53..33bf187c6b 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_spite.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shattering_spite.lua @@ -104,22 +104,6 @@ return { } }, [6]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Life Leech from Explosions with at least 15 Bloodstone Lances is instant" - } - }, - stats={ - [1]="skill_specific_stat_description_mode" - } - }, - [7]={ [1]={ [1]={ limit={ @@ -139,8 +123,7 @@ return { ["active_skill_base_area_of_effect_radius"]=2, ["damage_per_bloodstone_lance_+%_final"]=3, parent="skill_stat_descriptions", - ["shattering_spite_%_of_presence_radius"]=7, + ["shattering_spite_%_of_presence_radius"]=6, ["shattering_spite_area_+%_per_lance_with_at_least_5_lances"]=4, - ["shattering_spite_life_leech_%_with_10_lances"]=5, - ["skill_specific_stat_description_mode"]=6 + ["shattering_spite_life_leech_%_with_10_lances"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_block.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_block.lua index c596db5ce6..7916f4ed51 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_block.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/shield_block.lua @@ -48,6 +48,53 @@ return { } }, [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Parried Debuff lasts for an additional {0:+d} seconds" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Parried Debuff duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Parried Debuff duration is {0} seconds" + } + }, + stats={ + [1]="base_parry_duration_ms" + } + }, + [4]={ [1]={ [1]={ limit={ @@ -63,7 +110,7 @@ return { [1]="global_always_hit" } }, - [4]={ + [5]={ [1]={ [1]={ limit={ @@ -84,10 +131,35 @@ return { [2]="off_hand_maximum_added_physical_damage_per_5_shield_armour" } }, + [6]={ + [1]={ + }, + stats={ + [1]="parry_buff_attack_damage_taken_+%_final_magnitude_to_apply" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="parry_buff_spell_damage_taken_+%_final_magnitude_to_apply" + } + }, + [8]={ + [1]={ + }, + stats={ + [1]="virtual_parry_duration_ms" + } + }, ["active_skill_hit_damage_stun_multiplier_+%_final"]=1, ["always_light_stun"]=2, - ["global_always_hit"]=3, - ["off_hand_maximum_added_physical_damage_per_5_shield_armour"]=4, - ["off_hand_minimum_added_physical_damage_per_5_shield_armour"]=4, - parent="skill_stat_descriptions" + ["base_parry_duration_ms"]=3, + ["global_always_hit"]=4, + ["off_hand_maximum_added_physical_damage_per_5_shield_armour"]=5, + ["off_hand_minimum_added_physical_damage_per_5_shield_armour"]=5, + parent="skill_stat_descriptions", + ["parry_buff_attack_damage_taken_+%_final_magnitude_to_apply"]=6, + ["parry_buff_spell_damage_taken_+%_final_magnitude_to_apply"]=7, + ["virtual_parry_duration_ms"]=8 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/siege_cascade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/siege_cascade.lua index efc5530194..a81158ad4e 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/siege_cascade.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/siege_cascade.lua @@ -4,7 +4,7 @@ return { [1]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [2]={ @@ -91,5 +91,5 @@ return { ["active_skill_secondary_area_of_effect_radius"]=7, ["never_freeze"]=3, parent="skill_stat_descriptions", - ["total_number_of_projectiles_to_fire"]=1 + ["total_number_of_projectiles_to_fire_from_stats"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sigil_of_life.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sigil_of_life.lua new file mode 100644 index 0000000000..8efd6f4c1c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/sigil_of_life.lua @@ -0,0 +1,214 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Sigil radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sigil radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains a Stage when you Spend a total of {0}% of your Maximum Mana while in Area" + } + }, + stats={ + [1]="base_circle_of_power_mana_%_spend_per_upgrade" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Sigil duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sigil duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Stage" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Stages" + } + }, + stats={ + [1]="circle_of_power_max_stages" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% more Armour, Evasion and Energy Shield per Stage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% less Armour, Evasion and Energy Shield per Stage" + } + }, + stats={ + [1]="sacred_ground_armour_evasion_energy_shield_+%_final_per_stage" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0} Life Regenerated per second per Stage" + }, + [2]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + [2]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0} Life Lost per second per Stage" + } + }, + stats={ + [1]="sacred_ground_life_regeneration_for_allies_per_minute_per_stage" + } + }, + [9]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [10]={ + [1]={ + }, + stats={ + [1]="virtual_circle_of_power_max_stages" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=3, + ["base_circle_of_power_mana_%_spend_per_upgrade"]=4, + ["base_skill_effect_duration"]=5, + ["circle_of_power_max_stages"]=6, + parent="skill_stat_descriptions", + ["sacred_ground_armour_evasion_energy_shield_+%_final_per_stage"]=7, + ["sacred_ground_life_regeneration_for_allies_per_minute_per_stage"]=8, + ["skill_effect_duration"]=9, + ["virtual_circle_of_power_max_stages"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/skyfall.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/skyfall.lua new file mode 100644 index 0000000000..36d8df05f7 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/skyfall.lua @@ -0,0 +1,117 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Generates {0}% of Runic Ward spent as Glory for this Skill" + } + }, + stats={ + [1]="active_skill_generates_%_of_ward_spent_as_glory" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Temporary Minion" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Temporary Minions" + } + }, + stats={ + [1]="verisium_comet_number_of_minions_to_create" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Temporary Minion" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Temporary Minions" + } + }, + stats={ + [1]="base_number_of_verisium_octopus_minions_allowed" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=4, + ["active_skill_base_area_of_effect_radius"]=5, + ["active_skill_generates_%_of_ward_spent_as_glory"]=1, + ["base_number_of_verisium_octopus_minions_allowed"]=3, + parent="skill_stat_descriptions", + ["verisium_comet_number_of_minions_to_create"]=2 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/smash_to_smithereens.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/smash_to_smithereens.lua new file mode 100644 index 0000000000..977d73d2ae --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/smash_to_smithereens.lua @@ -0,0 +1,48 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions" +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_0.lua new file mode 100644 index 0000000000..4fbf2e7f36 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_0.lua @@ -0,0 +1,203 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} second to Fissure duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} seconds to Fissure duration" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Fissure duration is {0} second" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Fissure duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration", + [2]="quality_display_base_skill_effect_duration_is_gem" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Calls down {0} Stars" + } + }, + stats={ + [1]="empyrean_descent_number_of_explosions" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Fissure" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Fissures" + } + }, + stats={ + [1]="molten_crash_max_number_of_fissures" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Fissure" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Fissures" + } + }, + stats={ + [1]="volcanic_fissure_base_maximum_number_of_fissures" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["empyrean_descent_number_of_explosions"]=4, + ["molten_crash_max_number_of_fissures"]=5, + parent="skill_stat_descriptions", + ["quality_display_base_skill_effect_duration_is_gem"]=3, + ["skill_effect_duration"]=6, + ["volcanic_fissure_base_maximum_number_of_fissures"]=7 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_1.lua new file mode 100644 index 0000000000..9eaa1c2ec1 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/starborn_onslaught_statset_1.lua @@ -0,0 +1,72 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="total_attack_time_+_ms" + } + }, + [2]={ + stats={ + [1]="skill_added_attack_time_by_distance_ms" + } + }, + [3]={ + stats={ + [1]="molten_crash_number_of_additional_fissures_from_rage_consumption" + } + }, + [4]={ + stats={ + [1]="molten_crash_optionally_consume_X_rage_for_fissures" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [6]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=5, + ["active_skill_base_area_of_effect_radius"]=6, + ["molten_crash_number_of_additional_fissures_from_rage_consumption"]=3, + ["molten_crash_optionally_consume_X_rage_for_fissures"]=4, + parent="skill_stat_descriptions", + ["skill_added_attack_time_by_distance_ms"]=2, + ["total_attack_time_+_ms"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/storm_wave.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/storm_wave.lua index 19d37c0ad6..0ef1a3444c 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/storm_wave.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/storm_wave.lua @@ -12,6 +12,20 @@ return { [2]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wave length is +{0} metres" + }, + [2]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 @@ -24,7 +38,7 @@ return { }, text="Wave length is {0} metre" }, - [2]={ + [3]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_mist_raven.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_mist_raven.lua new file mode 100644 index 0000000000..42b3adcc93 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_mist_raven.lua @@ -0,0 +1,35 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [2]={ + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Minion uses your Culling Strike threshold" + } + }, + stats={ + [1]="use_owners_culling_threshold_instead_of_your_own" + } + }, + ["active_skill_area_of_effect_radius"]=2, + ["active_skill_base_area_of_effect_radius"]=1, + parent="skill_stat_descriptions", + ["use_owners_culling_threshold_instead_of_your_own"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_spiraling_conspiracy.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_spiraling_conspiracy.lua new file mode 100644 index 0000000000..d7809d7b12 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/summon_spiraling_conspiracy.lua @@ -0,0 +1,97 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Raven Flock's Skills have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Raven Flock's Skills have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="base_skill_area_of_effect_+%" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_thousand", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="A Raven joins the Flock every {0} second while a Rare or Unique enemy is in your Presence" + }, + [2]={ + [1]={ + k="divide_by_one_thousand", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="A Raven joins the Flock every {0} seconds while a Rare or Unique enemy is in your Presence" + } + }, + stats={ + [1]="tangmazu_raven_added_to_your_flock_every_x_msec_a_rare_or_unique_enemy_is_in_your_presence" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="A Raven joins the Flock for every {0} total Power of enemies slain by you or your Minions" + } + }, + stats={ + [1]="tangmazu_raven_added_to_your_flock_every_x_power_of_enemies_killed" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="tangmazu_raven_flock_count" + } + }, + ["base_skill_area_of_effect_+%"]=1, + parent="skill_stat_descriptions", + ["tangmazu_raven_added_to_your_flock_every_x_msec_a_rare_or_unique_enemy_is_in_your_presence"]=2, + ["tangmazu_raven_added_to_your_flock_every_x_power_of_enemies_killed"]=3, + ["tangmazu_raven_flock_count"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tangmazu_mad_flight.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tangmazu_mad_flight.lua new file mode 100644 index 0000000000..1d5b9b8d7e --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tangmazu_mad_flight.lua @@ -0,0 +1,191 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Mirror width is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mirror width is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Length between mirrors is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Length between mirrors is {0} metres" + } + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="active_skill_base_secondary_area_of_effect_radius" + } + }, + [5]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Mirror duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mirror duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="{0} Raven departs when Commanded" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="{0} Ravens depart when Commanded" + } + }, + stats={ + [1]="display_commanded_skill_ravens_expended" + } + }, + [7]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [8]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Flock Hits every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Flock Hits every {0} seconds" + } + }, + stats={ + [1]="tangmazu_mad_flight_damage_tick_delay_ms" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["active_skill_base_secondary_area_of_effect_radius"]=4, + ["base_skill_effect_duration"]=5, + ["display_commanded_skill_ravens_expended"]=6, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=7, + ["tangmazu_mad_flight_damage_tick_delay_ms"]=8 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua index ad81710722..a507c6e524 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tempest_bell_statset_0.lua @@ -74,6 +74,22 @@ return { } }, [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can be Ancestrally Boosted as though a Strike" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [6]={ [1]={ }, stats={ @@ -85,5 +101,6 @@ return { ["bell_hit_limit"]=3, parent="skill_stat_descriptions", ["skill_effect_duration"]=4, - ["virtual_bell_hit_limit"]=5 + ["skill_specific_stat_description_mode"]=5, + ["virtual_bell_hit_limit"]=6 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/temporal_rift.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/temporal_rift.lua index 9bb74d276b..b112238ca0 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/temporal_rift.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/temporal_rift.lua @@ -3,6 +3,22 @@ return { [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Removes damage delayed by Phased Form" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [2]={ [1]={ [1]={ limit={ @@ -18,7 +34,7 @@ return { [1]="temporal_rift_maximum_snapshots" } }, - [2]={ + [3]={ [1]={ [1]={ [1]={ @@ -39,6 +55,7 @@ return { } }, parent="skill_stat_descriptions", - ["temporal_rift_maximum_snapshots"]=1, - ["temporal_rift_snapshot_interval"]=2 + ["skill_specific_stat_description_mode"]=1, + ["temporal_rift_maximum_snapshots"]=2, + ["temporal_rift_snapshot_interval"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer.lua new file mode 100644 index 0000000000..3154acb50c --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer.lua @@ -0,0 +1,179 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be cast if you have less than {0} Mana\nCannot be cast if already active" + } + }, + stats={ + [1]="mana_required_to_activate_skill" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Targeting radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Targeting radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Triggers Starfall every second, targeting enemies if able" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Triggers Starfall every {0} seconds, targeting enemies if able" + } + }, + stats={ + [1]="walking_calamity_spawn_meteor_every_ms" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Starfall Trigger frequency per enemy in radius after the first, up to a maximum of {1}%" + } + }, + stats={ + [1]="walking_calamity_meteor_frequency_+%_per_enemy_in_walking_calamity_radius", + [2]="walking_calamity_meteor_frequency_+%_cap" + } + }, + [5]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} Starfall Triggers required per large star" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Starfall creates a large star every {0} times Triggered" + } + }, + stats={ + [1]="walking_calamity_large_meteor_every" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [7]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Cannot Trigger Starfall for more than one large star per target every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Starfall cannot cannot target the same enemy with large stars more than once every {0} seconds" + } + }, + stats={ + [1]="walking_calamity_large_meteor_same_target_prevention_duration_ms" + } + }, + ["active_skill_area_of_effect_radius"]=6, + ["active_skill_base_area_of_effect_radius"]=2, + ["mana_required_to_activate_skill"]=1, + parent="skill_stat_descriptions", + ["walking_calamity_large_meteor_every"]=5, + ["walking_calamity_large_meteor_same_target_prevention_duration_ms"]=7, + ["walking_calamity_meteor_frequency_+%_cap"]=4, + ["walking_calamity_meteor_frequency_+%_per_enemy_in_walking_calamity_radius"]=4, + ["walking_calamity_spawn_meteor_every_ms"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer_comet.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer_comet.lua new file mode 100644 index 0000000000..6bc164216f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/the_stars_answer_comet.lua @@ -0,0 +1,90 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Impact radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Chilled Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chilled Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_ignited_ground_effect_duration_ms" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_ignited_ground_effect_duration_ms"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thrashing_vines.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thrashing_vines.lua index 8d2f72deac..f350ccd75d 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thrashing_vines.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/thrashing_vines.lua @@ -131,24 +131,15 @@ return { [1]={ limit={ [1]={ - [1]=1, - [2]=1 - } - }, - text="{0} vine grows per cast time" - }, - [2]={ - limit={ - [1]={ - [1]=2, + [1]="#", [2]="#" } }, - text="{0} vines grow per cast time" + text="Time between vine growths is {0}% of this Skill's Cast Time" } }, stats={ - [1]="awakened_forest_spawn_X_vines_per_cast_time" + [1]="awakened_forest_spawn_vines_per_X%_cast_time" } }, [7]={ @@ -264,7 +255,7 @@ return { ["active_skill_base_tertiary_area_of_effect_radius"]=3, ["active_skill_tertiary_area_of_effect_radius"]=4, ["awakened_forest_area_of_effect_+%_final_when_wet"]=5, - ["awakened_forest_spawn_X_vines_per_cast_time"]=6, + ["awakened_forest_spawn_vines_per_X%_cast_time"]=6, ["base_number_of_awakened_forests_allowed"]=7, ["base_skill_effect_duration"]=8, ["number_of_awakened_forests_allowed"]=9, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/time_of_need.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/time_of_need.lua index 8ab787f26c..5d298e64a9 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/time_of_need.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/time_of_need.lua @@ -15,18 +15,27 @@ return { [2]="#" } }, - text="{0} second duration between Blessings" + text="{0} seconds between Blessings" } }, stats={ - [1]="base_skill_effect_duration" + [1]="base_cooldown_modifiable_repeat_interval_ms" } }, [2]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Cooldown Recovery Rate also apply to\nBlessing frequency" + } }, stats={ - [1]="skill_effect_duration" + [1]="cooldown_recovery_modifiers_also_apply_to_repeat_interval" } }, [3]={ @@ -45,8 +54,16 @@ return { [1]="skill_time_of_need_gain_x_life" } }, - ["base_skill_effect_duration"]=1, + [4]={ + [1]={ + }, + stats={ + [1]="virtual_cooldown_modifiable_repeat_interval_ms" + } + }, + ["base_cooldown_modifiable_repeat_interval_ms"]=1, + ["cooldown_recovery_modifiers_also_apply_to_repeat_interval"]=2, parent="skill_stat_descriptions", - ["skill_effect_duration"]=2, - ["skill_time_of_need_gain_x_life"]=3 + ["skill_time_of_need_gain_x_life"]=3, + ["virtual_cooldown_modifiable_repeat_interval_ms"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado.lua index 87cc55520b..70641582f5 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado.lua @@ -186,6 +186,16 @@ return { [8]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to Limit of Tornadoes" + }, + [2]={ limit={ [1]={ [1]=1, @@ -194,7 +204,7 @@ return { }, text="Limit {0} Tornado" }, - [2]={ + [3]={ limit={ [1]={ [1]="#", diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua index 072e46a245..b0ac93962f 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/tornado_shot_statset_1.lua @@ -36,6 +36,16 @@ return { [4]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to Limit of Tornadoes" + }, + [2]={ limit={ [1]={ [1]=1, @@ -44,7 +54,7 @@ return { }, text="Limit {0} Tornado" }, - [2]={ + [3]={ limit={ [1]={ [1]=2, @@ -205,7 +215,7 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [12]={ @@ -228,6 +238,6 @@ return { ["tornado_shot_number_of_hits_allowed"]=8, ["tornado_shot_projectile_damage_+%_final"]=9, ["tornado_shot_projectile_range"]=10, - ["total_number_of_projectiles_to_fire"]=11, + ["total_number_of_projectiles_to_fire_from_stats"]=11, ["virtual_tornado_shot_number_of_hits_allowed"]=12 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua index 5beae4d35c..76fc475f0f 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_domain_statset_0.lua @@ -152,6 +152,35 @@ return { } }, [11]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Effects of Toxic Bloom Linger on you for 1 second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Effects of Toxic Bloom Linger on you for {0} seconds" + } + }, + stats={ + [1]="toxic_domain_buff_linger_duration_ms" + } + }, + [12]={ [1]={ [1]={ [1]={ @@ -171,7 +200,7 @@ return { [1]="toxic_domain_healing_per_minute_+" } }, - [12]={ + [13]={ [1]={ [1]={ [1]={ @@ -200,7 +229,7 @@ return { [1]="toxic_domain_mana_cost_+%" } }, - [13]={ + [14]={ [1]={ [1]={ limit={ @@ -234,8 +263,9 @@ return { ["skill_detonation_time"]=2, ["skill_effect_duration"]=9, ["skill_specific_stat_description_mode"]=10, - ["toxic_domain_healing_per_minute_+"]=11, - ["toxic_domain_mana_cost_+%"]=12, - ["toxic_domain_pustule_chance_%"]=13, + ["toxic_domain_buff_linger_duration_ms"]=11, + ["toxic_domain_healing_per_minute_+"]=12, + ["toxic_domain_mana_cost_+%"]=13, + ["toxic_domain_pustule_chance_%"]=14, ["toxic_pustule_max_burst_damage_+%_final_from_stored_poison"]=5 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_1.lua index ba7c797e42..65824e2702 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_1.lua @@ -9,7 +9,7 @@ return { }, [2]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [3]={ @@ -97,5 +97,5 @@ return { ["base_skill_effect_duration"]=5, parent="specific_skill_stat_descriptions/toxic_grenade_statset_0", ["skill_effect_duration"]=6, - ["total_number_of_projectiles_to_fire"]=2 + ["total_number_of_projectiles_to_fire_from_stats"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_2.lua index a5c8372cc4..bd53750017 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_2.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/toxic_grenade_statset_2.lua @@ -14,7 +14,7 @@ return { }, [3]={ stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, [4]={ @@ -32,5 +32,5 @@ return { ["base_skill_effect_duration"]=1, parent="specific_skill_stat_descriptions/toxic_grenade_statset_0", ["skill_effect_duration"]=2, - ["total_number_of_projectiles_to_fire"]=3 + ["total_number_of_projectiles_to_fire_from_stats"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/transmutation_reservation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/transmutation_reservation.lua new file mode 100644 index 0000000000..271046cd51 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/transmutation_reservation.lua @@ -0,0 +1,23 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Transmutation Explosion on picking up a Remnant" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_caltrops_on_dodge.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_caltrops_on_dodge.lua index 0d9ef6f68f..a7df80db8f 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_caltrops_on_dodge.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_caltrops_on_dodge.lua @@ -26,13 +26,13 @@ return { [1]={ }, stats={ - [1]="total_number_of_projectiles_to_fire" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, ["active_skill_base_secondary_area_of_effect_radius"]=3, ["active_skill_secondary_area_of_effect_radius"]=4, ["base_number_of_projectiles"]=1, parent="specific_skill_stat_descriptions/triggered_caltrops", - ["total_number_of_projectiles_to_fire"]=5, + ["total_number_of_projectiles_to_fire_from_stats"]=5, ["triggered_by_generic_ongoing_trigger"]=2 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_chaos_frog_explosion.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_chaos_frog_explosion.lua new file mode 100644 index 0000000000..f3a0031e9f --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_chaos_frog_explosion.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This skill is Triggered when Witchtoads leap at enemies" + } + }, + stats={ + [1]="triggered_by_chaos_frog_explosion_chance_%" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["triggered_by_chaos_frog_explosion_chance_%"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_corrupting_cry.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_corrupting_cry.lua new file mode 100644 index 0000000000..2ecc429b95 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_corrupting_cry.lua @@ -0,0 +1,96 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Inflicts {0} Corrupted Blood Debuffs" + } + }, + stats={ + [1]="add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Corrupted Blood deals {0} Physical damage per second" + } + }, + stats={ + [1]="base_physical_damage_to_deal_per_minute" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration", + [2]="quality_display_base_skill_effect_duration_is_gem" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"]=1, + ["base_physical_damage_to_deal_per_minute"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["quality_display_base_skill_effect_duration_is_gem"]=3, + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_decaying_hex.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_decaying_hex.lua new file mode 100644 index 0000000000..dc381cd783 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_decaying_hex.lua @@ -0,0 +1,79 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Decay deals {0} Chaos damage per second" + } + }, + stats={ + [1]="base_chaos_damage_to_deal_per_minute" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Decay duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Decay duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration", + [2]="quality_display_base_skill_effect_duration_is_gem" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_chaos_damage_to_deal_per_minute"]=1, + ["base_skill_effect_duration"]=2, + parent="skill_stat_descriptions", + ["quality_display_base_skill_effect_duration_is_gem"]=2, + ["skill_effect_duration"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fist_of_kalguur.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fist_of_kalguur.lua new file mode 100644 index 0000000000..7e05c01595 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fist_of_kalguur.lua @@ -0,0 +1,102 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Rune radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Rune duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rune duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + ["skill_effect_duration"]=4 +} \ No newline at end of file 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 new file mode 100644 index 0000000000..aa36204826 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fractured_self.lua @@ -0,0 +1,133 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Fractured Mimics are created within {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fractured Mimics are created within {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fractured Mimic duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fractured Mimic duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Fractured Mimics" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} Fractured Mimics" + } + }, + stats={ + [1]="support_tricksters_shard_maximum_active_mimics" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Fractured Mimic Limit@{0}" + } + }, + stats={ + [1]="virtual_support_tricksters_shard_maximum_active_mimics" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4, + ["support_tricksters_shard_maximum_active_mimics"]=5, + ["virtual_support_tricksters_shard_maximum_active_mimics"]=6 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_lightning_detonate_dead.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_lightning_detonate_dead.lua new file mode 100644 index 0000000000..c2cd77b81d --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_lightning_detonate_dead.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Deals Lightning damage equal to {0}% of Corpse's maximum Life" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_molten_shower.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_molten_shower.lua new file mode 100644 index 0000000000..6cf53aa17b --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_molten_shower.lua @@ -0,0 +1,65 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Explosion radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Explosion radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Attack is Triggered by Brutus' Lead Sprinkler" + } + }, + stats={ + [1]="skill_has_trigger_from_unique_item" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["skill_has_trigger_from_unique_item"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_morrigans_insight.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_morrigans_insight.lua new file mode 100644 index 0000000000..cab0ddd4fb --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_morrigans_insight.lua @@ -0,0 +1,88 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants {0} Guard" + } + }, + stats={ + [1]="morrigan_ward_gain_X_guard" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Grants {0} to {1} Cold Thorns damage" + } + }, + stats={ + [1]="morrigan_ward_thorns_minimum_base_cold_damage", + [2]="morrigan_ward_thorns_maximum_base_cold_damage" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["base_skill_effect_duration"]=1, + ["morrigan_ward_gain_X_guard"]=2, + ["morrigan_ward_thorns_maximum_base_cold_damage"]=3, + ["morrigan_ward_thorns_minimum_base_cold_damage"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_paquates_pact.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_paquates_pact.lua new file mode 100644 index 0000000000..09b50bd4dc --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_paquates_pact.lua @@ -0,0 +1,105 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Inflicts {0} Corrupted Blood Debuff" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Inflicts {0} Corrupted Blood Debuffs" + } + }, + stats={ + [1]="add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Corrupted Blood deals {0} Physical damage per second" + } + }, + stats={ + [1]="base_physical_damage_to_deal_per_minute" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration", + [2]="quality_display_base_skill_effect_duration_is_gem" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"]=1, + ["base_physical_damage_to_deal_per_minute"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["quality_display_base_skill_effect_duration_is_gem"]=3, + ["skill_effect_duration"]=4 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua index de7325710e..58c0effc80 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_winnowing_flame_pillars.lua @@ -44,7 +44,7 @@ return { } }, stats={ - [1]="active_skill_base_secondary_area_of_effect_radius" + [1]="active_skill_base_area_of_effect_radius" } }, [4]={ @@ -73,7 +73,7 @@ return { } }, ["active_skill_area_of_effect_radius"]=2, - ["active_skill_base_secondary_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=3, ["never_ignite"]=1, parent="skill_stat_descriptions", ["unique_flame_pillar_fire_damage_equal_to_%_of_remaining_ignite_damage"]=4 diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triskelion_cascade.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triskelion_cascade.lua new file mode 100644 index 0000000000..164b52d987 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triskelion_cascade.lua @@ -0,0 +1,125 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Maximum Buff duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Buff duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [2]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Empowered Skill's cast time is added to this Skill's cooldown" + } + }, + stats={ + [1]="triskelion_cascade_cooldown_%_of_cast_time" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Skill has {0}% more area of effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Skill has {0}% less area of effect" + } + }, + stats={ + [1]="triskelion_cascade_next_skill_area_of_effect_+%_final" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Skill deals {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Skill deals {0}% less damage" + } + }, + stats={ + [1]="triskelion_cascade_next_skill_damage_+%_final" + } + }, + ["base_skill_effect_duration"]=1, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=2, + ["triskelion_cascade_cooldown_%_of_cast_time"]=3, + ["triskelion_cascade_next_skill_area_of_effect_+%_final"]=4, + ["triskelion_cascade_next_skill_damage_+%_final"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/unleash.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/unleash.lua index 506d884660..aa76e37876 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/unleash.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/unleash.lua @@ -51,7 +51,7 @@ return { [2]="#" } }, - text="{0}% of repeated Skill's cast time is added to this skill's cooldown" + text="{0}% of Empowered Skill's cast time is added to this Skill's cooldown" } }, stats={ @@ -67,7 +67,7 @@ return { [2]=1 } }, - text="Empowered Spell repeats an additional time" + text="Empowered Spell Repeats {0} additional time" }, [2]={ limit={ @@ -76,7 +76,7 @@ return { [2]="#" } }, - text="Empowered Spell repeats {0} times" + text="Empowered Spell Repeats {0} times" } }, stats={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/verisium_manifestation.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/verisium_manifestation.lua new file mode 100644 index 0000000000..724b9660d0 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/verisium_manifestation.lua @@ -0,0 +1,23 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Manifest Rune on Hitting with an Attack" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/virtuous_barrier.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/virtuous_barrier.lua new file mode 100644 index 0000000000..71ad13b101 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/virtuous_barrier.lua @@ -0,0 +1,184 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gains a random Mote every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains a random Mote every {0} seconds" + } + }, + stats={ + [1]="base_active_skill_buff_stack_gain_frequency_ms" + } + }, + [2]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum of each Attribute of Mote is {0} plus the number of Skills you have which require that Attribute\nSingle-Attribute Skills grant twice as many maximum Motes" + } + }, + stats={ + [1]="skill_specific_stat_description_mode" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased maximum Life per Strength Mote" + } + }, + stats={ + [1]="gem_barrier_red_grants_maximum_life_+%" + } + }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Armour, Evasion and\nEnergy Shield per Dexterity Mote" + } + }, + stats={ + [1]="gem_barrier_green_grants_evasion_rating_+%" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Life Regeneration rate per Intelligence Mote" + } + }, + stats={ + [1]="gem_barrier_blue_grants_life_regeneration_rate_+%" + } + }, + [6]={ + [1]={ + }, + stats={ + [1]="active_skill_buff_stack_gain_frequency_ms" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Mana Regeneration rate per Intelligence Mote" + } + }, + stats={ + [1]="gem_barrier_blue_grants_mana_regeneration_rate_+%" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Intelligence Motes@{0}" + } + }, + stats={ + [1]="virtual_gem_barrier_blue_maximum_stacks" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Dexterity Motes@{0}" + } + }, + stats={ + [1]="virtual_gem_barrier_green_maximum_stacks" + } + }, + [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Strength Motes@{0}" + } + }, + stats={ + [1]="virtual_gem_barrier_red_maximum_stacks" + } + }, + ["active_skill_buff_stack_gain_frequency_ms"]=6, + ["base_active_skill_buff_stack_gain_frequency_ms"]=1, + ["gem_barrier_blue_grants_life_regeneration_rate_+%"]=5, + ["gem_barrier_blue_grants_mana_regeneration_rate_+%"]=7, + ["gem_barrier_green_grants_evasion_rating_+%"]=4, + ["gem_barrier_red_grants_maximum_life_+%"]=3, + parent="skill_stat_descriptions", + ["skill_specific_stat_description_mode"]=2, + ["virtual_gem_barrier_blue_maximum_stacks"]=8, + ["virtual_gem_barrier_green_maximum_stacks"]=9, + ["virtual_gem_barrier_red_maximum_stacks"]=10 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stampede.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stampede.lua new file mode 100644 index 0000000000..a59fdf6521 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/vivid_stampede.lua @@ -0,0 +1,173 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius@{0}m" + } + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metre to Shockwave radius" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0:+d} metres to Shockwave radius" + }, + [3]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metre" + }, + [4]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Shockwave radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius", + [2]="quality_display_active_skill_base_area_of_effect_radius_is_gem" + } + }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Stags leap once" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Stags leap {0} times" + } + }, + stats={ + [1]="vivid_stag_cascade_number_of_damaging_areas" + } + }, + [4]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Shocked Ground duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shocked Ground duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [5]={ + [1]={ + }, + stats={ + [1]="skill_shocked_ground_effect_duration_ms" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=4, + parent="skill_stat_descriptions", + ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=2, + ["skill_shocked_ground_effect_duration_ms"]=5, + ["vivid_stag_cascade_number_of_damaging_areas"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua index 2268ce0602..63062e63b8 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_0.lua @@ -4,29 +4,67 @@ return { [1]={ [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Consumes {0:+d} Corpse" + }, + [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Consumes {0:+d} Corpses" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Consumes up to {0} Corpse" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Consumes up to {0} Corpses" + } }, stats={ - [1]="active_skill_area_of_effect_radius" + [1]="volatile_dead_base_number_of_corpses_to_consume" } }, [2]={ [1]={ [1]={ [1]={ - k="divide_by_ten_1dp_if_required", + k="milliseconds_to_seconds_2dp_if_required", v=1 }, limit={ [1]={ - [1]=10, - [2]=10 + [1]=1000, + [2]=1000 } }, - text="Explosion radius is {0} metre" + text="Core duration is {0} second" }, [2]={ [1]={ - k="divide_by_ten_1dp_if_required", + k="milliseconds_to_seconds_2dp_if_required", v=1 }, limit={ @@ -35,14 +73,22 @@ return { [2]="#" } }, - text="Explosion radius is {0} metres" + text="Core duration is {0} seconds" } }, stats={ - [1]="active_skill_base_area_of_effect_radius" + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" } }, - ["active_skill_area_of_effect_radius"]=1, - ["active_skill_base_area_of_effect_radius"]=2, - parent="skill_stat_descriptions" + ["base_skill_effect_duration"]=2, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=3, + ["volatile_dead_base_number_of_corpses_to_consume"]=1 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua index 4dff986c65..2268ce0602 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_1.lua @@ -18,35 +18,15 @@ return { }, limit={ [1]={ - [1]="#", - [2]="#" - } - }, - text="Ignites enemies within {0} metre radius" - } - }, - stats={ - [1]="active_skill_base_area_of_effect_radius" - } - }, - [3]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 + [1]=10, + [2]=10 } }, - text="Core duration is {0} second" + text="Explosion radius is {0} metre" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="divide_by_ten_1dp_if_required", v=1 }, limit={ @@ -55,46 +35,14 @@ return { [2]="#" } }, - text="Core duration is {0} seconds" + text="Explosion radius is {0} metres" } }, stats={ - [1]="base_skill_effect_duration" - } - }, - [4]={ - [1]={ - }, - stats={ - [1]="skill_effect_duration" - } - }, - [5]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Ignites as though dealing {0} to {1} Fire damage" - } - }, - stats={ - [1]="spell_minimum_base_fire_damage", - [2]="spell_maximum_base_fire_damage" + [1]="active_skill_base_area_of_effect_radius" } }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - ["base_skill_effect_duration"]=3, - parent="skill_stat_descriptions", - ["skill_effect_duration"]=4, - ["spell_maximum_base_fire_damage"]=5, - ["spell_minimum_base_fire_damage"]=5 + parent="skill_stat_descriptions" } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_2.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_2.lua new file mode 100644 index 0000000000..a2611c8b9a --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/volatile_dead_statset_2.lua @@ -0,0 +1,58 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Ignites as though dealing {0} to {1} Fire damage" + } + }, + stats={ + [1]="spell_minimum_base_fire_damage", + [2]="spell_maximum_base_fire_damage" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignites enemies within {0} metre radius" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + ["active_skill_area_of_effect_radius"]=3, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["spell_maximum_base_fire_damage"]=1, + ["spell_minimum_base_fire_damage"]=1 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier.lua new file mode 100644 index 0000000000..c13b4b1d52 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier.lua @@ -0,0 +1,120 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Wall length is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wall length is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Wall duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wall duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [4]={ + [1]={ + }, + stats={ + [1]="skill_effect_duration" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Wall Hits enemies every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wall Hits enemies every {0} seconds" + } + }, + stats={ + [1]="voltaic_barrier_damage_interval_ms" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + ["base_skill_effect_duration"]=3, + parent="skill_stat_descriptions", + ["skill_effect_duration"]=4, + ["voltaic_barrier_damage_interval_ms"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier_triggered_chain_lightning.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier_triggered_chain_lightning.lua new file mode 100644 index 0000000000..fbac9d12e4 --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/voltaic_barrier_triggered_chain_lightning.lua @@ -0,0 +1,94 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + }, + stats={ + [1]="active_skill_area_of_effect_radius" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Beam targeting radius is {0} metre" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Beam targeting radius is {0} metres" + } + }, + stats={ + [1]="active_skill_base_area_of_effect_radius" + } + }, + [3]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires beams at up to {0:+d} additional enemy near the target" + }, + [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fires beams at up to {0:+d} additional enemies near the target" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires beams at up to {0} additional Enemy near the target" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fires beams at up to {0} additional Enemies near the target" + } + }, + stats={ + [1]="voltaic_barrier_trigger_maximum_number_of_extra_targets" + } + }, + ["active_skill_area_of_effect_radius"]=1, + ["active_skill_base_area_of_effect_radius"]=2, + parent="skill_stat_descriptions", + ["voltaic_barrier_trigger_maximum_number_of_extra_targets"]=3 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wardbound_minions.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wardbound_minions.lua new file mode 100644 index 0000000000..c98acba3ab --- /dev/null +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/wardbound_minions.lua @@ -0,0 +1,151 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + [1]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Wardbound Minion Limit" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} Summoned Wardbound Minion" + }, + [3]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Limit {0} Summoned Wardbound Minions" + } + }, + stats={ + [1]="base_number_of_wardbound_minions_allowed" + } + }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}s to Minion duration" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Minion duration is {0} second" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion duration is {0} seconds" + } + }, + stats={ + [1]="base_skill_effect_duration" + } + }, + [3]={ + [1]={ + }, + stats={ + [1]="minion_duration" + } + }, + [4]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} Spell casts before dispersing" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Minions disperse after casting {0} Spells" + }, + [3]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Minions disperse after casting {0} Spells" + } + }, + stats={ + [1]="wardbound_minion_maximum_number_of_casts" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Summon one Wardbound Minion on Skill use and an additional Minion for each additional {0} Runic Ward spent" + } + }, + stats={ + [1]="wardbound_minions_summon_minion_for_every_X_runic_ward_spent" + } + }, + ["base_number_of_wardbound_minions_allowed"]=1, + ["base_skill_effect_duration"]=2, + ["minion_duration"]=3, + parent="skill_stat_descriptions", + ["wardbound_minion_maximum_number_of_casts"]=4, + ["wardbound_minions_summon_minion_for_every_X_runic_ward_spent"]=5 +} \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirling_slash.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirling_slash.lua index ad9e209890..0cbb9ad793 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirling_slash.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirling_slash.lua @@ -62,8 +62,25 @@ return { [1]="sandstorm_swipe_storm_radius_+_per_stage" } }, + [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Whirlwinds Gain {0}% of damage as damage of the corresponding Type" + } + }, + stats={ + [1]="windstorm_gain_all_damage_%_as_corresponding_element_if_empowered" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, parent="skill_stat_descriptions", - ["sandstorm_swipe_storm_radius_+_per_stage"]=3 + ["sandstorm_swipe_storm_radius_+_per_stage"]=3, + ["windstorm_gain_all_damage_%_as_corresponding_element_if_empowered"]=4 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirlwind_lance.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirlwind_lance.lua index cc3bc955bf..f8c5165865 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirlwind_lance.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/whirlwind_lance.lua @@ -144,6 +144,32 @@ return { } }, [8]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Whirlwinds Gain +{0}% of damage as damage of the corresponding Type" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Whirlwinds Gain {0}% of damage as damage of the corresponding Type" + } + }, + stats={ + [1]="windstorm_gain_all_damage_%_as_corresponding_element_if_empowered" + } + }, + [9]={ [1]={ }, stats={ @@ -158,5 +184,6 @@ return { ["skill_effect_duration"]=6, ["skill_specific_stat_description_mode"]=1, ["windstorm_base_maximum_number_of_storms"]=7, - ["windstorm_maximum_number_of_storms"]=8 + ["windstorm_gain_all_damage_%_as_corresponding_element_if_empowered"]=8, + ["windstorm_maximum_number_of_storms"]=9 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua index d08632a416..b163a7a489 100644 --- a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua @@ -108,6 +108,27 @@ return { } }, [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Base Off Hand Fire Damage" + } + }, + stats={ + [1]="off_hand_weapon_minimum_fire_damage", + [2]="off_hand_weapon_maximum_fire_damage" + } + }, + [8]={ [1]={ [1]={ [1]={ @@ -127,7 +148,28 @@ return { [1]="off_hand_base_weapon_attack_duration_ms" } }, - [8]={ + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Base Off Hand Cold Damage" + } + }, + stats={ + [1]="off_hand_weapon_minimum_cold_damage", + [2]="off_hand_weapon_maximum_cold_damage" + } + }, + [10]={ [1]={ [1]={ limit={ @@ -148,7 +190,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [9]={ + [11]={ [1]={ [1]={ limit={ @@ -169,7 +211,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [10]={ + [12]={ [1]={ [1]={ limit={ @@ -190,7 +232,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [11]={ + [13]={ [1]={ [1]={ limit={ @@ -211,7 +253,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [12]={ + [14]={ [1]={ [1]={ limit={ @@ -232,7 +274,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [13]={ + [15]={ [1]={ [1]={ limit={ @@ -261,7 +303,7 @@ return { [1]="active_skill_attack_damage_+%_final" } }, - [14]={ + [16]={ [1]={ [1]={ limit={ @@ -290,7 +332,7 @@ return { [1]="supplementary_stat_container_attack_speed_+%_final" } }, - [15]={ + [17]={ [1]={ [1]={ [1]={ @@ -323,7 +365,7 @@ return { [1]="active_skill_attack_damage_final_permyriad" } }, - [16]={ + [18]={ [1]={ [1]={ limit={ @@ -352,7 +394,7 @@ return { [1]="active_skill_damage_+%_final" } }, - [17]={ + [19]={ [1]={ [1]={ limit={ @@ -368,7 +410,7 @@ return { [1]="active_skill_minion_damage_+%_final" } }, - [18]={ + [20]={ [1]={ [1]={ [1]={ @@ -388,7 +430,7 @@ return { [1]="active_skill_minion_physical_damage_+%_final" } }, - [19]={ + [21]={ [1]={ [1]={ limit={ @@ -417,7 +459,7 @@ return { [1]="active_skill_physical_damage_+%_final" } }, - [20]={ + [22]={ [1]={ [1]={ limit={ @@ -446,7 +488,7 @@ return { [1]="physical_damage_+%_per_frenzy_charge" } }, - [21]={ + [23]={ [1]={ [1]={ limit={ @@ -471,7 +513,7 @@ return { [1]="base_number_of_zombies_allowed" } }, - [22]={ + [24]={ [1]={ [1]={ limit={ @@ -496,7 +538,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [23]={ + [25]={ [1]={ [1]={ limit={ @@ -521,7 +563,7 @@ return { [1]="base_number_of_skeletons_allowed" } }, - [24]={ + [26]={ [1]={ [1]={ limit={ @@ -546,7 +588,7 @@ return { [1]="number_of_wolves_allowed" } }, - [25]={ + [27]={ [1]={ [1]={ limit={ @@ -571,7 +613,7 @@ return { [1]="virtual_number_of_wolves_allowed" } }, - [26]={ + [28]={ [1]={ [1]={ limit={ @@ -596,7 +638,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [27]={ + [29]={ [1]={ [1]={ limit={ @@ -625,7 +667,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [28]={ + [30]={ [1]={ [1]={ limit={ @@ -654,7 +696,7 @@ return { [1]="aura_effect_+%" } }, - [29]={ + [31]={ [1]={ [1]={ limit={ @@ -670,7 +712,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [30]={ + [32]={ [1]={ [1]={ [1]={ @@ -690,7 +732,7 @@ return { [1]="offering_skill_effect_duration_per_corpse" } }, - [31]={ + [33]={ [1]={ [1]={ [1]={ @@ -710,7 +752,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [32]={ + [34]={ [1]={ [1]={ limit={ @@ -739,7 +781,7 @@ return { [1]="buff_duration_+%" } }, - [33]={ + [35]={ [1]={ [1]={ limit={ @@ -768,7 +810,7 @@ return { [1]="skill_effect_duration_+%" } }, - [34]={ + [36]={ [1]={ [1]={ limit={ @@ -784,7 +826,7 @@ return { [1]="display_minion_base_maximum_life" } }, - [35]={ + [37]={ [1]={ [1]={ limit={ @@ -813,32 +855,7 @@ return { [1]="active_skill_area_damage_+%_final" } }, - [36]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Spell Repeats once" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Spell Repeats {0} times" - } - }, - stats={ - [1]="base_spell_repeat_count" - } - }, - [37]={ + [38]={ [1]={ [1]={ limit={ @@ -863,7 +880,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [38]={ + [39]={ [1]={ [1]={ limit={ @@ -879,7 +896,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [39]={ + [40]={ [1]={ [1]={ limit={ @@ -904,7 +921,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [40]={ + [41]={ [1]={ [1]={ limit={ @@ -920,7 +937,7 @@ return { [1]="eye_of_winter_base_explosion_shards" } }, - [41]={ + [42]={ [1]={ [1]={ [1]={ @@ -953,7 +970,7 @@ return { [1]="base_sigil_repeat_frequency_ms" } }, - [42]={ + [43]={ [1]={ [1]={ limit={ @@ -982,7 +999,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [43]={ + [44]={ [1]={ [1]={ limit={ @@ -998,31 +1015,6 @@ return { [1]="additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency" } }, - [44]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="This Attack Repeats {0} additional time" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="This Attack Repeats {0} additional times" - } - }, - stats={ - [1]="base_melee_attack_repeat_count" - } - }, [45]={ [1]={ [1]={ @@ -1296,6 +1288,30 @@ return { [58]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Converts {0}% of Physical Damage to Lightning Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=1 + } + }, + text="Converts -{0}% of Physical Damage to Lightning Damage" + }, + [3]={ limit={ [1]={ [1]=1, @@ -2722,6 +2738,22 @@ return { } }, [113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to number of Projectiles instead apply to the number of times this skill Repeats" + } + }, + stats={ + [1]="base_modifiers_to_number_of_projectiles_instead_apply_to_repeats" + } + }, + [114]={ [1]={ [1]={ limit={ @@ -2737,7 +2769,7 @@ return { [1]="base_number_of_arrows" } }, - [114]={ + [115]={ [1]={ [1]={ limit={ @@ -2762,7 +2794,7 @@ return { [1]="base_number_of_bone_offerings_allowed" } }, - [115]={ + [116]={ [1]={ [1]={ limit={ @@ -2787,7 +2819,32 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [116]={ + [117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} fissure" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} fissures" + } + }, + stats={ + [1]="base_number_of_fissures" + } + }, + [118]={ [1]={ [1]={ limit={ @@ -2812,7 +2869,7 @@ return { [1]="base_number_of_pain_offerings_allowed" } }, - [117]={ + [119]={ [1]={ [1]={ limit={ @@ -2837,7 +2894,7 @@ return { [1]="base_number_of_power_offerings_allowed" } }, - [118]={ + [120]={ [1]={ [1]={ limit={ @@ -2862,7 +2919,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [119]={ + [121]={ [1]={ [1]={ limit={ @@ -2887,7 +2944,7 @@ return { [1]="base_number_of_skeletal_constructs_allowed" } }, - [120]={ + [122]={ [1]={ [1]={ limit={ @@ -2916,7 +2973,7 @@ return { [1]="base_poison_duration_+%" } }, - [121]={ + [123]={ [1]={ [1]={ limit={ @@ -2945,7 +3002,7 @@ return { [1]="base_projectile_speed_+%" } }, - [122]={ + [124]={ [1]={ [1]={ limit={ @@ -2961,7 +3018,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [123]={ + [125]={ [1]={ [1]={ limit={ @@ -2977,7 +3034,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [124]={ + [126]={ [1]={ [1]={ limit={ @@ -2993,7 +3050,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [125]={ + [127]={ [1]={ [1]={ limit={ @@ -3022,7 +3079,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [126]={ + [128]={ [1]={ [1]={ limit={ @@ -3051,7 +3108,7 @@ return { [1]="base_reservation_+%" } }, - [127]={ + [129]={ [1]={ [1]={ limit={ @@ -3080,7 +3137,23 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [128]={ + [130]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Skill cannot cause Meta Skills to generate Energy" + } + }, + stats={ + [1]="base_skill_cannot_generate_energy" + } + }, + [131]={ [1]={ [1]={ limit={ @@ -3109,7 +3182,7 @@ return { [1]="base_stun_duration_+%" } }, - [129]={ + [132]={ [1]={ [1]={ limit={ @@ -3125,7 +3198,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [130]={ + [133]={ [1]={ [1]={ limit={ @@ -3154,7 +3227,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [131]={ + [134]={ [1]={ [1]={ [1]={ @@ -3174,7 +3247,7 @@ return { [1]="base_weapon_trap_total_rotation_%" } }, - [132]={ + [135]={ [1]={ [1]={ limit={ @@ -3190,7 +3263,7 @@ return { [1]="berserk_base_rage_loss_per_second" } }, - [133]={ + [136]={ [1]={ [1]={ limit={ @@ -3215,7 +3288,7 @@ return { [1]="bladefall_blade_left_in_ground_for_every_X_volleys" } }, - [134]={ + [137]={ [1]={ [1]={ limit={ @@ -3240,7 +3313,7 @@ return { [1]="bladefall_number_of_volleys" } }, - [135]={ + [138]={ [1]={ [1]={ limit={ @@ -3269,7 +3342,7 @@ return { [1]="blades_left_in_ground_+%_final_if_not_hand_cast" } }, - [136]={ + [139]={ [1]={ [1]={ limit={ @@ -3285,7 +3358,7 @@ return { [1]="blasphemy_base_spirit_reservation_per_socketed_curse" } }, - [137]={ + [140]={ [1]={ [1]={ limit={ @@ -3314,7 +3387,7 @@ return { [1]="blind_duration_+%" } }, - [138]={ + [141]={ [1]={ [1]={ limit={ @@ -3330,7 +3403,7 @@ return { [1]="blood_spears_additional_number_of_spears_if_changed_stance_recently" } }, - [139]={ + [142]={ [1]={ [1]={ limit={ @@ -3359,7 +3432,7 @@ return { [1]="blood_spears_base_number_of_spears" } }, - [140]={ + [143]={ [1]={ [1]={ limit={ @@ -3388,7 +3461,7 @@ return { [1]="blood_spears_damage_+%_final_in_blood_stance" } }, - [141]={ + [144]={ [1]={ [1]={ limit={ @@ -3409,7 +3482,7 @@ return { [2]="bone_spear_maximum_added_attack_physical_damage_taken" } }, - [142]={ + [145]={ [1]={ [1]={ limit={ @@ -3430,7 +3503,7 @@ return { [2]="bone_spear_maximum_damage_threshold" } }, - [143]={ + [146]={ [1]={ [1]={ limit={ @@ -3459,7 +3532,7 @@ return { [1]="burn_damage_+%" } }, - [144]={ + [147]={ [1]={ [1]={ limit={ @@ -3484,7 +3557,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [145]={ + [148]={ [1]={ [1]={ limit={ @@ -3500,7 +3573,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [146]={ + [149]={ [1]={ [1]={ limit={ @@ -3516,7 +3589,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [147]={ + [150]={ [1]={ [1]={ limit={ @@ -3541,7 +3614,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [148]={ + [151]={ [1]={ [1]={ limit={ @@ -3566,7 +3639,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [149]={ + [152]={ [1]={ [1]={ limit={ @@ -3582,7 +3655,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [150]={ + [153]={ [1]={ [1]={ limit={ @@ -3607,7 +3680,7 @@ return { [1]="chance_to_scorch_%" } }, - [151]={ + [154]={ [1]={ [1]={ limit={ @@ -3636,7 +3709,7 @@ return { [1]="chaos_damage_+%" } }, - [152]={ + [155]={ [1]={ [1]={ limit={ @@ -3665,7 +3738,7 @@ return { [1]="chill_duration_+%" } }, - [153]={ + [156]={ [1]={ [1]={ limit={ @@ -3694,7 +3767,7 @@ return { [1]="chill_effect_+%" } }, - [154]={ + [157]={ [1]={ [1]={ limit={ @@ -3723,7 +3796,7 @@ return { [1]="circle_of_power_skill_cost_mana_cost_+%" } }, - [155]={ + [158]={ [1]={ [1]={ limit={ @@ -3752,7 +3825,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [156]={ + [159]={ [1]={ [1]={ limit={ @@ -3781,7 +3854,7 @@ return { [1]="cold_damage_+%" } }, - [157]={ + [160]={ [1]={ [1]={ limit={ @@ -3797,7 +3870,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [158]={ + [161]={ [1]={ [1]={ limit={ @@ -3826,7 +3899,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [159]={ + [162]={ [1]={ [1]={ limit={ @@ -3855,7 +3928,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [160]={ + [163]={ [1]={ [1]={ limit={ @@ -3880,7 +3953,7 @@ return { [1]="contagion_spread_on_hit_affected_enemy_%" } }, - [161]={ + [164]={ [1]={ [1]={ limit={ @@ -3909,7 +3982,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [162]={ + [165]={ [1]={ [1]={ limit={ @@ -3938,7 +4011,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [163]={ + [166]={ [1]={ [1]={ limit={ @@ -3954,7 +4027,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [164]={ + [167]={ [1]={ [1]={ limit={ @@ -3983,7 +4056,7 @@ return { [1]="cremation_fires_projectiles_faster_+%_final" } }, - [165]={ + [168]={ [1]={ [1]={ limit={ @@ -4012,7 +4085,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [166]={ + [169]={ [1]={ [1]={ limit={ @@ -4028,7 +4101,7 @@ return { [1]="critical_multiplier_+%_per_100_max_es_on_shield" } }, - [167]={ + [170]={ [1]={ [1]={ limit={ @@ -4057,7 +4130,7 @@ return { [1]="critical_strike_chance_+%" } }, - [168]={ + [171]={ [1]={ [1]={ limit={ @@ -4073,7 +4146,7 @@ return { [1]="curse_ignores_curse_limit" } }, - [169]={ + [172]={ [1]={ [1]={ limit={ @@ -4102,7 +4175,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [170]={ + [173]={ [1]={ [1]={ limit={ @@ -4131,7 +4204,7 @@ return { [1]="damage_over_time_+%" } }, - [171]={ + [174]={ [1]={ [1]={ limit={ @@ -4160,7 +4233,7 @@ return { [1]="damage_+%" } }, - [172]={ + [175]={ [1]={ [1]={ limit={ @@ -4189,7 +4262,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [173]={ + [176]={ [1]={ [1]={ limit={ @@ -4218,7 +4291,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [174]={ + [177]={ [1]={ [1]={ limit={ @@ -4247,7 +4320,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [175]={ + [178]={ [1]={ [1]={ limit={ @@ -4276,7 +4349,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [176]={ + [179]={ [1]={ [1]={ limit={ @@ -4305,7 +4378,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [177]={ + [180]={ [1]={ [1]={ limit={ @@ -4334,7 +4407,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [178]={ + [181]={ [1]={ [1]={ limit={ @@ -4363,7 +4436,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [179]={ + [182]={ [1]={ [1]={ limit={ @@ -4392,7 +4465,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [180]={ + [183]={ [1]={ [1]={ limit={ @@ -4421,7 +4494,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [181]={ + [184]={ [1]={ [1]={ limit={ @@ -4450,7 +4523,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [182]={ + [185]={ [1]={ [1]={ limit={ @@ -4466,7 +4539,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [183]={ + [186]={ [1]={ [1]={ [1]={ @@ -4486,7 +4559,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [184]={ + [187]={ [1]={ [1]={ [1]={ @@ -4506,7 +4579,7 @@ return { [1]="display_base_intensity_loss" } }, - [185]={ + [188]={ [1]={ [1]={ limit={ @@ -4522,7 +4595,7 @@ return { [1]="display_consume_corpse_storage_limit" } }, - [186]={ + [189]={ [1]={ [1]={ limit={ @@ -4538,7 +4611,7 @@ return { [1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed" } }, - [187]={ + [190]={ [1]={ [1]={ limit={ @@ -4554,7 +4627,7 @@ return { [1]="divine_tempest_base_number_of_nearby_enemies_to_zap" } }, - [188]={ + [191]={ [1]={ [1]={ limit={ @@ -4570,7 +4643,7 @@ return { [1]="dot_multiplier_+" } }, - [189]={ + [192]={ [1]={ [1]={ limit={ @@ -4599,7 +4672,7 @@ return { [1]="elemental_damage_+%" } }, - [190]={ + [193]={ [1]={ [1]={ limit={ @@ -4711,7 +4784,7 @@ return { [2]="empower_barrage_number_of_barrage_repeats_per_frenzy_charge" } }, - [191]={ + [194]={ [1]={ [1]={ [1]={ @@ -4766,7 +4839,7 @@ return { [2]="quality_display_barrage_is_gem" } }, - [192]={ + [195]={ [1]={ [1]={ limit={ @@ -4782,7 +4855,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [193]={ + [196]={ [1]={ [1]={ limit={ @@ -4807,7 +4880,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [194]={ + [197]={ [1]={ [1]={ limit={ @@ -4823,7 +4896,7 @@ return { [1]="faster_bleed_%" } }, - [195]={ + [198]={ [1]={ [1]={ limit={ @@ -4852,7 +4925,7 @@ return { [1]="faster_burn_%" } }, - [196]={ + [199]={ [1]={ [1]={ limit={ @@ -4868,7 +4941,7 @@ return { [1]="faster_poison_%" } }, - [197]={ + [200]={ [1]={ [1]={ limit={ @@ -4897,7 +4970,7 @@ return { [1]="fire_damage_+%" } }, - [198]={ + [201]={ [1]={ [1]={ limit={ @@ -4926,7 +4999,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [199]={ + [202]={ [1]={ [1]={ limit={ @@ -4947,7 +5020,7 @@ return { [2]="flame_link_maximum_fire_damage" } }, - [200]={ + [203]={ [1]={ [1]={ limit={ @@ -4963,7 +5036,7 @@ return { [1]="flame_link_added_fire_damage_from_life_%" } }, - [201]={ + [204]={ [1]={ [1]={ limit={ @@ -4992,7 +5065,7 @@ return { [1]="fortify_duration_+%" } }, - [202]={ + [205]={ [1]={ [1]={ limit={ @@ -5021,7 +5094,7 @@ return { [1]="freeze_duration_+%" } }, - [203]={ + [206]={ [1]={ [1]={ limit={ @@ -5037,7 +5110,7 @@ return { [1]="freezing_bolt_chill_maximum_magnitude_override" } }, - [204]={ + [207]={ [1]={ [1]={ limit={ @@ -5062,7 +5135,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [205]={ + [208]={ [1]={ [1]={ limit={ @@ -5087,7 +5160,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [206]={ + [209]={ [1]={ [1]={ limit={ @@ -5103,7 +5176,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [207]={ + [210]={ [1]={ [1]={ limit={ @@ -5124,7 +5197,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [208]={ + [211]={ [1]={ [1]={ limit={ @@ -5145,7 +5218,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [209]={ + [212]={ [1]={ [1]={ limit={ @@ -5166,7 +5239,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [210]={ + [213]={ [1]={ [1]={ limit={ @@ -5187,7 +5260,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [211]={ + [214]={ [1]={ [1]={ limit={ @@ -5208,7 +5281,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [212]={ + [215]={ [1]={ [1]={ limit={ @@ -5237,7 +5310,7 @@ return { [1]="golem_buff_effect_+%" } }, - [213]={ + [216]={ [1]={ [1]={ [1]={ @@ -5257,7 +5330,7 @@ return { [1]="herald_of_thunder_bolt_base_frequency" } }, - [214]={ + [217]={ [1]={ [1]={ limit={ @@ -5286,7 +5359,7 @@ return { [1]="hit_damage_+%" } }, - [215]={ + [218]={ [1]={ [1]={ [1]={ @@ -5306,7 +5379,7 @@ return { [1]="hydro_sphere_base_pulse_frequency_ms" } }, - [216]={ + [219]={ [1]={ [1]={ limit={ @@ -5335,7 +5408,7 @@ return { [1]="hydro_sphere_pulse_frequency_+%" } }, - [217]={ + [220]={ [1]={ [1]={ limit={ @@ -5373,7 +5446,7 @@ return { [2]="frozen_locus_stat_suppression" } }, - [218]={ + [221]={ [1]={ [1]={ limit={ @@ -5389,7 +5462,7 @@ return { [1]="ice_ambusher_initial_stack_count" } }, - [219]={ + [222]={ [1]={ [1]={ [1]={ @@ -5409,7 +5482,7 @@ return { [1]="ice_ambusher_stack_decay_rate_ms" } }, - [220]={ + [223]={ [1]={ [1]={ limit={ @@ -5438,7 +5511,7 @@ return { [1]="ignite_duration_+%" } }, - [221]={ + [224]={ [1]={ [1]={ limit={ @@ -5467,7 +5540,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [222]={ + [225]={ [1]={ [1]={ limit={ @@ -5483,7 +5556,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [223]={ + [226]={ [1]={ [1]={ limit={ @@ -5512,7 +5585,7 @@ return { [1]="knockback_distance_+%" } }, - [224]={ + [227]={ [1]={ [1]={ limit={ @@ -5541,7 +5614,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [225]={ + [228]={ [1]={ [1]={ limit={ @@ -5570,7 +5643,7 @@ return { [1]="lightning_damage_+%" } }, - [226]={ + [229]={ [1]={ [1]={ [1]={ @@ -5590,7 +5663,7 @@ return { [1]="lightning_tower_trap_base_interval_duration_ms" } }, - [227]={ + [230]={ [1]={ [1]={ limit={ @@ -5606,7 +5679,7 @@ return { [1]="lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life" } }, - [228]={ + [231]={ [1]={ [1]={ limit={ @@ -5622,7 +5695,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [229]={ + [232]={ [1]={ [1]={ limit={ @@ -5651,7 +5724,7 @@ return { [1]="maim_effect_+%" } }, - [230]={ + [233]={ [1]={ [1]={ limit={ @@ -5672,7 +5745,7 @@ return { [2]="main_hand_weapon_maximum_chaos_damage" } }, - [231]={ + [234]={ [1]={ [1]={ limit={ @@ -5693,7 +5766,7 @@ return { [2]="main_hand_weapon_maximum_cold_damage" } }, - [232]={ + [235]={ [1]={ [1]={ limit={ @@ -5714,7 +5787,7 @@ return { [2]="main_hand_weapon_maximum_fire_damage" } }, - [233]={ + [236]={ [1]={ [1]={ limit={ @@ -5735,7 +5808,7 @@ return { [2]="main_hand_weapon_maximum_lightning_damage" } }, - [234]={ + [237]={ [1]={ [1]={ limit={ @@ -5756,7 +5829,7 @@ return { [2]="main_hand_weapon_maximum_physical_damage" } }, - [235]={ + [238]={ [1]={ [1]={ limit={ @@ -5785,7 +5858,7 @@ return { [1]="mana_gain_per_target" } }, - [236]={ + [239]={ [1]={ [1]={ limit={ @@ -5814,7 +5887,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [237]={ + [240]={ [1]={ [1]={ limit={ @@ -5839,7 +5912,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [238]={ + [241]={ [1]={ [1]={ limit={ @@ -5868,7 +5941,7 @@ return { [1]="melee_damage_+%" } }, - [239]={ + [242]={ [1]={ [1]={ limit={ @@ -5897,7 +5970,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [240]={ + [243]={ [1]={ [1]={ limit={ @@ -5926,7 +5999,7 @@ return { [1]="melee_physical_damage_+%" } }, - [241]={ + [244]={ [1]={ [1]={ limit={ @@ -5955,7 +6028,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [242]={ + [245]={ [1]={ [1]={ limit={ @@ -5984,7 +6057,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [243]={ + [246]={ [1]={ [1]={ limit={ @@ -6013,7 +6086,7 @@ return { [1]="mine_duration_+%" } }, - [244]={ + [247]={ [1]={ [1]={ limit={ @@ -6042,7 +6115,7 @@ return { [1]="mine_laying_speed_+%" } }, - [245]={ + [248]={ [1]={ [1]={ limit={ @@ -6058,7 +6131,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [246]={ + [249]={ [1]={ [1]={ limit={ @@ -6074,7 +6147,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [247]={ + [250]={ [1]={ [1]={ limit={ @@ -6083,30 +6156,30 @@ return { [2]="#" } }, - text="Modifiers to number of Projectiles instead apply to\nthe number of targets Projectile Splits towards" + text="Modifiers to number of Projectiles instead apply to number of targets Pierced" } }, stats={ - [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" + [1]="modifiers_to_number_of_projectiles_instead_apply_to_number_of_targets_projectile_pierces" } }, - [248]={ + [251]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=1 + [1]="#", + [2]="#" } }, - text="Projectile count cannot be modified" + text="Modifiers to number of Projectiles instead apply to\nthe number of targets Projectile Splits towards" } }, stats={ - [1]="modifiers_to_projectile_count_do_not_apply" + [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [249]={ + [252]={ [1]={ [1]={ limit={ @@ -6135,7 +6208,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [250]={ + [253]={ [1]={ [1]={ limit={ @@ -6160,7 +6233,7 @@ return { [1]="number_of_additional_arrows" } }, - [251]={ + [254]={ [1]={ [1]={ limit={ @@ -6194,7 +6267,7 @@ return { [2]="number_of_additional_projectiles" } }, - [252]={ + [255]={ [1]={ [1]={ ["gem_quality"]=true, @@ -6204,7 +6277,7 @@ return { [2]=1 } }, - text="Chains an additional time" + text="Chains {0:+d} time" }, [2]={ ["gem_quality"]=true, @@ -6214,7 +6287,7 @@ return { [2]="#" } }, - text="Chains {0:+d} additional times" + text="Chains {0:+d} times" }, [3]={ limit={ @@ -6239,7 +6312,7 @@ return { [1]="number_of_chains" } }, - [253]={ + [256]={ [1]={ [1]={ limit={ @@ -6264,7 +6337,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [254]={ + [257]={ [1]={ [1]={ limit={ @@ -6289,7 +6362,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [255]={ + [258]={ [1]={ [1]={ limit={ @@ -6314,7 +6387,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [256]={ + [259]={ [1]={ [1]={ limit={ @@ -6339,36 +6412,23 @@ return { [1]="number_of_animated_weapons_allowed" } }, - [257]={ + [260]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" - } - }, - text="Fires {0}% more Projectiles per Steel Shard consumed" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 + [2]=1 } }, - text="Fires {0}% less Projectiles per Steel Shard consumed" + text="Number of Projectiles cannot be modified" } }, stats={ - [1]="number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed" + [1]="number_of_projectiles_cannot_be_modified" } }, - [258]={ + [261]={ [1]={ [1]={ limit={ @@ -6393,7 +6453,7 @@ return { [1]="base_number_of_reapers_allowed" } }, - [259]={ + [262]={ [1]={ [1]={ limit={ @@ -6414,7 +6474,7 @@ return { [2]="off_hand_maximum_added_physical_damage_per_15_shield_armour" } }, - [260]={ + [263]={ [1]={ [1]={ limit={ @@ -6435,28 +6495,7 @@ return { [2]="off_hand_maximum_added_physical_damage_per_5_shield_armour" } }, - [261]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="{0} to {1} Base Off Hand Fire Damage" - } - }, - stats={ - [1]="off_hand_weapon_minimum_fire_damage", - [2]="off_hand_weapon_maximum_fire_damage" - } - }, - [262]={ + [264]={ [1]={ [1]={ [1]={ @@ -6489,7 +6528,7 @@ return { [1]="orb_of_storms_base_bolt_frequency_ms" } }, - [263]={ + [265]={ [1]={ [1]={ [1]={ @@ -6522,7 +6561,7 @@ return { [1]="orb_of_storms_base_channelling_bolt_frequency_ms" } }, - [264]={ + [266]={ [1]={ [1]={ limit={ @@ -6547,7 +6586,7 @@ return { [1]="orb_of_storms_base_maximum_number_of_orbs" } }, - [265]={ + [267]={ [1]={ [1]={ [1]={ @@ -6567,7 +6606,7 @@ return { [1]="phys_cascade_trap_base_interval_duration_ms" } }, - [266]={ + [268]={ [1]={ [1]={ limit={ @@ -6596,7 +6635,7 @@ return { [1]="physical_damage_+%" } }, - [267]={ + [269]={ [1]={ [1]={ limit={ @@ -6625,7 +6664,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [268]={ + [270]={ [1]={ [1]={ limit={ @@ -6641,7 +6680,7 @@ return { [1]="poison_duration_is_skill_duration" } }, - [269]={ + [271]={ [1]={ [1]={ limit={ @@ -6670,32 +6709,7 @@ return { [1]="precision_grants_area_of_effect_+%_final" } }, - [270]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Primary Projectile Chains {0:+d} Time" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Primary Projectile Chains {0:+d} Times" - } - }, - stats={ - [1]="primary_projectile_chains_+" - } - }, - [271]={ + [272]={ [1]={ [1]={ [1]={ @@ -6728,7 +6742,7 @@ return { [1]="prismatic_rain_beam_base_frequency_ms" } }, - [272]={ + [273]={ [1]={ [1]={ limit={ @@ -6737,7 +6751,7 @@ return { [2]=1 } }, - text="Pierces the first target Hit" + text="Pierces {0} target" }, [2]={ limit={ @@ -6746,14 +6760,14 @@ return { [2]="#" } }, - text="Pierces the first {0} targets Hit" + text="Pierces {0} targets" } }, stats={ [1]="projectile_base_number_of_targets_to_pierce" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -6782,12 +6796,22 @@ return { [1]="projectile_damage_+%" } }, - [274]={ + [275]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ - [1]="#", + [1]=1, + [2]="#" + } + }, + text="Projectiles Split towards {0:+d} targets" + }, + [2]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, @@ -6798,7 +6822,7 @@ return { [1]="projectile_number_to_split" } }, - [275]={ + [276]={ [1]={ [1]={ limit={ @@ -6814,7 +6838,7 @@ return { [1]="projectiles_fork" } }, - [276]={ + [277]={ [1]={ [1]={ limit={ @@ -6861,7 +6885,7 @@ return { [2]="projectile_return_%_chance" } }, - [277]={ + [278]={ [1]={ [1]={ limit={ @@ -6882,7 +6906,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [278]={ + [279]={ [1]={ [1]={ limit={ @@ -6907,7 +6931,7 @@ return { [1]="rain_of_arrows_additional_sequences" } }, - [279]={ + [280]={ [1]={ [1]={ limit={ @@ -6923,7 +6947,7 @@ return { [1]="reave_additional_max_stacks" } }, - [280]={ + [281]={ [1]={ [1]={ [1]={ @@ -6948,7 +6972,7 @@ return { [2]="reaver_enrage_decay_rate_increase_+%_final" } }, - [281]={ + [282]={ [1]={ [1]={ limit={ @@ -6964,7 +6988,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [282]={ + [283]={ [1]={ [1]={ limit={ @@ -6980,7 +7004,7 @@ return { [1]="regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [283]={ + [284]={ [1]={ [1]={ limit={ @@ -6996,7 +7020,7 @@ return { [1]="ritual_of_power_maximum_number_of_rituals" } }, - [284]={ + [285]={ [1]={ [1]={ limit={ @@ -7025,7 +7049,7 @@ return { [1]="seismic_trap_frequency_+%" } }, - [285]={ + [286]={ [1]={ [1]={ limit={ @@ -7054,7 +7078,7 @@ return { [1]="shock_duration_+%" } }, - [286]={ + [287]={ [1]={ [1]={ limit={ @@ -7070,7 +7094,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_energy_shield" } }, - [287]={ + [288]={ [1]={ [1]={ limit={ @@ -7086,7 +7110,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_life" } }, - [288]={ + [289]={ [1]={ [1]={ limit={ @@ -7115,7 +7139,7 @@ return { [1]="skill_cross_slash_triggered_summon_+_wolves_if_rare" } }, - [289]={ + [290]={ [1]={ [1]={ limit={ @@ -7144,7 +7168,7 @@ return { [1]="skill_cross_slash_triggered_summon_+_wolves_if_unique" } }, - [290]={ + [291]={ [1]={ [1]={ [1]={ @@ -7164,7 +7188,7 @@ return { [1]="skill_raging_spirit_per_x_radius" } }, - [291]={ + [292]={ [1]={ [1]={ limit={ @@ -7189,7 +7213,7 @@ return { [1]="skill_raging_spirits_max_per_action" } }, - [292]={ + [293]={ [1]={ [1]={ limit={ @@ -7205,7 +7229,7 @@ return { [1]="snapping_adder_chance_to_release_projectile_when_hit_%" } }, - [293]={ + [294]={ [1]={ [1]={ limit={ @@ -7226,7 +7250,7 @@ return { [2]="soulfeast_take_%_maximum_energy_shield_as_chaos_damage" } }, - [294]={ + [295]={ [1]={ [1]={ [1]={ @@ -7259,7 +7283,7 @@ return { [1]="spear_wall_cm_per_spear" } }, - [295]={ + [296]={ [1]={ [1]={ limit={ @@ -7284,7 +7308,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [296]={ + [297]={ [1]={ [1]={ [1]={ @@ -7304,7 +7328,7 @@ return { [1]="spell_cast_time_added_to_cooldown_if_triggered" } }, - [297]={ + [298]={ [1]={ [1]={ limit={ @@ -7333,7 +7357,23 @@ return { [1]="spell_damage_+%" } }, - [298]={ + [299]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spirit Vessel deals {0}% more Damage per different socketed Skill" + } + }, + stats={ + [1]="spirit_vessel_damage_+%_final_per_skill_socketed_in_meta_gem" + } + }, + [300]={ [1]={ [1]={ limit={ @@ -7349,7 +7389,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [299]={ + [301]={ [1]={ [1]={ limit={ @@ -7380,7 +7420,7 @@ return { [4]="storm_blade_maximum_lightning_damage_from_es_%" } }, - [300]={ + [302]={ [1]={ [1]={ limit={ @@ -7396,7 +7436,7 @@ return { [1]="storm_blade_damage_+%_final_with_two_hand_weapon" } }, - [301]={ + [303]={ [1]={ [1]={ limit={ @@ -7412,7 +7452,7 @@ return { [1]="active_skill_display_does_intensity_stuff" } }, - [302]={ + [304]={ [1]={ [1]={ limit={ @@ -7441,7 +7481,7 @@ return { [1]="support_trap_damage_+%_final" } }, - [303]={ + [305]={ [1]={ [1]={ limit={ @@ -7470,7 +7510,7 @@ return { [1]="tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback" } }, - [304]={ + [306]={ [1]={ [1]={ limit={ @@ -7486,7 +7526,7 @@ return { [1]="tempest_bell_physical_damage_%_as_elemental_per_ailment" } }, - [305]={ + [307]={ [1]={ [1]={ limit={ @@ -7515,7 +7555,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [306]={ + [308]={ [1]={ [1]={ limit={ @@ -7540,7 +7580,7 @@ return { [1]="tornado_shot_num_of_secondary_projectiles" } }, - [307]={ + [309]={ [1]={ [1]={ [1]={ @@ -7658,7 +7698,7 @@ return { [2]="skill_added_attack_time_by_distance_ms" } }, - [308]={ + [310]={ [1]={ [1]={ [1]={ @@ -7691,7 +7731,7 @@ return { [1]="total_cast_time_+_ms" } }, - [309]={ + [311]={ [1]={ [1]={ limit={ @@ -7707,7 +7747,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [310]={ + [312]={ [1]={ [1]={ [1]={ @@ -7727,7 +7767,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [311]={ + [313]={ [1]={ [1]={ limit={ @@ -7756,7 +7796,7 @@ return { [1]="trap_damage_+%" } }, - [312]={ + [314]={ [1]={ [1]={ limit={ @@ -7785,7 +7825,7 @@ return { [1]="trap_duration_+%" } }, - [313]={ + [315]={ [1]={ [1]={ limit={ @@ -7814,7 +7854,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [314]={ + [316]={ [1]={ [1]={ limit={ @@ -7843,7 +7883,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [315]={ + [317]={ [1]={ [1]={ limit={ @@ -7859,7 +7899,7 @@ return { [1]="unearth_base_corpse_level" } }, - [316]={ + [318]={ [1]={ [1]={ limit={ @@ -7884,7 +7924,7 @@ return { [1]="vaal_lightning_arrow_number_of_redirects" } }, - [317]={ + [319]={ [1]={ [1]={ limit={ @@ -7900,7 +7940,7 @@ return { [1]="vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects" } }, - [318]={ + [320]={ [1]={ [1]={ [1]={ @@ -7933,7 +7973,7 @@ return { [1]="vaal_storm_call_base_delay_ms" } }, - [319]={ + [321]={ [1]={ [1]={ limit={ @@ -7949,7 +7989,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [320]={ + [322]={ [1]={ [1]={ limit={ @@ -7965,7 +8005,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [321]={ + [323]={ [1]={ [1]={ limit={ @@ -7990,7 +8030,7 @@ return { [1]="volcanic_fissure_base_maximum_number_of_fissures" } }, - [322]={ + [324]={ [1]={ [1]={ limit={ @@ -8019,7 +8059,7 @@ return { [1]="warcry_speed_+%" } }, - [323]={ + [325]={ [1]={ [1]={ limit={ @@ -8048,7 +8088,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [324]={ + [326]={ [1]={ [1]={ limit={ @@ -8077,7 +8117,7 @@ return { [1]="weapon_trap_rotation_speed_+%_if_dual_wielding" } }, - [325]={ + [327]={ [1]={ [1]={ [1]={ @@ -8099,11 +8139,11 @@ return { }, ["accuracy_rating"]=46, ["accuracy_rating_+%"]=47, - ["active_skill_additional_projectiles_description_mode"]=251, - ["active_skill_area_damage_+%_final"]=35, - ["active_skill_attack_damage_+%_final"]=13, + ["active_skill_additional_projectiles_description_mode"]=254, + ["active_skill_area_damage_+%_final"]=37, + ["active_skill_attack_damage_+%_final"]=15, ["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=48, - ["active_skill_attack_damage_final_permyriad"]=15, + ["active_skill_attack_damage_final_permyriad"]=17, ["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=49, ["active_skill_base_cold_damage_%_to_convert_to_fire"]=50, ["active_skill_base_fire_damage_%_to_convert_to_chaos"]=51, @@ -8120,19 +8160,19 @@ return { ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=61, ["active_skill_cast_speed_+%_final"]=62, ["active_skill_critical_strike_chance_+%_final"]=63, - ["active_skill_damage_+%_final"]=16, - ["active_skill_display_does_intensity_stuff"]=301, + ["active_skill_damage_+%_final"]=18, + ["active_skill_display_does_intensity_stuff"]=303, ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=56, ["active_skill_has_%_standard_scaling_attack_damage"]=2, - ["active_skill_minion_damage_+%_final"]=17, - ["active_skill_minion_physical_damage_+%_final"]=18, - ["active_skill_physical_damage_+%_final"]=19, + ["active_skill_minion_damage_+%_final"]=19, + ["active_skill_minion_physical_damage_+%_final"]=20, + ["active_skill_physical_damage_+%_final"]=21, ["active_skill_poison_duration_+%_final"]=64, ["active_skill_quality_damage_+%_final"]=65, ["active_skill_quality_duration_+%_final"]=66, ["add_power_charge_on_kill_%_chance"]=67, ["additional_base_critical_strike_chance"]=68, - ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=43, + ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=44, ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=69, ["alt_attack_container_main_hand_base_weapon_attack_duration_ms"]=70, ["alt_attack_container_main_hand_weapon_critical_strike_chance"]=71, @@ -8162,11 +8202,11 @@ return { ["attack_minimum_added_fire_damage"]=85, ["attack_minimum_added_lightning_damage"]=86, ["attack_minimum_added_physical_damage"]=87, - ["attack_skills_additional_ballista_totems_allowed"]=38, + ["attack_skills_additional_ballista_totems_allowed"]=39, ["attack_speed_+%"]=88, ["attack_speed_+%_granted_from_skill"]=89, ["attacks_chance_to_blind_on_hit_%"]=90, - ["aura_effect_+%"]=28, + ["aura_effect_+%"]=30, ["avoid_interruption_while_using_this_skill_%"]=91, ["ball_lightning_base_hit_frequency_ms"]=92, ["base_added_cooldown_count"]=93, @@ -8174,7 +8214,7 @@ return { ["base_blackhole_tick_rate_ms"]=95, ["base_blade_vortex_hit_rate_ms"]=96, ["base_bleed_duration_+%"]=97, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=31, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=33, ["base_cast_speed_+%"]=98, ["base_chance_to_freeze_%"]=99, ["base_chance_to_shock_%"]=100, @@ -8189,276 +8229,279 @@ return { ["base_life_reservation_+%"]=109, ["base_mana_cost_-%"]=110, ["base_mana_reservation_+%"]=111, - ["base_melee_attack_repeat_count"]=44, ["base_mine_detonation_time_ms"]=112, - ["base_number_of_arrows"]=113, - ["base_number_of_bone_offerings_allowed"]=114, - ["base_number_of_champions_of_light_allowed"]=115, - ["base_number_of_golems_allowed"]=37, - ["base_number_of_pain_offerings_allowed"]=116, - ["base_number_of_power_offerings_allowed"]=117, - ["base_number_of_raging_spirits_allowed"]=26, - ["base_number_of_reapers_allowed"]=258, - ["base_number_of_relics_allowed"]=118, - ["base_number_of_skeletal_constructs_allowed"]=119, - ["base_number_of_skeletons_allowed"]=23, - ["base_number_of_spectres_allowed"]=22, - ["base_number_of_totems_allowed"]=39, - ["base_number_of_zombies_allowed"]=21, - ["base_poison_duration_+%"]=120, - ["base_projectile_speed_+%"]=121, - ["base_reduce_enemy_cold_resistance_%"]=122, - ["base_reduce_enemy_fire_resistance_%"]=123, - ["base_reduce_enemy_lightning_resistance_%"]=124, - ["base_reservation_+%"]=126, - ["base_reservation_efficiency_+%"]=125, - ["base_sigil_repeat_frequency_ms"]=41, - ["base_skill_area_of_effect_+%"]=127, - ["base_spell_repeat_count"]=36, - ["base_stun_duration_+%"]=128, - ["base_use_life_in_place_of_mana"]=129, - ["base_weapon_trap_rotation_speed_+%"]=130, - ["base_weapon_trap_total_rotation_%"]=131, - ["berserk_base_rage_loss_per_second"]=132, - ["bladefall_blade_left_in_ground_for_every_X_volleys"]=133, - ["bladefall_number_of_volleys"]=134, - ["blades_left_in_ground_+%_final_if_not_hand_cast"]=135, - ["blasphemy_base_spirit_reservation_per_socketed_curse"]=136, - ["blind_duration_+%"]=137, - ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=138, - ["blood_spears_base_number_of_spears"]=139, - ["blood_spears_damage_+%_final_in_blood_stance"]=140, - ["bone_spear_maximum_added_attack_physical_damage_taken"]=141, - ["bone_spear_maximum_damage_threshold"]=142, - ["bone_spear_minimum_added_attack_physical_damage_taken"]=141, - ["bone_spear_minimum_damage_threshold"]=142, - ["buff_duration_+%"]=32, - ["burn_damage_+%"]=143, - ["chance_%_when_poison_to_also_poison_another_enemy"]=144, - ["chance_to_double_stun_duration_%"]=145, - ["chance_to_fork_extra_projectile_%"]=146, - ["chance_to_fortify_on_melee_hit_+%"]=147, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=148, - ["chance_to_place_an_additional_mine_%"]=149, - ["chance_to_scorch_%"]=150, - ["chaos_damage_+%"]=151, - ["chill_duration_+%"]=152, - ["chill_effect_+%"]=153, - ["circle_of_power_skill_cost_mana_cost_+%"]=154, - ["cold_ailment_effect_+%"]=155, - ["cold_damage_+%"]=156, - ["consecrated_ground_area_+%"]=159, - ["consecrated_ground_effect_+%"]=157, - ["consecrated_ground_enemy_damage_taken_+%"]=158, - ["contagion_spread_on_hit_affected_enemy_%"]=160, - ["conversation_trap_converted_enemy_damage_+%"]=161, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=162, - ["corpse_erruption_base_maximum_number_of_geyers"]=163, - ["cremation_fires_projectiles_faster_+%_final"]=164, - ["critical_hit_damaging_ailment_effect_+%"]=165, - ["critical_multiplier_+%_per_100_max_es_on_shield"]=166, - ["critical_strike_chance_+%"]=167, - ["curse_ignores_curse_limit"]=168, - ["cyclone_max_stages_movement_speed_+%"]=169, - ["damage_+%"]=171, - ["damage_+%_on_full_energy_shield"]=178, - ["damage_+%_per_endurance_charge"]=172, - ["damage_+%_per_frenzy_charge"]=173, - ["damage_+%_per_power_charge"]=174, - ["damage_+%_vs_enemies_on_full_life"]=175, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=176, - ["damage_+%_vs_frozen_enemies"]=177, - ["damage_+%_when_on_full_life"]=179, - ["damage_+%_when_on_low_life"]=180, - ["damage_over_time_+%"]=170, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=181, - ["damage_vs_enemies_on_low_life_+%"]=182, - ["dash_grants_phasing_after_use_ms"]=183, - ["display_base_intensity_loss"]=184, - ["display_consume_corpse_storage_limit"]=185, - ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=186, - ["display_minion_base_maximum_life"]=34, - ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=187, - ["dot_multiplier_+"]=188, - ["elemental_damage_+%"]=189, - ["empower_barrage_base_number_of_barrage_repeats"]=190, - ["empower_barrage_damage_-%_final_with_repeated_projectiles"]=191, - ["empower_barrage_number_of_barrage_repeats_per_frenzy_charge"]=190, - ["enemy_phys_reduction_%_penalty_vs_hit"]=192, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=193, - ["eye_of_winter_base_explosion_shards"]=40, - ["faster_bleed_%"]=194, - ["faster_burn_%"]=195, - ["faster_poison_%"]=196, - ["fire_damage_+%"]=197, - ["firestorm_explosion_area_of_effect_+%"]=198, - ["flame_link_added_fire_damage_from_life_%"]=200, - ["flame_link_maximum_fire_damage"]=199, - ["flame_link_minimum_fire_damage"]=199, - ["fortify_duration_+%"]=201, - ["freeze_duration_+%"]=202, - ["freezing_bolt_chill_maximum_magnitude_override"]=203, - ["frozen_locus_stat_suppression"]=217, - ["galvanic_field_beam_frequency_+%"]=204, - ["galvanic_field_maximum_number_of_spheres"]=205, - ["global_chance_to_blind_on_hit_%"]=206, - ["global_maximum_added_chaos_damage"]=207, - ["global_maximum_added_cold_damage"]=208, - ["global_maximum_added_fire_damage"]=209, - ["global_maximum_added_lightning_damage"]=210, - ["global_maximum_added_physical_damage"]=211, - ["global_minimum_added_chaos_damage"]=207, - ["global_minimum_added_cold_damage"]=208, - ["global_minimum_added_fire_damage"]=209, - ["global_minimum_added_lightning_damage"]=210, - ["global_minimum_added_physical_damage"]=211, - ["golem_buff_effect_+%"]=212, - ["herald_of_thunder_bolt_base_frequency"]=213, - ["hit_damage_+%"]=214, - ["hydro_sphere_base_pulse_frequency_ms"]=215, - ["hydro_sphere_pulse_frequency_+%"]=216, - ["ice_ambusher_damage_+%_final_per_stack"]=217, - ["ice_ambusher_initial_stack_count"]=218, - ["ice_ambusher_stack_decay_rate_ms"]=219, - ["ignite_duration_+%"]=220, - ["intensity_loss_frequency_while_moving_+%"]=221, - ["kinetic_wand_base_number_of_zig_zags"]=222, - ["knockback_distance_+%"]=223, - ["lightning_ailment_effect_+%"]=224, - ["lightning_damage_+%"]=225, - ["lightning_tower_trap_base_interval_duration_ms"]=226, - ["lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life"]=227, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=228, - ["maim_effect_+%"]=229, - ["main_hand_weapon_maximum_chaos_damage"]=230, - ["main_hand_weapon_maximum_cold_damage"]=231, - ["main_hand_weapon_maximum_fire_damage"]=232, - ["main_hand_weapon_maximum_lightning_damage"]=233, - ["main_hand_weapon_maximum_physical_damage"]=234, - ["main_hand_weapon_minimum_chaos_damage"]=230, - ["main_hand_weapon_minimum_cold_damage"]=231, - ["main_hand_weapon_minimum_fire_damage"]=232, - ["main_hand_weapon_minimum_lightning_damage"]=233, - ["main_hand_weapon_minimum_physical_damage"]=234, - ["mana_gain_per_target"]=235, - ["maximum_life_+%_for_corpses_you_create"]=236, - ["melee_attack_number_of_spirit_strikes"]=237, - ["melee_damage_+%"]=238, - ["melee_damage_vs_bleeding_enemies_+%"]=239, - ["melee_physical_damage_+%"]=240, - ["mine_detonation_radius_+%"]=241, - ["mine_detonation_speed_+%"]=242, - ["mine_duration_+%"]=243, - ["mine_laying_speed_+%"]=244, - ["minion_chance_to_deal_double_damage_%"]=245, - ["minion_elemental_resistance_%"]=246, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=247, - ["modifiers_to_projectile_count_do_not_apply"]=248, - ["non_curse_aura_effect_+%"]=249, - ["number_of_additional_arrows"]=250, - ["number_of_additional_projectiles"]=251, - ["number_of_additional_remote_mines_allowed"]=253, - ["number_of_additional_traps_allowed"]=254, - ["number_of_additional_traps_to_throw"]=255, - ["number_of_animated_weapons_allowed"]=256, - ["number_of_chains"]=252, - ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=257, - ["number_of_wolves_allowed"]=24, - ["off_hand_base_weapon_attack_duration_ms"]=7, + ["base_modifiers_to_number_of_projectiles_instead_apply_to_repeats"]=113, + ["base_number_of_arrows"]=114, + ["base_number_of_bone_offerings_allowed"]=115, + ["base_number_of_champions_of_light_allowed"]=116, + ["base_number_of_fissures"]=117, + ["base_number_of_golems_allowed"]=38, + ["base_number_of_pain_offerings_allowed"]=118, + ["base_number_of_power_offerings_allowed"]=119, + ["base_number_of_raging_spirits_allowed"]=28, + ["base_number_of_reapers_allowed"]=261, + ["base_number_of_relics_allowed"]=120, + ["base_number_of_skeletal_constructs_allowed"]=121, + ["base_number_of_skeletons_allowed"]=25, + ["base_number_of_spectres_allowed"]=24, + ["base_number_of_totems_allowed"]=40, + ["base_number_of_zombies_allowed"]=23, + ["base_poison_duration_+%"]=122, + ["base_projectile_speed_+%"]=123, + ["base_reduce_enemy_cold_resistance_%"]=124, + ["base_reduce_enemy_fire_resistance_%"]=125, + ["base_reduce_enemy_lightning_resistance_%"]=126, + ["base_reservation_+%"]=128, + ["base_reservation_efficiency_+%"]=127, + ["base_sigil_repeat_frequency_ms"]=42, + ["base_skill_area_of_effect_+%"]=129, + ["base_skill_cannot_generate_energy"]=130, + ["base_stun_duration_+%"]=131, + ["base_use_life_in_place_of_mana"]=132, + ["base_weapon_trap_rotation_speed_+%"]=133, + ["base_weapon_trap_total_rotation_%"]=134, + ["berserk_base_rage_loss_per_second"]=135, + ["bladefall_blade_left_in_ground_for_every_X_volleys"]=136, + ["bladefall_number_of_volleys"]=137, + ["blades_left_in_ground_+%_final_if_not_hand_cast"]=138, + ["blasphemy_base_spirit_reservation_per_socketed_curse"]=139, + ["blind_duration_+%"]=140, + ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=141, + ["blood_spears_base_number_of_spears"]=142, + ["blood_spears_damage_+%_final_in_blood_stance"]=143, + ["bone_spear_maximum_added_attack_physical_damage_taken"]=144, + ["bone_spear_maximum_damage_threshold"]=145, + ["bone_spear_minimum_added_attack_physical_damage_taken"]=144, + ["bone_spear_minimum_damage_threshold"]=145, + ["buff_duration_+%"]=34, + ["burn_damage_+%"]=146, + ["chance_%_when_poison_to_also_poison_another_enemy"]=147, + ["chance_to_double_stun_duration_%"]=148, + ["chance_to_fork_extra_projectile_%"]=149, + ["chance_to_fortify_on_melee_hit_+%"]=150, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=151, + ["chance_to_place_an_additional_mine_%"]=152, + ["chance_to_scorch_%"]=153, + ["chaos_damage_+%"]=154, + ["chill_duration_+%"]=155, + ["chill_effect_+%"]=156, + ["circle_of_power_skill_cost_mana_cost_+%"]=157, + ["cold_ailment_effect_+%"]=158, + ["cold_damage_+%"]=159, + ["consecrated_ground_area_+%"]=162, + ["consecrated_ground_effect_+%"]=160, + ["consecrated_ground_enemy_damage_taken_+%"]=161, + ["contagion_spread_on_hit_affected_enemy_%"]=163, + ["conversation_trap_converted_enemy_damage_+%"]=164, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=165, + ["corpse_erruption_base_maximum_number_of_geyers"]=166, + ["cremation_fires_projectiles_faster_+%_final"]=167, + ["critical_hit_damaging_ailment_effect_+%"]=168, + ["critical_multiplier_+%_per_100_max_es_on_shield"]=169, + ["critical_strike_chance_+%"]=170, + ["curse_ignores_curse_limit"]=171, + ["cyclone_max_stages_movement_speed_+%"]=172, + ["damage_+%"]=174, + ["damage_+%_on_full_energy_shield"]=181, + ["damage_+%_per_endurance_charge"]=175, + ["damage_+%_per_frenzy_charge"]=176, + ["damage_+%_per_power_charge"]=177, + ["damage_+%_vs_enemies_on_full_life"]=178, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=179, + ["damage_+%_vs_frozen_enemies"]=180, + ["damage_+%_when_on_full_life"]=182, + ["damage_+%_when_on_low_life"]=183, + ["damage_over_time_+%"]=173, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=184, + ["damage_vs_enemies_on_low_life_+%"]=185, + ["dash_grants_phasing_after_use_ms"]=186, + ["display_base_intensity_loss"]=187, + ["display_consume_corpse_storage_limit"]=188, + ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=189, + ["display_minion_base_maximum_life"]=36, + ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=190, + ["dot_multiplier_+"]=191, + ["elemental_damage_+%"]=192, + ["empower_barrage_base_number_of_barrage_repeats"]=193, + ["empower_barrage_damage_-%_final_with_repeated_projectiles"]=194, + ["empower_barrage_number_of_barrage_repeats_per_frenzy_charge"]=193, + ["enemy_phys_reduction_%_penalty_vs_hit"]=195, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=196, + ["eye_of_winter_base_explosion_shards"]=41, + ["faster_bleed_%"]=197, + ["faster_burn_%"]=198, + ["faster_poison_%"]=199, + ["fire_damage_+%"]=200, + ["firestorm_explosion_area_of_effect_+%"]=201, + ["flame_link_added_fire_damage_from_life_%"]=203, + ["flame_link_maximum_fire_damage"]=202, + ["flame_link_minimum_fire_damage"]=202, + ["fortify_duration_+%"]=204, + ["freeze_duration_+%"]=205, + ["freezing_bolt_chill_maximum_magnitude_override"]=206, + ["frozen_locus_stat_suppression"]=220, + ["galvanic_field_beam_frequency_+%"]=207, + ["galvanic_field_maximum_number_of_spheres"]=208, + ["global_chance_to_blind_on_hit_%"]=209, + ["global_maximum_added_chaos_damage"]=210, + ["global_maximum_added_cold_damage"]=211, + ["global_maximum_added_fire_damage"]=212, + ["global_maximum_added_lightning_damage"]=213, + ["global_maximum_added_physical_damage"]=214, + ["global_minimum_added_chaos_damage"]=210, + ["global_minimum_added_cold_damage"]=211, + ["global_minimum_added_fire_damage"]=212, + ["global_minimum_added_lightning_damage"]=213, + ["global_minimum_added_physical_damage"]=214, + ["golem_buff_effect_+%"]=215, + ["herald_of_thunder_bolt_base_frequency"]=216, + ["hit_damage_+%"]=217, + ["hydro_sphere_base_pulse_frequency_ms"]=218, + ["hydro_sphere_pulse_frequency_+%"]=219, + ["ice_ambusher_damage_+%_final_per_stack"]=220, + ["ice_ambusher_initial_stack_count"]=221, + ["ice_ambusher_stack_decay_rate_ms"]=222, + ["ignite_duration_+%"]=223, + ["intensity_loss_frequency_while_moving_+%"]=224, + ["kinetic_wand_base_number_of_zig_zags"]=225, + ["knockback_distance_+%"]=226, + ["lightning_ailment_effect_+%"]=227, + ["lightning_damage_+%"]=228, + ["lightning_tower_trap_base_interval_duration_ms"]=229, + ["lingering_illusion_clone_base_maximum_life_%_of_owner_maximum_life"]=230, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=231, + ["maim_effect_+%"]=232, + ["main_hand_weapon_maximum_chaos_damage"]=233, + ["main_hand_weapon_maximum_cold_damage"]=234, + ["main_hand_weapon_maximum_fire_damage"]=235, + ["main_hand_weapon_maximum_lightning_damage"]=236, + ["main_hand_weapon_maximum_physical_damage"]=237, + ["main_hand_weapon_minimum_chaos_damage"]=233, + ["main_hand_weapon_minimum_cold_damage"]=234, + ["main_hand_weapon_minimum_fire_damage"]=235, + ["main_hand_weapon_minimum_lightning_damage"]=236, + ["main_hand_weapon_minimum_physical_damage"]=237, + ["mana_gain_per_target"]=238, + ["maximum_life_+%_for_corpses_you_create"]=239, + ["melee_attack_number_of_spirit_strikes"]=240, + ["melee_damage_+%"]=241, + ["melee_damage_vs_bleeding_enemies_+%"]=242, + ["melee_physical_damage_+%"]=243, + ["mine_detonation_radius_+%"]=244, + ["mine_detonation_speed_+%"]=245, + ["mine_duration_+%"]=246, + ["mine_laying_speed_+%"]=247, + ["minion_chance_to_deal_double_damage_%"]=248, + ["minion_elemental_resistance_%"]=249, + ["modifiers_to_number_of_projectiles_instead_apply_to_number_of_targets_projectile_pierces"]=250, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=251, + ["non_curse_aura_effect_+%"]=252, + ["number_of_additional_arrows"]=253, + ["number_of_additional_projectiles"]=254, + ["number_of_additional_remote_mines_allowed"]=256, + ["number_of_additional_traps_allowed"]=257, + ["number_of_additional_traps_to_throw"]=258, + ["number_of_animated_weapons_allowed"]=259, + ["number_of_chains"]=255, + ["number_of_projectiles_cannot_be_modified"]=260, + ["number_of_wolves_allowed"]=26, + ["off_hand_base_weapon_attack_duration_ms"]=8, ["off_hand_maximum_added_fire_damage_per_15_shield_armour"]=4, ["off_hand_maximum_added_fire_damage_per_15_shield_evasion"]=5, - ["off_hand_maximum_added_physical_damage_per_15_shield_armour"]=259, + ["off_hand_maximum_added_physical_damage_per_15_shield_armour"]=262, ["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=6, - ["off_hand_maximum_added_physical_damage_per_5_shield_armour"]=260, + ["off_hand_maximum_added_physical_damage_per_5_shield_armour"]=263, ["off_hand_minimum_added_fire_damage_per_15_shield_armour"]=4, ["off_hand_minimum_added_fire_damage_per_15_shield_evasion"]=5, - ["off_hand_minimum_added_physical_damage_per_15_shield_armour"]=259, + ["off_hand_minimum_added_physical_damage_per_15_shield_armour"]=262, ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=6, - ["off_hand_minimum_added_physical_damage_per_5_shield_armour"]=260, - ["off_hand_weapon_maximum_fire_damage"]=261, + ["off_hand_minimum_added_physical_damage_per_5_shield_armour"]=263, + ["off_hand_weapon_maximum_cold_damage"]=9, + ["off_hand_weapon_maximum_fire_damage"]=7, ["off_hand_weapon_maximum_physical_damage"]=3, - ["off_hand_weapon_minimum_fire_damage"]=261, + ["off_hand_weapon_minimum_cold_damage"]=9, + ["off_hand_weapon_minimum_fire_damage"]=7, ["off_hand_weapon_minimum_physical_damage"]=3, - ["offering_skill_effect_duration_per_corpse"]=30, - ["orb_of_storms_base_bolt_frequency_ms"]=262, - ["orb_of_storms_base_channelling_bolt_frequency_ms"]=263, - ["orb_of_storms_base_maximum_number_of_orbs"]=264, + ["offering_skill_effect_duration_per_corpse"]=32, + ["orb_of_storms_base_bolt_frequency_ms"]=264, + ["orb_of_storms_base_channelling_bolt_frequency_ms"]=265, + ["orb_of_storms_base_maximum_number_of_orbs"]=266, parent="gem_stat_descriptions", - ["phys_cascade_trap_base_interval_duration_ms"]=265, - ["physical_damage_+%"]=266, - ["physical_damage_+%_per_frenzy_charge"]=20, - ["placing_traps_cooldown_recovery_+%"]=267, - ["poison_duration_is_skill_duration"]=268, - ["precision_grants_area_of_effect_+%_final"]=269, - ["primary_projectile_chains_+"]=270, - ["prismatic_rain_beam_base_frequency_ms"]=271, - ["projectile_base_number_of_targets_to_pierce"]=272, - ["projectile_damage_+%"]=273, - ["projectile_number_to_split"]=274, - ["projectile_return_%_chance"]=276, - ["projectiles_fork"]=275, - ["projectiles_return"]=276, + ["phys_cascade_trap_base_interval_duration_ms"]=267, + ["physical_damage_+%"]=268, + ["physical_damage_+%_per_frenzy_charge"]=22, + ["placing_traps_cooldown_recovery_+%"]=269, + ["poison_duration_is_skill_duration"]=270, + ["precision_grants_area_of_effect_+%_final"]=271, + ["prismatic_rain_beam_base_frequency_ms"]=272, + ["projectile_base_number_of_targets_to_pierce"]=273, + ["projectile_damage_+%"]=274, + ["projectile_number_to_split"]=275, + ["projectile_return_%_chance"]=277, + ["projectiles_fork"]=276, + ["projectiles_return"]=277, ["quality_display_arsonist_is_gem"]=80, - ["quality_display_barrage_is_gem"]=191, - ["quick_guard_damage_absorb_limit"]=277, - ["quick_guard_damage_absorbed_%"]=277, - ["rain_of_arrows_additional_sequences"]=278, - ["reave_additional_max_stacks"]=279, - ["reaver_enrage_base_life_%_degen_per_minute"]=280, - ["reaver_enrage_decay_rate_increase_+%_final"]=280, - ["reduce_enemy_chaos_resistance_%"]=281, - ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=282, - ["ritual_of_power_maximum_number_of_rituals"]=283, - ["seismic_trap_frequency_+%"]=284, - ["shock_duration_+%"]=285, - ["sigil_repeat_frequency_+%"]=42, - ["skill_added_attack_time_by_distance_ms"]=307, - ["skill_base_chaos_damage_%_maximum_energy_shield"]=286, - ["skill_base_chaos_damage_%_maximum_life"]=287, - ["skill_cross_slash_triggered_summon_+_wolves_if_rare"]=288, - ["skill_cross_slash_triggered_summon_+_wolves_if_unique"]=289, - ["skill_effect_duration_+%"]=33, - ["skill_raging_spirit_per_x_radius"]=290, - ["skill_raging_spirits_max_per_action"]=291, - ["snapping_adder_chance_to_release_projectile_when_hit_%"]=292, - ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=293, - ["soulfeast_take_%_maximum_life_as_chaos_damage"]=293, - ["spear_wall_cm_per_spear"]=294, - ["spectral_spiral_weapon_base_number_of_bounces"]=295, - ["spell_cast_time_added_to_cooldown_if_triggered"]=296, - ["spell_damage_+%"]=297, - ["static_strike_number_of_beam_targets"]=298, - ["storm_blade_damage_+%_final_with_two_hand_weapon"]=300, - ["storm_blade_maximum_lightning_damage"]=299, - ["storm_blade_maximum_lightning_damage_from_es_%"]=299, - ["storm_blade_minimum_lightning_damage"]=299, - ["storm_blade_minimum_lightning_damage_from_es_%"]=299, - ["supplementary_stat_container_attack_speed_+%_final"]=14, - ["support_trap_damage_+%_final"]=302, - ["tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback"]=303, - ["tempest_bell_physical_damage_%_as_elemental_per_ailment"]=304, - ["tornado_maximum_number_of_hits"]=29, - ["tornado_only_primary_duration_+%"]=305, - ["tornado_shot_num_of_secondary_projectiles"]=306, - ["total_attack_time_+_ms"]=307, - ["total_cast_time_+_ms"]=308, - ["totems_explode_on_death_for_%_life_as_physical"]=309, - ["totems_regenerate_%_life_per_minute"]=310, - ["trap_damage_+%"]=311, - ["trap_duration_+%"]=312, - ["trap_throwing_speed_+%"]=313, - ["trap_trigger_radius_+%"]=314, - ["unearth_base_corpse_level"]=315, + ["quality_display_barrage_is_gem"]=194, + ["quick_guard_damage_absorb_limit"]=278, + ["quick_guard_damage_absorbed_%"]=278, + ["rain_of_arrows_additional_sequences"]=279, + ["reave_additional_max_stacks"]=280, + ["reaver_enrage_base_life_%_degen_per_minute"]=281, + ["reaver_enrage_decay_rate_increase_+%_final"]=281, + ["reduce_enemy_chaos_resistance_%"]=282, + ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=283, + ["ritual_of_power_maximum_number_of_rituals"]=284, + ["seismic_trap_frequency_+%"]=285, + ["shock_duration_+%"]=286, + ["sigil_repeat_frequency_+%"]=43, + ["skill_added_attack_time_by_distance_ms"]=309, + ["skill_base_chaos_damage_%_maximum_energy_shield"]=287, + ["skill_base_chaos_damage_%_maximum_life"]=288, + ["skill_cross_slash_triggered_summon_+_wolves_if_rare"]=289, + ["skill_cross_slash_triggered_summon_+_wolves_if_unique"]=290, + ["skill_effect_duration_+%"]=35, + ["skill_raging_spirit_per_x_radius"]=291, + ["skill_raging_spirits_max_per_action"]=292, + ["snapping_adder_chance_to_release_projectile_when_hit_%"]=293, + ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=294, + ["soulfeast_take_%_maximum_life_as_chaos_damage"]=294, + ["spear_wall_cm_per_spear"]=295, + ["spectral_spiral_weapon_base_number_of_bounces"]=296, + ["spell_cast_time_added_to_cooldown_if_triggered"]=297, + ["spell_damage_+%"]=298, + ["spirit_vessel_damage_+%_final_per_skill_socketed_in_meta_gem"]=299, + ["static_strike_number_of_beam_targets"]=300, + ["storm_blade_damage_+%_final_with_two_hand_weapon"]=302, + ["storm_blade_maximum_lightning_damage"]=301, + ["storm_blade_maximum_lightning_damage_from_es_%"]=301, + ["storm_blade_minimum_lightning_damage"]=301, + ["storm_blade_minimum_lightning_damage_from_es_%"]=301, + ["supplementary_stat_container_attack_speed_+%_final"]=16, + ["support_trap_damage_+%_final"]=304, + ["tempest_bell_area_of_effect_+%_final_per_1_unit_of_knockback"]=305, + ["tempest_bell_physical_damage_%_as_elemental_per_ailment"]=306, + ["tornado_maximum_number_of_hits"]=31, + ["tornado_only_primary_duration_+%"]=307, + ["tornado_shot_num_of_secondary_projectiles"]=308, + ["total_attack_time_+_ms"]=309, + ["total_cast_time_+_ms"]=310, + ["totems_explode_on_death_for_%_life_as_physical"]=311, + ["totems_regenerate_%_life_per_minute"]=312, + ["trap_damage_+%"]=313, + ["trap_duration_+%"]=314, + ["trap_throwing_speed_+%"]=315, + ["trap_trigger_radius_+%"]=316, + ["unearth_base_corpse_level"]=317, ["vaal_animate_weapon_minimum_level_requirement"]=45, - ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=317, - ["vaal_lightning_arrow_number_of_redirects"]=316, - ["vaal_storm_call_base_delay_ms"]=318, - ["virtual_number_of_wolves_allowed"]=25, - ["volatile_dead_base_number_of_corpses_to_consume"]=319, - ["volatile_dead_max_cores_allowed"]=320, - ["volcanic_fissure_base_maximum_number_of_fissures"]=321, - ["warcry_speed_+%"]=322, - ["weapon_elemental_damage_+%"]=323, - ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=324, - ["weapon_trap_total_rotation_%_if_dual_wielding"]=325 + ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=319, + ["vaal_lightning_arrow_number_of_redirects"]=318, + ["vaal_storm_call_base_delay_ms"]=320, + ["virtual_number_of_wolves_allowed"]=27, + ["volatile_dead_base_number_of_corpses_to_consume"]=321, + ["volatile_dead_max_cores_allowed"]=322, + ["volcanic_fissure_base_maximum_number_of_fissures"]=323, + ["warcry_speed_+%"]=324, + ["weapon_elemental_damage_+%"]=325, + ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=326, + ["weapon_trap_total_rotation_%_if_dual_wielding"]=327 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua b/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua index 42a06e92a4..2133d7be39 100644 --- a/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua +++ b/src/Data/StatDescriptions/advanced_mod_stat_descriptions.lua @@ -1051,7 +1051,7 @@ return { [2]="#" } }, - text="{0}% increased Defences from Equipped Shield per 10 Devotion" + text="{0}% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, [2]={ [1]={ @@ -1064,11 +1064,11 @@ return { [2]=-1 } }, - text="{0}% reduced Defences from Equipped Shield per 10 Devotion" + text="{0}% reduced Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" } }, stats={ - [1]="shield_defences_+%_per_10_devotion" + [1]="shield_armour_evasion_energy_shield_+%_per_10_devotion" } }, [17]={ @@ -1149,7 +1149,7 @@ return { parent="stat_descriptions", ["self_curse_duration_+%_per_10_devotion"]=14, ["self_elemental_status_duration_-%_per_10_devotion"]=15, - ["shield_defences_+%_per_10_devotion"]=16, + ["shield_armour_evasion_energy_shield_+%_per_10_devotion"]=16, ["sigil_damage_+%_per_10_devotion"]=17, ["totem_damage_+%_per_10_devotion"]=18 } \ 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 5a1eec13ba..0a9bc3fea8 100644 --- a/src/Data/StatDescriptions/gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/gem_stat_descriptions.lua @@ -51,6 +51,230 @@ return { } }, [4]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to level of Supported Skills if exactly one other Support is modifying them" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+_if_one_other_support" + } + }, + [5]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to level of Supported Skills if exactly two other Supports are modifying them" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+_if_two_other_supports" + } + }, + [6]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Skill Gems" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+" + } + }, + [7]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d} to level of Supported Skills if no other Supports are modifying them" + } + }, + stats={ + [1]="supported_active_skill_gem_level_+_if_no_other_supports" + } + }, + [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Aura Skill Gems" + } + }, + stats={ + [1]="supported_aura_skill_gem_level_+" + } + }, + [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Chaos Skills" + } + }, + stats={ + [1]="supported_chaos_skill_gem_level_+" + } + }, + [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Cold Skills" + } + }, + stats={ + [1]="supported_cold_skill_gem_level_+" + } + }, + [11]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Curse Skill Gems" + } + }, + stats={ + [1]="supported_curse_skill_gem_level_+" + } + }, + [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Elemental Skill Gems" + } + }, + stats={ + [1]="supported_elemental_skill_gem_level_+" + } + }, + [13]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Fire Skills" + } + }, + stats={ + [1]="supported_fire_skill_gem_level_+" + } + }, + [14]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Lightning Skills" + } + }, + stats={ + [1]="supported_lightning_skill_gem_level_+" + } + }, + [15]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Minion Skills" + } + }, + stats={ + [1]="supported_minion_skill_gem_level_+" + } + }, + [16]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Physical Skills" + } + }, + stats={ + [1]="supported_physical_skill_gem_level_+" + } + }, + [17]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Supported Strike Skill Gems" + } + }, + stats={ + [1]="supported_strike_skill_gem_level_+" + } + }, + [18]={ [1]={ [1]={ limit={ @@ -79,7 +303,7 @@ return { [1]="support_melee_physical_damage_+%_final" } }, - [5]={ + [19]={ [1]={ [1]={ limit={ @@ -100,7 +324,7 @@ return { [2]="curse_supported_by_blasphemy" } }, - [6]={ + [20]={ [1]={ [1]={ limit={ @@ -129,7 +353,7 @@ return { [1]="support_ancestor_slam_totem_damage_+%_final" } }, - [7]={ + [21]={ [1]={ [1]={ limit={ @@ -158,7 +382,7 @@ return { [1]="support_echo_damage_+%_final" } }, - [8]={ + [22]={ [1]={ [1]={ limit={ @@ -187,7 +411,7 @@ return { [1]="support_elemental_proliferation_damage_+%_final" } }, - [9]={ + [23]={ [1]={ [1]={ limit={ @@ -216,7 +440,7 @@ return { [1]="support_damage_while_on_full_life_+%_final" } }, - [10]={ + [24]={ [1]={ [1]={ limit={ @@ -245,7 +469,7 @@ return { [1]="support_attack_skills_elemental_damage_+%_final" } }, - [11]={ + [25]={ [1]={ [1]={ limit={ @@ -274,7 +498,7 @@ return { [1]="support_weapon_elemental_damage_+%_final" } }, - [12]={ + [26]={ [1]={ [1]={ limit={ @@ -303,7 +527,7 @@ return { [1]="support_area_concentrate_area_damage_+%_final" } }, - [13]={ + [27]={ [1]={ [1]={ limit={ @@ -332,7 +556,7 @@ return { [1]="support_barrage_damage_+%_final" } }, - [14]={ + [28]={ [1]={ [1]={ limit={ @@ -361,7 +585,7 @@ return { [1]="support_multiple_damage_+%_final" } }, - [15]={ + [29]={ [1]={ [1]={ limit={ @@ -390,7 +614,7 @@ return { [1]="support_rain_projectile_damage_+%_final" } }, - [16]={ + [30]={ [1]={ [1]={ limit={ @@ -419,7 +643,7 @@ return { [1]="support_lesser_multiple_projectile_damage_+%_final" } }, - [17]={ + [31]={ [1]={ [1]={ limit={ @@ -448,7 +672,7 @@ return { [1]="support_gem_mine_damage_+%_final" } }, - [18]={ + [32]={ [1]={ [1]={ limit={ @@ -464,7 +688,7 @@ return { [1]="support_static_charge_charge_gain_per_metre" } }, - [19]={ + [33]={ [1]={ [1]={ limit={ @@ -493,7 +717,7 @@ return { [1]="support_totem_damage_+%_final" } }, - [20]={ + [34]={ [1]={ [1]={ limit={ @@ -522,7 +746,7 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [21]={ + [35]={ [1]={ [1]={ limit={ @@ -551,7 +775,7 @@ return { [1]="support_cast_on_crit_spell_damage_+%_final" } }, - [22]={ + [36]={ [1]={ [1]={ limit={ @@ -580,7 +804,7 @@ return { [1]="support_cast_on_melee_kill_spell_damage_+%_final" } }, - [23]={ + [37]={ [1]={ [1]={ limit={ @@ -609,7 +833,7 @@ return { [1]="support_cast_while_channelling_triggered_skill_damage_+%_final" } }, - [24]={ + [38]={ [1]={ [1]={ limit={ @@ -638,7 +862,7 @@ return { [1]="support_trigger_link_damage_+%_final" } }, - [25]={ + [39]={ [1]={ [1]={ limit={ @@ -667,7 +891,7 @@ return { [1]="base_cost_+%" } }, - [26]={ + [40]={ [1]={ [1]={ limit={ @@ -696,9 +920,19 @@ return { [1]="base_life_cost_+%" } }, - [27]={ + [41]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% reduced Mana Cost" + }, + [2]={ limit={ [1]={ [1]=1, @@ -707,7 +941,7 @@ return { }, text="Supported Skills have {0}% reduced Mana Cost" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -725,7 +959,7 @@ return { [1]="base_mana_cost_-%" } }, - [28]={ + [42]={ [1]={ [1]={ limit={ @@ -750,7 +984,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [29]={ + [43]={ [1]={ [1]={ limit={ @@ -766,7 +1000,7 @@ return { [1]="no_spirit_strikes" } }, - [30]={ + [44]={ [1]={ [1]={ limit={ @@ -782,7 +1016,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [31]={ + [45]={ [1]={ [1]={ limit={ @@ -811,7 +1045,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [32]={ + [46]={ [1]={ [1]={ limit={ @@ -840,7 +1074,7 @@ return { [1]="support_concentrated_effect_skill_area_of_effect_+%_final" } }, - [33]={ + [47]={ [1]={ [1]={ limit={ @@ -869,7 +1103,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [34]={ + [48]={ [1]={ [1]={ limit={ @@ -898,7 +1132,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [35]={ + [49]={ [1]={ [1]={ limit={ @@ -927,7 +1161,7 @@ return { [1]="aura_effect_+%" } }, - [36]={ + [50]={ [1]={ [1]={ limit={ @@ -956,7 +1190,7 @@ return { [1]="support_multiple_projectiles_critical_strike_chance_+%_final" } }, - [37]={ + [51]={ [1]={ [1]={ limit={ @@ -972,7 +1206,7 @@ return { [1]="base_skill_cost_life_instead_of_mana" } }, - [38]={ + [52]={ [1]={ [1]={ limit={ @@ -988,7 +1222,7 @@ return { [1]="base_skill_reserve_life_instead_of_mana" } }, - [39]={ + [53]={ [1]={ [1]={ limit={ @@ -1004,7 +1238,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [40]={ + [54]={ [1]={ [1]={ limit={ @@ -1020,7 +1254,7 @@ return { [1]="projectiles_rain" } }, - [41]={ + [55]={ [1]={ [1]={ [1]={ @@ -1053,7 +1287,7 @@ return { [1]="support_ignite_proliferation_radius" } }, - [42]={ + [56]={ [1]={ [1]={ limit={ @@ -1069,7 +1303,7 @@ return { [1]="support_static_charge_maximum_charge" } }, - [43]={ + [57]={ [1]={ [1]={ limit={ @@ -1085,7 +1319,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [44]={ + [58]={ [1]={ [1]={ limit={ @@ -1101,7 +1335,7 @@ return { [1]="keystone_point_blank" } }, - [45]={ + [59]={ [1]={ [1]={ limit={ @@ -1135,7 +1369,7 @@ return { [2]="number_of_mines_to_place" } }, - [46]={ + [60]={ [1]={ [1]={ limit={ @@ -1160,7 +1394,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [47]={ + [61]={ [1]={ [1]={ limit={ @@ -1176,7 +1410,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [48]={ + [62]={ [1]={ [1]={ limit={ @@ -1192,7 +1426,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [49]={ + [63]={ [1]={ [1]={ limit={ @@ -1208,7 +1442,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [50]={ + [64]={ [1]={ [1]={ limit={ @@ -1224,7 +1458,7 @@ return { [1]="throw_traps_in_circle_radius" } }, - [51]={ + [65]={ [1]={ [1]={ [1]={ @@ -1300,7 +1534,7 @@ return { [2]="quality_display_base_totem_duration_is_gem" } }, - [52]={ + [66]={ [1]={ [1]={ limit={ @@ -1325,7 +1559,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [53]={ + [67]={ [1]={ [1]={ [1]={ @@ -1345,7 +1579,7 @@ return { [1]="base_trap_duration" } }, - [54]={ + [68]={ [1]={ [1]={ [1]={ @@ -1365,7 +1599,7 @@ return { [1]="base_mine_duration" } }, - [55]={ + [69]={ [1]={ [1]={ [1]={ @@ -1385,7 +1619,7 @@ return { [1]="support_remote_mine_2_base_mine_duration" } }, - [56]={ + [70]={ [1]={ [1]={ limit={ @@ -1401,7 +1635,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [57]={ + [71]={ [1]={ [1]={ limit={ @@ -1417,7 +1651,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [58]={ + [72]={ [1]={ [1]={ limit={ @@ -1433,7 +1667,7 @@ return { [1]="summon_2_totems" } }, - [59]={ + [73]={ [1]={ [1]={ limit={ @@ -1458,7 +1692,7 @@ return { [1]="base_number_of_traps_allowed" } }, - [60]={ + [74]={ [1]={ [1]={ limit={ @@ -1483,7 +1717,7 @@ return { [1]="base_number_of_remote_mines_allowed" } }, - [61]={ + [75]={ [1]={ [1]={ limit={ @@ -1512,7 +1746,7 @@ return { [1]="trap_duration_+%" } }, - [62]={ + [76]={ [1]={ [1]={ limit={ @@ -1541,7 +1775,7 @@ return { [1]="mine_duration_+%" } }, - [63]={ + [77]={ [1]={ [1]={ limit={ @@ -1566,7 +1800,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [64]={ + [78]={ [1]={ [1]={ limit={ @@ -1595,7 +1829,7 @@ return { [1]="blind_duration_+%" } }, - [65]={ + [79]={ [1]={ [1]={ limit={ @@ -1624,7 +1858,7 @@ return { [1]="critical_strike_chance_+%" } }, - [66]={ + [80]={ [1]={ [1]={ limit={ @@ -1653,7 +1887,7 @@ return { [1]="support_controlled_destruction_critical_strike_chance_+%_final" } }, - [67]={ + [81]={ [1]={ [1]={ limit={ @@ -1682,7 +1916,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [68]={ + [82]={ [1]={ [1]={ limit={ @@ -1698,7 +1932,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [69]={ + [83]={ [1]={ [1]={ limit={ @@ -1714,7 +1948,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [70]={ + [84]={ [1]={ [1]={ limit={ @@ -1730,7 +1964,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [71]={ + [85]={ [1]={ [1]={ limit={ @@ -1746,7 +1980,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [72]={ + [86]={ [1]={ [1]={ limit={ @@ -1762,13 +1996,9 @@ return { [1]="number_of_chains" } }, - [73]={ + [87]={ [1]={ [1]={ - [1]={ - k="multiply_by_one_hundred", - v=1 - }, limit={ [1]={ [1]=1, @@ -1779,10 +2009,10 @@ return { } }, stats={ - [1]="chains_hit_X_more_times" + [1]="support_dominus_grasp_chain_count_+%_final" } }, - [74]={ + [88]={ [1]={ [1]={ limit={ @@ -1798,7 +2028,7 @@ return { [1]="projectile_number_to_split" } }, - [75]={ + [89]={ [1]={ [1]={ limit={ @@ -1814,18 +2044,38 @@ return { [1]="projectiles_fork" } }, - [76]={ + [90]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]=1, [2]=1 } }, - text="Projectiles from Supported Skills Fork an additional Time" + text="Forks an additional Time" }, [2]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Forks {0} additional Times" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Projectiles from Supported Skills Fork an additional Time" + }, + [4]={ limit={ [1]={ [1]="#", @@ -1839,7 +2089,7 @@ return { [1]="number_of_additional_forks_base" } }, - [77]={ + [91]={ [1]={ [1]={ limit={ @@ -1886,7 +2136,7 @@ return { [2]="projectile_return_%_chance" } }, - [78]={ + [92]={ [1]={ [1]={ limit={ @@ -1915,7 +2165,7 @@ return { [1]="support_chain_hit_damage_+%_final" } }, - [79]={ + [93]={ [1]={ [1]={ limit={ @@ -1944,7 +2194,7 @@ return { [1]="support_spirit_strike_damage_+%_final" } }, - [80]={ + [94]={ [1]={ [1]={ limit={ @@ -1973,7 +2223,7 @@ return { [1]="support_split_projectile_damage_+%_final" } }, - [81]={ + [95]={ [1]={ [1]={ limit={ @@ -2002,7 +2252,7 @@ return { [1]="support_fork_projectile_damage_+%_final" } }, - [82]={ + [96]={ [1]={ [1]={ limit={ @@ -2040,7 +2290,7 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [83]={ + [97]={ [1]={ [1]={ limit={ @@ -2069,7 +2319,7 @@ return { [1]="support_debilitate_poison_effect_+%_final" } }, - [84]={ + [98]={ [1]={ [1]={ limit={ @@ -2098,7 +2348,7 @@ return { [1]="support_fork_forked_projectile_damage_+%_final" } }, - [85]={ + [99]={ [1]={ [1]={ limit={ @@ -2127,7 +2377,7 @@ return { [1]="support_poison_poison_effect_+%_final" } }, - [86]={ + [100]={ [1]={ [1]={ limit={ @@ -2156,7 +2406,7 @@ return { [1]="support_return_projectile_damage_+%_final" } }, - [87]={ + [101]={ [1]={ [1]={ limit={ @@ -2185,7 +2435,7 @@ return { [1]="support_void_manipulation_chaos_damage_+%_final" } }, - [88]={ + [102]={ [1]={ [1]={ limit={ @@ -2214,7 +2464,7 @@ return { [1]="support_controlled_destruction_spell_damage_+%_final" } }, - [89]={ + [103]={ [1]={ [1]={ limit={ @@ -2243,7 +2493,7 @@ return { [1]="support_efficacy_spell_damage_+%_final" } }, - [90]={ + [104]={ [1]={ [1]={ limit={ @@ -2272,7 +2522,7 @@ return { [1]="support_rapid_decay_damage_over_time_+%_final" } }, - [91]={ + [105]={ [1]={ [1]={ limit={ @@ -2301,7 +2551,7 @@ return { [1]="support_efficacy_damage_over_time_+%_final" } }, - [92]={ + [106]={ [1]={ [1]={ limit={ @@ -2330,7 +2580,7 @@ return { [1]="support_additional_totem_damage_+%_final" } }, - [93]={ + [107]={ [1]={ [1]={ limit={ @@ -2359,7 +2609,7 @@ return { [1]="support_better_ailments_damaging_ailment_effect_+%_final" } }, - [94]={ + [108]={ [1]={ [1]={ limit={ @@ -2388,7 +2638,7 @@ return { [1]="support_better_ailments_hit_damage_+%_final" } }, - [95]={ + [109]={ [1]={ [1]={ limit={ @@ -2417,7 +2667,7 @@ return { [1]="support_brutality_physical_damage_+%_final" } }, - [96]={ + [110]={ [1]={ [1]={ limit={ @@ -2446,7 +2696,7 @@ return { [1]="support_chance_to_ignite_fire_damage_+%_final" } }, - [97]={ + [111]={ [1]={ [1]={ limit={ @@ -2475,7 +2725,7 @@ return { [1]="support_cruelty_hit_damage_+%_final" } }, - [98]={ + [112]={ [1]={ [1]={ limit={ @@ -2504,7 +2754,7 @@ return { [1]="support_gem_elemental_damage_+%_final" } }, - [99]={ + [113]={ [1]={ [1]={ limit={ @@ -2533,7 +2783,7 @@ return { [1]="support_ignite_prolif_ignite_effect_+%_final" } }, - [100]={ + [114]={ [1]={ [1]={ limit={ @@ -2562,7 +2812,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [101]={ + [115]={ [1]={ [1]={ limit={ @@ -2578,7 +2828,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [102]={ + [116]={ [1]={ [1]={ limit={ @@ -2607,7 +2857,7 @@ return { [1]="support_trap_and_mine_damage_+%_final" } }, - [103]={ + [117]={ [1]={ [1]={ limit={ @@ -2636,7 +2886,7 @@ return { [1]="base_life_gain_per_target" } }, - [104]={ + [118]={ [1]={ [1]={ limit={ @@ -2665,7 +2915,7 @@ return { [1]="mana_gain_per_target" } }, - [105]={ + [119]={ [1]={ [1]={ limit={ @@ -2694,7 +2944,7 @@ return { [1]="support_melee_splash_damage_+%_final" } }, - [106]={ + [120]={ [1]={ [1]={ limit={ @@ -2710,7 +2960,7 @@ return { [1]="melee_splash" } }, - [107]={ + [121]={ [1]={ [1]={ limit={ @@ -2765,48 +3015,7 @@ return { [2]="quality_display_melee_splash_is_gem" } }, - [108]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills Repeat {0} additional times" - } - }, - stats={ - [1]="base_melee_attack_repeat_count" - } - }, - [109]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Supported Skills Repeat an additional time" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Supported Skills Repeat an additional {0} times" - } - }, - stats={ - [1]="base_spell_repeat_count" - } - }, - [110]={ + [122]={ [1]={ [1]={ limit={ @@ -2815,7 +3024,7 @@ return { [2]=1 } }, - text="Supported Spells Echo once" + text="Supported Spells Echo {0} time" }, [2]={ limit={ @@ -2831,7 +3040,7 @@ return { [1]="support_spell_echo_number_of_echo_cascades" } }, - [111]={ + [123]={ [1]={ [1]={ limit={ @@ -2860,7 +3069,7 @@ return { [1]="support_multicast_cast_speed_+%_final" } }, - [112]={ + [124]={ [1]={ [1]={ limit={ @@ -2889,7 +3098,7 @@ return { [1]="support_multiple_attacks_melee_attack_speed_+%_final" } }, - [113]={ + [125]={ [1]={ [1]={ limit={ @@ -2918,7 +3127,7 @@ return { [1]="support_multiple_attack_damage_+%_final" } }, - [114]={ + [126]={ [1]={ [1]={ limit={ @@ -2947,7 +3156,7 @@ return { [1]="support_trap_damage_+%_final" } }, - [115]={ + [127]={ [1]={ [1]={ limit={ @@ -2976,7 +3185,7 @@ return { [1]="support_multithrow_damage_+%_final" } }, - [116]={ + [128]={ [1]={ [1]={ limit={ @@ -3005,7 +3214,7 @@ return { [1]="cast_on_death_damage_+%_final_while_dead" } }, - [117]={ + [129]={ [1]={ [1]={ limit={ @@ -3034,7 +3243,7 @@ return { [1]="cast_on_damage_taken_damage_+%_final" } }, - [118]={ + [130]={ [1]={ [1]={ limit={ @@ -3050,7 +3259,7 @@ return { [1]="summon_fire_resistance_+" } }, - [119]={ + [131]={ [1]={ [1]={ limit={ @@ -3066,7 +3275,7 @@ return { [1]="summon_cold_resistance_+" } }, - [120]={ + [132]={ [1]={ [1]={ limit={ @@ -3082,7 +3291,7 @@ return { [1]="summon_lightning_resistance_+" } }, - [121]={ + [133]={ [1]={ [1]={ limit={ @@ -3107,7 +3316,7 @@ return { [1]="apply_linked_curses_on_hit_%" } }, - [122]={ + [134]={ [1]={ [1]={ limit={ @@ -3123,7 +3332,7 @@ return { [1]="cannot_cast_curses" } }, - [123]={ + [135]={ [1]={ [1]={ limit={ @@ -3148,7 +3357,7 @@ return { [1]="cast_linked_spells_on_attack_crit_%" } }, - [124]={ + [136]={ [1]={ [1]={ limit={ @@ -3173,7 +3382,7 @@ return { [1]="cast_linked_spells_on_melee_kill_%" } }, - [125]={ + [137]={ [1]={ [1]={ limit={ @@ -3189,7 +3398,23 @@ return { [1]="trigger_vicious_hex_explosion_when_curse_ends" } }, - [126]={ + [138]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Spells Trigger Fragment Self" + } + }, + stats={ + [1]="support_tricksters_shard_trigger_fractured_self_on_cast" + } + }, + [139]={ [1]={ [1]={ limit={ @@ -3210,7 +3435,7 @@ return { [2]="spell_only_castable_on_death" } }, - [127]={ + [140]={ [1]={ [1]={ limit={ @@ -3226,7 +3451,7 @@ return { [1]="cast_on_death_%" } }, - [128]={ + [141]={ [1]={ [1]={ limit={ @@ -3242,7 +3467,7 @@ return { [1]="cast_on_stunned_%" } }, - [129]={ + [142]={ [1]={ [1]={ limit={ @@ -3267,7 +3492,7 @@ return { [1]="spellslinger_trigger_on_wand_attack_%" } }, - [130]={ + [143]={ [1]={ [1]={ limit={ @@ -3310,7 +3535,7 @@ return { [3]="cast_on_damage_taken_threshold" } }, - [131]={ + [144]={ [1]={ [1]={ [1]={ @@ -3330,7 +3555,7 @@ return { [1]="cast_while_channelling_time_ms" } }, - [132]={ + [145]={ [1]={ [1]={ [1]={ @@ -3350,7 +3575,7 @@ return { [1]="base_chaos_damage_to_deal_per_minute" } }, - [133]={ + [146]={ [1]={ [1]={ [1]={ @@ -3370,7 +3595,7 @@ return { [1]="base_fire_damage_to_deal_per_minute" } }, - [134]={ + [147]={ [1]={ [1]={ [1]={ @@ -3390,7 +3615,7 @@ return { [1]="base_physical_damage_to_deal_per_minute" } }, - [135]={ + [148]={ [1]={ [1]={ [1]={ @@ -3410,7 +3635,7 @@ return { [1]="secondary_base_fire_damage_to_deal_per_minute" } }, - [136]={ + [149]={ [1]={ [1]={ [1]={ @@ -3430,7 +3655,7 @@ return { [1]="base_cold_damage_to_deal_per_minute" } }, - [137]={ + [150]={ [1]={ [1]={ limit={ @@ -3459,7 +3684,7 @@ return { [1]="curse_effect_+%" } }, - [138]={ + [151]={ [1]={ [1]={ limit={ @@ -3488,7 +3713,7 @@ return { [1]="support_bane_curse_effect_+%_final" } }, - [139]={ + [152]={ [1]={ [1]={ limit={ @@ -3517,7 +3742,7 @@ return { [1]="support_blasphemy_curse_effect_+%_final" } }, - [140]={ + [153]={ [1]={ [1]={ limit={ @@ -3546,7 +3771,7 @@ return { [1]="support_hextouch_curse_effect_+%_final" } }, - [141]={ + [154]={ [1]={ [1]={ limit={ @@ -3575,7 +3800,7 @@ return { [1]="support_spell_totem_cast_speed_+%_final" } }, - [142]={ + [155]={ [1]={ [1]={ limit={ @@ -3604,7 +3829,7 @@ return { [1]="support_attack_totem_attack_speed_+%_final" } }, - [143]={ + [156]={ [1]={ [1]={ [1]={ @@ -3624,7 +3849,7 @@ return { [1]="bleed_on_hit_base_duration" } }, - [144]={ + [157]={ [1]={ [1]={ limit={ @@ -3640,7 +3865,7 @@ return { [1]="aura_can_affect_self" } }, - [145]={ + [158]={ [1]={ [1]={ limit={ @@ -3669,7 +3894,7 @@ return { [1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies" } }, - [146]={ + [159]={ [1]={ [1]={ limit={ @@ -3698,7 +3923,7 @@ return { [1]="support_slower_projectiles_projectile_speed_+%_final" } }, - [147]={ + [160]={ [1]={ [1]={ limit={ @@ -3727,7 +3952,7 @@ return { [1]="support_reduced_duration_damage_+%_final" } }, - [148]={ + [161]={ [1]={ [1]={ limit={ @@ -3756,7 +3981,7 @@ return { [1]="support_reduced_duration_skill_effect_duration_+%_final" } }, - [149]={ + [162]={ [1]={ [1]={ limit={ @@ -3811,7 +4036,7 @@ return { [2]="quality_display_swiftbrand_is_gem" } }, - [150]={ + [163]={ [1]={ [1]={ limit={ @@ -3840,7 +4065,7 @@ return { [1]="support_rapid_activation_brand_skill_only_secondary_duration_+%_final" } }, - [151]={ + [164]={ [1]={ [1]={ limit={ @@ -3865,7 +4090,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [152]={ + [165]={ [1]={ [1]={ limit={ @@ -3881,7 +4106,7 @@ return { [1]="global_poison_on_hit" } }, - [153]={ + [166]={ [1]={ [1]={ limit={ @@ -3906,7 +4131,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [154]={ + [167]={ [1]={ [1]={ limit={ @@ -3931,7 +4156,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [155]={ + [168]={ [1]={ [1]={ limit={ @@ -3947,7 +4172,7 @@ return { [1]="cannot_inflict_elemental_ailments" } }, - [156]={ + [169]={ [1]={ [1]={ [1]={ @@ -3967,7 +4192,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [157]={ + [170]={ [1]={ [1]={ limit={ @@ -3983,7 +4208,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_elusive" } }, - [158]={ + [171]={ [1]={ [1]={ [1]={ @@ -4025,7 +4250,7 @@ return { [2]="support_arcane_surge_base_duration_ms" } }, - [159]={ + [172]={ [1]={ [1]={ limit={ @@ -4054,7 +4279,7 @@ return { [1]="cruelty_duration_+%" } }, - [160]={ + [173]={ [1]={ [1]={ [1]={ @@ -4087,7 +4312,7 @@ return { [1]="support_base_cruelty_duration_ms" } }, - [161]={ + [174]={ [1]={ [1]={ [1]={ @@ -4120,7 +4345,7 @@ return { [1]="support_withered_base_duration_ms" } }, - [162]={ + [175]={ [1]={ [1]={ [1]={ @@ -4153,7 +4378,7 @@ return { [1]="support_withered_base_duration_ms" } }, - [163]={ + [176]={ [1]={ [1]={ limit={ @@ -4239,7 +4464,7 @@ return { [2]="support_ruthless_big_hit_stun_damage_+%_final" } }, - [164]={ + [177]={ [1]={ [1]={ limit={ @@ -4255,7 +4480,7 @@ return { [1]="curse_pacify_for_final_%_of_duration" } }, - [165]={ + [178]={ [1]={ [1]={ limit={ @@ -4280,7 +4505,7 @@ return { [1]="pillar_of_flame_consume_ignite_to_create_X_pillars" } }, - [166]={ + [179]={ [1]={ [1]={ limit={ @@ -4309,7 +4534,7 @@ return { [1]="support_totem_life_+%_final" } }, - [167]={ + [180]={ [1]={ [1]={ limit={ @@ -4334,7 +4559,7 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [168]={ + [181]={ [1]={ [1]={ limit={ @@ -4363,7 +4588,7 @@ return { [1]="chill_effect_+%" } }, - [169]={ + [182]={ [1]={ [1]={ limit={ @@ -4392,7 +4617,7 @@ return { [1]="chill_duration_+%" } }, - [170]={ + [183]={ [1]={ [1]={ limit={ @@ -4421,7 +4646,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [171]={ + [184]={ [1]={ [1]={ limit={ @@ -4450,7 +4675,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [172]={ + [185]={ [1]={ [1]={ limit={ @@ -4466,7 +4691,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [173]={ + [186]={ [1]={ [1]={ limit={ @@ -4482,7 +4707,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [174]={ + [187]={ [1]={ [1]={ limit={ @@ -4498,7 +4723,7 @@ return { [1]="totem_maximum_all_elemental_resistances_%" } }, - [175]={ + [188]={ [1]={ [1]={ limit={ @@ -4527,7 +4752,7 @@ return { [1]="support_rigwald_attack_speed_+%_in_weapon_set_one" } }, - [176]={ + [189]={ [1]={ [1]={ limit={ @@ -4556,7 +4781,7 @@ return { [1]="support_rigwald_damage_+%_final_in_weapon_set_one" } }, - [177]={ + [190]={ [1]={ [1]={ limit={ @@ -4585,7 +4810,7 @@ return { [1]="support_rigwald_attack_speed_+%_in_weapon_set_two" } }, - [178]={ + [191]={ [1]={ [1]={ limit={ @@ -4614,7 +4839,7 @@ return { [1]="support_rigwald_damage_+%_final_in_weapon_set_two" } }, - [179]={ + [192]={ [1]={ [1]={ [1]={ @@ -4634,7 +4859,7 @@ return { [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [180]={ + [193]={ [1]={ [1]={ limit={ @@ -4663,7 +4888,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [181]={ + [194]={ [1]={ [1]={ [1]={ @@ -4683,7 +4908,7 @@ return { [1]="support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute" } }, - [182]={ + [195]={ [1]={ [1]={ limit={ @@ -4699,7 +4924,7 @@ return { [1]="infernal_legion_minions_have_burning_effect_radius_+" } }, - [183]={ + [196]={ [1]={ [1]={ [1]={ @@ -4719,7 +4944,7 @@ return { [1]="ancestral_slam_interval_duration" } }, - [184]={ + [197]={ [1]={ [1]={ limit={ @@ -4748,7 +4973,7 @@ return { [1]="support_ancestral_slam_big_hit_hit_damage_+%_final" } }, - [185]={ + [198]={ [1]={ [1]={ limit={ @@ -4777,7 +5002,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [186]={ + [199]={ [1]={ [1]={ limit={ @@ -4786,14 +5011,14 @@ return { [2]="#" } }, - text="Hits with Supported Skills for which the highest Damage Type is Elemental cause you to gain 25 Resonance of other Elements per second for 2 seconds\nLose 5 Resonance per second of each Element you are not gaining" + text="Hits with Supported Skills for which the highest Damage Type is Elemental cause you to gain 25 Affinity of other Elements per second for 2 seconds\nLose 5 Affinity per second of each Element you are not gaining" } }, stats={ [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [187]={ + [200]={ [1]={ [1]={ limit={ @@ -4802,7 +5027,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Elemental Damage per 5 of lowest Resonance" + text="Supported Skills deal {0}% more Elemental Damage per 5 of lowest Affinity" }, [2]={ [1]={ @@ -4815,14 +5040,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Elemental Damage per 5 of lowest Resonance" + text="Supported Skills deal {0}% less Elemental Damage per 5 of lowest Affinity" } }, stats={ [1]="elemental_damage_+%_final_per_5_lowest_resonance" } }, - [188]={ + [201]={ [1]={ [1]={ limit={ @@ -4831,14 +5056,14 @@ return { [2]="#" } }, - text="Supported Skills penetrate {0}% Elemental Resistances while each Resonance is at least 25" + text="Supported Skills penetrate {0}% Elemental Resistances while each Affinity is at least 25" } }, stats={ [1]="damage_penetrates_%_elemental_resistances_while_all_resonance_is_25" } }, - [189]={ + [202]={ [1]={ [1]={ limit={ @@ -4847,7 +5072,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Attack and Cast Speed while each Resonance is at least 25" + text="Supported Skills have {0}% increased Attack and Cast Speed while each Affinity is at least 25" }, [2]={ [1]={ @@ -4860,14 +5085,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced Attack and Cast Speed while each Resonance is at least 25" + text="Supported Skills have {0}% reduced Attack and Cast Speed while each Affinity is at least 25" } }, stats={ [1]="attack_and_cast_speed_+%_while_all_resonance_is_at_least_25" } }, - [190]={ + [203]={ [1]={ [1]={ limit={ @@ -4883,7 +5108,7 @@ return { [1]="hits_grant_cruelty" } }, - [191]={ + [204]={ [1]={ [1]={ limit={ @@ -4892,7 +5117,7 @@ return { [2]=1 } }, - text="Supported Skills' Fissures branch branch {1} time" + text="Supported Skills' Fissures branch branch {0} time" }, [2]={ limit={ @@ -4908,7 +5133,7 @@ return { [1]="number_of_branching_fissures" } }, - [192]={ + [205]={ [1]={ [1]={ limit={ @@ -4937,7 +5162,7 @@ return { [1]="branching_fissure_damage_+%_final" } }, - [193]={ + [206]={ [1]={ [1]={ limit={ @@ -4966,7 +5191,7 @@ return { [1]="branching_fissure_area_of_effect_+%_final" } }, - [194]={ + [207]={ [1]={ [1]={ limit={ @@ -4982,7 +5207,23 @@ return { [1]="base_mana_cost_+" } }, - [195]={ + [208]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills cost an additional {0}% of\nmaximum Runic Ward" + } + }, + stats={ + [1]="base_ward_cost_+_%_of_maximum_ward" + } + }, + [209]={ [1]={ [1]={ limit={ @@ -4998,7 +5239,7 @@ return { [1]="global_cannot_crit" } }, - [196]={ + [210]={ [1]={ [1]={ limit={ @@ -5014,7 +5255,7 @@ return { [1]="always_pierce" } }, - [197]={ + [211]={ [1]={ [1]={ limit={ @@ -5023,14 +5264,14 @@ return { [2]="#" } }, - text="Supported Skills can gain up to {0} Combo\nSupported Skills lose all Combo on use" + text="Supported Skills can gain up to {0} Combo\nSupported Skills expend all Combo on use" } }, stats={ [1]="skill_maximum_number_of_combo_stacks" } }, - [198]={ + [212]={ [1]={ [1]={ limit={ @@ -5039,14 +5280,14 @@ return { [2]="#" } }, - text="Supported Skills can gain Combo\nSupported Skills lose all Combo on use" + text="Supported Skills can gain Combo\nSupported Skills expend all Combo on use" } }, stats={ [1]="skill_uncapped_combo_counter" } }, - [199]={ + [213]={ [1]={ [1]={ limit={ @@ -5062,7 +5303,7 @@ return { [1]="support_called_shots_enable_directional_buff" } }, - [200]={ + [214]={ [1]={ [1]={ limit={ @@ -5078,7 +5319,7 @@ return { [1]="never_ignite" } }, - [201]={ + [215]={ [1]={ [1]={ limit={ @@ -5094,7 +5335,7 @@ return { [1]="never_shock" } }, - [202]={ + [216]={ [1]={ [1]={ limit={ @@ -5110,7 +5351,7 @@ return { [1]="totem_skill_cast_speed_+%" } }, - [203]={ + [217]={ [1]={ [1]={ limit={ @@ -5126,7 +5367,7 @@ return { [1]="totem_skill_attack_speed_+%" } }, - [204]={ + [218]={ [1]={ [1]={ limit={ @@ -5155,7 +5396,7 @@ return { [1]="mark_effect_+%" } }, - [205]={ + [219]={ [1]={ [1]={ limit={ @@ -5171,7 +5412,159 @@ return { [1]="chaos_damage_can_shock" } }, - [206]={ + [220]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Supported Skills grant Overflowing Chalice when used, for {0} second per 1 second of their cooldown" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills grant Overflowing Chalice when used, for {0} seconds per 1 second of their cooldown" + } + }, + stats={ + [1]="support_uhtreds_chalice_buff_on_skill_use_duration_ms_per_1000_ms_cooldown" + } + }, + [221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills deal {0}% more damage during\neffect of any Life Flask" + } + }, + stats={ + [1]="support_uhtreds_chalice_damage_+%_final_during_life_flask" + } + }, + [222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills have {0}% increased Mana\nCost Efficiency during effect of any Mana Flask" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_during_mana_flask" + } + }, + [223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Lose {0}% of Maximum Life per 5 Rage when \nyou use Supported Skills" + } + }, + stats={ + [1]="lose_x%_of_life_per_5_rage_on_supported_skill_use" + } + }, + [224]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Crush Enemies for 4 seconds on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to Crush Enemies for 4 seconds on Hit" + }, + [3]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills Crush Enemies for 4 seconds on Hit" + } + }, + stats={ + [1]="chance_to_crush_on_hit_%" + } + }, + [225]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Crush targets they Hit for {0} seconds" + } + }, + stats={ + [1]="support_knights_ferocity_crush_on_hit_ms" + } + }, + [226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits against targets Crushed by Supported Skills Break Armour equal to {0}% of Physical damage dealt" + } + }, + stats={ + [1]="crushed_target_%_physical_damage_taken_as_armour_break" + } + }, + [227]={ [1]={ [1]={ limit={ @@ -5187,7 +5580,7 @@ return { [1]="accuracy_rating" } }, - [207]={ + [228]={ [1]={ [1]={ limit={ @@ -5216,7 +5609,7 @@ return { [1]="accuracy_rating_+%" } }, - [208]={ + [229]={ [1]={ [1]={ limit={ @@ -5225,23 +5618,212 @@ return { [2]=100 } }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill" + text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill at {0}% of their value" + } + }, + stats={ + [1]="active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value" + } + }, + [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, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Converts {0}% of Physical Damage to Lightning Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=1 + } + }, + text="Converts -{0}% of Physical Damage to Lightning Damage" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Converts {0}% of Physical Damage to Lightning Damage" + } + }, + stats={ + [1]="active_skill_base_physical_damage_%_to_convert_to_lightning" + } + }, + [234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Electrocute Primed enemies on Hit" + } + }, + stats={ + [1]="active_skill_can_overload" + } + }, + [235]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Crossbow Ammunition Skills cannot reload" + } + }, + stats={ + [1]="active_skill_cannot_manually_reload" + } + }, + [236]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Deals {0}% more Fire Damage" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals {0}% more Fire Damage" }, - [2]={ + [3]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill at {0}% of their value" + text="Deals {0}% less Fire Damage" } }, stats={ - [1]="active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value" + [1]="active_skill_fire_damage_+%_final" } }, - [209]={ + [237]={ [1]={ [1]={ limit={ @@ -5250,30 +5832,31 @@ return { [2]="#" } }, - text="Supported Skills Electrocute Primed enemies on Hit" + text="Supported Skills gain Glory equal to {0}% of\n Life spent on other Skills" } }, stats={ - [1]="active_skill_can_overload" + [1]="active_skill_generates_%_of_life_spent_as_glory" } }, - [210]={ + [238]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Crossbow Ammunition Skills cannot reload" + text="{0}% more Minion Attack Speed" } }, stats={ - [1]="active_skill_cannot_manually_reload" + [1]="active_skill_minion_attack_speed_+%_final" } }, - [211]={ + [239]={ [1]={ [1]={ limit={ @@ -5282,30 +5865,53 @@ return { [2]="#" } }, - text="Supported Skills gain Glory equal to {0}% of\n Life spent on other Skills" + text="Supported Skills Cannot inflict Freeze, Shock or Ignite" } }, stats={ - [1]="active_skill_generates_%_of_life_spent_as_glory" + [1]="active_skill_never_freeze_shock_ignite" } }, - [212]={ + [240]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]="#", [2]="#" } }, - text="Supported Skills Cannot inflict Freeze, Shock or Ignite" + text="{0}% more Projectile Speed" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Projectile Speed" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Projectile Speed" } }, stats={ - [1]="active_skill_never_freeze_shock_ignite" + [1]="active_skill_projectile_speed_+%_final" } }, - [213]={ + [241]={ [1]={ [1]={ limit={ @@ -5330,7 +5936,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [214]={ + [242]={ [1]={ [1]={ limit={ @@ -5346,7 +5952,23 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [215]={ + [243]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills deal added Cold damage equal\nto {0}% of Runic Ward cost" + } + }, + stats={ + [1]="added_cold_damage_%_ward_cost" + } + }, + [244]={ [1]={ [1]={ limit={ @@ -5375,7 +5997,23 @@ return { [1]="added_damage_+%_final" } }, - [216]={ + [245]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills deal added Physical damage equal\nto {0}% of Runic Ward cost" + } + }, + stats={ + [1]="added_physical_damage_%_ward_cost" + } + }, + [246]={ [1]={ [1]={ [1]={ @@ -5395,7 +6033,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [217]={ + [247]={ [1]={ [1]={ limit={ @@ -5411,7 +6049,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [218]={ + [248]={ [1]={ [1]={ limit={ @@ -5436,7 +6074,7 @@ return { [1]="additional_combo_gain_chance_%" } }, - [219]={ + [249]={ [1]={ [1]={ [1]={ @@ -5456,7 +6094,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [220]={ + [250]={ [1]={ [1]={ [1]={ @@ -5476,23 +6114,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [221]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Modifiers granting additional Projectiles instead cause Projectiles from Supported Skills to Chain an additional time from terrain per Projectile they would have gained" - } - }, - stats={ - [1]="additional_projectiles_instead_applies_to_number_of_terrain_chains" - } - }, - [222]={ + [251]={ [1]={ [1]={ limit={ @@ -5539,7 +6161,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [223]={ + [252]={ [1]={ [1]={ limit={ @@ -5568,7 +6190,7 @@ return { [1]="aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks" } }, - [224]={ + [253]={ [1]={ [1]={ limit={ @@ -5597,7 +6219,7 @@ return { [1]="aftershock_area_of_effect_+%_final" } }, - [225]={ + [254]={ [1]={ [1]={ limit={ @@ -5626,7 +6248,7 @@ return { [1]="aftershock_damage_+%_final_from_support_dual_cascade_aftershocks" } }, - [226]={ + [255]={ [1]={ [1]={ limit={ @@ -5642,7 +6264,7 @@ return { [1]="aftershocks_create_jagged_ground" } }, - [227]={ + [256]={ [1]={ [1]={ limit={ @@ -5667,7 +6289,7 @@ return { [1]="aggravate_bleeding_on_pin_chance_%" } }, - [228]={ + [257]={ [1]={ [1]={ limit={ @@ -5696,7 +6318,7 @@ return { [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [229]={ + [258]={ [1]={ [1]={ limit={ @@ -5725,7 +6347,7 @@ return { [1]="ailment_effect_+%_while_afflicted_by_relevant_ailment" } }, - [230]={ + [259]={ [1]={ [1]={ limit={ @@ -5754,7 +6376,7 @@ return { [1]="ailment_threshold_+%_while_channelling" } }, - [231]={ + [260]={ [1]={ [1]={ limit={ @@ -5770,7 +6392,7 @@ return { [1]="all_damage_gained_as_cold_instead" } }, - [232]={ + [261]={ [1]={ [1]={ [1]={ @@ -5803,7 +6425,7 @@ return { [1]="all_exposure_on_hit_for_duration_ms" } }, - [233]={ + [262]={ [1]={ [1]={ [1]={ @@ -5828,7 +6450,7 @@ return { [2]="font_of_blood_radius" } }, - [234]={ + [263]={ [1]={ [1]={ [1]={ @@ -5853,7 +6475,7 @@ return { [2]="font_of_mana_radius" } }, - [235]={ + [264]={ [1]={ [1]={ limit={ @@ -5869,7 +6491,7 @@ return { [1]="always_shock_wet_enemies" } }, - [236]={ + [265]={ [1]={ [1]={ limit={ @@ -5898,7 +6520,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [237]={ + [266]={ [1]={ [1]={ limit={ @@ -5927,7 +6549,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [238]={ + [267]={ [1]={ [1]={ limit={ @@ -5943,7 +6565,7 @@ return { [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [239]={ + [268]={ [1]={ [1]={ [1]={ @@ -5956,7 +6578,7 @@ return { [2]=1000 } }, - text="Supported Strike Skills are Ancestrally Boosted\nonce every {0} second" + text="Supported Skills are Ancestrally Boosted\nonce every {0} second" }, [2]={ [1]={ @@ -5969,14 +6591,14 @@ return { [2]="#" } }, - text="Supported Strike Skills are Ancestrally Boosted\nonce every {0} seconds" + text="Supported Skills are Ancestrally Boosted\nonce every {0} seconds" } }, stats={ [1]="ancestral_call_spirit_strike_interval_ms" } }, - [240]={ + [269]={ [1]={ [1]={ limit={ @@ -6005,7 +6627,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [241]={ + [270]={ [1]={ [1]={ limit={ @@ -6021,7 +6643,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [242]={ + [271]={ [1]={ [1]={ limit={ @@ -6037,7 +6659,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [243]={ + [272]={ [1]={ [1]={ limit={ @@ -6062,7 +6684,7 @@ return { [1]="apply_X_incision_on_hit" } }, - [244]={ + [273]={ [1]={ [1]={ limit={ @@ -6078,7 +6700,7 @@ return { [1]="apply_attack_projectile_weakness_%_per_1m_knockback" } }, - [245]={ + [274]={ [1]={ [1]={ [1]={ @@ -6111,7 +6733,7 @@ return { [1]="apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry" } }, - [246]={ + [275]={ [1]={ [1]={ limit={ @@ -6140,7 +6762,36 @@ return { [1]="area_damage_+%" } }, - [247]={ + [276]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased area\nof effect per Combo expended" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% reduced area of effect per Combo expended" + } + }, + stats={ + [1]="area_of_effect_+%_per_combo_stack" + } + }, + [277]={ [1]={ [1]={ limit={ @@ -6169,7 +6820,7 @@ return { [1]="area_of_effect_+%_per_totem_in_radius_from_support_greatwood" } }, - [248]={ + [278]={ [1]={ [1]={ limit={ @@ -6185,7 +6836,7 @@ return { [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [249]={ + [279]={ [1]={ [1]={ limit={ @@ -6201,7 +6852,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [250]={ + [280]={ [1]={ [1]={ limit={ @@ -6217,7 +6868,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies" } }, - [251]={ + [281]={ [1]={ [1]={ limit={ @@ -6233,7 +6884,7 @@ return { [1]="armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [252]={ + [282]={ [1]={ [1]={ limit={ @@ -6254,7 +6905,7 @@ return { [2]="attack_maximum_added_physical_damage_as_%_of_strength" } }, - [253]={ + [283]={ [1]={ [1]={ limit={ @@ -6283,7 +6934,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [254]={ + [284]={ [1]={ [1]={ limit={ @@ -6312,7 +6963,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [255]={ + [285]={ [1]={ [1]={ limit={ @@ -6341,7 +6992,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [256]={ + [286]={ [1]={ [1]={ limit={ @@ -6357,7 +7008,7 @@ return { [1]="attack_damage_+1%_per_X_armour" } }, - [257]={ + [287]={ [1]={ [1]={ limit={ @@ -6373,7 +7024,7 @@ return { [1]="attack_damage_is_lucky_if_surrounded" } }, - [258]={ + [288]={ [1]={ [1]={ limit={ @@ -6402,7 +7053,7 @@ return { [1]="attack_damage_+%" } }, - [259]={ + [289]={ [1]={ [1]={ limit={ @@ -6431,7 +7082,7 @@ return { [1]="attack_damage_+%_per_1000_accuracy_rating" } }, - [260]={ + [290]={ [1]={ [1]={ limit={ @@ -6452,7 +7103,7 @@ return { [2]="attack_maximum_added_physical_damage_per_10_rage" } }, - [261]={ + [291]={ [1]={ [1]={ limit={ @@ -6473,7 +7124,7 @@ return { [2]="attack_maximum_added_physical_damage_with_at_least_10_rage" } }, - [262]={ + [292]={ [1]={ [1]={ limit={ @@ -6494,7 +7145,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [263]={ + [293]={ [1]={ [1]={ limit={ @@ -6523,7 +7174,7 @@ return { [1]="attack_speed_+%" } }, - [264]={ + [294]={ [1]={ [1]={ limit={ @@ -6552,7 +7203,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [265]={ + [295]={ [1]={ [1]={ limit={ @@ -6581,7 +7232,7 @@ return { [1]="attack_speed_+%_with_atleast_20_rage" } }, - [266]={ + [296]={ [1]={ [1]={ limit={ @@ -6606,7 +7257,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [267]={ + [297]={ [1]={ [1]={ limit={ @@ -6622,7 +7273,7 @@ return { [1]="attacks_roll_crits_twice" } }, - [268]={ + [298]={ [1]={ [1]={ limit={ @@ -6647,7 +7298,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [269]={ + [299]={ [1]={ [1]={ limit={ @@ -6676,7 +7327,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [270]={ + [300]={ [1]={ [1]={ limit={ @@ -6705,7 +7356,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [271]={ + [301]={ [1]={ [1]={ limit={ @@ -6714,14 +7365,14 @@ return { [2]="#" } }, - text="Base Bleeding chance instead\napplies to Poison for Supported Skills" + text="Chance to inflict Bleeding with Supported Skills is calculated from their base chance to Poison instead" } }, stats={ [1]="base_bleed_chance_is_poison_chance_instead" } }, - [272]={ + [302]={ [1]={ [1]={ limit={ @@ -6750,7 +7401,7 @@ return { [1]="base_bleed_duration_+%" } }, - [273]={ + [303]={ [1]={ [1]={ limit={ @@ -6779,7 +7430,7 @@ return { [1]="base_cast_speed_+%" } }, - [274]={ + [304]={ [1]={ [1]={ limit={ @@ -6795,7 +7446,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [275]={ + [305]={ [1]={ [1]={ limit={ @@ -6842,7 +7493,7 @@ return { [2]="always_freeze" } }, - [276]={ + [306]={ [1]={ [1]={ limit={ @@ -6858,7 +7509,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [277]={ + [307]={ [1]={ [1]={ limit={ @@ -6883,7 +7534,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [278]={ + [308]={ [1]={ [1]={ limit={ @@ -6908,7 +7559,7 @@ return { [1]="base_chance_to_shock_%" } }, - [279]={ + [309]={ [1]={ [1]={ limit={ @@ -6924,7 +7575,7 @@ return { [1]="base_chaos_damage_can_ignite" } }, - [280]={ + [310]={ [1]={ [1]={ [1]={ @@ -6937,7 +7588,7 @@ return { [2]=1000 } }, - text="Supported Skills lose Combo if you\ngenerate no Combo for {0} second" + text="Supported Skills lose Combo if they\ngenerate no Combo for {0} second" }, [2]={ [1]={ @@ -6950,14 +7601,14 @@ return { [2]="#" } }, - text="Supported Skills lose Combo if you\ngenerate no Combo for {0} seconds" + text="Supported Skills lose Combo if they\ngenerate no Combo for {0} seconds" } }, stats={ [1]="base_combo_stacks_decay_delay_ms" } }, - [281]={ + [311]={ [1]={ [1]={ limit={ @@ -6973,7 +7624,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [282]={ + [312]={ [1]={ [1]={ limit={ @@ -6989,7 +7640,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [283]={ + [313]={ [1]={ [1]={ [1]={ @@ -7009,7 +7660,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [284]={ + [314]={ [1]={ [1]={ limit={ @@ -7038,7 +7689,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [285]={ + [315]={ [1]={ [1]={ limit={ @@ -7067,7 +7718,7 @@ return { [1]="base_cooldown_speed_+%_final" } }, - [286]={ + [316]={ [1]={ [1]={ limit={ @@ -7096,7 +7747,7 @@ return { [1]="base_curse_delay_+%" } }, - [287]={ + [317]={ [1]={ [1]={ limit={ @@ -7125,7 +7776,7 @@ return { [1]="base_curse_duration_+%" } }, - [288]={ + [318]={ [1]={ [1]={ limit={ @@ -7154,7 +7805,7 @@ return { [1]="base_damage_+%_while_an_ailment_on_you" } }, - [289]={ + [319]={ [1]={ [1]={ limit={ @@ -7170,7 +7821,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [290]={ + [320]={ [1]={ [1]={ limit={ @@ -7199,7 +7850,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [291]={ + [321]={ [1]={ [1]={ limit={ @@ -7215,7 +7866,7 @@ return { [1]="base_es_cost_%" } }, - [292]={ + [322]={ [1]={ [1]={ limit={ @@ -7231,7 +7882,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [293]={ + [323]={ [1]={ [1]={ limit={ @@ -7256,7 +7907,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [294]={ + [324]={ [1]={ [1]={ limit={ @@ -7281,7 +7932,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [295]={ + [325]={ [1]={ [1]={ limit={ @@ -7306,7 +7957,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [296]={ + [326]={ [1]={ [1]={ limit={ @@ -7335,7 +7986,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [297]={ + [327]={ [1]={ [1]={ limit={ @@ -7364,7 +8015,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [298]={ + [328]={ [1]={ [1]={ limit={ @@ -7380,7 +8031,7 @@ return { [1]="base_life_cost_%" } }, - [299]={ + [329]={ [1]={ [1]={ [1]={ @@ -7400,7 +8051,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [300]={ + [330]={ [1]={ [1]={ limit={ @@ -7429,7 +8080,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [301]={ + [331]={ [1]={ [1]={ limit={ @@ -7458,7 +8109,7 @@ return { [1]="base_life_reservation_+%" } }, - [302]={ + [332]={ [1]={ [1]={ limit={ @@ -7474,7 +8125,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [303]={ + [333]={ [1]={ [1]={ limit={ @@ -7490,7 +8141,7 @@ return { [1]="base_limit_+" } }, - [304]={ + [334]={ [1]={ [1]={ limit={ @@ -7506,7 +8157,7 @@ return { [1]="base_mana_cost_%" } }, - [305]={ + [335]={ [1]={ [1]={ limit={ @@ -7535,7 +8186,7 @@ return { [1]="base_mana_cost_efficiency_+%" } }, - [306]={ + [336]={ [1]={ [1]={ [1]={ @@ -7555,7 +8206,7 @@ return { [1]="base_mana_leech_from_physical_attack_damage_permyriad" } }, - [307]={ + [337]={ [1]={ [1]={ limit={ @@ -7584,7 +8235,32 @@ return { [1]="base_mana_reservation_+%" } }, - [308]={ + [338]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills have a maximum of {0} Seal" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills have a maximum of {0} Seals" + } + }, + stats={ + [1]="base_maximum_seals_for_skill" + } + }, + [339]={ [1]={ [1]={ [1]={ @@ -7604,7 +8280,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [309]={ + [340]={ [1]={ [1]={ limit={ @@ -7629,7 +8305,32 @@ return { [1]="base_number_of_additional_fissures" } }, - [310]={ + [341]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Limit {0} active rune" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Limit {0} active runes" + } + }, + stats={ + [1]="base_number_of_runic_aftershocks_allowed" + } + }, + [342]={ [1]={ [1]={ limit={ @@ -7654,7 +8355,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [311]={ + [343]={ [1]={ [1]={ [1]={ @@ -7687,7 +8388,7 @@ return { [1]="base_overkill_icy_vortex_duration_ms" } }, - [312]={ + [344]={ [1]={ [1]={ limit={ @@ -7696,14 +8397,14 @@ return { [2]="#" } }, - text="Base Poison chance instead\napplies to Bleeding for Supported Skills" + text="Chance to Poison with Supported Skills is calculated from their base chance to inflict Bleeding instead" } }, stats={ [1]="base_poison_chance_is_bleed_chance_instead" } }, - [313]={ + [345]={ [1]={ [1]={ limit={ @@ -7732,7 +8433,7 @@ return { [1]="base_poison_duration_+%" } }, - [314]={ + [346]={ [1]={ [1]={ limit={ @@ -7761,7 +8462,7 @@ return { [1]="base_projectile_speed_+%" } }, - [315]={ + [347]={ [1]={ [1]={ [1]={ @@ -7794,7 +8495,7 @@ return { [1]="base_remnant_duration_ms" } }, - [316]={ + [348]={ [1]={ [1]={ limit={ @@ -7823,7 +8524,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [317]={ + [349]={ [1]={ [1]={ limit={ @@ -7852,7 +8553,7 @@ return { [1]="base_reservation_+%" } }, - [318]={ + [350]={ [1]={ [1]={ limit={ @@ -7877,7 +8578,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [319]={ + [351]={ [1]={ [1]={ limit={ @@ -7893,7 +8594,72 @@ return { [1]="base_skill_no_reservation" } }, - [320]={ + [352]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Reserve 2% of maximum Life for every\n5 Spirit they would have Reserved" + } + }, + stats={ + [1]="base_skill_no_spirit_reservation" + } + }, + [353]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Supported Skills gain a Seal every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills gain a Seal every {0} seconds" + } + }, + stats={ + [1]="base_skill_seal_gain_interval_ms" + } + }, + [354]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Gain {0}% of Life and Mana Cost as Extra Runic Ward Cost" + } + }, + stats={ + [1]="base_skill_ward_cost_as_%_of_life_and_mana_cost" + } + }, + [355]={ [1]={ [1]={ limit={ @@ -7922,7 +8688,46 @@ return { [1]="base_spell_cooldown_speed_+%" } }, - [321]={ + [356]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit Reservation Efficiency" + } + }, + stats={ + [1]="base_spirit_reservation_efficiency_+%" + } + }, + [357]={ [1]={ [1]={ limit={ @@ -7951,7 +8756,7 @@ return { [1]="base_stun_duration_+%" } }, - [322]={ + [358]={ [1]={ [1]={ limit={ @@ -7980,7 +8785,39 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [323]={ + [359]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills cost an additional {0}% of your maximum Runic Ward" + } + }, + stats={ + [1]="base_ward_cost_%" + } + }, + [360]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Cost {0:+d} Runic Ward" + } + }, + stats={ + [1]="base_ward_cost_+" + } + }, + [361]={ [1]={ [1]={ limit={ @@ -7996,7 +8833,7 @@ return { [1]="bleed_chance_%_vs_full_life_enemy" } }, - [324]={ + [362]={ [1]={ [1]={ limit={ @@ -8025,7 +8862,7 @@ return { [1]="bleed_chance_+%_vs_full_life_enemy" } }, - [325]={ + [363]={ [1]={ [1]={ limit={ @@ -8102,7 +8939,7 @@ return { [3]="cannot_cause_bleeding" } }, - [326]={ + [364]={ [1]={ [1]={ limit={ @@ -8131,7 +8968,7 @@ return { [1]="bleeding_monsters_attack_speed_+%" } }, - [327]={ + [365]={ [1]={ [1]={ limit={ @@ -8160,7 +8997,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [328]={ + [366]={ [1]={ [1]={ limit={ @@ -8189,7 +9026,7 @@ return { [1]="blind_effect_+%" } }, - [329]={ + [367]={ [1]={ [1]={ limit={ @@ -8218,7 +9055,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [330]={ + [368]={ [1]={ [1]={ limit={ @@ -8234,7 +9071,7 @@ return { [1]="blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life" } }, - [331]={ + [369]={ [1]={ [1]={ limit={ @@ -8259,7 +9096,7 @@ return { [1]="break_armour_equal_to_%_of_dexterity_vs_parried_enemies" } }, - [332]={ + [370]={ [1]={ [1]={ limit={ @@ -8288,7 +9125,7 @@ return { [1]="burn_damage_+%" } }, - [333]={ + [371]={ [1]={ [1]={ limit={ @@ -8304,7 +9141,7 @@ return { [1]="can_only_damage_low_life_enemies" } }, - [334]={ + [372]={ [1]={ [1]={ limit={ @@ -8320,7 +9157,7 @@ return { [1]="cannot_break_armour" } }, - [335]={ + [373]={ [1]={ [1]={ limit={ @@ -8336,7 +9173,7 @@ return { [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [336]={ + [374]={ [1]={ [1]={ limit={ @@ -8352,7 +9189,7 @@ return { [1]="cannot_consume_impale" } }, - [337]={ + [375]={ [1]={ [1]={ limit={ @@ -8368,7 +9205,7 @@ return { [1]="cannot_consume_infusions" } }, - [338]={ + [376]={ [1]={ [1]={ limit={ @@ -8384,7 +9221,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [339]={ + [377]={ [1]={ [1]={ limit={ @@ -8400,7 +9237,7 @@ return { [1]="cannot_daze" } }, - [340]={ + [378]={ [1]={ [1]={ limit={ @@ -8416,7 +9253,7 @@ return { [1]="cannot_inflict_blind" } }, - [341]={ + [379]={ [1]={ [1]={ limit={ @@ -8432,7 +9269,7 @@ return { [1]="cannot_inflict_maim" } }, - [342]={ + [380]={ [1]={ [1]={ limit={ @@ -8448,7 +9285,7 @@ return { [1]="cannot_kill_enemies_with_hits" } }, - [343]={ + [381]={ [1]={ [1]={ limit={ @@ -8464,7 +9301,7 @@ return { [1]="cannot_miss_against_full_life_enemies" } }, - [344]={ + [382]={ [1]={ [1]={ limit={ @@ -8480,7 +9317,7 @@ return { [1]="cannot_pin" } }, - [345]={ + [383]={ [1]={ [1]={ limit={ @@ -8518,7 +9355,7 @@ return { [2]="cascadeable_offering_support_offering_casted_spell_damage_+%_final" } }, - [346]={ + [384]={ [1]={ [1]={ limit={ @@ -8547,7 +9384,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds" } }, - [347]={ + [385]={ [1]={ [1]={ limit={ @@ -8576,7 +9413,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [348]={ + [386]={ [1]={ [1]={ limit={ @@ -8592,7 +9429,7 @@ return { [1]="cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value" } }, - [349]={ + [387]={ [1]={ [1]={ limit={ @@ -8621,7 +9458,7 @@ return { [1]="cast_when_damage_taken_trigger_threshold_+%" } }, - [350]={ + [388]={ [1]={ [1]={ limit={ @@ -8650,7 +9487,7 @@ return { [1]="chaining_range_+%" } }, - [351]={ + [389]={ [1]={ [1]={ limit={ @@ -8666,7 +9503,7 @@ return { [1]="chance_%_to_gain_power_charges_per_combo_spent" } }, - [352]={ + [390]={ [1]={ [1]={ limit={ @@ -8682,7 +9519,7 @@ return { [1]="chance_for_coin_shower_on_kill_%" } }, - [353]={ + [391]={ [1]={ [1]={ limit={ @@ -8698,7 +9535,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [354]={ + [392]={ [1]={ [1]={ limit={ @@ -8723,7 +9560,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [355]={ + [393]={ [1]={ [1]={ limit={ @@ -8739,7 +9576,7 @@ return { [1]="chance_%_to_create_additional_remnant" } }, - [356]={ + [394]={ [1]={ [1]={ limit={ @@ -8764,7 +9601,7 @@ return { [1]="chance_%_to_double_effect_of_removing_charges" } }, - [357]={ + [395]={ [1]={ [1]={ limit={ @@ -8789,7 +9626,7 @@ return { [1]="chance_%_to_gain_abyssal_modifier_on_minion_death" } }, - [358]={ + [396]={ [1]={ [1]={ limit={ @@ -8814,7 +9651,7 @@ return { [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" } }, - [359]={ + [397]={ [1]={ [1]={ limit={ @@ -8843,7 +9680,7 @@ return { [1]="chance_to_aftershock_+%_per_250_ms_attack_time" } }, - [360]={ + [398]={ [1]={ [1]={ limit={ @@ -8859,57 +9696,23 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [361]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="Supported Skills have {0}% chance to Chain from Shocked Enemies" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } - }, - text="Supported Skills Chain from Shocked Enemies" - } - }, - stats={ - [1]="chance_to_chain_from_shocked_enemy_%" - } - }, - [362]={ + [399]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=99 - } - }, - text="Supported Skills have {0}% chance to Crush Enemies for 4 seconds on Hit" - }, - [2]={ - limit={ - [1]={ - [1]=100, [2]="#" } }, - text="Supported Skills Crush Enemies for 4 seconds on Hit" + text="Supported Skills have {0}% chance to Chain from each Shocked target" } }, stats={ - [1]="chance_to_crush_on_hit_%" + [1]="chance_to_chain_from_shocked_enemy_%" } }, - [363]={ + [400]={ [1]={ [1]={ limit={ @@ -8925,7 +9728,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [364]={ + [401]={ [1]={ [1]={ limit={ @@ -8941,7 +9744,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [365]={ + [402]={ [1]={ [1]={ limit={ @@ -8966,7 +9769,7 @@ return { [1]="chance_to_fork_from_frozen_enemy_%" } }, - [366]={ + [403]={ [1]={ [1]={ limit={ @@ -8991,7 +9794,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [367]={ + [404]={ [1]={ [1]={ limit={ @@ -9016,7 +9819,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [368]={ + [405]={ [1]={ [1]={ limit={ @@ -9041,7 +9844,7 @@ return { [1]="chance_to_gain_1_more_random_charge_%" } }, - [369]={ + [406]={ [1]={ [1]={ limit={ @@ -9066,7 +9869,7 @@ return { [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [370]={ + [407]={ [1]={ [1]={ limit={ @@ -9091,7 +9894,7 @@ return { [1]="chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%" } }, - [371]={ + [408]={ [1]={ [1]={ limit={ @@ -9116,7 +9919,7 @@ return { [1]="chance_to_gain_endurance_charge_on_perfect_timing_hit_%" } }, - [372]={ + [409]={ [1]={ [1]={ limit={ @@ -9141,7 +9944,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [373]={ + [410]={ [1]={ [1]={ limit={ @@ -9157,7 +9960,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [374]={ + [411]={ [1]={ [1]={ limit={ @@ -9173,7 +9976,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [375]={ + [412]={ [1]={ [1]={ limit={ @@ -9198,7 +10001,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [376]={ + [413]={ [1]={ [1]={ limit={ @@ -9223,7 +10026,7 @@ return { [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" } }, - [377]={ + [414]={ [1]={ [1]={ limit={ @@ -9248,7 +10051,23 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [378]={ + [415]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to not consume Glory" + } + }, + stats={ + [1]="chance_to_not_consume_glory_%" + } + }, + [416]={ [1]={ [1]={ limit={ @@ -9273,7 +10092,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [379]={ + [417]={ [1]={ [1]={ limit={ @@ -9289,7 +10108,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [380]={ + [418]={ [1]={ [1]={ limit={ @@ -9314,7 +10133,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [381]={ + [419]={ [1]={ [1]={ limit={ @@ -9339,7 +10158,7 @@ return { [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [382]={ + [420]={ [1]={ [1]={ limit={ @@ -9355,7 +10174,7 @@ return { [1]="supported_skill_triggers_living_lightning_on_dealing_lightning_damage" } }, - [383]={ + [421]={ [1]={ [1]={ limit={ @@ -9380,7 +10199,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [384]={ + [422]={ [1]={ [1]={ limit={ @@ -9409,7 +10228,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [385]={ + [423]={ [1]={ [1]={ limit={ @@ -9425,7 +10244,7 @@ return { [1]="chaos_damage_%_dealt_as_armour_break" } }, - [386]={ + [424]={ [1]={ [1]={ limit={ @@ -9441,7 +10260,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [387]={ + [425]={ [1]={ [1]={ limit={ @@ -9470,7 +10289,7 @@ return { [1]="chaos_damage_+%" } }, - [388]={ + [426]={ [1]={ [1]={ limit={ @@ -9486,7 +10305,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [389]={ + [427]={ [1]={ [1]={ limit={ @@ -9515,7 +10334,7 @@ return { [1]="chilled_ground_applies_%_freeze_multiplier_taken" } }, - [390]={ + [428]={ [1]={ [1]={ [1]={ @@ -9535,7 +10354,7 @@ return { [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [391]={ + [429]={ [1]={ [1]={ limit={ @@ -9564,7 +10383,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [392]={ + [430]={ [1]={ [1]={ limit={ @@ -9580,7 +10399,7 @@ return { [1]="cold_damage_can_impale" } }, - [393]={ + [431]={ [1]={ [1]={ limit={ @@ -9609,7 +10428,7 @@ return { [1]="cold_damage_+%" } }, - [394]={ + [432]={ [1]={ [1]={ limit={ @@ -9638,7 +10457,7 @@ return { [1]="combat_rush_effect_+%" } }, - [395]={ + [433]={ [1]={ [1]={ limit={ @@ -9647,7 +10466,7 @@ return { [2]="#" } }, - text="Combo count loss for Supported Skills occurs {0}% faster" + text="Supported Skills lose Combo {0}% faster" }, [2]={ [1]={ @@ -9660,14 +10479,62 @@ return { [2]=-1 } }, - text="Combo count loss for Supported Skills occurs {0}% slower" + text="Supported Skills lose Combo {0}% slower" } }, stats={ [1]="combo_falloff_speed_+%" } }, - [396]={ + [434]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions from Supported Skills are Gigantic" + } + }, + stats={ + [1]="companions_are_gigantic" + } + }, + [435]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions from Supported Skills have {0:+d} to Evasion Rating per 10 Evasion Rating you have" + } + }, + stats={ + [1]="companion_evasion_rating_+_per_10_summoner_evasion_rating" + } + }, + [436]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions from Supported Skills have {0:+d} to Deflection Rating per 10 Deflection Rating you have" + } + }, + stats={ + [1]="companion_deflection_rating_+_per_10_summoner_deflection_rating" + } + }, + [437]={ [1]={ [1]={ limit={ @@ -9683,7 +10550,7 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [397]={ + [438]={ [1]={ [1]={ [1]={ @@ -9759,7 +10626,7 @@ return { [2]="conditional_skill_additional_usages_duration_ms" } }, - [398]={ + [439]={ [1]={ [1]={ limit={ @@ -9775,7 +10642,7 @@ return { [1]="consume_armour_break_to_trigger_battershout_explosion" } }, - [399]={ + [440]={ [1]={ [1]={ limit={ @@ -9800,7 +10667,7 @@ return { [1]="consume_bleed_to_create_X_haemocrystals" } }, - [400]={ + [441]={ [1]={ [1]={ limit={ @@ -9816,7 +10683,7 @@ return { [1]="consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge" } }, - [401]={ + [442]={ [1]={ [1]={ limit={ @@ -9829,10 +10696,26 @@ return { } }, stats={ - [1]="consume_enemy_daze_to_always_hit" + [1]="consume_enemy_daze_to_always_hit" + } + }, + [443]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Consume Enemy Freeze to Guarantee a Critical Hit" + } + }, + stats={ + [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [402]={ + [444]={ [1]={ [1]={ limit={ @@ -9841,14 +10724,14 @@ return { [2]="#" } }, - text="Supported Skills Consume Enemy Freeze to Guarantee a Critical Hit" + text="Supported Skills trigger Nature's Exchange when Consuming Freeze" } }, stats={ - [1]="consume_enemy_freeze_to_guarantee_crit" + [1]="consume_enemy_freeze_to_trigger_morrigan_ward" } }, - [403]={ + [445]={ [1]={ [1]={ limit={ @@ -9864,7 +10747,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [404]={ + [446]={ [1]={ [1]={ limit={ @@ -9880,7 +10763,7 @@ return { [1]="consume_ignite_on_hit" } }, - [405]={ + [447]={ [1]={ [1]={ limit={ @@ -9905,7 +10788,7 @@ return { [1]="consume_maim_on_hit_to_break_%_armour" } }, - [406]={ + [448]={ [1]={ [1]={ limit={ @@ -9930,7 +10813,7 @@ return { [1]="consume_parry_debuff_on_hit_to_gain_X_frenzy_charges" } }, - [407]={ + [449]={ [1]={ [1]={ limit={ @@ -9955,7 +10838,7 @@ return { [1]="cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence" } }, - [408]={ + [450]={ [1]={ [1]={ limit={ @@ -9980,7 +10863,7 @@ return { [1]="create_X_briar_thorns_on_slam" } }, - [409]={ + [451]={ [1]={ [1]={ [1]={ @@ -10031,7 +10914,7 @@ return { [3]="rip_support_buff_base_duration" } }, - [410]={ + [452]={ [1]={ [1]={ limit={ @@ -10047,7 +10930,32 @@ return { [1]="create_mini_bell_on_expending_combo_per_X_combo_expended" } }, - [411]={ + [453]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance create a Verisium Infusion Remnant on kill" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills create a Verisium Infusion Remnant on kill" + } + }, + stats={ + [1]="create_verisium_remmant_on_kill_enemy_%" + } + }, + [454]={ [1]={ [1]={ limit={ @@ -10076,7 +10984,23 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [412]={ + [455]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills get {0}% increased Critical Hit chance per 5 Rage" + } + }, + stats={ + [1]="critical_strike_chance_+%_per_5_rage" + } + }, + [456]={ [1]={ [1]={ limit={ @@ -10105,7 +11029,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [413]={ + [457]={ [1]={ [1]={ limit={ @@ -10134,7 +11058,7 @@ return { [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [414]={ + [458]={ [1]={ [1]={ limit={ @@ -10150,7 +11074,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [415]={ + [459]={ [1]={ [1]={ limit={ @@ -10175,7 +11099,7 @@ return { [1]="crossbow_load_x_bolts_on_dodge" } }, - [416]={ + [460]={ [1]={ [1]={ limit={ @@ -10191,7 +11115,7 @@ return { [1]="crossbow_reload_on_heavy_stun" } }, - [417]={ + [461]={ [1]={ [1]={ limit={ @@ -10220,7 +11144,7 @@ return { [1]="cruelty_effect_+%" } }, - [418]={ + [462]={ [1]={ [1]={ limit={ @@ -10245,7 +11169,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [419]={ + [463]={ [1]={ [1]={ limit={ @@ -10261,7 +11185,7 @@ return { [1]="crushing_blow_vs_ignited_and_fully_armour_broken" } }, - [420]={ + [464]={ [1]={ [1]={ limit={ @@ -10277,7 +11201,7 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [421]={ + [465]={ [1]={ [1]={ limit={ @@ -10293,7 +11217,7 @@ return { [1]="curse_apply_as_curse_zone" } }, - [422]={ + [466]={ [1]={ [1]={ limit={ @@ -10322,7 +11246,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [423]={ + [467]={ [1]={ [1]={ limit={ @@ -10338,7 +11262,23 @@ return { [1]="curse_ignores_curse_limit" } }, - [424]={ + [468]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills trigger Profane Decay on each target Cursed" + } + }, + stats={ + [1]="curse_triggers_decaying_hex" + } + }, + [469]={ [1]={ [1]={ limit={ @@ -10354,7 +11294,7 @@ return { [1]="curse_zones_are_hazards" } }, - [425]={ + [470]={ [1]={ [1]={ limit={ @@ -10370,7 +11310,7 @@ return { [1]="curses_reflected_to_self" } }, - [426]={ + [471]={ [1]={ [1]={ limit={ @@ -10399,7 +11339,7 @@ return { [1]="damage_+%_final_per_totem_in_radius_from_support_greatwood" } }, - [427]={ + [472]={ [1]={ [1]={ limit={ @@ -10428,7 +11368,7 @@ return { [1]="damage_over_time_+%" } }, - [428]={ + [473]={ [1]={ [1]={ limit={ @@ -10457,7 +11397,7 @@ return { [1]="damage_+%" } }, - [429]={ + [474]={ [1]={ [1]={ limit={ @@ -10486,7 +11426,7 @@ return { [1]="damage_+%_for_non_minions" } }, - [430]={ + [475]={ [1]={ [1]={ limit={ @@ -10515,7 +11455,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [431]={ + [476]={ [1]={ [1]={ limit={ @@ -10544,7 +11484,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [432]={ + [477]={ [1]={ [1]={ limit={ @@ -10573,7 +11513,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [433]={ + [478]={ [1]={ [1]={ limit={ @@ -10602,7 +11542,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [434]={ + [479]={ [1]={ [1]={ limit={ @@ -10631,7 +11571,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [435]={ + [480]={ [1]={ [1]={ limit={ @@ -10660,7 +11600,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [436]={ + [481]={ [1]={ [1]={ limit={ @@ -10689,7 +11629,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [437]={ + [482]={ [1]={ [1]={ limit={ @@ -10718,7 +11658,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [438]={ + [483]={ [1]={ [1]={ limit={ @@ -10747,7 +11687,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [439]={ + [484]={ [1]={ [1]={ limit={ @@ -10776,7 +11716,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [440]={ + [485]={ [1]={ [1]={ limit={ @@ -10805,7 +11745,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [441]={ + [486]={ [1]={ [1]={ limit={ @@ -10834,7 +11774,7 @@ return { [1]="damage_+%_while_an_ailment_on_you" } }, - [442]={ + [487]={ [1]={ [1]={ limit={ @@ -10863,7 +11803,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [443]={ + [488]={ [1]={ [1]={ limit={ @@ -10892,7 +11832,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [444]={ + [489]={ [1]={ [1]={ limit={ @@ -10908,7 +11848,7 @@ return { [1]="damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [445]={ + [490]={ [1]={ [1]={ limit={ @@ -10924,7 +11864,7 @@ return { [1]="damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [446]={ + [491]={ [1]={ [1]={ limit={ @@ -10953,7 +11893,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [447]={ + [492]={ [1]={ [1]={ limit={ @@ -10969,7 +11909,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [448]={ + [493]={ [1]={ [1]={ limit={ @@ -10985,7 +11925,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [449]={ + [494]={ [1]={ [1]={ limit={ @@ -11001,7 +11941,7 @@ return { [1]="dangerous_resolve_attack_damage_+1%_final_per_X_armour" } }, - [450]={ + [495]={ [1]={ [1]={ [1]={ @@ -11034,7 +11974,7 @@ return { [1]="dangerous_resolve_explosion_cooldown_ms" } }, - [451]={ + [496]={ [1]={ [1]={ [1]={ @@ -11067,7 +12007,7 @@ return { [1]="dangerous_resolve_stack_duration_ms" } }, - [452]={ + [497]={ [1]={ [1]={ limit={ @@ -11083,7 +12023,7 @@ return { [1]="daze_on_hit_vs_enemies_at_full_life" } }, - [453]={ + [498]={ [1]={ [1]={ [1]={ @@ -11116,7 +12056,7 @@ return { [1]="daze_self_on_critical_hit_for_X_ms" } }, - [454]={ + [499]={ [1]={ [1]={ limit={ @@ -11132,7 +12072,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [455]={ + [500]={ [1]={ [1]={ limit={ @@ -11148,7 +12088,7 @@ return { [1]="deal_no_elemental_damage" } }, - [456]={ + [501]={ [1]={ [1]={ limit={ @@ -11157,23 +12097,23 @@ return { [2]=1 } }, - text="Supported Skills deal your Thorns Damage on their next Hit after you Retaliate with Thorns" + text="Deal your Thorns damage to the next enemy Hit by Supported Skills after you Retaliate with Thorns" }, [2]={ limit={ [1]={ - [1]="#", + [1]=2, [2]="#" } }, - text="Supported Skills deal your Thorns Damage on their next {0} Hits after you Retaliate with Thorns" + text="Deal your Thorns damage to the next {0} enemies Hit by Supported Skills after you Retaliate with Thorns" } }, stats={ [1]="deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger" } }, - [457]={ + [502]={ [1]={ [1]={ limit={ @@ -11182,7 +12122,7 @@ return { [2]=1 } }, - text="Supported Skills deal your Thorns Damage twice on their next Hit after you Retaliate with Thorns" + text="Deal your Thorns damage twice to the next enemy Hit by Supported Skills after you Retaliate with Thorns" }, [2]={ limit={ @@ -11191,14 +12131,14 @@ return { [2]="#" } }, - text="Supported Skills deal your Thorns Damage twice on their next {0} Hits after you Retaliate with Thorns" + text="Deal your Thorns damage twice to the next {0} enemies Hit by Supported Skills after you Retaliate with Thorns" } }, stats={ [1]="deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger" } }, - [458]={ + [503]={ [1]={ [1]={ limit={ @@ -11227,7 +12167,7 @@ return { [1]="deathmark_minion_damage_+%_final" } }, - [459]={ + [504]={ [1]={ [1]={ limit={ @@ -11256,7 +12196,7 @@ return { [1]="difficulty_of_meeting_conditional_requirement_+%" } }, - [460]={ + [505]={ [1]={ [1]={ [1]={ @@ -11276,7 +12216,7 @@ return { [1]="display_base_intensity_loss" } }, - [461]={ + [506]={ [1]={ [1]={ limit={ @@ -11314,7 +12254,49 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [462]={ + [507]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Each Cursed Ground area from Supported Skills spawns a Witchtoad every {0} second, up to a Limit of {1}" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Each Cursed Ground area from Supported Skills spawns a Witchtoad every {0} seconds, up to a Limit of {1}" + } + }, + stats={ + [1]="doedre_cursed_ground_toad_spawn_interval_ms", + [2]="max_toads_per_doedre_cursed_ground" + } + }, + [508]={ [1]={ [1]={ limit={ @@ -11330,7 +12312,7 @@ return { [1]="dot_multiplier_+" } }, - [463]={ + [509]={ [1]={ [1]={ limit={ @@ -11346,7 +12328,36 @@ return { [1]="double_ancestral_boost_effect" } }, - [464]={ + [510]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Echoes from Supported Spells have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Echoes from Supported Spells have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="echoed_spell_area_of_effect_+%" + } + }, + [511]={ [1]={ [1]={ limit={ @@ -11362,7 +12373,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [465]={ + [512]={ [1]={ [1]={ limit={ @@ -11391,7 +12402,7 @@ return { [1]="elemental_damage_+%" } }, - [466]={ + [513]={ [1]={ [1]={ limit={ @@ -11420,7 +12431,7 @@ return { [1]="elusive_effect_+%" } }, - [467]={ + [514]={ [1]={ [1]={ limit={ @@ -11453,7 +12464,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [468]={ + [515]={ [1]={ [1]={ limit={ @@ -11482,7 +12493,23 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [469]={ + [516]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemy Hits have {0}% chance to treat all your Resistances as being 90% while a Supported Skill is active" + } + }, + stats={ + [1]="support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%" + } + }, + [517]={ [1]={ [1]={ limit={ @@ -11498,7 +12525,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [470]={ + [518]={ [1]={ [1]={ limit={ @@ -11527,7 +12554,7 @@ return { [1]="energy_generated_+%" } }, - [471]={ + [519]={ [1]={ [1]={ limit={ @@ -11543,56 +12570,35 @@ return { [1]="evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [472]={ + [520]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]="#", - [2]="#" - }, - [4]={ - [1]="#", - [2]="#" } }, - text="Supported Spells gain a Seal every {0}% of cast time, to a maximum of {3} Seals\nSupported Spells are Unsealed when cast, and their area of effect is increased for each Seal lost" + text="Minions from Supported Skills explode when reduced to Low Life, dealing {0}% of their maximum Life as Fire Damage to surrounding Enemies" } }, stats={ - [1]="expand_support_seal_gain_frequency_as_%_of_total_cast_time", - [2]="virtual_support_expand_charge_gain_interval_ms", - [3]="support_expand_charge_gain_interval_ms", - [4]="support_expand_max_seals" + [1]="explode_on_low_life_%_maximum_life_to_deal" } }, - [473]={ + [521]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Minions from Supported Skills explode when reduced to Low Life, dealing {0}% of their maximum Life as Fire Damage to surrounding Enemies" - } - }, - stats={ - [1]="explode_on_low_life_%_maximum_life_to_deal" - } - }, - [474]={ - [1]={ - [1]={ + text="Exposure applied has {0}% increased effect" + }, + [2]={ limit={ [1]={ [1]=1, @@ -11601,7 +12607,7 @@ return { }, text="Exposure applied by Supported Skills has {0}% increased effect" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -11619,7 +12625,7 @@ return { [1]="exposure_effect_+%" } }, - [475]={ + [522]={ [1]={ [1]={ limit={ @@ -11635,7 +12641,7 @@ return { [1]="faster_bleed_%" } }, - [476]={ + [523]={ [1]={ [1]={ limit={ @@ -11664,7 +12670,7 @@ return { [1]="faster_burn_%" } }, - [477]={ + [524]={ [1]={ [1]={ limit={ @@ -11680,7 +12686,7 @@ return { [1]="faster_poison_%" } }, - [478]={ + [525]={ [1]={ [1]={ limit={ @@ -11696,7 +12702,7 @@ return { [1]="faster_poison_%_per_current_rage" } }, - [479]={ + [526]={ [1]={ [1]={ limit={ @@ -11725,7 +12731,7 @@ return { [1]="feeding_frenzy_minion_damage_+%_final" } }, - [480]={ + [527]={ [1]={ [1]={ limit={ @@ -11754,7 +12760,7 @@ return { [1]="feeding_frenzy_minion_damage_taken_+%_final" } }, - [481]={ + [528]={ [1]={ [1]={ limit={ @@ -11770,7 +12776,7 @@ return { [1]="final_strike_attack_damage_%_dealt_as_armour_break" } }, - [482]={ + [529]={ [1]={ [1]={ limit={ @@ -11786,7 +12792,7 @@ return { [1]="final_strike_is_ancestrally_boosted" } }, - [483]={ + [530]={ [1]={ [1]={ limit={ @@ -11815,7 +12821,7 @@ return { [1]="fire_damage_+%" } }, - [484]={ + [531]={ [1]={ [1]={ limit={ @@ -11831,7 +12837,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [485]={ + [532]={ [1]={ [1]={ [1]={ @@ -11851,7 +12857,7 @@ return { [1]="firestorm_drop_burning_ground_duration_ms" } }, - [486]={ + [533]={ [1]={ [1]={ limit={ @@ -11867,7 +12873,7 @@ return { [1]="flame_pillar_support_maximum_pillars_per_skill_use" } }, - [487]={ + [534]={ [1]={ [1]={ limit={ @@ -11896,7 +12902,7 @@ return { [1]="fortify_duration_+%" } }, - [488]={ + [535]={ [1]={ [1]={ limit={ @@ -11905,14 +12911,14 @@ return { [2]="#" } }, - text="Enemies Frozen by Supported Skills have their Armour Broken equal to {0}% of Physical Damage taken while Frozen" + text="Hits against targets Frozen by Supported Skills Break Armour equal to {0}% of Physical damage dealt" } }, stats={ [1]="freeze_applies_%_physical_damage_taken_as_armour_break" } }, - [489]={ + [536]={ [1]={ [1]={ limit={ @@ -11928,7 +12934,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [490]={ + [537]={ [1]={ [1]={ limit={ @@ -11957,7 +12963,7 @@ return { [1]="freeze_duration_ms_+" } }, - [491]={ + [538]={ [1]={ [1]={ limit={ @@ -11986,7 +12992,7 @@ return { [1]="freeze_duration_+%" } }, - [492]={ + [539]={ [1]={ [1]={ [1]={ @@ -12006,7 +13012,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [493]={ + [540]={ [1]={ [1]={ limit={ @@ -12022,7 +13028,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [494]={ + [541]={ [1]={ [1]={ limit={ @@ -12051,7 +13057,7 @@ return { [1]="frost_bomb_damage_+%_final_per_100ms_duration" } }, - [495]={ + [542]={ [1]={ [1]={ limit={ @@ -12067,7 +13073,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [496]={ + [543]={ [1]={ [1]={ [1]={ @@ -12087,7 +13093,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [497]={ + [544]={ [1]={ [1]={ [1]={ @@ -12107,7 +13113,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [498]={ + [545]={ [1]={ [1]={ limit={ @@ -12123,7 +13129,7 @@ return { [1]="gain_%_of_base_wand_damage_as_added_spell_damage" } }, - [499]={ + [546]={ [1]={ [1]={ limit={ @@ -12139,7 +13145,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [500]={ + [547]={ [1]={ [1]={ [1]={ @@ -12190,7 +13196,7 @@ return { [3]="guard_on_stun_guard_duration_ms" } }, - [501]={ + [548]={ [1]={ [1]={ limit={ @@ -12206,7 +13212,7 @@ return { [1]="gain_X_perfection_on_successful_perfect_timing" } }, - [502]={ + [549]={ [1]={ [1]={ limit={ @@ -12222,7 +13228,7 @@ return { [1]="gain_X_tasalios_perfection_on_perfect_timing" } }, - [503]={ + [550]={ [1]={ [1]={ limit={ @@ -12238,7 +13244,7 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [504]={ + [551]={ [1]={ [1]={ limit={ @@ -12263,7 +13269,7 @@ return { [1]="gain_X_wildshard_stacks_on_cast" } }, - [505]={ + [552]={ [1]={ [1]={ [1]={ @@ -12296,7 +13302,7 @@ return { [1]="gain_dangerous_resolve_stack_per_X_ms_channeling" } }, - [506]={ + [553]={ [1]={ [1]={ limit={ @@ -12343,7 +13349,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [507]={ + [554]={ [1]={ [1]={ limit={ @@ -12359,7 +13365,7 @@ return { [1]="gain_energy_shield_cost_equal_to_intelligence" } }, - [508]={ + [555]={ [1]={ [1]={ limit={ @@ -12375,7 +13381,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [509]={ + [556]={ [1]={ [1]={ limit={ @@ -12391,7 +13397,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [510]={ + [557]={ [1]={ [1]={ limit={ @@ -12412,7 +13418,7 @@ return { [2]="consume_%_of_maximum_mana_flask_charges_on_skill_use" } }, - [511]={ + [558]={ [1]={ [1]={ limit={ @@ -12428,7 +13434,7 @@ return { [1]="gain_%_of_damage_as_physical_per_20_life_cost_up_to_40_%" } }, - [512]={ + [559]={ [1]={ [1]={ limit={ @@ -12444,7 +13450,7 @@ return { [1]="gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds" } }, - [513]={ + [560]={ [1]={ [1]={ limit={ @@ -12460,7 +13466,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [514]={ + [561]={ [1]={ [1]={ limit={ @@ -12485,7 +13491,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [515]={ + [562]={ [1]={ [1]={ [1]={ @@ -12518,7 +13524,7 @@ return { [1]="gain_unholy_might_for_X_ms_on_command" } }, - [516]={ + [563]={ [1]={ [1]={ [1]={ @@ -12538,7 +13544,23 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [517]={ + [564]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills grant {0}% of Maximum Rage on Melee hit" + } + }, + stats={ + [1]="gain_x%_of_maximum_rage_on_melee_hit" + } + }, + [565]={ [1]={ [1]={ limit={ @@ -12563,7 +13585,7 @@ return { [1]="gain_x_endurance_charges_on_heavy_stunning_unique_enemy" } }, - [518]={ + [566]={ [1]={ [1]={ limit={ @@ -12579,7 +13601,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [519]={ + [567]={ [1]={ [1]={ limit={ @@ -12595,7 +13617,7 @@ return { [1]="gem_display_quality_has_no_effect" } }, - [520]={ + [568]={ [1]={ [1]={ limit={ @@ -12611,7 +13633,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [521]={ + [569]={ [1]={ [1]={ limit={ @@ -12627,7 +13649,7 @@ return { [1]="global_knockback" } }, - [522]={ + [570]={ [1]={ [1]={ limit={ @@ -12648,7 +13670,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [523]={ + [571]={ [1]={ [1]={ limit={ @@ -12669,7 +13691,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [524]={ + [572]={ [1]={ [1]={ limit={ @@ -12690,7 +13712,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [525]={ + [573]={ [1]={ [1]={ limit={ @@ -12711,7 +13733,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [526]={ + [574]={ [1]={ [1]={ limit={ @@ -12732,7 +13754,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [527]={ + [575]={ [1]={ [1]={ limit={ @@ -12761,7 +13783,7 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [528]={ + [576]={ [1]={ [1]={ limit={ @@ -12777,7 +13799,7 @@ return { [1]="grenade_only_detonate_from_detonators" } }, - [529]={ + [577]={ [1]={ [1]={ limit={ @@ -12802,7 +13824,7 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [530]={ + [578]={ [1]={ [1]={ limit={ @@ -12831,7 +13853,7 @@ return { [1]="grenade_skill_cooldown_speed_+%" } }, - [531]={ + [579]={ [1]={ [1]={ limit={ @@ -12847,7 +13869,7 @@ return { [1]="grenade_skill_does_not_bounce_off_ground" } }, - [532]={ + [580]={ [1]={ [1]={ limit={ @@ -12876,7 +13898,7 @@ return { [1]="ground_effects_apply_cooldown_speed_+%_final" } }, - [533]={ + [581]={ [1]={ [1]={ limit={ @@ -12892,7 +13914,7 @@ return { [1]="ground_effects_cannot_trigger" } }, - [534]={ + [582]={ [1]={ [1]={ limit={ @@ -12917,7 +13939,7 @@ return { [1]="grounding_shocks_chance_%_to_create_orb_on_shocking_enemy" } }, - [535]={ + [583]={ [1]={ [1]={ limit={ @@ -12942,7 +13964,7 @@ return { [1]="haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed" } }, - [536]={ + [584]={ [1]={ [1]={ limit={ @@ -12967,7 +13989,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [537]={ + [585]={ [1]={ [1]={ limit={ @@ -12983,7 +14005,7 @@ return { [1]="hazards_trigger_at_end_of_duration_instead" } }, - [538]={ + [586]={ [1]={ [1]={ limit={ @@ -13012,7 +14034,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [539]={ + [587]={ [1]={ [1]={ limit={ @@ -13041,7 +14063,7 @@ return { [1]="hex_transfer_on_death_range_+%" } }, - [540]={ + [588]={ [1]={ [1]={ limit={ @@ -13070,7 +14092,7 @@ return { [1]="hit_damage_+%" } }, - [541]={ + [589]={ [1]={ [1]={ limit={ @@ -13086,7 +14108,7 @@ return { [1]="hits_ignore_enemy_fire_resistance" } }, - [542]={ + [590]={ [1]={ [1]={ limit={ @@ -13102,7 +14124,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [543]={ + [591]={ [1]={ [1]={ limit={ @@ -13118,7 +14140,7 @@ return { [1]="ice_crystal_explosion_cold_damage_can_impale" } }, - [544]={ + [592]={ [1]={ [1]={ limit={ @@ -13134,7 +14156,7 @@ return { [1]="ice_crystal_explosion_impale_chance_%" } }, - [545]={ + [593]={ [1]={ [1]={ limit={ @@ -13163,7 +14185,7 @@ return { [1]="ignite_duration_+%" } }, - [546]={ + [594]={ [1]={ [1]={ limit={ @@ -13192,7 +14214,7 @@ return { [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [547]={ + [595]={ [1]={ [1]={ limit={ @@ -13208,7 +14230,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [548]={ + [596]={ [1]={ [1]={ limit={ @@ -13237,7 +14259,7 @@ return { [1]="impale_magnitude_+%" } }, - [549]={ + [597]={ [1]={ [1]={ limit={ @@ -13262,7 +14284,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [550]={ + [598]={ [1]={ [1]={ limit={ @@ -13278,7 +14300,7 @@ return { [1]="impale_support_physical_damage_+%_final" } }, - [551]={ + [599]={ [1]={ [1]={ limit={ @@ -13307,7 +14329,7 @@ return { [1]="inc_aoe_plus_more_area_damage_+%_final" } }, - [552]={ + [600]={ [1]={ [1]={ [1]={ @@ -13340,7 +14362,7 @@ return { [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [553]={ + [601]={ [1]={ [1]={ [1]={ @@ -13373,7 +14395,7 @@ return { [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [554]={ + [602]={ [1]={ [1]={ [1]={ @@ -13406,7 +14428,7 @@ return { [1]="inflict_exposure_for_x_ms_on_shock" } }, - [555]={ + [603]={ [1]={ [1]={ limit={ @@ -13435,7 +14457,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [556]={ + [604]={ [1]={ [1]={ limit={ @@ -13460,7 +14482,7 @@ return { [1]="instability_on_critical_%_chance" } }, - [557]={ + [605]={ [1]={ [1]={ limit={ @@ -13476,7 +14498,7 @@ return { [1]="instilling_all_damage_%_to_gain_as_instilling_type" } }, - [558]={ + [606]={ [1]={ [1]={ limit={ @@ -13505,7 +14527,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [559]={ + [607]={ [1]={ [1]={ limit={ @@ -13521,7 +14543,7 @@ return { [1]="intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken" } }, - [560]={ + [608]={ [1]={ [1]={ limit={ @@ -13546,7 +14568,7 @@ return { [1]="iron_grip_damage_modifier_effectiveness_%" } }, - [561]={ + [609]={ [1]={ [1]={ limit={ @@ -13564,30 +14586,46 @@ return { [2]=100 } }, - text="DNT-UNUSED Modifiers to Melee damage also apply to Spell damage for the supported skill" + text="DNT-UNUSED Modifiers to Melee damage also apply to Spell damage for the supported skill" + } + }, + stats={ + [1]="iron_will_damage_modifier_effectiveness_%" + } + }, + [610]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Attacks with Supported Skills count as Exerted" } }, stats={ - [1]="iron_will_damage_modifier_effectiveness_%" + [1]="number_of_warcries_exerting_this_action" } }, - [562]={ + [611]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=1 + [1]="#", + [2]="#" } }, - text="Attacks with Supported Skills count as Exerted" + text="Melee Skills that don't raise a Shield deal {0}% more Damage if you've Blocked while using Supported Skills Recently" } }, stats={ - [1]="number_of_warcries_exerting_this_action" + [1]="knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently" } }, - [563]={ + [612]={ [1]={ [1]={ limit={ @@ -13603,7 +14641,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [564]={ + [613]={ [1]={ [1]={ limit={ @@ -13632,7 +14670,7 @@ return { [1]="knockback_distance_+%" } }, - [565]={ + [614]={ [1]={ [1]={ limit={ @@ -13648,7 +14686,7 @@ return { [1]="life_leech_from_source_not_removed_at_full_life" } }, - [566]={ + [615]={ [1]={ [1]={ limit={ @@ -13677,7 +14715,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [567]={ + [616]={ [1]={ [1]={ limit={ @@ -13706,7 +14744,23 @@ return { [1]="lightning_damage_+%" } }, - [568]={ + [617]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills only roll the minimum or maximum Damage value for Lightning Damage" + } + }, + stats={ + [1]="lightning_damage_roll_always_min_or_max" + } + }, + [618]={ [1]={ [1]={ limit={ @@ -13735,7 +14789,7 @@ return { [1]="local_gem_dex_requirement_+%" } }, - [569]={ + [619]={ [1]={ [1]={ limit={ @@ -13764,7 +14818,7 @@ return { [1]="local_gem_int_requirement_+%" } }, - [570]={ + [620]={ [1]={ [1]={ limit={ @@ -13793,7 +14847,7 @@ return { [1]="local_gem_str_requirement_+%" } }, - [571]={ + [621]={ [1]={ [1]={ limit={ @@ -13809,7 +14863,32 @@ return { [1]="lose_%_of_life_es_and_mana_when_skill_is_used" } }, - [572]={ + [622]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Lose {0}% of your Maximum Rage when you deal a Critical Hit with Supported Skills" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Lose all Rage when you deal a Critical Hit with Supported Skills" + } + }, + stats={ + [1]="lose_%_of_maximum_rage_on_dealing_critical_strike" + } + }, + [623]={ [1]={ [1]={ limit={ @@ -13825,7 +14904,7 @@ return { [1]="loyalty_%_of_redirected_damage_recouped_as_life_for_owner" } }, - [573]={ + [624]={ [1]={ [1]={ limit={ @@ -13854,7 +14933,7 @@ return { [1]="maim_effect_+%" } }, - [574]={ + [625]={ [1]={ [1]={ limit={ @@ -13879,7 +14958,7 @@ return { [1]="maim_on_hit_%" } }, - [575]={ + [626]={ [1]={ [1]={ limit={ @@ -13895,7 +14974,7 @@ return { [1]="mana_leech_from_elemental_instead" } }, - [576]={ + [627]={ [1]={ [1]={ limit={ @@ -13933,7 +15012,7 @@ return { [2]="manaweave_added_lightning_damage_%_cost_if_payable" } }, - [577]={ + [628]={ [1]={ [1]={ limit={ @@ -13949,7 +15028,7 @@ return { [1]="manaweave_added_cold_damage_%_cost_if_payable" } }, - [578]={ + [629]={ [1]={ [1]={ [1]={ @@ -13962,14 +15041,14 @@ return { [2]="#" } }, - text="Enemies Marked by Supported Skills cause you to Leech Mana equal to {0}% of Attack Damage they take from your Hits" + text="Enemies Marked by Supported Skills cause you to Leech Mana equal to {0}% of Physical Attack Damage they take from your Hits" } }, stats={ - [1]="marked_enemies_leech_attack_damage_taken_as_mana_to_you_permyriad" + [1]="marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad" } }, - [579]={ + [630]={ [1]={ [1]={ [1]={ @@ -13982,14 +15061,14 @@ return { [2]="#" } }, - text="Enemies Marked by Supported Skills cause you to Leech Life equal to {0}% of Attack Damage they take from your Hits" + text="Enemies Marked by Supported Skills cause you to Leech Life equal to {0}% of Physical Attack Damage they take from your Hits" } }, stats={ - [1]="marked_enemies_leech_attack_damage_taken_as_life_to_you_permyriad" + [1]="marked_enemies_leech_physical_attack_damage_taken_as_life_to_you_permyriad" } }, - [580]={ + [631]={ [1]={ [1]={ limit={ @@ -13998,14 +15077,14 @@ return { [2]="#" } }, - text="Enemies Marked by Supported Skills have Armour Broken equal to {0}% of Physical Damage taken" + text="Hits against targets Marked by Supported Skills Break Armour equal to {0}% of Physical damage dealt" } }, stats={ [1]="marked_target_%_physical_damage_taken_as_armour_break" } }, - [581]={ + [632]={ [1]={ [1]={ limit={ @@ -14021,7 +15100,7 @@ return { [1]="marks_avoid_consumption_when_first_activated" } }, - [582]={ + [633]={ [1]={ [1]={ limit={ @@ -14050,7 +15129,7 @@ return { [1]="support_melee_physical_damage_+%_final" } }, - [583]={ + [634]={ [1]={ [1]={ limit={ @@ -14059,7 +15138,7 @@ return { [2]=1 } }, - text="Maximum {0} area of Cursed Ground" + text="Limit {0} area of Cursed Ground" }, [2]={ limit={ @@ -14068,14 +15147,14 @@ return { [2]="#" } }, - text="Maximum {0} areas of Cursed Ground" + text="Limit {0} areas of Cursed Ground" } }, stats={ [1]="maximum_curse_zones_allowed" } }, - [584]={ + [635]={ [1]={ [1]={ limit={ @@ -14091,7 +15170,7 @@ return { [1]="maximum_dangerous_resolve_stacks" } }, - [585]={ + [636]={ [1]={ [1]={ limit={ @@ -14107,7 +15186,7 @@ return { [1]="maximum_intensify_stacks" } }, - [586]={ + [637]={ [1]={ [1]={ limit={ @@ -14136,7 +15215,7 @@ return { [1]="melee_damage_+%" } }, - [587]={ + [638]={ [1]={ [1]={ limit={ @@ -14165,7 +15244,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [588]={ + [639]={ [1]={ [1]={ limit={ @@ -14194,23 +15273,27 @@ return { [1]="melee_physical_damage_+%" } }, - [589]={ + [640]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Supported Skills have {0:+d} to Melee Strike Range" + text="Supported Skills have {0:+d} metres to Melee Strike Range" } }, stats={ [1]="melee_range_+" } }, - [590]={ + [641]={ [1]={ [1]={ limit={ @@ -14239,7 +15322,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [591]={ + [642]={ [1]={ [1]={ limit={ @@ -14268,7 +15351,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [592]={ + [643]={ [1]={ [1]={ limit={ @@ -14297,7 +15380,7 @@ return { [1]="mine_laying_speed_+%" } }, - [593]={ + [644]={ [1]={ [1]={ limit={ @@ -14326,7 +15409,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [594]={ + [645]={ [1]={ [1]={ limit={ @@ -14347,7 +15430,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [595]={ + [646]={ [1]={ [1]={ limit={ @@ -14363,7 +15446,7 @@ return { [1]="minimum_power_from_quality" } }, - [596]={ + [647]={ [1]={ [1]={ limit={ @@ -14392,7 +15475,7 @@ return { [1]="minion_actor_scale_+%" } }, - [597]={ + [648]={ [1]={ [1]={ limit={ @@ -14408,7 +15491,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [598]={ + [649]={ [1]={ [1]={ limit={ @@ -14437,7 +15520,7 @@ return { [1]="minion_attack_speed_+%" } }, - [599]={ + [650]={ [1]={ [1]={ limit={ @@ -14453,7 +15536,7 @@ return { [1]="minion_block_%" } }, - [600]={ + [651]={ [1]={ [1]={ limit={ @@ -14482,7 +15565,7 @@ return { [1]="minion_burning_damage_+%" } }, - [601]={ + [652]={ [1]={ [1]={ limit={ @@ -14511,7 +15594,27 @@ return { [1]="minion_cast_speed_+%" } }, - [602]={ + [653]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions from Supported Skills Blind Enemies within a {0} metre radius" + } + }, + stats={ + [1]="minion_cathas_brilliance_blind_aura_radius" + } + }, + [654]={ [1]={ [1]={ limit={ @@ -14527,7 +15630,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [603]={ + [655]={ [1]={ [1]={ limit={ @@ -14543,7 +15646,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [604]={ + [656]={ [1]={ [1]={ limit={ @@ -14572,7 +15675,7 @@ return { [1]="minion_command_skill_cooldown_speed_+%" } }, - [605]={ + [657]={ [1]={ [1]={ limit={ @@ -14601,7 +15704,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [606]={ + [658]={ [1]={ [1]={ limit={ @@ -14630,7 +15733,7 @@ return { [1]="minion_damage_+%" } }, - [607]={ + [659]={ [1]={ [1]={ limit={ @@ -14659,7 +15762,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [608]={ + [660]={ [1]={ [1]={ [1]={ @@ -14692,23 +15795,7 @@ return { [1]="minion_gain_unholy_might_for_X_ms_on_command" } }, - [609]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Minions from Supported Skills have {0}% chance to grant Feeding Frenzy to you on Hit" - } - }, - stats={ - [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" - } - }, - [610]={ + [661]={ [1]={ [1]={ limit={ @@ -14737,7 +15824,7 @@ return { [1]="minion_maximum_life_+%" } }, - [611]={ + [662]={ [1]={ [1]={ limit={ @@ -14766,7 +15853,7 @@ return { [1]="minion_movement_speed_+%" } }, - [612]={ + [663]={ [1]={ [1]={ [1]={ @@ -14791,7 +15878,7 @@ return { [2]="minion_on_death_heal_radius" } }, - [613]={ + [664]={ [1]={ [1]={ limit={ @@ -14820,7 +15907,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [614]={ + [665]={ [1]={ [1]={ limit={ @@ -14836,7 +15923,7 @@ return { [1]="minion_recover_%_maximum_life_on_hit" } }, - [615]={ + [666]={ [1]={ [1]={ limit={ @@ -14852,7 +15939,7 @@ return { [1]="minions_are_gigantic" } }, - [616]={ + [667]={ [1]={ [1]={ limit={ @@ -14868,7 +15955,7 @@ return { [1]="minions_cannot_be_damaged" } }, - [617]={ + [668]={ [1]={ [1]={ limit={ @@ -14884,7 +15971,7 @@ return { [1]="minions_deal_no_damage" } }, - [618]={ + [669]={ [1]={ [1]={ limit={ @@ -14909,81 +15996,23 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [619]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Mirage Archer fires {0} additional Projectiles with Supported Skills" - } - }, - stats={ - [1]="mirage_archer_number_of_additional_projectiles" - } - }, - [620]={ + [670]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 - } - }, - text="{0}% less Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" - } - }, - stats={ - [1]="mixed_maladies_bleed_effect_+%_final_vs_poisoned" - } - }, - [621]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, [2]="#" } }, - text="{0}% more Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" + text="Mirage Archer fires {0} additional Projectiles with Supported Skills" } }, stats={ - [1]="mixed_maladies_poison_effect_+%_final_vs_bleeding" + [1]="mirage_archer_number_of_additional_projectiles" } }, - [622]={ + [671]={ [1]={ [1]={ limit={ @@ -14992,7 +16021,7 @@ return { [2]="#" } }, - text="Projectiles Fired by Supported Skills have {0}% increased Projectile spread" + text="{0}% more Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" }, [2]={ [1]={ @@ -15005,14 +16034,14 @@ return { [2]=-1 } }, - text="Projectiles Fired by Supported Skills have {0}% reduced Projectile spread" + text="{0}% less Magnitude of Bleeding inflicted by Supported Skills against Poisoned Enemies" } }, stats={ - [1]="multiple_projectiles_projectile_spread_+%" + [1]="mixed_maladies_bleed_effect_+%_final_vs_poisoned" } }, - [623]={ + [672]={ [1]={ [1]={ limit={ @@ -15021,7 +16050,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased Area of Effect per Repeat" + text="{0}% more Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" }, [2]={ [1]={ @@ -15034,43 +16063,30 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% reduced Area of Effect per Repeat" + text="{0}% less Magnitude of Poison inflicted by Supported Skills against Bleeding Enemies" } }, stats={ - [1]="multistrike_area_of_effect_+%_per_repeat" + [1]="mixed_maladies_poison_effect_+%_final_vs_bleeding" } }, - [624]={ + [673]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="First Repeat of Supported Skills deals {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="First Repeat of Supported Skills deals {0}% less Damage" + text="Modifiers to number of Projectiles instead apply to the number times Projectiles from Supported Skills Chain from terrain" } }, stats={ - [1]="multistrike_damage_+%_final_on_first_repeat" + [1]="modifiers_to_number_of_projectiles_instead_apply_to_terrain_only_chains" } }, - [625]={ + [674]={ [1]={ [1]={ limit={ @@ -15079,7 +16095,7 @@ return { [2]="#" } }, - text="Second Repeat of Supported Skills deals {0}% more Damage" + text="{0}% increased Movement Speed Penalty while moving" }, [2]={ [1]={ @@ -15092,14 +16108,14 @@ return { [2]=-1 } }, - text="Second Repeat of Supported Skills deals {0}% less Damage" + text="{0}% reduced Movement Speed Penalty while moving" } }, stats={ - [1]="multistrike_damage_+%_final_on_second_repeat" + [1]="movement_speed_penalty_+%_while_performing_action" } }, - [626]={ + [675]={ [1]={ [1]={ limit={ @@ -15108,7 +16124,7 @@ return { [2]="#" } }, - text="Third Repeat of Supported Skills deals {0}% more Damage" + text="Projectiles Fired by Supported Skills have {0}% increased Projectile spread" }, [2]={ [1]={ @@ -15121,14 +16137,14 @@ return { [2]=-1 } }, - text="Third Repeat of Supported Skills deals {0}% less Damage" + text="Projectiles Fired by Supported Skills have {0}% reduced Projectile spread" } }, stats={ - [1]="multistrike_damage_+%_final_on_third_repeat" + [1]="multiple_projectiles_projectile_spread_+%" } }, - [627]={ + [676]={ [1]={ [1]={ limit={ @@ -15144,7 +16160,7 @@ return { [1]="never_freeze" } }, - [628]={ + [677]={ [1]={ [1]={ limit={ @@ -15160,7 +16176,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [629]={ + [678]={ [1]={ [1]={ limit={ @@ -15176,7 +16192,7 @@ return { [1]="no_cost" } }, - [630]={ + [679]={ [1]={ [1]={ limit={ @@ -15205,7 +16221,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [631]={ + [680]={ [1]={ [1]={ limit={ @@ -15234,7 +16250,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [632]={ + [681]={ [1]={ [1]={ limit={ @@ -15250,7 +16266,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [633]={ + [682]={ [1]={ [1]={ limit={ @@ -15266,7 +16282,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [634]={ + [683]={ [1]={ [1]={ limit={ @@ -15282,7 +16298,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" } }, - [635]={ + [684]={ [1]={ [1]={ limit={ @@ -15298,7 +16314,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" } }, - [636]={ + [685]={ [1]={ [1]={ limit={ @@ -15314,7 +16330,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [637]={ + [686]={ [1]={ [1]={ limit={ @@ -15330,7 +16346,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [638]={ + [687]={ [1]={ [1]={ limit={ @@ -15346,7 +16362,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_fire" } }, - [639]={ + [688]={ [1]={ [1]={ limit={ @@ -15362,7 +16378,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_chaos" } }, - [640]={ + [689]={ [1]={ [1]={ limit={ @@ -15378,7 +16394,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_fire" } }, - [641]={ + [690]={ [1]={ [1]={ limit={ @@ -15394,7 +16410,7 @@ return { [1]="non_skill_base_fire_damage_%_to_gain_as_chaos" } }, - [642]={ + [691]={ [1]={ [1]={ limit={ @@ -15410,7 +16426,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_chaos" } }, - [643]={ + [692]={ [1]={ [1]={ limit={ @@ -15426,7 +16442,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [644]={ + [693]={ [1]={ [1]={ limit={ @@ -15442,7 +16458,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold" } }, - [645]={ + [694]={ [1]={ [1]={ limit={ @@ -15458,7 +16474,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire" } }, - [646]={ + [695]={ [1]={ [1]={ limit={ @@ -15474,7 +16490,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [647]={ + [696]={ [1]={ [1]={ limit={ @@ -15490,7 +16506,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [648]={ + [697]={ [1]={ [1]={ limit={ @@ -15506,7 +16522,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos" } }, - [649]={ + [698]={ [1]={ [1]={ limit={ @@ -15522,7 +16538,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_fire" } }, - [650]={ + [699]={ [1]={ [1]={ limit={ @@ -15538,7 +16554,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning" } }, - [651]={ + [700]={ [1]={ [1]={ limit={ @@ -15554,7 +16570,7 @@ return { [1]="nova_skills_cast_at_target_location" } }, - [652]={ + [701]={ [1]={ [1]={ limit={ @@ -15579,7 +16595,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [653]={ + [702]={ [1]={ [1]={ limit={ @@ -15604,7 +16620,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [654]={ + [703]={ [1]={ [1]={ limit={ @@ -15620,7 +16636,7 @@ return { [1]="number_of_additional_poison_stacks" } }, - [655]={ + [704]={ [1]={ [1]={ limit={ @@ -15654,7 +16670,7 @@ return { [2]="number_of_additional_projectiles" } }, - [656]={ + [705]={ [1]={ [1]={ limit={ @@ -15679,7 +16695,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [657]={ + [706]={ [1]={ [1]={ limit={ @@ -15704,7 +16720,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [658]={ + [707]={ [1]={ [1]={ limit={ @@ -15729,7 +16745,7 @@ return { [1]="number_of_dual_cascade_aftershocks" } }, - [659]={ + [708]={ [1]={ [1]={ limit={ @@ -15758,7 +16774,7 @@ return { [1]="offering_spells_effect_+%" } }, - [660]={ + [709]={ [1]={ [1]={ limit={ @@ -15787,7 +16803,7 @@ return { [1]="offering_spells_effect_+%_if_consumed_additional_skeleton" } }, - [661]={ + [710]={ [1]={ [1]={ limit={ @@ -15812,7 +16828,7 @@ return { [1]="on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies" } }, - [662]={ + [711]={ [1]={ [1]={ [1]={ @@ -15832,49 +16848,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [663]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=2 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]=1000, - [2]=1000 - } - }, - text="Supported Skills Reserve {0}% of your maximum Life on use\nLife Reserved this way is Reserved for {1} second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=2 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills Reserve {0}% of your maximum Life on use\nLife Reserved this way is Reserved for {1} seconds" - } - }, - stats={ - [1]="overabundance_reserve_%_life_on_skill_use", - [2]="overabundance_life_reserved_for_x_ms" - } - }, - [664]={ + [712]={ [1]={ [1]={ limit={ @@ -15890,7 +16864,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [665]={ + [713]={ [1]={ [1]={ limit={ @@ -15915,7 +16889,7 @@ return { [1]="palm_skill_number_of_spirit_strikes" } }, - [666]={ + [714]={ [1]={ [1]={ limit={ @@ -15944,7 +16918,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [667]={ + [715]={ [1]={ [1]={ limit={ @@ -15969,7 +16943,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [668]={ + [716]={ [1]={ [1]={ limit={ @@ -15994,7 +16968,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [669]={ + [717]={ [1]={ [1]={ limit={ @@ -16019,7 +16993,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [670]={ + [718]={ [1]={ [1]={ limit={ @@ -16044,9 +17018,19 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [671]={ + [719]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% longer Perfect Timing window" + }, + [2]={ limit={ [1]={ [1]=1, @@ -16055,7 +17039,7 @@ return { }, text="Supported Skills have a {0}% longer Perfect Timing window" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -16073,7 +17057,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [672]={ + [720]={ [1]={ [1]={ limit={ @@ -16102,7 +17086,7 @@ return { [1]="physical_damage_+%" } }, - [673]={ + [721]={ [1]={ [1]={ limit={ @@ -16127,7 +17111,7 @@ return { [1]="pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite" } }, - [674]={ + [722]={ [1]={ [1]={ limit={ @@ -16143,7 +17127,7 @@ return { [1]="pin_almost_pinned_enemies" } }, - [675]={ + [723]={ [1]={ [1]={ limit={ @@ -16172,7 +17156,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [676]={ + [724]={ [1]={ [1]={ limit={ @@ -16188,7 +17172,46 @@ return { [1]="plant_skill_damage_+%_final_when_wet" } }, - [677]={ + [725]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Magnitude of Poison on targets that are not Poisoned" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Poison on targets that are not Poisoned" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Poison on targets that are not Poisoned" + } + }, + stats={ + [1]="poison_effect_+%_vs_non_poisoned_enemies" + } + }, + [726]={ [1]={ [1]={ limit={ @@ -16204,7 +17227,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [678]={ + [727]={ [1]={ [1]={ limit={ @@ -16229,7 +17252,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [679]={ + [728]={ [1]={ [1]={ limit={ @@ -16258,7 +17281,7 @@ return { [1]="projectile_damage_+%" } }, - [680]={ + [729]={ [1]={ [1]={ limit={ @@ -16287,7 +17310,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [681]={ + [730]={ [1]={ [1]={ limit={ @@ -16303,7 +17326,7 @@ return { [1]="projectile_randomly_fork_chain_or_pierce" } }, - [682]={ + [731]={ [1]={ [1]={ limit={ @@ -16319,7 +17342,7 @@ return { [1]="projectile_speed_additive_modifiers_also_apply_to_projectile_damage" } }, - [683]={ + [732]={ [1]={ [1]={ limit={ @@ -16348,7 +17371,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [684]={ + [733]={ [1]={ [1]={ limit={ @@ -16364,7 +17387,7 @@ return { [1]="projectiles_nova" } }, - [685]={ + [734]={ [1]={ [1]={ limit={ @@ -16380,7 +17403,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [686]={ + [735]={ [1]={ [1]={ limit={ @@ -16396,7 +17419,7 @@ return { [1]="projectiles_spiral" } }, - [687]={ + [736]={ [1]={ [1]={ [1]={ @@ -16416,7 +17439,7 @@ return { [1]="pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet" } }, - [688]={ + [737]={ [1]={ [1]={ limit={ @@ -16441,7 +17464,7 @@ return { [1]="rage_skip_consume_chance_%" } }, - [689]={ + [738]={ [1]={ [1]={ limit={ @@ -16457,7 +17480,7 @@ return { [1]="random_projectile_direction" } }, - [690]={ + [739]={ [1]={ [1]={ limit={ @@ -16473,7 +17496,7 @@ return { [1]="randomly_curse_self_on_skill_use" } }, - [691]={ + [740]={ [1]={ [1]={ limit={ @@ -16489,7 +17512,7 @@ return { [1]="recoup_mana_%_on_minion_death" } }, - [692]={ + [741]={ [1]={ [1]={ limit={ @@ -16505,7 +17528,7 @@ return { [1]="recoup_%_of_spell_cost_as_mana_on_cast" } }, - [693]={ + [742]={ [1]={ [1]={ [1]={ @@ -16525,7 +17548,7 @@ return { [1]="recover_%_life_and_mana_per_minute_for_supported_offering_lifetime" } }, - [694]={ + [743]={ [1]={ [1]={ limit={ @@ -16541,7 +17564,7 @@ return { [1]="recover_mana_%_on_minion_death" } }, - [695]={ + [744]={ [1]={ [1]={ [1]={ @@ -16561,23 +17584,33 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [696]={ + [745]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of maximum Life over four seconds on Culling an Enemy" + }, + [2]={ limit={ [1]={ [1]=1, [2]="#" } }, - text="Recover {}% of maximum Life over four seconds when Supported Skills Cull an Enemy" + text="Recover {0}% of maximum Life over four seconds when Supported Skills Cull an Enemy" } }, stats={ [1]="recover_%_maximum_life_on_cull" } }, - [697]={ + [746]={ [1]={ [1]={ limit={ @@ -16593,7 +17626,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [698]={ + [747]={ [1]={ [1]={ [1]={ @@ -16613,7 +17646,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [699]={ + [748]={ [1]={ [1]={ limit={ @@ -16629,7 +17662,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [700]={ + [749]={ [1]={ [1]={ limit={ @@ -16654,7 +17687,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [701]={ + [750]={ [1]={ [1]={ limit={ @@ -16679,7 +17712,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [702]={ + [751]={ [1]={ [1]={ limit={ @@ -16695,7 +17728,7 @@ return { [1]="regenerate_%_life_over_1_second_on_skill_use" } }, - [703]={ + [752]={ [1]={ [1]={ limit={ @@ -16724,7 +17757,7 @@ return { [1]="reload_speed_+%" } }, - [704]={ + [753]={ [1]={ [1]={ [1]={ @@ -16757,7 +17790,7 @@ return { [1]="remnant_delay_X_ms" } }, - [705]={ + [754]={ [1]={ [1]={ limit={ @@ -16766,7 +17799,7 @@ return { [2]="#" } }, - text="Remnants spawned by Supported Skills have\n{0}% increased effect" + text="Remnants from Supported Skills have\n{0}% increased effect" }, [2]={ [1]={ @@ -16779,14 +17812,14 @@ return { [2]=-1 } }, - text="Remnants spawned by Supported Skills have {0}% reduced effect" + text="Remnants from Supported Skills have {0}% reduced effect" } }, stats={ [1]="remnant_effect_+%" } }, - [706]={ + [755]={ [1]={ [1]={ limit={ @@ -16815,7 +17848,7 @@ return { [1]="remnant_pickup_range_+%" } }, - [707]={ + [756]={ [1]={ [1]={ limit={ @@ -16831,7 +17864,7 @@ return { [1]="remnants_affect_allies_in_presence_instead" } }, - [708]={ + [757]={ [1]={ [1]={ [1]={ @@ -16864,7 +17897,7 @@ return { [1]="remnants_vanish_after_X_ms" } }, - [709]={ + [758]={ [1]={ [1]={ limit={ @@ -16880,7 +17913,7 @@ return { [1]="remote_mined_by_support" } }, - [710]={ + [759]={ [1]={ [1]={ limit={ @@ -16896,7 +17929,7 @@ return { [1]="remove_ailment_when_applying_relevant_ailment" } }, - [711]={ + [760]={ [1]={ [1]={ limit={ @@ -16912,7 +17945,7 @@ return { [1]="remove_freeze_on_ignite" } }, - [712]={ + [761]={ [1]={ [1]={ limit={ @@ -16928,7 +17961,7 @@ return { [1]="repeat_last_step_of_combo_attack" } }, - [713]={ + [762]={ [1]={ [1]={ limit={ @@ -16944,7 +17977,7 @@ return { [1]="restore_%_life_on_skill_use_per_1000_ms_cooldown" } }, - [714]={ + [763]={ [1]={ [1]={ limit={ @@ -16960,7 +17993,7 @@ return { [1]="return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling" } }, - [715]={ + [764]={ [1]={ [1]={ [1]={ @@ -16980,7 +18013,23 @@ return { [1]="rip_support_life_remnant_creation_radius" } }, - [716]={ + [765]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Runically Boosted Skills Gain {0}% of\nDamage as Extra Physical Damage" + } + }, + stats={ + [1]="runic_boosted_attack_damage_%_gained_as_physical" + } + }, + [766]={ [1]={ [1]={ limit={ @@ -16996,7 +18045,7 @@ return { [1]="sacrifice_%_life_on_skill_use" } }, - [717]={ + [767]={ [1]={ [1]={ limit={ @@ -17012,7 +18061,36 @@ return { [1]="sacrificial_lamb_minion_always_detonatable" } }, - [718]={ + [768]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased Seal gain frequency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% reduced Seal gain frequency" + } + }, + stats={ + [1]="seal_gain_frequency_+%" + } + }, + [769]={ [1]={ [1]={ limit={ @@ -17028,7 +18106,7 @@ return { [1]="shapeshift_slam_skill_aftershock_chance_%" } }, - [719]={ + [770]={ [1]={ [1]={ limit={ @@ -17057,7 +18135,7 @@ return { [1]="shock_chance_+%" } }, - [720]={ + [771]={ [1]={ [1]={ limit={ @@ -17086,7 +18164,7 @@ return { [1]="shock_duration_+%" } }, - [721]={ + [772]={ [1]={ [1]={ limit={ @@ -17115,7 +18193,7 @@ return { [1]="shock_effect_+%" } }, - [722]={ + [773]={ [1]={ [1]={ limit={ @@ -17131,7 +18209,7 @@ return { [1]="shocks_reflected_to_self" } }, - [723]={ + [774]={ [1]={ [1]={ limit={ @@ -17160,7 +18238,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [724]={ + [775]={ [1]={ [1]={ limit={ @@ -17176,39 +18254,32 @@ return { [1]="skill_is_blessing_skill" } }, - [725]={ + [776]={ [1]={ [1]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=1, + [2]=1 } }, - text="Supported Skills have {0} fewer Maximum Stages and Seals" - } - }, - stats={ - [1]="skill_X_fewer_maximum_stages" - } - }, - [726]={ - [1]={ - [1]={ + text="Supported Skills fire {0} additional Projectile per Seal broken" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Minimum Stage or Seal count for Supported Skills is {0}" + text="Supported Skills fire {0} additional Projectiles per Seal broken" } }, stats={ - [1]="skill_X_minimum_stages" + [1]="skill_additional_projectiles_per_seal_broken" } }, - [727]={ + [777]={ [1]={ [1]={ limit={ @@ -17217,7 +18288,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% increased area of effect for each Seal lost" + text="Supported Skills get {0}% increased area of effect per Seal broken" }, [2]={ [1]={ @@ -17230,14 +18301,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0} reduced area of effect for each Seal lost" + text="Supported Skills get {0} reduced area of effect per Seal broken" } }, stats={ - [1]="skill_area_of_effect_+%_per_expand_seal" + [1]="skill_area_of_effect_+%_per_broken_seal" } }, - [728]={ + [778]={ [1]={ [1]={ limit={ @@ -17253,7 +18324,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [729]={ + [779]={ [1]={ [1]={ limit={ @@ -17282,7 +18353,7 @@ return { [1]="skill_buff_effect_+%" } }, - [730]={ + [780]={ [1]={ [1]={ limit={ @@ -17298,7 +18369,7 @@ return { [1]="skill_can_own_mirage_archers" } }, - [731]={ + [781]={ [1]={ [1]={ [1]={ @@ -17331,7 +18402,7 @@ return { [1]="skill_cannot_be_used_unless_stationary_for_X_ms" } }, - [732]={ + [782]={ [1]={ [1]={ limit={ @@ -17347,7 +18418,7 @@ return { [1]="skill_cannot_generate_endurance_charges" } }, - [733]={ + [783]={ [1]={ [1]={ limit={ @@ -17363,7 +18434,7 @@ return { [1]="skill_cannot_generate_frenzy_charges" } }, - [734]={ + [784]={ [1]={ [1]={ limit={ @@ -17379,7 +18450,7 @@ return { [1]="skill_cannot_generate_power_charges" } }, - [735]={ + [785]={ [1]={ [1]={ limit={ @@ -17395,7 +18466,7 @@ return { [1]="skill_conditional_requires_X_volatility" } }, - [736]={ + [786]={ [1]={ [1]={ [1]={ @@ -17437,7 +18508,7 @@ return { [2]="skill_consume_up_to_X_corpses_on_use" } }, - [737]={ + [787]={ [1]={ [1]={ limit={ @@ -17453,7 +18524,7 @@ return { [1]="skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage" } }, - [738]={ + [788]={ [1]={ [1]={ limit={ @@ -17482,7 +18553,7 @@ return { [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [739]={ + [789]={ [1]={ [1]={ limit={ @@ -17511,7 +18582,7 @@ return { [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [740]={ + [790]={ [1]={ [1]={ limit={ @@ -17527,18 +18598,42 @@ return { [1]="skill_detonate_random_volatility_amount_on_use" } }, - [741]={ + [791]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]=1, [2]="#" } }, - text="Supported Skills have {0}% increased Detonation Time" + text="{0}% increased Detonation Time" }, [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Detonation Time" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% increased Detonation Time" + }, + [4]={ [1]={ k="negate", v=1 @@ -17556,7 +18651,32 @@ return { [1]="skill_detonation_time_+%" } }, - [742]={ + [792]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Spells Echo {0} time per Seal broken" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Spells Echo {0} times per Seal broken" + } + }, + stats={ + [1]="skill_echoes_per_seal_broken" + } + }, + [793]={ [1]={ [1]={ limit={ @@ -17585,7 +18705,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [743]={ + [794]={ [1]={ [1]={ limit={ @@ -17614,7 +18734,7 @@ return { [1]="skill_effect_duration_+%" } }, - [744]={ + [795]={ [1]={ [1]={ limit={ @@ -17643,7 +18763,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [745]={ + [796]={ [1]={ [1]={ limit={ @@ -17672,7 +18792,32 @@ return { [1]="skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%" } }, - [746]={ + [797]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills gain a Seal every time you Block" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills gain a Seal every {0} times you Block" + } + }, + stats={ + [1]="skill_gain_seal_every_x_hits_blocked" + } + }, + [798]={ [1]={ [1]={ limit={ @@ -17688,7 +18833,7 @@ return { [1]="skill_grenade_detonate_only_at_end_of_duration" } }, - [747]={ + [799]={ [1]={ [1]={ limit={ @@ -17704,7 +18849,7 @@ return { [1]="skill_has_double_limit" } }, - [748]={ + [800]={ [1]={ [1]={ limit={ @@ -17720,7 +18865,7 @@ return { [1]="skill_has_spectral_arrows" } }, - [749]={ + [801]={ [1]={ [1]={ limit={ @@ -17736,7 +18881,7 @@ return { [1]="skill_hyena_cackle_size" } }, - [750]={ + [802]={ [1]={ [1]={ limit={ @@ -17765,7 +18910,7 @@ return { [1]="skill_maximum_energy_+%" } }, - [751]={ + [803]={ [1]={ [1]={ limit={ @@ -17778,10 +18923,26 @@ return { } }, stats={ - [1]="skill_offering_targets_an_additional_skeleton" + [1]="skill_offering_targets_an_additional_skeleton" + } + }, + [804]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Repeat {0} time per Seal broken" + } + }, + stats={ + [1]="skill_rapid_fire_repeats_per_broken_seal" } }, - [752]={ + [805]={ [1]={ [1]={ limit={ @@ -17790,7 +18951,7 @@ return { [2]="#" } }, - text="{0}% increased Skill Speed while total Resonance is over 250" + text="{0}% increased Skill Speed while total Affinity is over 250" }, [2]={ [1]={ @@ -17803,14 +18964,14 @@ return { [2]=-1 } }, - text="{0}% reduced Skill Speed while total Resonance is over 250" + text="{0}% reduced Skill Speed while total Affinity is over 250" } }, stats={ [1]="trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant" } }, - [753]={ + [806]={ [1]={ [1]={ [1]={ @@ -17830,7 +18991,36 @@ return { [1]="skill_unusable_until_moved_X_distance" } }, - [754]={ + [807]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Spells deal {0}% more Damage when\ncast by Fractured Mimics" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Spells deal {0}% less Damage when\ncast by Fractured Mimics" + } + }, + stats={ + [1]="skill_used_by_fractured_mimic_spell_damage_+%_final" + } + }, + [808]={ [1]={ [1]={ limit={ @@ -17846,7 +19036,7 @@ return { [1]="skill_wolf_pack_size" } }, - [755]={ + [809]={ [1]={ [1]={ limit={ @@ -17862,7 +19052,7 @@ return { [1]="skills_are_usable_without_mana_cost_while_surrounded" } }, - [756]={ + [810]={ [1]={ [1]={ limit={ @@ -17878,7 +19068,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [757]={ + [811]={ [1]={ [1]={ limit={ @@ -17907,7 +19097,7 @@ return { [1]="snipe_triggered_skill_damage_+%_final" } }, - [758]={ + [812]={ [1]={ [1]={ [1]={ @@ -17927,7 +19117,7 @@ return { [1]="solar_orb_base_pulse_frequency_ms" } }, - [759]={ + [813]={ [1]={ [1]={ limit={ @@ -17956,7 +19146,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [760]={ + [814]={ [1]={ [1]={ limit={ @@ -17985,7 +19175,7 @@ return { [1]="spell_damage_+%" } }, - [761]={ + [815]={ [1]={ [1]={ limit={ @@ -18001,23 +19191,7 @@ return { [1]="spell_daze_on_critical_hit_dealing_physical_damage" } }, - [762]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Final Repeat of Supported Skills has {0}% chance to deal Double Damage" - } - }, - stats={ - [1]="spell_echo_plus_chance_double_damage_%_final" - } - }, - [763]={ + [816]={ [1]={ [1]={ limit={ @@ -18033,7 +19207,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [764]={ + [817]={ [1]={ [1]={ limit={ @@ -18049,7 +19223,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack" } }, - [765]={ + [818]={ [1]={ [1]={ [1]={ @@ -18082,7 +19256,7 @@ return { [1]="static_strike_base_zap_frequency_ms" } }, - [766]={ + [819]={ [1]={ [1]={ limit={ @@ -18098,7 +19272,7 @@ return { [1]="static_strike_zap_speed_+%" } }, - [767]={ + [820]={ [1]={ [1]={ [1]={ @@ -18118,7 +19292,7 @@ return { [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" } }, - [768]={ + [821]={ [1]={ [1]={ limit={ @@ -18134,7 +19308,7 @@ return { [1]="storm_skills_spawn_at_initiator_location" } }, - [769]={ + [822]={ [1]={ [1]={ limit={ @@ -18150,7 +19324,7 @@ return { [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [770]={ + [823]={ [1]={ [1]={ limit={ @@ -18166,7 +19340,7 @@ return { [1]="strikes_are_ancestrally_boosted" } }, - [771]={ + [824]={ [1]={ [1]={ limit={ @@ -18182,7 +19356,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [772]={ + [825]={ [1]={ [1]={ limit={ @@ -18211,7 +19385,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [773]={ + [826]={ [1]={ [1]={ [1]={ @@ -18241,7 +19415,7 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [774]={ + [827]={ [1]={ [1]={ limit={ @@ -18266,7 +19440,27 @@ return { [1]="support_%_chance_to_trigger_deadly_current_on_shock" } }, - [775]={ + [828]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Spells gain a Seal every {0}% of cast time" + } + }, + stats={ + [1]="support_%_of_total_cast_time_as_base_skill_seal_gain_interval" + } + }, + [829]={ [1]={ [1]={ limit={ @@ -18295,7 +19489,7 @@ return { [1]="support_ablation_offering_skill_damage_+%_final" } }, - [776]={ + [830]={ [1]={ [1]={ limit={ @@ -18320,7 +19514,7 @@ return { [1]="support_added_cooldown_count_if_not_instant" } }, - [777]={ + [831]={ [1]={ [1]={ limit={ @@ -18349,7 +19543,7 @@ return { [1]="support_additional_accurary_rating_+%_final" } }, - [778]={ + [832]={ [1]={ [1]={ limit={ @@ -18378,7 +19572,7 @@ return { [1]="support_additional_fissures_damage_+%_final" } }, - [779]={ + [833]={ [1]={ [1]={ limit={ @@ -18407,7 +19601,7 @@ return { [1]="support_additional_fissures_skill_speed_+%_final" } }, - [780]={ + [834]={ [1]={ [1]={ limit={ @@ -18423,7 +19617,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [781]={ + [835]={ [1]={ [1]={ limit={ @@ -18452,7 +19646,7 @@ return { [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds" } }, - [782]={ + [836]={ [1]={ [1]={ limit={ @@ -18481,7 +19675,7 @@ return { [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds" } }, - [783]={ + [837]={ [1]={ [1]={ limit={ @@ -18519,7 +19713,7 @@ return { [1]="support_advancing_assault_projectile_damage_+%_final" } }, - [784]={ + [838]={ [1]={ [1]={ limit={ @@ -18548,7 +19742,7 @@ return { [1]="support_ailment_cooldown_ailment_chance_+%_final" } }, - [785]={ + [839]={ [1]={ [1]={ limit={ @@ -18577,7 +19771,7 @@ return { [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [786]={ + [840]={ [1]={ [1]={ limit={ @@ -18606,7 +19800,7 @@ return { [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [787]={ + [841]={ [1]={ [1]={ limit={ @@ -18635,7 +19829,7 @@ return { [1]="support_ammo_conservation_crossbow_reload_speed_+%_final" } }, - [788]={ + [842]={ [1]={ [1]={ limit={ @@ -18664,7 +19858,7 @@ return { [1]="support_ancestral_call_damage_+%_final" } }, - [789]={ + [843]={ [1]={ [1]={ limit={ @@ -18693,36 +19887,7 @@ return { [1]="support_ancestral_warrior_totem_attack_speed_+%_final" } }, - [790]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% increased Seal gain frequency" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills have {0}% reduced Seal gain frequency" - } - }, - stats={ - [1]="support_anticipation_charge_gain_frequency_+%" - } - }, - [791]={ + [844]={ [1]={ [1]={ limit={ @@ -18751,7 +19916,7 @@ return { [1]="support_aoe_cooldown_aoe_+%_final" } }, - [792]={ + [845]={ [1]={ [1]={ limit={ @@ -18767,7 +19932,7 @@ return { [1]="support_apply_daze_on_armour_break" } }, - [793]={ + [846]={ [1]={ [1]={ limit={ @@ -18783,7 +19948,7 @@ return { [1]="support_apply_daze_on_warcry" } }, - [794]={ + [847]={ [1]={ [1]={ limit={ @@ -18812,7 +19977,7 @@ return { [1]="support_arcane_archery_damage_+%_final" } }, - [795]={ + [848]={ [1]={ [1]={ limit={ @@ -18841,7 +20006,7 @@ return { [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" } }, - [796]={ + [849]={ [1]={ [1]={ limit={ @@ -18870,7 +20035,7 @@ return { [1]="support_area_of_effect_+%_final" } }, - [797]={ + [850]={ [1]={ [1]={ limit={ @@ -18886,7 +20051,7 @@ return { [1]="support_armour_explosion" } }, - [798]={ + [851]={ [1]={ [1]={ limit={ @@ -18915,7 +20080,7 @@ return { [1]="support_arms_length_knockback_distance_+%_final" } }, - [799]={ + [852]={ [1]={ [1]={ limit={ @@ -18944,7 +20109,7 @@ return { [1]="support_astral_projection_aoe_+%_final" } }, - [800]={ + [853]={ [1]={ [1]={ limit={ @@ -18973,7 +20138,7 @@ return { [1]="support_attack_damage_spirit_cost_attack_damage_+%_on_low_life" } }, - [801]={ + [854]={ [1]={ [1]={ limit={ @@ -19002,7 +20167,7 @@ return { [1]="support_atziri_curse_effect_+%_final" } }, - [802]={ + [855]={ [1]={ [1]={ [1]={ @@ -19022,7 +20187,7 @@ return { [1]="support_aura_duration_base_buff_duration" } }, - [803]={ + [856]={ [1]={ [1]={ limit={ @@ -19051,7 +20216,7 @@ return { [1]="support_auto_shotgun_attack_speed_+%_final" } }, - [804]={ + [857]={ [1]={ [1]={ limit={ @@ -19080,7 +20245,7 @@ return { [1]="support_auto_shotgun_damage_+%_final" } }, - [805]={ + [858]={ [1]={ [1]={ limit={ @@ -19109,7 +20274,7 @@ return { [1]="support_auto_shotgun_projectile_count_+%_final" } }, - [806]={ + [859]={ [1]={ [1]={ limit={ @@ -19138,7 +20303,7 @@ return { [1]="support_auto_shotgun_reload_speed_+%_final" } }, - [807]={ + [860]={ [1]={ [1]={ limit={ @@ -19167,7 +20332,7 @@ return { [1]="support_barrage_attack_time_+%_per_projectile_fired" } }, - [808]={ + [861]={ [1]={ [1]={ limit={ @@ -19196,7 +20361,7 @@ return { [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" } }, - [809]={ + [862]={ [1]={ [1]={ limit={ @@ -19225,7 +20390,7 @@ return { [1]="support_biting_frost_damage_+%_final_vs_frozen_unique_enemies" } }, - [810]={ + [863]={ [1]={ [1]={ [1]={ @@ -19267,7 +20432,7 @@ return { [2]="support_blazing_crits_base_duration_ms" } }, - [811]={ + [864]={ [1]={ [1]={ [1]={ @@ -19287,7 +20452,7 @@ return { [1]="support_blood_fountain_life_regeneration_rate_per_minute_%" } }, - [812]={ + [865]={ [1]={ [1]={ limit={ @@ -19316,7 +20481,7 @@ return { [1]="support_blood_thirst_damage_+%_final" } }, - [813]={ + [866]={ [1]={ [1]={ limit={ @@ -19341,7 +20506,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [814]={ + [867]={ [1]={ [1]={ limit={ @@ -19357,7 +20522,7 @@ return { [1]="support_bone_shrapnel_physical_damage_equal_to_%_monster_life" } }, - [815]={ + [868]={ [1]={ [1]={ limit={ @@ -19386,7 +20551,7 @@ return { [1]="support_brand_area_of_effect_+%_final" } }, - [816]={ + [869]={ [1]={ [1]={ limit={ @@ -19415,7 +20580,23 @@ return { [1]="support_brand_damage_+%_final" } }, - [817]={ + [870]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Break {0}% of Armour when Freezing or Electrocuting targets" + } + }, + stats={ + [1]="support_break_%_armour_on_freeze_or_electrocute" + } + }, + [871]={ [1]={ [1]={ limit={ @@ -19444,7 +20625,7 @@ return { [1]="support_brink_damage_+%_final_vs_heavy_stunned_target" } }, - [818]={ + [872]={ [1]={ [1]={ limit={ @@ -19473,7 +20654,7 @@ return { [1]="support_brink_hit_damage_stun_multiplier_+%_final" } }, - [819]={ + [873]={ [1]={ [1]={ limit={ @@ -19502,7 +20683,7 @@ return { [1]="support_burning_damage_+%_final" } }, - [820]={ + [874]={ [1]={ [1]={ limit={ @@ -19518,7 +20699,7 @@ return { [1]="support_burning_runes_base_fire_damage_equal_to_%_maximum_mana" } }, - [821]={ + [875]={ [1]={ [1]={ limit={ @@ -19539,7 +20720,7 @@ return { [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [822]={ + [876]={ [1]={ [1]={ limit={ @@ -19555,7 +20736,7 @@ return { [1]="support_called_shots_additional_projectiles_when_matching_indicated_direction" } }, - [823]={ + [877]={ [1]={ [1]={ limit={ @@ -19584,7 +20765,7 @@ return { [1]="support_called_shots_projectile_damage_+%_final_when_matching_direction" } }, - [824]={ + [878]={ [1]={ [1]={ limit={ @@ -19600,7 +20781,7 @@ return { [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [825]={ + [879]={ [1]={ [1]={ limit={ @@ -19629,7 +20810,7 @@ return { [1]="support_cast_on_crit_quality_attack_damage_+%_final" } }, - [826]={ + [880]={ [1]={ [1]={ limit={ @@ -19658,7 +20839,7 @@ return { [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" } }, - [827]={ + [881]={ [1]={ [1]={ limit={ @@ -19674,7 +20855,7 @@ return { [1]="support_catalysing_elements_triggers_elemental_discharge" } }, - [828]={ + [882]={ [1]={ [1]={ limit={ @@ -19703,7 +20884,7 @@ return { [1]="support_chance_to_bleed_bleeding_effect_+%_final" } }, - [829]={ + [883]={ [1]={ [1]={ limit={ @@ -19745,7 +20926,7 @@ return { [2]="support_channelling_damage_cap" } }, - [830]={ + [884]={ [1]={ [1]={ limit={ @@ -19774,7 +20955,7 @@ return { [1]="support_chaos_attacks_damage_+%_final" } }, - [831]={ + [885]={ [1]={ [1]={ limit={ @@ -19803,7 +20984,7 @@ return { [1]="support_chaos_damage_+%_final_if_corpse_consumed_on_use" } }, - [832]={ + [886]={ [1]={ [1]={ limit={ @@ -19832,7 +21013,7 @@ return { [1]="support_chaos_damage_+%_final_per_corpse_consumed_on_use" } }, - [833]={ + [887]={ [1]={ [1]={ limit={ @@ -19861,7 +21042,7 @@ return { [1]="support_chaos_support_non_chaos_damage_+%_final" } }, - [834]={ + [888]={ [1]={ [1]={ limit={ @@ -19877,7 +21058,7 @@ return { [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [835]={ + [889]={ [1]={ [1]={ limit={ @@ -19906,7 +21087,7 @@ return { [1]="support_chaotic_assassination_skill_effect_duration_+%_final" } }, - [836]={ + [890]={ [1]={ [1]={ limit={ @@ -19922,7 +21103,7 @@ return { [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" } }, - [837]={ + [891]={ [1]={ [1]={ limit={ @@ -19947,7 +21128,7 @@ return { [1]="support_charged_shots_applies_every_X_shots" } }, - [838]={ + [892]={ [1]={ [1]={ limit={ @@ -19963,7 +21144,7 @@ return { [1]="support_charged_shots_%_damage_to_gain_as_lightning" } }, - [839]={ + [893]={ [1]={ [1]={ limit={ @@ -19979,7 +21160,7 @@ return { [1]="support_charged_shots_recover_%_mana_cost_on_use" } }, - [840]={ + [894]={ [1]={ [1]={ limit={ @@ -20008,7 +21189,7 @@ return { [1]="support_charm_charges_gained_+%_final_from_killing_blow" } }, - [841]={ + [895]={ [1]={ [1]={ limit={ @@ -20037,7 +21218,7 @@ return { [1]="support_chilled_ground_effect_duration_+%_final" } }, - [842]={ + [896]={ [1]={ [1]={ limit={ @@ -20066,7 +21247,7 @@ return { [1]="support_clarity_mana_regeneration_rate_+%" } }, - [843]={ + [897]={ [1]={ [1]={ limit={ @@ -20082,7 +21263,7 @@ return { [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [844]={ + [898]={ [1]={ [1]={ limit={ @@ -20111,7 +21292,7 @@ return { [1]="support_clustertrap_damage_+%_final" } }, - [845]={ + [899]={ [1]={ [1]={ limit={ @@ -20140,7 +21321,7 @@ return { [1]="support_cold_and_fire_damage_+%_final" } }, - [846]={ + [900]={ [1]={ [1]={ limit={ @@ -20169,7 +21350,7 @@ return { [1]="support_cold_and_lightning_damage_+%_final" } }, - [847]={ + [901]={ [1]={ [1]={ limit={ @@ -20198,7 +21379,7 @@ return { [1]="support_cold_exposure_damage_+%_final" } }, - [848]={ + [902]={ [1]={ [1]={ limit={ @@ -20227,7 +21408,7 @@ return { [1]="support_combo_finisher_damage_+%_final" } }, - [849]={ + [903]={ [1]={ [1]={ limit={ @@ -20236,7 +21417,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage per Combo" + text="Supported Skills deal {0}% more Damage per Combo expended" }, [2]={ [1]={ @@ -20249,14 +21430,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage per Combo" + text="Supported Skills deal {0}% less Damage per Combo expended" } }, stats={ [1]="support_combo_finisher_damage_+%_final_per_combo" } }, - [850]={ + [904]={ [1]={ [1]={ limit={ @@ -20272,7 +21453,7 @@ return { [1]="support_combo_finisher_next_use_requires_x_additional_combo" } }, - [851]={ + [905]={ [1]={ [1]={ limit={ @@ -20306,7 +21487,7 @@ return { [2]="support_combo_finisher_max_combo_required" } }, - [852]={ + [906]={ [1]={ [1]={ limit={ @@ -20335,7 +21516,7 @@ return { [1]="support_command_skill_damage_+%_final" } }, - [853]={ + [907]={ [1]={ [1]={ limit={ @@ -20373,7 +21554,7 @@ return { [2]="consume_%_of_maximum_life_flask_charges_on_skill_use" } }, - [854]={ + [908]={ [1]={ [1]={ limit={ @@ -20402,7 +21583,7 @@ return { [1]="support_conduction_chance_to_shock_+%_final" } }, - [855]={ + [909]={ [1]={ [1]={ limit={ @@ -20427,7 +21608,7 @@ return { [1]="support_consume_X_endurance_charges_on_use" } }, - [856]={ + [910]={ [1]={ [1]={ limit={ @@ -20456,7 +21637,7 @@ return { [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" } }, - [857]={ + [911]={ [1]={ [1]={ limit={ @@ -20485,89 +21666,52 @@ return { [1]="support_cooldown_reduction_cooldown_recovery_+%" } }, - [858]={ + [912]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Warcries have {0}% more Area of Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Warcries have {0}% less Area of Effect" + text="Supported Skills Cost {0}% of maximum Life for each time they have been used or Triggered Recently, up to a maximum of 30%" } }, stats={ - [1]="support_corrupting_cry_area_of_effect_+%_final" + [1]="support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%" } }, - [859]={ + [913]={ [1]={ [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, limit={ [1]={ [1]=1, [2]="#" } }, - text="Corrupted Blood deals {0}% of your Strength as\nPhysical Damage per second" - } - }, - stats={ - [1]="support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength" - } - }, - [860]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Corrupted Blood duration is {0} second" + text="Supported Warcries have {0}% more Area of Effect" }, [2]={ [1]={ - k="milliseconds_to_seconds_2dp_if_required", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Corrupted Blood duration is {0} seconds" + text="Supported Warcries have {0}% less Area of Effect" } }, stats={ - [1]="support_corrupting_cry_corrupted_blood_duration_ms" + [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [861]={ + [914]={ [1]={ [1]={ limit={ @@ -20583,32 +21727,7 @@ return { [1]="support_corrupting_cry_%_life_lost_per_corrupting_blood_applied" } }, - [862]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Supported Warcries inflict Corrupted Blood" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Supported Warcries inflict {0} Corrupted Blood Debuffs" - } - }, - stats={ - [1]="support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood" - } - }, - [863]={ + [915]={ [1]={ [1]={ limit={ @@ -20637,7 +21756,7 @@ return { [1]="support_crazed_minions_minion_damage_+%_final_if_revived_recently" } }, - [864]={ + [916]={ [1]={ [1]={ limit={ @@ -20653,7 +21772,7 @@ return { [1]="support_create_jagged_ground_if_consumed_endurance_charge" } }, - [865]={ + [917]={ [1]={ [1]={ limit={ @@ -20678,7 +21797,7 @@ return { [1]="support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals" } }, - [866]={ + [918]={ [1]={ [1]={ limit={ @@ -20707,7 +21826,7 @@ return { [1]="support_crescendo_non_final_strike_attack_speed_+%_final" } }, - [867]={ + [919]={ [1]={ [1]={ limit={ @@ -20736,7 +21855,7 @@ return { [1]="support_crit_cooldown_crit_chance_+%_final" } }, - [868]={ + [920]={ [1]={ [1]={ limit={ @@ -20765,7 +21884,7 @@ return { [1]="support_critical_damage_critical_strike_chance_+%_final" } }, - [869]={ + [921]={ [1]={ [1]={ limit={ @@ -20794,7 +21913,7 @@ return { [1]="support_critical_damage_hit_damage_+%_final" } }, - [870]={ + [922]={ [1]={ [1]={ [1]={ @@ -20814,7 +21933,7 @@ return { [1]="support_crushing_stuns_crush_on_stun_ms" } }, - [871]={ + [923]={ [1]={ [1]={ [1]={ @@ -20839,7 +21958,7 @@ return { [2]="support_crystalshatter_buff_duration" } }, - [872]={ + [924]={ [1]={ [1]={ limit={ @@ -20855,7 +21974,7 @@ return { [1]="support_culling_strike_vs_rare_or_unique_enemy" } }, - [873]={ + [925]={ [1]={ [1]={ limit={ @@ -20864,7 +21983,7 @@ return { [2]="#" } }, - text="Curse zones from Supported\nSkills erupt after {0}% more delay" + text="Supported Skills deal {0}% more Damage per Combo expended" }, [2]={ [1]={ @@ -20877,14 +21996,14 @@ return { [2]=-1 } }, - text="Curse zones from Supported\nSkills erupt after {0}% less delay" + text="Supported Skills deal {0}% less Damage per Combo expended" } }, stats={ - [1]="support_focus_curse_curse_delay_+%_final" + [1]="support_culmination_damage_+%_final_per_combo_stack" } }, - [874]={ + [926]={ [1]={ [1]={ limit={ @@ -20893,7 +22012,7 @@ return { [2]="#" } }, - text="Supported Curses have {0}% more Magnitudes" + text="Curse zones from Supported\nSkills erupt after {0}% more delay" }, [2]={ [1]={ @@ -20906,68 +22025,68 @@ return { [2]=-1 } }, - text="Supported Curses have {0}% less Magnitudes" + text="Curse zones from Supported\nSkills erupt after {0}% less delay" } }, stats={ - [1]="support_curse_effect_+%_final" + [1]="support_focus_curse_curse_delay_+%_final" } }, - [875]={ + [927]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=99 + [2]="#" } }, - text="{0}% chance to trigger Doedre's Dark Design when Enemies enter Cursed Ground created by Supported Skills" + text="Supported Curses have {0}% more Magnitudes" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ - [1]=100, - [2]="#" + [1]="#", + [2]=-1 } }, - text="Cursed Ground created by Supported Skills triggers Doedre's Dark Design when Enemies enter" + text="Supported Curses have {0}% less Magnitudes" } }, stats={ - [1]="support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%" + [1]="support_curse_effect_+%_final" } }, - [876]={ + [928]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=99 } }, - text="Supported Skills deal {0}% more Damage per Combo" + text="{0}% chance to trigger Doedre's Dark Design when Enemies enter Cursed Ground created by Supported Skills" }, [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ - [1]="#", - [2]=-1 + [1]=100, + [2]="#" } }, - text="Supported Skills deal {0}% less Damage per Combo" + text="Cursed Ground created by Supported Skills triggers Doedre's Dark Design when Enemies enter" } }, stats={ - [1]="support_damage_+%_final_per_combo_stack" + [1]="support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%" } }, - [877]={ + [929]={ [1]={ [1]={ limit={ @@ -20996,7 +22115,7 @@ return { [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" } }, - [878]={ + [930]={ [1]={ [1]={ limit={ @@ -21025,7 +22144,7 @@ return { [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" } }, - [879]={ + [931]={ [1]={ [1]={ limit={ @@ -21054,7 +22173,7 @@ return { [1]="support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton" } }, - [880]={ + [932]={ [1]={ [1]={ [1]={ @@ -21100,7 +22219,7 @@ return { [1]="support_daze_break_duration_ms" } }, - [881]={ + [933]={ [1]={ [1]={ [1]={ @@ -21146,7 +22265,7 @@ return { [1]="support_dazed_cry_duration_ms" } }, - [882]={ + [934]={ [1]={ [1]={ limit={ @@ -21175,7 +22294,7 @@ return { [1]="support_deadly_poison_hit_damage_+%_final" } }, - [883]={ + [935]={ [1]={ [1]={ limit={ @@ -21204,27 +22323,7 @@ return { [1]="support_deadly_poison_poison_effect_+%_final" } }, - [884]={ - [1]={ - [1]={ - [1]={ - k="per_minute_to_per_second", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills inflict Decay, dealing {0}% of Intelligence as Chaos damage per second for 8 seconds" - } - }, - stats={ - [1]="support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds" - } - }, - [885]={ + [936]={ [1]={ [1]={ limit={ @@ -21253,7 +22352,7 @@ return { [1]="support_deep_cuts_bleeding_effect_+%_final" } }, - [886]={ + [937]={ [1]={ [1]={ limit={ @@ -21282,7 +22381,7 @@ return { [1]="support_deep_cuts_hit_damage_+%_final" } }, - [887]={ + [938]={ [1]={ [1]={ limit={ @@ -21311,7 +22410,7 @@ return { [1]="support_deliberation_damage_+%_final" } }, - [888]={ + [939]={ [1]={ [1]={ limit={ @@ -21340,7 +22439,7 @@ return { [1]="support_deliberation_movement_speed_penalty_+%_final_while_performing_action" } }, - [889]={ + [940]={ [1]={ [1]={ limit={ @@ -21356,7 +22455,7 @@ return { [1]="support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%" } }, - [890]={ + [941]={ [1]={ [1]={ limit={ @@ -21385,7 +22484,7 @@ return { [1]="support_discount_accuracy_rating_+%_final_if_empowered" } }, - [891]={ + [942]={ [1]={ [1]={ limit={ @@ -21414,7 +22513,7 @@ return { [1]="support_discount_skill_cost_+%_final_if_empowered" } }, - [892]={ + [943]={ [1]={ [1]={ limit={ @@ -21443,7 +22542,7 @@ return { [1]="support_divine_cry_damage_+%_final" } }, - [893]={ + [944]={ [1]={ [1]={ limit={ @@ -21452,7 +22551,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage for each different Command Skill used in the last 15 seconds" + text="Supported Skills deal {0}% more Damage for each different Command Skill you have used in the last 15 seconds" }, [2]={ [1]={ @@ -21465,14 +22564,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage for each different Command Skill used in the last 15 seconds" + text="Supported Skills deal {0}% less Damage for each different Command Skill you have used in the last 15 seconds" } }, stats={ [1]="support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds" } }, - [894]={ + [945]={ [1]={ [1]={ limit={ @@ -21501,7 +22600,7 @@ return { [1]="support_double_barrel_crossbow_reload_speed_-%_final" } }, - [895]={ + [946]={ [1]={ [1]={ limit={ @@ -21526,7 +22625,7 @@ return { [1]="support_double_barrel_number_of_crossbow_bolts_+" } }, - [896]={ + [947]={ [1]={ [1]={ limit={ @@ -21542,7 +22641,7 @@ return { [1]="support_double_number_of_cooldown_uses" } }, - [897]={ + [948]={ [1]={ [1]={ limit={ @@ -21558,7 +22657,7 @@ return { [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [898]={ + [949]={ [1]={ [1]={ limit={ @@ -21587,7 +22686,7 @@ return { [1]="support_dual_cascade_aftershocks_attack_speed_+%_final" } }, - [899]={ + [950]={ [1]={ [1]={ limit={ @@ -21616,7 +22715,7 @@ return { [1]="support_echoing_cry_area_of_effect_+%_final" } }, - [900]={ + [951]={ [1]={ [1]={ limit={ @@ -21645,7 +22744,7 @@ return { [1]="support_echoing_cry_damage_+%_final" } }, - [901]={ + [952]={ [1]={ [1]={ [1]={ @@ -21678,7 +22777,7 @@ return { [1]="support_echoing_cry_warcry_monster_power_+%_final" } }, - [902]={ + [953]={ [1]={ [1]={ limit={ @@ -21707,7 +22806,23 @@ return { [1]="support_electrocute_damage_+%_final" } }, - [903]={ + [954]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Trigger Voltaic Fulmination on killing Electrocuted enemies" + } + }, + stats={ + [1]="support_electrocute_lineage_triggers_explosion" + } + }, + [955]={ [1]={ [1]={ limit={ @@ -21736,7 +22851,7 @@ return { [1]="support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target" } }, - [904]={ + [956]={ [1]={ [1]={ limit={ @@ -21765,7 +22880,7 @@ return { [1]="support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target" } }, - [905]={ + [957]={ [1]={ [1]={ limit={ @@ -21794,7 +22909,7 @@ return { [1]="support_elemental_damage_+%_final_per_different_elemental_skill_used_recently" } }, - [906]={ + [958]={ [1]={ [1]={ limit={ @@ -21810,7 +22925,7 @@ return { [1]="support_empower_X_attacks_with_spark_on_power_charge_gain" } }, - [907]={ + [959]={ [1]={ [1]={ limit={ @@ -21826,7 +22941,7 @@ return { [1]="support_empowered_culling_strike" } }, - [908]={ + [960]={ [1]={ [1]={ limit={ @@ -21855,7 +22970,32 @@ return { [1]="support_empowered_damage_+%_final" } }, - [909]={ + [961]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Skills Empower an additional Skill use" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Supported Skills Empower {0} additional Skill uses" + } + }, + stats={ + [1]="support_empowers_x_additional_other_skills" + } + }, + [962]={ [1]={ [1]={ limit={ @@ -21884,7 +23024,7 @@ return { [1]="support_eternal_flame_chance_to_ignite_+%_final" } }, - [910]={ + [963]={ [1]={ [1]={ limit={ @@ -21913,7 +23053,7 @@ return { [1]="support_executioner_damage_+%_final_while_on_low_life" } }, - [911]={ + [964]={ [1]={ [1]={ limit={ @@ -21942,7 +23082,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [912]={ + [965]={ [1]={ [1]={ [1]={ @@ -21962,7 +23102,7 @@ return { [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [913]={ + [966]={ [1]={ [1]={ [1]={ @@ -21982,7 +23122,7 @@ return { [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" } }, - [914]={ + [967]={ [1]={ [1]={ limit={ @@ -21998,7 +23138,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [915]={ + [968]={ [1]={ [1]={ limit={ @@ -22014,7 +23154,7 @@ return { [1]="support_explosive_growth_trigger_explosion_on_plant_growth" } }, - [916]={ + [969]={ [1]={ [1]={ limit={ @@ -22030,7 +23170,7 @@ return { [1]="support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies" } }, - [917]={ + [970]={ [1]={ [1]={ limit={ @@ -22046,7 +23186,7 @@ return { [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [918]={ + [971]={ [1]={ [1]={ limit={ @@ -22075,7 +23215,7 @@ return { [1]="support_faster_attacks_attack_speed_+%_final" } }, - [919]={ + [972]={ [1]={ [1]={ limit={ @@ -22104,7 +23244,7 @@ return { [1]="support_faster_attacks_damage_+%_final" } }, - [920]={ + [973]={ [1]={ [1]={ limit={ @@ -22133,7 +23273,7 @@ return { [1]="support_faster_casting_cast_speed_+%_final" } }, - [921]={ + [974]={ [1]={ [1]={ limit={ @@ -22162,7 +23302,7 @@ return { [1]="support_faster_casting_damage_+%_final" } }, - [922]={ + [975]={ [1]={ [1]={ limit={ @@ -22191,7 +23331,7 @@ return { [1]="support_faster_projectiles_projectile_speed_+%_final" } }, - [923]={ + [976]={ [1]={ [1]={ limit={ @@ -22220,7 +23360,7 @@ return { [1]="support_fire_and_lightning_damage_+%_final" } }, - [924]={ + [977]={ [1]={ [1]={ limit={ @@ -22249,7 +23389,7 @@ return { [1]="support_fire_exposure_damage_+%_final" } }, - [925]={ + [978]={ [1]={ [1]={ limit={ @@ -22274,7 +23414,7 @@ return { [1]="support_fissure_on_landing_create_X_fissures_on_impact" } }, - [926]={ + [979]={ [1]={ [1]={ limit={ @@ -22303,7 +23443,7 @@ return { [1]="support_focus_curse_curse_delay_+%_final" } }, - [927]={ + [980]={ [1]={ [1]={ limit={ @@ -22332,7 +23472,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [928]={ + [981]={ [1]={ [1]={ limit={ @@ -22361,7 +23501,7 @@ return { [1]="support_focused_ballista_totem_damage_+%_final" } }, - [929]={ + [982]={ [1]={ [1]={ limit={ @@ -22390,7 +23530,7 @@ return { [1]="support_fortify_melee_damage_+%_final" } }, - [930]={ + [983]={ [1]={ [1]={ limit={ @@ -22419,7 +23559,7 @@ return { [1]="support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final" } }, - [931]={ + [984]={ [1]={ [1]={ limit={ @@ -22435,7 +23575,7 @@ return { [1]="support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage" } }, - [932]={ + [985]={ [1]={ [1]={ limit={ @@ -22464,7 +23604,7 @@ return { [1]="support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies" } }, - [933]={ + [986]={ [1]={ [1]={ limit={ @@ -22480,7 +23620,7 @@ return { [1]="support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage" } }, - [934]={ + [987]={ [1]={ [1]={ limit={ @@ -22509,7 +23649,7 @@ return { [1]="support_fusillade_skill_speed_+%_final" } }, - [935]={ + [988]={ [1]={ [1]={ limit={ @@ -22538,7 +23678,7 @@ return { [1]="support_gambleshot_projectile_damage_+%_final" } }, - [936]={ + [989]={ [1]={ [1]={ limit={ @@ -22567,7 +23707,7 @@ return { [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [937]={ + [990]={ [1]={ [1]={ [1]={ @@ -22587,7 +23727,7 @@ return { [1]="support_ghost_base_duration" } }, - [938]={ + [991]={ [1]={ [1]={ limit={ @@ -22616,7 +23756,7 @@ return { [1]="support_glacier_ice_crystal_maximum_life_+%_final" } }, - [939]={ + [992]={ [1]={ [1]={ limit={ @@ -22645,7 +23785,7 @@ return { [1]="support_glory_required_+%_final" } }, - [940]={ + [993]={ [1]={ [1]={ limit={ @@ -22661,7 +23801,7 @@ return { [1]="support_grants_X_life_flask_charges_on_using_corpse" } }, - [941]={ + [994]={ [1]={ [1]={ limit={ @@ -22677,7 +23817,7 @@ return { [1]="support_grants_X_mana_flask_charges_on_using_corpse" } }, - [942]={ + [995]={ [1]={ [1]={ limit={ @@ -22706,7 +23846,7 @@ return { [1]="support_greater_projectile_intensity_projectile_damage_+%_final" } }, - [943]={ + [996]={ [1]={ [1]={ [1]={ @@ -22726,7 +23866,7 @@ return { [1]="support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius" } }, - [944]={ + [997]={ [1]={ [1]={ limit={ @@ -22755,7 +23895,7 @@ return { [1]="support_greatwood_maximum_life_+%_final" } }, - [945]={ + [998]={ [1]={ [1]={ limit={ @@ -22771,7 +23911,7 @@ return { [1]="support_greatwood_maximum_number_of_active_totems_in_radius_for_effects" } }, - [946]={ + [999]={ [1]={ [1]={ [1]={ @@ -22804,7 +23944,7 @@ return { [1]="support_greatwood_number_of_active_totems_in_base_radius_to_track" } }, - [947]={ + [1000]={ [1]={ [1]={ limit={ @@ -22833,7 +23973,7 @@ return { [1]="support_grenade_ballista_attack_speed_+%_final" } }, - [948]={ + [1001]={ [1]={ [1]={ limit={ @@ -22862,7 +24002,7 @@ return { [1]="support_grenade_ballista_damage_+%_final" } }, - [949]={ + [1002]={ [1]={ [1]={ limit={ @@ -22891,7 +24031,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [950]={ + [1003]={ [1]={ [1]={ limit={ @@ -22933,7 +24073,7 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [951]={ + [1004]={ [1]={ [1]={ limit={ @@ -22949,7 +24089,7 @@ return { [1]="support_haemocrystals_maximum_allowed_crystals" } }, - [952]={ + [1005]={ [1]={ [1]={ limit={ @@ -22974,7 +24114,7 @@ return { [1]="support_hardy_totems_trigger_splinter_explosion_on_death_chance_%" } }, - [953]={ + [1006]={ [1]={ [1]={ [1]={ @@ -23050,7 +24190,58 @@ return { [2]="support_hatching_elementals_base_radius" } }, - [954]={ + [1007]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1000, + [2]=1000 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Lose up to {0}% of your maximum Runic Ward every {1} second to heal nearby allies for a total of {2}% of the amount of Ward lost" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Lose up to {0}% of your maximum Runic Ward every {1} seconds to heal nearby allies for a total of {2}% of the amount of Ward lost" + } + }, + stats={ + [1]="support_healing_runes_maximum_ward_spent_per_pulse_%", + [2]="support_healing_runes_healing_pulse_interval_ms", + [3]="support_healing_runes_healing_per_ward_spent_%" + } + }, + [1008]={ [1]={ [1]={ limit={ @@ -23079,7 +24270,7 @@ return { [1]="support_heft_maximum_physical_damage_+%_final" } }, - [955]={ + [1009]={ [1]={ [1]={ limit={ @@ -23108,7 +24299,40 @@ return { [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [956]={ + [1010]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_0dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Gain Helbrym's Composure for {0} second when Supported Skills cause you to Shapeshift" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_0dp", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Helbrym's Composure for {0} seconds when Supported Skills cause you to Shapeshift" + } + }, + stats={ + [1]="support_hide_of_helbrym_soak_duration_ms" + } + }, + [1011]={ [1]={ [1]={ limit={ @@ -23124,7 +24348,7 @@ return { [1]="support_hinder_dots_also_apply_hinder" } }, - [957]={ + [1012]={ [1]={ [1]={ limit={ @@ -23149,7 +24373,7 @@ return { [1]="support_hit_damage_stun_multiplier_+%_final_from_current_poise" } }, - [958]={ + [1013]={ [1]={ [1]={ [1]={ @@ -23169,7 +24393,7 @@ return { [1]="support_holy_descent_consecrated_ground_base_duration_ms" } }, - [959]={ + [1014]={ [1]={ [1]={ [1]={ @@ -23202,7 +24426,7 @@ return { [1]="support_holy_descent_consecrated_ground_on_landing_radius" } }, - [960]={ + [1015]={ [1]={ [1]={ [1]={ @@ -23235,7 +24459,7 @@ return { [1]="support_hourglass_display_cooldown_time_ms" } }, - [961]={ + [1016]={ [1]={ [1]={ limit={ @@ -23264,7 +24488,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [962]={ + [1017]={ [1]={ [1]={ limit={ @@ -23293,7 +24517,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [963]={ + [1018]={ [1]={ [1]={ limit={ @@ -23322,7 +24546,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [964]={ + [1019]={ [1]={ [1]={ [1]={ @@ -23347,7 +24571,7 @@ return { [2]="support_ice_bite_base_buff_duration" } }, - [965]={ + [1020]={ [1]={ [1]={ limit={ @@ -23376,7 +24600,7 @@ return { [1]="support_icicle_ice_crystal_maximum_life_+%_final" } }, - [966]={ + [1021]={ [1]={ [1]={ limit={ @@ -23405,7 +24629,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [967]={ + [1022]={ [1]={ [1]={ limit={ @@ -23434,7 +24658,7 @@ return { [1]="support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final" } }, - [968]={ + [1023]={ [1]={ [1]={ limit={ @@ -23463,7 +24687,7 @@ return { [1]="support_ignited_ground_effect_duration_+%_final" } }, - [969]={ + [1024]={ [1]={ [1]={ limit={ @@ -23492,7 +24716,7 @@ return { [1]="support_ignition_chance_to_ignite_+%_final" } }, - [970]={ + [1025]={ [1]={ [1]={ [1]={ @@ -23525,7 +24749,7 @@ return { [1]="support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius" } }, - [971]={ + [1026]={ [1]={ [1]={ limit={ @@ -23541,7 +24765,7 @@ return { [1]="support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%" } }, - [972]={ + [1027]={ [1]={ [1]={ limit={ @@ -23570,7 +24794,7 @@ return { [1]="support_increased_area_damage_+%_final" } }, - [973]={ + [1028]={ [1]={ [1]={ limit={ @@ -23599,7 +24823,7 @@ return { [1]="support_increased_armour_break_armour_break_amount_+%_final" } }, - [974]={ + [1029]={ [1]={ [1]={ limit={ @@ -23620,7 +24844,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [975]={ + [1030]={ [1]={ [1]={ [1]={ @@ -23670,7 +24894,7 @@ return { [2]="support_inevitable_criticals_critical_strike_multiplier_+%_final_cap" } }, - [976]={ + [1031]={ [1]={ [1]={ limit={ @@ -23699,7 +24923,7 @@ return { [1]="support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type" } }, - [977]={ + [1032]={ [1]={ [1]={ [1]={ @@ -23724,7 +24948,7 @@ return { [2]="support_innervate_buff_base_duration_ms" } }, - [978]={ + [1033]={ [1]={ [1]={ limit={ @@ -23753,7 +24977,7 @@ return { [1]="support_inspiration_cost_+%_final" } }, - [979]={ + [1034]={ [1]={ [1]={ limit={ @@ -23782,7 +25006,7 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [980]={ + [1035]={ [1]={ [1]={ [1]={ @@ -23802,7 +25026,23 @@ return { [1]="support_jagged_ground_base_duration_ms" } }, - [981]={ + [1036]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Stun Threshold for Heavy Stuns while using Supported Skills" + } + }, + stats={ + [1]="support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action" + } + }, + [1037]={ [1]={ [1]={ limit={ @@ -23818,7 +25058,7 @@ return { [1]="support_knockback_wave_on_stunned" } }, - [982]={ + [1038]={ [1]={ [1]={ [1]={ @@ -23851,7 +25091,7 @@ return { [1]="support_last_gasp_duration_ms" } }, - [983]={ + [1039]={ [1]={ [1]={ limit={ @@ -23867,7 +25107,7 @@ return { [1]="support_last_gasp_minion_soul_eater_while_undying" } }, - [984]={ + [1040]={ [1]={ [1]={ limit={ @@ -23896,7 +25136,7 @@ return { [1]="support_lasting_shock_chance_to_shock_+%_final" } }, - [985]={ + [1041]={ [1]={ [1]={ limit={ @@ -23925,7 +25165,7 @@ return { [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [986]={ + [1042]={ [1]={ [1]={ limit={ @@ -23941,7 +25181,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [987]={ + [1043]={ [1]={ [1]={ limit={ @@ -23970,7 +25210,7 @@ return { [1]="support_lifetap_damage_+%_final_while_buffed" } }, - [988]={ + [1044]={ [1]={ [1]={ [1]={ @@ -24029,7 +25269,7 @@ return { [2]="quality_display_lifetap_is_gem" } }, - [989]={ + [1045]={ [1]={ [1]={ limit={ @@ -24058,7 +25298,7 @@ return { [1]="support_lightning_exposure_damage_+%_final" } }, - [990]={ + [1046]={ [1]={ [1]={ limit={ @@ -24087,7 +25327,7 @@ return { [1]="support_limit_skill_effect_duration_+%_final" } }, - [991]={ + [1047]={ [1]={ [1]={ limit={ @@ -24103,7 +25343,7 @@ return { [1]="support_lineage_remnants_grant_cdr_buff_on_collection" } }, - [992]={ + [1048]={ [1]={ [1]={ limit={ @@ -24132,7 +25372,7 @@ return { [1]="support_lingering_mirage_damage_+%_final" } }, - [993]={ + [1049]={ [1]={ [1]={ limit={ @@ -24161,7 +25401,7 @@ return { [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [994]={ + [1050]={ [1]={ [1]={ limit={ @@ -24190,7 +25430,7 @@ return { [1]="support_long_fuse_detonation_damage_+%_final" } }, - [995]={ + [1051]={ [1]={ [1]={ limit={ @@ -24219,7 +25459,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [996]={ + [1052]={ [1]={ [1]={ limit={ @@ -24235,7 +25475,7 @@ return { [1]="support_mana_flare_%_of_current_mana_consumed" } }, - [997]={ + [1053]={ [1]={ [1]={ limit={ @@ -24264,7 +25504,7 @@ return { [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [998]={ + [1054]={ [1]={ [1]={ limit={ @@ -24293,7 +25533,7 @@ return { [1]="support_mana_fountain_mana_regeneration_rate_+%" } }, - [999]={ + [1055]={ [1]={ [1]={ limit={ @@ -24322,7 +25562,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final" } }, - [1000]={ + [1056]={ [1]={ [1]={ limit={ @@ -24338,7 +25578,7 @@ return { [1]="support_manaforged_arrows_hit_damage_+%_final_per_mana_spent" } }, - [1001]={ + [1057]={ [1]={ [1]={ limit={ @@ -24367,7 +25607,7 @@ return { [1]="support_max_attack_damage_+%_final_from_current_poise" } }, - [1002]={ + [1058]={ [1]={ [1]={ limit={ @@ -24396,7 +25636,7 @@ return { [1]="support_measured_speed_attack_speed_+%_final_per_stack" } }, - [1003]={ + [1059]={ [1]={ [1]={ [1]={ @@ -24438,7 +25678,7 @@ return { [2]="support_measured_speed_disabled_ms" } }, - [1004]={ + [1060]={ [1]={ [1]={ limit={ @@ -24467,7 +25707,7 @@ return { [1]="support_meat_shield_minion_damage_+%_final" } }, - [1005]={ + [1061]={ [1]={ [1]={ limit={ @@ -24543,7 +25783,7 @@ return { [2]="support_melee_damage_+%_final_vs_lower_percent_life_target" } }, - [1006]={ + [1062]={ [1]={ [1]={ limit={ @@ -24572,7 +25812,7 @@ return { [1]="support_melee_physical_damage_attack_speed_+%_final" } }, - [1007]={ + [1063]={ [1]={ [1]={ limit={ @@ -24601,7 +25841,7 @@ return { [1]="support_minefield_mine_damage_+%_final" } }, - [1008]={ + [1064]={ [1]={ [1]={ limit={ @@ -24630,7 +25870,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1009]={ + [1065]={ [1]={ [1]={ limit={ @@ -24651,7 +25891,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1010]={ + [1066]={ [1]={ [1]={ limit={ @@ -24680,7 +25920,7 @@ return { [1]="support_minion_damage_+%_final" } }, - [1011]={ + [1067]={ [1]={ [1]={ limit={ @@ -24709,7 +25949,7 @@ return { [1]="support_minion_damage_minion_life_+%_final" } }, - [1012]={ + [1068]={ [1]={ [1]={ limit={ @@ -24738,7 +25978,7 @@ return { [1]="support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana" } }, - [1013]={ + [1069]={ [1]={ [1]={ limit={ @@ -24767,7 +26007,7 @@ return { [1]="support_minion_damage_with_non_command_skills_+%_final" } }, - [1014]={ + [1070]={ [1]={ [1]={ limit={ @@ -24796,7 +26036,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1015]={ + [1071]={ [1]={ [1]={ limit={ @@ -24825,7 +26065,23 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1016]={ + [1072]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions from Supported Skills have {0:+d}% to Fire Resistance" + } + }, + stats={ + [1]="minion_fire_damage_resistance_%" + } + }, + [1073]={ [1]={ [1]={ limit={ @@ -24854,7 +26110,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [1017]={ + [1074]={ [1]={ [1]={ limit={ @@ -24870,7 +26126,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [1018]={ + [1075]={ [1]={ [1]={ limit={ @@ -24899,7 +26155,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [1019]={ + [1076]={ [1]={ [1]={ limit={ @@ -24928,36 +26184,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1020]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Minions from Supported Skills deal {0}% more Damage while you have Feeding Frenzy" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Minions from Supported Skills deal {0}% less Damage while you have Feeding Frenzy" - } - }, - stats={ - [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" - } - }, - [1021]={ + [1077]={ [1]={ [1]={ limit={ @@ -24978,7 +26205,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [1022]={ + [1078]={ [1]={ [1]={ limit={ @@ -25007,7 +26234,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1023]={ + [1079]={ [1]={ [1]={ limit={ @@ -25023,7 +26250,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [1024]={ + [1080]={ [1]={ [1]={ [1]={ @@ -25048,7 +26275,7 @@ return { [2]="infernal_legion_minion_burning_effect_radius" } }, - [1025]={ + [1081]={ [1]={ [1]={ limit={ @@ -25077,7 +26304,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1026]={ + [1082]={ [1]={ [1]={ [1]={ @@ -25097,7 +26324,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [1027]={ + [1083]={ [1]={ [1]={ limit={ @@ -25126,7 +26353,7 @@ return { [1]="support_mirage_archer_damage_+%_final" } }, - [1028]={ + [1084]={ [1]={ [1]={ limit={ @@ -25155,7 +26382,7 @@ return { [1]="support_mobile_assault_skill_speed_+%_final" } }, - [1029]={ + [1085]={ [1]={ [1]={ limit={ @@ -25184,7 +26411,7 @@ return { [1]="support_mobility_damage_+%_final" } }, - [1030]={ + [1086]={ [1]={ [1]={ limit={ @@ -25213,7 +26440,7 @@ return { [1]="support_mobility_movement_speed_penalty_+%_final_while_performing_action" } }, - [1031]={ + [1087]={ [1]={ [1]={ [1]={ @@ -25297,7 +26524,7 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [1032]={ + [1088]={ [1]={ [1]={ limit={ @@ -25326,7 +26553,60 @@ return { [1]="support_more_duration_skill_effect_duration_+%_final" } }, - [1033]={ + [1089]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Enemies entering your Presence while a Supported Skill is active are Intimidated for {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies entering your Presence while a Supported Skill is active are Intimidated for {0} seconds" + } + }, + stats={ + [1]="support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms" + } + }, + [1090]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_0dp", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Allies in your Presence gain Guard equal to 10% of your maximum Life for {0} seconds, every 6 seconds while\na Supported Skill is active" + } + }, + stats={ + [1]="support_mothers_ward_base_duration_ms" + } + }, + [1091]={ [1]={ [1]={ limit={ @@ -25359,7 +26639,7 @@ return { [1]="support_multi_poison_poison_duration_+%_final" } }, - [1034]={ + [1092]={ [1]={ [1]={ limit={ @@ -25388,7 +26668,7 @@ return { [1]="support_multiple_attack_and_cast_speed_+%_final" } }, - [1035]={ + [1093]={ [1]={ [1]={ limit={ @@ -25417,7 +26697,7 @@ return { [1]="support_multiple_orbs_area_of_effect_+%_final" } }, - [1036]={ + [1094]={ [1]={ [1]={ [1]={ @@ -25437,7 +26717,7 @@ return { [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" } }, - [1037]={ + [1095]={ [1]={ [1]={ limit={ @@ -25453,7 +26733,7 @@ return { [1]="support_no_fear_damage_+%_final_per_second_up_to_30%" } }, - [1038]={ + [1096]={ [1]={ [1]={ limit={ @@ -25482,7 +26762,7 @@ return { [1]="support_nova_projectiles_damage_+%_final" } }, - [1039]={ + [1097]={ [1]={ [1]={ limit={ @@ -25507,7 +26787,7 @@ return { [1]="support_number_of_additional_uses_before_expiry" } }, - [1040]={ + [1098]={ [1]={ [1]={ limit={ @@ -25536,7 +26816,7 @@ return { [1]="support_overextend_critical_strike_multiplier_+%_final" } }, - [1041]={ + [1099]={ [1]={ [1]={ limit={ @@ -25565,7 +26845,7 @@ return { [1]="support_overpower_damage_+%_final" } }, - [1042]={ + [1100]={ [1]={ [1]={ limit={ @@ -25590,7 +26870,7 @@ return { [1]="support_overpower_hit_damage_stun_multiplier_+%_final" } }, - [1043]={ + [1101]={ [1]={ [1]={ limit={ @@ -25615,7 +26895,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1044]={ + [1102]={ [1]={ [1]={ limit={ @@ -25644,7 +26924,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [1045]={ + [1103]={ [1]={ [1]={ limit={ @@ -25673,7 +26953,7 @@ return { [1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final" } }, - [1046]={ + [1104]={ [1]={ [1]={ limit={ @@ -25702,7 +26982,7 @@ return { [1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final" } }, - [1047]={ + [1105]={ [1]={ [1]={ limit={ @@ -25731,7 +27011,7 @@ return { [1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final" } }, - [1048]={ + [1106]={ [1]={ [1]={ limit={ @@ -25747,7 +27027,7 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [1049]={ + [1107]={ [1]={ [1]={ limit={ @@ -25776,7 +27056,7 @@ return { [1]="support_pierce_damage_+%_final_per_pierced_target" } }, - [1050]={ + [1108]={ [1]={ [1]={ limit={ @@ -25805,7 +27085,7 @@ return { [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [1051]={ + [1109]={ [1]={ [1]={ limit={ @@ -25821,7 +27101,7 @@ return { [1]="support_pin_buildup_pin_instead_of_stun" } }, - [1052]={ + [1110]={ [1]={ [1]={ limit={ @@ -25859,7 +27139,7 @@ return { [1]="support_pin_hit_damage_stun_multiplier_+%_final" } }, - [1053]={ + [1111]={ [1]={ [1]={ limit={ @@ -25875,7 +27155,7 @@ return { [1]="support_pin_physical_damage_can_pin" } }, - [1054]={ + [1112]={ [1]={ [1]={ limit={ @@ -25904,7 +27184,7 @@ return { [1]="support_pin_pin_buildup_+%_final" } }, - [1055]={ + [1113]={ [1]={ [1]={ limit={ @@ -25933,7 +27213,7 @@ return { [1]="support_pin_pin_duration_+%_final" } }, - [1056]={ + [1114]={ [1]={ [1]={ limit={ @@ -25962,7 +27242,7 @@ return { [1]="support_pinpoint_critical_strike_chance_+%_final" } }, - [1057]={ + [1115]={ [1]={ [1]={ limit={ @@ -25991,7 +27271,7 @@ return { [1]="support_pinpoint_critical_strike_multiplier_+%_final" } }, - [1058]={ + [1116]={ [1]={ [1]={ limit={ @@ -26020,7 +27300,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1059]={ + [1117]={ [1]={ [1]={ limit={ @@ -26049,7 +27329,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [1060]={ + [1118]={ [1]={ [1]={ limit={ @@ -26078,7 +27358,7 @@ return { [1]="support_projectile_attack_physical_damage_+%_final" } }, - [1061]={ + [1119]={ [1]={ [1]={ limit={ @@ -26107,7 +27387,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [1062]={ + [1120]={ [1]={ [1]={ limit={ @@ -26136,7 +27416,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1063]={ + [1121]={ [1]={ [1]={ limit={ @@ -26165,7 +27445,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [1064]={ + [1122]={ [1]={ [1]={ limit={ @@ -26194,7 +27474,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [1065]={ + [1123]={ [1]={ [1]={ limit={ @@ -26223,7 +27503,7 @@ return { [1]="support_pure_shock_shock_duration_+%_final" } }, - [1066]={ + [1124]={ [1]={ [1]={ limit={ @@ -26252,7 +27532,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [1067]={ + [1125]={ [1]={ [1]={ limit={ @@ -26281,7 +27561,7 @@ return { [1]="support_rage_attack_damage_+%_final" } }, - [1068]={ + [1126]={ [1]={ [1]={ limit={ @@ -26310,7 +27590,7 @@ return { [1]="support_rage_attack_speed_+%_while_not_at_maximum_rage" } }, - [1069]={ + [1127]={ [1]={ [1]={ [1]={ @@ -26330,7 +27610,7 @@ return { [1]="support_rage_fountain_rage_regeneration_per_minute" } }, - [1070]={ + [1128]={ [1]={ [1]={ [1]={ @@ -26350,7 +27630,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1071]={ + [1129]={ [1]={ [1]={ limit={ @@ -26388,7 +27668,7 @@ return { [2]="support_rageforged_enraged_damage_+%_final" } }, - [1072]={ + [1130]={ [1]={ [1]={ [1]={ @@ -26413,7 +27693,7 @@ return { [2]="support_randomise_higher_aoe_+%_final" } }, - [1073]={ + [1131]={ [1]={ [1]={ [1]={ @@ -26438,7 +27718,7 @@ return { [2]="support_randomise_higher_projectile_speed_+%_final" } }, - [1074]={ + [1132]={ [1]={ [1]={ [1]={ @@ -26463,7 +27743,7 @@ return { [2]="support_randomise_higher_damage_+%_final" } }, - [1075]={ + [1133]={ [1]={ [1]={ [1]={ @@ -26488,7 +27768,7 @@ return { [2]="support_randomise_higher_recover_%_cost_on_use" } }, - [1076]={ + [1134]={ [1]={ [1]={ limit={ @@ -26517,7 +27797,7 @@ return { [1]="support_rapid_activation_brand_activation_rate_+%_final" } }, - [1077]={ + [1135]={ [1]={ [1]={ limit={ @@ -26546,7 +27826,7 @@ return { [1]="support_reach_accuracy_within_2m_+%_final" } }, - [1078]={ + [1136]={ [1]={ [1]={ limit={ @@ -26575,7 +27855,7 @@ return { [1]="support_reach_area_of_effect_+%_final" } }, - [1079]={ + [1137]={ [1]={ [1]={ limit={ @@ -26591,7 +27871,7 @@ return { [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [1080]={ + [1138]={ [1]={ [1]={ limit={ @@ -26620,7 +27900,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [1081]={ + [1139]={ [1]={ [1]={ limit={ @@ -26649,7 +27929,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [1082]={ + [1140]={ [1]={ [1]={ limit={ @@ -26665,7 +27945,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1083]={ + [1141]={ [1]={ [1]={ [1]={ @@ -26685,7 +27965,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [1084]={ + [1142]={ [1]={ [1]={ limit={ @@ -26706,7 +27986,7 @@ return { [2]="support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent" } }, - [1085]={ + [1143]={ [1]={ [1]={ [1]={ @@ -26726,7 +28006,7 @@ return { [1]="support_remote_mine_2_base_mine_detonation_time_ms" } }, - [1086]={ + [1144]={ [1]={ [1]={ limit={ @@ -26755,7 +28035,7 @@ return { [1]="support_remote_mine_2_damage_+%_final" } }, - [1087]={ + [1145]={ [1]={ [1]={ limit={ @@ -26784,7 +28064,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1088]={ + [1146]={ [1]={ [1]={ limit={ @@ -26813,7 +28093,7 @@ return { [1]="support_remote_mine_hit_damage_+%_final" } }, - [1089]={ + [1147]={ [1]={ [1]={ limit={ @@ -26851,7 +28131,7 @@ return { [1]="support_retreating_assault_melee_damage_+%_final" } }, - [1090]={ + [1148]={ [1]={ [1]={ limit={ @@ -26880,7 +28160,7 @@ return { [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds" } }, - [1091]={ + [1149]={ [1]={ [1]={ limit={ @@ -26909,7 +28189,7 @@ return { [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds" } }, - [1092]={ + [1150]={ [1]={ [1]={ limit={ @@ -26938,7 +28218,7 @@ return { [1]="support_ritual_curse_curse_delay_+%_final" } }, - [1093]={ + [1151]={ [1]={ [1]={ limit={ @@ -26954,7 +28234,7 @@ return { [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [1094]={ + [1152]={ [1]={ [1]={ [1]={ @@ -26987,81 +28267,7 @@ return { [1]="support_sacrificial_lamb_base_radius" } }, - [1095]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Supported Skills fire an additional Projectile per\nseal consumed\nSupported Skills consume all Accumulated seals on use" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills fire {0} additional Projectiles per\nseal consumed\nSupported Skills consume all Accumulated seals on use" - } - }, - stats={ - [1]="support_salvo_additional_projectiles_fired_per_seal" - } - }, - [1096]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills have {0} maximum seals" - } - }, - stats={ - [1]="support_salvo_maximum_seals" - } - }, - [1097]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Supported Skills Accumulate a seal every second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Supported Skills Accumulate a seal every {0} seconds" - } - }, - stats={ - [1]="support_salvo_seals_gain_base_interval_ms" - } - }, - [1098]={ + [1153]={ [1]={ [1]={ limit={ @@ -27090,7 +28296,7 @@ return { [1]="support_scattershot_skill_speed_+%_final" } }, - [1099]={ + [1154]={ [1]={ [1]={ limit={ @@ -27119,7 +28325,7 @@ return { [1]="support_scion_onslaught_duration_+%" } }, - [1100]={ + [1155]={ [1]={ [1]={ limit={ @@ -27140,7 +28346,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1101]={ + [1156]={ [1]={ [1]={ [1]={ @@ -27170,7 +28376,36 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1102]={ + [1157]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Ignite inflicted with Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Ignite inflicted with Supported Skills" + } + }, + stats={ + [1]="support_scouring_flame_ignite_effect_+%_final" + } + }, + [1158]={ [1]={ [1]={ limit={ @@ -27199,7 +28434,7 @@ return { [1]="support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence" } }, - [1103]={ + [1159]={ [1]={ [1]={ limit={ @@ -27228,7 +28463,7 @@ return { [1]="support_shock_protection_spirit_cost_shock_duration_on_self_+%_final" } }, - [1104]={ + [1160]={ [1]={ [1]={ limit={ @@ -27257,7 +28492,7 @@ return { [1]="support_shocked_ground_effect_duration_+%_final" } }, - [1105]={ + [1161]={ [1]={ [1]={ [1]={ @@ -27349,7 +28584,7 @@ return { [2]="support_shocking_leap_shocked_ground_radius" } }, - [1106]={ + [1162]={ [1]={ [1]={ limit={ @@ -27378,7 +28613,32 @@ return { [1]="support_short_fuse_damage_+%_final" } }, - [1107]={ + [1163]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Supported Skills spend Runic Ward equal to their Life and Mana Cost if possible to become Runically Boosted" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills spend Runic Ward equal to {0}% of Life and Mana Cost if possible to become Runically Boosted" + } + }, + stats={ + [1]="support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost" + } + }, + [1164]={ [1]={ [1]={ [1]={ @@ -27411,7 +28671,7 @@ return { [1]="support_slashing_buff_base_duration_ms" } }, - [1108]={ + [1165]={ [1]={ [1]={ limit={ @@ -27440,7 +28700,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1109]={ + [1166]={ [1]={ [1]={ limit={ @@ -27469,7 +28729,7 @@ return { [1]="support_slow_cast_cast_speed_+%_final" } }, - [1110]={ + [1167]={ [1]={ [1]={ limit={ @@ -27498,7 +28758,7 @@ return { [1]="support_slow_cast_spell_damage_+%_final" } }, - [1111]={ + [1168]={ [1]={ [1]={ limit={ @@ -27527,7 +28787,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [1112]={ + [1169]={ [1]={ [1]={ limit={ @@ -27543,7 +28803,7 @@ return { [1]="support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage" } }, - [1113]={ + [1170]={ [1]={ [1]={ [1]={ @@ -27576,7 +28836,7 @@ return { [1]="support_spectral_arrows_base_duration_ms" } }, - [1114]={ + [1171]={ [1]={ [1]={ limit={ @@ -27605,7 +28865,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles" } }, - [1115]={ + [1172]={ [1]={ [1]={ limit={ @@ -27634,7 +28894,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_spectral_projectiles" } }, - [1116]={ + [1173]={ [1]={ [1]={ limit={ @@ -27650,7 +28910,7 @@ return { [1]="support_spectral_arrows_maximum_spectral_arrows" } }, - [1117]={ + [1174]={ [1]={ [1]={ limit={ @@ -27726,7 +28986,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1118]={ + [1175]={ [1]={ [1]={ limit={ @@ -27755,7 +29015,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1119]={ + [1176]={ [1]={ [1]={ limit={ @@ -27784,7 +29044,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1120]={ + [1177]={ [1]={ [1]={ limit={ @@ -27813,7 +29073,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [1121]={ + [1178]={ [1]={ [1]={ limit={ @@ -27842,7 +29102,7 @@ return { [1]="support_spell_cascade_damage_+%_final" } }, - [1122]={ + [1179]={ [1]={ [1]={ limit={ @@ -27855,7 +29115,7 @@ return { [2]=0 } }, - text="Supported Skills also affect Areas on either side of the targeted Area along a random axis" + text="Supported Skills Cascade to either side of the targeted Area along a random axis" }, [2]={ limit={ @@ -27868,7 +29128,7 @@ return { [2]=0 } }, - text="Supported Skills also affect Areas on all sides of the targeted Area along a random axis" + text="Supported Skills Cascade to four sides of the targeted Area" } }, stats={ @@ -27876,7 +29136,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [1123]={ + [1180]={ [1]={ [1]={ limit={ @@ -27905,7 +29165,7 @@ return { [1]="support_spell_damage_+%_final_while_above_90%_maximum_mana" } }, - [1124]={ + [1181]={ [1]={ [1]={ limit={ @@ -27934,36 +29194,7 @@ return { [1]="support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield" } }, - [1125]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Echoes from Supported Spells have {0}% increased Area of Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Echoes from Supported Spells have {0}% reduced Area of Effect" - } - }, - stats={ - [1]="support_spell_echo_area_of_effect_+%" - } - }, - [1126]={ + [1182]={ [1]={ [1]={ limit={ @@ -27992,7 +29223,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final" } }, - [1127]={ + [1183]={ [1]={ [1]={ limit={ @@ -28021,7 +29252,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [1128]={ + [1184]={ [1]={ [1]={ limit={ @@ -28050,7 +29281,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [1129]={ + [1185]={ [1]={ [1]={ limit={ @@ -28079,7 +29310,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [1130]={ + [1186]={ [1]={ [1]={ limit={ @@ -28108,7 +29339,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [1131]={ + [1187]={ [1]={ [1]={ limit={ @@ -28137,36 +29368,7 @@ return { [1]="support_spell_echo_damage_+%_final" } }, - [1132]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Final Repeat of Supported Skills deals {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Final Repeat of Supported Skills deals {0}% less Damage" - } - }, - stats={ - [1]="support_spell_echo_final_repeat_damage_+%_final" - } - }, - [1133]={ + [1188]={ [1]={ [1]={ limit={ @@ -28195,7 +29397,7 @@ return { [1]="support_spellslinger_damage_+%_final" } }, - [1134]={ + [1189]={ [1]={ [1]={ limit={ @@ -28224,7 +29426,7 @@ return { [1]="support_spiral_projectiles_damage_+%_final" } }, - [1135]={ + [1190]={ [1]={ [1]={ limit={ @@ -28253,7 +29455,7 @@ return { [1]="support_spiritual_cry_damage_+%_final" } }, - [1136]={ + [1191]={ [1]={ [1]={ limit={ @@ -28278,7 +29480,7 @@ return { [1]="support_splinter_totem_X_times" } }, - [1137]={ + [1192]={ [1]={ [1]={ [1]={ @@ -28307,7 +29509,7 @@ return { [1]="support_splinter_totem_area_of_effect_+%_final_each_splinter" } }, - [1138]={ + [1193]={ [1]={ [1]={ [1]={ @@ -28336,7 +29538,7 @@ return { [1]="support_splinter_totem_damage_+%_final_each_splinter" } }, - [1139]={ + [1194]={ [1]={ [1]={ [1]={ @@ -28365,7 +29567,7 @@ return { [1]="support_splinter_totem_maximum_life_+%_final_each_splinter" } }, - [1140]={ + [1195]={ [1]={ [1]={ [1]={ @@ -28394,7 +29596,7 @@ return { [1]="support_splinter_totem_skill_speed_+%_final_each_splinter" } }, - [1141]={ + [1196]={ [1]={ [1]={ limit={ @@ -28419,7 +29621,7 @@ return { [1]="support_splinter_totem_splinter_after_X_actions" } }, - [1142]={ + [1197]={ [1]={ [1]={ limit={ @@ -28448,7 +29650,7 @@ return { [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1143]={ + [1198]={ [1]={ [1]={ limit={ @@ -28473,7 +29675,7 @@ return { [1]="support_static_charge_X_chains_per_10_charge" } }, - [1144]={ + [1199]={ [1]={ [1]={ limit={ @@ -28482,14 +29684,14 @@ return { [2]="#" } }, - text="Supported Skills gain {0}% of Damage as extra Lightning Damage per ten Voltaic Charge consumed" + text="Supported Skills gain 1% of Damage as extra Lightning Damage per Voltaic Charge consumed" } }, stats={ [1]="support_static_charge_%_damage_gained_as_lightning_per_10_charge" } }, - [1145]={ + [1200]={ [1]={ [1]={ limit={ @@ -28518,7 +29720,7 @@ return { [1]="support_steadfast_ailment_threshold_+%_final_while_channelling" } }, - [1146]={ + [1201]={ [1]={ [1]={ limit={ @@ -28547,7 +29749,7 @@ return { [1]="support_steadfast_stun_threshold_+%_final_while_channelling" } }, - [1147]={ + [1202]={ [1]={ [1]={ limit={ @@ -28576,7 +29778,7 @@ return { [1]="support_sticky_grenade_damage_+%_final" } }, - [1148]={ + [1203]={ [1]={ [1]={ limit={ @@ -28592,7 +29794,7 @@ return { [1]="support_stomping_ground" } }, - [1149]={ + [1204]={ [1]={ [1]={ [1]={ @@ -28625,7 +29827,7 @@ return { [1]="support_storm_barrier_damage_buff_base_duration_ms" } }, - [1150]={ + [1205]={ [1]={ [1]={ [1]={ @@ -28697,7 +29899,7 @@ return { [2]="support_storm_barrier_damage_buff_time_threshold_ms" } }, - [1151]={ + [1206]={ [1]={ [1]={ limit={ @@ -28726,7 +29928,7 @@ return { [1]="support_storm_barrier_damage_+%_final" } }, - [1152]={ + [1207]={ [1]={ [1]={ limit={ @@ -28755,7 +29957,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [1153]={ + [1208]={ [1]={ [1]={ limit={ @@ -28784,7 +29986,7 @@ return { [1]="support_storm_barrier_skill_type_damage_+%_final" } }, - [1154]={ + [1209]={ [1]={ [1]={ [1]={ @@ -28804,7 +30006,7 @@ return { [1]="support_storm_barrier_skill_type_damage_taken_when_hit_+%_final" } }, - [1155]={ + [1210]={ [1]={ [1]={ limit={ @@ -28820,7 +30022,7 @@ return { [1]="support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage" } }, - [1156]={ + [1211]={ [1]={ [1]={ limit={ @@ -28849,7 +30051,7 @@ return { [1]="support_stronger_ignites_hit_damage_+%_final" } }, - [1157]={ + [1212]={ [1]={ [1]={ limit={ @@ -28878,7 +30080,7 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [1158]={ + [1213]={ [1]={ [1]={ [1]={ @@ -28920,7 +30122,7 @@ return { [2]="support_stunning_magic_buff_duration_ms" } }, - [1159]={ + [1214]={ [1]={ [1]={ limit={ @@ -28949,7 +30151,7 @@ return { [1]="support_sunblast_hazard_hazard_damage_+%_final" } }, - [1160]={ + [1215]={ [1]={ [1]={ limit={ @@ -28978,7 +30180,7 @@ return { [1]="support_sunblast_hazard_hazard_duration_+%_final" } }, - [1161]={ + [1216]={ [1]={ [1]={ limit={ @@ -29007,7 +30209,7 @@ return { [1]="support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second" } }, - [1162]={ + [1217]={ [1]={ [1]={ limit={ @@ -29036,7 +30238,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [1163]={ + [1218]={ [1]={ [1]={ limit={ @@ -29052,7 +30254,7 @@ return { [1]="support_tangmazu_light_radius_+%" } }, - [1164]={ + [1219]={ [1]={ [1]={ limit={ @@ -29081,7 +30283,7 @@ return { [1]="support_tangmazu_slow_potency_+%" } }, - [1165]={ + [1220]={ [1]={ [1]={ limit={ @@ -29097,7 +30299,7 @@ return { [1]="support_tangmazu_sprint_speed_+%" } }, - [1166]={ + [1221]={ [1]={ [1]={ limit={ @@ -29113,7 +30315,23 @@ return { [1]="support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour" } }, - [1167]={ + [1222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Refractive Plating grants Deflection Rating equal to {0}% of Evasion Rating" + } + }, + stats={ + [1]="support_tempered_valour_deflection_rating_%_of_evasion_rating" + } + }, + [1223]={ [1]={ [1]={ limit={ @@ -29122,14 +30340,14 @@ return { [2]="#" } }, - text="Those affected by Auras from Supported Skills gain Refractive Plating\nRefractive Plating causes {0}% of Armour to apply to Elemental Hit Damage taken" + text="Refractive Plating causes {0}% of Armour to apply to Elemental Hit Damage taken" } }, stats={ [1]="support_tempered_valour_%_armour_to_apply_to_elemental_damage" } }, - [1168]={ + [1224]={ [1]={ [1]={ limit={ @@ -29158,7 +30376,7 @@ return { [1]="support_thorns_spirit_cost_thorns_damage_+%" } }, - [1169]={ + [1225]={ [1]={ [1]={ [1]={ @@ -29183,7 +30401,7 @@ return { [2]="support_thrill_of_the_kill_buff_base_duration_ms" } }, - [1170]={ + [1226]={ [1]={ [1]={ limit={ @@ -29212,7 +30430,7 @@ return { [1]="support_thrill_of_the_kill_buff_shock_chance_+%" } }, - [1171]={ + [1227]={ [1]={ [1]={ limit={ @@ -29237,7 +30455,7 @@ return { [1]="support_timerot_stacks_gained_per_500_ms" } }, - [1172]={ + [1228]={ [1]={ [1]={ limit={ @@ -29246,7 +30464,7 @@ return { [2]="#" } }, - text="Minions from Supported Skills deal {0}% more Damage" + text="Supported Skills have {0}% more Attack speed" }, [2]={ [1]={ @@ -29259,14 +30477,14 @@ return { [2]=-1 } }, - text="Minions from Supported Skills deal {0}% less Damage" + text="Supported Skills have {0}% less Attack speed" } }, stats={ - [1]="support_titanblood_minion_damage_+%_final" + [1]="support_titanic_arrows_attack_speed_+%_final" } }, - [1173]={ + [1229]={ [1]={ [1]={ limit={ @@ -29275,7 +30493,7 @@ return { [2]="#" } }, - text="Minions from Supported Skills have {0}% more maximum Life" + text="Supported Skills have {0}% more Projectile speed" }, [2]={ [1]={ @@ -29288,14 +30506,14 @@ return { [2]=-1 } }, - text="Minions from Supported Skills have {0}% less maximum Life" + text="Supported Skills have {0}% less Projectile speed" } }, stats={ - [1]="support_titanblood_minion_life_+%_final" + [1]="support_titanic_arrows_projectile_speed_+%_final" } }, - [1174]={ + [1230]={ [1]={ [1]={ limit={ @@ -29304,7 +30522,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Attack speed" + text="Supported Skills have {0}% more Mine Throwing Speed" }, [2]={ [1]={ @@ -29317,14 +30535,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Attack speed" + text="Supported Skills have {0}% less Mine Throwing Speed" } }, stats={ - [1]="support_titanic_arrows_attack_speed_+%_final" + [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" } }, - [1175]={ + [1231]={ [1]={ [1]={ limit={ @@ -29333,7 +30551,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Projectile speed" + text="Supported Skills have {0}% more Trap Throwing Speed" }, [2]={ [1]={ @@ -29346,14 +30564,14 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Projectile speed" + text="Supported Skills have {0}% less Trap Throwing Speed" } }, stats={ - [1]="support_titanic_arrows_projectile_speed_+%_final" + [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" } }, - [1176]={ + [1232]={ [1]={ [1]={ limit={ @@ -29362,7 +30580,7 @@ return { [2]="#" } }, - text="Supported Skills have {0}% more Mine Throwing Speed" + text="Supported Skills deal {0}% more Trap Damage with Hits" }, [2]={ [1]={ @@ -29375,120 +30593,107 @@ return { [2]=-1 } }, - text="Supported Skills have {0}% less Mine Throwing Speed" + text="Supported Skills deal {0}% less Trap Damage with Hits" } }, stats={ - [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" + [1]="support_trap_hit_damage_+%_final" } }, - [1177]={ + [1233]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% more Trap Throwing Speed" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills have {0}% less Trap Throwing Speed" + text="Supported Skills trigger Mana Flare on Critical Hit" } }, stats={ - [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" + [1]="support_trigger_mana_flare_on_crit" } }, - [1178]={ + [1234]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills deal {0}% more Trap Damage with Hits" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Supported Skills deal {0}% less Trap Damage with Hits" + text="Supported Skills Trigger a Runic Shockwave on Heavy Stunning an enemy" } }, stats={ - [1]="support_trap_hit_damage_+%_final" + [1]="support_trigger_pummel_on_heavy_stun" } }, - [1179]={ + [1235]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills trigger Mana Flare on Critical Hit" + text="Supported Mark Skills Trigger Charged Mark when they are Activated" } }, stats={ - [1]="support_trigger_mana_flare_on_crit" + [1]="support_trigger_shocked_ground_on_mark_activate" } }, - [1180]={ + [1236]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Supported Mark Skills Trigger Charged Mark when they are Activated" + text="Supported Skills have triple Cooldown Uses" } }, stats={ - [1]="support_trigger_shocked_ground_on_mark_activate" + [1]="support_triple_number_of_cooldown_uses" } }, - [1181]={ + [1237]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Supported Skills have triple Cooldown Uses" + text="Minions from Supported Skills have {0}% more maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions from Supported Skills have {0}% less maximum Life" } }, stats={ - [1]="support_triple_number_of_cooldown_uses" + [1]="support_trusty_companion_minion_life_+%_final" } }, - [1182]={ + [1238]={ [1]={ [1]={ limit={ @@ -29497,7 +30702,7 @@ return { [2]="#" } }, - text="Minions from Supported Skills have {0}% more maximum Life" + text="Supported Skills deal {0}% more Damage for each different Skill with a Cooldown you have used in the last 8 seconds" }, [2]={ [1]={ @@ -29510,14 +30715,14 @@ return { [2]=-1 } }, - text="Minions from Supported Skills have {0}% less maximum Life" + text="Supported Skills deal {0}% less Damage for each different Skill with a Cooldown you have used in the last 8 seconds" } }, stats={ - [1]="support_trusty_companion_minion_life_+%_final" + [1]="support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds" } }, - [1183]={ + [1239]={ [1]={ [1]={ limit={ @@ -29546,7 +30751,7 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [1184]={ + [1240]={ [1]={ [1]={ limit={ @@ -29575,7 +30780,7 @@ return { [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [1185]={ + [1241]={ [1]={ [1]={ limit={ @@ -29604,7 +30809,7 @@ return { [1]="support_unending_ailments_all_ailment_duration_+%_final" } }, - [1186]={ + [1242]={ [1]={ [1]={ limit={ @@ -29642,7 +30847,7 @@ return { [2]="support_unmoving_damage_multiplier_cap" } }, - [1187]={ + [1243]={ [1]={ [1]={ limit={ @@ -29671,7 +30876,7 @@ return { [1]="support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies" } }, - [1188]={ + [1244]={ [1]={ [1]={ limit={ @@ -29700,7 +30905,7 @@ return { [1]="support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies" } }, - [1189]={ + [1245]={ [1]={ [1]={ limit={ @@ -29729,7 +30934,7 @@ return { [1]="support_upheaval_area_of_effect_+%_final" } }, - [1190]={ + [1246]={ [1]={ [1]={ limit={ @@ -29745,7 +30950,7 @@ return { [1]="support_vaal_lineage_trigger_detonate_on_landing" } }, - [1191]={ + [1247]={ [1]={ [1]={ limit={ @@ -29774,7 +30979,7 @@ return { [1]="support_varied_troops_damage_+%_final_per_different_persistent_ominion" } }, - [1192]={ + [1248]={ [1]={ [1]={ limit={ @@ -29803,7 +31008,7 @@ return { [1]="support_vicious_projectiles_physical_damage_+%_final" } }, - [1193]={ + [1249]={ [1]={ [1]={ limit={ @@ -29832,7 +31037,7 @@ return { [1]="support_vicious_projectiles_chaos_damage_+%_final" } }, - [1194]={ + [1250]={ [1]={ [1]={ [1]={ @@ -29852,7 +31057,7 @@ return { [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [1195]={ + [1251]={ [1]={ [1]={ limit={ @@ -29877,7 +31082,23 @@ return { [1]="support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies" } }, - [1196]={ + [1252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills deal {0}% more Damage with Hits against Isolated targets" + } + }, + stats={ + [1]="support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies" + } + }, + [1253]={ [1]={ [1]={ limit={ @@ -29906,7 +31127,7 @@ return { [1]="support_wall_fortress_area_of_effect_+%_final" } }, - [1197]={ + [1254]={ [1]={ [1]={ limit={ @@ -29939,7 +31160,7 @@ return { [1]="support_wall_fortress_hit_damage_+%_final" } }, - [1198]={ + [1255]={ [1]={ [1]={ limit={ @@ -29960,7 +31181,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [1199]={ + [1256]={ [1]={ [1]={ limit={ @@ -29989,7 +31210,7 @@ return { [1]="support_window_of_opportunity_perfect_timing_damage_+%_final" } }, - [1200]={ + [1257]={ [1]={ [1]={ limit={ @@ -30018,7 +31239,7 @@ return { [1]="support_winterblast_chill_effect_+%_final" } }, - [1201]={ + [1258]={ [1]={ [1]={ limit={ @@ -30047,7 +31268,7 @@ return { [1]="support_withering_touch_damage_+%_final" } }, - [1202]={ + [1259]={ [1]={ [1]={ limit={ @@ -30063,7 +31284,7 @@ return { [1]="support_zerphis_legacy_area_of_effect_+%" } }, - [1203]={ + [1260]={ [1]={ [1]={ limit={ @@ -30079,119 +31300,7 @@ return { [1]="support_zerphis_legacy_damage_+%_final" } }, - [1204]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d} to level of Supported Skills if exactly one other Support is modifying them" - } - }, - stats={ - [1]="supported_active_skill_gem_level_+_if_one_other_support" - } - }, - [1205]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d} to level of Supported Skills if exactly two other Supports are modifying them" - } - }, - stats={ - [1]="supported_active_skill_gem_level_+_if_two_other_supports" - } - }, - [1206]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d} to level of Supported Skills if no other Supports are modifying them" - } - }, - stats={ - [1]="supported_active_skill_gem_level_+_if_no_other_supports" - } - }, - [1207]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Chaos Skills" - } - }, - stats={ - [1]="supported_chaos_skill_gem_level_+" - } - }, - [1208]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Curse Skill Gems" - } - }, - stats={ - [1]="supported_curse_skill_gem_level_+" - } - }, - [1209]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Elemental Skill Gems" - } - }, - stats={ - [1]="supported_elemental_skill_gem_level_+" - } - }, - [1210]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Minion Skills" - } - }, - stats={ - [1]="supported_minion_skill_gem_level_+" - } - }, - [1211]={ + [1261]={ [1]={ [1]={ [1]={ @@ -30211,23 +31320,23 @@ return { [1]="supported_offerings_grant_you_a_powercharge_every_x_ms" } }, - [1212]={ + [1262]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d} to Level of Supported Physical Skills" + text="Supported Skills have {0}% increased Attack Speed per 5 Rage" } }, stats={ - [1]="supported_physical_skill_gem_level_+" + [1]="supported_skill_attack_speed_+%_per_5_rage" } }, - [1213]={ + [1263]={ [1]={ [1]={ limit={ @@ -30243,7 +31352,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1214]={ + [1264]={ [1]={ [1]={ limit={ @@ -30259,7 +31368,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1215]={ + [1265]={ [1]={ [1]={ limit={ @@ -30275,7 +31384,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1216]={ + [1266]={ [1]={ [1]={ limit={ @@ -30291,7 +31400,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1217]={ + [1267]={ [1]={ [1]={ limit={ @@ -30307,7 +31416,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1218]={ + [1268]={ [1]={ [1]={ [1]={ @@ -30320,7 +31429,7 @@ return { [2]=1000 } }, - text="When you Freeze a target with Supported Skills, for each 1 Rage you have, you and Allies in your Presence gain 1% of Damage as Cold Damage for {0} second" + text="When you Freeze a target with Supported Skills, for each 2 Rage you have, you and Allies in your Presence gain 1% of Damage as Cold Damage for {0} second" }, [2]={ [1]={ @@ -30333,30 +31442,14 @@ return { [2]="#" } }, - text="When you Freeze a target with Supported Skills, for each 1 Rage you have, you and Allies in your Presence gain 1% of Damage as Cold Damage for {0} seconds" + text="When you Freeze a target with Supported Skills, for each 2 Rage you have, you and Allies in your Presence gain 1% of Damage as Cold Damage for {0} seconds" } }, stats={ [1]="supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze" } }, - [1219]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Strike Skill Gems" - } - }, - stats={ - [1]="supported_strike_skill_gem_level_+" - } - }, - [1220]={ + [1269]={ [1]={ [1]={ limit={ @@ -30372,7 +31465,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [1221]={ + [1270]={ [1]={ [1]={ [1]={ @@ -30405,7 +31498,7 @@ return { [1]="totem_gain_onslaught_for_x_ms_after_summon" } }, - [1222]={ + [1271]={ [1]={ [1]={ limit={ @@ -30421,7 +31514,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1223]={ + [1272]={ [1]={ [1]={ limit={ @@ -30437,7 +31530,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1224]={ + [1273]={ [1]={ [1]={ limit={ @@ -30466,7 +31559,7 @@ return { [1]="trap_damage_+%" } }, - [1225]={ + [1274]={ [1]={ [1]={ limit={ @@ -30495,7 +31588,7 @@ return { [1]="trap_spread_+%" } }, - [1226]={ + [1275]={ [1]={ [1]={ limit={ @@ -30524,7 +31617,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1227]={ + [1276]={ [1]={ [1]={ limit={ @@ -30553,7 +31646,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1228]={ + [1277]={ [1]={ [1]={ limit={ @@ -30582,7 +31675,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1229]={ + [1278]={ [1]={ [1]={ limit={ @@ -30611,7 +31704,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1230]={ + [1279]={ [1]={ [1]={ limit={ @@ -30636,7 +31729,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [1231]={ + [1280]={ [1]={ [1]={ limit={ @@ -30652,7 +31745,7 @@ return { [1]="trigger_ballistic_ice_chunks_on_killing_frozen_enemy" } }, - [1232]={ + [1281]={ [1]={ [1]={ limit={ @@ -30668,7 +31761,7 @@ return { [1]="trigger_bone_shrapnel_explosion_on_killing_pinned_enemy" } }, - [1233]={ + [1282]={ [1]={ [1]={ limit={ @@ -30697,7 +31790,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1234]={ + [1283]={ [1]={ [1]={ limit={ @@ -30713,7 +31806,7 @@ return { [1]="trigger_caltrops_at_end_of_projectile_flight" } }, - [1235]={ + [1284]={ [1]={ [1]={ [1]={ @@ -30746,7 +31839,7 @@ return { [1]="trigger_from_hayhoxis_binding_after_x_ms" } }, - [1236]={ + [1285]={ [1]={ [1]={ limit={ @@ -30762,7 +31855,7 @@ return { [1]="trigger_frozen_vortex_on_shattering_enemy" } }, - [1237]={ + [1286]={ [1]={ [1]={ limit={ @@ -30778,7 +31871,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1238]={ + [1287]={ [1]={ [1]={ limit={ @@ -30794,7 +31887,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1239]={ + [1288]={ [1]={ [1]={ limit={ @@ -30810,7 +31903,7 @@ return { [1]="trigger_poison_spore_pustule" } }, - [1240]={ + [1289]={ [1]={ [1]={ limit={ @@ -30835,7 +31928,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1241]={ + [1290]={ [1]={ [1]={ limit={ @@ -30851,7 +31944,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1242]={ + [1291]={ [1]={ [1]={ limit={ @@ -30876,7 +31969,7 @@ return { [1]="trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger" } }, - [1243]={ + [1292]={ [1]={ [1]={ limit={ @@ -30892,7 +31985,7 @@ return { [1]="trigger_titanic_arrows_on_impact" } }, - [1244]={ + [1293]={ [1]={ [1]={ limit={ @@ -30908,7 +32001,7 @@ return { [1]="triggered_by_brand_support" } }, - [1245]={ + [1294]={ [1]={ [1]={ limit={ @@ -30924,7 +32017,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1246]={ + [1295]={ [1]={ [1]={ limit={ @@ -30958,7 +32051,7 @@ return { [2]="support_manaforged_arrows_mana_cost_%_threshold" } }, - [1247]={ + [1296]={ [1]={ [1]={ limit={ @@ -30974,7 +32067,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1248]={ + [1297]={ [1]={ [1]={ limit={ @@ -30990,9 +32083,19 @@ return { [1]="triggered_fan_the_flames_spread_ignite_to_hit_enemies" } }, - [1249]={ + [1298]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Spells deal {0}% increased Damage when triggered" + }, + [2]={ limit={ [1]={ [1]=1, @@ -31001,7 +32104,7 @@ return { }, text="Supported Triggered Spells deal {0}% increased Damage" }, - [2]={ + [3]={ [1]={ k="negate", v=1 @@ -31019,14 +32122,14 @@ return { [1]="triggered_skill_damage_+%" } }, - [1250]={ + [1299]={ [1]={ }, stats={ [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [1251]={ + [1300]={ [1]={ [1]={ [1]={ @@ -31102,103 +32205,7 @@ return { [2]="consume_shock_of_X_enemies_to_trigger_shocking_rift" } }, - [1252]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - }, - [3]={ - [1]=1, - [2]="#" - }, - [4]={ - [1]="#", - [2]="#" - } - }, - text="Supported Spells gain a Seal every {0}% of cast time, to a maximum of {2} Seals\nSupported Spells are Unsealed when cast, and their effects Reoccur for each Seal lost" - } - }, - stats={ - [1]="unleash_support_seal_gain_frequency_as_%_of_total_cast_time", - [2]="virtual_support_anticipation_charge_gain_interval_ms", - [3]="support_anticipation_rapid_fire_count", - [4]="skill_max_unleash_seals" - } - }, - [1253]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% increased Seal gain frequency while you are Channelling" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills have {0}% reduced Seal gain frequency while you are Channelling" - } - }, - stats={ - [1]="unleash_support_seal_gain_frequency_+%_while_channelling" - } - }, - [1254]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Supported Skills have {0}% increased Seal gain frequency while you are not Channelling" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Supported Skills have {0}% reduced Seal gain frequency while you are not Channelling" - } - }, - stats={ - [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" - } - }, - [1255]={ - [1]={ - }, - stats={ - [1]="virtual_support_salvo_maximum_seals" - } - }, - [1256]={ + [1301]={ [1]={ [1]={ limit={ @@ -31214,7 +32221,7 @@ return { [1]="wall_is_created_along_a_fissure_instead" } }, - [1257]={ + [1302]={ [1]={ [1]={ limit={ @@ -31230,7 +32237,7 @@ return { [1]="wall_is_created_in_a_circle_instead" } }, - [1258]={ + [1303]={ [1]={ [1]={ limit={ @@ -31246,7 +32253,7 @@ return { [1]="warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge" } }, - [1259]={ + [1304]={ [1]={ [1]={ limit={ @@ -31314,7 +32321,7 @@ return { [2]="warcry_echo_delay_ms_from_support" } }, - [1260]={ + [1305]={ [1]={ [1]={ [1]={ @@ -31343,7 +32350,7 @@ return { [1]="warcry_echo_area_of_effect_+%_final_per_repeat" } }, - [1261]={ + [1306]={ [1]={ [1]={ limit={ @@ -31359,7 +32366,7 @@ return { [1]="warcry_grant_X_rage_per_5_power" } }, - [1262]={ + [1307]={ [1]={ [1]={ limit={ @@ -31388,7 +32395,39 @@ return { [1]="warcry_speed_+%" } }, - [1263]={ + [1308]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Trigger Corrupted Cry for each enemy in range" + } + }, + stats={ + [1]="warcry_triggers_corrupting_cry" + } + }, + [1309]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Skills Trigger Twisted Pact for each enemy in range" + } + }, + stats={ + [1]="warcry_triggers_paquates_pact" + } + }, + [1310]={ [1]={ [1]={ limit={ @@ -31417,7 +32456,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1264]={ + [1311]={ [1]={ [1]={ limit={ @@ -31433,7 +32472,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1265]={ + [1312]={ [1]={ [1]={ limit={ @@ -31449,7 +32488,7 @@ return { [1]="wither_on_hit_chance_rollovercapped" } }, - [1266]={ + [1313]={ [1]={ [1]={ limit={ @@ -31474,7 +32513,7 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1267]={ + [1314]={ [1]={ [1]={ [1]={ @@ -31494,7 +32533,7 @@ return { [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1268]={ + [1315]={ [1]={ [1]={ limit={ @@ -31523,7 +32562,36 @@ return { [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [1269]={ + [1316]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills Consume Freeze on enemies to deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills Consume Freeze on enemies to deal {0}% less Damage" + } + }, + stats={ + [1]="support_morrigans_refuge_damage_+%_final_vs_frozen_enemies" + } + }, + [1317]={ [1]={ [1]={ limit={ @@ -31548,7 +32616,7 @@ return { [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" } }, - [1270]={ + [1318]={ [1]={ [1]={ limit={ @@ -31564,7 +32632,7 @@ return { [1]="support_active_skill_consume_enemy_freeze_to_apply_chill" } }, - [1271]={ + [1319]={ [1]={ [1]={ limit={ @@ -31573,7 +32641,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Damage when Reoccurring" + text="Supported Skills deal {0}% more Damage when Repeating" }, [2]={ [1]={ @@ -31586,14 +32654,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Damage when Reoccurring" + text="Supported Skills deal {0}% less Damage when Repeating" } }, stats={ [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1272]={ + [1320]={ [1]={ [1]={ limit={ @@ -31609,7 +32677,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1273]={ + [1321]={ [1]={ [1]={ limit={ @@ -31625,7 +32693,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1274]={ + [1322]={ [1]={ [1]={ limit={ @@ -31641,7 +32709,7 @@ return { [1]="minions_are_defensive" } }, - [1275]={ + [1323]={ [1]={ [1]={ limit={ @@ -31657,7 +32725,23 @@ return { [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1276]={ + [1324]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Warcries cause Ice Crystals to explode" + } + }, + stats={ + [1]="support_warcries_explode_ice_crystals" + } + }, + [1325]={ [1]={ [1]={ limit={ @@ -31673,7 +32757,39 @@ return { [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1277]={ + [1326]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Warcries Detonate your Ice Fragments" + } + }, + stats={ + [1]="support_warcries_detonate_your_ice_fragments" + } + }, + [1327]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fully Broken Armour inflicted with Supported Skills also increases Cold and Lightning Damage Taken from Hits" + } + }, + stats={ + [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage" + } + }, + [1328]={ [1]={ [1]={ limit={ @@ -31702,7 +32818,7 @@ return { [1]="support_culling_strike_threshold_+%_on_cull_for_seconds_from_code" } }, - [1278]={ + [1329]={ [1]={ [1]={ limit={ @@ -31731,7 +32847,23 @@ return { [1]="support_last_gasp_attack_and_cast_speed_+%_while_undying" } }, - [1279]={ + [1330]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Returning Projectiles from Supported Skills Pierce all targets" + } + }, + stats={ + [1]="returning_projectiles_always_pierce" + } + }, + [1331]={ [1]={ [1]={ limit={ @@ -31747,7 +32879,7 @@ return { [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1280]={ + [1332]={ [1]={ [1]={ [1]={ @@ -31780,7 +32912,7 @@ return { [1]="support_timerot_reparation_duration_per_timerot_lost_ms" } }, - [1281]={ + [1333]={ [1]={ [1]={ limit={ @@ -31809,1369 +32941,1434 @@ return { [1]="support_unstable_earth_damage_+%_final" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=667, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=668, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=669, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=670, - ["accuracy_rating"]=206, - ["accuracy_rating_+%"]=207, - ["active_skill_additional_projectiles_description_mode"]=655, - ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=208, - ["active_skill_can_overload"]=209, - ["active_skill_cannot_manually_reload"]=210, - ["active_skill_generates_%_of_life_spent_as_glory"]=211, - ["active_skill_never_freeze_shock_ignite"]=212, + [1334]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Warcries Empower {0} additional Attacks if they destroy at least 5 total Ice Crystals and Ice Fragments" + } + }, + stats={ + [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"]=715, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=716, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=717, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=718, + ["accuracy_rating"]=227, + ["accuracy_rating_+%"]=228, + ["active_skill_additional_projectiles_description_mode"]=704, + ["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_can_overload"]=234, + ["active_skill_cannot_manually_reload"]=235, + ["active_skill_fire_damage_+%_final"]=236, + ["active_skill_generates_%_of_life_spent_as_glory"]=237, + ["active_skill_minion_attack_speed_+%_final"]=238, + ["active_skill_never_freeze_shock_ignite"]=239, + ["active_skill_projectile_speed_+%_final"]=240, ["active_skill_requires_X_glory"]=2, - ["add_power_charge_on_critical_strike_%"]=213, - ["add_power_charge_on_kill_%_chance"]=214, - ["added_damage_+%_final"]=215, - ["additional_base_critical_strike_chance"]=216, - ["additional_chance_to_freeze_chilled_enemies_%"]=217, - ["additional_combo_gain_chance_%"]=218, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=220, - ["additional_critical_strike_chance_permyriad_while_dead"]=219, - ["additional_projectiles_instead_applies_to_number_of_terrain_chains"]=221, - ["additional_projectiles_per_intensity"]=222, - ["aftershock_area_of_effect_+%_final"]=224, - ["aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks"]=223, - ["aftershock_damage_+%_final_from_support_dual_cascade_aftershocks"]=225, - ["aftershocks_create_jagged_ground"]=226, - ["aggravate_bleeding_on_pin_chance_%"]=227, - ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=229, - ["ailment_threshold_+%_while_channelling"]=230, - ["all_damage_gained_as_cold_instead"]=231, - ["all_exposure_on_hit_for_duration_ms"]=232, - ["allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life"]=233, - ["allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana"]=234, - ["always_freeze"]=275, - ["always_pierce"]=196, - ["always_shock_wet_enemies"]=235, - ["ancestor_totem_buff_effect_+%"]=236, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=237, - ["ancestral_aid_required_count_of_recent_blocks"]=238, - ["ancestral_call_spirit_strike_interval_ms"]=239, - ["ancestral_slam_interval_duration"]=183, - ["ancestral_slam_stun_threshold_reduction_+%"]=240, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=241, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=242, - ["apply_X_incision_on_hit"]=243, - ["apply_attack_projectile_weakness_%_per_1m_knockback"]=244, - ["apply_linked_curses_on_hit_%"]=121, - ["apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry"]=245, - ["area_damage_+%"]=246, - ["area_of_effect_+%_per_totem_in_radius_from_support_greatwood"]=247, - ["area_of_effect_+%_while_dead"]=33, - ["armour_+%_while_performing_action_per_250_ms_attack_time"]=251, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=248, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=249, - ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=250, - ["attack_and_cast_speed_+%"]=253, - ["attack_and_cast_speed_+%_during_onslaught"]=254, - ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=189, - ["attack_critical_strike_chance_+%"]=255, - ["attack_damage_+%"]=258, - ["attack_damage_+%_per_1000_accuracy_rating"]=259, - ["attack_damage_+1%_per_X_armour"]=256, - ["attack_damage_is_lucky_if_surrounded"]=257, - ["attack_maximum_added_physical_damage_as_%_of_strength"]=252, - ["attack_maximum_added_physical_damage_per_10_rage"]=260, - ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=261, - ["attack_maximum_added_physical_damage_with_weapons"]=262, - ["attack_minimum_added_physical_damage_as_%_of_strength"]=252, - ["attack_minimum_added_physical_damage_per_10_rage"]=260, - ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=261, - ["attack_minimum_added_physical_damage_with_weapons"]=262, - ["attack_skills_additional_ballista_totems_allowed"]=56, - ["attack_speed_+%"]=263, - ["attack_speed_+%_when_on_low_life"]=264, - ["attack_speed_+%_with_atleast_20_rage"]=265, - ["attacks_impale_on_hit_%_chance"]=266, - ["attacks_inflict_bleeding_on_hit"]=325, - ["attacks_roll_crits_twice"]=267, - ["aura_can_affect_self"]=144, - ["aura_effect_+%"]=35, - ["avoid_interruption_while_using_this_skill_%"]=268, - ["barrage_support_projectile_spread_+%"]=269, - ["base_all_ailment_duration_+%"]=270, - ["base_aura_area_of_effect_+%"]=34, - ["base_bleed_chance_is_poison_chance_instead"]=271, - ["base_bleed_duration_+%"]=272, - ["base_cast_speed_+%"]=273, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=274, - ["base_chance_to_freeze_%"]=275, - ["base_chance_to_inflict_bleeding_%"]=276, - ["base_chance_to_not_consume_corpse_%"]=377, - ["base_chance_to_pierce_%"]=277, - ["base_chance_to_poison_on_hit_%"]=153, - ["base_chance_to_shock_%"]=278, - ["base_chaos_damage_can_ignite"]=279, - ["base_chaos_damage_to_deal_per_minute"]=132, - ["base_cold_damage_to_deal_per_minute"]=136, - ["base_combo_stacks_decay_delay_ms"]=280, - ["base_consume_enemy_freeze_on_hit"]=281, - ["base_consume_enemy_shock_on_hit"]=282, - ["base_cooldown_modifier_ms"]=283, - ["base_cooldown_speed_+%"]=284, - ["base_cooldown_speed_+%_final"]=285, - ["base_cost_+%"]=25, - ["base_critical_strike_multiplier_+"]=67, - ["base_curse_delay_+%"]=286, - ["base_curse_duration_+%"]=287, - ["base_damage_+%_while_an_ailment_on_you"]=288, - ["base_deal_no_chaos_damage"]=289, - ["base_debuff_slow_magnitude_+%"]=290, - ["base_es_cost_%"]=291, - ["base_fire_damage_to_deal_per_minute"]=133, - ["base_freezing_enemy_chills_enemies_in_radius"]=492, - ["base_global_chance_to_knockback_%"]=292, - ["base_inflict_cold_exposure_on_hit_%_chance"]=293, - ["base_inflict_fire_exposure_on_hit_%_chance"]=294, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=295, - ["base_killed_monster_dropped_item_quantity_+%"]=296, - ["base_killed_monster_dropped_item_rarity_+%"]=297, - ["base_life_cost_%"]=298, - ["base_life_cost_+%"]=26, - ["base_life_gain_per_target"]=103, - ["base_life_leech_from_physical_attack_damage_permyriad"]=299, - ["base_life_reservation_+%"]=301, - ["base_life_reservation_efficiency_+%"]=300, - ["base_lightning_damage_can_electrocute"]=302, - ["base_limit_+"]=303, - ["base_mana_cost_%"]=304, - ["base_mana_cost_+"]=194, - ["base_mana_cost_-%"]=27, - ["base_mana_cost_efficiency_+%"]=305, - ["base_mana_leech_from_physical_attack_damage_permyriad"]=306, - ["base_mana_reservation_+%"]=307, - ["base_melee_attack_repeat_count"]=108, - ["base_mine_detonation_time_ms"]=308, - ["base_mine_duration"]=54, - ["base_number_of_additional_fissures"]=309, - ["base_number_of_remote_mines_allowed"]=60, - ["base_number_of_support_ghosts_allowed"]=310, - ["base_number_of_totems_allowed"]=57, - ["base_number_of_traps_allowed"]=59, - ["base_overkill_icy_vortex_duration_ms"]=311, - ["base_physical_damage_to_deal_per_minute"]=134, - ["base_poison_chance_is_bleed_chance_instead"]=312, - ["base_poison_duration_+%"]=313, - ["base_projectile_speed_+%"]=314, - ["base_reduce_enemy_cold_resistance_%"]=69, - ["base_reduce_enemy_fire_resistance_%"]=68, - ["base_reduce_enemy_lightning_resistance_%"]=71, - ["base_remnant_duration_ms"]=315, - ["base_reservation_+%"]=317, - ["base_reservation_efficiency_+%"]=316, - ["base_skill_area_of_effect_+%"]=31, - ["base_skill_cost_life_instead_of_mana"]=37, - ["base_skill_cost_life_instead_of_mana_%"]=318, - ["base_skill_no_reservation"]=319, - ["base_skill_reserve_life_instead_of_mana"]=38, - ["base_spell_cooldown_speed_+%"]=320, - ["base_spell_repeat_count"]=109, - ["base_stun_duration_+%"]=321, - ["base_stun_threshold_reduction_+%"]=322, - ["base_totem_duration"]=51, - ["base_trap_duration"]=53, - ["base_use_life_in_place_of_mana"]=39, - ["base_warcry_echo_X_times"]=1259, - ["bleed_chance_%_vs_full_life_enemy"]=323, - ["bleed_chance_+%_vs_full_life_enemy"]=324, - ["bleed_on_hit_base_duration"]=143, - ["bleed_on_hit_with_attacks_%"]=325, - ["bleeding_monsters_attack_speed_+%"]=326, - ["bleeding_monsters_movement_velocity_+%"]=327, - ["blind_duration_+%"]=64, - ["blind_effect_+%"]=328, - ["blood_magic_skill_life_cost_+%_final"]=329, - ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=330, - ["branching_fissure_area_of_effect_+%_final"]=193, - ["branching_fissure_damage_+%_final"]=192, - ["break_armour_equal_to_%_of_dexterity_vs_parried_enemies"]=331, - ["burn_damage_+%"]=332, - ["can_only_damage_low_life_enemies"]=333, - ["cannot_break_armour"]=334, - ["cannot_cast_curses"]=122, - ["cannot_cause_bleeding"]=325, - ["cannot_cause_stun_but_allow_stun_buildup"]=335, - ["cannot_consume_impale"]=336, - ["cannot_consume_infusions"]=337, - ["cannot_consume_power_frenzy_endurance_charges"]=338, - ["cannot_daze"]=339, - ["cannot_inflict_blind"]=340, - ["cannot_inflict_elemental_ailments"]=155, - ["cannot_inflict_maim"]=341, - ["cannot_kill_enemies_with_hits"]=342, - ["cannot_miss_against_full_life_enemies"]=343, - ["cannot_pin"]=344, - ["cascadeable_offering_support_offering_casted_spell_damage_+%_final"]=345, - ["cascadeable_spells_occur_from_offering"]=345, - ["cast_linked_spells_on_attack_crit_%"]=123, - ["cast_linked_spells_on_melee_kill_%"]=124, - ["cast_on_damage_taken_%"]=130, - ["cast_on_damage_taken_damage_+%_final"]=117, - ["cast_on_damage_taken_threshold"]=130, - ["cast_on_death_%"]=127, - ["cast_on_death_damage_+%_final_while_dead"]=116, - ["cast_on_stunned_%"]=128, - ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=346, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=347, - ["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"]=348, - ["cast_when_damage_taken_trigger_threshold_+%"]=349, - ["cast_while_channelling_time_ms"]=131, - ["chaining_range_+%"]=350, - ["chains_hit_X_more_times"]=73, - ["chance_%_to_create_additional_remnant"]=355, - ["chance_%_to_double_effect_of_removing_charges"]=356, - ["chance_%_to_gain_abyssal_modifier_on_minion_death"]=357, - ["chance_%_to_gain_power_charges_per_combo_spent"]=351, - ["chance_for_coin_shower_on_kill_%"]=352, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=353, - ["chance_for_extra_damage_roll_%"]=354, - ["chance_to_aftershock_+%_per_250_ms_attack_time"]=359, - ["chance_to_bleed_on_hit_%_vs_maimed"]=360, - ["chance_to_chain_from_shocked_enemy_%"]=361, - ["chance_to_crush_on_hit_%"]=362, - ["chance_to_double_stun_duration_%"]=363, - ["chance_to_fork_extra_projectile_%"]=364, - ["chance_to_fork_from_frozen_enemy_%"]=365, - ["chance_to_fortify_on_melee_hit_+%"]=366, - ["chance_to_gain_1_more_charge_%"]=367, - ["chance_to_gain_1_more_random_charge_%"]=368, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=369, - ["chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%"]=370, - ["chance_to_gain_endurance_charge_on_perfect_timing_hit_%"]=371, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=372, - ["chance_to_ignore_hexproof_%"]=373, - ["chance_to_inflict_additional_impale_%"]=374, - ["chance_to_intimidate_on_hit_%"]=375, - ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=376, - ["chance_to_pierce_ignited_enemy_%"]=378, - ["chance_to_place_an_additional_mine_%"]=379, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=380, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=167, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=381, - ["chance_to_unnerve_on_hit_%"]=383, - ["channelled_skill_damage_+%"]=384, - ["chaos_damage_%_dealt_as_armour_break"]=385, - ["chaos_damage_+%"]=387, - ["chaos_damage_can_freeze"]=386, - ["chaos_damage_can_shock"]=205, - ["charge_skip_consume_chance_%"]=388, - ["chill_duration_+%"]=169, - ["chill_effect_+%"]=168, - ["chilled_ground_applies_%_freeze_multiplier_taken"]=389, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=390, - ["cold_ailment_effect_+%"]=391, - ["cold_damage_+%"]=393, - ["cold_damage_can_impale"]=392, - ["combat_rush_effect_+%"]=394, - ["combo_falloff_speed_+%"]=395, - ["companion_takes_%_damage_before_you_from_support"]=396, - ["conditional_skill_additional_usages_after_meeting_requirement"]=397, - ["conditional_skill_additional_usages_duration_ms"]=397, - ["consume_%_of_maximum_life_flask_charges_on_skill_use"]=853, - ["consume_%_of_maximum_mana_flask_charges_on_skill_use"]=510, - ["consume_armour_break_to_trigger_battershout_explosion"]=398, - ["consume_bleed_to_create_X_haemocrystals"]=399, - ["consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge"]=400, - ["consume_enemy_daze_to_always_hit"]=401, - ["consume_enemy_freeze_to_guarantee_crit"]=402, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=403, - ["consume_ignite_on_hit"]=404, - ["consume_maim_on_hit_to_break_%_armour"]=405, - ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=406, - ["consume_shock_of_X_enemies_to_trigger_shocking_rift"]=1251, - ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=407, - ["create_X_briar_thorns_on_slam"]=408, - ["create_life_remnant_on_melee_kill_bleeding_enemy_%"]=409, - ["create_mini_bell_on_expending_combo_per_X_combo_expended"]=410, - ["critical_hit_damaging_ailment_effect_+%"]=411, - ["critical_strike_chance_+%"]=65, - ["critical_strike_chance_+%_per_righteous_charge"]=1080, - ["critical_strike_chance_+%_vs_blinded_enemies"]=412, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=413, - ["critical_strike_multiplier_+_while_affected_by_elusive"]=157, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=414, - ["crossbow_load_x_bolts_on_dodge"]=415, - ["crossbow_reload_on_heavy_stun"]=416, - ["cruelty_duration_+%"]=159, - ["cruelty_effect_+%"]=417, - ["crush_for_2_seconds_on_hit_%_chance"]=418, - ["crushing_blow_vs_ignited_and_fully_armour_broken"]=419, - ["cull_frozen_enemies_on_hit"]=420, - ["curse_apply_as_aura"]=5, - ["curse_apply_as_curse_zone"]=421, - ["curse_area_of_effect_+%"]=422, - ["curse_effect_+%"]=137, - ["curse_ignores_curse_limit"]=423, - ["curse_pacify_for_final_%_of_duration"]=164, - ["curse_supported_by_blasphemy"]=5, - ["curse_zones_are_hazards"]=424, - ["curses_reflected_to_self"]=425, - ["damage_+%"]=428, - ["damage_+%_final_per_totem_in_radius_from_support_greatwood"]=426, - ["damage_+%_for_non_minions"]=429, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=430, - ["damage_+%_on_full_energy_shield"]=438, - ["damage_+%_per_200_mana_spent_recently"]=431, - ["damage_+%_per_endurance_charge"]=432, - ["damage_+%_per_frenzy_charge"]=433, - ["damage_+%_per_power_charge"]=434, - ["damage_+%_vs_enemies_on_full_life"]=435, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=436, - ["damage_+%_vs_frozen_enemies"]=437, - ["damage_+%_when_on_full_life"]=439, - ["damage_+%_when_on_low_life"]=440, - ["damage_+%_while_an_ailment_on_you"]=441, - ["damage_+%_while_life_leeching"]=442, - ["damage_+%_while_mana_leeching"]=443, - ["damage_over_time_+%"]=427, - ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=188, - ["damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=444, - ["damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=445, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=446, - ["damage_vs_enemies_on_low_life_+%"]=447, - ["damaging_ailments_deal_damage_+%_faster"]=448, - ["dangerous_resolve_attack_damage_+1%_final_per_X_armour"]=449, - ["dangerous_resolve_explosion_cooldown_ms"]=450, - ["dangerous_resolve_stack_duration_ms"]=451, - ["daze_on_hit_vs_enemies_at_full_life"]=452, - ["daze_self_on_critical_hit_for_X_ms"]=453, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=454, - ["deal_no_elemental_damage"]=455, - ["deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger"]=456, - ["deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger"]=457, - ["deathmark_minion_damage_+%_final"]=458, - ["difficulty_of_meeting_conditional_requirement_+%"]=459, - ["display_base_intensity_loss"]=460, - ["distance_scaled_accuracy_rating_penalty_+%"]=461, - ["dot_multiplier_+"]=462, - ["double_ancestral_boost_effect"]=463, - ["elemental_damage_+%"]=465, - ["elemental_damage_+%_final_per_5_lowest_resonance"]=187, - ["elemental_damage_+%_final_per_righteous_charge"]=1081, - ["elemental_damage_cannot_be_reflected"]=464, - ["elusive_effect_+%"]=466, - ["enemies_you_shock_movement_speed_+%"]=467, - ["enemies_you_shock_take_%_increased_physical_damage"]=468, - ["enemy_phys_reduction_%_penalty_vs_hit"]=469, - ["energy_generated_+%"]=470, - ["evasion_+%_while_performing_action_per_250_ms_attack_time"]=471, - ["expand_support_seal_gain_frequency_as_%_of_total_cast_time"]=472, - ["explode_on_low_life_%_maximum_life_to_deal"]=473, - ["exposure_effect_+%"]=474, - ["extra_target_targeting_distance_+%"]=30, - ["faster_bleed_%"]=475, - ["faster_burn_%"]=476, - ["faster_poison_%"]=477, - ["faster_poison_%_per_current_rage"]=478, - ["feeding_frenzy_minion_damage_+%_final"]=479, - ["feeding_frenzy_minion_damage_taken_+%_final"]=480, - ["final_strike_attack_damage_%_dealt_as_armour_break"]=481, - ["final_strike_is_ancestrally_boosted"]=482, - ["fire_damage_+%"]=483, - ["fire_dot_multiplier_+"]=484, - ["firestorm_drop_burning_ground_duration_ms"]=485, - ["flame_pillar_support_maximum_pillars_per_skill_use"]=486, - ["font_of_blood_radius"]=233, - ["font_of_mana_radius"]=234, - ["fortify_duration_+%"]=487, - ["freeze_applies_%_physical_damage_taken_as_armour_break"]=488, - ["freeze_applies_cold_resistance_+"]=489, - ["freeze_duration_+%"]=491, - ["freeze_duration_ms_+"]=490, - ["freeze_mine_cold_resistance_+_while_frozen"]=156, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=493, - ["frost_bomb_damage_+%_final_per_100ms_duration"]=494, - ["fully_break_enemies_armour_on_heavy_stun"]=495, - ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=496, - ["fully_broken_armour_duration_ms_removed_on_hit"]=497, - ["gain_%_damage_as_lighting_per_mana_flask_charge_consumed"]=510, - ["gain_%_of_base_wand_damage_as_added_spell_damage"]=498, - ["gain_%_of_damage_as_physical_per_20_life_cost_up_to_40_%"]=511, - ["gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds"]=512, - ["gain_1_rage_on_use_%_chance"]=499, - ["gain_X_guard_on_heavy_stun_per_10_strength"]=500, - ["gain_X_guard_on_stun_per_10_strength"]=500, - ["gain_X_perfection_on_successful_perfect_timing"]=501, - ["gain_X_tasalios_perfection_on_perfect_timing"]=502, - ["gain_X_volatility_on_empowered_skill_use"]=503, - ["gain_X_wildshard_stacks_on_cast"]=504, - ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=358, - ["gain_dangerous_resolve_stack_per_X_ms_channeling"]=505, - ["gain_elusive_on_crit_%_chance"]=151, - ["gain_endurance_charge_on_melee_stun"]=506, - ["gain_endurance_charge_on_melee_stun_%"]=506, - ["gain_energy_shield_cost_equal_to_intelligence"]=507, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=508, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=509, - ["gain_power_charge_on_kill_with_hit_%"]=513, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=186, - ["gain_righteous_charge_on_mana_spent_%"]=514, - ["gain_unholy_might_for_X_ms_on_command"]=515, - ["gain_vaal_soul_on_hit_cooldown_ms"]=516, - ["gain_x_endurance_charges_on_heavy_stunning_unique_enemy"]=517, - ["gain_x_rage_on_melee_hit"]=518, - ["gem_display_quality_has_no_effect"]=519, - ["global_cannot_crit"]=195, - ["global_chance_to_blind_on_hit_%"]=63, - ["global_hit_causes_monster_flee_%"]=520, - ["global_knockback"]=521, - ["global_maximum_added_chaos_damage"]=522, - ["global_maximum_added_cold_damage"]=523, - ["global_maximum_added_fire_damage"]=524, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1009, - ["global_maximum_added_lightning_damage"]=525, - ["global_maximum_added_physical_damage"]=526, - ["global_minimum_added_chaos_damage"]=522, - ["global_minimum_added_cold_damage"]=523, - ["global_minimum_added_fire_damage"]=524, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1009, - ["global_minimum_added_lightning_damage"]=525, - ["global_minimum_added_physical_damage"]=526, - ["global_poison_on_hit"]=152, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=527, - ["grenade_only_detonate_from_detonators"]=528, - ["grenade_skill_%_chance_to_explode_twice"]=529, - ["grenade_skill_cooldown_speed_+%"]=530, - ["grenade_skill_does_not_bounce_off_ground"]=531, - ["ground_effects_apply_cooldown_speed_+%_final"]=532, - ["ground_effects_cannot_trigger"]=533, - ["grounding_shocks_chance_%_to_create_orb_on_shocking_enemy"]=534, - ["guard_on_stun_guard_duration_ms"]=500, - ["haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed"]=535, - ["hazard_rearm_%_chance"]=536, - ["hazards_trigger_at_end_of_duration_instead"]=537, - ["herald_effect_on_self_+%"]=538, - ["hex_transfer_on_death_range_+%"]=539, - ["hit_damage_+%"]=540, - ["hits_grant_cruelty"]=190, - ["hits_ignore_enemy_fire_resistance"]=541, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=542, - ["ice_crystal_explosion_cold_damage_can_impale"]=543, - ["ice_crystal_explosion_impale_chance_%"]=544, - ["ignite_duration_+%"]=545, - ["ignite_effect_+%_final_against_frozen_enemies"]=546, - ["ignites_apply_fire_resistance_+"]=547, - ["impale_magnitude_+%"]=548, - ["impale_on_hit_%_chance"]=549, - ["impale_support_physical_damage_+%_final"]=550, - ["inc_aoe_plus_more_area_damage_+%_final"]=551, - ["infernal_legion_minion_burning_effect_radius"]=1024, - ["infernal_legion_minions_have_burning_effect_radius_+"]=182, - ["inflict_exposure_for_x_ms_on_cold_crit"]=552, - ["inflict_exposure_for_x_ms_on_ignite"]=553, - ["inflict_exposure_for_x_ms_on_shock"]=554, - ["inspiration_charge_duration_+%"]=555, - ["instability_on_critical_%_chance"]=556, - ["instilling_all_damage_%_to_gain_as_instilling_type"]=557, - ["intensity_loss_frequency_while_moving_+%"]=558, - ["intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken"]=559, - ["iron_grip_damage_modifier_effectiveness_%"]=560, - ["iron_will_damage_modifier_effectiveness_%"]=561, - ["is_remote_mine"]=45, - ["keystone_point_blank"]=44, - ["kill_enemy_on_hit_if_under_10%_life"]=43, - ["knockback_chance_%_at_close_range"]=563, - ["knockback_distance_+%"]=564, - ["life_leech_from_source_not_removed_at_full_life"]=565, - ["lightning_ailment_effect_+%"]=566, - ["lightning_damage_+%"]=567, - ["local_gem_dex_requirement_+%"]=568, - ["local_gem_int_requirement_+%"]=569, - ["local_gem_str_requirement_+%"]=570, - ["lose_%_of_life_es_and_mana_when_skill_is_used"]=571, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1082, - ["loyalty_%_of_redirected_damage_recouped_as_life_for_owner"]=572, - ["maim_effect_+%"]=573, - ["maim_on_hit_%"]=574, - ["mana_gain_per_target"]=104, - ["mana_leech_from_elemental_instead"]=575, - ["manaweave_added_cold_damage_%_cost_if_payable"]=577, - ["manaweave_added_lightning_damage_%_cost_if_payable"]=576, - ["manaweave_cost_equals_%_unreserved_mana"]=576, - ["mark_effect_+%"]=204, - ["marked_enemies_leech_attack_damage_taken_as_life_to_you_permyriad"]=579, - ["marked_enemies_leech_attack_damage_taken_as_mana_to_you_permyriad"]=578, - ["marked_target_%_physical_damage_taken_as_armour_break"]=580, - ["marks_avoid_consumption_when_first_activated"]=581, - ["maximum_added_cold_damage_per_frenzy_charge"]=594, - ["maximum_curse_zones_allowed"]=583, - ["maximum_dangerous_resolve_stacks"]=584, - ["maximum_intensify_stacks"]=585, - ["melee_attack_number_of_spirit_strikes"]=28, - ["melee_damage_+%"]=586, - ["melee_damage_vs_bleeding_enemies_+%"]=587, - ["melee_physical_damage_+%"]=588, - ["melee_range_+"]=589, - ["melee_splash"]=106, - ["mine_critical_strike_chance_+%_per_power_charge"]=171, - ["mine_detonation_radius_+%"]=590, - ["mine_detonation_speed_+%"]=591, - ["mine_duration_+%"]=62, - ["mine_laying_speed_+%"]=592, - ["mine_projectile_speed_+%_per_frenzy_charge"]=593, - ["mine_throwing_speed_+%_per_frenzy_charge"]=170, - ["minimum_added_cold_damage_per_frenzy_charge"]=594, - ["minimum_power_from_quality"]=595, - ["minion_actor_scale_+%"]=596, - ["minion_additional_physical_damage_reduction_%"]=597, - ["minion_attack_speed_+%"]=598, - ["minion_block_%"]=599, - ["minion_burning_damage_+%"]=600, - ["minion_cast_speed_+%"]=601, - ["minion_chance_to_deal_double_damage_%"]=602, - ["minion_chance_to_taunt_on_hit_%"]=603, - ["minion_command_skill_cooldown_speed_+%"]=604, - ["minion_cooldown_recovery_+%"]=605, - ["minion_damage_+%"]=606, - ["minion_damage_+%_on_full_life"]=607, - ["minion_elemental_resistance_%"]=172, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=179, - ["minion_fire_damage_taken_+%"]=180, - ["minion_gain_unholy_might_for_X_ms_on_command"]=608, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=609, - ["minion_larger_aggro_radius"]=1273, - ["minion_maximum_all_elemental_resistances_%"]=173, - ["minion_maximum_life_+%"]=610, - ["minion_movement_speed_+%"]=611, - ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=612, - ["minion_on_death_heal_radius"]=612, - ["minion_projectile_speed_+%"]=613, - ["minion_recover_%_maximum_life_on_hit"]=614, - ["minions_are_defensive"]=1274, - ["minions_are_gigantic"]=615, - ["minions_cannot_be_damaged"]=616, - ["minions_deal_no_damage"]=617, - ["minions_inflict_exposure_on_hit_%_chance"]=618, - ["mirage_archer_number_of_additional_projectiles"]=619, - ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"]=620, - ["mixed_maladies_poison_effect_+%_final_vs_bleeding"]=621, - ["multiple_projectiles_projectile_spread_+%"]=622, - ["multistrike_area_of_effect_+%_per_repeat"]=623, - ["multistrike_damage_+%_final_on_first_repeat"]=624, - ["multistrike_damage_+%_final_on_second_repeat"]=625, - ["multistrike_damage_+%_final_on_third_repeat"]=626, - ["never_freeze"]=627, - ["never_ignite"]=200, - ["never_shock"]=201, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=628, - ["no_cost"]=629, - ["no_spirit_strikes"]=29, - ["non_curse_aura_effect_+%"]=630, - ["non_damaging_ailment_effect_+%"]=631, - ["non_skill_base_all_damage_%_to_gain_as_chaos"]=632, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=633, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=634, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=635, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=636, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=637, - ["non_skill_base_cold_damage_%_to_convert_to_fire"]=638, - ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=639, - ["non_skill_base_cold_damage_%_to_gain_as_fire"]=640, - ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=641, - ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=642, - ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=643, - ["non_skill_base_physical_damage_%_to_convert_to_cold"]=644, - ["non_skill_base_physical_damage_%_to_convert_to_fire"]=645, - ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=646, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=647, - ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=648, - ["non_skill_base_physical_damage_%_to_gain_as_fire"]=649, - ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=650, - ["nova_skills_cast_at_target_location"]=651, - ["number_of_additional_curses_allowed"]=652, - ["number_of_additional_forks_base"]=76, - ["number_of_additional_mines_to_place"]=653, - ["number_of_additional_poison_stacks"]=654, - ["number_of_additional_projectiles"]=655, - ["number_of_additional_remote_mines_allowed"]=656, - ["number_of_additional_traps_allowed"]=657, - ["number_of_additional_traps_to_throw"]=46, - ["number_of_branching_fissures"]=191, - ["number_of_chains"]=72, - ["number_of_dual_cascade_aftershocks"]=658, - ["number_of_mines_to_place"]=45, + ["add_power_charge_on_critical_strike_%"]=241, + ["add_power_charge_on_kill_%_chance"]=242, + ["added_cold_damage_%_ward_cost"]=243, + ["added_damage_+%_final"]=244, + ["added_physical_damage_%_ward_cost"]=245, + ["additional_base_critical_strike_chance"]=246, + ["additional_chance_to_freeze_chilled_enemies_%"]=247, + ["additional_combo_gain_chance_%"]=248, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=250, + ["additional_critical_strike_chance_permyriad_while_dead"]=249, + ["additional_projectiles_per_intensity"]=251, + ["aftershock_area_of_effect_+%_final"]=253, + ["aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks"]=252, + ["aftershock_damage_+%_final_from_support_dual_cascade_aftershocks"]=254, + ["aftershocks_create_jagged_ground"]=255, + ["aggravate_bleeding_on_pin_chance_%"]=256, + ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=258, + ["ailment_threshold_+%_while_channelling"]=259, + ["all_damage_gained_as_cold_instead"]=260, + ["all_exposure_on_hit_for_duration_ms"]=261, + ["allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life"]=262, + ["allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana"]=263, + ["always_freeze"]=305, + ["always_pierce"]=210, + ["always_shock_wet_enemies"]=264, + ["ancestor_totem_buff_effect_+%"]=265, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=266, + ["ancestral_aid_required_count_of_recent_blocks"]=267, + ["ancestral_call_spirit_strike_interval_ms"]=268, + ["ancestral_slam_interval_duration"]=196, + ["ancestral_slam_stun_threshold_reduction_+%"]=269, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=270, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=271, + ["apply_X_incision_on_hit"]=272, + ["apply_attack_projectile_weakness_%_per_1m_knockback"]=273, + ["apply_linked_curses_on_hit_%"]=133, + ["apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry"]=274, + ["area_damage_+%"]=275, + ["area_of_effect_+%_per_combo_stack"]=276, + ["area_of_effect_+%_per_totem_in_radius_from_support_greatwood"]=277, + ["area_of_effect_+%_while_dead"]=47, + ["armour_+%_while_performing_action_per_250_ms_attack_time"]=281, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=278, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=279, + ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=280, + ["attack_and_cast_speed_+%"]=283, + ["attack_and_cast_speed_+%_during_onslaught"]=284, + ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=202, + ["attack_critical_strike_chance_+%"]=285, + ["attack_damage_+%"]=288, + ["attack_damage_+%_per_1000_accuracy_rating"]=289, + ["attack_damage_+1%_per_X_armour"]=286, + ["attack_damage_is_lucky_if_surrounded"]=287, + ["attack_maximum_added_physical_damage_as_%_of_strength"]=282, + ["attack_maximum_added_physical_damage_per_10_rage"]=290, + ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=291, + ["attack_maximum_added_physical_damage_with_weapons"]=292, + ["attack_minimum_added_physical_damage_as_%_of_strength"]=282, + ["attack_minimum_added_physical_damage_per_10_rage"]=290, + ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=291, + ["attack_minimum_added_physical_damage_with_weapons"]=292, + ["attack_skills_additional_ballista_totems_allowed"]=70, + ["attack_speed_+%"]=293, + ["attack_speed_+%_when_on_low_life"]=294, + ["attack_speed_+%_with_atleast_20_rage"]=295, + ["attacks_impale_on_hit_%_chance"]=296, + ["attacks_inflict_bleeding_on_hit"]=363, + ["attacks_roll_crits_twice"]=297, + ["aura_can_affect_self"]=157, + ["aura_effect_+%"]=49, + ["avoid_interruption_while_using_this_skill_%"]=298, + ["barrage_support_projectile_spread_+%"]=299, + ["base_all_ailment_duration_+%"]=300, + ["base_aura_area_of_effect_+%"]=48, + ["base_bleed_chance_is_poison_chance_instead"]=301, + ["base_bleed_duration_+%"]=302, + ["base_cast_speed_+%"]=303, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=304, + ["base_chance_to_freeze_%"]=305, + ["base_chance_to_inflict_bleeding_%"]=306, + ["base_chance_to_not_consume_corpse_%"]=414, + ["base_chance_to_pierce_%"]=307, + ["base_chance_to_poison_on_hit_%"]=166, + ["base_chance_to_shock_%"]=308, + ["base_chaos_damage_can_ignite"]=309, + ["base_chaos_damage_to_deal_per_minute"]=145, + ["base_cold_damage_to_deal_per_minute"]=149, + ["base_combo_stacks_decay_delay_ms"]=310, + ["base_consume_enemy_freeze_on_hit"]=311, + ["base_consume_enemy_shock_on_hit"]=312, + ["base_cooldown_modifier_ms"]=313, + ["base_cooldown_speed_+%"]=314, + ["base_cooldown_speed_+%_final"]=315, + ["base_cost_+%"]=39, + ["base_critical_strike_multiplier_+"]=81, + ["base_curse_delay_+%"]=316, + ["base_curse_duration_+%"]=317, + ["base_damage_+%_while_an_ailment_on_you"]=318, + ["base_deal_no_chaos_damage"]=319, + ["base_debuff_slow_magnitude_+%"]=320, + ["base_es_cost_%"]=321, + ["base_fire_damage_to_deal_per_minute"]=146, + ["base_freezing_enemy_chills_enemies_in_radius"]=539, + ["base_global_chance_to_knockback_%"]=322, + ["base_inflict_cold_exposure_on_hit_%_chance"]=323, + ["base_inflict_fire_exposure_on_hit_%_chance"]=324, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=325, + ["base_killed_monster_dropped_item_quantity_+%"]=326, + ["base_killed_monster_dropped_item_rarity_+%"]=327, + ["base_life_cost_%"]=328, + ["base_life_cost_+%"]=40, + ["base_life_gain_per_target"]=117, + ["base_life_leech_from_physical_attack_damage_permyriad"]=329, + ["base_life_reservation_+%"]=331, + ["base_life_reservation_efficiency_+%"]=330, + ["base_lightning_damage_can_electrocute"]=332, + ["base_limit_+"]=333, + ["base_mana_cost_%"]=334, + ["base_mana_cost_+"]=207, + ["base_mana_cost_-%"]=41, + ["base_mana_cost_efficiency_+%"]=335, + ["base_mana_cost_efficiency_+%_during_mana_flask"]=222, + ["base_mana_leech_from_physical_attack_damage_permyriad"]=336, + ["base_mana_reservation_+%"]=337, + ["base_maximum_seals_for_skill"]=338, + ["base_mine_detonation_time_ms"]=339, + ["base_mine_duration"]=68, + ["base_number_of_additional_fissures"]=340, + ["base_number_of_remote_mines_allowed"]=74, + ["base_number_of_runic_aftershocks_allowed"]=341, + ["base_number_of_support_ghosts_allowed"]=342, + ["base_number_of_totems_allowed"]=71, + ["base_number_of_traps_allowed"]=73, + ["base_overkill_icy_vortex_duration_ms"]=343, + ["base_physical_damage_to_deal_per_minute"]=147, + ["base_poison_chance_is_bleed_chance_instead"]=344, + ["base_poison_duration_+%"]=345, + ["base_projectile_speed_+%"]=346, + ["base_reduce_enemy_cold_resistance_%"]=83, + ["base_reduce_enemy_fire_resistance_%"]=82, + ["base_reduce_enemy_lightning_resistance_%"]=85, + ["base_remnant_duration_ms"]=347, + ["base_reservation_+%"]=349, + ["base_reservation_efficiency_+%"]=348, + ["base_skill_area_of_effect_+%"]=45, + ["base_skill_cost_life_instead_of_mana"]=51, + ["base_skill_cost_life_instead_of_mana_%"]=350, + ["base_skill_no_reservation"]=351, + ["base_skill_no_spirit_reservation"]=352, + ["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_totem_duration"]=65, + ["base_trap_duration"]=67, + ["base_use_life_in_place_of_mana"]=53, + ["base_warcry_echo_X_times"]=1304, + ["base_ward_cost_%"]=359, + ["base_ward_cost_+"]=360, + ["base_ward_cost_+_%_of_maximum_ward"]=208, + ["bleed_chance_%_vs_full_life_enemy"]=361, + ["bleed_chance_+%_vs_full_life_enemy"]=362, + ["bleed_on_hit_base_duration"]=156, + ["bleed_on_hit_with_attacks_%"]=363, + ["bleeding_monsters_attack_speed_+%"]=364, + ["bleeding_monsters_movement_velocity_+%"]=365, + ["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, + ["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, + ["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_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, + ["cast_linked_spells_on_attack_crit_%"]=135, + ["cast_linked_spells_on_melee_kill_%"]=136, + ["cast_on_damage_taken_%"]=143, + ["cast_on_damage_taken_damage_+%_final"]=129, + ["cast_on_damage_taken_threshold"]=143, + ["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_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, + ["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_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, + ["chaos_damage_can_shock"]=219, + ["charge_skip_consume_chance_%"]=426, + ["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"]=907, + ["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"]=1300, + ["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, + ["critical_strike_chance_+%"]=79, + ["critical_strike_chance_+%_per_5_rage"]=455, + ["critical_strike_chance_+%_per_righteous_charge"]=1138, + ["critical_strike_chance_+%_vs_blinded_enemies"]=456, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=457, + ["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, + ["cruelty_duration_+%"]=172, + ["cruelty_effect_+%"]=461, + ["crush_for_2_seconds_on_hit_%_chance"]=462, + ["crushed_target_%_physical_damage_taken_as_armour_break"]=226, + ["crushing_blow_vs_ignited_and_fully_armour_broken"]=463, + ["cull_frozen_enemies_on_hit"]=464, + ["curse_apply_as_aura"]=19, + ["curse_apply_as_curse_zone"]=465, + ["curse_area_of_effect_+%"]=466, + ["curse_effect_+%"]=150, + ["curse_ignores_curse_limit"]=467, + ["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, + ["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, + ["elemental_damage_+%_final_per_5_lowest_resonance"]=200, + ["elemental_damage_+%_final_per_righteous_charge"]=1139, + ["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, + ["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"]=262, + ["font_of_mana_radius"]=263, + ["fortify_duration_+%"]=534, + ["freeze_applies_%_physical_damage_taken_as_armour_break"]=535, + ["freeze_applies_cold_resistance_+"]=536, + ["freeze_duration_+%"]=538, + ["freeze_duration_ms_+"]=537, + ["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"]=1327, + ["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, + ["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_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, + ["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"]=1065, + ["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"]=1065, + ["global_minimum_added_lightning_damage"]=573, + ["global_minimum_added_physical_damage"]=574, + ["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, + ["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"]=1080, + ["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, + ["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"]=1140, + ["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, + ["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, + ["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, + ["melee_attack_number_of_spirit_strikes"]=42, + ["melee_damage_+%"]=637, + ["melee_damage_vs_bleeding_enemies_+%"]=638, + ["melee_physical_damage_+%"]=639, + ["melee_range_+"]=640, + ["melee_splash"]=120, + ["mine_critical_strike_chance_+%_per_power_charge"]=184, + ["mine_detonation_radius_+%"]=641, + ["mine_detonation_speed_+%"]=642, + ["mine_duration_+%"]=76, + ["mine_laying_speed_+%"]=643, + ["mine_projectile_speed_+%_per_frenzy_charge"]=644, + ["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, + ["minion_elemental_resistance_%"]=185, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=192, + ["minion_fire_damage_resistance_%"]=1072, + ["minion_fire_damage_taken_+%"]=193, + ["minion_gain_unholy_might_for_X_ms_on_command"]=660, + ["minion_larger_aggro_radius"]=1321, + ["minion_maximum_all_elemental_resistances_%"]=186, + ["minion_maximum_life_+%"]=661, + ["minion_movement_speed_+%"]=662, + ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=663, + ["minion_on_death_heal_radius"]=663, + ["minion_projectile_speed_+%"]=664, + ["minion_recover_%_maximum_life_on_hit"]=665, + ["minions_are_defensive"]=1322, + ["minions_are_gigantic"]=666, + ["minions_cannot_be_damaged"]=667, + ["minions_deal_no_damage"]=668, + ["minions_inflict_exposure_on_hit_%_chance"]=669, + ["mirage_archer_number_of_additional_projectiles"]=670, + ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"]=671, + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"]=672, + ["modifiers_to_number_of_projectiles_instead_apply_to_terrain_only_chains"]=673, + ["movement_speed_penalty_+%_while_performing_action"]=674, + ["multiple_projectiles_projectile_spread_+%"]=675, + ["never_freeze"]=676, + ["never_ignite"]=214, + ["never_shock"]=215, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=677, + ["no_cost"]=678, + ["no_spirit_strikes"]=43, + ["non_curse_aura_effect_+%"]=679, + ["non_damaging_ailment_effect_+%"]=680, + ["non_skill_base_all_damage_%_to_gain_as_chaos"]=681, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=682, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=683, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=684, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=685, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=686, + ["non_skill_base_cold_damage_%_to_convert_to_fire"]=687, + ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=688, + ["non_skill_base_cold_damage_%_to_gain_as_fire"]=689, + ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=690, + ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=691, + ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=692, + ["non_skill_base_physical_damage_%_to_convert_to_cold"]=693, + ["non_skill_base_physical_damage_%_to_convert_to_fire"]=694, + ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=695, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=696, + ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=697, + ["non_skill_base_physical_damage_%_to_gain_as_fire"]=698, + ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=699, + ["nova_skills_cast_at_target_location"]=700, + ["number_of_additional_curses_allowed"]=701, + ["number_of_additional_forks_base"]=90, + ["number_of_additional_mines_to_place"]=702, + ["number_of_additional_poison_stacks"]=703, + ["number_of_additional_projectiles"]=704, + ["number_of_additional_remote_mines_allowed"]=705, + ["number_of_additional_traps_allowed"]=706, + ["number_of_additional_traps_to_throw"]=60, + ["number_of_branching_fissures"]=204, + ["number_of_chains"]=86, + ["number_of_dual_cascade_aftershocks"]=707, + ["number_of_mines_to_place"]=59, ["number_of_totems_allowed_is_1"]=1, - ["number_of_warcries_exerting_this_action"]=562, - ["offering_spells_effect_+%"]=659, - ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=660, - ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=661, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=662, - ["overabundance_life_reserved_for_x_ms"]=663, - ["overabundance_reserve_%_life_on_skill_use"]=663, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=664, - ["palm_skill_number_of_spirit_strikes"]=665, - ["parallel_projectile_firing_point_x_dist_+%"]=666, + ["number_of_warcries_exerting_this_action"]=610, + ["offering_spells_effect_+%"]=708, + ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=709, + ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=710, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=711, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=712, + ["palm_skill_number_of_spirit_strikes"]=713, + ["parallel_projectile_firing_point_x_dist_+%"]=714, parent="stat_descriptions", - ["perfect_timing_window_ms_+%"]=671, - ["physical_damage_+%"]=672, - ["pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite"]=673, - ["pillar_of_flame_consume_ignite_to_create_X_pillars"]=165, - ["pin_almost_pinned_enemies"]=674, - ["placing_traps_cooldown_recovery_+%"]=675, - ["plant_skill_damage_+%_final_when_wet"]=676, - ["projectile_base_number_of_targets_to_pierce"]=52, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=677, - ["projectile_chance_to_not_pierce_%"]=678, - ["projectile_damage_+%"]=679, - ["projectile_damage_+%_if_pierced_enemy"]=680, - ["projectile_damage_+%_vs_nearby_enemies"]=683, - ["projectile_number_to_split"]=74, - ["projectile_randomly_fork_chain_or_pierce"]=681, - ["projectile_return_%_chance"]=77, - ["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"]=682, - ["projectiles_fork"]=75, - ["projectiles_nova"]=684, - ["projectiles_pierce_all_targets_in_x_range"]=685, - ["projectiles_rain"]=40, - ["projectiles_return"]=77, - ["projectiles_spiral"]=686, - ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=687, - ["quality_display_base_totem_duration_is_gem"]=51, - ["quality_display_lifetap_is_gem"]=988, - ["quality_display_melee_splash_is_gem"]=107, - ["quality_display_swiftbrand_is_gem"]=149, - ["rage_skip_consume_chance_%"]=688, - ["random_projectile_direction"]=689, - ["randomly_curse_self_on_skill_use"]=690, - ["recoup_%_of_spell_cost_as_mana_on_cast"]=692, - ["recoup_mana_%_on_minion_death"]=691, - ["recover_%_life_and_mana_per_minute_for_supported_offering_lifetime"]=693, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=695, - ["recover_%_maximum_life_on_cull"]=696, - ["recover_%_maximum_mana_on_cull"]=697, - ["recover_mana_%_on_minion_death"]=694, - ["recover_permyriad_life_on_skill_use"]=698, - ["reduce_enemy_chaos_resistance_%"]=699, - ["reduce_enemy_elemental_resistance_%"]=70, - ["refresh_bleeding_duration_on_hit_%_chance"]=700, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=701, - ["regenerate_%_life_over_1_second_on_skill_use"]=702, - ["reload_speed_+%"]=703, - ["remnant_delay_X_ms"]=704, - ["remnant_effect_+%"]=705, - ["remnant_pickup_range_+%"]=706, - ["remnants_affect_allies_in_presence_instead"]=707, - ["remnants_vanish_after_X_ms"]=708, - ["remote_mined_by_support"]=709, - ["remove_ailment_when_applying_relevant_ailment"]=710, - ["remove_freeze_on_ignite"]=711, - ["repeat_last_step_of_combo_attack"]=712, - ["restore_%_life_on_skill_use_per_1000_ms_cooldown"]=713, - ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=714, - ["rip_support_buff_base_duration"]=409, - ["rip_support_life_regeneration_rate_+%"]=409, - ["rip_support_life_remnant_creation_radius"]=715, - ["sacrifice_%_life_on_skill_use"]=716, - ["sacrificial_lamb_minion_always_detonatable"]=717, - ["secondary_base_fire_damage_to_deal_per_minute"]=135, - ["shapeshift_slam_skill_aftershock_chance_%"]=718, - ["shock_chance_+%"]=719, - ["shock_duration_+%"]=720, - ["shock_effect_+%"]=721, - ["shock_nearby_enemy_area_of_effect_radius"]=773, - ["shock_nearby_enemy_base_area_of_effect_radius"]=773, - ["shocks_reflected_to_self"]=722, - ["sigil_repeat_frequency_+%"]=723, - ["skill_X_fewer_maximum_stages"]=725, - ["skill_X_minimum_stages"]=726, - ["skill_area_of_effect_+%_per_expand_seal"]=727, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=728, - ["skill_buff_effect_+%"]=729, - ["skill_can_only_use_bow"]=1214, - ["skill_can_only_use_non_melee_weapons"]=1217, - ["skill_can_own_mirage_archers"]=730, - ["skill_cannot_be_used_unless_stationary_for_X_ms"]=731, - ["skill_cannot_generate_endurance_charges"]=732, - ["skill_cannot_generate_frenzy_charges"]=733, - ["skill_cannot_generate_power_charges"]=734, - ["skill_conditional_requires_X_volatility"]=735, - ["skill_consume_corpse_within_X_units_on_use"]=736, - ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=737, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=738, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=739, - ["skill_consume_up_to_X_corpses_on_use"]=736, - ["skill_detonate_random_volatility_amount_on_use"]=740, - ["skill_detonation_time_+%"]=741, - ["skill_effect_and_damaging_ailment_duration_+%"]=742, - ["skill_effect_duration_+%"]=743, - ["skill_effect_duration_+%_while_dead"]=744, - ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=745, - ["skill_grenade_detonate_only_at_end_of_duration"]=746, - ["skill_has_double_limit"]=747, - ["skill_has_spectral_arrows"]=748, - ["skill_hyena_cackle_size"]=749, - ["skill_is_blessing_skill"]=724, - ["skill_max_unleash_seals"]=1252, - ["skill_maximum_energy_+%"]=750, - ["skill_maximum_number_of_combo_stacks"]=197, - ["skill_offering_targets_an_additional_skeleton"]=751, - ["skill_uncapped_combo_counter"]=198, - ["skill_unusable_until_moved_X_distance"]=753, - ["skill_wolf_pack_size"]=754, - ["skills_are_usable_without_mana_cost_while_surrounded"]=755, - ["slam_aftershock_chance_%"]=756, - ["snipe_triggered_skill_damage_+%_final"]=757, - ["solar_orb_base_pulse_frequency_ms"]=758, - ["spell_critical_strike_chance_+%"]=759, - ["spell_damage_+%"]=760, - ["spell_daze_on_critical_hit_dealing_physical_damage"]=761, - ["spell_echo_plus_chance_double_damage_%_final"]=762, - ["spell_only_castable_on_death"]=126, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=763, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack"]=764, - ["spell_uncastable_if_triggerable"]=126, - ["spellslinger_trigger_on_wand_attack_%"]=129, - ["static_strike_base_zap_frequency_ms"]=765, - ["static_strike_zap_speed_+%"]=766, - ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=767, - ["storm_skills_spawn_at_initiator_location"]=768, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=769, - ["strikes_are_ancestrally_boosted"]=770, - ["summon_2_totems"]=58, - ["summon_cold_resistance_+"]=119, - ["summon_fire_resistance_+"]=118, - ["summon_lightning_resistance_+"]=120, - ["summon_mirage_archer_on_hit"]=771, - ["summon_totem_cast_speed_+%"]=772, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=773, - ["support_%_chance_to_trigger_deadly_current_on_shock"]=774, - ["support_ablation_offering_skill_damage_+%_final"]=775, - ["support_active_skill_consume_enemy_freeze_to_apply_chill"]=1270, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1268, - ["support_added_cooldown_count_if_not_instant"]=776, - ["support_additional_accurary_rating_+%_final"]=777, - ["support_additional_fissures_damage_+%_final"]=778, - ["support_additional_fissures_skill_speed_+%_final"]=779, - ["support_additional_totem_damage_+%_final"]=92, - ["support_additional_trap_%_chance_for_1_additional_trap"]=780, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=47, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=48, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=49, - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"]=781, - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=782, - ["support_advancing_assault_projectile_damage_+%_final"]=783, - ["support_ailment_cooldown_ailment_chance_+%_final"]=784, - ["support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment"]=785, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=786, - ["support_ammo_conservation_crossbow_reload_speed_+%_final"]=787, - ["support_ancestor_slam_totem_damage_+%_final"]=6, - ["support_ancestral_call_damage_+%_final"]=788, - ["support_ancestral_slam_big_hit_area_+%"]=185, - ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=184, - ["support_ancestral_warrior_totem_attack_speed_+%_final"]=789, - ["support_anticipation_charge_gain_frequency_+%"]=790, - ["support_anticipation_rapid_fire_count"]=1252, - ["support_aoe_cooldown_aoe_+%_final"]=791, - ["support_apply_daze_on_armour_break"]=792, - ["support_apply_daze_on_warcry"]=793, - ["support_arcane_archery_damage_+%_final"]=794, - ["support_arcane_surge_base_duration_ms"]=158, - ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=158, - ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=795, - ["support_area_concentrate_area_damage_+%_final"]=12, - ["support_area_of_effect_+%_final"]=796, - ["support_armour_explosion"]=797, - ["support_arms_length_knockback_distance_+%_final"]=798, - ["support_astral_projection_aoe_+%_final"]=799, - ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=800, - ["support_attack_skills_elemental_damage_+%_final"]=10, - ["support_attack_totem_attack_speed_+%_final"]=142, - ["support_atziri_curse_effect_+%_final"]=801, - ["support_aura_duration_base_buff_duration"]=802, - ["support_auto_shotgun_attack_speed_+%_final"]=803, - ["support_auto_shotgun_damage_+%_final"]=804, - ["support_auto_shotgun_projectile_count_+%_final"]=805, - ["support_auto_shotgun_reload_speed_+%_final"]=806, - ["support_bane_curse_effect_+%_final"]=138, - ["support_barrage_attack_time_+%_per_projectile_fired"]=807, - ["support_barrage_damage_+%_final"]=13, - ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=808, - ["support_base_cruelty_duration_ms"]=160, - ["support_base_lifetap_buff_duration"]=988, - ["support_better_ailments_damaging_ailment_effect_+%_final"]=93, - ["support_better_ailments_hit_damage_+%_final"]=94, - ["support_biting_frost_damage_+%_final_vs_frozen_unique_enemies"]=809, - ["support_blasphemy_curse_effect_+%_final"]=139, - ["support_blazing_crits_base_duration_ms"]=810, - ["support_blazing_crits_gain_%_fire_damage_with_attacks_on_critical_hit"]=810, - ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=811, - ["support_blood_thirst_damage_+%_final"]=812, - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=145, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=813, - ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=814, - ["support_brand_area_of_effect_+%_final"]=815, - ["support_brand_damage_+%_final"]=816, - ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=817, - ["support_brink_hit_damage_stun_multiplier_+%_final"]=818, - ["support_brutality_physical_damage_+%_final"]=95, - ["support_burning_damage_+%_final"]=819, - ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=820, - ["support_bursting_plague_max_value_%_of_max_life"]=821, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=821, - ["support_called_shots_additional_projectiles_when_matching_indicated_direction"]=822, - ["support_called_shots_enable_directional_buff"]=199, - ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=823, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=824, - ["support_cast_on_crit_quality_attack_damage_+%_final"]=825, - ["support_cast_on_crit_spell_damage_+%_final"]=21, - ["support_cast_on_melee_kill_spell_damage_+%_final"]=22, - ["support_cast_while_channelling_triggered_skill_damage_+%_final"]=23, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=826, - ["support_catalysing_elements_triggers_elemental_discharge"]=827, - ["support_chain_hit_damage_+%_final"]=78, - ["support_chance_to_bleed_bleeding_effect_+%_final"]=828, - ["support_chance_to_ignite_fire_damage_+%_final"]=96, - ["support_chanelling_damage_+%_final_per_second_channelling"]=829, - ["support_channelling_damage_cap"]=829, - ["support_chaos_attacks_damage_+%_final"]=830, - ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=831, - ["support_chaos_damage_+%_final_per_corpse_consumed_on_use"]=832, - ["support_chaos_support_non_chaos_damage_+%_final"]=833, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=834, - ["support_chaotic_assassination_skill_effect_duration_+%_final"]=835, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=836, - ["support_charged_shots_%_damage_to_gain_as_lightning"]=838, - ["support_charged_shots_applies_every_X_shots"]=837, - ["support_charged_shots_recover_%_mana_cost_on_use"]=839, - ["support_charm_charges_gained_+%_final_from_killing_blow"]=840, - ["support_chilled_ground_effect_duration_+%_final"]=841, - ["support_clarity_mana_regeneration_rate_+%"]=842, - ["support_close_combat_attack_damage_+%_final_from_distance"]=843, - ["support_clustertrap_damage_+%_final"]=844, - ["support_cold_and_fire_damage_+%_final"]=845, - ["support_cold_and_lightning_damage_+%_final"]=846, - ["support_cold_exposure_damage_+%_final"]=847, - ["support_combo_finisher_damage_+%_final"]=848, - ["support_combo_finisher_damage_+%_final_per_combo"]=849, - ["support_combo_finisher_max_combo_required"]=851, - ["support_combo_finisher_next_use_requires_x_additional_combo"]=850, - ["support_combo_finisher_required_number_of_combo_stacks"]=851, - ["support_command_skill_damage_+%_final"]=852, - ["support_concentrated_effect_skill_area_of_effect_+%_final"]=32, - ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=853, - ["support_conduction_chance_to_shock_+%_final"]=854, - ["support_consume_X_endurance_charges_on_use"]=855, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=856, - ["support_controlled_destruction_critical_strike_chance_+%_final"]=66, - ["support_controlled_destruction_spell_damage_+%_final"]=88, - ["support_cooldown_reduction_cooldown_recovery_+%"]=857, - ["support_corrupting_cry_%_life_lost_per_corrupting_blood_applied"]=861, - ["support_corrupting_cry_area_of_effect_+%_final"]=858, - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"]=859, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=860, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"]=862, - ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=863, - ["support_create_jagged_ground_if_consumed_endurance_charge"]=864, - ["support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals"]=865, - ["support_crescendo_non_final_strike_attack_speed_+%_final"]=866, - ["support_crit_cooldown_crit_chance_+%_final"]=867, - ["support_critical_damage_critical_strike_chance_+%_final"]=868, - ["support_critical_damage_hit_damage_+%_final"]=869, - ["support_cruelty_hit_damage_+%_final"]=97, - ["support_crushing_stuns_crush_on_stun_ms"]=870, - ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=871, - ["support_crystalshatter_buff_duration"]=871, - ["support_culling_strike_threshold_+%_on_cull_for_seconds_from_code"]=1277, - ["support_culling_strike_vs_rare_or_unique_enemy"]=872, - ["support_curse_effect_+%_final"]=874, - ["support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%"]=875, - ["support_damage_+%_final_per_combo_stack"]=876, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=877, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=878, - ["support_damage_while_on_full_life_+%_final"]=9, - ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=879, - ["support_daze_break_duration_ms"]=880, - ["support_dazed_cry_duration_ms"]=881, - ["support_deadly_poison_hit_damage_+%_final"]=882, - ["support_deadly_poison_poison_effect_+%_final"]=883, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=82, - ["support_debilitate_hit_damage_max_poison_stacks"]=82, - ["support_debilitate_poison_effect_+%_final"]=83, - ["support_decaying_hex_base_chaos_damage_per_minute_as_%_of_intelligence_for_8_seconds"]=884, - ["support_deep_cuts_bleeding_effect_+%_final"]=885, - ["support_deep_cuts_hit_damage_+%_final"]=886, - ["support_deliberation_damage_+%_final"]=887, - ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=888, - ["support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%"]=889, - ["support_discount_accuracy_rating_+%_final_if_empowered"]=890, - ["support_discount_skill_cost_+%_final_if_empowered"]=891, - ["support_divine_cry_damage_+%_final"]=892, - ["support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds"]=893, - ["support_double_barrel_crossbow_reload_speed_-%_final"]=894, - ["support_double_barrel_number_of_crossbow_bolts_+"]=895, - ["support_double_number_of_cooldown_uses"]=896, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=897, - ["support_dual_cascade_aftershocks_attack_speed_+%_final"]=898, - ["support_echo_damage_+%_final"]=7, - ["support_echoing_cry_area_of_effect_+%_final"]=899, - ["support_echoing_cry_damage_+%_final"]=900, - ["support_echoing_cry_warcry_monster_power_+%_final"]=901, - ["support_efficacy_damage_over_time_+%_final"]=91, - ["support_efficacy_spell_damage_+%_final"]=89, - ["support_electrocute_damage_+%_final"]=902, - ["support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target"]=903, - ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=904, - ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=905, - ["support_elemental_proliferation_damage_+%_final"]=8, - ["support_empower_X_attacks_with_spark_on_power_charge_gain"]=906, - ["support_empowered_culling_strike"]=907, - ["support_empowered_damage_+%_final"]=908, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1198, - ["support_eternal_flame_chance_to_ignite_+%_final"]=909, - ["support_executioner_damage_+%_final_while_on_low_life"]=910, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=911, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=912, - ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=913, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=914, - ["support_expand_charge_gain_interval_ms"]=472, - ["support_expand_max_seals"]=472, - ["support_explosive_growth_trigger_explosion_on_plant_growth"]=915, - ["support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies"]=916, - ["support_far_combat_attack_damage_+%_final_from_distance"]=917, - ["support_faster_attacks_attack_speed_+%_final"]=918, - ["support_faster_attacks_damage_+%_final"]=919, - ["support_faster_casting_cast_speed_+%_final"]=920, - ["support_faster_casting_damage_+%_final"]=921, - ["support_faster_projectiles_projectile_speed_+%_final"]=922, - ["support_fire_and_lightning_damage_+%_final"]=923, - ["support_fire_exposure_damage_+%_final"]=924, - ["support_fissure_on_landing_create_X_fissures_on_impact"]=925, - ["support_focus_curse_curse_delay_+%_final"]=926, - ["support_focused_ballista_totem_attack_speed_+%_final"]=927, - ["support_focused_ballista_totem_damage_+%_final"]=928, - ["support_fork_forked_projectile_damage_+%_final"]=84, - ["support_fork_projectile_damage_+%_final"]=81, - ["support_fortify_melee_damage_+%_final"]=929, - ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=930, - ["support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage"]=931, - ["support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies"]=932, - ["support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage"]=933, - ["support_fusillade_skill_speed_+%_final"]=934, - ["support_gambleshot_projectile_damage_+%_final"]=935, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=936, - ["support_gem_elemental_damage_+%_final"]=98, - ["support_gem_mine_damage_+%_final"]=17, - ["support_ghost_base_duration"]=937, - ["support_glacier_ice_crystal_maximum_life_+%_final"]=938, - ["support_glory_required_+%_final"]=939, - ["support_grants_X_life_flask_charges_on_using_corpse"]=940, - ["support_grants_X_mana_flask_charges_on_using_corpse"]=941, - ["support_greater_projectile_intensity_projectile_damage_+%_final"]=942, - ["support_greater_volley_projectile_damage_+%_final"]=1066, - ["support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius"]=943, - ["support_greatwood_maximum_life_+%_final"]=944, - ["support_greatwood_maximum_number_of_active_totems_in_radius_for_effects"]=945, - ["support_greatwood_number_of_active_totems_in_base_radius_to_track"]=946, - ["support_grenade_ballista_attack_speed_+%_final"]=947, - ["support_grenade_ballista_damage_+%_final"]=948, - ["support_grenade_damage_+%_final"]=949, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=950, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=950, - ["support_haemocrystals_maximum_allowed_crystals"]=951, - ["support_hardy_totems_trigger_splinter_explosion_on_death_chance_%"]=952, - ["support_hatching_elementals_base_radius"]=953, - ["support_hatching_elementals_hatch_after_X_deaths_in_radius"]=953, - ["support_heft_maximum_physical_damage_+%_final"]=954, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=955, - ["support_hextouch_curse_effect_+%_final"]=140, - ["support_hinder_dots_also_apply_hinder"]=956, - ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=957, - ["support_holy_descent_consecrated_ground_base_duration_ms"]=958, - ["support_holy_descent_consecrated_ground_on_landing_radius"]=959, - ["support_hourglass_display_cooldown_time_ms"]=960, - ["support_hypothermia_cold_damage_over_time_+%_final"]=961, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=962, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=963, - ["support_ice_bite_base_buff_duration"]=964, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=964, - ["support_icicle_ice_crystal_maximum_life_+%_final"]=965, - ["support_ignite_duration_ignite_effect_+%_final"]=966, - ["support_ignite_prolif_ignite_effect_+%_final"]=99, - ["support_ignite_proliferation_radius"]=41, - ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=967, - ["support_ignited_ground_effect_duration_+%_final"]=968, - ["support_ignition_chance_to_ignite_+%_final"]=969, - ["support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius"]=970, - ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=971, - ["support_increased_area_damage_+%_final"]=972, - ["support_increased_armour_break_armour_break_amount_+%_final"]=973, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=974, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=974, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=975, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=975, - ["support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type"]=976, - ["support_innervate_buff_base_duration_ms"]=977, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=977, - ["support_inspiration_cost_+%_final"]=978, - ["support_jagged_ground_area_of_effect_+%_final"]=979, - ["support_jagged_ground_base_duration_ms"]=980, - ["support_knockback_wave_on_stunned"]=981, - ["support_last_gasp_attack_and_cast_speed_+%_while_undying"]=1278, - ["support_last_gasp_duration_ms"]=982, - ["support_last_gasp_minion_soul_eater_while_undying"]=983, - ["support_lasting_shock_chance_to_shock_+%_final"]=984, - ["support_lesser_multiple_projectile_damage_+%_final"]=16, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=985, - ["support_lifetap_damage_+%_final_while_buffed"]=987, - ["support_lifetap_spent_life_threshold"]=986, - ["support_lightning_exposure_damage_+%_final"]=989, - ["support_limit_skill_effect_duration_+%_final"]=990, - ["support_lineage_remnants_grant_cdr_buff_on_collection"]=991, - ["support_lingering_mirage_damage_+%_final"]=992, - ["support_lockdown_distance_based_pin_damage_+%_final"]=993, - ["support_long_fuse_detonation_damage_+%_final"]=994, - ["support_maim_chance_physical_damage_+%_final"]=100, - ["support_maimed_enemies_physical_damage_taken_+%"]=995, - ["support_mana_flare_%_of_current_mana_consumed"]=996, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=997, - ["support_mana_fountain_mana_regeneration_rate_+%"]=998, - ["support_manaforged_arrows_damage_+%_final"]=999, - ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=1000, - ["support_manaforged_arrows_mana_cost_%_threshold"]=1246, - ["support_max_attack_damage_+%_final_from_current_poise"]=1001, - ["support_measured_speed_attack_speed_+%_final_per_stack"]=1002, - ["support_measured_speed_disabled_ms"]=1003, - ["support_measured_speed_maximum_stacks"]=1003, - ["support_meat_shield_minion_damage_+%_final"]=1004, - ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=1005, - ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=1005, - ["support_melee_physical_damage_+%_final"]=582, - ["support_melee_physical_damage_attack_speed_+%_final"]=1006, - ["support_melee_splash_damage_+%_final"]=105, - ["support_melee_splash_damage_+%_final_for_splash"]=107, - ["support_minefield_mine_damage_+%_final"]=1007, - ["support_minefield_mine_throwing_speed_+%_final"]=1008, - ["support_minion_damage_+%_final"]=1010, - ["support_minion_damage_minion_life_+%_final"]=1011, - ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=1012, - ["support_minion_damage_with_non_command_skills_+%_final"]=1013, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1014, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1015, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=1016, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=1017, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=1018, - ["support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute"]=181, - ["support_minion_maximum_life_+%_final"]=1019, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1020, - ["support_minion_pact_damage_+%_final"]=1021, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1021, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1022, - ["support_minion_use_focussed_target"]=1023, - ["support_minions_ignite_for_%_max_life"]=1024, - ["support_mirage_archer_attack_speed_+%_final"]=1025, - ["support_mirage_archer_base_duration"]=1026, - ["support_mirage_archer_damage_+%_final"]=1027, - ["support_mobile_assault_skill_speed_+%_final"]=1028, - ["support_mobility_damage_+%_final"]=1029, - ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=1030, - ["support_momentum_distance_travelled_to_gain_momentum"]=1031, - ["support_momnetum_damage_+%_final_with_momentum"]=1031, - ["support_more_duration_skill_effect_duration_+%_final"]=1032, - ["support_multi_poison_poison_duration_+%_final"]=1033, - ["support_multicast_cast_speed_+%_final"]=111, - ["support_multiple_attack_and_cast_speed_+%_final"]=1034, - ["support_multiple_attack_damage_+%_final"]=113, - ["support_multiple_attacks_melee_attack_speed_+%_final"]=112, - ["support_multiple_damage_+%_final"]=14, - ["support_multiple_orbs_area_of_effect_+%_final"]=1035, - ["support_multiple_projectiles_critical_strike_chance_+%_final"]=36, - ["support_multithrow_damage_+%_final"]=115, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1036, - ["support_no_fear_damage_+%_final_per_second_up_to_30%"]=1037, - ["support_nova_projectiles_damage_+%_final"]=1038, - ["support_number_of_additional_uses_before_expiry"]=1039, - ["support_overextend_critical_strike_multiplier_+%_final"]=1040, - ["support_overpower_damage_+%_final"]=1041, - ["support_overpower_hit_damage_stun_multiplier_+%_final"]=1042, - ["support_parallel_projectile_number_of_points_per_side"]=1043, - ["support_parallel_projectiles_damage_+%_final"]=1044, - ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=1045, - ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=1046, - ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=1047, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=1048, - ["support_pierce_damage_+%_final_per_pierced_target"]=1049, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1050, - ["support_pin_buildup_pin_instead_of_stun"]=1051, - ["support_pin_hit_damage_stun_multiplier_+%_final"]=1052, - ["support_pin_physical_damage_can_pin"]=1053, - ["support_pin_pin_buildup_+%_final"]=1054, - ["support_pin_pin_duration_+%_final"]=1055, - ["support_pinpoint_critical_strike_chance_+%_final"]=1056, - ["support_pinpoint_critical_strike_multiplier_+%_final"]=1057, - ["support_poison_poison_effect_+%_final"]=85, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1058, - ["support_precision_accuracy_rating_+%"]=1059, - ["support_projectile_attack_physical_damage_+%_final"]=1060, - ["support_projectile_attack_speed_+%_final"]=1061, - ["support_pulverise_area_of_effect_+%_final"]=1062, - ["support_pulverise_attack_speed_+%_final"]=1063, - ["support_pulverise_melee_area_damage_+%_final"]=1064, - ["support_pure_shock_shock_duration_+%_final"]=1065, - ["support_rage_attack_damage_+%_final"]=1067, - ["support_rage_attack_speed_+%_while_not_at_maximum_rage"]=1068, - ["support_rage_fountain_rage_regeneration_per_minute"]=1069, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1070, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1071, - ["support_rageforged_enraged_damage_+%_final"]=1071, - ["support_rain_projectile_damage_+%_final"]=15, - ["support_randomise_higher_aoe_+%_final"]=1072, - ["support_randomise_higher_damage_+%_final"]=1074, - ["support_randomise_higher_projectile_speed_+%_final"]=1073, - ["support_randomise_higher_recover_%_cost_on_use"]=1075, - ["support_randomise_lower_aoe_+%_final"]=1072, - ["support_randomise_lower_damage_+%_final"]=1074, - ["support_randomise_lower_projectile_speed_+%_final"]=1073, - ["support_randomise_lower_recover_%_cost_on_use"]=1075, - ["support_rapid_activation_brand_activation_rate_+%_final"]=1076, - ["support_rapid_activation_brand_skill_only_primary_duration_+%_final"]=149, - ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"]=150, - ["support_rapid_decay_damage_over_time_+%_final"]=90, - ["support_reach_accuracy_within_2m_+%_final"]=1077, - ["support_reach_area_of_effect_+%_final"]=1078, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1079, - ["support_reduced_duration_damage_+%_final"]=147, - ["support_reduced_duration_skill_effect_duration_+%_final"]=148, - ["support_regenerate_mana_per_minute_on_shock"]=1083, - ["support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent"]=1084, - ["support_relentless_rage_spending_X_rage_grants_rage_on_next_skill_use"]=1084, - ["support_remote_mine_2_base_mine_detonation_time_ms"]=1085, - ["support_remote_mine_2_base_mine_duration"]=55, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1272, - ["support_remote_mine_2_damage_+%_final"]=1086, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1087, - ["support_remote_mine_hit_damage_+%_final"]=1088, - ["support_retreating_assault_melee_damage_+%_final"]=1089, - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"]=1090, - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=1091, - ["support_return_projectile_damage_+%_final"]=86, - ["support_rigwald_attack_speed_+%_in_weapon_set_one"]=175, - ["support_rigwald_attack_speed_+%_in_weapon_set_two"]=177, - ["support_rigwald_damage_+%_final_in_weapon_set_one"]=176, - ["support_rigwald_damage_+%_final_in_weapon_set_two"]=178, - ["support_ritual_curse_curse_delay_+%_final"]=1092, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1093, - ["support_ruthless_big_hit_max_count"]=163, - ["support_ruthless_big_hit_stun_damage_+%_final"]=163, - ["support_sacrificial_lamb_base_radius"]=1094, - ["support_salvo_additional_projectiles_fired_per_seal"]=1095, - ["support_salvo_maximum_seals"]=1096, - ["support_salvo_seals_gain_base_interval_ms"]=1097, - ["support_scattershot_skill_speed_+%_final"]=1098, - ["support_scion_onslaught_duration_+%"]=1099, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1100, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1101, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1101, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1100, - ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=1102, - ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=1103, - ["support_shocked_ground_effect_duration_+%_final"]=1104, - ["support_shocking_leap_shocked_ground_duration_ms"]=1105, - ["support_shocking_leap_shocked_ground_radius"]=1105, - ["support_short_fuse_damage_+%_final"]=1106, - ["support_slam_chance_for_one_additional_aftershock_%"]=1275, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1279, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1276, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1108, - ["support_slashing_buff_base_duration_ms"]=1107, - ["support_slashing_damage_+%_final_from_distance"]=101, - ["support_slow_cast_cast_speed_+%_final"]=1109, - ["support_slow_cast_spell_damage_+%_final"]=1110, - ["support_slower_projectiles_damage_+%_final"]=1111, - ["support_slower_projectiles_projectile_speed_+%_final"]=146, - ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=1112, - ["support_spectral_arrows_base_duration_ms"]=1113, - ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=1114, - ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=1115, - ["support_spectral_arrows_maximum_spectral_arrows"]=1116, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1117, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1117, - ["support_spell_cascade_area_delay_+%"]=1118, - ["support_spell_cascade_area_of_effect_+%_final"]=1119, - ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1120, - ["support_spell_cascade_damage_+%_final"]=1121, - ["support_spell_cascade_number_of_cascades_per_side"]=1122, - ["support_spell_cascade_sideways"]=1122, - ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=1123, - ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=1124, - ["support_spell_echo_area_of_effect_+%"]=1125, - ["support_spell_echo_area_of_effect_+%_final"]=1126, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1127, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1128, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1129, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1130, - ["support_spell_echo_damage_+%_final"]=1131, - ["support_spell_echo_final_repeat_damage_+%_final"]=1132, - ["support_spell_echo_number_of_echo_cascades"]=110, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1271, - ["support_spell_totem_cast_speed_+%_final"]=141, - ["support_spellslinger_damage_+%_final"]=1133, - ["support_spiral_projectiles_damage_+%_final"]=1134, - ["support_spirit_strike_damage_+%_final"]=79, - ["support_spiritual_cry_damage_+%_final"]=1135, - ["support_splinter_totem_X_times"]=1136, - ["support_splinter_totem_area_of_effect_+%_final_each_splinter"]=1137, - ["support_splinter_totem_damage_+%_final_each_splinter"]=1138, - ["support_splinter_totem_maximum_life_+%_final_each_splinter"]=1139, - ["support_splinter_totem_skill_speed_+%_final_each_splinter"]=1140, - ["support_splinter_totem_splinter_after_X_actions"]=1141, - ["support_split_projectile_damage_+%_final"]=80, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1142, - ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=1144, - ["support_static_charge_X_chains_per_10_charge"]=1143, - ["support_static_charge_charge_gain_per_metre"]=18, - ["support_static_charge_maximum_charge"]=42, - ["support_steadfast_ailment_threshold_+%_final_while_channelling"]=1145, - ["support_steadfast_stun_threshold_+%_final_while_channelling"]=1146, - ["support_sticky_grenade_damage_+%_final"]=1147, - ["support_stomping_ground"]=1148, - ["support_storm_barrier_damage_+%_final"]=1151, - ["support_storm_barrier_damage_buff_base_duration_ms"]=1149, - ["support_storm_barrier_damage_buff_time_threshold_ms"]=1150, - ["support_storm_barrier_damage_buff_uses_time_threshold"]=1150, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1152, - ["support_storm_barrier_skill_type_damage_+%_final"]=1153, - ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=1154, + ["perfect_timing_window_ms_+%"]=719, + ["physical_damage_+%"]=720, + ["pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite"]=721, + ["pillar_of_flame_consume_ignite_to_create_X_pillars"]=178, + ["pin_almost_pinned_enemies"]=722, + ["placing_traps_cooldown_recovery_+%"]=723, + ["plant_skill_damage_+%_final_when_wet"]=724, + ["poison_effect_+%_vs_non_poisoned_enemies"]=725, + ["projectile_base_number_of_targets_to_pierce"]=66, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=726, + ["projectile_chance_to_not_pierce_%"]=727, + ["projectile_damage_+%"]=728, + ["projectile_damage_+%_if_pierced_enemy"]=729, + ["projectile_damage_+%_vs_nearby_enemies"]=732, + ["projectile_number_to_split"]=88, + ["projectile_randomly_fork_chain_or_pierce"]=730, + ["projectile_return_%_chance"]=91, + ["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"]=731, + ["projectiles_fork"]=89, + ["projectiles_nova"]=733, + ["projectiles_pierce_all_targets_in_x_range"]=734, + ["projectiles_rain"]=54, + ["projectiles_return"]=91, + ["projectiles_spiral"]=735, + ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=736, + ["quality_display_base_totem_duration_is_gem"]=65, + ["quality_display_lifetap_is_gem"]=1044, + ["quality_display_melee_splash_is_gem"]=121, + ["quality_display_swiftbrand_is_gem"]=162, + ["rage_skip_consume_chance_%"]=737, + ["random_projectile_direction"]=738, + ["randomly_curse_self_on_skill_use"]=739, + ["recoup_%_of_spell_cost_as_mana_on_cast"]=741, + ["recoup_mana_%_on_minion_death"]=740, + ["recover_%_life_and_mana_per_minute_for_supported_offering_lifetime"]=742, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=744, + ["recover_%_maximum_life_on_cull"]=745, + ["recover_%_maximum_mana_on_cull"]=746, + ["recover_mana_%_on_minion_death"]=743, + ["recover_permyriad_life_on_skill_use"]=747, + ["reduce_enemy_chaos_resistance_%"]=748, + ["reduce_enemy_elemental_resistance_%"]=84, + ["refresh_bleeding_duration_on_hit_%_chance"]=749, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=750, + ["regenerate_%_life_over_1_second_on_skill_use"]=751, + ["reload_speed_+%"]=752, + ["remnant_delay_X_ms"]=753, + ["remnant_effect_+%"]=754, + ["remnant_pickup_range_+%"]=755, + ["remnants_affect_allies_in_presence_instead"]=756, + ["remnants_vanish_after_X_ms"]=757, + ["remote_mined_by_support"]=758, + ["remove_ailment_when_applying_relevant_ailment"]=759, + ["remove_freeze_on_ignite"]=760, + ["repeat_last_step_of_combo_attack"]=761, + ["restore_%_life_on_skill_use_per_1000_ms_cooldown"]=762, + ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=763, + ["returning_projectiles_always_pierce"]=1330, + ["rip_support_buff_base_duration"]=451, + ["rip_support_life_regeneration_rate_+%"]=451, + ["rip_support_life_remnant_creation_radius"]=764, + ["runic_boosted_attack_damage_%_gained_as_physical"]=765, + ["sacrifice_%_life_on_skill_use"]=766, + ["sacrificial_lamb_minion_always_detonatable"]=767, + ["seal_gain_frequency_+%"]=768, + ["secondary_base_fire_damage_to_deal_per_minute"]=148, + ["shapeshift_slam_skill_aftershock_chance_%"]=769, + ["shock_chance_+%"]=770, + ["shock_duration_+%"]=771, + ["shock_effect_+%"]=772, + ["shock_nearby_enemy_area_of_effect_radius"]=826, + ["shock_nearby_enemy_base_area_of_effect_radius"]=826, + ["shocks_reflected_to_self"]=773, + ["sigil_repeat_frequency_+%"]=774, + ["skill_additional_projectiles_per_seal_broken"]=776, + ["skill_area_of_effect_+%_per_broken_seal"]=777, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=778, + ["skill_buff_effect_+%"]=779, + ["skill_can_only_use_bow"]=1264, + ["skill_can_only_use_non_melee_weapons"]=1267, + ["skill_can_own_mirage_archers"]=780, + ["skill_cannot_be_used_unless_stationary_for_X_ms"]=781, + ["skill_cannot_generate_endurance_charges"]=782, + ["skill_cannot_generate_frenzy_charges"]=783, + ["skill_cannot_generate_power_charges"]=784, + ["skill_conditional_requires_X_volatility"]=785, + ["skill_consume_corpse_within_X_units_on_use"]=786, + ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=787, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=788, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=789, + ["skill_consume_up_to_X_corpses_on_use"]=786, + ["skill_detonate_random_volatility_amount_on_use"]=790, + ["skill_detonation_time_+%"]=791, + ["skill_echoes_per_seal_broken"]=792, + ["skill_effect_and_damaging_ailment_duration_+%"]=793, + ["skill_effect_duration_+%"]=794, + ["skill_effect_duration_+%_while_dead"]=795, + ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=796, + ["skill_gain_seal_every_x_hits_blocked"]=797, + ["skill_grenade_detonate_only_at_end_of_duration"]=798, + ["skill_has_double_limit"]=799, + ["skill_has_spectral_arrows"]=800, + ["skill_hyena_cackle_size"]=801, + ["skill_is_blessing_skill"]=775, + ["skill_maximum_energy_+%"]=802, + ["skill_maximum_number_of_combo_stacks"]=211, + ["skill_offering_targets_an_additional_skeleton"]=803, + ["skill_rapid_fire_repeats_per_broken_seal"]=804, + ["skill_uncapped_combo_counter"]=212, + ["skill_unusable_until_moved_X_distance"]=806, + ["skill_used_by_fractured_mimic_spell_damage_+%_final"]=807, + ["skill_wolf_pack_size"]=808, + ["skills_are_usable_without_mana_cost_while_surrounded"]=809, + ["slam_aftershock_chance_%"]=810, + ["snipe_triggered_skill_damage_+%_final"]=811, + ["solar_orb_base_pulse_frequency_ms"]=812, + ["spell_critical_strike_chance_+%"]=813, + ["spell_damage_+%"]=814, + ["spell_daze_on_critical_hit_dealing_physical_damage"]=815, + ["spell_only_castable_on_death"]=139, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=816, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack"]=817, + ["spell_uncastable_if_triggerable"]=139, + ["spellslinger_trigger_on_wand_attack_%"]=142, + ["static_strike_base_zap_frequency_ms"]=818, + ["static_strike_zap_speed_+%"]=819, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=820, + ["storm_skills_spawn_at_initiator_location"]=821, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=822, + ["strikes_are_ancestrally_boosted"]=823, + ["summon_2_totems"]=72, + ["summon_cold_resistance_+"]=131, + ["summon_fire_resistance_+"]=130, + ["summon_lightning_resistance_+"]=132, + ["summon_mirage_archer_on_hit"]=824, + ["summon_totem_cast_speed_+%"]=825, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=826, + ["support_%_chance_to_trigger_deadly_current_on_shock"]=827, + ["support_%_of_total_cast_time_as_base_skill_seal_gain_interval"]=828, + ["support_ablation_offering_skill_damage_+%_final"]=829, + ["support_active_skill_consume_enemy_freeze_to_apply_chill"]=1318, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1315, + ["support_added_cooldown_count_if_not_instant"]=830, + ["support_additional_accurary_rating_+%_final"]=831, + ["support_additional_fissures_damage_+%_final"]=832, + ["support_additional_fissures_skill_speed_+%_final"]=833, + ["support_additional_totem_damage_+%_final"]=106, + ["support_additional_trap_%_chance_for_1_additional_trap"]=834, + ["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"]=835, + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=836, + ["support_advancing_assault_projectile_damage_+%_final"]=837, + ["support_ailment_cooldown_ailment_chance_+%_final"]=838, + ["support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment"]=839, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=840, + ["support_ammo_conservation_crossbow_reload_speed_+%_final"]=841, + ["support_ancestor_slam_totem_damage_+%_final"]=20, + ["support_ancestral_call_damage_+%_final"]=842, + ["support_ancestral_slam_big_hit_area_+%"]=198, + ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=197, + ["support_ancestral_warrior_totem_attack_speed_+%_final"]=843, + ["support_aoe_cooldown_aoe_+%_final"]=844, + ["support_apply_daze_on_armour_break"]=845, + ["support_apply_daze_on_warcry"]=846, + ["support_arcane_archery_damage_+%_final"]=847, + ["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"]=848, + ["support_area_concentrate_area_damage_+%_final"]=26, + ["support_area_of_effect_+%_final"]=849, + ["support_armour_explosion"]=850, + ["support_arms_length_knockback_distance_+%_final"]=851, + ["support_astral_projection_aoe_+%_final"]=852, + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=853, + ["support_attack_skills_elemental_damage_+%_final"]=24, + ["support_attack_totem_attack_speed_+%_final"]=155, + ["support_atziri_curse_effect_+%_final"]=854, + ["support_aura_duration_base_buff_duration"]=855, + ["support_auto_shotgun_attack_speed_+%_final"]=856, + ["support_auto_shotgun_damage_+%_final"]=857, + ["support_auto_shotgun_projectile_count_+%_final"]=858, + ["support_auto_shotgun_reload_speed_+%_final"]=859, + ["support_bane_curse_effect_+%_final"]=151, + ["support_barrage_attack_time_+%_per_projectile_fired"]=860, + ["support_barrage_damage_+%_final"]=27, + ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=861, + ["support_base_cruelty_duration_ms"]=173, + ["support_base_lifetap_buff_duration"]=1044, + ["support_better_ailments_damaging_ailment_effect_+%_final"]=107, + ["support_better_ailments_hit_damage_+%_final"]=108, + ["support_biting_frost_damage_+%_final_vs_frozen_unique_enemies"]=862, + ["support_blasphemy_curse_effect_+%_final"]=152, + ["support_blazing_crits_base_duration_ms"]=863, + ["support_blazing_crits_gain_%_fire_damage_with_attacks_on_critical_hit"]=863, + ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=864, + ["support_blood_thirst_damage_+%_final"]=865, + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=158, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=866, + ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=867, + ["support_brand_area_of_effect_+%_final"]=868, + ["support_brand_damage_+%_final"]=869, + ["support_break_%_armour_on_freeze_or_electrocute"]=870, + ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=871, + ["support_brink_hit_damage_stun_multiplier_+%_final"]=872, + ["support_brutality_physical_damage_+%_final"]=109, + ["support_burning_damage_+%_final"]=873, + ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=874, + ["support_bursting_plague_max_value_%_of_max_life"]=875, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=875, + ["support_called_shots_additional_projectiles_when_matching_indicated_direction"]=876, + ["support_called_shots_enable_directional_buff"]=213, + ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=877, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=878, + ["support_cast_on_crit_quality_attack_damage_+%_final"]=879, + ["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_+%"]=880, + ["support_catalysing_elements_triggers_elemental_discharge"]=881, + ["support_chain_hit_damage_+%_final"]=92, + ["support_chance_to_bleed_bleeding_effect_+%_final"]=882, + ["support_chance_to_ignite_fire_damage_+%_final"]=110, + ["support_chanelling_damage_+%_final_per_second_channelling"]=883, + ["support_channelling_damage_cap"]=883, + ["support_chaos_attacks_damage_+%_final"]=884, + ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=885, + ["support_chaos_damage_+%_final_per_corpse_consumed_on_use"]=886, + ["support_chaos_support_non_chaos_damage_+%_final"]=887, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=888, + ["support_chaotic_assassination_skill_effect_duration_+%_final"]=889, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=890, + ["support_charged_shots_%_damage_to_gain_as_lightning"]=892, + ["support_charged_shots_applies_every_X_shots"]=891, + ["support_charged_shots_recover_%_mana_cost_on_use"]=893, + ["support_charm_charges_gained_+%_final_from_killing_blow"]=894, + ["support_chilled_ground_effect_duration_+%_final"]=895, + ["support_clarity_mana_regeneration_rate_+%"]=896, + ["support_close_combat_attack_damage_+%_final_from_distance"]=897, + ["support_clustertrap_damage_+%_final"]=898, + ["support_cold_and_fire_damage_+%_final"]=899, + ["support_cold_and_lightning_damage_+%_final"]=900, + ["support_cold_exposure_damage_+%_final"]=901, + ["support_combo_finisher_damage_+%_final"]=902, + ["support_combo_finisher_damage_+%_final_per_combo"]=903, + ["support_combo_finisher_max_combo_required"]=905, + ["support_combo_finisher_next_use_requires_x_additional_combo"]=904, + ["support_combo_finisher_required_number_of_combo_stacks"]=905, + ["support_command_skill_damage_+%_final"]=906, + ["support_concentrated_effect_skill_area_of_effect_+%_final"]=46, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=907, + ["support_conduction_chance_to_shock_+%_final"]=908, + ["support_consume_X_endurance_charges_on_use"]=909, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=910, + ["support_controlled_destruction_critical_strike_chance_+%_final"]=80, + ["support_controlled_destruction_spell_damage_+%_final"]=102, + ["support_cooldown_reduction_cooldown_recovery_+%"]=911, + ["support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%"]=912, + ["support_corrupting_cry_%_life_lost_per_corrupting_blood_applied"]=914, + ["support_corrupting_cry_area_of_effect_+%_final"]=913, + ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=915, + ["support_create_jagged_ground_if_consumed_endurance_charge"]=916, + ["support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals"]=917, + ["support_crescendo_non_final_strike_attack_speed_+%_final"]=918, + ["support_crit_cooldown_crit_chance_+%_final"]=919, + ["support_critical_damage_critical_strike_chance_+%_final"]=920, + ["support_critical_damage_hit_damage_+%_final"]=921, + ["support_cruelty_hit_damage_+%_final"]=111, + ["support_crushing_stuns_crush_on_stun_ms"]=922, + ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=923, + ["support_crystalshatter_buff_duration"]=923, + ["support_culling_strike_threshold_+%_on_cull_for_seconds_from_code"]=1328, + ["support_culling_strike_vs_rare_or_unique_enemy"]=924, + ["support_culmination_damage_+%_final_per_combo_stack"]=925, + ["support_curse_effect_+%_final"]=927, + ["support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%"]=928, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=929, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=930, + ["support_damage_while_on_full_life_+%_final"]=23, + ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=931, + ["support_daze_break_duration_ms"]=932, + ["support_dazed_cry_duration_ms"]=933, + ["support_deadly_poison_hit_damage_+%_final"]=934, + ["support_deadly_poison_poison_effect_+%_final"]=935, + ["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"]=936, + ["support_deep_cuts_hit_damage_+%_final"]=937, + ["support_deliberation_damage_+%_final"]=938, + ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=939, + ["support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%"]=940, + ["support_discount_accuracy_rating_+%_final_if_empowered"]=941, + ["support_discount_skill_cost_+%_final_if_empowered"]=942, + ["support_divine_cry_damage_+%_final"]=943, + ["support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds"]=944, + ["support_dominus_grasp_chain_count_+%_final"]=87, + ["support_double_barrel_crossbow_reload_speed_-%_final"]=945, + ["support_double_barrel_number_of_crossbow_bolts_+"]=946, + ["support_double_number_of_cooldown_uses"]=947, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=948, + ["support_dual_cascade_aftershocks_attack_speed_+%_final"]=949, + ["support_echo_damage_+%_final"]=21, + ["support_echoing_cry_area_of_effect_+%_final"]=950, + ["support_echoing_cry_damage_+%_final"]=951, + ["support_echoing_cry_warcry_monster_power_+%_final"]=952, + ["support_efficacy_damage_over_time_+%_final"]=105, + ["support_efficacy_spell_damage_+%_final"]=103, + ["support_electrocute_damage_+%_final"]=953, + ["support_electrocute_lineage_triggers_explosion"]=954, + ["support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target"]=955, + ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=956, + ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=957, + ["support_elemental_proliferation_damage_+%_final"]=22, + ["support_empower_X_attacks_with_spark_on_power_charge_gain"]=958, + ["support_empowered_culling_strike"]=959, + ["support_empowered_damage_+%_final"]=960, + ["support_empowers_x_additional_other_skills"]=961, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1255, + ["support_eternal_flame_chance_to_ignite_+%_final"]=962, + ["support_executioner_damage_+%_final_while_on_low_life"]=963, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=964, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=965, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=966, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=967, + ["support_explosive_growth_trigger_explosion_on_plant_growth"]=968, + ["support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies"]=969, + ["support_far_combat_attack_damage_+%_final_from_distance"]=970, + ["support_faster_attacks_attack_speed_+%_final"]=971, + ["support_faster_attacks_damage_+%_final"]=972, + ["support_faster_casting_cast_speed_+%_final"]=973, + ["support_faster_casting_damage_+%_final"]=974, + ["support_faster_projectiles_projectile_speed_+%_final"]=975, + ["support_fire_and_lightning_damage_+%_final"]=976, + ["support_fire_exposure_damage_+%_final"]=977, + ["support_fissure_on_landing_create_X_fissures_on_impact"]=978, + ["support_focus_curse_curse_delay_+%_final"]=979, + ["support_focused_ballista_totem_attack_speed_+%_final"]=980, + ["support_focused_ballista_totem_damage_+%_final"]=981, + ["support_fork_forked_projectile_damage_+%_final"]=98, + ["support_fork_projectile_damage_+%_final"]=95, + ["support_fortify_melee_damage_+%_final"]=982, + ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=983, + ["support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage"]=984, + ["support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies"]=985, + ["support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage"]=986, + ["support_fusillade_skill_speed_+%_final"]=987, + ["support_gambleshot_projectile_damage_+%_final"]=988, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=989, + ["support_gem_elemental_damage_+%_final"]=112, + ["support_gem_mine_damage_+%_final"]=31, + ["support_ghost_base_duration"]=990, + ["support_glacier_ice_crystal_maximum_life_+%_final"]=991, + ["support_glory_required_+%_final"]=992, + ["support_grants_X_life_flask_charges_on_using_corpse"]=993, + ["support_grants_X_mana_flask_charges_on_using_corpse"]=994, + ["support_greater_projectile_intensity_projectile_damage_+%_final"]=995, + ["support_greater_volley_projectile_damage_+%_final"]=1124, + ["support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius"]=996, + ["support_greatwood_maximum_life_+%_final"]=997, + ["support_greatwood_maximum_number_of_active_totems_in_radius_for_effects"]=998, + ["support_greatwood_number_of_active_totems_in_base_radius_to_track"]=999, + ["support_grenade_ballista_attack_speed_+%_final"]=1000, + ["support_grenade_ballista_damage_+%_final"]=1001, + ["support_grenade_damage_+%_final"]=1002, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=1003, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1003, + ["support_haemocrystals_maximum_allowed_crystals"]=1004, + ["support_hardy_totems_trigger_splinter_explosion_on_death_chance_%"]=1005, + ["support_hatching_elementals_base_radius"]=1006, + ["support_hatching_elementals_hatch_after_X_deaths_in_radius"]=1006, + ["support_healing_runes_healing_per_ward_spent_%"]=1007, + ["support_healing_runes_healing_pulse_interval_ms"]=1007, + ["support_healing_runes_maximum_ward_spent_per_pulse_%"]=1007, + ["support_heft_maximum_physical_damage_+%_final"]=1008, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=1009, + ["support_hextouch_curse_effect_+%_final"]=153, + ["support_hide_of_helbrym_soak_duration_ms"]=1010, + ["support_hinder_dots_also_apply_hinder"]=1011, + ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=1012, + ["support_holy_descent_consecrated_ground_base_duration_ms"]=1013, + ["support_holy_descent_consecrated_ground_on_landing_radius"]=1014, + ["support_hourglass_display_cooldown_time_ms"]=1015, + ["support_hypothermia_cold_damage_over_time_+%_final"]=1016, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=1017, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1018, + ["support_ice_bite_base_buff_duration"]=1019, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1019, + ["support_icicle_ice_crystal_maximum_life_+%_final"]=1020, + ["support_ignite_duration_ignite_effect_+%_final"]=1021, + ["support_ignite_prolif_ignite_effect_+%_final"]=113, + ["support_ignite_proliferation_radius"]=55, + ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=1022, + ["support_ignited_ground_effect_duration_+%_final"]=1023, + ["support_ignition_chance_to_ignite_+%_final"]=1024, + ["support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius"]=1025, + ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=1026, + ["support_increased_area_damage_+%_final"]=1027, + ["support_increased_armour_break_armour_break_amount_+%_final"]=1028, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1029, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1029, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1030, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1030, + ["support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type"]=1031, + ["support_innervate_buff_base_duration_ms"]=1032, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1032, + ["support_inspiration_cost_+%_final"]=1033, + ["support_jagged_ground_area_of_effect_+%_final"]=1034, + ["support_jagged_ground_base_duration_ms"]=1035, + ["support_knights_ferocity_crush_on_hit_ms"]=225, + ["support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action"]=1036, + ["support_knockback_wave_on_stunned"]=1037, + ["support_last_gasp_attack_and_cast_speed_+%_while_undying"]=1329, + ["support_last_gasp_duration_ms"]=1038, + ["support_last_gasp_minion_soul_eater_while_undying"]=1039, + ["support_lasting_shock_chance_to_shock_+%_final"]=1040, + ["support_lesser_multiple_projectile_damage_+%_final"]=30, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1041, + ["support_lifetap_damage_+%_final_while_buffed"]=1043, + ["support_lifetap_spent_life_threshold"]=1042, + ["support_lightning_exposure_damage_+%_final"]=1045, + ["support_limit_skill_effect_duration_+%_final"]=1046, + ["support_lineage_remnants_grant_cdr_buff_on_collection"]=1047, + ["support_lingering_mirage_damage_+%_final"]=1048, + ["support_lockdown_distance_based_pin_damage_+%_final"]=1049, + ["support_long_fuse_detonation_damage_+%_final"]=1050, + ["support_maim_chance_physical_damage_+%_final"]=114, + ["support_maimed_enemies_physical_damage_taken_+%"]=1051, + ["support_mana_flare_%_of_current_mana_consumed"]=1052, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1053, + ["support_mana_fountain_mana_regeneration_rate_+%"]=1054, + ["support_manaforged_arrows_damage_+%_final"]=1055, + ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=1056, + ["support_manaforged_arrows_mana_cost_%_threshold"]=1295, + ["support_max_attack_damage_+%_final_from_current_poise"]=1057, + ["support_measured_speed_attack_speed_+%_final_per_stack"]=1058, + ["support_measured_speed_disabled_ms"]=1059, + ["support_measured_speed_maximum_stacks"]=1059, + ["support_meat_shield_minion_damage_+%_final"]=1060, + ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=1061, + ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=1061, + ["support_melee_physical_damage_+%_final"]=633, + ["support_melee_physical_damage_attack_speed_+%_final"]=1062, + ["support_melee_splash_damage_+%_final"]=119, + ["support_melee_splash_damage_+%_final_for_splash"]=121, + ["support_minefield_mine_damage_+%_final"]=1063, + ["support_minefield_mine_throwing_speed_+%_final"]=1064, + ["support_minion_damage_+%_final"]=1066, + ["support_minion_damage_minion_life_+%_final"]=1067, + ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=1068, + ["support_minion_damage_with_non_command_skills_+%_final"]=1069, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1070, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1071, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=1073, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=1074, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=1075, + ["support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute"]=194, + ["support_minion_maximum_life_+%_final"]=1076, + ["support_minion_pact_damage_+%_final"]=1077, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1077, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1078, + ["support_minion_use_focussed_target"]=1079, + ["support_minions_ignite_for_%_max_life"]=1080, + ["support_mirage_archer_attack_speed_+%_final"]=1081, + ["support_mirage_archer_base_duration"]=1082, + ["support_mirage_archer_damage_+%_final"]=1083, + ["support_mobile_assault_skill_speed_+%_final"]=1084, + ["support_mobility_damage_+%_final"]=1085, + ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=1086, + ["support_momentum_distance_travelled_to_gain_momentum"]=1087, + ["support_momnetum_damage_+%_final_with_momentum"]=1087, + ["support_more_duration_skill_effect_duration_+%_final"]=1088, + ["support_morrigans_refuge_damage_+%_final_vs_frozen_enemies"]=1316, + ["support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms"]=1089, + ["support_mothers_ward_base_duration_ms"]=1090, + ["support_multi_poison_poison_duration_+%_final"]=1091, + ["support_multicast_cast_speed_+%_final"]=123, + ["support_multiple_attack_and_cast_speed_+%_final"]=1092, + ["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"]=1093, + ["support_multiple_projectiles_critical_strike_chance_+%_final"]=50, + ["support_multithrow_damage_+%_final"]=127, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1094, + ["support_no_fear_damage_+%_final_per_second_up_to_30%"]=1095, + ["support_nova_projectiles_damage_+%_final"]=1096, + ["support_number_of_additional_uses_before_expiry"]=1097, + ["support_overextend_critical_strike_multiplier_+%_final"]=1098, + ["support_overpower_damage_+%_final"]=1099, + ["support_overpower_hit_damage_stun_multiplier_+%_final"]=1100, + ["support_parallel_projectile_number_of_points_per_side"]=1101, + ["support_parallel_projectiles_damage_+%_final"]=1102, + ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=1103, + ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=1104, + ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=1105, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1106, + ["support_pierce_damage_+%_final_per_pierced_target"]=1107, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1108, + ["support_pin_buildup_pin_instead_of_stun"]=1109, + ["support_pin_hit_damage_stun_multiplier_+%_final"]=1110, + ["support_pin_physical_damage_can_pin"]=1111, + ["support_pin_pin_buildup_+%_final"]=1112, + ["support_pin_pin_duration_+%_final"]=1113, + ["support_pinpoint_critical_strike_chance_+%_final"]=1114, + ["support_pinpoint_critical_strike_multiplier_+%_final"]=1115, + ["support_poison_poison_effect_+%_final"]=99, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1116, + ["support_precision_accuracy_rating_+%"]=1117, + ["support_projectile_attack_physical_damage_+%_final"]=1118, + ["support_projectile_attack_speed_+%_final"]=1119, + ["support_pulverise_area_of_effect_+%_final"]=1120, + ["support_pulverise_attack_speed_+%_final"]=1121, + ["support_pulverise_melee_area_damage_+%_final"]=1122, + ["support_pure_shock_shock_duration_+%_final"]=1123, + ["support_rage_attack_damage_+%_final"]=1125, + ["support_rage_attack_speed_+%_while_not_at_maximum_rage"]=1126, + ["support_rage_fountain_rage_regeneration_per_minute"]=1127, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1128, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1129, + ["support_rageforged_enraged_damage_+%_final"]=1129, + ["support_rain_projectile_damage_+%_final"]=29, + ["support_randomise_higher_aoe_+%_final"]=1130, + ["support_randomise_higher_damage_+%_final"]=1132, + ["support_randomise_higher_projectile_speed_+%_final"]=1131, + ["support_randomise_higher_recover_%_cost_on_use"]=1133, + ["support_randomise_lower_aoe_+%_final"]=1130, + ["support_randomise_lower_damage_+%_final"]=1132, + ["support_randomise_lower_projectile_speed_+%_final"]=1131, + ["support_randomise_lower_recover_%_cost_on_use"]=1133, + ["support_rapid_activation_brand_activation_rate_+%_final"]=1134, + ["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"]=1135, + ["support_reach_area_of_effect_+%_final"]=1136, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1137, + ["support_reduced_duration_damage_+%_final"]=160, + ["support_reduced_duration_skill_effect_duration_+%_final"]=161, + ["support_regenerate_mana_per_minute_on_shock"]=1141, + ["support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent"]=1142, + ["support_relentless_rage_spending_X_rage_grants_rage_on_next_skill_use"]=1142, + ["support_remote_mine_2_base_mine_detonation_time_ms"]=1143, + ["support_remote_mine_2_base_mine_duration"]=69, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1320, + ["support_remote_mine_2_damage_+%_final"]=1144, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1145, + ["support_remote_mine_hit_damage_+%_final"]=1146, + ["support_retreating_assault_melee_damage_+%_final"]=1147, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"]=1148, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=1149, + ["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"]=1150, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1151, + ["support_ruthless_big_hit_max_count"]=176, + ["support_ruthless_big_hit_stun_damage_+%_final"]=176, + ["support_sacrificial_lamb_base_radius"]=1152, + ["support_scattershot_skill_speed_+%_final"]=1153, + ["support_scion_onslaught_duration_+%"]=1154, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1155, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1156, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1156, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1155, + ["support_scouring_flame_ignite_effect_+%_final"]=1157, + ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=516, + ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=1158, + ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=1159, + ["support_shocked_ground_effect_duration_+%_final"]=1160, + ["support_shocking_leap_shocked_ground_duration_ms"]=1161, + ["support_shocking_leap_shocked_ground_radius"]=1161, + ["support_short_fuse_damage_+%_final"]=1162, + ["support_slam_chance_for_one_additional_aftershock_%"]=1323, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1331, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1325, + ["support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost"]=1163, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1165, + ["support_slashing_buff_base_duration_ms"]=1164, + ["support_slashing_damage_+%_final_from_distance"]=115, + ["support_slow_cast_cast_speed_+%_final"]=1166, + ["support_slow_cast_spell_damage_+%_final"]=1167, + ["support_slower_projectiles_damage_+%_final"]=1168, + ["support_slower_projectiles_projectile_speed_+%_final"]=159, + ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=1169, + ["support_spectral_arrows_base_duration_ms"]=1170, + ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=1171, + ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=1172, + ["support_spectral_arrows_maximum_spectral_arrows"]=1173, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1174, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1174, + ["support_spell_cascade_area_delay_+%"]=1175, + ["support_spell_cascade_area_of_effect_+%_final"]=1176, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1177, + ["support_spell_cascade_damage_+%_final"]=1178, + ["support_spell_cascade_number_of_cascades_per_side"]=1179, + ["support_spell_cascade_sideways"]=1179, + ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=1180, + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=1181, + ["support_spell_echo_area_of_effect_+%_final"]=1182, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1183, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1184, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1185, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1186, + ["support_spell_echo_damage_+%_final"]=1187, + ["support_spell_echo_number_of_echo_cascades"]=122, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1319, + ["support_spell_totem_cast_speed_+%_final"]=154, + ["support_spellslinger_damage_+%_final"]=1188, + ["support_spiral_projectiles_damage_+%_final"]=1189, + ["support_spirit_strike_damage_+%_final"]=93, + ["support_spiritual_cry_damage_+%_final"]=1190, + ["support_splinter_totem_X_times"]=1191, + ["support_splinter_totem_area_of_effect_+%_final_each_splinter"]=1192, + ["support_splinter_totem_damage_+%_final_each_splinter"]=1193, + ["support_splinter_totem_maximum_life_+%_final_each_splinter"]=1194, + ["support_splinter_totem_skill_speed_+%_final_each_splinter"]=1195, + ["support_splinter_totem_splinter_after_X_actions"]=1196, + ["support_split_projectile_damage_+%_final"]=94, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1197, + ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=1199, + ["support_static_charge_X_chains_per_10_charge"]=1198, + ["support_static_charge_charge_gain_per_metre"]=32, + ["support_static_charge_maximum_charge"]=56, + ["support_steadfast_ailment_threshold_+%_final_while_channelling"]=1200, + ["support_steadfast_stun_threshold_+%_final_while_channelling"]=1201, + ["support_sticky_grenade_damage_+%_final"]=1202, + ["support_stomping_ground"]=1203, + ["support_storm_barrier_damage_+%_final"]=1206, + ["support_storm_barrier_damage_buff_base_duration_ms"]=1204, + ["support_storm_barrier_damage_buff_time_threshold_ms"]=1205, + ["support_storm_barrier_damage_buff_uses_time_threshold"]=1205, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1207, + ["support_storm_barrier_skill_type_damage_+%_final"]=1208, + ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=1209, ["support_storm_skill_limit_+"]=3, - ["support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage"]=1155, - ["support_stronger_ignites_hit_damage_+%_final"]=1156, - ["support_stronger_ignites_ignite_effect_+%_final"]=1157, - ["support_stunning_magic_buff_duration_ms"]=1158, - ["support_stunning_magic_grant_spell_damage_+%_buff_on_heavy_stunning"]=1158, - ["support_sunblast_hazard_hazard_damage_+%_final"]=1159, - ["support_sunblast_hazard_hazard_duration_+%_final"]=1160, - ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"]=1161, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1162, - ["support_tangmazu_light_radius_+%"]=1163, - ["support_tangmazu_slow_potency_+%"]=1164, - ["support_tangmazu_sprint_speed_+%"]=1165, - ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=1167, - ["support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour"]=1166, - ["support_thorns_spirit_cost_thorns_damage_+%"]=1168, - ["support_thrill_of_the_kill_buff_base_duration_ms"]=1169, - ["support_thrill_of_the_kill_buff_grant_%_added_lightning_attack_damage"]=1169, - ["support_thrill_of_the_kill_buff_shock_chance_+%"]=1170, - ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1280, - ["support_timerot_stacks_gained_per_500_ms"]=1171, - ["support_titanblood_minion_damage_+%_final"]=1172, - ["support_titanblood_minion_life_+%_final"]=1173, - ["support_titanic_arrows_attack_speed_+%_final"]=1174, - ["support_titanic_arrows_projectile_speed_+%_final"]=1175, - ["support_totem_damage_+%_final"]=19, - ["support_totem_life_+%_final"]=166, - ["support_trap_and_mine_damage_+%_final"]=102, - ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=1176, - ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=1177, - ["support_trap_damage_+%_final"]=114, - ["support_trap_hit_damage_+%_final"]=1178, - ["support_trigger_link_damage_+%_final"]=24, - ["support_trigger_mana_flare_on_crit"]=1179, - ["support_trigger_shocked_ground_on_mark_activate"]=1180, - ["support_triple_number_of_cooldown_uses"]=1181, - ["support_trusty_companion_minion_life_+%_final"]=1182, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1183, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1184, - ["support_unending_ailments_all_ailment_duration_+%_final"]=1185, - ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=1186, - ["support_unmoving_damage_multiplier_cap"]=1186, - ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=1187, - ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=1188, - ["support_unstable_earth_damage_+%_final"]=1281, - ["support_upheaval_area_of_effect_+%_final"]=1189, - ["support_vaal_lineage_trigger_detonate_on_landing"]=1190, - ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=1191, - ["support_vicious_projectiles_chaos_damage_+%_final"]=1193, - ["support_vicious_projectiles_physical_damage_+%_final"]=1192, - ["support_vitality_life_regeneration_rate_per_minute_%"]=1194, - ["support_void_manipulation_chaos_damage_+%_final"]=87, - ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=1195, - ["support_wall_fortress_area_of_effect_+%_final"]=1196, - ["support_wall_fortress_hit_damage_+%_final"]=1197, - ["support_warcry_consumes_up_to_X_rage"]=1198, - ["support_weapon_elemental_damage_+%_final"]=11, - ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=1199, - ["support_winterblast_chill_effect_+%_final"]=1200, - ["support_withered_base_duration_ms"]=162, - ["support_withering_touch_damage_+%_final"]=1201, - ["support_zerphis_legacy_area_of_effect_+%"]=1202, - ["support_zerphis_legacy_damage_+%_final"]=1203, - ["supported_active_skill_gem_level_+_if_no_other_supports"]=1206, - ["supported_active_skill_gem_level_+_if_one_other_support"]=1204, - ["supported_active_skill_gem_level_+_if_two_other_supports"]=1205, - ["supported_chaos_skill_gem_level_+"]=1207, - ["supported_curse_skill_gem_level_+"]=1208, - ["supported_elemental_skill_gem_level_+"]=1209, - ["supported_minion_skill_gem_level_+"]=1210, - ["supported_offerings_grant_you_a_powercharge_every_x_ms"]=1211, - ["supported_physical_skill_gem_level_+"]=1212, - ["supported_skill_can_only_use_axe_and_sword"]=1213, - ["supported_skill_can_only_use_dagger_and_claw"]=1215, - ["supported_skill_can_only_use_mace_and_staff"]=1216, - ["supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze"]=1218, - ["supported_skill_triggers_living_lightning_on_dealing_lightning_damage"]=382, - ["supported_strike_skill_gem_level_+"]=1219, - ["throw_traps_in_circle_radius"]=50, - ["totem_elemental_resistance_%"]=1220, - ["totem_gain_onslaught_for_x_ms_after_summon"]=1221, - ["totem_maximum_all_elemental_resistances_%"]=174, - ["totem_skill_attack_speed_+%"]=203, - ["totem_skill_cast_speed_+%"]=202, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1222, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1223, - ["trap_damage_+%"]=1224, - ["trap_duration_+%"]=61, - ["trap_spread_+%"]=1225, - ["trap_throwing_speed_+%"]=1226, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1227, - ["trap_trigger_radius_+%"]=1228, - ["trap_trigger_radius_+%_per_power_charge"]=1229, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1230, - ["trigger_ballistic_ice_chunks_on_killing_frozen_enemy"]=1231, - ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1232, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1233, - ["trigger_caltrops_at_end_of_projectile_flight"]=1234, - ["trigger_from_hayhoxis_binding_after_x_ms"]=1235, - ["trigger_frozen_vortex_on_shattering_enemy"]=1236, - ["trigger_on_attack_hit_against_rare_or_unique"]=1237, - ["trigger_on_trigger_link_target_hit"]=1238, - ["trigger_poison_spore_pustule"]=1239, - ["trigger_prismatic_burst_on_hit_%_chance"]=1240, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1241, - ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1242, - ["trigger_titanic_arrows_on_impact"]=1243, - ["trigger_vicious_hex_explosion_when_curse_ends"]=125, - ["triggered_by_brand_support"]=1244, - ["triggered_by_divine_cry"]=1245, - ["triggered_by_manaforged_arrows_support_%_chance"]=1246, - ["triggered_by_spiritual_cry"]=1247, - ["triggered_fan_the_flames_spread_ignite_to_hit_enemies"]=1248, - ["triggered_skill_damage_+%"]=1249, - ["triggered_spell_spell_damage_+%"]=20, - ["triggers_burning_runes_on_placing_ground_rune"]=1250, - ["trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=752, - ["try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy"]=1251, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1253, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1254, - ["unleash_support_seal_gain_frequency_as_%_of_total_cast_time"]=1252, - ["virtual_cast_when_damage_taken_threshold"]=130, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1252, - ["virtual_support_expand_charge_gain_interval_ms"]=472, - ["virtual_support_salvo_maximum_seals"]=1255, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1101, - ["wall_is_created_along_a_fissure_instead"]=1256, - ["wall_is_created_in_a_circle_instead"]=1257, - ["warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge"]=1258, - ["warcry_echo_area_of_effect_+%_final_per_repeat"]=1260, - ["warcry_echo_delay_ms_from_support"]=1259, - ["warcry_grant_X_rage_per_5_power"]=1261, - ["warcry_speed_+%"]=1262, - ["weapon_elemental_damage_+%"]=1263, - ["wither_applies_additional_wither_%"]=1264, - ["wither_on_hit_chance_rollovercapped"]=1265, - ["withered_on_chaos_damage_hit_chance_%"]=1266, - ["withered_on_hit_chance_%"]=154, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1267, - ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=1269 + ["support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage"]=1210, + ["support_stronger_ignites_hit_damage_+%_final"]=1211, + ["support_stronger_ignites_ignite_effect_+%_final"]=1212, + ["support_stunning_magic_buff_duration_ms"]=1213, + ["support_stunning_magic_grant_spell_damage_+%_buff_on_heavy_stunning"]=1213, + ["support_sunblast_hazard_hazard_damage_+%_final"]=1214, + ["support_sunblast_hazard_hazard_duration_+%_final"]=1215, + ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"]=1216, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1217, + ["support_tangmazu_light_radius_+%"]=1218, + ["support_tangmazu_slow_potency_+%"]=1219, + ["support_tangmazu_sprint_speed_+%"]=1220, + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=1223, + ["support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour"]=1221, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"]=1222, + ["support_thorns_spirit_cost_thorns_damage_+%"]=1224, + ["support_thrill_of_the_kill_buff_base_duration_ms"]=1225, + ["support_thrill_of_the_kill_buff_grant_%_added_lightning_attack_damage"]=1225, + ["support_thrill_of_the_kill_buff_shock_chance_+%"]=1226, + ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1332, + ["support_timerot_stacks_gained_per_500_ms"]=1227, + ["support_titanic_arrows_attack_speed_+%_final"]=1228, + ["support_titanic_arrows_projectile_speed_+%_final"]=1229, + ["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"]=1230, + ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=1231, + ["support_trap_damage_+%_final"]=126, + ["support_trap_hit_damage_+%_final"]=1232, + ["support_tricksters_shard_trigger_fractured_self_on_cast"]=138, + ["support_trigger_link_damage_+%_final"]=38, + ["support_trigger_mana_flare_on_crit"]=1233, + ["support_trigger_pummel_on_heavy_stun"]=1234, + ["support_trigger_shocked_ground_on_mark_activate"]=1235, + ["support_triple_number_of_cooldown_uses"]=1236, + ["support_trusty_companion_minion_life_+%_final"]=1237, + ["support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds"]=1238, + ["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"]=1239, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1240, + ["support_unending_ailments_all_ailment_duration_+%_final"]=1241, + ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=1242, + ["support_unmoving_damage_multiplier_cap"]=1242, + ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=1243, + ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=1244, + ["support_unstable_earth_damage_+%_final"]=1333, + ["support_upheaval_area_of_effect_+%_final"]=1245, + ["support_vaal_lineage_trigger_detonate_on_landing"]=1246, + ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=1247, + ["support_vicious_projectiles_chaos_damage_+%_final"]=1249, + ["support_vicious_projectiles_physical_damage_+%_final"]=1248, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1250, + ["support_void_manipulation_chaos_damage_+%_final"]=101, + ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=1251, + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1252, + ["support_wall_fortress_area_of_effect_+%_final"]=1253, + ["support_wall_fortress_hit_damage_+%_final"]=1254, + ["support_warcries_detonate_your_ice_fragments"]=1326, + ["support_warcries_empower_x_additional_per_5_total_ice_crystals_or_fragments_destroyed"]=1334, + ["support_warcries_explode_ice_crystals"]=1324, + ["support_warcry_consumes_up_to_X_rage"]=1255, + ["support_weapon_elemental_damage_+%_final"]=25, + ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=1256, + ["support_winterblast_chill_effect_+%_final"]=1257, + ["support_withered_base_duration_ms"]=175, + ["support_withering_touch_damage_+%_final"]=1258, + ["support_zerphis_legacy_area_of_effect_+%"]=1259, + ["support_zerphis_legacy_damage_+%_final"]=1260, + ["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, + ["supported_active_skill_gem_level_+_if_two_other_supports"]=5, + ["supported_aura_skill_gem_level_+"]=8, + ["supported_chaos_skill_gem_level_+"]=9, + ["supported_cold_skill_gem_level_+"]=10, + ["supported_curse_skill_gem_level_+"]=11, + ["supported_elemental_skill_gem_level_+"]=12, + ["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"]=1261, + ["supported_physical_skill_gem_level_+"]=16, + ["supported_skill_attack_speed_+%_per_5_rage"]=1262, + ["supported_skill_can_only_use_axe_and_sword"]=1263, + ["supported_skill_can_only_use_dagger_and_claw"]=1265, + ["supported_skill_can_only_use_mace_and_staff"]=1266, + ["supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze"]=1268, + ["supported_skill_triggers_living_lightning_on_dealing_lightning_damage"]=420, + ["supported_strike_skill_gem_level_+"]=17, + ["throw_traps_in_circle_radius"]=64, + ["totem_elemental_resistance_%"]=1269, + ["totem_gain_onslaught_for_x_ms_after_summon"]=1270, + ["totem_maximum_all_elemental_resistances_%"]=187, + ["totem_skill_attack_speed_+%"]=217, + ["totem_skill_cast_speed_+%"]=216, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1271, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1272, + ["trap_damage_+%"]=1273, + ["trap_duration_+%"]=75, + ["trap_spread_+%"]=1274, + ["trap_throwing_speed_+%"]=1275, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1276, + ["trap_trigger_radius_+%"]=1277, + ["trap_trigger_radius_+%_per_power_charge"]=1278, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1279, + ["trigger_ballistic_ice_chunks_on_killing_frozen_enemy"]=1280, + ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1281, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1282, + ["trigger_caltrops_at_end_of_projectile_flight"]=1283, + ["trigger_from_hayhoxis_binding_after_x_ms"]=1284, + ["trigger_frozen_vortex_on_shattering_enemy"]=1285, + ["trigger_on_attack_hit_against_rare_or_unique"]=1286, + ["trigger_on_trigger_link_target_hit"]=1287, + ["trigger_poison_spore_pustule"]=1288, + ["trigger_prismatic_burst_on_hit_%_chance"]=1289, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1290, + ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1291, + ["trigger_titanic_arrows_on_impact"]=1292, + ["trigger_vicious_hex_explosion_when_curse_ends"]=137, + ["triggered_by_brand_support"]=1293, + ["triggered_by_divine_cry"]=1294, + ["triggered_by_manaforged_arrows_support_%_chance"]=1295, + ["triggered_by_spiritual_cry"]=1296, + ["triggered_fan_the_flames_spread_ignite_to_hit_enemies"]=1297, + ["triggered_skill_damage_+%"]=1298, + ["triggered_spell_spell_damage_+%"]=34, + ["triggers_burning_runes_on_placing_ground_rune"]=1299, + ["trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=805, + ["try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy"]=1300, + ["virtual_cast_when_damage_taken_threshold"]=143, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1156, + ["wall_is_created_along_a_fissure_instead"]=1301, + ["wall_is_created_in_a_circle_instead"]=1302, + ["warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge"]=1303, + ["warcry_echo_area_of_effect_+%_final_per_repeat"]=1305, + ["warcry_echo_delay_ms_from_support"]=1304, + ["warcry_grant_X_rage_per_5_power"]=1306, + ["warcry_speed_+%"]=1307, + ["warcry_triggers_corrupting_cry"]=1308, + ["warcry_triggers_paquates_pact"]=1309, + ["weapon_elemental_damage_+%"]=1310, + ["wither_applies_additional_wither_%"]=1311, + ["wither_on_hit_chance_rollovercapped"]=1312, + ["withered_on_chaos_damage_hit_chance_%"]=1313, + ["withered_on_hit_chance_%"]=167, + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1314, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=1317 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua b/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua index a77418bc22..194b6c59dc 100644 --- a/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/meta_gem_stat_descriptions.lua @@ -205,6 +205,35 @@ return { } }, [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Skills have {0}% increased Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Skills have {0}% reduced Cooldown Recovery Rate" + } + }, + stats={ + [1]="base_cooldown_speed_+%" + } + }, + [10]={ [1]={ [1]={ ["gem_quality"]=true, @@ -243,7 +272,7 @@ return { [1]="base_curse_duration_+%" } }, - [10]={ + [11]={ [1]={ [1]={ limit={ @@ -272,7 +301,68 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [11]={ + [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Skills have {0}% increased Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Skills have {0}% reduced Cost Efficiency" + } + }, + stats={ + [1]="base_skill_cost_efficiency_+%" + } + }, + [13]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Skills Gain {0}% of Life and Mana Cost as Extra Runic Ward Cost" + } + }, + stats={ + [1]="base_skill_ward_cost_as_%_of_life_and_mana_cost" + } + }, + [14]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Skills cannot consume Charges" + } + }, + stats={ + [1]="cannot_consume_power_frenzy_endurance_charges" + } + }, + [15]={ [1]={ [1]={ ["gem_quality"]=true, @@ -311,7 +401,7 @@ return { [1]="curse_effect_+%" } }, - [12]={ + [16]={ [1]={ [1]={ limit={ @@ -340,7 +430,7 @@ return { [1]="damage_+%" } }, - [13]={ + [17]={ [1]={ [1]={ [1]={ @@ -360,7 +450,7 @@ return { [1]="feral_invocation_energy_cost_per_X_ms_of_base_attack_time" } }, - [14]={ + [18]={ [1]={ [1]={ [1]={ @@ -402,7 +492,65 @@ return { [2]="generic_ongoing_trigger_triggers_at_maximum_energy" } }, - [15]={ + [19]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Skills have {0}% more Attack speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Skills have {0}% less Attack speed" + } + }, + stats={ + [1]="mantra_of_illusions_triggered_skill_attack_speed_+%_final" + } + }, + [20]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Skills deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Skills deal {0}% less damage" + } + }, + stats={ + [1]="mantra_of_illusions_triggered_skill_damage_+%_final" + } + }, + [21]={ [1]={ [1]={ ["gem_quality"]=true, @@ -441,7 +589,65 @@ return { [1]="mark_effect_+%" } }, - [16]={ + [22]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Skills have {0}% increased Skill Effect Duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Skills have {0}% reduced Skill Effect Duration" + } + }, + stats={ + [1]="skill_effect_duration_+%" + } + }, + [23]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Curses have {0}% increased Magnitudes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Socketed Curses have {0}% reduced Magnitudes" + } + }, + stats={ + [1]="curse_effect_+%" + } + }, + [24]={ [1]={ [1]={ limit={ @@ -470,7 +676,7 @@ return { [1]="trigger_meta_gem_damage_+%_final" } }, - [17]={ + [25]={ [1]={ [1]={ limit={ @@ -499,7 +705,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [18]={ + [26]={ [1]={ [1]={ limit={ @@ -533,7 +739,7 @@ return { [2]="skill_empower_limitation_specifier_for_stat_description" } }, - [19]={ + [27]={ [1]={ [1]={ limit={ @@ -550,26 +756,33 @@ return { } }, ["active_skill_base_area_of_effect_radius"]=8, - ["base_curse_duration_+%"]=9, - ["base_skill_area_of_effect_+%"]=10, - ["curse_effect_+%"]=11, - ["damage_+%"]=12, + ["base_cooldown_speed_+%"]=9, + ["base_curse_duration_+%"]=10, + ["base_skill_area_of_effect_+%"]=11, + ["base_skill_cost_efficiency_+%"]=12, + ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=13, + ["cannot_consume_power_frenzy_endurance_charges"]=14, + ["curse_effect_+%"]=23, + ["damage_+%"]=16, ["disable_skill_if_melee_attack"]=7, ["display_bear_warcry"]=1, - ["feral_invocation_energy_cost_per_X_ms_of_base_attack_time"]=13, - ["generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time"]=14, - ["generic_ongoing_trigger_triggers_at_maximum_energy"]=14, - ["mark_effect_+%"]=15, + ["feral_invocation_energy_cost_per_X_ms_of_base_attack_time"]=17, + ["generic_ongoing_trigger_1_maximum_energy_per_Xms_total_cast_time"]=18, + ["generic_ongoing_trigger_triggers_at_maximum_energy"]=18, + ["mantra_of_illusions_triggered_skill_attack_speed_+%_final"]=19, + ["mantra_of_illusions_triggered_skill_damage_+%_final"]=20, + ["mark_effect_+%"]=21, parent="gem_stat_descriptions", ["quality_display_active_skill_base_area_of_effect_radius_is_gem"]=8, - ["skill_empower_limitation_specifier_for_stat_description"]=18, - ["skill_empowers_next_x_melee_attacks"]=18, + ["skill_effect_duration_+%"]=22, + ["skill_empower_limitation_specifier_for_stat_description"]=26, + ["skill_empowers_next_x_melee_attacks"]=26, ["support_additional_totem_damage_+%_final"]=3, ["support_attack_totem_attack_speed_+%_final"]=6, ["support_blasphemy_curse_effect_+%_final"]=4, ["support_spell_totem_cast_speed_+%_final"]=5, ["support_totem_damage_+%_final"]=2, - ["trigger_meta_gem_damage_+%_final"]=16, - ["warcry_buff_effect_+%"]=17, - ["warcry_grant_damage_+%_to_exerted_attacks"]=19 + ["trigger_meta_gem_damage_+%_final"]=24, + ["warcry_buff_effect_+%"]=25, + ["warcry_grant_damage_+%_to_exerted_attacks"]=27 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua b/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua index 1904756042..29f5f19382 100644 --- a/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/passive_skill_stat_descriptions.lua @@ -364,7 +364,7 @@ return { [2]="#" } }, - text="Converts all Energy Shield to Mana\nDoubles Mana Costs" + text="Convert 100% of maximum Energy Shield to maximum Mana\nMana Costs are Doubled" } }, stats={ @@ -380,7 +380,7 @@ return { [2]="#" } }, - text="Unlimited number of Summoned Totems\nTotems reserve 75 Spirit each" + text="Your Totem Limit is doubled\nNo Charge requirement for placing Totems\nTotems reserve 75 Spirit each" } }, stats={ @@ -572,7 +572,7 @@ return { [2]="#" } }, - text="Life Leech is Instant\nCannot use Life Flasks" + text="50% more amount of Life Leeched\nLeech Life 67% less quickly\nCannot Recover Life other than from Leech\nLife Leech effects are not removed when Unreserved Life is Filled" } }, stats={ @@ -820,7 +820,7 @@ return { [2]=1 } }, - text="Can Allocate Passives from the Warrior's starting point" + text="Can Allocate Passive Skills from the Warrior's starting point" }, [2]={ limit={ @@ -829,7 +829,7 @@ return { [2]=2 } }, - text="Can Allocate Passives from the Ranger's starting point" + text="Can Allocate Passive Skills from the Ranger's starting point" }, [3]={ limit={ @@ -838,7 +838,7 @@ return { [2]=3 } }, - text="Can Allocate Passives from the Sorceress's starting point" + text="Can Allocate Passive Skills from the Sorceress's starting point" }, [4]={ limit={ @@ -847,7 +847,7 @@ return { [2]=4 } }, - text="Can Allocate Passives from the Duelist's starting point" + text="Can Allocate Passive Skills from the Mercenary's starting point" }, [5]={ limit={ @@ -856,7 +856,7 @@ return { [2]=5 } }, - text="Can Allocate Passives from the Templar's starting point" + text="Can Allocate Passive Skills from the Templar's starting point" }, [6]={ limit={ @@ -865,7 +865,7 @@ return { [2]=6 } }, - text="Can Allocate Passives from the Shadow's starting point" + text="Can Allocate Passive Skills from the Shadow's starting point" } }, stats={ @@ -939,7 +939,7 @@ return { [2]=1 } }, - text="Gain {0} Life Flask Charge per 4% Life spent" + text="Gain {0} Life Flask Charge per 2% Life spent" }, [2]={ limit={ @@ -948,7 +948,7 @@ return { [2]="#" } }, - text="Gain {0} Life Flask Charges per 4% Life spent" + text="Gain {0} Life Flask Charges per 2% Life spent" } }, stats={ @@ -964,7 +964,7 @@ return { [2]="#" } }, - text="{0}% increased Defences" + text="{0}% increased Armour, Evasion and Energy Shield" }, [2]={ [1]={ @@ -977,11 +977,11 @@ return { [2]=-1 } }, - text="{0}% reduced Defences" + text="{0}% reduced Armour, Evasion and Energy Shield" } }, stats={ - [1]="global_defences_+%" + [1]="global_armour_evasion_energy_shield_+%" } }, [51]={ @@ -1084,22 +1084,6 @@ return { } }, [55]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Apply {0} Critical Weakness to Enemies when Consuming a Mark on them" - } - }, - stats={ - [1]="apply_X_critical_weakness_on_consuming_mark" - } - }, - [56]={ [1]={ [1]={ limit={ @@ -1115,7 +1099,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_10%_missing_mana" } }, - [57]={ + [56]={ [1]={ [1]={ limit={ @@ -1144,7 +1128,7 @@ return { [1]="ascendancy_arcane_archer_triggered_skill_mana_cost_+%_final" } }, - [58]={ + [57]={ [1]={ [1]={ [1]={ @@ -1164,7 +1148,7 @@ return { [1]="ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value" } }, - [59]={ + [58]={ [1]={ [1]={ limit={ @@ -1180,7 +1164,7 @@ return { [1]="ascendancy_disconnected_passives_can_be_allocated_around_allocated_keystones" } }, - [60]={ + [59]={ [1]={ [1]={ limit={ @@ -1196,6 +1180,22 @@ return { [1]="ascendancy_gemling_charge_generator_buff_display" } }, + [60]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gem Quality grants Socketed Skills an additional effect" + } + }, + stats={ + [1]="ascendancy_gemling_enable_thaumaturgy_quality_stats" + } + }, [61]={ [1]={ [1]={ @@ -1351,6 +1351,38 @@ return { } }, [69]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cascadable Spells have {0}% chance to Echo" + } + }, + stats={ + [1]="ascendancy_spell_deja_vu_skill_echo_chance_%" + } + }, + [70]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Repeatable Spells have {0}% chance to Repeat" + } + }, + stats={ + [1]="ascendancy_spell_deja_vu_spell_%_chance_to_reoccur_an_additional_time" + } + }, + [71]={ [1]={ [1]={ limit={ @@ -1388,32 +1420,23 @@ return { [1]="ascendancy_tactician_suppressing_fire_hit_damage_immobilisation_multiplier_+%_final" } }, - [70]={ + [72]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]=1 - } - }, - text="DNT-UNUSED Minimum {0} Vivid Stag Wisp" - }, - [2]={ - limit={ - [1]={ - [1]=2, [2]="#" } }, - text="DNT-UNUSED Minimum {0} Vivid Stag Wisps" + text="Targets Cursed by you have at least {0}% of Life Reserved" } }, stats={ - [1]="ascendancy_vivid_stag_minimum_stag_wisp_count" + [1]="ascendancy_whispers_of_the_flesh_cursed_enemies_have_at_least_life_reserved_%" } }, - [71]={ + [73]={ [1]={ [1]={ limit={ @@ -1442,7 +1465,7 @@ return { [1]="base_curse_delay_+%" } }, - [72]={ + [74]={ [1]={ [1]={ [1]={ @@ -1462,7 +1485,7 @@ return { [1]="base_rage_regeneration_rate_per_minute_%" } }, - [73]={ + [75]={ [1]={ [1]={ [1]={ @@ -1513,7 +1536,7 @@ return { [3]="blood_mage_life_flask_buff_duration_ms" } }, - [74]={ + [76]={ [1]={ [1]={ limit={ @@ -1529,7 +1552,7 @@ return { [1]="can_equip_staff_with_focus" } }, - [75]={ + [77]={ [1]={ [1]={ limit={ @@ -1538,14 +1561,14 @@ return { [2]="#" } }, - text="DNT-UNUSED Any Attack Hit can gain Combo" + text="Gain Combo from all Attack Hits" } }, stats={ [1]="can_gain_combo_from_any_attack_hit" } }, - [76]={ + [78]={ [1]={ [1]={ limit={ @@ -1561,7 +1584,7 @@ return { [1]="can_only_spawn_blue_flame_of_chayula_remnants" } }, - [77]={ + [79]={ [1]={ [1]={ limit={ @@ -1577,7 +1600,7 @@ return { [1]="can_only_spawn_purple_flame_of_chayula_remnants" } }, - [78]={ + [80]={ [1]={ [1]={ limit={ @@ -1593,7 +1616,7 @@ return { [1]="can_only_spawn_red_flame_of_chayula_remnants" } }, - [79]={ + [81]={ [1]={ [1]={ limit={ @@ -1609,7 +1632,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [80]={ + [82]={ [1]={ [1]={ limit={ @@ -1634,7 +1657,7 @@ return { [1]="chance_%_for_extra_infusion_on_infused_remnant_pickup" } }, - [81]={ + [83]={ [1]={ [1]={ limit={ @@ -1643,14 +1666,14 @@ return { [2]="#" } }, - text="DNT-UNUSED {0}% chance to generate an Owl Feather on Critical Hit" + text="{0}% chance to gain an Owl Feather on Critical Hit" } }, stats={ [1]="chance_to_generate_owl_feather_%_on_crit" } }, - [82]={ + [84]={ [1]={ [1]={ limit={ @@ -1666,7 +1689,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [83]={ + [85]={ [1]={ [1]={ limit={ @@ -1695,7 +1718,36 @@ return { [1]="chill_effect_+%" } }, - [84]={ + [86]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Damage" + } + }, + stats={ + [1]="chronomancer_damage_taken_+%_final" + } + }, + [87]={ [1]={ [1]={ limit={ @@ -1716,7 +1768,7 @@ return { [2]="chronomancer_grant_area_of_effect_+%" } }, - [85]={ + [88]={ [1]={ [1]={ limit={ @@ -1725,27 +1777,14 @@ return { [2]="#" } }, - text="DNT-UNUSED Companions deal {0}% increased Damage per socketed Talisman" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="DNT-UNUSED Companions deal {0}% reduced Damage per socketed Talisman" + text="4 seconds after being Damaged by an Enemy Hit, take Damage equal to {0}% of that Hit's Damage" } }, stats={ - [1]="companion_damage_+%_per_socketed_talisman" + [1]="chronomancer_take_%_of_hit_damage_4_seconds_after_being_hit" } }, - [86]={ + [89]={ [1]={ [1]={ limit={ @@ -1761,7 +1800,7 @@ return { [1]="created_remnants_have_%_chance_to_duplicate_pick_up_results" } }, - [87]={ + [90]={ [1]={ [1]={ limit={ @@ -1777,7 +1816,7 @@ return { [1]="critical_chance_vs_self_is_unlucky" } }, - [88]={ + [91]={ [1]={ [1]={ limit={ @@ -1793,7 +1832,7 @@ return { [1]="crushing_blow" } }, - [89]={ + [92]={ [1]={ [1]={ limit={ @@ -1827,23 +1866,7 @@ return { [1]="current_energy_shield_%_as_elemental_damage_reduction" } }, - [90]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Targets Cursed by you have at least {0}% of Life Reserved" - } - }, - stats={ - [1]="cursed_enemies_have_life_reserved_%" - } - }, - [91]={ + [93]={ [1]={ [1]={ limit={ @@ -1859,7 +1882,7 @@ return { [1]="damage_taken_from_hits_is_unlucky" } }, - [92]={ + [94]={ [1]={ [1]={ limit={ @@ -1875,7 +1898,7 @@ return { [1]="daze_enemies_on_block_with_shield_raised_chance_%" } }, - [93]={ + [95]={ [1]={ [1]={ limit={ @@ -1891,7 +1914,7 @@ return { [1]="display_fire_djinn_enable_living_bomb" } }, - [94]={ + [96]={ [1]={ [1]={ limit={ @@ -1907,7 +1930,7 @@ return { [1]="display_nearby_enemies_are_taunted" } }, - [95]={ + [97]={ [1]={ [1]={ limit={ @@ -1923,7 +1946,7 @@ return { [1]="display_sand_djinn_enable_explode_teleport" } }, - [96]={ + [98]={ [1]={ [1]={ limit={ @@ -1939,7 +1962,7 @@ return { [1]="display_sand_djinn_enable_hand_slam" } }, - [97]={ + [99]={ [1]={ [1]={ limit={ @@ -1955,7 +1978,7 @@ return { [1]="display_sand_djinn_enable_knife_throw" } }, - [98]={ + [100]={ [1]={ [1]={ limit={ @@ -1964,14 +1987,14 @@ return { [2]="#" } }, - text="Attribute Passive Skills can instead grant 5% increased Damage\nAttribute Passive Skills can instead grant 5% increased Defences\nAttribute Passive Skills can instead grant 5% increased Cost Efficiency" + text="Attribute Passive Skills can instead grant 5% increased Damage\nAttribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield\nAttribute Passive Skills can instead grant 5% increased Cost Efficiency" } }, stats={ [1]="display_travellers_wisdom_extra_attribute_options" } }, - [99]={ + [101]={ [1]={ [1]={ limit={ @@ -1987,7 +2010,7 @@ return { [1]="display_you_have_x_fortification" } }, - [100]={ + [102]={ [1]={ [1]={ limit={ @@ -2016,7 +2039,7 @@ return { [1]="djinn_ascendancy_energy_shield_recharge_rate_+%_final_on_low_energy_shield" } }, - [101]={ + [103]={ [1]={ [1]={ limit={ @@ -2032,7 +2055,7 @@ return { [1]="double_adaptation_effect" } }, - [102]={ + [104]={ [1]={ [1]={ limit={ @@ -2048,7 +2071,7 @@ return { [1]="elemental_damage_removed_from_mana_before_life_%" } }, - [103]={ + [105]={ [1]={ [1]={ [1]={ @@ -2077,7 +2100,7 @@ return { [1]="ascendancy_druid_shaman_elemental_damage_taken_+%_final_per_matching_adaptation" } }, - [104]={ + [106]={ [1]={ [1]={ limit={ @@ -2093,7 +2116,7 @@ return { [1]="elemental_skill_limit_+" } }, - [105]={ + [107]={ [1]={ [1]={ [1]={ @@ -2113,7 +2136,7 @@ return { [1]="every_1_second_nearby_enemies_withered_for_X_ms" } }, - [106]={ + [108]={ [1]={ [1]={ limit={ @@ -2142,7 +2165,7 @@ return { [1]="focus_mod_effect_+%" } }, - [107]={ + [109]={ [1]={ [1]={ limit={ @@ -2158,7 +2181,7 @@ return { [1]="gain_X_volatility_on_inflicting_elemental_ailment" } }, - [108]={ + [110]={ [1]={ [1]={ limit={ @@ -2174,7 +2197,7 @@ return { [1]="hit_damage_remove_from_mana_before_life_while_mana_higher_than_life" } }, - [109]={ + [111]={ [1]={ [1]={ limit={ @@ -2190,7 +2213,7 @@ return { [1]="immune_to_volatility_damage" } }, - [110]={ + [112]={ [1]={ [1]={ limit={ @@ -2206,7 +2229,7 @@ return { [1]="gain_elemental_archon_when_you_cast_a_spell_while_on_high_infernal_flame" } }, - [111]={ + [113]={ [1]={ [1]={ limit={ @@ -2222,7 +2245,7 @@ return { [1]="elemental_archon_does_not_expire_while_on_high_infernal_flame" } }, - [112]={ + [114]={ [1]={ [1]={ limit={ @@ -2238,7 +2261,7 @@ return { [1]="lose_elemental_archone_on_reaching_full_infernal_flame" } }, - [113]={ + [115]={ [1]={ [1]={ limit={ @@ -2247,14 +2270,14 @@ return { [2]="#" } }, - text="You can have two Companions of different types\nYou have 30% less Defences\nCompanions have +1 to each Defence for every 2 of that Defence you have" + text="You can have two Companions of different types\n30% more Reservation Efficiency of Companion Skills\n20% less Reservation Efficiency of non-Companion Skills" } }, stats={ [1]="keystone_2_companions" } }, - [114]={ + [116]={ [1]={ [1]={ limit={ @@ -2270,7 +2293,7 @@ return { [1]="keystone_bulwark" } }, - [115]={ + [117]={ [1]={ [1]={ limit={ @@ -2286,7 +2309,7 @@ return { [1]="keystone_crimson_assault" } }, - [116]={ + [118]={ [1]={ [1]={ limit={ @@ -2302,7 +2325,7 @@ return { [1]="keystone_crimson_dance" } }, - [117]={ + [119]={ [1]={ [1]={ limit={ @@ -2318,7 +2341,7 @@ return { [1]="keystone_dance_with_death" } }, - [118]={ + [120]={ [1]={ [1]={ limit={ @@ -2334,7 +2357,7 @@ return { [1]="keystone_giants_blood" } }, - [119]={ + [121]={ [1]={ [1]={ limit={ @@ -2350,7 +2373,7 @@ return { [1]="keystone_zealots_oath" } }, - [120]={ + [122]={ [1]={ [1]={ limit={ @@ -2366,7 +2389,7 @@ return { [1]="leech_also_recovers_based_on_chaos_damage_as_well" } }, - [121]={ + [123]={ [1]={ [1]={ limit={ @@ -2382,7 +2405,7 @@ return { [1]="life_leech_is_instant_for_empowered_attacks" } }, - [122]={ + [124]={ [1]={ [1]={ limit={ @@ -2411,7 +2434,7 @@ return { [1]="life_mastery_nearby_enemy_life_regeneration_rate_+%" } }, - [123]={ + [125]={ [1]={ [1]={ limit={ @@ -2427,7 +2450,7 @@ return { [1]="mana_regeneration_rate_modifiers_apply_to_rage_regeneration" } }, - [124]={ + [126]={ [1]={ [1]={ limit={ @@ -2443,7 +2466,7 @@ return { [1]="maximum_block_chance_override" } }, - [125]={ + [127]={ [1]={ [1]={ limit={ @@ -2459,7 +2482,7 @@ return { [1]="maximum_darkness_+%_per_capped_chaos_damage_resistance" } }, - [126]={ + [128]={ [1]={ [1]={ limit={ @@ -2468,14 +2491,14 @@ return { [2]="#" } }, - text="DNT-UNUSED {0:+d} to maximum Mana per fifty Item Evasion Rating on Equipped Armour Items" + text="DNT-UNUSED {0:+d} to maximum Mana per fifty Item Evasion on Equipped Armour Items" } }, stats={ [1]="maximum_mana_per_50_evasion_rating_from_armour_items" } }, - [127]={ + [129]={ [1]={ [1]={ limit={ @@ -2491,7 +2514,7 @@ return { [1]="minion_non_skill_base_elemental_damage_%_to_gain_as_chaos" } }, - [128]={ + [130]={ [1]={ [1]={ limit={ @@ -2520,7 +2543,7 @@ return { [1]="movement_speed_penalty_+%_while_raising_shield" } }, - [129]={ + [131]={ [1]={ [1]={ limit={ @@ -2529,14 +2552,14 @@ return { [2]="#" } }, - text="DNT-UNUSED Attacks Empowered by Owl Feathers have {0}% more Critical Damage Bonus" + text="Attacks Empowered by Owl Feathers have {0}% more Critical Damage Bonus" } }, stats={ [1]="multishot_critical_damage_bonus_+%_final" } }, - [130]={ + [132]={ [1]={ [1]={ limit={ @@ -2552,7 +2575,7 @@ return { [1]="natures_sustenance_added_rage_cost" } }, - [131]={ + [133]={ [1]={ [1]={ limit={ @@ -2568,7 +2591,7 @@ return { [1]="natures_sustenance_additional_maximum_rage" } }, - [132]={ + [134]={ [1]={ [1]={ limit={ @@ -2584,7 +2607,7 @@ return { [1]="no_barrage_projectile_spread" } }, - [133]={ + [135]={ [1]={ [1]={ limit={ @@ -2677,7 +2700,7 @@ return { [3]="movement_speed_penalty_+%_final_while_performing_action_if_green_support_count_highest" } }, - [134]={ + [136]={ [1]={ [1]={ limit={ @@ -2693,7 +2716,7 @@ return { [1]="ascendancy_non_unique_jewel_radius_+%" } }, - [135]={ + [137]={ [1]={ [1]={ limit={ @@ -2709,7 +2732,7 @@ return { [1]="offering_skill_target_cullable_enemies_instead" } }, - [136]={ + [138]={ [1]={ [1]={ limit={ @@ -2725,7 +2748,7 @@ return { [1]="offerings_only_buff_you" } }, - [137]={ + [139]={ [1]={ [1]={ limit={ @@ -2741,7 +2764,7 @@ return { [1]="oracle_hits_eventually_crit_with_critical_strike_multiplier_+%_final_per_failed_roll" } }, - [138]={ + [140]={ [1]={ [1]={ limit={ @@ -2770,7 +2793,7 @@ return { [1]="oracle_maximum_life_+%_final" } }, - [139]={ + [141]={ [1]={ [1]={ limit={ @@ -2799,7 +2822,7 @@ return { [1]="oracle_maximum_mana_+%_final" } }, - [140]={ + [142]={ [1]={ [1]={ limit={ @@ -2828,7 +2851,7 @@ return { [1]="physical_damage_+%" } }, - [141]={ + [143]={ [1]={ [1]={ limit={ @@ -2844,7 +2867,7 @@ return { [1]="physical_spell_damage_can_pin_on_critical_hit" } }, - [142]={ + [144]={ [1]={ [1]={ limit={ @@ -2860,7 +2883,7 @@ return { [1]="pinned_enemies_cannot_crit" } }, - [143]={ + [145]={ [1]={ [1]={ limit={ @@ -2876,7 +2899,7 @@ return { [1]="pinned_enemies_cannot_evade_your_attacks" } }, - [144]={ + [146]={ [1]={ [1]={ limit={ @@ -2892,7 +2915,7 @@ return { [1]="projectile_attacks_always_chain_to_marked_enemies_with_%_increased_chaining_distance" } }, - [145]={ + [147]={ [1]={ [1]={ limit={ @@ -2908,7 +2931,7 @@ return { [1]="rage_gained_on_life_flask_use" } }, - [146]={ + [148]={ [1]={ [1]={ limit={ @@ -2924,7 +2947,7 @@ return { [1]="random_freeze_duration_+%_up_to_%" } }, - [147]={ + [149]={ [1]={ [1]={ [1]={ @@ -2957,51 +2980,6 @@ return { [1]="remnants_you_create_reappear_X_ms_after_being_collected" } }, - [148]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="DNT-UNUSED Skills have {0}% increased Reservation efficiency per socketed Talisman" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="DNT-UNUSED Skills have {0}% reduced Reservation efficiency per socketed Talisman" - } - }, - stats={ - [1]="reservation_efficiency_+%_of_skills_per_socketed_talisman" - } - }, - [149]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="DNT-UNUSED {0:+d}% to all Elemental Resistances per socketed Rune" - } - }, - stats={ - [1]="resist_all_elements_%_per_socketed_rune" - } - }, [150]={ [1]={ [1]={ @@ -3056,7 +3034,7 @@ return { [2]="#" } }, - text="DNT-UNUSED {0}% increased cost of Skills per socketed Soul Core" + text="{0}% increased cost of Skills per Soul Core in your equipment" }, [2]={ [1]={ @@ -3069,7 +3047,7 @@ return { [2]=-1 } }, - text="DNT-UNUSED {0}% reduced cost of Skills per socketed Soul Core" + text="{0}% reduced cost of Skills per Soul Core in your equipment" } }, stats={ @@ -3160,55 +3138,6 @@ return { } }, [156]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="DNT-UNUSED Tame Beast can target Unique Beasts\nYou can summon Tamed Unique Beasts" - } - }, - stats={ - [1]="tame_beast_can_target_unique_beasts" - } - }, - [157]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="DNT-UNUSED Your Tamed Beasts are possessed by a different random Azmeri Wisp once every {0} second" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="DNT-UNUSED Your Tamed Beasts are possessed by a different random Azmeri Wisp once every {0} seconds" - } - }, - stats={ - [1]="tamed_beasts_randomly_possessed_every_x_ms" - } - }, - [158]={ [1]={ [1]={ limit={ @@ -3224,7 +3153,7 @@ return { [1]="unlimited_banners_allowed" } }, - [159]={ + [157]={ [1]={ [1]={ limit={ @@ -3240,7 +3169,7 @@ return { [1]="unravelling_cycling_buff_every_x_ms" } }, - [160]={ + [158]={ [1]={ [1]={ limit={ @@ -3249,14 +3178,14 @@ return { [2]="#" } }, - text="DNT-UNUSED {0}% of Main Hand Weapon Damage granted as Added Attack Damage to your Companions in your Presence" + text="Companions gain added Attack damage equal to {0}% of your main hand Weapon's damage" } }, stats={ - [1]="weapon_damage_%_granted_to_companions_in_presence" + [1]="weapon_damage_%_granted_to_companions" } }, - [161]={ + [159]={ [1]={ [1]={ limit={ @@ -3272,7 +3201,7 @@ return { [1]="base_phasing_without_visual" } }, - [162]={ + [160]={ [1]={ [1]={ limit={ @@ -3288,7 +3217,7 @@ return { [1]="lich_offering_effect_+%_per_enemy_power" } }, - [163]={ + [161]={ [1]={ [1]={ limit={ @@ -3313,7 +3242,7 @@ return { [1]="local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start" } }, - [164]={ + [162]={ [1]={ [1]={ limit={ @@ -3329,7 +3258,7 @@ return { [1]="keystone_alternate_dexterity_bonus" } }, - [165]={ + [163]={ [1]={ [1]={ limit={ @@ -3345,7 +3274,7 @@ return { [1]="keystone_alternate_es_recovery" } }, - [166]={ + [164]={ [1]={ [1]={ limit={ @@ -3361,7 +3290,7 @@ return { [1]="keystone_alternate_intelligence_bonus" } }, - [167]={ + [165]={ [1]={ [1]={ limit={ @@ -3377,7 +3306,7 @@ return { [1]="keystone_alternate_strength_bonus" } }, - [168]={ + [166]={ [1]={ [1]={ limit={ @@ -3393,7 +3322,7 @@ return { [1]="keystone_amanamus_defiance" } }, - [169]={ + [167]={ [1]={ [1]={ limit={ @@ -3409,7 +3338,7 @@ return { [1]="keystone_auto_invocation" } }, - [170]={ + [168]={ [1]={ [1]={ limit={ @@ -3425,7 +3354,7 @@ return { [1]="keystone_barbed_tips" } }, - [171]={ + [169]={ [1]={ [1]={ limit={ @@ -3441,7 +3370,7 @@ return { [1]="keystone_blind_monk" } }, - [172]={ + [170]={ [1]={ [1]={ limit={ @@ -3457,7 +3386,7 @@ return { [1]="keystone_call_to_arms" } }, - [173]={ + [171]={ [1]={ [1]={ limit={ @@ -3473,7 +3402,7 @@ return { [1]="keystone_charge_cycle" } }, - [174]={ + [172]={ [1]={ [1]={ limit={ @@ -3489,7 +3418,7 @@ return { [1]="keystone_disciple_of_kitava" } }, - [175]={ + [173]={ [1]={ [1]={ limit={ @@ -3505,7 +3434,7 @@ return { [1]="keystone_divine_flesh" } }, - [176]={ + [174]={ [1]={ [1]={ limit={ @@ -3521,7 +3450,7 @@ return { [1]="keystone_divine_shield" } }, - [177]={ + [175]={ [1]={ [1]={ limit={ @@ -3537,7 +3466,7 @@ return { [1]="keystone_druidic_rage" } }, - [178]={ + [176]={ [1]={ [1]={ limit={ @@ -3553,7 +3482,7 @@ return { [1]="keystone_elemental_overload" } }, - [179]={ + [177]={ [1]={ [1]={ limit={ @@ -3569,7 +3498,7 @@ return { [1]="keystone_emperors_heart" } }, - [180]={ + [178]={ [1]={ [1]={ limit={ @@ -3585,7 +3514,7 @@ return { [1]="keystone_eternal_youth" } }, - [181]={ + [179]={ [1]={ [1]={ limit={ @@ -3601,7 +3530,7 @@ return { [1]="keystone_fire_spells_become_chaos_spells" } }, - [182]={ + [180]={ [1]={ [1]={ limit={ @@ -3617,7 +3546,7 @@ return { [1]="keystone_focused_rage" } }, - [183]={ + [181]={ [1]={ [1]={ limit={ @@ -3633,7 +3562,7 @@ return { [1]="keystone_glancing_blows" } }, - [184]={ + [182]={ [1]={ [1]={ limit={ @@ -3649,7 +3578,7 @@ return { [1]="keystone_heartstopper" } }, - [185]={ + [183]={ [1]={ [1]={ limit={ @@ -3665,7 +3594,7 @@ return { [1]="keystone_herald_of_doom" } }, - [186]={ + [184]={ [1]={ [1]={ limit={ @@ -3681,7 +3610,7 @@ return { [1]="keystone_hex_master" } }, - [187]={ + [185]={ [1]={ [1]={ limit={ @@ -3690,14 +3619,14 @@ return { [2]="#" } }, - text="Can Attack as though using a Quarterstaff while both of your hand slots are empty\nUnarmed Attacks that would use your Quarterstaff's damage gain:\nPhysical damage based on their Skill Level\n1% more Attack Speed per 75 Item Evasion Rating on Equipped Armour Items\n+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items" + text="Can Attack as though using a Quarterstaff while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped Quarterstaff's damage have:\nBase Unarmed Physical damage replaced with damage based on their Skill Level\n1% more Attack Speed per 75 Item Evasion on Equipped Armour Items\n+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items" } }, stats={ [1]="keystone_hollow_palm_technique" } }, - [188]={ + [186]={ [1]={ [1]={ limit={ @@ -3713,7 +3642,7 @@ return { [1]="keystone_impale" } }, - [189]={ + [187]={ [1]={ [1]={ limit={ @@ -3729,7 +3658,7 @@ return { [1]="keystone_iron_grip" } }, - [190]={ + [188]={ [1]={ [1]={ limit={ @@ -3745,7 +3674,7 @@ return { [1]="keystone_iron_will" } }, - [191]={ + [189]={ [1]={ [1]={ limit={ @@ -3761,7 +3690,7 @@ return { [1]="keystone_kulemaks_sovereignty" } }, - [192]={ + [190]={ [1]={ [1]={ limit={ @@ -3777,7 +3706,7 @@ return { [1]="keystone_kurgals_ambition" } }, - [193]={ + [191]={ [1]={ [1]={ limit={ @@ -3793,7 +3722,7 @@ return { [1]="keystone_lord_of_the_wilds" } }, - [194]={ + [192]={ [1]={ [1]={ limit={ @@ -3809,7 +3738,7 @@ return { [1]="keystone_magnetic_charge" } }, - [195]={ + [193]={ [1]={ [1]={ limit={ @@ -3825,7 +3754,7 @@ return { [1]="keystone_mental_conditioning" } }, - [196]={ + [194]={ [1]={ [1]={ limit={ @@ -3841,7 +3770,7 @@ return { [1]="keystone_natures_presence" } }, - [197]={ + [195]={ [1]={ [1]={ limit={ @@ -3857,7 +3786,7 @@ return { [1]="keystone_oasis" } }, - [198]={ + [196]={ [1]={ [1]={ limit={ @@ -3873,7 +3802,7 @@ return { [1]="keystone_precise_technique" } }, - [199]={ + [197]={ [1]={ [1]={ limit={ @@ -3889,7 +3818,7 @@ return { [1]="keystone_prismatic_bulwark" } }, - [200]={ + [198]={ [1]={ [1]={ limit={ @@ -3905,7 +3834,7 @@ return { [1]="keystone_quiet_might" } }, - [201]={ + [199]={ [1]={ [1]={ limit={ @@ -3921,7 +3850,7 @@ return { [1]="keystone_runebinder" } }, - [202]={ + [200]={ [1]={ [1]={ limit={ @@ -3937,7 +3866,7 @@ return { [1]="keystone_sacred_bastion" } }, - [203]={ + [201]={ [1]={ [1]={ limit={ @@ -3953,7 +3882,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [204]={ + [202]={ [1]={ [1]={ limit={ @@ -3969,7 +3898,7 @@ return { [1]="keystone_sharp_and_brittle" } }, - [205]={ + [203]={ [1]={ [1]={ limit={ @@ -3985,7 +3914,7 @@ return { [1]="keystone_supreme_prodigy" } }, - [206]={ + [204]={ [1]={ [1]={ limit={ @@ -4001,7 +3930,7 @@ return { [1]="keystone_tecrods_brutality" } }, - [207]={ + [205]={ [1]={ [1]={ limit={ @@ -4017,7 +3946,7 @@ return { [1]="keystone_tempered_by_war" } }, - [208]={ + [206]={ [1]={ [1]={ limit={ @@ -4033,7 +3962,7 @@ return { [1]="keystone_ulamans_vision" } }, - [209]={ + [207]={ [1]={ [1]={ limit={ @@ -4049,7 +3978,7 @@ return { [1]="keystone_versatile_combatant" } }, - [210]={ + [208]={ [1]={ [1]={ limit={ @@ -4065,7 +3994,7 @@ return { [1]="keystone_veterans_awareness" } }, - [211]={ + [209]={ [1]={ [1]={ limit={ @@ -4086,26 +4015,28 @@ return { ["add_frenzy_charge_on_kill"]=17, ["additional_combo_gain_chance_%"]=53, ["aggravate_bleeding_when_inflicted_vs_pinned_enemy"]=54, - ["apply_X_critical_weakness_on_consuming_mark"]=55, - ["arcane_surge_effect_on_self_+%_per_10%_missing_mana"]=56, - ["ascendancy_arcane_archer_triggered_skill_mana_cost_+%_final"]=57, - ["ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value"]=58, - ["ascendancy_disconnected_passives_can_be_allocated_around_allocated_keystones"]=59, - ["ascendancy_druid_shaman_elemental_damage_taken_+%_final_per_matching_adaptation"]=103, - ["ascendancy_gemling_charge_generator_buff_display"]=60, + ["arcane_surge_effect_on_self_+%_per_10%_missing_mana"]=55, + ["ascendancy_arcane_archer_triggered_skill_mana_cost_+%_final"]=56, + ["ascendancy_chronomancer_apex_of_the_moment_base_slow_aura_value"]=57, + ["ascendancy_disconnected_passives_can_be_allocated_around_allocated_keystones"]=58, + ["ascendancy_druid_shaman_elemental_damage_taken_+%_final_per_matching_adaptation"]=105, + ["ascendancy_gemling_charge_generator_buff_display"]=59, + ["ascendancy_gemling_enable_thaumaturgy_quality_stats"]=60, ["ascendancy_lich_consume_power_for_apparition"]=61, ["ascendancy_lich_skeletons_are_buffs_instead_of_minions"]=62, ["ascendancy_lich_spell_damage_+%_final_when_sacrificing_energy_shield"]=153, ["ascendancy_lich_spells_consume_power_charges_for_spell_damage_+%_final"]=63, - ["ascendancy_non_unique_jewel_radius_+%"]=134, + ["ascendancy_non_unique_jewel_radius_+%"]=136, ["ascendancy_oracle_can_allocate_additional_oracle_only_passives_display"]=64, ["ascendancy_random_ignite_effect_+%_final_up_to_%"]=65, ["ascendancy_ritualist_damage_+%_final_vs_enemies_affected_by_blood_boil"]=66, ["ascendancy_shaman_+_spirit_per_empty_charm_slot"]=67, ["ascendancy_shaman_spell_damage_+%_final_per_2_rage"]=68, - ["ascendancy_tactician_suppressing_fire_hit_damage_immobilisation_multiplier_+%_final"]=69, - ["ascendancy_vivid_stag_minimum_stag_wisp_count"]=70, - ["base_curse_delay_+%"]=71, + ["ascendancy_spell_deja_vu_skill_echo_chance_%"]=69, + ["ascendancy_spell_deja_vu_spell_%_chance_to_reoccur_an_additional_time"]=70, + ["ascendancy_tactician_suppressing_fire_hit_damage_immobilisation_multiplier_+%_final"]=71, + ["ascendancy_whispers_of_the_flesh_cursed_enemies_have_at_least_life_reserved_%"]=72, + ["base_curse_delay_+%"]=73, ["base_devotion"]=2, ["base_dexterity"]=7, ["base_dexterity_and_intelligence"]=42, @@ -4114,190 +4045,186 @@ return { ["base_number_of_raging_spirits_allowed"]=24, ["base_number_of_skeletons_allowed"]=23, ["base_number_of_spectres_allowed"]=22, - ["base_phasing_without_visual"]=161, - ["base_rage_regeneration_rate_per_minute_%"]=72, + ["base_phasing_without_visual"]=159, + ["base_rage_regeneration_rate_per_minute_%"]=74, ["base_strength"]=5, ["base_strength_and_dexterity"]=40, ["base_strength_and_intelligence"]=41, ["base_tribute"]=3, - ["blood_mage_life_flask_buff_%_charges_to_consume"]=73, - ["blood_mage_life_flask_buff_%_damage_to_gain_as_physical_per_charge_consumed"]=73, - ["blood_mage_life_flask_buff_duration_ms"]=73, - ["can_equip_staff_with_focus"]=74, - ["can_gain_combo_from_any_attack_hit"]=75, - ["can_only_spawn_blue_flame_of_chayula_remnants"]=76, - ["can_only_spawn_purple_flame_of_chayula_remnants"]=77, - ["can_only_spawn_red_flame_of_chayula_remnants"]=78, - ["chance_%_for_extra_infusion_on_infused_remnant_pickup"]=80, - ["chance_for_extra_damage_roll_%"]=79, - ["chance_to_generate_owl_feather_%_on_crit"]=81, - ["charge_skip_consume_chance_%"]=82, - ["chill_effect_+%"]=83, - ["chronomancer_grant_area_of_effect_+%"]=84, - ["chronomancer_grant_cast_speed_+%"]=84, - ["companion_damage_+%_per_socketed_talisman"]=85, + ["blood_mage_life_flask_buff_%_charges_to_consume"]=75, + ["blood_mage_life_flask_buff_%_damage_to_gain_as_physical_per_charge_consumed"]=75, + ["blood_mage_life_flask_buff_duration_ms"]=75, + ["can_equip_staff_with_focus"]=76, + ["can_gain_combo_from_any_attack_hit"]=77, + ["can_only_spawn_blue_flame_of_chayula_remnants"]=78, + ["can_only_spawn_purple_flame_of_chayula_remnants"]=79, + ["can_only_spawn_red_flame_of_chayula_remnants"]=80, + ["chance_%_for_extra_infusion_on_infused_remnant_pickup"]=82, + ["chance_for_extra_damage_roll_%"]=81, + ["chance_to_generate_owl_feather_%_on_crit"]=83, + ["charge_skip_consume_chance_%"]=84, + ["chill_effect_+%"]=85, + ["chronomancer_damage_taken_+%_final"]=86, + ["chronomancer_grant_area_of_effect_+%"]=87, + ["chronomancer_grant_cast_speed_+%"]=87, + ["chronomancer_take_%_of_hit_damage_4_seconds_after_being_hit"]=88, ["consecrate_ground_on_kill_%_for_3_seconds"]=47, - ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=86, - ["critical_chance_vs_self_is_unlucky"]=87, + ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=89, + ["critical_chance_vs_self_is_unlucky"]=90, ["critical_strike_chance_+%"]=34, - ["crushing_blow"]=88, - ["current_energy_shield_%_as_elemental_damage_reduction"]=89, - ["cursed_enemies_have_life_reserved_%"]=90, + ["crushing_blow"]=91, + ["current_energy_shield_%_as_elemental_damage_reduction"]=92, ["damage_taken_+%_from_hits"]=1, - ["damage_taken_from_hits_is_unlucky"]=91, - ["daze_enemies_on_block_with_shield_raised_chance_%"]=92, + ["damage_taken_from_hits_is_unlucky"]=93, + ["daze_enemies_on_block_with_shield_raised_chance_%"]=94, ["dexterity_+%"]=8, ["display_can_take_character_start_point"]=46, - ["display_fire_djinn_enable_living_bomb"]=93, - ["display_nearby_enemies_are_taunted"]=94, - ["display_sand_djinn_enable_explode_teleport"]=95, - ["display_sand_djinn_enable_hand_slam"]=96, - ["display_sand_djinn_enable_knife_throw"]=97, - ["display_travellers_wisdom_extra_attribute_options"]=98, - ["display_you_have_x_fortification"]=99, - ["djinn_ascendancy_energy_shield_recharge_rate_+%_final_on_low_energy_shield"]=100, - ["double_adaptation_effect"]=101, - ["elemental_archon_does_not_expire_while_on_high_infernal_flame"]=111, - ["elemental_damage_removed_from_mana_before_life_%"]=102, - ["elemental_skill_limit_+"]=104, + ["display_fire_djinn_enable_living_bomb"]=95, + ["display_nearby_enemies_are_taunted"]=96, + ["display_sand_djinn_enable_explode_teleport"]=97, + ["display_sand_djinn_enable_hand_slam"]=98, + ["display_sand_djinn_enable_knife_throw"]=99, + ["display_travellers_wisdom_extra_attribute_options"]=100, + ["display_you_have_x_fortification"]=101, + ["djinn_ascendancy_energy_shield_recharge_rate_+%_final_on_low_energy_shield"]=102, + ["double_adaptation_effect"]=103, + ["elemental_archon_does_not_expire_while_on_high_infernal_flame"]=113, + ["elemental_damage_removed_from_mana_before_life_%"]=104, + ["elemental_skill_limit_+"]=106, ["energy_shield_recharge_starts_X_ms_sooner"]=48, - ["every_1_second_nearby_enemies_withered_for_X_ms"]=105, - ["focus_mod_effect_+%"]=106, + ["every_1_second_nearby_enemies_withered_for_X_ms"]=107, + ["focus_mod_effect_+%"]=108, ["gain_X_adaptation_matching_type_when_hit_by_elemental_damage"]=52, ["gain_X_life_flask_charges_per_4%_life_spent"]=49, - ["gain_X_volatility_on_inflicting_elemental_ailment"]=107, - ["gain_elemental_archon_when_you_cast_a_spell_while_on_high_infernal_flame"]=110, + ["gain_X_volatility_on_inflicting_elemental_ailment"]=109, + ["gain_elemental_archon_when_you_cast_a_spell_while_on_high_infernal_flame"]=112, + ["global_armour_evasion_energy_shield_+%"]=50, ["global_chance_to_blind_on_hit_%"]=43, - ["global_defences_+%"]=50, - ["hit_damage_remove_from_mana_before_life_while_mana_higher_than_life"]=108, - ["immune_to_volatility_damage"]=109, + ["hit_damage_remove_from_mana_before_life_while_mana_higher_than_life"]=110, + ["immune_to_volatility_damage"]=111, ["intelligence_+%"]=10, - ["keystone_2_companions"]=113, + ["keystone_2_companions"]=115, ["keystone_acrobatics"]=25, - ["keystone_alternate_dexterity_bonus"]=164, - ["keystone_alternate_es_recovery"]=165, - ["keystone_alternate_intelligence_bonus"]=166, - ["keystone_alternate_strength_bonus"]=167, - ["keystone_amanamus_defiance"]=168, + ["keystone_alternate_dexterity_bonus"]=162, + ["keystone_alternate_es_recovery"]=163, + ["keystone_alternate_intelligence_bonus"]=164, + ["keystone_alternate_strength_bonus"]=165, + ["keystone_amanamus_defiance"]=166, ["keystone_ancestral_bond"]=21, - ["keystone_auto_invocation"]=169, + ["keystone_auto_invocation"]=167, ["keystone_avatar_of_fire"]=19, - ["keystone_barbed_tips"]=170, - ["keystone_blind_monk"]=171, + ["keystone_barbed_tips"]=168, + ["keystone_blind_monk"]=169, ["keystone_blood_magic"]=29, - ["keystone_bulwark"]=114, - ["keystone_call_to_arms"]=172, + ["keystone_bulwark"]=116, + ["keystone_call_to_arms"]=170, ["keystone_chaos_inoculation"]=32, - ["keystone_charge_cycle"]=173, + ["keystone_charge_cycle"]=171, ["keystone_conduit"]=28, - ["keystone_crimson_assault"]=115, - ["keystone_crimson_dance"]=116, - ["keystone_dance_with_death"]=117, - ["keystone_disciple_of_kitava"]=174, - ["keystone_divine_flesh"]=175, - ["keystone_divine_shield"]=176, - ["keystone_druidic_rage"]=177, + ["keystone_crimson_assault"]=117, + ["keystone_crimson_dance"]=118, + ["keystone_dance_with_death"]=119, + ["keystone_disciple_of_kitava"]=172, + ["keystone_divine_flesh"]=173, + ["keystone_divine_shield"]=174, + ["keystone_druidic_rage"]=175, ["keystone_eldritch_battery"]=20, ["keystone_elemental_equilibrium"]=31, - ["keystone_elemental_overload"]=178, - ["keystone_emperors_heart"]=179, - ["keystone_eternal_youth"]=180, - ["keystone_fire_spells_become_chaos_spells"]=181, - ["keystone_focused_rage"]=182, - ["keystone_giants_blood"]=118, - ["keystone_glancing_blows"]=183, - ["keystone_heartstopper"]=184, - ["keystone_herald_of_doom"]=185, - ["keystone_hex_master"]=186, - ["keystone_hollow_palm_technique"]=187, - ["keystone_impale"]=188, - ["keystone_iron_grip"]=189, + ["keystone_elemental_overload"]=176, + ["keystone_emperors_heart"]=177, + ["keystone_eternal_youth"]=178, + ["keystone_fire_spells_become_chaos_spells"]=179, + ["keystone_focused_rage"]=180, + ["keystone_giants_blood"]=120, + ["keystone_glancing_blows"]=181, + ["keystone_heartstopper"]=182, + ["keystone_herald_of_doom"]=183, + ["keystone_hex_master"]=184, + ["keystone_hollow_palm_technique"]=185, + ["keystone_impale"]=186, + ["keystone_iron_grip"]=187, ["keystone_iron_reflexes"]=18, - ["keystone_iron_will"]=190, - ["keystone_kulemaks_sovereignty"]=191, - ["keystone_kurgals_ambition"]=192, - ["keystone_lord_of_the_wilds"]=193, - ["keystone_magnetic_charge"]=194, + ["keystone_iron_will"]=188, + ["keystone_kulemaks_sovereignty"]=189, + ["keystone_kurgals_ambition"]=190, + ["keystone_lord_of_the_wilds"]=191, + ["keystone_magnetic_charge"]=192, ["keystone_mana_shield"]=36, - ["keystone_mental_conditioning"]=195, + ["keystone_mental_conditioning"]=193, ["keystone_minion_instability"]=30, - ["keystone_natures_presence"]=196, - ["keystone_oasis"]=197, + ["keystone_natures_presence"]=194, + ["keystone_oasis"]=195, ["keystone_pain_attunement"]=26, ["keystone_point_blank"]=27, - ["keystone_precise_technique"]=198, - ["keystone_prismatic_bulwark"]=199, - ["keystone_quiet_might"]=200, - ["keystone_runebinder"]=201, - ["keystone_sacred_bastion"]=202, - ["keystone_secrets_of_suffering"]=203, - ["keystone_sharp_and_brittle"]=204, - ["keystone_supreme_prodigy"]=205, - ["keystone_tecrods_brutality"]=206, - ["keystone_tempered_by_war"]=207, - ["keystone_ulamans_vision"]=208, + ["keystone_precise_technique"]=196, + ["keystone_prismatic_bulwark"]=197, + ["keystone_quiet_might"]=198, + ["keystone_runebinder"]=199, + ["keystone_sacred_bastion"]=200, + ["keystone_secrets_of_suffering"]=201, + ["keystone_sharp_and_brittle"]=202, + ["keystone_supreme_prodigy"]=203, + ["keystone_tecrods_brutality"]=204, + ["keystone_tempered_by_war"]=205, + ["keystone_ulamans_vision"]=206, ["keystone_unwavering_stance"]=38, ["keystone_vaal_pact"]=33, - ["keystone_versatile_combatant"]=209, - ["keystone_veterans_awareness"]=210, - ["keystone_wildsurge_incantation"]=211, - ["keystone_zealots_oath"]=119, - ["leech_also_recovers_based_on_chaos_damage_as_well"]=120, - ["lich_offering_effect_+%_per_enemy_power"]=162, - ["life_leech_is_instant_for_empowered_attacks"]=121, - ["life_mastery_nearby_enemy_life_regeneration_rate_+%"]=122, - ["local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start"]=163, - ["lose_elemental_archone_on_reaching_full_infernal_flame"]=112, - ["mana_regeneration_rate_modifiers_apply_to_rage_regeneration"]=123, + ["keystone_versatile_combatant"]=207, + ["keystone_veterans_awareness"]=208, + ["keystone_wildsurge_incantation"]=209, + ["keystone_zealots_oath"]=121, + ["leech_also_recovers_based_on_chaos_damage_as_well"]=122, + ["lich_offering_effect_+%_per_enemy_power"]=160, + ["life_leech_is_instant_for_empowered_attacks"]=123, + ["life_mastery_nearby_enemy_life_regeneration_rate_+%"]=124, + ["local_jewel_display_number_of_allocated_passives_between_jewel_and_class_start"]=161, + ["lose_elemental_archone_on_reaching_full_infernal_flame"]=114, + ["mana_regeneration_rate_modifiers_apply_to_rage_regeneration"]=125, ["mana_regeneration_rate_per_minute_%"]=11, ["mana_regeneration_rate_per_minute_%_per_power_charge"]=12, ["max_endurance_charges"]=13, ["max_frenzy_charges"]=14, ["max_power_charges"]=15, - ["maximum_block_chance_override"]=124, - ["maximum_darkness_+%_per_capped_chaos_damage_resistance"]=125, - ["maximum_mana_per_50_evasion_rating_from_armour_items"]=126, - ["minion_non_skill_base_elemental_damage_%_to_gain_as_chaos"]=127, - ["movement_speed_penalty_+%_final_while_performing_action_if_green_support_count_highest"]=133, - ["movement_speed_penalty_+%_while_raising_shield"]=128, - ["multishot_critical_damage_bonus_+%_final"]=129, - ["natures_sustenance_added_rage_cost"]=130, - ["natures_sustenance_additional_maximum_rage"]=131, - ["no_barrage_projectile_spread"]=132, - ["no_self_critical_strike_multiplier_if_red_support_count_highest"]=133, + ["maximum_block_chance_override"]=126, + ["maximum_darkness_+%_per_capped_chaos_damage_resistance"]=127, + ["maximum_mana_per_50_evasion_rating_from_armour_items"]=128, + ["minion_non_skill_base_elemental_damage_%_to_gain_as_chaos"]=129, + ["movement_speed_penalty_+%_final_while_performing_action_if_green_support_count_highest"]=135, + ["movement_speed_penalty_+%_while_raising_shield"]=130, + ["multishot_critical_damage_bonus_+%_final"]=131, + ["natures_sustenance_added_rage_cost"]=132, + ["natures_sustenance_additional_maximum_rage"]=133, + ["no_barrage_projectile_spread"]=134, + ["no_self_critical_strike_multiplier_if_red_support_count_highest"]=135, ["number_of_additional_projectiles"]=44, - ["offering_skill_target_cullable_enemies_instead"]=135, - ["offerings_only_buff_you"]=136, - ["oracle_hits_eventually_crit_with_critical_strike_multiplier_+%_final_per_failed_roll"]=137, - ["oracle_maximum_life_+%_final"]=138, - ["oracle_maximum_mana_+%_final"]=139, + ["offering_skill_target_cullable_enemies_instead"]=137, + ["offerings_only_buff_you"]=138, + ["oracle_hits_eventually_crit_with_critical_strike_multiplier_+%_final_per_failed_roll"]=139, + ["oracle_maximum_life_+%_final"]=140, + ["oracle_maximum_mana_+%_final"]=141, parent="stat_descriptions", ["passive_can_be_allocated_without_connection"]=39, - ["physical_damage_+%"]=140, + ["physical_damage_+%"]=142, ["physical_damage_+%_per_frenzy_charge"]=16, - ["physical_spell_damage_can_pin_on_critical_hit"]=141, - ["pinned_enemies_cannot_crit"]=142, - ["pinned_enemies_cannot_evade_your_attacks"]=143, - ["projectile_attacks_always_chain_to_marked_enemies_with_%_increased_chaining_distance"]=144, - ["rage_gained_on_life_flask_use"]=145, - ["random_freeze_duration_+%_up_to_%"]=146, - ["remnants_you_create_reappear_X_ms_after_being_collected"]=147, - ["reservation_efficiency_+%_of_skills_per_socketed_talisman"]=148, - ["resist_all_elements_%_per_socketed_rune"]=149, + ["physical_spell_damage_can_pin_on_critical_hit"]=143, + ["pinned_enemies_cannot_crit"]=144, + ["pinned_enemies_cannot_evade_your_attacks"]=145, + ["projectile_attacks_always_chain_to_marked_enemies_with_%_increased_chaining_distance"]=146, + ["rage_gained_on_life_flask_use"]=147, + ["random_freeze_duration_+%_up_to_%"]=148, + ["remnants_you_create_reappear_X_ms_after_being_collected"]=149, ["resolute_technique"]=37, ["sacrificing_energy_shield_does_not_interrupt_recharge"]=150, ["shock_effect_+%"]=151, - ["skill_cost_+%_final_if_blue_support_count_highest"]=133, + ["skill_cost_+%_final_if_blue_support_count_highest"]=135, ["skill_cost_+%_per_socketed_soul_core"]=152, ["spells_sacrifice_%_of_your_energy_shield"]=153, ["staff_block_%"]=35, ["start_at_zero_energy_shield"]=154, ["strength_+%"]=6, ["tactician_grants_aura_to_deployed_totems"]=155, - ["tame_beast_can_target_unique_beasts"]=156, - ["tamed_beasts_randomly_possessed_every_x_ms"]=157, ["tribute_+%"]=4, - ["unlimited_banners_allowed"]=158, - ["unravelling_cycling_buff_every_x_ms"]=159, - ["weapon_damage_%_granted_to_companions_in_presence"]=160 + ["unlimited_banners_allowed"]=156, + ["unravelling_cycling_buff_every_x_ms"]=157, + ["weapon_damage_%_granted_to_companions"]=158 } \ 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 a6f53c42de..dd9acfc1cc 100644 --- a/src/Data/StatDescriptions/skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/skill_stat_descriptions.lua @@ -54,12 +54,23 @@ return { }, [11]={ stats={ - [1]="support_anticipation_rapid_fire_count" + [1]="consume_parry_debuff_on_hit_to_gain_X_frenzy_charges" } }, [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Requires {0} Glory to use" + } + }, stats={ - [1]="consume_parry_debuff_on_hit_to_gain_X_frenzy_charges" + [1]="active_skill_requires_X_glory" } }, [13]={ @@ -71,11 +82,11 @@ return { [2]="#" } }, - text="Requires {0} Glory to use" + text="This Skill's base cost is equal to {0}% of the base\ncosts of Socketed Skills" } }, stats={ - [1]="active_skill_requires_X_glory" + [1]="meta_skill_base_costs_equals_%_total_base_costs_from_all_socketed_skills" } }, [14]={ @@ -680,31 +691,6 @@ return { } }, [44]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Spell Repeats an additional time" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Spell Repeats an additional {0} times" - } - }, - stats={ - [1]="spell_repeat_count" - } - }, - [45]={ [1]={ [1]={ limit={ @@ -720,7 +706,7 @@ return { [1]="eye_of_winter_display_number_of_explosion_shards" } }, - [46]={ + [45]={ [1]={ [1]={ limit={ @@ -749,7 +735,7 @@ return { [1]="attack_speed_+%" } }, - [47]={ + [46]={ [1]={ [1]={ limit={ @@ -778,7 +764,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [48]={ + [47]={ [1]={ [1]={ limit={ @@ -807,7 +793,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [49]={ + [48]={ [1]={ [1]={ limit={ @@ -836,7 +822,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final" } }, - [50]={ + [49]={ [1]={ [1]={ limit={ @@ -865,7 +851,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final" } }, - [51]={ + [50]={ [1]={ [1]={ limit={ @@ -894,7 +880,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [52]={ + [51]={ [1]={ [1]={ limit={ @@ -910,7 +896,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [53]={ + [52]={ [1]={ [1]={ [1]={ @@ -930,7 +916,7 @@ return { [1]="sunder_wave_radius_+_per_step" } }, - [54]={ + [53]={ [1]={ [1]={ limit={ @@ -959,7 +945,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [55]={ + [54]={ [1]={ [1]={ limit={ @@ -988,7 +974,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [56]={ + [55]={ [1]={ [1]={ limit={ @@ -1017,7 +1003,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [57]={ + [56]={ [1]={ [1]={ limit={ @@ -1046,7 +1032,7 @@ return { [1]="base_cast_speed_+%" } }, - [58]={ + [57]={ [1]={ [1]={ limit={ @@ -1075,7 +1061,7 @@ return { [1]="support_multicast_cast_speed_+%_final" } }, - [59]={ + [58]={ [1]={ [1]={ [1]={ @@ -1095,7 +1081,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [60]={ + [59]={ [1]={ [1]={ limit={ @@ -1120,7 +1106,7 @@ return { [1]="global_chance_to_knockback_%" } }, - [61]={ + [60]={ [1]={ [1]={ limit={ @@ -1136,7 +1122,7 @@ return { [1]="active_skill_200%_increased_knockback_distance" } }, - [62]={ + [61]={ [1]={ [1]={ limit={ @@ -1165,7 +1151,7 @@ return { [1]="knockback_distance_+%" } }, - [63]={ + [62]={ [1]={ [1]={ limit={ @@ -1194,7 +1180,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [64]={ + [63]={ [1]={ [1]={ limit={ @@ -1210,7 +1196,7 @@ return { [1]="active_skill_base_radius_+" } }, - [65]={ + [64]={ [1]={ [1]={ limit={ @@ -1226,7 +1212,7 @@ return { [1]="active_skill_ground_consecration_radius_+" } }, - [66]={ + [65]={ [1]={ [1]={ limit={ @@ -1255,7 +1241,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [67]={ + [66]={ [1]={ [1]={ limit={ @@ -1284,7 +1270,7 @@ return { [1]="cyclone_area_of_effect_+%_per_additional_melee_range" } }, - [68]={ + [67]={ [1]={ [1]={ limit={ @@ -1313,7 +1299,7 @@ return { [1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range" } }, - [69]={ + [68]={ [1]={ [1]={ limit={ @@ -1342,7 +1328,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [70]={ + [69]={ [1]={ [1]={ limit={ @@ -1371,7 +1357,7 @@ return { [1]="active_skill_area_of_effect_+%_final" } }, - [71]={ + [70]={ [1]={ [1]={ limit={ @@ -1400,7 +1386,7 @@ return { [1]="support_concentrated_effect_skill_area_of_effect_+%_final" } }, - [72]={ + [71]={ [1]={ [1]={ limit={ @@ -1429,7 +1415,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [73]={ + [72]={ [1]={ [1]={ limit={ @@ -1458,7 +1444,7 @@ return { [1]="aura_effect_+%" } }, - [74]={ + [73]={ [1]={ [1]={ limit={ @@ -1487,7 +1473,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [75]={ + [74]={ [1]={ [1]={ limit={ @@ -1516,7 +1502,7 @@ return { [1]="curse_effect_duration" } }, - [76]={ + [75]={ [1]={ [1]={ limit={ @@ -1525,7 +1511,7 @@ return { [2]=1 } }, - text="Echoes once" + text="Echoes {0} time" }, [2]={ limit={ @@ -1541,7 +1527,7 @@ return { [1]="support_spell_echo_number_of_echo_cascades" } }, - [77]={ + [76]={ [1]={ [1]={ [1]={ @@ -1561,7 +1547,7 @@ return { [1]="buff_effect_duration" } }, - [78]={ + [77]={ [1]={ [1]={ limit={ @@ -1590,7 +1576,7 @@ return { [1]="secondary_buff_effect_duration" } }, - [79]={ + [78]={ [1]={ [1]={ limit={ @@ -1606,7 +1592,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [80]={ + [79]={ [1]={ [1]={ [1]={ @@ -1626,7 +1612,7 @@ return { [1]="projectile_ground_effect_duration" } }, - [81]={ + [80]={ [1]={ [1]={ [1]={ @@ -1646,7 +1632,7 @@ return { [1]="bleeding_skill_effect_duration" } }, - [82]={ + [81]={ [1]={ [1]={ [1]={ @@ -1666,7 +1652,7 @@ return { [1]="minion_duration" } }, - [83]={ + [82]={ [1]={ [1]={ [1]={ @@ -1686,7 +1672,7 @@ return { [1]="secondary_minion_duration" } }, - [84]={ + [83]={ [1]={ [1]={ [1]={ @@ -1706,7 +1692,7 @@ return { [1]="spectre_duration" } }, - [85]={ + [84]={ [1]={ [1]={ limit={ @@ -1735,7 +1721,7 @@ return { [1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range" } }, - [86]={ + [85]={ [1]={ [1]={ limit={ @@ -1764,7 +1750,7 @@ return { [1]="shield_charge_stun_duration_+%_maximum" } }, - [87]={ + [86]={ [1]={ [1]={ limit={ @@ -1793,7 +1779,7 @@ return { [1]="shield_charge_damage_+%_maximum" } }, - [88]={ + [87]={ [1]={ [1]={ limit={ @@ -1810,7 +1796,7 @@ return { [2]=0 } }, - text="Projectiles Pierce 1 target" + text="Projectiles Pierce {0} target" }, [2]={ limit={ @@ -1848,37 +1834,12 @@ return { } }, stats={ - [1]="projectile_number_of_targets_to_pierce", + [1]="display_projectile_number_of_targets_to_pierce", [2]="virtual_always_pierce", [3]="virtual_projectiles_cannot_pierce" } }, - [89]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Primary Projectile Pierces 1 Target" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Primary Projectile Pierces {0} Targets" - } - }, - stats={ - [1]="primary_projectile_display_targets_to_pierce" - } - }, - [90]={ + [88]={ [1]={ [1]={ limit={ @@ -1907,7 +1868,7 @@ return { [1]="projectile_speed_+%" } }, - [91]={ + [89]={ [1]={ [1]={ limit={ @@ -1941,7 +1902,7 @@ return { [2]="always_freeze" } }, - [92]={ + [90]={ [1]={ [1]={ limit={ @@ -1957,7 +1918,7 @@ return { [1]="base_all_damage_can_pin" } }, - [93]={ + [91]={ [1]={ [1]={ limit={ @@ -1973,7 +1934,7 @@ return { [1]="base_chance_to_shock_%" } }, - [94]={ + [92]={ [1]={ [1]={ limit={ @@ -2002,7 +1963,7 @@ return { [1]="freeze_duration_+%" } }, - [95]={ + [93]={ [1]={ [1]={ limit={ @@ -2031,7 +1992,7 @@ return { [1]="chill_duration_+%" } }, - [96]={ + [94]={ [1]={ [1]={ limit={ @@ -2060,7 +2021,7 @@ return { [1]="active_skill_chill_effect_+%_final" } }, - [97]={ + [95]={ [1]={ [1]={ limit={ @@ -2089,7 +2050,7 @@ return { [1]="chill_effect_+%" } }, - [98]={ + [96]={ [1]={ [1]={ limit={ @@ -2118,7 +2079,7 @@ return { [1]="shock_duration_+%" } }, - [99]={ + [97]={ [1]={ [1]={ limit={ @@ -2147,7 +2108,7 @@ return { [1]="ignite_duration_+%" } }, - [100]={ + [98]={ [1]={ [1]={ limit={ @@ -2176,7 +2137,7 @@ return { [1]="burn_damage_+%" } }, - [101]={ + [99]={ [1]={ [1]={ limit={ @@ -2205,7 +2166,7 @@ return { [1]="base_movement_velocity_+%" } }, - [102]={ + [100]={ [1]={ [1]={ limit={ @@ -2221,7 +2182,7 @@ return { [1]="no_movement_speed" } }, - [103]={ + [101]={ [1]={ [1]={ limit={ @@ -2250,7 +2211,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%" } }, - [104]={ + [102]={ [1]={ [1]={ limit={ @@ -2279,7 +2240,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%" } }, - [105]={ + [103]={ [1]={ [1]={ limit={ @@ -2308,7 +2269,7 @@ return { [1]="accuracy_rating" } }, - [106]={ + [104]={ [1]={ [1]={ limit={ @@ -2337,7 +2298,7 @@ return { [1]="accuracy_rating_+%" } }, - [107]={ + [105]={ [1]={ [1]={ [1]={ @@ -2357,7 +2318,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute" } }, - [108]={ + [106]={ [1]={ [1]={ [1]={ @@ -2377,7 +2338,7 @@ return { [1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute" } }, - [109]={ + [107]={ [1]={ [1]={ [1]={ @@ -2397,7 +2358,7 @@ return { [1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute" } }, - [110]={ + [108]={ [1]={ [1]={ limit={ @@ -2413,7 +2374,7 @@ return { [1]="add_frenzy_charge_on_kill" } }, - [111]={ + [109]={ [1]={ [1]={ limit={ @@ -2438,7 +2399,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [112]={ + [110]={ [1]={ [1]={ limit={ @@ -2467,7 +2428,7 @@ return { [1]="critical_strike_chance_+%" } }, - [113]={ + [111]={ [1]={ [1]={ limit={ @@ -2496,7 +2457,7 @@ return { [1]="skill_buff_grants_critical_strike_chance_+%" } }, - [114]={ + [112]={ [1]={ [1]={ limit={ @@ -2525,7 +2486,7 @@ return { [1]="support_controlled_destruction_critical_strike_chance_+%_final" } }, - [115]={ + [113]={ [1]={ [1]={ limit={ @@ -2554,7 +2515,7 @@ return { [1]="support_multiple_projectiles_critical_strike_chance_+%_final" } }, - [116]={ + [114]={ [1]={ [1]={ limit={ @@ -2583,7 +2544,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [117]={ + [115]={ [1]={ [1]={ limit={ @@ -2599,7 +2560,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_elusive" } }, - [118]={ + [116]={ [1]={ [1]={ limit={ @@ -2624,7 +2585,7 @@ return { [1]="apply_x_wither_on_hit" } }, - [119]={ + [117]={ [1]={ [1]={ [1]={ @@ -2657,7 +2618,7 @@ return { [1]="active_skill_withered_base_duration_ms" } }, - [120]={ + [118]={ [1]={ [1]={ limit={ @@ -2686,7 +2647,7 @@ return { [1]="life_gain_per_target" } }, - [121]={ + [119]={ [1]={ [1]={ limit={ @@ -2715,7 +2676,36 @@ return { [1]="minion_damage_+%" } }, - [122]={ + [120]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions deal {0}% increased Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions deal {0}% reduced Damage" + } + }, + stats={ + [1]="virtual_minion_damage_+%" + } + }, + [121]={ [1]={ [1]={ limit={ @@ -2744,7 +2734,7 @@ return { [1]="doubles_have_movement_speed_+%" } }, - [123]={ + [122]={ [1]={ [1]={ limit={ @@ -2773,7 +2763,7 @@ return { [1]="minion_attack_speed_+%" } }, - [124]={ + [123]={ [1]={ [1]={ limit={ @@ -2802,7 +2792,7 @@ return { [1]="minion_cast_speed_+%" } }, - [125]={ + [124]={ [1]={ [1]={ limit={ @@ -2831,7 +2821,7 @@ return { [1]="minion_movement_speed_+%" } }, - [126]={ + [125]={ [1]={ [1]={ limit={ @@ -2860,7 +2850,7 @@ return { [1]="active_skill_minion_movement_velocity_+%_final" } }, - [127]={ + [126]={ [1]={ [1]={ limit={ @@ -3005,7 +2995,7 @@ return { [3]="lightning_tendrils_channelled_larger_pulse_always_crit" } }, - [128]={ + [127]={ [1]={ [1]={ limit={ @@ -3021,7 +3011,7 @@ return { [1]="movement_velocity_cap" } }, - [129]={ + [128]={ [1]={ [1]={ limit={ @@ -3050,7 +3040,7 @@ return { [1]="active_skill_minion_life_+%_final" } }, - [130]={ + [129]={ [1]={ [1]={ limit={ @@ -3079,7 +3069,7 @@ return { [1]="active_skill_minion_energy_shield_+%_final" } }, - [131]={ + [130]={ [1]={ [1]={ limit={ @@ -3108,7 +3098,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [132]={ + [131]={ [1]={ [1]={ limit={ @@ -3124,7 +3114,7 @@ return { [1]="minion_maximum_life_+%" } }, - [133]={ + [132]={ [1]={ [1]={ limit={ @@ -3140,7 +3130,7 @@ return { [1]="keystone_minion_instability" } }, - [134]={ + [133]={ [1]={ [1]={ limit={ @@ -3169,7 +3159,7 @@ return { [1]="base_stun_duration_+%" } }, - [135]={ + [134]={ [1]={ [1]={ limit={ @@ -3185,7 +3175,7 @@ return { [1]="always_stun" } }, - [136]={ + [135]={ [1]={ [1]={ limit={ @@ -3201,7 +3191,7 @@ return { [1]="backstab_damage_+%" } }, - [137]={ + [136]={ [1]={ [1]={ [1]={ @@ -3221,7 +3211,7 @@ return { [1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb" } }, - [138]={ + [137]={ [1]={ [1]={ [1]={ @@ -3241,7 +3231,7 @@ return { [1]="intermediary_chaos_area_damage_to_deal_per_minute" } }, - [139]={ + [138]={ [1]={ [1]={ [1]={ @@ -3261,7 +3251,7 @@ return { [1]="intermediary_chaos_damage_to_deal_per_minute" } }, - [140]={ + [139]={ [1]={ [1]={ [1]={ @@ -3281,7 +3271,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [141]={ + [140]={ [1]={ [1]={ [1]={ @@ -3301,7 +3291,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [142]={ + [141]={ [1]={ [1]={ [1]={ @@ -3321,7 +3311,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [143]={ + [142]={ [1]={ [1]={ [1]={ @@ -3341,7 +3331,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [144]={ + [143]={ [1]={ [1]={ [1]={ @@ -3361,7 +3351,7 @@ return { [1]="intermediary_cold_area_damage_to_deal_per_minute" } }, - [145]={ + [144]={ [1]={ [1]={ [1]={ @@ -3381,7 +3371,7 @@ return { [1]="intermediary_cold_damage_to_deal_per_minute" } }, - [146]={ + [145]={ [1]={ [1]={ [1]={ @@ -3401,7 +3391,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [147]={ + [146]={ [1]={ [1]={ [1]={ @@ -3421,7 +3411,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [148]={ + [147]={ [1]={ [1]={ [1]={ @@ -3441,7 +3431,7 @@ return { [1]="intermediary_fire_area_damage_to_deal_per_minute" } }, - [149]={ + [148]={ [1]={ [1]={ [1]={ @@ -3461,7 +3451,7 @@ return { [1]="intermediary_fire_damage_to_deal_per_minute" } }, - [150]={ + [149]={ [1]={ [1]={ [1]={ @@ -3481,7 +3471,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [151]={ + [150]={ [1]={ [1]={ [1]={ @@ -3501,7 +3491,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [152]={ + [151]={ [1]={ [1]={ [1]={ @@ -3521,7 +3511,7 @@ return { [1]="secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [153]={ + [152]={ [1]={ [1]={ [1]={ @@ -3541,7 +3531,7 @@ return { [1]="monster_response_time_ms" } }, - [154]={ + [153]={ [1]={ [1]={ limit={ @@ -3570,7 +3560,7 @@ return { [1]="phase_run_melee_physical_damage_+%_final" } }, - [155]={ + [154]={ [1]={ [1]={ limit={ @@ -3599,7 +3589,7 @@ return { [1]="melee_physical_damage_+%" } }, - [156]={ + [155]={ [1]={ [1]={ [1]={ @@ -3632,7 +3622,7 @@ return { [1]="explosive_arrow_explosion_base_damage_+permyriad" } }, - [157]={ + [156]={ [1]={ [1]={ [1]={ @@ -3665,7 +3655,7 @@ return { [1]="oil_arrow_explosion_base_damage_+permyriad" } }, - [158]={ + [157]={ [1]={ [1]={ limit={ @@ -3686,7 +3676,7 @@ return { [2]="explosive_arrow_explosion_maximum_added_fire_damage" } }, - [159]={ + [158]={ [1]={ [1]={ limit={ @@ -3707,7 +3697,7 @@ return { [2]="oil_arrow_explosion_maximum_added_fire_damage" } }, - [160]={ + [159]={ [1]={ [1]={ limit={ @@ -3728,7 +3718,7 @@ return { [2]="maximum_fire_damage_per_fuse_arrow_orb" } }, - [161]={ + [160]={ [1]={ [1]={ limit={ @@ -3762,7 +3752,7 @@ return { [2]="explosive_arrow_maximum_bonus_explosion_radius" } }, - [162]={ + [161]={ [1]={ [1]={ limit={ @@ -3791,7 +3781,7 @@ return { [1]="base_stun_recovery_+%" } }, - [163]={ + [162]={ [1]={ [1]={ limit={ @@ -3820,7 +3810,7 @@ return { [1]="energy_shield_delay_-%" } }, - [164]={ + [163]={ [1]={ [1]={ limit={ @@ -3849,7 +3839,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [165]={ + [164]={ [1]={ [1]={ limit={ @@ -3865,7 +3855,7 @@ return { [1]="degen_effect_+%" } }, - [166]={ + [165]={ [1]={ [1]={ [1]={ @@ -3885,7 +3875,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [167]={ + [166]={ [1]={ [1]={ limit={ @@ -3901,7 +3891,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge" } }, - [168]={ + [167]={ [1]={ [1]={ limit={ @@ -3917,7 +3907,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5" } }, - [169]={ + [168]={ [1]={ [1]={ limit={ @@ -3933,7 +3923,7 @@ return { [1]="skill_effect_duration_+%_per_removable_frenzy_charge" } }, - [170]={ + [169]={ [1]={ [1]={ limit={ @@ -3949,7 +3939,7 @@ return { [1]="shield_block_%" } }, - [171]={ + [170]={ [1]={ [1]={ limit={ @@ -3965,7 +3955,7 @@ return { [1]="fire_shield_damage_threshold" } }, - [172]={ + [171]={ [1]={ [1]={ limit={ @@ -3994,7 +3984,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [173]={ + [172]={ [1]={ [1]={ limit={ @@ -4010,7 +4000,7 @@ return { [1]="base_resist_all_elements_%" } }, - [174]={ + [173]={ [1]={ [1]={ [1]={ @@ -4030,7 +4020,7 @@ return { [1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute" } }, - [175]={ + [174]={ [1]={ [1]={ [1]={ @@ -4050,7 +4040,7 @@ return { [1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute" } }, - [176]={ + [175]={ [1]={ [1]={ [1]={ @@ -4070,7 +4060,7 @@ return { [1]="self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [177]={ + [176]={ [1]={ [1]={ [1]={ @@ -4090,7 +4080,7 @@ return { [1]="self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute" } }, - [178]={ + [177]={ [1]={ [1]={ limit={ @@ -4119,7 +4109,7 @@ return { [1]="righteous_fire_spell_damage_+%_final" } }, - [179]={ + [178]={ [1]={ [1]={ limit={ @@ -4148,7 +4138,7 @@ return { [1]="vaal_righteous_fire_spell_damage_+%_final" } }, - [180]={ + [179]={ [1]={ [1]={ limit={ @@ -4177,7 +4167,7 @@ return { [1]="spell_damage_+%" } }, - [181]={ + [180]={ [1]={ [1]={ limit={ @@ -4193,7 +4183,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [182]={ + [181]={ [1]={ [1]={ [1]={ @@ -4285,7 +4275,7 @@ return { [2]="ignite_proliferation_delay_ms" } }, - [183]={ + [182]={ [1]={ [1]={ limit={ @@ -4301,7 +4291,7 @@ return { [1]="cannot_inflict_elemental_ailments" } }, - [184]={ + [183]={ [1]={ [1]={ limit={ @@ -4317,7 +4307,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [185]={ + [184]={ [1]={ [1]={ limit={ @@ -4333,7 +4323,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [186]={ + [185]={ [1]={ [1]={ limit={ @@ -4349,7 +4339,7 @@ return { [1]="keystone_point_blank" } }, - [187]={ + [186]={ [1]={ [1]={ limit={ @@ -4365,7 +4355,7 @@ return { [1]="virtual_skill_gains_intensity" } }, - [188]={ + [187]={ [1]={ [1]={ limit={ @@ -4381,7 +4371,7 @@ return { [1]="virtual_maximum_intensity" } }, - [189]={ + [188]={ [1]={ [1]={ [1]={ @@ -4406,7 +4396,7 @@ return { [2]="virtual_intensity_lost_on_teleport" } }, - [190]={ + [189]={ [1]={ [1]={ limit={ @@ -4422,7 +4412,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [191]={ + [190]={ [1]={ [1]={ limit={ @@ -4438,7 +4428,7 @@ return { [1]="totem_range" } }, - [192]={ + [191]={ [1]={ [1]={ limit={ @@ -4454,7 +4444,7 @@ return { [1]="skill_display_number_of_totems_allowed" } }, - [193]={ + [192]={ [1]={ [1]={ limit={ @@ -4479,7 +4469,7 @@ return { [1]="skill_display_number_of_traps_allowed" } }, - [194]={ + [193]={ [1]={ [1]={ limit={ @@ -4504,7 +4494,7 @@ return { [1]="skill_display_number_of_remote_mines_allowed" } }, - [195]={ + [194]={ [1]={ [1]={ [1]={ @@ -4524,7 +4514,7 @@ return { [1]="totem_duration" } }, - [196]={ + [195]={ [1]={ [1]={ limit={ @@ -4540,7 +4530,7 @@ return { [1]="totems_cannot_evade" } }, - [197]={ + [196]={ [1]={ [1]={ [1]={ @@ -4560,7 +4550,7 @@ return { [1]="trap_duration" } }, - [198]={ + [197]={ [1]={ [1]={ limit={ @@ -4589,7 +4579,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [199]={ + [198]={ [1]={ [1]={ limit={ @@ -4618,7 +4608,7 @@ return { [1]="mine_laying_speed_+%" } }, - [200]={ + [199]={ [1]={ [1]={ [1]={ @@ -4638,7 +4628,7 @@ return { [1]="mine_duration" } }, - [201]={ + [200]={ [1]={ [1]={ limit={ @@ -4667,7 +4657,7 @@ return { [1]="totem_life_+%" } }, - [202]={ + [201]={ [1]={ [1]={ limit={ @@ -4683,7 +4673,7 @@ return { [1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%" } }, - [203]={ + [202]={ [1]={ [1]={ [1]={ @@ -4703,7 +4693,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [204]={ + [203]={ [1]={ [1]={ [1]={ @@ -4723,7 +4713,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [205]={ + [204]={ [1]={ [1]={ limit={ @@ -4752,7 +4742,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [206]={ + [205]={ [1]={ [1]={ limit={ @@ -4768,7 +4758,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [207]={ + [206]={ [1]={ [1]={ limit={ @@ -4797,7 +4787,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [208]={ + [207]={ [1]={ [1]={ limit={ @@ -4813,7 +4803,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [209]={ + [208]={ [1]={ [1]={ limit={ @@ -4842,7 +4832,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [210]={ + [209]={ [1]={ [1]={ limit={ @@ -4858,7 +4848,7 @@ return { [1]="explosive_arrow_hit_damage_+%_final_per_stack" } }, - [211]={ + [210]={ [1]={ [1]={ limit={ @@ -4883,7 +4873,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [212]={ + [211]={ [1]={ [1]={ limit={ @@ -4912,7 +4902,7 @@ return { [1]="blind_duration_+%" } }, - [213]={ + [212]={ [1]={ [1]={ limit={ @@ -4928,7 +4918,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [214]={ + [213]={ [1]={ [1]={ limit={ @@ -4944,7 +4934,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [215]={ + [214]={ [1]={ [1]={ limit={ @@ -4960,7 +4950,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [216]={ + [215]={ [1]={ [1]={ limit={ @@ -4976,7 +4966,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [217]={ + [216]={ [1]={ [1]={ limit={ @@ -4992,7 +4982,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [218]={ + [217]={ [1]={ [1]={ limit={ @@ -5008,7 +4998,7 @@ return { [1]="skeletal_chains_no_minions_targets_self" } }, - [219]={ + [218]={ [1]={ [1]={ limit={ @@ -5024,7 +5014,7 @@ return { [1]="skeletal_chains_no_minions_damage_+%_final" } }, - [220]={ + [219]={ [1]={ [1]={ limit={ @@ -5040,23 +5030,7 @@ return { [1]="skeletal_chains_no_minions_radius_+" } }, - [221]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Projectiles Split towards {0} additional targets" - } - }, - stats={ - [1]="virtual_projectile_number_to_split" - } - }, - [222]={ + [220]={ [1]={ [1]={ limit={ @@ -5081,7 +5055,7 @@ return { [1]="virtual_number_of_forks_for_projectiles_final" } }, - [223]={ + [221]={ [1]={ [1]={ limit={ @@ -5128,7 +5102,7 @@ return { [2]="projectile_return_%_chance" } }, - [224]={ + [222]={ [1]={ [1]={ limit={ @@ -5157,7 +5131,7 @@ return { [1]="flamethrower_damage_+%_per_stage_final" } }, - [225]={ + [223]={ [1]={ [1]={ limit={ @@ -5186,7 +5160,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [226]={ + [224]={ [1]={ [1]={ limit={ @@ -5215,7 +5189,7 @@ return { [1]="blade_vortex_hit_rate_+%_per_blade" } }, - [227]={ + [225]={ [1]={ [1]={ limit={ @@ -5244,7 +5218,7 @@ return { [1]="blade_vortex_damage_+%_per_blade_final" } }, - [228]={ + [226]={ [1]={ [1]={ limit={ @@ -5273,7 +5247,7 @@ return { [1]="active_skill_movement_speed_+%_final" } }, - [229]={ + [227]={ [1]={ [1]={ [1]={ @@ -5293,7 +5267,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [230]={ + [228]={ [1]={ [1]={ [1]={ @@ -5313,7 +5287,7 @@ return { [1]="ice_shield_moving_mana_degeneration_per_minute" } }, - [231]={ + [229]={ [1]={ [1]={ limit={ @@ -5329,7 +5303,7 @@ return { [1]="physical_damage_taken_+" } }, - [232]={ + [230]={ [1]={ [1]={ limit={ @@ -5345,7 +5319,7 @@ return { [1]="fire_damage_taken_+" } }, - [233]={ + [231]={ [1]={ [1]={ limit={ @@ -5361,23 +5335,7 @@ return { [1]="virtual_melee_splash" } }, - [234]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Attack Repeats {0} times" - } - }, - stats={ - [1]="attack_repeat_count" - } - }, - [235]={ + [232]={ [1]={ [1]={ limit={ @@ -5402,7 +5360,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [236]={ + [233]={ [1]={ [1]={ limit={ @@ -5431,7 +5389,7 @@ return { [1]="support_multiple_attacks_melee_attack_speed_+%_final" } }, - [237]={ + [234]={ [1]={ [1]={ limit={ @@ -5447,7 +5405,7 @@ return { [1]="summon_fire_resistance_+" } }, - [238]={ + [235]={ [1]={ [1]={ limit={ @@ -5463,7 +5421,7 @@ return { [1]="summon_cold_resistance_+" } }, - [239]={ + [236]={ [1]={ [1]={ limit={ @@ -5479,7 +5437,7 @@ return { [1]="summon_lightning_resistance_+" } }, - [240]={ + [237]={ [1]={ [1]={ limit={ @@ -5495,7 +5453,7 @@ return { [1]="virtual_minion_elemental_resistance_%" } }, - [241]={ + [238]={ [1]={ [1]={ limit={ @@ -5520,7 +5478,7 @@ return { [1]="apply_linked_curses_on_hit_%" } }, - [242]={ + [239]={ [1]={ [1]={ limit={ @@ -5536,7 +5494,7 @@ return { [1]="reave_area_of_effect_+%_final_per_stage" } }, - [243]={ + [240]={ [1]={ [1]={ limit={ @@ -5583,7 +5541,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [244]={ + [241]={ [1]={ [1]={ [1]={ @@ -5603,7 +5561,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [245]={ + [242]={ [1]={ [1]={ limit={ @@ -5628,7 +5586,7 @@ return { [1]="cast_linked_spells_on_attack_crit_%" } }, - [246]={ + [243]={ [1]={ [1]={ limit={ @@ -5653,7 +5611,7 @@ return { [1]="flicker_strike_additional_flickers_from_power_charges" } }, - [247]={ + [244]={ [1]={ [1]={ limit={ @@ -5678,7 +5636,7 @@ return { [1]="cast_linked_spells_on_melee_kill_%" } }, - [248]={ + [245]={ [1]={ [1]={ limit={ @@ -5703,7 +5661,7 @@ return { [1]="melee_counterattack_trigger_on_hit_%" } }, - [249]={ + [246]={ [1]={ [1]={ limit={ @@ -5728,7 +5686,7 @@ return { [1]="attack_trigger_when_critically_hit_%" } }, - [250]={ + [247]={ [1]={ [1]={ limit={ @@ -5753,7 +5711,7 @@ return { [1]="melee_counterattack_trigger_on_block_%" } }, - [251]={ + [248]={ [1]={ [1]={ limit={ @@ -5769,7 +5727,7 @@ return { [1]="attack_unusable_if_triggerable" } }, - [252]={ + [249]={ [1]={ [1]={ limit={ @@ -5803,7 +5761,7 @@ return { [2]="animate_item_maximum_level_requirement" } }, - [253]={ + [250]={ [1]={ [1]={ limit={ @@ -5828,7 +5786,7 @@ return { [1]="attack_trigger_on_kill_%" } }, - [254]={ + [251]={ [1]={ [1]={ limit={ @@ -5853,7 +5811,7 @@ return { [1]="cast_on_attack_use_%" } }, - [255]={ + [252]={ [1]={ [1]={ limit={ @@ -5878,7 +5836,7 @@ return { [1]="cast_on_skill_use_%" } }, - [256]={ + [253]={ [1]={ [1]={ limit={ @@ -5903,7 +5861,7 @@ return { [1]="chance_to_cast_on_kill_%" } }, - [257]={ + [254]={ [1]={ [1]={ limit={ @@ -5928,7 +5886,7 @@ return { [1]="chance_to_cast_on_kill_%_target_self" } }, - [258]={ + [255]={ [1]={ [1]={ limit={ @@ -5953,7 +5911,7 @@ return { [1]="trigger_on_skill_use_from_chest_%" } }, - [259]={ + [256]={ [1]={ [1]={ limit={ @@ -5978,7 +5936,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge" } }, - [260]={ + [257]={ [1]={ [1]={ limit={ @@ -6003,7 +5961,7 @@ return { [1]="cast_on_any_damage_taken_%" } }, - [261]={ + [258]={ [1]={ [1]={ limit={ @@ -6028,7 +5986,7 @@ return { [1]="cast_when_hit_%" } }, - [262]={ + [259]={ [1]={ [1]={ limit={ @@ -6044,7 +6002,7 @@ return { [1]="cast_on_death_%" } }, - [263]={ + [260]={ [1]={ [1]={ limit={ @@ -6060,7 +6018,7 @@ return { [1]="chance_to_cast_on_rampage_tier_%" } }, - [264]={ + [261]={ [1]={ [1]={ limit={ @@ -6076,7 +6034,7 @@ return { [1]="cast_on_stunned_%" } }, - [265]={ + [262]={ [1]={ [1]={ limit={ @@ -6101,7 +6059,7 @@ return { [1]="spellslinger_trigger_on_wand_attack_%" } }, - [266]={ + [263]={ [1]={ [1]={ limit={ @@ -6126,7 +6084,7 @@ return { [1]="cast_on_gain_avians_flight_or_avians_might_%" } }, - [267]={ + [264]={ [1]={ [1]={ limit={ @@ -6151,7 +6109,7 @@ return { [1]="cast_on_hit_%" } }, - [268]={ + [265]={ [1]={ [1]={ limit={ @@ -6176,7 +6134,7 @@ return { [1]="cast_on_hit_if_cursed_%" } }, - [269]={ + [266]={ [1]={ [1]={ limit={ @@ -6192,7 +6150,7 @@ return { [1]="cast_on_lose_cats_stealth" } }, - [270]={ + [267]={ [1]={ [1]={ limit={ @@ -6217,7 +6175,7 @@ return { [1]="cast_on_melee_hit_if_cursed_%" } }, - [271]={ + [268]={ [1]={ [1]={ limit={ @@ -6242,7 +6200,7 @@ return { [1]="attack_trigger_on_hit_%" } }, - [272]={ + [269]={ [1]={ [1]={ limit={ @@ -6267,7 +6225,7 @@ return { [1]="attack_trigger_on_melee_hit_%" } }, - [273]={ + [270]={ [1]={ [1]={ limit={ @@ -6293,7 +6251,7 @@ return { [3]="cast_on_damage_taken_threshold" } }, - [274]={ + [271]={ [1]={ [1]={ limit={ @@ -6318,7 +6276,7 @@ return { [1]="chance_to_cast_when_your_trap_is_triggered_%" } }, - [275]={ + [272]={ [1]={ [1]={ limit={ @@ -6347,7 +6305,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [276]={ + [273]={ [1]={ [1]={ limit={ @@ -6376,7 +6334,7 @@ return { [1]="charged_blast_spell_damage_+%_final_per_stack" } }, - [277]={ + [274]={ [1]={ [1]={ [1]={ @@ -6396,7 +6354,7 @@ return { [1]="cast_while_channelling_time_ms" } }, - [278]={ + [275]={ [1]={ [1]={ limit={ @@ -6425,7 +6383,7 @@ return { [1]="curse_effect_+%" } }, - [279]={ + [276]={ [1]={ [1]={ limit={ @@ -6454,7 +6412,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [280]={ + [277]={ [1]={ [1]={ limit={ @@ -6483,7 +6441,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [281]={ + [278]={ [1]={ [1]={ limit={ @@ -6512,7 +6470,7 @@ return { [1]="support_spell_totem_cast_speed_+%_final" } }, - [282]={ + [279]={ [1]={ [1]={ limit={ @@ -6541,7 +6499,7 @@ return { [1]="support_attack_totem_attack_speed_+%_final" } }, - [283]={ + [280]={ [1]={ [1]={ limit={ @@ -6557,7 +6515,7 @@ return { [1]="atziri_unique_staff_storm_call_number_of_markers_to_place" } }, - [284]={ + [281]={ [1]={ [1]={ limit={ @@ -6573,7 +6531,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [285]={ + [282]={ [1]={ [1]={ limit={ @@ -6589,7 +6547,7 @@ return { [1]="desecrate_corpse_level" } }, - [286]={ + [283]={ [1]={ [1]={ limit={ @@ -6605,7 +6563,7 @@ return { [1]="unearth_corpse_level" } }, - [287]={ + [284]={ [1]={ [1]={ limit={ @@ -6621,7 +6579,7 @@ return { [1]="ice_nova_number_of_repeats" } }, - [288]={ + [285]={ [1]={ [1]={ limit={ @@ -6650,7 +6608,7 @@ return { [1]="ice_nova_radius_+%_per_repeat" } }, - [289]={ + [286]={ [1]={ [1]={ limit={ @@ -6679,7 +6637,7 @@ return { [1]="vaal_lightning_strike_beam_damage_+%_final" } }, - [290]={ + [287]={ [1]={ [1]={ limit={ @@ -6695,7 +6653,7 @@ return { [1]="global_always_hit" } }, - [291]={ + [288]={ [1]={ [1]={ limit={ @@ -6724,7 +6682,7 @@ return { [1]="damage_+%_final_to_stunned_enemies" } }, - [292]={ + [289]={ [1]={ [1]={ limit={ @@ -6753,7 +6711,7 @@ return { [1]="flame_whip_damage_+%_final_vs_burning_enemies" } }, - [293]={ + [290]={ [1]={ [1]={ limit={ @@ -6782,7 +6740,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [294]={ + [291]={ [1]={ [1]={ limit={ @@ -6798,7 +6756,7 @@ return { [1]="never_freeze" } }, - [295]={ + [292]={ [1]={ [1]={ limit={ @@ -6814,7 +6772,7 @@ return { [1]="lightning_trap_projectiles_leave_shocking_ground" } }, - [296]={ + [293]={ [1]={ [1]={ limit={ @@ -6830,7 +6788,7 @@ return { [1]="fire_damage_+%" } }, - [297]={ + [294]={ [1]={ [1]={ limit={ @@ -6846,7 +6804,7 @@ return { [1]="cold_damage_+%" } }, - [298]={ + [295]={ [1]={ [1]={ limit={ @@ -6867,7 +6825,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [299]={ + [296]={ [1]={ [1]={ limit={ @@ -6888,7 +6846,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [300]={ + [297]={ [1]={ [1]={ limit={ @@ -6904,7 +6862,7 @@ return { [1]="elemental_discharge_no_physical_chaos_damage" } }, - [301]={ + [298]={ [1]={ [1]={ limit={ @@ -6920,7 +6878,7 @@ return { [1]="elemental_hit_no_physical_chaos_damage" } }, - [302]={ + [299]={ [1]={ [1]={ limit={ @@ -6949,7 +6907,7 @@ return { [1]="static_strike_explosion_damage_+%_final" } }, - [303]={ + [300]={ [1]={ [1]={ limit={ @@ -6978,7 +6936,7 @@ return { [1]="base_arrow_speed_+%" } }, - [304]={ + [301]={ [1]={ [1]={ limit={ @@ -6994,7 +6952,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [305]={ + [302]={ [1]={ [1]={ [1]={ @@ -7036,7 +6994,7 @@ return { [1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies" } }, - [306]={ + [303]={ [1]={ [1]={ limit={ @@ -7065,7 +7023,7 @@ return { [1]="newshocknova_first_ring_damage_+%_final" } }, - [307]={ + [304]={ [1]={ [1]={ limit={ @@ -7081,7 +7039,7 @@ return { [1]="abyssal_cry_%_max_life_as_chaos_on_death" } }, - [308]={ + [305]={ [1]={ [1]={ limit={ @@ -7097,7 +7055,7 @@ return { [1]="infernal_cry_%_max_life_as_fire_on_death" } }, - [309]={ + [306]={ [1]={ [1]={ limit={ @@ -7122,7 +7080,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [310]={ + [307]={ [1]={ [1]={ limit={ @@ -7151,7 +7109,7 @@ return { [1]="fortify_duration_+%" } }, - [311]={ + [308]={ [1]={ [1]={ limit={ @@ -7180,7 +7138,7 @@ return { [1]="ice_crash_second_hit_damage_+%_final" } }, - [312]={ + [309]={ [1]={ [1]={ limit={ @@ -7235,7 +7193,7 @@ return { [2]="quality_display_ice_crash_is_gem" } }, - [313]={ + [310]={ [1]={ [1]={ limit={ @@ -7264,7 +7222,7 @@ return { [1]="fire_golem_grants_damage_+%" } }, - [314]={ + [311]={ [1]={ [1]={ limit={ @@ -7293,7 +7251,7 @@ return { [1]="ice_golem_grants_critical_strike_chance_+%" } }, - [315]={ + [312]={ [1]={ [1]={ limit={ @@ -7322,7 +7280,7 @@ return { [1]="ice_golem_grants_accuracy_+%" } }, - [316]={ + [313]={ [1]={ [1]={ limit={ @@ -7338,7 +7296,7 @@ return { [1]="chaos_golem_grants_additional_physical_damage_reduction_%" } }, - [317]={ + [314]={ [1]={ [1]={ [1]={ @@ -7358,7 +7316,7 @@ return { [1]="stone_golem_grants_base_life_regeneration_rate_per_minute" } }, - [318]={ + [315]={ [1]={ [1]={ limit={ @@ -7387,7 +7345,7 @@ return { [1]="lightning_golem_grants_attack_and_cast_speed_+%" } }, - [319]={ + [316]={ [1]={ [1]={ [1]={ @@ -7407,7 +7365,7 @@ return { [1]="virtual_firestorm_drop_burning_ground_duration_ms" } }, - [320]={ + [317]={ [1]={ [1]={ [1]={ @@ -7427,7 +7385,7 @@ return { [1]="virtual_firestorm_drop_chilled_ground_duration_ms" } }, - [321]={ + [318]={ [1]={ [1]={ limit={ @@ -7456,7 +7414,7 @@ return { [1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies" } }, - [322]={ + [319]={ [1]={ [1]={ [1]={ @@ -7476,7 +7434,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [323]={ + [320]={ [1]={ [1]={ limit={ @@ -7505,7 +7463,7 @@ return { [1]="damage_+%" } }, - [324]={ + [321]={ [1]={ [1]={ limit={ @@ -7534,7 +7492,7 @@ return { [1]="fire_nova_damage_+%_per_repeat_final" } }, - [325]={ + [322]={ [1]={ [1]={ limit={ @@ -7563,7 +7521,7 @@ return { [1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies" } }, - [326]={ + [323]={ [1]={ [1]={ limit={ @@ -7592,7 +7550,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [327]={ + [324]={ [1]={ [1]={ limit={ @@ -7608,7 +7566,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [328]={ + [325]={ [1]={ [1]={ limit={ @@ -7637,7 +7595,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [329]={ + [326]={ [1]={ [1]={ limit={ @@ -7666,7 +7624,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [330]={ + [327]={ [1]={ [1]={ limit={ @@ -7682,7 +7640,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [331]={ + [328]={ [1]={ [1]={ limit={ @@ -7698,7 +7656,7 @@ return { [1]="elemental_strike_physical_damage_%_to_convert" } }, - [332]={ + [329]={ [1]={ [1]={ limit={ @@ -7714,23 +7672,27 @@ return { [1]="melee_weapon_range_+" } }, - [333]={ + [330]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range" + text="{0:+d} metres to Melee Strike Range" } }, stats={ [1]="melee_range_+" } }, - [334]={ + [331]={ [1]={ [1]={ limit={ @@ -7759,7 +7721,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [335]={ + [332]={ [1]={ [1]={ limit={ @@ -7775,7 +7737,7 @@ return { [1]="phase_through_objects" } }, - [336]={ + [333]={ [1]={ [1]={ limit={ @@ -7804,7 +7766,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [337]={ + [334]={ [1]={ [1]={ limit={ @@ -7833,7 +7795,7 @@ return { [1]="quake_slam_fully_charged_explosion_damage_+%_final" } }, - [338]={ + [335]={ [1]={ [1]={ limit={ @@ -7849,7 +7811,7 @@ return { [1]="maximum_number_of_spinning_blades" } }, - [339]={ + [336]={ [1]={ [1]={ limit={ @@ -7878,7 +7840,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [340]={ + [337]={ [1]={ [1]={ limit={ @@ -7903,7 +7865,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [341]={ + [338]={ [1]={ [1]={ limit={ @@ -7928,7 +7890,7 @@ return { [1]="skill_buff_grants_chance_to_poison_%" } }, - [342]={ + [339]={ [1]={ [1]={ limit={ @@ -7957,7 +7919,7 @@ return { [1]="damage_over_time_+%" } }, - [343]={ + [340]={ [1]={ [1]={ limit={ @@ -7986,7 +7948,7 @@ return { [1]="bladefall_damage_per_stage_+%_final" } }, - [344]={ + [341]={ [1]={ [1]={ limit={ @@ -8002,7 +7964,7 @@ return { [1]="global_poison_on_hit" } }, - [345]={ + [342]={ [1]={ [1]={ limit={ @@ -8031,7 +7993,7 @@ return { [1]="base_poison_duration_+%" } }, - [346]={ + [343]={ [1]={ [1]={ limit={ @@ -8060,7 +8022,7 @@ return { [1]="aftershock_area_of_effect_+%_final" } }, - [347]={ + [344]={ [1]={ [1]={ limit={ @@ -8089,7 +8051,7 @@ return { [1]="cyclone_first_hit_damage_+%_final" } }, - [348]={ + [345]={ [1]={ [1]={ limit={ @@ -8118,7 +8080,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [349]={ + [346]={ [1]={ [1]={ [1]={ @@ -8138,7 +8100,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [350]={ + [347]={ [1]={ [1]={ limit={ @@ -8167,7 +8129,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [351]={ + [348]={ [1]={ [1]={ limit={ @@ -8196,7 +8158,7 @@ return { [1]="skill_buff_effect_+%" } }, - [352]={ + [349]={ [1]={ [1]={ limit={ @@ -8225,7 +8187,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance" } }, - [353]={ + [350]={ [1]={ [1]={ limit={ @@ -8254,7 +8216,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance" } }, - [354]={ + [351]={ [1]={ [1]={ limit={ @@ -8283,7 +8245,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance" } }, - [355]={ + [352]={ [1]={ [1]={ limit={ @@ -8312,7 +8274,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance" } }, - [356]={ + [353]={ [1]={ [1]={ limit={ @@ -8341,7 +8303,7 @@ return { [1]="corrosive_shroud_poison_effect_+%_final_while_accumulating_poison" } }, - [357]={ + [354]={ [1]={ [1]={ limit={ @@ -8357,7 +8319,7 @@ return { [1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second" } }, - [358]={ + [355]={ [1]={ [1]={ limit={ @@ -8386,7 +8348,7 @@ return { [1]="plague_bearer_poison_effect_+%_while_infecting" } }, - [359]={ + [356]={ [1]={ [1]={ limit={ @@ -8415,7 +8377,7 @@ return { [1]="base_mana_leech_rate_+%" } }, - [360]={ + [357]={ [1]={ [1]={ limit={ @@ -8431,7 +8393,7 @@ return { [1]="global_cannot_crit" } }, - [361]={ + [358]={ [1]={ [1]={ limit={ @@ -8460,7 +8422,7 @@ return { [1]="active_skill_projectile_damage_+%_final" } }, - [362]={ + [359]={ [1]={ [1]={ limit={ @@ -8515,7 +8477,7 @@ return { [2]="quality_display_active_skill_returning_damage_is_gem" } }, - [363]={ + [360]={ [1]={ [1]={ limit={ @@ -8544,7 +8506,7 @@ return { [1]="groundslam_damage_to_close_targets_+%_final" } }, - [364]={ + [361]={ [1]={ [1]={ limit={ @@ -8573,7 +8535,7 @@ return { [1]="snapping_adder_released_projectile_damage_+%_final" } }, - [365]={ + [362]={ [1]={ [1]={ limit={ @@ -8589,7 +8551,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [366]={ + [363]={ [1]={ [1]={ limit={ @@ -8618,7 +8580,7 @@ return { [1]="active_skill_damage_over_time_from_projectile_hits_+%_final" } }, - [367]={ + [364]={ [1]={ [1]={ [1]={ @@ -8651,7 +8613,7 @@ return { [1]="support_cruelty_duration_ms" } }, - [368]={ + [365]={ [1]={ }, stats={ @@ -8659,7 +8621,7 @@ return { [2]="support_ruthless_big_hit_stun_damage_+%_final" } }, - [369]={ + [366]={ [1]={ [1]={ limit={ @@ -8675,7 +8637,7 @@ return { [1]="berserk_minimum_rage" } }, - [370]={ + [367]={ [1]={ [1]={ limit={ @@ -8704,7 +8666,7 @@ return { [1]="berserk_attack_damage_+%_final" } }, - [371]={ + [368]={ [1]={ [1]={ limit={ @@ -8733,7 +8695,7 @@ return { [1]="berserk_attack_speed_+%_final" } }, - [372]={ + [369]={ [1]={ [1]={ limit={ @@ -8762,7 +8724,7 @@ return { [1]="berserk_movement_speed_+%_final" } }, - [373]={ + [370]={ [1]={ [1]={ limit={ @@ -8791,7 +8753,7 @@ return { [1]="berserk_base_damage_taken_+%_final" } }, - [374]={ + [371]={ [1]={ [1]={ [1]={ @@ -8811,7 +8773,7 @@ return { [1]="virtual_berserk_hundred_times_rage_loss_per_second" } }, - [375]={ + [372]={ [1]={ [1]={ limit={ @@ -8827,21 +8789,21 @@ return { [1]="berserk_rage_loss_+%_per_second" } }, - [376]={ + [373]={ [1]={ }, stats={ [1]="ancestral_call_spirit_strike_interval_ms" } }, - [377]={ + [374]={ [1]={ }, stats={ [1]="ancestral_slam_interval_duration" } }, - [378]={ + [375]={ [1]={ [1]={ limit={ @@ -8870,7 +8832,7 @@ return { [1]="support_ancestral_slam_big_hit_hit_damage_+%_final" } }, - [379]={ + [376]={ [1]={ [1]={ limit={ @@ -8899,7 +8861,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [380]={ + [377]={ [1]={ [1]={ limit={ @@ -8915,7 +8877,27 @@ return { [1]="tornado_damage_absorbed_%" } }, - [381]={ + [378]={ + [1]={ + [1]={ + [1]={ + k="multiplicative_damage_modifier", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Conjures a spirit warrior every {0}% of socketed Attack time" + } + }, + stats={ + [1]="ancestral_warrior_totem_total_use_time_%_as_idle_after_animation" + } + }, + [379]={ [1]={ [1]={ limit={ @@ -8931,7 +8913,36 @@ return { [1]="totem_elemental_resistance_%" } }, - [382]={ + [380]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Totem gains +{0}% to Chaos Resistance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Totem loses -{0}% to Chaos Resistance" + } + }, + stats={ + [1]="totem_chaos_resistance_%" + } + }, + [381]={ [1]={ [1]={ limit={ @@ -8947,7 +8958,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [383]={ + [382]={ [1]={ [1]={ limit={ @@ -8963,7 +8974,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [384]={ + [383]={ [1]={ [1]={ limit={ @@ -8979,7 +8990,7 @@ return { [1]="deal_no_non_cold_damage" } }, - [385]={ + [384]={ [1]={ [1]={ limit={ @@ -8995,7 +9006,43 @@ return { [1]="cold_damage_cannot_freeze" } }, + [385]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Crush duration on Hit@{0}s" + } + }, + stats={ + [1]="support_knights_ferocity_crush_on_hit_ms" + } + }, [386]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Physical taken by Crushed targets Breaks Armour@{0}%" + } + }, + stats={ + [1]="crushed_target_%_physical_damage_taken_as_armour_break" + } + }, + [387]={ [1]={ [1]={ limit={ @@ -9011,7 +9058,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [387]={ + [388]={ [1]={ [1]={ limit={ @@ -9040,7 +9087,7 @@ return { [1]="vaal_firestorm_gem_explosion_area_of_effect_+%_final" } }, - [388]={ + [389]={ [1]={ [1]={ limit={ @@ -9056,7 +9103,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [389]={ + [390]={ [1]={ [1]={ limit={ @@ -9072,7 +9119,7 @@ return { [1]="absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%" } }, - [390]={ + [391]={ [1]={ [1]={ limit={ @@ -9101,7 +9148,7 @@ return { [1]="accuracy_range_penalty_+%" } }, - [391]={ + [392]={ [1]={ [1]={ limit={ @@ -9130,7 +9177,7 @@ return { [1]="active_skill_added_damage_+%_final" } }, - [392]={ + [393]={ [1]={ [1]={ [1]={ @@ -9150,7 +9197,7 @@ return { [1]="active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [393]={ + [394]={ [1]={ [1]={ limit={ @@ -9179,7 +9226,7 @@ return { [1]="active_skill_area_damage_+%_final" } }, - [394]={ + [395]={ [1]={ [1]={ limit={ @@ -9208,7 +9255,7 @@ return { [1]="active_skill_area_of_effect_+%_final_per_endurance_charge" } }, - [395]={ + [396]={ [1]={ [1]={ limit={ @@ -9237,7 +9284,7 @@ return { [1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt" } }, - [396]={ + [397]={ [1]={ [1]={ limit={ @@ -9266,7 +9313,7 @@ return { [1]="active_skill_attack_speed_+%_final_while_dual_wielding" } }, - [397]={ + [398]={ [1]={ [1]={ limit={ @@ -9282,7 +9329,7 @@ return { [1]="active_skill_base_area_length_+" } }, - [398]={ + [399]={ [1]={ [1]={ [1]={ @@ -9302,7 +9349,7 @@ return { [1]="active_skill_base_slow_debuff_movement_speed_+%_final" } }, - [399]={ + [400]={ [1]={ [1]={ limit={ @@ -9331,7 +9378,7 @@ return { [1]="active_skill_bleeding_effect_+%_final_in_blood_stance" } }, - [400]={ + [401]={ [1]={ [1]={ limit={ @@ -9360,14 +9407,14 @@ return { [1]="active_skill_bleeding_effect_+%_final" } }, - [401]={ + [402]={ [1]={ }, stats={ [1]="active_skill_can_overload" } }, - [402]={ + [403]={ [1]={ [1]={ limit={ @@ -9396,7 +9443,7 @@ return { [1]="active_skill_chaos_damage_+%_final" } }, - [403]={ + [404]={ [1]={ [1]={ limit={ @@ -9425,7 +9472,7 @@ return { [1]="active_skill_chill_as_though_damage_+%_final" } }, - [404]={ + [405]={ [1]={ [1]={ limit={ @@ -9441,7 +9488,7 @@ return { [1]="active_skill_compounding_ignites" } }, - [405]={ + [406]={ [1]={ [1]={ limit={ @@ -9470,7 +9517,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [406]={ + [407]={ [1]={ [1]={ limit={ @@ -9499,7 +9546,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final" } }, - [407]={ + [408]={ [1]={ [1]={ limit={ @@ -9528,7 +9575,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final" } }, - [408]={ + [409]={ [1]={ [1]={ limit={ @@ -9544,7 +9591,7 @@ return { [1]="active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [409]={ + [410]={ [1]={ [1]={ limit={ @@ -9573,7 +9620,7 @@ return { [1]="active_skill_damage_+%_final_against_heavy_stunned_enemies" } }, - [410]={ + [411]={ [1]={ [1]={ limit={ @@ -9624,7 +9671,7 @@ return { [2]="quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem" } }, - [411]={ + [412]={ [1]={ [1]={ limit={ @@ -9653,7 +9700,7 @@ return { [1]="active_skill_damage_+%_final_vs_unique_enemies" } }, - [412]={ + [413]={ [1]={ [1]={ limit={ @@ -9682,7 +9729,7 @@ return { [1]="active_skill_damage_+%_final_while_dual_wielding" } }, - [413]={ + [414]={ [1]={ [1]={ limit={ @@ -9698,7 +9745,7 @@ return { [1]="active_skill_damage_+%_final_against_enemies_on_full_life" } }, - [414]={ + [415]={ [1]={ [1]={ limit={ @@ -9727,7 +9774,7 @@ return { [1]="active_skill_damage_+%_final_per_time_chained" } }, - [415]={ + [416]={ [1]={ [1]={ limit={ @@ -9756,7 +9803,7 @@ return { [1]="active_skill_damage_+%_final_vs_burning_enemies" } }, - [416]={ + [417]={ [1]={ [1]={ limit={ @@ -9785,7 +9832,7 @@ return { [1]="active_skill_damage_+%_final_vs_chilled_enemies" } }, - [417]={ + [418]={ [1]={ [1]={ limit={ @@ -9814,7 +9861,7 @@ return { [1]="active_skill_damage_+%_final_vs_fully_broken_armour" } }, - [418]={ + [419]={ [1]={ [1]={ limit={ @@ -9843,7 +9890,36 @@ return { [1]="active_skill_damage_+%_when_cast_on_frostbolt" } }, - [419]={ + [420]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Damaging Ailments inflicted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Damaging Ailments inflicted" + } + }, + stats={ + [1]="active_skill_damaging_ailment_effect_+%_final" + } + }, + [421]={ [1]={ [1]={ limit={ @@ -9872,7 +9948,23 @@ return { [1]="active_skill_electrocutes_as_though_dealt_damage_+%_final" } }, - [420]={ + [422]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Generates {0}% of Monster Power as Glory for this Skill on dealing Chaos Hit damage to an enemy or inflicting a Chaos damage over time Debuff on an enemy" + } + }, + stats={ + [1]="active_skill_generates_mp_%_glory_per_chaos_hit" + } + }, + [423]={ [1]={ [1]={ limit={ @@ -9888,7 +9980,7 @@ return { [1]="active_skill_has_%_standard_scaling_attack_damage" } }, - [421]={ + [424]={ [1]={ [1]={ limit={ @@ -9926,7 +10018,7 @@ return { [1]="active_skill_hit_damage_freeze_multiplier_+%_final" } }, - [422]={ + [425]={ [1]={ [1]={ limit={ @@ -9964,7 +10056,7 @@ return { [1]="active_skill_hit_damage_stun_multiplier_+%_final" } }, - [423]={ + [426]={ [1]={ [1]={ limit={ @@ -9993,7 +10085,7 @@ return { [1]="active_skill_if_used_through_frostbolt_damage_+%_final" } }, - [424]={ + [427]={ [1]={ [1]={ limit={ @@ -10022,7 +10114,7 @@ return { [1]="active_skill_ignite_chance_+%_final" } }, - [425]={ + [428]={ [1]={ [1]={ limit={ @@ -10051,7 +10143,7 @@ return { [1]="active_skill_ignite_duration_+%_final" } }, - [426]={ + [429]={ [1]={ [1]={ limit={ @@ -10080,7 +10172,7 @@ return { [1]="active_skill_ignite_effect_+%_final" } }, - [427]={ + [430]={ [1]={ [1]={ [1]={ @@ -10113,7 +10205,7 @@ return { [1]="active_skill_ignite_proliferation_radius" } }, - [428]={ + [431]={ [1]={ [1]={ limit={ @@ -10129,7 +10221,7 @@ return { [1]="active_skill_knockback_distance_+%_final" } }, - [429]={ + [432]={ [1]={ [1]={ limit={ @@ -10158,7 +10250,7 @@ return { [1]="active_skill_lightning_damage_+%_final" } }, - [430]={ + [433]={ [1]={ [1]={ limit={ @@ -10187,7 +10279,7 @@ return { [1]="active_skill_minion_hit_damage_stun_multiplier_+%_final" } }, - [431]={ + [434]={ [1]={ [1]={ limit={ @@ -10203,7 +10295,7 @@ return { [1]="active_skill_never_freeze_shock_ignite" } }, - [432]={ + [435]={ [1]={ [1]={ limit={ @@ -10254,7 +10346,7 @@ return { [2]="quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem" } }, - [433]={ + [436]={ [1]={ [1]={ limit={ @@ -10287,7 +10379,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [434]={ + [437]={ [1]={ [1]={ limit={ @@ -10316,7 +10408,7 @@ return { [1]="active_skill_projectile_damage_+%_final_for_each_remaining_chain" } }, - [435]={ + [438]={ [1]={ [1]={ limit={ @@ -10345,7 +10437,7 @@ return { [1]="active_skill_projectile_damage_+%_final_if_pierced_enemy" } }, - [436]={ + [439]={ [1]={ [1]={ limit={ @@ -10374,7 +10466,7 @@ return { [1]="active_skill_reload_speed_+%_final" } }, - [437]={ + [440]={ [1]={ [1]={ [1]={ @@ -10412,7 +10504,7 @@ return { [2]="quality_display_active_skill_required_number_of_combo_stacks_is_gem" } }, - [438]={ + [441]={ [1]={ [1]={ limit={ @@ -10441,7 +10533,7 @@ return { [1]="active_skill_shock_as_though_damage_+%_final" } }, - [439]={ + [442]={ [1]={ [1]={ limit={ @@ -10466,7 +10558,7 @@ return { [1]="active_skill_shock_chance_+%_final" } }, - [440]={ + [443]={ [1]={ [1]={ limit={ @@ -10495,7 +10587,7 @@ return { [1]="active_skill_shock_duration_+%_final" } }, - [441]={ + [444]={ [1]={ [1]={ limit={ @@ -10524,7 +10616,7 @@ return { [1]="active_skill_shock_effect_+%_final" } }, - [442]={ + [445]={ [1]={ [1]={ limit={ @@ -10553,7 +10645,7 @@ return { [1]="active_skill_stun_threshold_+%_while_performing_action" } }, - [443]={ + [446]={ [1]={ [1]={ limit={ @@ -10578,7 +10670,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [444]={ + [447]={ [1]={ [1]={ limit={ @@ -10594,7 +10686,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [445]={ + [448]={ [1]={ [1]={ limit={ @@ -10610,7 +10702,7 @@ return { [1]="additional_block_chance_against_projectiles_%_per_steel_charge" } }, - [446]={ + [449]={ [1]={ [1]={ limit={ @@ -10626,14 +10718,23 @@ return { [1]="additional_chain_chance_%" } }, - [447]={ + [450]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to build an additional Combo on Hit" + } }, stats={ [1]="additional_combo_gain_chance_%" } }, - [448]={ + [451]={ [1]={ [1]={ [1]={ @@ -10653,7 +10754,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [449]={ + [452]={ [1]={ [1]={ [1]={ @@ -10673,7 +10774,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [450]={ + [453]={ [1]={ [1]={ limit={ @@ -10720,7 +10821,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [451]={ + [454]={ [1]={ [1]={ limit={ @@ -10736,28 +10837,65 @@ return { [1]="additive_thorns_damage_modifiers_apply_to_attack_damage" } }, - [452]={ + [455]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" - }, - [2]={ + } + }, + text="Grants {0}% increased Attack speed during any Life Flask Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Grants {0}% reduced Attack speed during any Life Flask Effect" + } + }, + stats={ + [1]="alchemists_boon_attack_speed_granted_+%_during_life_flask" + } + }, + [456]={ + [1]={ + [1]={ + limit={ + [1]={ [1]=1, [2]="#" } }, - text="Burning Ground deals {0}% of the Fire Damage per Second of strongest Ignite on Enemy\nCaustic Ground deals {1}% of the Chaos Damage per Second of strongest Poison on Enemy\nCan create each Ground effect no more than once each second" + text="Grants {0}% increased cast speed during any Mana Flask Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Grants {0}% reduced cast speed during any Mana Flask Effect" } }, stats={ - [1]="alchemists_mark_igniter_creates_burning_ground_%_ignite_damage", - [2]="alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage" + [1]="alchemists_boon_cast_speed_granted_+%_during_mana_flask" } }, - [453]={ + [457]={ [1]={ [1]={ limit={ @@ -10773,7 +10911,7 @@ return { [1]="all_damage_can_ignite_freeze_shock" } }, - [454]={ + [458]={ [1]={ [1]={ limit={ @@ -10789,7 +10927,7 @@ return { [1]="all_damage_can_sap" } }, - [455]={ + [459]={ [1]={ [1]={ limit={ @@ -10805,7 +10943,23 @@ return { [1]="already_split_if_no_steel_shards" } }, - [456]={ + [460]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Chain from any number of Cursed targets" + } + }, + stats={ + [1]="always_chain_from_cursed_enemies" + } + }, + [461]={ [1]={ [1]={ limit={ @@ -10814,14 +10968,14 @@ return { [2]="#" } }, - text="Always Chains from Shocked enemies" + text="Can Chain from any number of Shocked targets" } }, stats={ [1]="always_chain_from_shocked_enemies" } }, - [457]={ + [462]={ [1]={ [1]={ limit={ @@ -10837,7 +10991,7 @@ return { [1]="always_crit" } }, - [458]={ + [463]={ [1]={ [1]={ limit={ @@ -10853,7 +11007,7 @@ return { [1]="always_ignite" } }, - [459]={ + [464]={ [1]={ [1]={ limit={ @@ -10869,7 +11023,7 @@ return { [1]="always_pierce" } }, - [460]={ + [465]={ [1]={ [1]={ limit={ @@ -10885,7 +11039,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [461]={ + [466]={ [1]={ [1]={ limit={ @@ -10914,7 +11068,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [462]={ + [467]={ [1]={ [1]={ limit={ @@ -10943,14 +11097,14 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [463]={ + [468]={ [1]={ }, stats={ [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [464]={ + [469]={ [1]={ [1]={ limit={ @@ -10979,7 +11133,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [465]={ + [470]={ [1]={ [1]={ limit={ @@ -10995,7 +11149,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [466]={ + [471]={ [1]={ [1]={ [1]={ @@ -11015,7 +11169,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [467]={ + [472]={ [1]={ [1]={ limit={ @@ -11031,7 +11185,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [468]={ + [473]={ [1]={ [1]={ limit={ @@ -11047,7 +11201,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [469]={ + [474]={ [1]={ [1]={ limit={ @@ -11063,7 +11217,7 @@ return { [1]="apply_linked_curses_with_dark_ritual" } }, - [470]={ + [475]={ [1]={ [1]={ limit={ @@ -11092,7 +11246,7 @@ return { [1]="arc_chain_hit_damage_+%_final" } }, - [471]={ + [476]={ [1]={ [1]={ limit={ @@ -11108,7 +11262,7 @@ return { [1]="arc_chains_gained_from_infusion_consumption" } }, - [472]={ + [477]={ [1]={ [1]={ limit={ @@ -11137,7 +11291,7 @@ return { [1]="arc_damage_+%_final_from_infusion_consumption" } }, - [473]={ + [478]={ [1]={ [1]={ limit={ @@ -11166,7 +11320,7 @@ return { [1]="arc_damage_+%_final_per_chain" } }, - [474]={ + [479]={ [1]={ [1]={ limit={ @@ -11182,7 +11336,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [475]={ + [480]={ [1]={ [1]={ limit={ @@ -11198,7 +11352,7 @@ return { [1]="arcane_cloak_damage_absorbed_%" } }, - [476]={ + [481]={ [1]={ [1]={ [1]={ @@ -11218,7 +11372,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [477]={ + [482]={ [1]={ [1]={ limit={ @@ -11234,7 +11388,97 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage" } }, - [478]={ + [483]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grants {0}% more Physical and Chaos damage" + } + }, + stats={ + [1]="archon_of_chayula_physical_and_chaos_damage_+%_final" + } + }, + [484]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grants {0}% chance to Wither enemies for 4 seconds on Hit" + } + }, + stats={ + [1]="archon_of_chayula_withered_on_hit_for_4_seconds_%_chance" + } + }, + [485]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Trigger Chayula's Will every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger Chayula's Will every {0} seconds" + } + }, + stats={ + [1]="archon_of_chayula_spawn_chaos_tornado_interval_ms" + } + }, + [486]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Armour per Stage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Armour per Stage" + } + }, + stats={ + [1]="arctic_armour_armour_granted_+%_per_stage" + } + }, + [487]={ [1]={ [1]={ [1]={ @@ -11254,7 +11498,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [479]={ + [488]={ [1]={ [1]={ limit={ @@ -11283,7 +11527,7 @@ return { [1]="arctic_armour_fire_damage_taken_+%_final" } }, - [480]={ + [489]={ [1]={ [1]={ limit={ @@ -11312,7 +11556,7 @@ return { [1]="arctic_armour_physical_damage_taken_+%_final" } }, - [481]={ + [490]={ [1]={ [1]={ limit={ @@ -11337,7 +11581,7 @@ return { [1]="arctic_breath_maximum_number_of_skulls_allowed" } }, - [482]={ + [491]={ [1]={ [1]={ limit={ @@ -11366,7 +11610,14 @@ return { [1]="area_of_effect_+%_final_from_whirling_assault_level" } }, - [483]={ + [492]={ + [1]={ + }, + stats={ + [1]="area_of_effect_+%_per_combo_stack" + } + }, + [493]={ [1]={ [1]={ limit={ @@ -11395,7 +11646,7 @@ return { [1]="area_of_effect_+%_per_frost_fury_stage" } }, - [484]={ + [494]={ [1]={ [1]={ limit={ @@ -11424,7 +11675,7 @@ return { [1]="area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge" } }, - [485]={ + [495]={ [1]={ [1]={ limit={ @@ -11453,7 +11704,7 @@ return { [1]="area_of_effect_+%_when_cast_on_frostbolt" } }, - [486]={ + [496]={ [1]={ [1]={ limit={ @@ -11482,21 +11733,39 @@ return { [1]="area_of_effect_+%_while_not_dual_wielding" } }, - [487]={ + [497]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Break Armour equal to {0}% of Poison damage" + } }, stats={ [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [488]={ + [498]={ [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Break Armour equal to {0}% of Physical damage dealt" + } }, stats={ [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [489]={ + [499]={ [1]={ [1]={ limit={ @@ -11525,7 +11794,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [490]={ + [500]={ [1]={ [1]={ limit={ @@ -11554,7 +11823,7 @@ return { [1]="attack_damage_+%" } }, - [491]={ + [501]={ [1]={ [1]={ limit={ @@ -11583,14 +11852,14 @@ return { [1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour" } }, - [492]={ + [502]={ [1]={ }, stats={ [1]="attack_duration_ms" } }, - [493]={ + [503]={ [1]={ [1]={ limit={ @@ -11606,7 +11875,7 @@ return { [1]="attack_speed_cannot_be_modified" } }, - [494]={ + [504]={ [1]={ [1]={ limit={ @@ -11622,7 +11891,7 @@ return { [1]="attack_speed_modifiers_apply_to_over_time_cost" } }, - [495]={ + [505]={ [1]={ [1]={ limit={ @@ -11647,7 +11916,7 @@ return { [1]="attack_trigger_on_hitting_bleeding_enemy_%" } }, - [496]={ + [506]={ [1]={ [1]={ limit={ @@ -11672,7 +11941,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [497]={ + [507]={ [1]={ [1]={ limit={ @@ -11697,7 +11966,7 @@ return { [1]="avoid_damage_%" } }, - [498]={ + [508]={ [1]={ [1]={ limit={ @@ -11722,7 +11991,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [499]={ + [509]={ [1]={ [1]={ limit={ @@ -11738,7 +12007,7 @@ return { [1]="ball_lightning_superball_%_chance" } }, - [500]={ + [510]={ [1]={ [1]={ limit={ @@ -11767,7 +12036,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [501]={ + [511]={ [1]={ [1]={ limit={ @@ -11783,7 +12052,7 @@ return { [1]="barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit" } }, - [502]={ + [512]={ [1]={ [1]={ limit={ @@ -11834,7 +12103,7 @@ return { [2]="quality_display_spear_puncture_is_gem" } }, - [503]={ + [513]={ [1]={ [1]={ limit={ @@ -11850,7 +12119,7 @@ return { [1]="base_bleeding_effect_+100%_final_chance" } }, - [504]={ + [514]={ [1]={ [1]={ limit={ @@ -11875,7 +12144,7 @@ return { [1]="base_chance_to_daze_%" } }, - [505]={ + [515]={ [1]={ [1]={ limit={ @@ -11891,7 +12160,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [506]={ + [516]={ [1]={ [1]={ limit={ @@ -11907,7 +12176,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [507]={ + [517]={ [1]={ [1]={ limit={ @@ -11932,7 +12201,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [508]={ + [518]={ [1]={ [1]={ limit={ @@ -11948,7 +12217,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [509]={ + [519]={ [1]={ [1]={ [1]={ @@ -11961,7 +12230,7 @@ return { [2]=1000 } }, - text="Lose Combo if you generate no Combo for {0} second" + text="This Skill loses Combo if it generates no Combo for {0} second" }, [2]={ [1]={ @@ -11974,14 +12243,14 @@ return { [2]="#" } }, - text="Lose Combo if you generate no Combo for {0} seconds" + text="This Skill loses Combo if it generates no Combo for {0} seconds" } }, stats={ [1]="base_combo_stacks_decay_delay_ms" } }, - [510]={ + [520]={ [1]={ [1]={ limit={ @@ -11997,7 +12266,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [511]={ + [521]={ [1]={ [1]={ limit={ @@ -12013,7 +12282,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [512]={ + [522]={ [1]={ [1]={ [1]={ @@ -12033,7 +12302,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [513]={ + [523]={ [1]={ [1]={ limit={ @@ -12062,7 +12331,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [514]={ + [524]={ [1]={ [1]={ limit={ @@ -12091,7 +12360,7 @@ return { [1]="base_curse_delay_+%" } }, - [515]={ + [525]={ [1]={ [1]={ limit={ @@ -12120,7 +12389,7 @@ return { [1]="base_damage_taken_+%" } }, - [516]={ + [526]={ [1]={ [1]={ limit={ @@ -12136,7 +12405,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [517]={ + [527]={ [1]={ [1]={ limit={ @@ -12165,7 +12434,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [518]={ + [528]={ [1]={ [1]={ limit={ @@ -12190,7 +12459,7 @@ return { [1]="base_extra_damage_rolls" } }, - [519]={ + [529]={ [1]={ [1]={ limit={ @@ -12219,7 +12488,7 @@ return { [1]="base_ignite_effect_+%" } }, - [520]={ + [530]={ [1]={ [1]={ limit={ @@ -12244,7 +12513,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [521]={ + [531]={ [1]={ [1]={ limit={ @@ -12269,7 +12538,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [522]={ + [532]={ [1]={ [1]={ limit={ @@ -12294,7 +12563,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [523]={ + [533]={ [1]={ [1]={ limit={ @@ -12310,7 +12579,32 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [524]={ + [534]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Seal" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum {0} Seals" + } + }, + stats={ + [1]="base_maximum_seals_for_skill" + } + }, + [535]={ [1]={ [1]={ limit={ @@ -12363,6 +12657,23 @@ return { } }, text="{0} Bolts loaded per clip" + }, + [5]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="-{0} Bolts loaded per clip" } }, stats={ @@ -12370,7 +12681,7 @@ return { [2]="quality_display_base_number_of_crossbow_bolts_is_gem" } }, - [525]={ + [536]={ [1]={ [1]={ ["gem_quality"]=true, @@ -12449,7 +12760,7 @@ return { [3]="quality_display_base_number_of_projectiles_is_gem" } }, - [526]={ + [537]={ [1]={ [1]={ limit={ @@ -12474,7 +12785,7 @@ return { [1]="base_number_of_projectiles_in_spiral_nova" } }, - [527]={ + [538]={ [1]={ [1]={ limit={ @@ -12499,7 +12810,7 @@ return { [1]="number_of_support_ghosts_allowed" } }, - [528]={ + [539]={ [1]={ [1]={ limit={ @@ -12524,7 +12835,7 @@ return { [1]="base_number_of_tempest_bells_allowed" } }, - [529]={ + [540]={ [1]={ [1]={ limit={ @@ -12540,7 +12851,23 @@ return { [1]="base_poison_effect_+100%_final_chance" } }, - [530]={ + [541]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to not remove a Power Charge but still count as consuming it" + } + }, + stats={ + [1]="base_power_charge_skip_consume_chance_%" + } + }, + [542]={ [1]={ [1]={ limit={ @@ -12556,7 +12883,7 @@ return { [1]="base_projectiles_cannot_chain" } }, - [531]={ + [543]={ [1]={ [1]={ [1]={ @@ -12589,7 +12916,43 @@ return { [1]="base_remnant_duration_ms" } }, - [532]={ + [544]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains a Seal every {0} seconds" + } + }, + stats={ + [1]="base_skill_seal_gain_interval_ms" + } + }, + [545]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gains {0}% of Life and Mana Cost as Extra Runic Ward Cost" + } + }, + stats={ + [1]="base_skill_ward_cost_as_%_of_life_and_mana_cost" + } + }, + [546]={ [1]={ [1]={ limit={ @@ -12614,7 +12977,7 @@ return { [1]="base_smite_number_of_targets" } }, - [533]={ + [547]={ [1]={ [1]={ limit={ @@ -12635,7 +12998,7 @@ return { [2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge" } }, - [534]={ + [548]={ [1]={ [1]={ limit={ @@ -12651,7 +13014,14 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [535]={ + [549]={ + [1]={ + }, + stats={ + [1]="bear_companion_intimidate_on_hit_with_warcry_for_ms" + } + }, + [550]={ [1]={ [1]={ [1]={ @@ -12684,7 +13054,7 @@ return { [1]="bear_skills_additional_base_attack_time_when_performing_from_default_stance" } }, - [536]={ + [551]={ [1]={ [1]={ [1]={ @@ -12717,7 +13087,23 @@ return { [1]="bear_skills_additional_base_attack_time_when_performing_from_standing_stance" } }, - [537]={ + [552]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0:+d} to maximum Rage" + } + }, + stats={ + [1]="berserk_maximum_rage_granted_+" + } + }, + [553]={ [1]={ [1]={ limit={ @@ -12746,7 +13132,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [538]={ + [554]={ [1]={ [1]={ [1]={ @@ -12766,7 +13152,7 @@ return { [1]="blackhole_hinder_%" } }, - [539]={ + [555]={ [1]={ [1]={ [1]={ @@ -12799,7 +13185,7 @@ return { [1]="blackhole_tick_rate_ms" } }, - [540]={ + [556]={ [1]={ [1]={ limit={ @@ -12815,7 +13201,7 @@ return { [1]="blade_blast_detonated_blades_not_removed_%_chance" } }, - [541]={ + [557]={ [1]={ [1]={ limit={ @@ -12844,7 +13230,7 @@ return { [1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated" } }, - [542]={ + [558]={ [1]={ [1]={ limit={ @@ -12873,7 +13259,7 @@ return { [1]="blade_flurry_elemental_damage_+%_while_channeling" } }, - [543]={ + [559]={ [1]={ [1]={ limit={ @@ -12902,7 +13288,7 @@ return { [1]="blade_flurry_final_flurry_area_of_effect_+%" } }, - [544]={ + [560]={ [1]={ [1]={ limit={ @@ -12918,7 +13304,7 @@ return { [1]="blade_vortex_additional_blade_chance_%" } }, - [545]={ + [561]={ [1]={ [1]={ limit={ @@ -12947,7 +13333,7 @@ return { [1]="blade_vortex_critical_strike_chance_+%_per_blade" } }, - [546]={ + [562]={ [1]={ [1]={ limit={ @@ -12976,7 +13362,7 @@ return { [1]="blade_vortex_damage_+%_with_5_or_fewer_blades" } }, - [547]={ + [563]={ [1]={ [1]={ [1]={ @@ -13005,7 +13391,7 @@ return { [1]="blade_vortex_hit_rate_ms" } }, - [548]={ + [564]={ [1]={ [1]={ limit={ @@ -13034,7 +13420,7 @@ return { [1]="bladefall_critical_strike_chance_+%_per_stage" } }, - [549]={ + [565]={ [1]={ [1]={ limit={ @@ -13063,7 +13449,7 @@ return { [1]="bladefall_volley_gap_distance_+%" } }, - [550]={ + [566]={ [1]={ [1]={ limit={ @@ -13088,7 +13474,7 @@ return { [1]="bladefall_volleys_needed_per_vestige_blade" } }, - [551]={ + [567]={ [1]={ [1]={ limit={ @@ -13104,7 +13490,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [552]={ + [568]={ [1]={ [1]={ limit={ @@ -13133,7 +13519,7 @@ return { [1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm" } }, - [553]={ + [569]={ [1]={ [1]={ limit={ @@ -13149,7 +13535,7 @@ return { [1]="bladestorm_create_alternate_stance_storm_%_chance" } }, - [554]={ + [570]={ [1]={ [1]={ limit={ @@ -13165,7 +13551,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [555]={ + [571]={ [1]={ [1]={ limit={ @@ -13194,7 +13580,7 @@ return { [1]="bladestorm_movement_speed_+%_while_in_sandstorm" } }, - [556]={ + [572]={ [1]={ [1]={ limit={ @@ -13223,7 +13609,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [557]={ + [573]={ [1]={ [1]={ limit={ @@ -13252,7 +13638,7 @@ return { [1]="bladestorm_storm_damage_+%_final" } }, - [558]={ + [574]={ [1]={ [1]={ limit={ @@ -13281,7 +13667,7 @@ return { [1]="blast_rain_area_of_effect_+%" } }, - [559]={ + [575]={ [1]={ [1]={ limit={ @@ -13310,7 +13696,7 @@ return { [1]="blast_rain_damage_+%_vs_distant_enemies" } }, - [560]={ + [576]={ [1]={ [1]={ limit={ @@ -13387,7 +13773,7 @@ return { [3]="cannot_cause_bleeding" } }, - [561]={ + [577]={ [1]={ [1]={ limit={ @@ -13416,9 +13802,23 @@ return { [1]="blind_effect_+%" } }, - [562]={ + [578]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Teleports +{0} metres" + }, + [2]={ [1]={ k="divide_by_ten_1dp_if_required", v=1 @@ -13436,7 +13836,7 @@ return { [1]="blink_travel_distance" } }, - [563]={ + [579]={ [1]={ [1]={ [1]={ @@ -13456,7 +13856,7 @@ return { [1]="blood_boil_%_health_as_corrupted_blood_damage_per_minute" } }, - [564]={ + [580]={ [1]={ [1]={ [1]={ @@ -13489,7 +13889,7 @@ return { [1]="blood_boil_application_interval_ms" } }, - [565]={ + [581]={ [1]={ [1]={ limit={ @@ -13518,7 +13918,7 @@ return { [1]="blood_boil_explosion_area_+%_final_per_boil" } }, - [566]={ + [582]={ [1]={ [1]={ limit={ @@ -13547,7 +13947,7 @@ return { [1]="blood_ground_leaving_area_lasts_for_ms" } }, - [567]={ + [583]={ [1]={ [1]={ limit={ @@ -13576,7 +13976,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [568]={ + [584]={ [1]={ [1]={ limit={ @@ -13623,7 +14023,7 @@ return { [2]="reap_life_%_granted_on_death_with_debuff" } }, - [569]={ + [585]={ [1]={ [1]={ limit={ @@ -13648,7 +14048,7 @@ return { [1]="blood_sand_triggered_blind_on_attack_chance_%" } }, - [570]={ + [586]={ [1]={ [1]={ limit={ @@ -13673,7 +14073,7 @@ return { [1]="blood_sand_triggered_change_bleed_on_attack_chance_%" } }, - [571]={ + [587]={ [1]={ [1]={ limit={ @@ -13702,7 +14102,7 @@ return { [1]="blood_scythe_cost_+%_final_per_charge" } }, - [572]={ + [588]={ [1]={ [1]={ limit={ @@ -13731,7 +14131,7 @@ return { [1]="blood_scythe_damage_+%_final_per_charge" } }, - [573]={ + [589]={ [1]={ [1]={ limit={ @@ -13747,7 +14147,7 @@ return { [1]="blood_surge_refresh_on_total_life_spent" } }, - [574]={ + [590]={ [1]={ [1]={ limit={ @@ -13820,7 +14220,7 @@ return { [2]="quality_display_exsanguinate_beam_targets_is_gem" } }, - [575]={ + [591]={ [1]={ [1]={ limit={ @@ -13849,7 +14249,7 @@ return { [1]="bodyswap_damage_+%_when_not_consuming_corpse" } }, - [576]={ + [592]={ [1]={ [1]={ limit={ @@ -13870,7 +14270,7 @@ return { [2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%" } }, - [577]={ + [593]={ [1]={ [1]={ limit={ @@ -13891,7 +14291,7 @@ return { [2]="bone_golem_grants_minion_maximum_added_physical_damage" } }, - [578]={ + [594]={ [1]={ [1]={ limit={ @@ -13920,7 +14320,7 @@ return { [1]="bone_offering_damage_taken_+%_final_after_shield_loss" } }, - [579]={ + [595]={ [1]={ [1]={ limit={ @@ -13936,7 +14336,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [580]={ + [596]={ [1]={ [1]={ limit={ @@ -13952,7 +14352,7 @@ return { [1]="brand_detonate_faster_activation_%_per_second" } }, - [581]={ + [597]={ [1]={ [1]={ limit={ @@ -13968,7 +14368,7 @@ return { [1]="brand_detonate_faster_duration_%_per_second" } }, - [582]={ + [598]={ [1]={ [1]={ limit={ @@ -13984,7 +14384,7 @@ return { [1]="brand_recall_spend_%_of_recalled_brands_cost" } }, - [583]={ + [599]={ [1]={ [1]={ limit={ @@ -14000,7 +14400,7 @@ return { [1]="branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [584]={ + [600]={ [1]={ [1]={ limit={ @@ -14009,7 +14409,7 @@ return { [2]=1000 } }, - text="A Flame of Chayula manifests nearby every second" + text="A Flame of Chayula manifests within 8.5m of\n you every second" }, [2]={ [1]={ @@ -14022,14 +14422,14 @@ return { [2]="#" } }, - text="A Flame of Chayula manifests nearby every {0} seconds" + text="A Flame of Chayula manifests within 8.5m of\n you every {0} seconds" } }, stats={ [1]="breach_flame_spawn_rate_ms" } }, - [585]={ + [601]={ [1]={ [1]={ limit={ @@ -14054,7 +14454,7 @@ return { [1]="buff_grants_smite_additional_lightning_targets" } }, - [586]={ + [602]={ [1]={ [1]={ [1]={ @@ -14079,7 +14479,7 @@ return { [2]="call_of_steel_reload_time" } }, - [587]={ + [603]={ [1]={ [1]={ limit={ @@ -14104,7 +14504,7 @@ return { [1]="caltrops_on_dodge_X_triggers" } }, - [588]={ + [604]={ [1]={ [1]={ limit={ @@ -14120,7 +14520,7 @@ return { [1]="cannot_be_empowered_by_warcries" } }, - [589]={ + [605]={ [1]={ [1]={ limit={ @@ -14136,14 +14536,14 @@ return { [1]="cannot_break_armour" } }, - [590]={ + [606]={ [1]={ }, stats={ [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [591]={ + [607]={ [1]={ [1]={ limit={ @@ -14159,7 +14559,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [592]={ + [608]={ [1]={ [1]={ limit={ @@ -14175,7 +14575,7 @@ return { [1]="cannot_daze" } }, - [593]={ + [609]={ [1]={ [1]={ limit={ @@ -14191,7 +14591,7 @@ return { [1]="cannot_gain_power_charges_during_skill" } }, - [594]={ + [610]={ [1]={ [1]={ limit={ @@ -14207,7 +14607,7 @@ return { [1]="cannot_inflict_blind" } }, - [595]={ + [611]={ [1]={ [1]={ limit={ @@ -14223,7 +14623,7 @@ return { [1]="cannot_inflict_bloodstone_lance" } }, - [596]={ + [612]={ [1]={ [1]={ limit={ @@ -14239,7 +14639,7 @@ return { [1]="cannot_knockback" } }, - [597]={ + [613]={ [1]={ [1]={ limit={ @@ -14255,7 +14655,7 @@ return { [1]="cannot_pin" } }, - [598]={ + [614]={ [1]={ [1]={ [1]={ @@ -14275,7 +14675,7 @@ return { [1]="cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [599]={ + [615]={ [1]={ [1]={ [1]={ @@ -14295,7 +14695,7 @@ return { [1]="cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [600]={ + [616]={ [1]={ [1]={ [1]={ @@ -14315,7 +14715,7 @@ return { [1]="cast_on_block_gain_X_centienergy_on_block" } }, - [601]={ + [617]={ [1]={ [1]={ [1]={ @@ -14335,7 +14735,36 @@ return { [1]="cast_on_crit_gain_X_centienergy_per_monster_power_on_crit" } }, - [602]={ + [618]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Critical Hit chance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Critical Hit chance" + } + }, + stats={ + [1]="cast_on_crit_global_critical_hit_chance_granted_+%" + } + }, + [619]={ [1]={ [1]={ limit={ @@ -14360,7 +14789,7 @@ return { [1]="cast_on_crit_%" } }, - [603]={ + [620]={ [1]={ [1]={ limit={ @@ -14376,7 +14805,7 @@ return { [1]="cast_on_damage_taken_gain_X_centienergy_when_hit" } }, - [604]={ + [621]={ [1]={ [1]={ limit={ @@ -14392,7 +14821,40 @@ return { [1]="cast_on_death_gain_X_centienergy_on_death" } }, - [605]={ + [622]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + } + }, + text="Buff grants {0:+d} metre to Dodge Roll distance" + }, + [2]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants {0:+d} metres to Dodge Roll distance" + } + }, + stats={ + [1]="cast_on_dodge_dodge_roll_distance_granted_+" + } + }, + [623]={ [1]={ [1]={ [1]={ @@ -14412,7 +14874,7 @@ return { [1]="cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling" } }, - [606]={ + [624]={ [1]={ [1]={ limit={ @@ -14437,7 +14899,7 @@ return { [1]="cast_on_flask_use_%" } }, - [607]={ + [625]={ [1]={ [1]={ [1]={ @@ -14457,7 +14919,7 @@ return { [1]="cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze" } }, - [608]={ + [626]={ [1]={ [1]={ [1]={ @@ -14477,7 +14939,7 @@ return { [1]="cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite" } }, - [609]={ + [627]={ [1]={ [1]={ limit={ @@ -14493,7 +14955,7 @@ return { [1]="cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [610]={ + [628]={ [1]={ [1]={ limit={ @@ -14509,7 +14971,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun" } }, - [611]={ + [629]={ [1]={ [1]={ limit={ @@ -14525,7 +14987,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun" } }, - [612]={ + [630]={ [1]={ [1]={ limit={ @@ -14541,7 +15003,7 @@ return { [1]="cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%" } }, - [613]={ + [631]={ [1]={ [1]={ [1]={ @@ -14561,7 +15023,7 @@ return { [1]="cast_on_shock_gain_X_centienergy_per_monster_power_on_shock" } }, - [614]={ + [632]={ [1]={ [1]={ [1]={ @@ -14581,7 +15043,7 @@ return { [1]="cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm" } }, - [615]={ + [633]={ [1]={ [1]={ limit={ @@ -14597,7 +15059,7 @@ return { [1]="cast_speed_modifiers_apply_to_over_time_cost" } }, - [616]={ + [634]={ [1]={ [1]={ limit={ @@ -14613,7 +15075,7 @@ return { [1]="cast_when_stunned_gain_X_centienergy_when_stunned" } }, - [617]={ + [635]={ [1]={ [1]={ limit={ @@ -14629,7 +15091,7 @@ return { [1]="cast_while_channelling_gain_X_energy_per_second_while_channelling" } }, - [618]={ + [636]={ [1]={ [1]={ limit={ @@ -14645,7 +15107,7 @@ return { [1]="cast_while_channelling_lose_X_energy_per_second_while_not_channelling" } }, - [619]={ + [637]={ [1]={ [1]={ limit={ @@ -14674,7 +15136,7 @@ return { [1]="chain_hook_range_+%" } }, - [620]={ + [638]={ [1]={ [1]={ limit={ @@ -14690,7 +15152,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [621]={ + [639]={ [1]={ [1]={ limit={ @@ -14706,7 +15168,7 @@ return { [1]="chain_strike_gain_x_rage_if_attack_hits" } }, - [622]={ + [640]={ [1]={ [1]={ limit={ @@ -14735,7 +15197,7 @@ return { [1]="chaining_range_+%" } }, - [623]={ + [641]={ [1]={ [1]={ limit={ @@ -14760,7 +15222,32 @@ return { [1]="chance_%_to_spawn_another_infusion_remnant" } }, - [624]={ + [642]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to not count Empowered Attacks" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Does not count Empowered Attacks" + } + }, + stats={ + [1]="chance_for_exerted_attacks_to_not_reduce_count_%" + } + }, + [643]={ [1]={ [1]={ limit={ @@ -14776,7 +15263,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [625]={ + [644]={ [1]={ [1]={ limit={ @@ -14792,32 +15279,42 @@ return { [1]="chance_for_melee_skeletons_to_summon_as_archer_skeletons_%" } }, - [626]={ + [645]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Benefits from consuming Charges have {0}% chance to be doubled" + }, + [2]={ limit={ [1]={ [1]=1, [2]=99 } }, - text="Benefits from consuming Charges have {0}% chance to be doubled for this skill" + text="Benefits from consuming Charges have {0}% chance to be doubled" }, - [2]={ + [3]={ limit={ [1]={ [1]=100, [2]="#" } }, - text="Benefits from consuming Charges are doubled for this skill" + text="Benefits from consuming Charges are doubled" } }, stats={ [1]="chance_%_to_double_effect_of_removing_charges" } }, - [627]={ + [646]={ [1]={ [1]={ limit={ @@ -14842,7 +15339,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [628]={ + [647]={ [1]={ [1]={ limit={ @@ -14867,7 +15364,7 @@ return { [1]="chance_to_bleed_on_hit_%_chance_in_blood_stance" } }, - [629]={ + [648]={ [1]={ [1]={ limit={ @@ -14883,7 +15380,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [630]={ + [649]={ [1]={ [1]={ limit={ @@ -14899,7 +15396,7 @@ return { [1]="chance_to_cast_a_stance_change_on_perforate_or_lacerate_%" } }, - [631]={ + [650]={ [1]={ [1]={ limit={ @@ -14915,7 +15412,7 @@ return { [1]="chance_to_cast_on_bear_warcry_%" } }, - [632]={ + [651]={ [1]={ [1]={ limit={ @@ -14940,7 +15437,7 @@ return { [1]="chance_to_daze_+%" } }, - [633]={ + [652]={ [1]={ [1]={ limit={ @@ -14965,7 +15462,7 @@ return { [1]="chance_to_daze_+%_final" } }, - [634]={ + [653]={ [1]={ [1]={ limit={ @@ -14981,7 +15478,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [635]={ + [654]={ [1]={ [1]={ limit={ @@ -14997,7 +15494,7 @@ return { [1]="chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [636]={ + [655]={ [1]={ [1]={ limit={ @@ -15013,7 +15510,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [637]={ + [656]={ [1]={ [1]={ limit={ @@ -15029,9 +15526,19 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [638]={ + [657]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to gain an additional Charge" + }, + [2]={ limit={ [1]={ [1]=1, @@ -15040,7 +15547,7 @@ return { }, text="{0}% chance when you gain a Charge to gain an additional Charge" }, - [2]={ + [3]={ limit={ [1]={ [1]=100, @@ -15054,14 +15561,48 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [639]={ + [658]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to gain an additional random Charge when you gain a Charge" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to gain an additional random Charge when you gain a Charge" + }, + [3]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Gain an additional random Charge when you gain a Charge" + } + }, + stats={ + [1]="chance_to_gain_1_more_random_charge_%" + } + }, + [659]={ [1]={ }, stats={ [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [640]={ + [660]={ [1]={ [1]={ limit={ @@ -15206,7 +15747,7 @@ return { [3]="active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [641]={ + [661]={ [1]={ [1]={ limit={ @@ -15231,7 +15772,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [642]={ + [662]={ [1]={ [1]={ limit={ @@ -15247,7 +15788,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [643]={ + [663]={ [1]={ [1]={ limit={ @@ -15263,7 +15804,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [644]={ + [664]={ [1]={ [1]={ limit={ @@ -15288,7 +15829,7 @@ return { [1]="chance_to_inflict_scorch_brittle_sap_%" } }, - [645]={ + [665]={ [1]={ [1]={ limit={ @@ -15304,7 +15845,7 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [646]={ + [666]={ [1]={ [1]={ limit={ @@ -15320,7 +15861,7 @@ return { [1]="chance_to_not_consume_infusion_%" } }, - [647]={ + [667]={ [1]={ [1]={ limit={ @@ -15336,7 +15877,7 @@ return { [1]="chance_to_not_consume_parried_%" } }, - [648]={ + [668]={ [1]={ [1]={ limit={ @@ -15361,7 +15902,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [649]={ + [669]={ [1]={ [1]={ limit={ @@ -15377,7 +15918,7 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [650]={ + [670]={ [1]={ [1]={ limit={ @@ -15393,7 +15934,7 @@ return { [1]="chance_to_retain_40%_of_glory_on_use_%" } }, - [651]={ + [671]={ [1]={ [1]={ limit={ @@ -15422,7 +15963,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [652]={ + [672]={ [1]={ [1]={ limit={ @@ -15447,7 +15988,7 @@ return { [1]="chance_to_scorch_%" } }, - [653]={ + [673]={ [1]={ [1]={ limit={ @@ -15472,7 +16013,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [654]={ + [674]={ [1]={ [1]={ limit={ @@ -15497,14 +16038,14 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [655]={ + [675]={ [1]={ }, stats={ [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [656]={ + [676]={ [1]={ [1]={ limit={ @@ -15520,7 +16061,7 @@ return { [1]="chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%" } }, - [657]={ + [677]={ [1]={ [1]={ limit={ @@ -15536,7 +16077,7 @@ return { [1]="chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%" } }, - [658]={ + [678]={ [1]={ [1]={ limit={ @@ -15552,7 +16093,7 @@ return { [1]="chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%" } }, - [659]={ + [679]={ [1]={ [1]={ limit={ @@ -15568,7 +16109,7 @@ return { [1]="chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%" } }, - [660]={ + [680]={ [1]={ [1]={ limit={ @@ -15584,7 +16125,7 @@ return { [1]="chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%" } }, - [661]={ + [681]={ [1]={ [1]={ limit={ @@ -15600,7 +16141,7 @@ return { [1]="chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%" } }, - [662]={ + [682]={ [1]={ [1]={ limit={ @@ -15616,7 +16157,7 @@ return { [1]="chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%" } }, - [663]={ + [683]={ [1]={ [1]={ limit={ @@ -15632,7 +16173,7 @@ return { [1]="chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%" } }, - [664]={ + [684]={ [1]={ [1]={ limit={ @@ -15648,7 +16189,7 @@ return { [1]="chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%" } }, - [665]={ + [685]={ [1]={ [1]={ limit={ @@ -15673,7 +16214,7 @@ return { [1]="chance_to_trigger_on_animate_guardian_kill_%" } }, - [666]={ + [686]={ [1]={ [1]={ limit={ @@ -15698,7 +16239,7 @@ return { [1]="chance_to_trigger_on_animate_weapon_kill_%" } }, - [667]={ + [687]={ [1]={ [1]={ limit={ @@ -15723,7 +16264,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [668]={ + [688]={ [1]={ [1]={ [1]={ @@ -15784,7 +16325,7 @@ return { [1]="channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms" } }, - [669]={ + [689]={ [1]={ [1]={ limit={ @@ -15800,7 +16341,7 @@ return { [1]="channelled_slam_area_of_effect_radius_+_per_stage" } }, - [670]={ + [690]={ [1]={ [1]={ limit={ @@ -15816,7 +16357,36 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [671]={ + [691]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased damage per Charge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced damage per Charge" + } + }, + stats={ + [1]="charge_regulation_damage_per_charge_granted_+%" + } + }, + [692]={ [1]={ [1]={ limit={ @@ -15825,14 +16395,14 @@ return { [2]="#" } }, - text="{0}% Chance to not remove Charges on use" + text="{0}% chance to not remove Charges on use" } }, stats={ [1]="charge_skip_consume_chance_%" } }, - [672]={ + [693]={ [1]={ [1]={ limit={ @@ -15861,7 +16431,7 @@ return { [1]="charged_attack_damage_per_stack_+%_final" } }, - [673]={ + [694]={ [1]={ [1]={ limit={ @@ -15877,7 +16447,7 @@ return { [1]="charged_dash_channelling_damage_at_full_stacks_+%_final" } }, - [674]={ + [695]={ [1]={ [1]={ limit={ @@ -15893,7 +16463,7 @@ return { [1]="charged_dash_damage_+%_final_per_stack" } }, - [675]={ + [696]={ [1]={ [1]={ [1]={ @@ -15913,7 +16483,7 @@ return { [1]="charged_dash_skill_inherent_movement_speed_+%_final" } }, - [676]={ + [697]={ [1]={ [1]={ limit={ @@ -15929,7 +16499,7 @@ return { [1]="chilled_ground_base_magnitude_override" } }, - [677]={ + [698]={ [1]={ [1]={ limit={ @@ -15958,14 +16528,14 @@ return { [1]="chilling_area_movement_velocity_+%" } }, - [678]={ + [699]={ [1]={ }, stats={ [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [679]={ + [700]={ [1]={ [1]={ limit={ @@ -15994,7 +16564,7 @@ return { [1]="chronomancer_buff_cooldown_speed_+%" } }, - [680]={ + [701]={ [1]={ [1]={ limit={ @@ -16010,7 +16580,7 @@ return { [1]="circle_of_power_mana_spend_per_upgrade" } }, - [681]={ + [702]={ [1]={ [1]={ limit={ @@ -16039,7 +16609,7 @@ return { [1]="cleave_area_of_effect_+%_final_from_executioner" } }, - [682]={ + [703]={ [1]={ [1]={ limit={ @@ -16068,7 +16638,7 @@ return { [1]="cleave_damage_against_enemies_on_low_life_+%_final_from_executioner" } }, - [683]={ + [704]={ [1]={ [1]={ limit={ @@ -16084,7 +16654,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [684]={ + [705]={ [1]={ [1]={ limit={ @@ -16113,7 +16683,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [685]={ + [706]={ [1]={ [1]={ limit={ @@ -16142,7 +16712,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [686]={ + [707]={ [1]={ [1]={ limit={ @@ -16158,7 +16728,7 @@ return { [1]="cold_snap_%_chance_to_not_remove_freeze" } }, - [687]={ + [708]={ [1]={ [1]={ limit={ @@ -16187,259 +16757,259 @@ return { [1]="combat_rush_effect_+%" } }, - [688]={ + [709]={ [1]={ }, stats={ [1]="combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [689]={ + [710]={ [1]={ }, stats={ [1]="combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [690]={ + [711]={ [1]={ }, stats={ [1]="combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [691]={ + [712]={ [1]={ }, stats={ [1]="combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [692]={ + [713]={ [1]={ }, stats={ [1]="combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [693]={ + [714]={ [1]={ }, stats={ [1]="combined_chaos_other_hit_damage_stun_multiplier_+%_including_final" } }, - [694]={ + [715]={ [1]={ }, stats={ [1]="combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [695]={ + [716]={ [1]={ }, stats={ [1]="combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [696]={ + [717]={ [1]={ }, stats={ [1]="combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [697]={ + [718]={ [1]={ }, stats={ [1]="combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [698]={ + [719]={ [1]={ }, stats={ [1]="combined_cold_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [699]={ + [720]={ [1]={ }, stats={ [1]="combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [700]={ + [721]={ [1]={ }, stats={ [1]="combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [701]={ + [722]={ [1]={ }, stats={ [1]="combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [702]={ + [723]={ [1]={ }, stats={ [1]="combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [703]={ + [724]={ [1]={ }, stats={ [1]="combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [704]={ + [725]={ [1]={ }, stats={ [1]="combined_fire_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [705]={ + [726]={ [1]={ }, stats={ [1]="combined_fire_other_hit_damage_stun_multiplier_+%_including_final" } }, - [706]={ + [727]={ [1]={ }, stats={ [1]="combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [707]={ + [728]={ [1]={ }, stats={ [1]="combined_fire_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [708]={ + [729]={ [1]={ }, stats={ [1]="combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [709]={ + [730]={ [1]={ }, stats={ [1]="combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [710]={ + [731]={ [1]={ }, stats={ [1]="combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [711]={ + [732]={ [1]={ }, stats={ [1]="combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [712]={ + [733]={ [1]={ }, stats={ [1]="combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [713]={ + [734]={ [1]={ }, stats={ [1]="combined_lightning_other_hit_damage_stun_multiplier_+%_including_final" } }, - [714]={ + [735]={ [1]={ }, stats={ [1]="combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [715]={ + [736]={ [1]={ }, stats={ [1]="combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [716]={ + [737]={ [1]={ }, stats={ [1]="combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [717]={ + [738]={ [1]={ }, stats={ [1]="combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [718]={ + [739]={ [1]={ }, stats={ [1]="combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [719]={ + [740]={ [1]={ }, stats={ [1]="combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [720]={ + [741]={ [1]={ }, stats={ [1]="combined_physical_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [721]={ + [742]={ [1]={ }, stats={ [1]="combined_physical_other_hit_damage_stun_multiplier_+%_including_final" } }, - [722]={ + [743]={ [1]={ }, stats={ [1]="combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [723]={ + [744]={ [1]={ }, stats={ [1]="combined_physical_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [724]={ + [745]={ [1]={ [1]={ limit={ @@ -16455,7 +17025,7 @@ return { [1]="command_minion_target_ally_below_x_life" } }, - [725]={ + [746]={ [1]={ [1]={ limit={ @@ -16484,7 +17054,7 @@ return { [1]="companion_all_attributes_+%" } }, - [726]={ + [747]={ [1]={ [1]={ limit={ @@ -16500,7 +17070,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [727]={ + [748]={ [1]={ [1]={ limit={ @@ -16529,7 +17099,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [728]={ + [749]={ [1]={ [1]={ limit={ @@ -16545,7 +17115,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [729]={ + [750]={ [1]={ [1]={ limit={ @@ -16574,7 +17144,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [730]={ + [751]={ [1]={ [1]={ limit={ @@ -16617,7 +17187,7 @@ return { [3]="ignite_effect_+%_final_if_heat_is_consumed" } }, - [731]={ + [752]={ [1]={ [1]={ limit={ @@ -16633,7 +17203,7 @@ return { [1]="consume_enemy_daze_to_always_hit" } }, - [732]={ + [753]={ [1]={ [1]={ limit={ @@ -16662,7 +17232,7 @@ return { [1]="consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final" } }, - [733]={ + [754]={ [1]={ [1]={ limit={ @@ -16678,7 +17248,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [734]={ + [755]={ [1]={ [1]={ limit={ @@ -16694,7 +17264,7 @@ return { [1]="consume_enemy_fully_broken_armour_to_guarantee_crit" } }, - [735]={ + [756]={ [1]={ [1]={ limit={ @@ -16723,7 +17293,7 @@ return { [1]="consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [736]={ + [757]={ [1]={ [1]={ limit={ @@ -16739,7 +17309,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [737]={ + [758]={ [1]={ [1]={ limit={ @@ -16755,7 +17325,7 @@ return { [1]="consume_ignite_on_hit" } }, - [738]={ + [759]={ [1]={ [1]={ limit={ @@ -16780,7 +17350,7 @@ return { [1]="contagion_number_of_additional_targets" } }, - [739]={ + [760]={ [1]={ [1]={ limit={ @@ -16823,7 +17393,7 @@ return { [3]="quality_display_contagion_is_gem" } }, - [740]={ + [761]={ [1]={ [1]={ limit={ @@ -16852,7 +17422,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [741]={ + [762]={ [1]={ [1]={ limit={ @@ -16881,7 +17451,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [742]={ + [763]={ [1]={ [1]={ limit={ @@ -16897,7 +17467,7 @@ return { [1]="corpse_erruption_maximum_number_of_geyers" } }, - [743]={ + [764]={ [1]={ [1]={ [1]={ @@ -16917,7 +17487,7 @@ return { [1]="corpse_explosion_monster_life_permillage_chaos" } }, - [744]={ + [765]={ [1]={ [1]={ limit={ @@ -16946,7 +17516,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse" } }, - [745]={ + [766]={ [1]={ [1]={ limit={ @@ -16962,7 +17532,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [746]={ + [767]={ [1]={ [1]={ limit={ @@ -16987,7 +17557,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [747]={ + [768]={ [1]={ [1]={ limit={ @@ -17021,7 +17591,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [748]={ + [769]={ [1]={ [1]={ limit={ @@ -17050,7 +17620,7 @@ return { [1]="created_slipstream_action_speed_+%" } }, - [749]={ + [770]={ [1]={ [1]={ limit={ @@ -17066,7 +17636,7 @@ return { [1]="cremation_chance_to_explode_nearby_corpse_when_firing_projectiles" } }, - [750]={ + [771]={ [1]={ [1]={ limit={ @@ -17095,7 +17665,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [751]={ + [772]={ [1]={ [1]={ limit={ @@ -17124,7 +17694,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [752]={ + [773]={ [1]={ [1]={ limit={ @@ -17153,7 +17723,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [753]={ + [774]={ [1]={ [1]={ limit={ @@ -17182,7 +17752,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [754]={ + [775]={ [1]={ [1]={ limit={ @@ -17211,7 +17781,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [755]={ + [776]={ [1]={ [1]={ limit={ @@ -17240,14 +17810,14 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [756]={ + [777]={ [1]={ }, stats={ [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [757]={ + [778]={ [1]={ [1]={ limit={ @@ -17263,7 +17833,7 @@ return { [1]="critical_strike_multiplier_+_per_blade" } }, - [758]={ + [779]={ [1]={ [1]={ limit={ @@ -17292,7 +17862,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [759]={ + [780]={ [1]={ [1]={ limit={ @@ -17308,14 +17878,14 @@ return { [1]="crossbow_ammo_always_reload" } }, - [760]={ + [781]={ [1]={ }, stats={ [1]="crossbow_reload_on_heavy_stun" } }, - [761]={ + [782]={ [1]={ [1]={ limit={ @@ -17344,7 +17914,7 @@ return { [1]="cruelty_effect_+%" } }, - [762]={ + [783]={ [1]={ [1]={ limit={ @@ -17369,7 +17939,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [763]={ + [784]={ [1]={ [1]={ limit={ @@ -17385,14 +17955,14 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [764]={ + [785]={ [1]={ }, stats={ [1]="curse_apply_as_curse_zone" } }, - [765]={ + [786]={ [1]={ [1]={ [1]={ @@ -17425,7 +17995,7 @@ return { [1]="curse_delay_duration_ms" } }, - [766]={ + [787]={ [1]={ [1]={ [1]={ @@ -17445,7 +18015,7 @@ return { [1]="cyclone_gain_stage_every_x_ms_while_channelling" } }, - [767]={ + [788]={ [1]={ [1]={ limit={ @@ -17461,7 +18031,7 @@ return { [1]="cyclone_max_number_of_stages" } }, - [768]={ + [789]={ [1]={ [1]={ limit={ @@ -17477,7 +18047,7 @@ return { [1]="cyclone_melee_weapon_range_+_per_stage" } }, - [769]={ + [790]={ [1]={ [1]={ [1]={ @@ -17497,7 +18067,7 @@ return { [1]="cyclone_stage_decay_time_ms" } }, - [770]={ + [791]={ [1]={ [1]={ limit={ @@ -17526,7 +18096,7 @@ return { [1]="damage_+%_final_from_lich_apparition_cloned_skill" } }, - [771]={ + [792]={ [1]={ [1]={ limit={ @@ -17555,7 +18125,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [772]={ + [793]={ [1]={ [1]={ limit={ @@ -17584,7 +18154,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [773]={ + [794]={ [1]={ [1]={ limit={ @@ -17600,7 +18170,7 @@ return { [1]="damage_+%_per_chain" } }, - [774]={ + [795]={ [1]={ [1]={ limit={ @@ -17629,7 +18199,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [775]={ + [796]={ [1]={ [1]={ limit={ @@ -17658,7 +18228,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [776]={ + [797]={ [1]={ [1]={ limit={ @@ -17687,7 +18257,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [777]={ + [798]={ [1]={ [1]={ limit={ @@ -17716,7 +18286,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [778]={ + [799]={ [1]={ [1]={ limit={ @@ -17732,7 +18302,7 @@ return { [1]="vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead" } }, - [779]={ + [800]={ [1]={ [1]={ limit={ @@ -17761,7 +18331,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [780]={ + [801]={ [1]={ [1]={ limit={ @@ -17777,7 +18347,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [781]={ + [802]={ [1]={ [1]={ limit={ @@ -17793,7 +18363,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [782]={ + [803]={ [1]={ [1]={ limit={ @@ -17809,7 +18379,7 @@ return { [1]="dark_effigy_additional_projectile_chance_per_debuff_on_target" } }, - [783]={ + [804]={ [1]={ [1]={ limit={ @@ -17825,7 +18395,7 @@ return { [1]="dark_ritual_damage_+%_final_per_curse_applied" } }, - [784]={ + [805]={ [1]={ [1]={ limit={ @@ -17841,7 +18411,7 @@ return { [1]="dark_ritual_skill_effect_duration_+%_per_curse_applied" } }, - [785]={ + [806]={ [1]={ [1]={ [1]={ @@ -17861,7 +18431,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [786]={ + [807]={ [1]={ [1]={ limit={ @@ -17877,7 +18447,7 @@ return { [1]="deal_no_elemental_damage" } }, - [787]={ + [808]={ [1]={ [1]={ limit={ @@ -17906,7 +18476,7 @@ return { [1]="death_wish_attack_speed_+%" } }, - [788]={ + [809]={ [1]={ [1]={ limit={ @@ -17935,7 +18505,7 @@ return { [1]="death_wish_cast_speed_+%" } }, - [789]={ + [810]={ [1]={ [1]={ limit={ @@ -17964,7 +18534,7 @@ return { [1]="death_wish_hit_damage_+%_final_per_stage" } }, - [790]={ + [811]={ [1]={ [1]={ limit={ @@ -17980,7 +18550,7 @@ return { [1]="death_wish_max_stages" } }, - [791]={ + [812]={ [1]={ [1]={ limit={ @@ -18009,7 +18579,7 @@ return { [1]="death_wish_movement_speed_+%" } }, - [792]={ + [813]={ [1]={ [1]={ limit={ @@ -18034,7 +18604,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [793]={ + [814]={ [1]={ [1]={ limit={ @@ -18063,7 +18633,7 @@ return { [1]="debuff_time_passed_+%" } }, - [794]={ + [815]={ [1]={ [1]={ limit={ @@ -18079,7 +18649,7 @@ return { [1]="desecrate_chance_for_additional_corpse_%" } }, - [795]={ + [816]={ [1]={ [1]={ limit={ @@ -18095,7 +18665,7 @@ return { [1]="desecrate_chance_for_special_corpse_%" } }, - [796]={ + [817]={ [1]={ [1]={ limit={ @@ -18111,7 +18681,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [797]={ + [818]={ [1]={ [1]={ limit={ @@ -18127,7 +18697,7 @@ return { [1]="destroy_corpses_on_kill_%_chance" } }, - [798]={ + [819]={ [1]={ [1]={ limit={ @@ -18156,7 +18726,7 @@ return { [1]="detonate_dead_damage_+%_if_corpse_ignited" } }, - [799]={ + [820]={ [1]={ [1]={ [1]={ @@ -18176,7 +18746,7 @@ return { [1]="detonate_mines_recover_permyriad_of_life_per_mine_detonated" } }, - [800]={ + [821]={ [1]={ [1]={ limit={ @@ -18210,7 +18780,7 @@ return { [2]="detonating_arrow_max_number_of_stages" } }, - [801]={ + [822]={ [1]={ [1]={ limit={ @@ -18226,7 +18796,7 @@ return { [1]="disable_mine_detonation_cascade" } }, - [802]={ + [823]={ [1]={ [1]={ limit={ @@ -18251,7 +18821,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [803]={ + [824]={ [1]={ [1]={ limit={ @@ -18280,7 +18850,7 @@ return { [1]="discharge_damage_+%_if_3_charge_types_removed" } }, - [804]={ + [825]={ [1]={ [1]={ limit={ @@ -18296,7 +18866,7 @@ return { [1]="disengage_%_chance_for_additional_shockwave" } }, - [805]={ + [826]={ [1]={ [1]={ limit={ @@ -18312,7 +18882,7 @@ return { [1]="disintegrate_base_radius_+_per_intensify" } }, - [806]={ + [827]={ [1]={ [1]={ limit={ @@ -18341,7 +18911,7 @@ return { [1]="disintegrate_damage_+%_final_per_intensity" } }, - [807]={ + [828]={ [1]={ [1]={ limit={ @@ -18370,7 +18940,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [808]={ + [829]={ [1]={ [1]={ limit={ @@ -18386,7 +18956,7 @@ return { [1]="display_additional_projectile_per_2_mines_in_detonation_sequence" } }, - [809]={ + [830]={ [1]={ [1]={ limit={ @@ -18402,7 +18972,7 @@ return { [1]="display_additional_projectile_per_4_mines_in_detonation_sequence" } }, - [810]={ + [831]={ [1]={ [1]={ limit={ @@ -18418,7 +18988,7 @@ return { [1]="display_additional_projectile_per_mine_in_detonation_sequence" } }, - [811]={ + [832]={ [1]={ [1]={ [1]={ @@ -18438,7 +19008,7 @@ return { [1]="display_blink_base_cooldown" } }, - [812]={ + [833]={ [1]={ [1]={ [1]={ @@ -18458,7 +19028,7 @@ return { [1]="display_brand_deonate_tag_conversion" } }, - [813]={ + [834]={ [1]={ [1]={ limit={ @@ -18474,7 +19044,7 @@ return { [1]="display_charge_speed_is_move_speed" } }, - [814]={ + [835]={ [1]={ }, stats={ @@ -18482,7 +19052,7 @@ return { [2]="display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [815]={ + [836]={ [1]={ }, stats={ @@ -18490,7 +19060,7 @@ return { [2]="display_estimate_maximum_roll_main_hand_chill_magnitude" } }, - [816]={ + [837]={ [1]={ }, stats={ @@ -18498,7 +19068,7 @@ return { [2]="display_estimate_maximum_roll_off_hand_chill_magnitude" } }, - [817]={ + [838]={ [1]={ }, stats={ @@ -18506,7 +19076,7 @@ return { [2]="display_estimate_maximum_roll_secondary_chill_magnitude" } }, - [818]={ + [839]={ [1]={ }, stats={ @@ -18514,7 +19084,7 @@ return { [2]="display_estimate_maximum_roll_spell_chill_magnitude" } }, - [819]={ + [840]={ [1]={ }, stats={ @@ -18522,7 +19092,7 @@ return { [2]="display_estimate_maximum_total_main_hand_ignite_chance_%" } }, - [820]={ + [841]={ [1]={ }, stats={ @@ -18530,7 +19100,7 @@ return { [2]="display_estimate_maximum_total_main_hand_shock_chance_%" } }, - [821]={ + [842]={ [1]={ }, stats={ @@ -18538,7 +19108,7 @@ return { [2]="display_estimate_maximum_total_off_hand_ignite_chance_%" } }, - [822]={ + [843]={ [1]={ }, stats={ @@ -18546,7 +19116,7 @@ return { [2]="display_estimate_maximum_total_off_hand_shock_chance_%" } }, - [823]={ + [844]={ [1]={ }, stats={ @@ -18554,7 +19124,7 @@ return { [2]="display_estimate_maximum_total_spell_ignite_chance_%" } }, - [824]={ + [845]={ [1]={ }, stats={ @@ -18562,7 +19132,7 @@ return { [2]="display_estimate_maximum_total_spell_shock_chance_%" } }, - [825]={ + [846]={ [1]={ }, stats={ @@ -18570,7 +19140,7 @@ return { [2]="display_estimate_maximum_total_spell_ignite_chance_%" } }, - [826]={ + [847]={ [1]={ }, stats={ @@ -18578,7 +19148,7 @@ return { [2]="display_estimate_maximum_total_spell_shock_chance_%" } }, - [827]={ + [848]={ [1]={ [1]={ [1]={ @@ -18624,7 +19194,7 @@ return { [2]="display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [828]={ + [849]={ [1]={ [1]={ limit={ @@ -18640,7 +19210,7 @@ return { [1]="display_fake_attack_hit_bleed" } }, - [829]={ + [850]={ [1]={ [1]={ limit={ @@ -18656,7 +19226,7 @@ return { [1]="display_fake_attack_hit_chill" } }, - [830]={ + [851]={ [1]={ [1]={ limit={ @@ -18672,7 +19242,7 @@ return { [1]="display_fake_attack_hit_ignite" } }, - [831]={ + [852]={ [1]={ [1]={ limit={ @@ -18688,7 +19258,7 @@ return { [1]="display_fake_attack_hit_poison" } }, - [832]={ + [853]={ [1]={ [1]={ limit={ @@ -18717,7 +19287,7 @@ return { [1]="display_linked_curse_effect_+%" } }, - [833]={ + [854]={ [1]={ [1]={ limit={ @@ -18746,7 +19316,7 @@ return { [1]="display_linked_curse_effect_+%_final" } }, - [834]={ + [855]={ [1]={ }, stats={ @@ -18754,7 +19324,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_max" } }, - [835]={ + [856]={ [1]={ }, stats={ @@ -18762,7 +19332,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_mid" } }, - [836]={ + [857]={ [1]={ }, stats={ @@ -18770,14 +19340,14 @@ return { [2]="display_main_hand_hit_chance_estimate_range_min" } }, - [837]={ + [858]={ [1]={ }, stats={ [1]="display_max_ailment_bearer_charges" } }, - [838]={ + [859]={ [1]={ [1]={ limit={ @@ -18793,7 +19363,7 @@ return { [1]="display_max_blight_stacks" } }, - [839]={ + [860]={ [1]={ [1]={ limit={ @@ -18809,7 +19379,7 @@ return { [1]="display_max_fire_beam_stacks" } }, - [840]={ + [861]={ [1]={ [1]={ limit={ @@ -18834,7 +19404,7 @@ return { [1]="display_max_upgraded_sentinels_of_absolution" } }, - [841]={ + [862]={ [1]={ [1]={ limit={ @@ -18859,7 +19429,7 @@ return { [1]="display_max_upgraded_sentinels_of_dominance" } }, - [842]={ + [863]={ [1]={ }, stats={ @@ -18867,7 +19437,7 @@ return { [2]="display_maximum_roll_main_hand_bleeding_damage_per_minute" } }, - [843]={ + [864]={ [1]={ }, stats={ @@ -18875,7 +19445,7 @@ return { [2]="display_maximum_roll_main_hand_ignite_damage_per_minute" } }, - [844]={ + [865]={ [1]={ }, stats={ @@ -18883,7 +19453,7 @@ return { [2]="display_maximum_roll_main_hand_poison_damage_per_minute" } }, - [845]={ + [866]={ [1]={ }, stats={ @@ -18891,7 +19461,7 @@ return { [2]="display_maximum_roll_off_hand_bleeding_damage_per_minute" } }, - [846]={ + [867]={ [1]={ }, stats={ @@ -18899,7 +19469,7 @@ return { [2]="display_maximum_roll_off_hand_ignite_damage_per_minute" } }, - [847]={ + [868]={ [1]={ }, stats={ @@ -18907,7 +19477,7 @@ return { [2]="display_maximum_roll_off_hand_poison_damage_per_minute" } }, - [848]={ + [869]={ [1]={ }, stats={ @@ -18915,7 +19485,7 @@ return { [2]="display_maximum_roll_secondary_bleeding_damage_per_minute" } }, - [849]={ + [870]={ [1]={ }, stats={ @@ -18923,7 +19493,7 @@ return { [2]="display_maximum_roll_secondary_ignite_damage_per_minute" } }, - [850]={ + [871]={ [1]={ }, stats={ @@ -18931,7 +19501,7 @@ return { [2]="display_maximum_roll_secondary_poison_damage_per_minute" } }, - [851]={ + [872]={ [1]={ }, stats={ @@ -18939,7 +19509,7 @@ return { [2]="display_maximum_roll_spell_bleeding_damage_per_minute" } }, - [852]={ + [873]={ [1]={ }, stats={ @@ -18947,7 +19517,7 @@ return { [2]="display_maximum_roll_spell_ignite_damage_per_minute" } }, - [853]={ + [874]={ [1]={ }, stats={ @@ -18955,7 +19525,7 @@ return { [2]="display_maximum_roll_spell_poison_damage_per_minute" } }, - [854]={ + [875]={ [1]={ [1]={ limit={ @@ -18984,7 +19554,7 @@ return { [1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine" } }, - [855]={ + [876]={ [1]={ [1]={ limit={ @@ -19000,7 +19570,7 @@ return { [1]="display_mirage_warriors_no_spirit_strikes" } }, - [856]={ + [877]={ [1]={ [1]={ limit={ @@ -19016,7 +19586,7 @@ return { [1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius" } }, - [857]={ + [878]={ [1]={ }, stats={ @@ -19024,7 +19594,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_max" } }, - [858]={ + [879]={ [1]={ }, stats={ @@ -19032,7 +19602,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_mid" } }, - [859]={ + [880]={ [1]={ }, stats={ @@ -19040,7 +19610,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_min" } }, - [860]={ + [881]={ [1]={ [1]={ limit={ @@ -19056,7 +19626,7 @@ return { [1]="queens_demand_effect" } }, - [861]={ + [882]={ [1]={ [1]={ limit={ @@ -19072,7 +19642,7 @@ return { [1]="display_removes_and_grants_elusive_when_used" } }, - [862]={ + [883]={ [1]={ [1]={ limit={ @@ -19088,14 +19658,14 @@ return { [1]="display_sigil_of_power_stage_gain_delay" } }, - [863]={ + [884]={ [1]={ }, stats={ [1]="display_skill_cooldown_time_ms" } }, - [864]={ + [885]={ [1]={ [1]={ limit={ @@ -19111,14 +19681,47 @@ return { [1]="display_skill_fixed_duration_buff" } }, - [865]={ + [886]={ [1]={ }, stats={ [1]="display_skill_increased_item_rarity_+%" } }, - [866]={ + [887]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Overflowing Chalice duration@{0}s" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Overflowing Chalice duration@{0}s" + } + }, + stats={ + [1]="display_skill_overflowing_chalice_duration_ms" + } + }, + [888]={ [1]={ [1]={ [1]={ @@ -19138,7 +19741,7 @@ return { [1]="display_storm_burst_jump_time_ms" } }, - [867]={ + [889]={ [1]={ [1]={ limit={ @@ -19154,49 +19757,49 @@ return { [1]="display_this_skill_cooldown_does_not_recover_during_buff" } }, - [868]={ + [890]={ [1]={ }, stats={ [1]="display_total_bleeding_duration" } }, - [869]={ + [891]={ [1]={ }, stats={ [1]="display_total_chill_duration" } }, - [870]={ + [892]={ [1]={ }, stats={ [1]="display_total_ignite_duration" } }, - [871]={ + [893]={ [1]={ }, stats={ [1]="display_total_poison_duration" } }, - [872]={ + [894]={ [1]={ }, stats={ [1]="display_total_shock_duration" } }, - [873]={ + [895]={ [1]={ }, stats={ [1]="display_total_shock_magnitude" } }, - [874]={ + [896]={ [1]={ [1]={ limit={ @@ -19212,7 +19815,7 @@ return { [1]="display_touch_of_fire" } }, - [875]={ + [897]={ [1]={ [1]={ limit={ @@ -19228,7 +19831,7 @@ return { [1]="display_trigger_link" } }, - [876]={ + [898]={ [1]={ [1]={ limit={ @@ -19244,7 +19847,7 @@ return { [1]="display_triggerbots_do_their_job" } }, - [877]={ + [899]={ [1]={ [1]={ limit={ @@ -19260,7 +19863,7 @@ return { [1]="display_unhinge_grant_insane" } }, - [878]={ + [900]={ [1]={ [1]={ limit={ @@ -19276,7 +19879,7 @@ return { [1]="display_vaal_breach_no_drops_xp" } }, - [879]={ + [901]={ [1]={ [1]={ limit={ @@ -19314,7 +19917,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [880]={ + [902]={ [1]={ [1]={ limit={ @@ -19343,7 +19946,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [881]={ + [903]={ [1]={ [1]={ limit={ @@ -19372,7 +19975,7 @@ return { [1]="divine_tempest_damage_+%_final_while_channelling" } }, - [882]={ + [904]={ [1]={ [1]={ limit={ @@ -19388,7 +19991,7 @@ return { [1]="divine_tempest_hit_damage_+%_final_per_stage" } }, - [883]={ + [905]={ [1]={ [1]={ limit={ @@ -19404,7 +20007,7 @@ return { [1]="divine_tempest_stage_on_hitting_normal_magic_%_chance" } }, - [884]={ + [906]={ [1]={ [1]={ limit={ @@ -19420,7 +20023,7 @@ return { [1]="divine_tempest_stage_on_hitting_rare_unique" } }, - [885]={ + [907]={ [1]={ [1]={ limit={ @@ -19445,7 +20048,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [886]={ + [908]={ [1]={ [1]={ limit={ @@ -19461,7 +20064,7 @@ return { [1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life" } }, - [887]={ + [909]={ [1]={ [1]={ limit={ @@ -19477,7 +20080,7 @@ return { [1]="dual_wield_inherent_attack_speed_+%_final" } }, - [888]={ + [910]={ [1]={ [1]={ limit={ @@ -19498,7 +20101,7 @@ return { [2]="earthquake_aftershock_maximum_added_physical_damage" } }, - [889]={ + [911]={ [1]={ [1]={ limit={ @@ -19527,7 +20130,7 @@ return { [1]="earthquake_initial_slam_area_of_effect_+%" } }, - [890]={ + [912]={ [1]={ [1]={ limit={ @@ -19556,7 +20159,14 @@ return { [1]="earthshatter_damage_+%_final_per_spike" } }, - [891]={ + [913]={ + [1]={ + }, + stats={ + [1]="echoed_spell_area_of_effect_+%" + } + }, + [914]={ [1]={ [1]={ limit={ @@ -19572,7 +20182,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [892]={ + [915]={ [1]={ [1]={ limit={ @@ -19601,7 +20211,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [893]={ + [916]={ [1]={ [1]={ limit={ @@ -19617,7 +20227,7 @@ return { [1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" } }, - [894]={ + [917]={ [1]={ [1]={ limit={ @@ -19633,7 +20243,7 @@ return { [1]="elemental_hit_damage_+10%_final_per_enemy_elemental_ailment" } }, - [895]={ + [918]={ [1]={ [1]={ [1]={ @@ -19653,7 +20263,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze" } }, - [896]={ + [919]={ [1]={ [1]={ [1]={ @@ -19673,7 +20283,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite" } }, - [897]={ + [920]={ [1]={ [1]={ [1]={ @@ -19693,7 +20303,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_shock" } }, - [898]={ + [921]={ [1]={ [1]={ limit={ @@ -19709,7 +20319,7 @@ return { [1]="elemental_penetration_%_from_resonance" } }, - [899]={ + [922]={ [1]={ [1]={ limit={ @@ -19738,7 +20348,7 @@ return { [1]="elusive_effect_+%" } }, - [900]={ + [923]={ [1]={ [1]={ limit={ @@ -19789,7 +20399,7 @@ return { [2]="quality_display_ember_fusilade_is_gem" } }, - [901]={ + [924]={ [1]={ [1]={ [1]={ @@ -19809,7 +20419,7 @@ return { [1]="embrace_madness_amount_of_cooldown_to_gain_ms" } }, - [902]={ + [925]={ [1]={ [1]={ [1]={ @@ -19826,7 +20436,7 @@ return { [2]="#" } }, - text="{0}% of repeated Skill's attack time is added to this skill's cooldown, to a maximum of {1} seconds" + text="{0}% of Empowered Skill's attack time is added to this skill's cooldown, to a maximum of {1} seconds" } }, stats={ @@ -19834,7 +20444,7 @@ return { [2]="empowered_barrage_maximum_cooldown_ms" } }, - [903]={ + [926]={ [1]={ [1]={ limit={ @@ -19863,7 +20473,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [904]={ + [927]={ [1]={ [1]={ limit={ @@ -19888,7 +20498,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [905]={ + [928]={ [1]={ [1]={ limit={ @@ -19904,7 +20514,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [906]={ + [929]={ [1]={ [1]={ limit={ @@ -19920,7 +20530,7 @@ return { [1]="enemies_covered_in_frost_as_unfrozen" } }, - [907]={ + [930]={ [1]={ [1]={ limit={ @@ -19936,7 +20546,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [908]={ + [931]={ [1]={ [1]={ limit={ @@ -19969,7 +20579,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [909]={ + [932]={ [1]={ [1]={ limit={ @@ -19998,7 +20608,14 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [910]={ + [933]={ + [1]={ + }, + stats={ + [1]="support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%" + } + }, + [934]={ [1]={ [1]={ limit={ @@ -20014,7 +20631,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [911]={ + [935]={ [1]={ [1]={ limit={ @@ -20043,7 +20660,7 @@ return { [1]="energy_generated_+%" } }, - [912]={ + [936]={ [1]={ [1]={ limit={ @@ -20072,7 +20689,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [913]={ + [937]={ [1]={ [1]={ limit={ @@ -20101,7 +20718,7 @@ return { [1]="ensnaring_arrow_enemy_spell_damage_taken_+%" } }, - [914]={ + [938]={ [1]={ [1]={ limit={ @@ -20126,7 +20743,7 @@ return { [1]="ethereal_knives_projectiles_needed_per_vestige_blade" } }, - [915]={ + [939]={ [1]={ [1]={ limit={ @@ -20155,7 +20772,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [916]={ + [940]={ [1]={ [1]={ limit={ @@ -20171,7 +20788,7 @@ return { [1]="expanding_fire_cone_angle_+%_per_stage" } }, - [917]={ + [941]={ [1]={ [1]={ limit={ @@ -20187,7 +20804,7 @@ return { [1]="expanding_fire_cone_final_wave_always_ignite" } }, - [918]={ + [942]={ [1]={ [1]={ limit={ @@ -20203,7 +20820,7 @@ return { [1]="expanding_fire_cone_maximum_number_of_stages" } }, - [919]={ + [943]={ [1]={ [1]={ limit={ @@ -20224,7 +20841,7 @@ return { [2]="expanding_fire_cone_radius_limit" } }, - [920]={ + [944]={ [1]={ [1]={ limit={ @@ -20275,7 +20892,7 @@ return { [2]="quality_display_incinerate_is_gem_hit" } }, - [921]={ + [945]={ [1]={ [1]={ limit={ @@ -20291,14 +20908,14 @@ return { [1]="explosive_arrow_stack_limit" } }, - [922]={ + [946]={ [1]={ }, stats={ [1]="exposure_effect_+%" } }, - [923]={ + [947]={ [1]={ [1]={ limit={ @@ -20314,7 +20931,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [924]={ + [948]={ [1]={ [1]={ limit={ @@ -20339,7 +20956,7 @@ return { [1]="eye_of_winter_number_of_brittle_stacks_to_apply" } }, - [925]={ + [949]={ [1]={ [1]={ limit={ @@ -20368,7 +20985,7 @@ return { [1]="eye_of_winter_spiral_angle_+%" } }, - [926]={ + [950]={ [1]={ [1]={ limit={ @@ -20397,7 +21014,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [927]={ + [951]={ [1]={ [1]={ limit={ @@ -20413,7 +21030,7 @@ return { [1]="faster_bleed_%" } }, - [928]={ + [952]={ [1]={ [1]={ [1]={ @@ -20464,7 +21081,7 @@ return { [3]="feast_of_flesh_recovery_duration" } }, - [929]={ + [953]={ [1]={ [1]={ limit={ @@ -20480,7 +21097,32 @@ return { [1]="feral_invocation_gain_1_energy_per_X_mana_spent" } }, - [930]={ + [954]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Final Strike targets {0} additional nearby enemy" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Final Strike targets {0} additional nearby enemies" + } + }, + stats={ + [1]="final_strike_number_of_spirit_strikes" + } + }, + [955]={ [1]={ [1]={ [1]={ @@ -20500,7 +21142,7 @@ return { [1]="fire_beam_additional_stack_damage_+%_final" } }, - [931]={ + [956]={ [1]={ [1]={ limit={ @@ -20516,7 +21158,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_maximum" } }, - [932]={ + [957]={ [1]={ [1]={ limit={ @@ -20532,7 +21174,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [933]={ + [958]={ [1]={ [1]={ limit={ @@ -20561,7 +21203,7 @@ return { [1]="fire_beam_length_+%" } }, - [934]={ + [959]={ [1]={ [1]={ limit={ @@ -20577,7 +21219,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [935]={ + [960]={ [1]={ [1]={ limit={ @@ -20593,23 +21235,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [936]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="If you have no Steel Shards, only Fires 1 Projectile" - } - }, - stats={ - [1]="fires_1_projectile_if_no_steel_ammo" - } - }, - [937]={ + [961]={ [1]={ [1]={ limit={ @@ -20638,7 +21264,7 @@ return { [1]="firestorm_final_impact_damage_+%_final" } }, - [938]={ + [962]={ [1]={ [1]={ limit={ @@ -20667,7 +21293,7 @@ return { [1]="firestorm_initial_impact_area_of_effect_+%_final" } }, - [939]={ + [963]={ [1]={ [1]={ limit={ @@ -20696,7 +21322,7 @@ return { [1]="firestorm_initial_impact_damage_+%_final" } }, - [940]={ + [964]={ [1]={ [1]={ limit={ @@ -20712,7 +21338,7 @@ return { [1]="firewall_applies_%_fire_exposure" } }, - [941]={ + [965]={ [1]={ [1]={ limit={ @@ -20728,7 +21354,7 @@ return { [1]="fixed_skill_effect_duration" } }, - [942]={ + [966]={ [1]={ [1]={ limit={ @@ -20757,7 +21383,7 @@ return { [1]="flame_dash_burning_damage_+%_final" } }, - [943]={ + [967]={ [1]={ [1]={ [1]={ @@ -20777,7 +21403,7 @@ return { [1]="flame_surge_burning_ground_creation_cooldown_ms" } }, - [944]={ + [968]={ [1]={ [1]={ limit={ @@ -20793,7 +21419,7 @@ return { [1]="flame_surge_ignite_damage_as_burning_ground_damage_%" } }, - [945]={ + [969]={ [1]={ [1]={ limit={ @@ -20822,7 +21448,7 @@ return { [1]="flame_wall_projectiles_ignite_effect_+%_final" } }, - [946]={ + [970]={ [1]={ [1]={ limit={ @@ -20851,7 +21477,7 @@ return { [1]="flameblast_area_+%_final_per_stage" } }, - [947]={ + [971]={ [1]={ [1]={ limit={ @@ -20880,7 +21506,7 @@ return { [1]="flameblast_hit_damage_+%_final_per_10_life_reserved" } }, - [948]={ + [972]={ [1]={ [1]={ [1]={ @@ -20900,7 +21526,7 @@ return { [1]="flameblast_hundred_times_radius_+_per_1%_life_reserved" } }, - [949]={ + [973]={ [1]={ [1]={ limit={ @@ -20916,7 +21542,7 @@ return { [1]="flameblast_maximum_stages" } }, - [950]={ + [974]={ [1]={ [1]={ limit={ @@ -20932,7 +21558,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [951]={ + [975]={ [1]={ [1]={ limit={ @@ -20948,7 +21574,7 @@ return { [1]="flamethrower_tower_trap_display_cast_speed_affects_rotation" } }, - [952]={ + [976]={ [1]={ [1]={ limit={ @@ -20964,7 +21590,7 @@ return { [1]="flamethrower_tower_trap_number_of_flamethrowers" } }, - [953]={ + [977]={ [1]={ [1]={ limit={ @@ -20993,7 +21619,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [954]={ + [978]={ [1]={ [1]={ limit={ @@ -21026,7 +21652,7 @@ return { [1]="flask_charges_used_+%" } }, - [955]={ + [979]={ [1]={ [1]={ limit={ @@ -21051,7 +21677,7 @@ return { [1]="flask_throw_base_charges_used" } }, - [956]={ + [980]={ [1]={ [1]={ limit={ @@ -21080,7 +21706,7 @@ return { [1]="flask_throw_bleed_effect_+%_final" } }, - [957]={ + [981]={ [1]={ [1]={ [1]={ @@ -21122,7 +21748,7 @@ return { [1]="flask_throw_cold_exposure_ms" } }, - [958]={ + [982]={ [1]={ [1]={ limit={ @@ -21138,7 +21764,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [959]={ + [983]={ [1]={ [1]={ [1]={ @@ -21180,7 +21806,7 @@ return { [1]="flask_throw_fire_exposure_ms" } }, - [960]={ + [984]={ [1]={ [1]={ [1]={ @@ -21222,7 +21848,7 @@ return { [1]="flask_throw_lightning_exposure_ms" } }, - [961]={ + [985]={ [1]={ [1]={ limit={ @@ -21238,7 +21864,7 @@ return { [1]="flask_throw_added_chaos_damage_%_of_flask_life_to_recover" } }, - [962]={ + [986]={ [1]={ [1]={ limit={ @@ -21259,7 +21885,7 @@ return { [2]="flask_throw_maximum_cold_damage_if_used_sapphire_flask" } }, - [963]={ + [987]={ [1]={ [1]={ limit={ @@ -21280,7 +21906,7 @@ return { [2]="flask_throw_maximum_lightning_damage_if_used_topaz_flask" } }, - [964]={ + [988]={ [1]={ [1]={ limit={ @@ -21309,7 +21935,7 @@ return { [1]="flask_throw_poison_effect_+%_final" } }, - [965]={ + [989]={ [1]={ [1]={ limit={ @@ -21338,7 +21964,7 @@ return { [1]="flask_throw_ruby_flask_ignite_effect_+%" } }, - [966]={ + [990]={ [1]={ [1]={ limit={ @@ -21367,7 +21993,7 @@ return { [1]="flicker_strike_buff_movement_speed_+%" } }, - [967]={ + [991]={ [1]={ [1]={ limit={ @@ -21383,7 +22009,7 @@ return { [1]="flicker_strike_teleport_range_+%" } }, - [968]={ + [992]={ [1]={ [1]={ limit={ @@ -21399,7 +22025,7 @@ return { [1]="fortify_on_hit" } }, - [969]={ + [993]={ [1]={ [1]={ limit={ @@ -21415,7 +22041,36 @@ return { [1]="fortify_on_hit_close_range" } }, - [970]={ + [994]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Guard gained" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Guard gained" + } + }, + stats={ + [1]="fortifying_cry_guard_gained_+%_final" + } + }, + [995]={ [1]={ [1]={ limit={ @@ -21431,7 +22086,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [971]={ + [996]={ [1]={ [1]={ limit={ @@ -21460,7 +22115,7 @@ return { [1]="freeze_duration_ms_+" } }, - [972]={ + [997]={ [1]={ [1]={ [1]={ @@ -21480,7 +22135,7 @@ return { [1]="virtual_freezing_enemy_chills_enemies_in_radius" } }, - [973]={ + [998]={ [1]={ [1]={ limit={ @@ -21509,7 +22164,7 @@ return { [1]="freezing_pulse_damage_+%_final_at_long_range" } }, - [974]={ + [999]={ [1]={ [1]={ limit={ @@ -21538,7 +22193,7 @@ return { [1]="frenzy_skill_attack_damage_+%_final_per_frenzy_charge" } }, - [975]={ + [1000]={ [1]={ [1]={ limit={ @@ -21567,7 +22222,7 @@ return { [1]="frenzy_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [976]={ + [1001]={ [1]={ [1]={ limit={ @@ -21583,7 +22238,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [977]={ + [1002]={ [1]={ [1]={ limit={ @@ -21608,7 +22263,7 @@ return { [1]="frost_bolt_nova_number_of_frost_bolts_to_detonate" } }, - [978]={ + [1003]={ [1]={ [1]={ [1]={ @@ -21628,7 +22283,7 @@ return { [1]="frost_fury_added_duration_per_stage_ms" } }, - [979]={ + [1004]={ [1]={ [1]={ [1]={ @@ -21648,7 +22303,7 @@ return { [1]="frost_fury_base_fire_interval_ms" } }, - [980]={ + [1005]={ [1]={ [1]={ limit={ @@ -21664,7 +22319,7 @@ return { [1]="frost_fury_duration_+%_per_stage" } }, - [981]={ + [1006]={ [1]={ [1]={ limit={ @@ -21680,7 +22335,7 @@ return { [1]="frost_fury_fire_speed_+%_final_while_channelling" } }, - [982]={ + [1007]={ [1]={ [1]={ limit={ @@ -21696,7 +22351,7 @@ return { [1]="frost_fury_fire_speed_+%_per_stage" } }, - [983]={ + [1008]={ [1]={ [1]={ limit={ @@ -21712,7 +22367,7 @@ return { [1]="frost_fury_max_number_of_stages" } }, - [984]={ + [1009]={ [1]={ [1]={ limit={ @@ -21728,7 +22383,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_in_bubble" } }, - [985]={ + [1010]={ [1]={ [1]={ limit={ @@ -21744,7 +22399,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_outside_bubble" } }, - [986]={ + [1011]={ [1]={ [1]={ [1]={ @@ -21764,7 +22419,7 @@ return { [1]="frost_globe_additional_spell_base_critical_strike_chance_per_stage" } }, - [987]={ + [1012]={ [1]={ [1]={ limit={ @@ -21780,7 +22435,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [988]={ + [1013]={ [1]={ [1]={ [1]={ @@ -21800,7 +22455,7 @@ return { [1]="frost_globe_life_regeneration_rate_per_minute_%" } }, - [989]={ + [1014]={ [1]={ [1]={ limit={ @@ -21816,7 +22471,7 @@ return { [1]="frost_globe_max_stages" } }, - [990]={ + [1015]={ [1]={ [1]={ [1]={ @@ -21836,14 +22491,14 @@ return { [1]="frost_globe_stage_gain_interval_ms" } }, - [991]={ + [1016]={ [1]={ }, stats={ [1]="frost_wall_total_maximum_life" } }, - [992]={ + [1017]={ [1]={ [1]={ limit={ @@ -21872,7 +22527,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [993]={ + [1018]={ [1]={ [1]={ limit={ @@ -21901,7 +22556,7 @@ return { [1]="frostbolt_projectile_speed_+%_final" } }, - [994]={ + [1019]={ [1]={ [1]={ limit={ @@ -21917,7 +22572,32 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [995]={ + [1020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies Frozen by this Skill take {0}% increased damage" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies Frozen by this Skill take {0}% reduced damage" + } + }, + stats={ + [1]="frozen_monsters_take_increased_damage" + } + }, + [1021]={ [1]={ [1]={ limit={ @@ -21933,7 +22613,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [996]={ + [1022]={ [1]={ [1]={ [1]={ @@ -21953,7 +22633,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [997]={ + [1023]={ [1]={ [1]={ [1]={ @@ -21973,7 +22653,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [998]={ + [1024]={ [1]={ [1]={ limit={ @@ -21989,7 +22669,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [999]={ + [1025]={ [1]={ [1]={ limit={ @@ -22005,7 +22685,7 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [1000]={ + [1026]={ [1]={ [1]={ limit={ @@ -22030,7 +22710,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [1001]={ + [1027]={ [1]={ [1]={ [1]={ @@ -22050,7 +22730,7 @@ return { [1]="gain_fortify_on_melee_hit_ms" } }, - [1002]={ + [1028]={ [1]={ [1]={ limit={ @@ -22066,7 +22746,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [1003]={ + [1029]={ [1]={ [1]={ limit={ @@ -22082,7 +22762,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [1004]={ + [1030]={ [1]={ [1]={ limit={ @@ -22107,7 +22787,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [1005]={ + [1031]={ [1]={ [1]={ limit={ @@ -22123,14 +22803,14 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [1006]={ + [1032]={ [1]={ }, stats={ [1]="gain_x_rage_on_hit" } }, - [1007]={ + [1033]={ [1]={ [1]={ limit={ @@ -22146,7 +22826,7 @@ return { [1]="gain_rage_on_hit_%_chance" } }, - [1008]={ + [1034]={ [1]={ [1]={ limit={ @@ -22155,14 +22835,14 @@ return { [2]="#" } }, - text="Hits for which the highest Damage Type is Elemental cause you to gain 25 Resonance of other Elements per second for 2 seconds" + text="Hits for which the highest Damage Type is Elemental cause you to gain 25 Affinity of other Elements per second for 2 seconds" } }, stats={ [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [1009]={ + [1035]={ [1]={ [1]={ limit={ @@ -22187,7 +22867,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [1010]={ + [1036]={ [1]={ [1]={ limit={ @@ -22203,14 +22883,14 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [1011]={ + [1037]={ [1]={ }, stats={ [1]="gain_x_rage_on_melee_hit" } }, - [1012]={ + [1038]={ [1]={ [1]={ [1]={ @@ -22243,7 +22923,7 @@ return { [1]="galvanic_field_beam_delay_ms" } }, - [1013]={ + [1039]={ [1]={ [1]={ limit={ @@ -22272,7 +22952,7 @@ return { [1]="galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [1014]={ + [1040]={ [1]={ [1]={ limit={ @@ -22301,7 +22981,127 @@ return { [1]="galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock" } }, - [1015]={ + [1041]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grants {0}% more Fire damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Grants {0}% less Fire damage" + } + }, + stats={ + [1]="gem_quality_ancestral_cry_global_fire_damage_granted_+%_final" + } + }, + [1042]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Damaging Ailments inflicted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Damaging Ailments inflicted" + } + }, + stats={ + [1]="gem_quality_earthquake_damaging_ailment_effect_+%_final" + } + }, + [1043]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Magnitude of Damaging Ailments per Stage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Magnitude of Damaging Ailments per Stage" + } + }, + stats={ + [1]="gem_quality_flameblast_damaging_ailment_effect_per_stage_+%_final" + } + }, + [1044]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Marked enemy deals {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Marked enemy deals {0}% less damage" + } + }, + stats={ + [1]="gem_quality_marked_enemy_damage_dealt_+%_final" + } + }, + [1045]={ [1]={ [1]={ limit={ @@ -22348,7 +23148,7 @@ return { [2]="generic_ongoing_trigger_triggers_at_maximum_energy" } }, - [1016]={ + [1046]={ [1]={ [1]={ limit={ @@ -22377,7 +23177,7 @@ return { [1]="glacial_cascade_travel_speed_+%" } }, - [1017]={ + [1047]={ [1]={ [1]={ limit={ @@ -22393,7 +23193,7 @@ return { [1]="global_bleed_on_hit" } }, - [1018]={ + [1048]={ [1]={ [1]={ limit={ @@ -22409,7 +23209,7 @@ return { [1]="global_knockback" } }, - [1019]={ + [1049]={ [1]={ [1]={ limit={ @@ -22425,7 +23225,7 @@ return { [1]="global_maim_on_hit" } }, - [1020]={ + [1050]={ [1]={ [1]={ limit={ @@ -22446,7 +23246,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [1021]={ + [1051]={ [1]={ [1]={ [1]={ @@ -22479,7 +23279,7 @@ return { [1]="glorious_madness_timer_ms" } }, - [1022]={ + [1052]={ [1]={ [1]={ limit={ @@ -22508,7 +23308,7 @@ return { [1]="golem_buff_effect_+%" } }, - [1023]={ + [1053]={ [1]={ [1]={ limit={ @@ -22537,14 +23337,14 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [1024]={ + [1054]={ [1]={ }, stats={ [1]="grenade_skill_%_chance_to_explode_twice" } }, - [1025]={ + [1055]={ [1]={ [1]={ limit={ @@ -22587,7 +23387,7 @@ return { [3]="quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem" } }, - [1026]={ + [1056]={ [1]={ [1]={ limit={ @@ -22616,7 +23416,7 @@ return { [1]="ground_slam_angle_+%" } }, - [1027]={ + [1057]={ [1]={ [1]={ limit={ @@ -22632,7 +23432,36 @@ return { [1]="has_freeze_cull" } }, - [1028]={ + [1058]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage if destroyed within 0.5 seconds by something other than you" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage if not destroyed withint 0.5 seconds by something other than you" + } + }, + stats={ + [1]="hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + } + }, + [1059]={ [1]={ [1]={ limit={ @@ -22657,7 +23486,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [1029]={ + [1060]={ [1]={ [1]={ limit={ @@ -22673,7 +23502,7 @@ return { [1]="herald_of_agony_add_stack_on_poison" } }, - [1030]={ + [1061]={ [1]={ [1]={ limit={ @@ -22702,7 +23531,94 @@ return { [1]="herald_of_agony_poison_effect_+%_final" } }, - [1031]={ + [1062]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Fire damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Fire damage" + } + }, + stats={ + [1]="herald_of_ash_fire_damage_+%" + } + }, + [1063]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Physical damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Physical damage" + } + }, + stats={ + [1]="herald_of_blood_global_physical_damage_granted_+%" + } + }, + [1064]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Cold damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Cold damage" + } + }, + stats={ + [1]="herald_of_ice_cold_damage_+%" + } + }, + [1065]={ [1]={ [1]={ limit={ @@ -22718,7 +23634,7 @@ return { [1]="herald_of_light_summon_champion_on_kill" } }, - [1032]={ + [1066]={ [1]={ [1]={ limit={ @@ -22743,7 +23659,7 @@ return { [1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%" } }, - [1033]={ + [1067]={ [1]={ [1]={ limit={ @@ -22772,7 +23688,36 @@ return { [1]="herald_of_purity_physical_damage_+%_final" } }, - [1034]={ + [1068]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Lightning damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Lightning damage" + } + }, + stats={ + [1]="herald_of_thunder_lightning_damage_+%" + } + }, + [1069]={ [1]={ [1]={ limit={ @@ -22788,7 +23733,7 @@ return { [1]="hex_transfer_on_death_total_range" } }, - [1035]={ + [1070]={ [1]={ [1]={ limit={ @@ -22817,7 +23762,7 @@ return { [1]="hexblast_damage_+%_final_per_second_remaining_curse_duration" } }, - [1036]={ + [1071]={ [1]={ [1]={ limit={ @@ -22833,7 +23778,7 @@ return { [1]="hexblast_hit_damage_+%_final_if_hexed" } }, - [1037]={ + [1072]={ [1]={ [1]={ limit={ @@ -22862,7 +23807,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [1038]={ + [1073]={ [1]={ [1]={ limit={ @@ -22878,7 +23823,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [1039]={ + [1074]={ [1]={ [1]={ limit={ @@ -22907,7 +23852,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [1040]={ + [1075]={ [1]={ [1]={ limit={ @@ -22936,7 +23881,7 @@ return { [1]="hit_damage_stun_multiplier_+%" } }, - [1041]={ + [1076]={ [1]={ [1]={ limit={ @@ -22965,7 +23910,7 @@ return { [1]="hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour" } }, - [1042]={ + [1077]={ [1]={ [1]={ limit={ @@ -22981,7 +23926,7 @@ return { [1]="hit_%_chance_to_be_dazing" } }, - [1043]={ + [1078]={ [1]={ [1]={ limit={ @@ -22997,7 +23942,7 @@ return { [1]="hits_grant_cruelty" } }, - [1044]={ + [1079]={ [1]={ [1]={ limit={ @@ -23013,7 +23958,7 @@ return { [1]="hits_ignore_all_enemy_monster_resistances" } }, - [1045]={ + [1080]={ [1]={ [1]={ limit={ @@ -23029,7 +23974,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction" } }, - [1046]={ + [1081]={ [1]={ [1]={ limit={ @@ -23045,7 +23990,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [1047]={ + [1082]={ [1]={ [1]={ limit={ @@ -23061,7 +24006,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [1048]={ + [1083]={ [1]={ [1]={ [1]={ @@ -23081,7 +24026,7 @@ return { [1]="holy_relic_nova_life_regeneration_rate_per_minute" } }, - [1049]={ + [1084]={ [1]={ [1]={ limit={ @@ -23097,7 +24042,7 @@ return { [1]="holy_relic_nova_minion_life_regeneration_rate_per_second" } }, - [1050]={ + [1085]={ [1]={ [1]={ [1]={ @@ -23117,14 +24062,14 @@ return { [1]="hundred_times_attacks_per_second" } }, - [1051]={ + [1086]={ [1]={ }, stats={ [1]="hundred_times_average_damage_per_skill_use" } }, - [1052]={ + [1087]={ [1]={ [1]={ [1]={ @@ -23144,14 +24089,14 @@ return { [1]="hundred_times_casts_per_second" } }, - [1053]={ + [1088]={ [1]={ }, stats={ [1]="hundred_times_damage_per_second" } }, - [1054]={ + [1089]={ [1]={ [1]={ [1]={ @@ -23171,7 +24116,7 @@ return { [1]="hydro_sphere_pulse_frequency_ms" } }, - [1055]={ + [1090]={ [1]={ [1]={ [1]={ @@ -23204,7 +24149,7 @@ return { [1]="hydrosphere_hit_cooldown_ms" } }, - [1056]={ + [1091]={ [1]={ [1]={ limit={ @@ -23233,7 +24178,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [1057]={ + [1092]={ [1]={ [1]={ limit={ @@ -23249,7 +24194,7 @@ return { [1]="ice_crystal_shatter_detonation_area_of_effect_+%_final" } }, - [1058]={ + [1093]={ [1]={ [1]={ limit={ @@ -23265,7 +24210,7 @@ return { [1]="ice_crystal_shatter_detonation_damage_+%_final" } }, - [1059]={ + [1094]={ [1]={ [1]={ [1]={ @@ -23291,10 +24236,10 @@ return { } }, stats={ - [1]="ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + [1]="ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, - [1060]={ + [1095]={ [1]={ [1]={ limit={ @@ -23336,7 +24281,7 @@ return { [2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy" } }, - [1061]={ + [1096]={ [1]={ [1]={ limit={ @@ -23369,7 +24314,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [1062]={ + [1097]={ [1]={ [1]={ [1]={ @@ -23402,14 +24347,14 @@ return { [1]="igneous_shield_perfect_block_window_time_ms" } }, - [1063]={ + [1098]={ [1]={ }, stats={ [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [1064]={ + [1099]={ [1]={ [1]={ limit={ @@ -23425,7 +24370,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [1065]={ + [1100]={ [1]={ [1]={ limit={ @@ -23441,7 +24386,7 @@ return { [1]="immolation_brand_burn_damage_+%_final_per_stage" } }, - [1066]={ + [1101]={ [1]={ [1]={ [1]={ @@ -23474,7 +24419,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [1067]={ + [1102]={ [1]={ [1]={ limit={ @@ -23503,7 +24448,7 @@ return { [1]="impacting_steel_secondary_projectile_damage_+%_final" } }, - [1068]={ + [1103]={ [1]={ [1]={ limit={ @@ -23532,7 +24477,7 @@ return { [1]="impale_magnitude_+%" } }, - [1069]={ + [1104]={ [1]={ [1]={ limit={ @@ -23557,7 +24502,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [1070]={ + [1105]={ [1]={ [1]={ limit={ @@ -23586,7 +24531,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [1071]={ + [1106]={ [1]={ [1]={ limit={ @@ -23615,7 +24560,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [1072]={ + [1107]={ [1]={ [1]={ limit={ @@ -23644,7 +24589,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [1073]={ + [1108]={ [1]={ [1]={ limit={ @@ -23669,7 +24614,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [1074]={ + [1109]={ [1]={ [1]={ limit={ @@ -23685,7 +24630,7 @@ return { [1]="infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [1075]={ + [1110]={ [1]={ [1]={ limit={ @@ -23701,7 +24646,7 @@ return { [1]="infernal_cry_explosion_fire_damage_+%_final_per_corpse_power" } }, - [1076]={ + [1111]={ [1]={ [1]={ limit={ @@ -23717,7 +24662,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [1077]={ + [1112]={ [1]={ [1]={ [1]={ @@ -23737,7 +24682,7 @@ return { [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [1078]={ + [1113]={ [1]={ [1]={ [1]={ @@ -23757,7 +24702,7 @@ return { [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [1079]={ + [1114]={ [1]={ [1]={ [1]={ @@ -23777,7 +24722,7 @@ return { [1]="inflict_exposure_for_x_ms_on_shock" } }, - [1080]={ + [1115]={ [1]={ [1]={ limit={ @@ -23802,7 +24747,7 @@ return { [1]="inflict_exposure_on_hit_%_chance" } }, - [1081]={ + [1116]={ [1]={ [1]={ ["gem_quality"]=true, @@ -23828,7 +24773,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy" } }, - [1082]={ + [1117]={ [1]={ [1]={ ["gem_quality"]=true, @@ -23854,7 +24799,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy" } }, - [1083]={ + [1118]={ [1]={ [1]={ ["gem_quality"]=true, @@ -23880,7 +24825,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy" } }, - [1084]={ + [1119]={ [1]={ [1]={ limit={ @@ -23909,7 +24854,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [1085]={ + [1120]={ [1]={ [1]={ [1]={ @@ -23929,7 +24874,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [1086]={ + [1121]={ [1]={ [1]={ [1]={ @@ -23949,7 +24894,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [1087]={ + [1122]={ [1]={ [1]={ [1]={ @@ -23969,7 +24914,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [1088]={ + [1123]={ [1]={ [1]={ [1]={ @@ -23989,7 +24934,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [1089]={ + [1124]={ [1]={ [1]={ [1]={ @@ -24009,7 +24954,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [1090]={ + [1125]={ [1]={ [1]={ [1]={ @@ -24029,7 +24974,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [1091]={ + [1126]={ [1]={ [1]={ [1]={ @@ -24049,7 +24994,7 @@ return { [1]="intermediary_lightning_skill_dot_area_damage_to_deal_per_minute" } }, - [1092]={ + [1127]={ [1]={ [1]={ [1]={ @@ -24069,7 +25014,7 @@ return { [1]="intermediary_lightning_skill_dot_damage_to_deal_per_minute" } }, - [1093]={ + [1128]={ [1]={ [1]={ [1]={ @@ -24089,7 +25034,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [1094]={ + [1129]={ [1]={ [1]={ [1]={ @@ -24109,7 +25054,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [1095]={ + [1130]={ [1]={ [1]={ [1]={ @@ -24129,7 +25074,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [1096]={ + [1131]={ [1]={ [1]={ limit={ @@ -24145,14 +25090,14 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [1097]={ + [1132]={ [1]={ }, stats={ [1]="jagged_ground_duration_ms" } }, - [1098]={ + [1133]={ [1]={ [1]={ limit={ @@ -24168,7 +25113,7 @@ return { [1]="killing_blow_consumes_corpse_restore_%_life" } }, - [1099]={ + [1134]={ [1]={ [1]={ limit={ @@ -24184,7 +25129,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [1100]={ + [1135]={ [1]={ [1]={ limit={ @@ -24200,7 +25145,7 @@ return { [1]="kinetic_bolt_forks_apply_to_zig_zags" } }, - [1101]={ + [1136]={ [1]={ [1]={ limit={ @@ -24216,7 +25161,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [1102]={ + [1137]={ [1]={ [1]={ limit={ @@ -24245,7 +25190,7 @@ return { [1]="lacerate_hit_damage_+%_final_vs_bleeding_enemies" } }, - [1103]={ + [1138]={ [1]={ [1]={ limit={ @@ -24274,7 +25219,7 @@ return { [1]="lancing_steel_damage_+%_at_close_range" } }, - [1104]={ + [1139]={ [1]={ [1]={ limit={ @@ -24303,7 +25248,7 @@ return { [1]="lancing_steel_damage_+%_final_after_first_hit_on_target" } }, - [1105]={ + [1140]={ [1]={ [1]={ limit={ @@ -24332,7 +25277,7 @@ return { [1]="lancing_steel_targeting_range_+%" } }, - [1106]={ + [1141]={ [1]={ [1]={ limit={ @@ -24348,7 +25293,7 @@ return { [1]="life_leech_also_recovers_based_on_elemental_damage_types" } }, - [1107]={ + [1142]={ [1]={ [1]={ limit={ @@ -24377,7 +25322,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [1108]={ + [1143]={ [1]={ [1]={ limit={ @@ -24402,7 +25347,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [1109]={ + [1144]={ [1]={ [1]={ limit={ @@ -24431,7 +25376,7 @@ return { [1]="lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [1110]={ + [1145]={ [1]={ [1]={ limit={ @@ -24447,7 +25392,7 @@ return { [1]="lightning_rod_%_chance_for_additional_burst_on_landing" } }, - [1111]={ + [1146]={ [1]={ [1]={ limit={ @@ -24476,7 +25421,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final" } }, - [1112]={ + [1147]={ [1]={ [1]={ limit={ @@ -24492,7 +25437,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_radius_+" } }, - [1113]={ + [1148]={ [1]={ [1]={ limit={ @@ -24530,7 +25475,7 @@ return { [2]="lightning_tower_trap_interval_duration_ms" } }, - [1114]={ + [1149]={ [1]={ [1]={ [1]={ @@ -24563,7 +25508,14 @@ return { [1]="lightning_warp_shocked_ground_base_duration_ms" } }, - [1115]={ + [1150]={ + [1]={ + }, + stats={ + [1]="lose_%_of_maximum_rage_on_dealing_critical_strike" + } + }, + [1151]={ [1]={ [1]={ limit={ @@ -24579,7 +25531,23 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1116]={ + [1152]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants {0:+d}% to maximum Block Chance" + } + }, + stats={ + [1]="magma_barrier_maximum_block_chance_granted_%" + } + }, + [1153]={ [1]={ [1]={ limit={ @@ -24608,7 +25576,7 @@ return { [1]="magma_brand_hit_damage_+%_final_per_additional_pustule" } }, - [1117]={ + [1154]={ [1]={ [1]={ limit={ @@ -24624,7 +25592,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [1118]={ + [1155]={ [1]={ [1]={ limit={ @@ -24653,7 +25621,7 @@ return { [1]="maim_effect_+%" } }, - [1119]={ + [1156]={ [1]={ [1]={ limit={ @@ -24678,110 +25646,115 @@ return { [1]="maim_on_hit_%" } }, - [1120]={ + [1157]={ [1]={ }, stats={ [1]="main_hand_accuracy_rating" } }, - [1121]={ + [1158]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1122]={ + [1159]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_cold_resist_%" } }, - [1123]={ + [1160]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_fire_resist_%" } }, - [1124]={ + [1161]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1125]={ + [1162]={ [1]={ }, stats={ [1]="main_hand_critical_hit_damage_bonus" } }, - [1126]={ + [1163]={ [1]={ }, stats={ [1]="main_hand_critical_strike_chance" } }, - [1127]={ + [1164]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1128]={ + [1165]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1129]={ + [1166]={ [1]={ }, stats={ [1]="main_hand_minimum_chaos_damage", - [2]="main_hand_maximum_chaos_damage" + [2]="main_hand_maximum_chaos_damage", + [3]="main_hand_chaos_damage_only_min_or_max" } }, - [1130]={ + [1167]={ [1]={ }, stats={ [1]="main_hand_minimum_cold_damage", - [2]="main_hand_maximum_cold_damage" + [2]="main_hand_maximum_cold_damage", + [3]="main_hand_cold_damage_only_min_or_max" } }, - [1131]={ + [1168]={ [1]={ }, stats={ [1]="main_hand_minimum_fire_damage", - [2]="main_hand_maximum_fire_damage" + [2]="main_hand_maximum_fire_damage", + [3]="main_hand_fire_damage_only_min_or_max" } }, - [1132]={ + [1169]={ [1]={ }, stats={ [1]="main_hand_minimum_lightning_damage", - [2]="main_hand_maximum_lightning_damage" + [2]="main_hand_maximum_lightning_damage", + [3]="main_hand_lightning_damage_only_min_or_max" } }, - [1133]={ + [1170]={ [1]={ }, stats={ [1]="main_hand_minimum_physical_damage", - [2]="main_hand_maximum_physical_damage" + [2]="main_hand_maximum_physical_damage", + [3]="main_hand_physical_damage_only_min_or_max" } }, - [1134]={ + [1171]={ [1]={ }, stats={ @@ -24789,14 +25762,14 @@ return { [2]="main_hand_maximum_total_damage" } }, - [1135]={ + [1172]={ [1]={ }, stats={ [1]="main_hand_reload_time" } }, - [1136]={ + [1173]={ [1]={ [1]={ [1]={ @@ -24816,7 +25789,7 @@ return { [1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute" } }, - [1137]={ + [1174]={ [1]={ [1]={ limit={ @@ -24845,7 +25818,36 @@ return { [1]="mana_gain_per_target" } }, - [1138]={ + [1175]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Mana Regeneration Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Mana Regeneration Rate" + } + }, + stats={ + [1]="mana_remnants_global_mana_regeneration_rate_granted_+%" + } + }, + [1176]={ [1]={ [1]={ [1]={ @@ -24878,7 +25880,7 @@ return { [1]="mana_tempest_effects_linger_X_ms" } }, - [1139]={ + [1177]={ [1]={ [1]={ limit={ @@ -24894,7 +25896,7 @@ return { [1]="mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage" } }, - [1140]={ + [1178]={ [1]={ [1]={ limit={ @@ -24910,7 +25912,7 @@ return { [1]="manaforged_arrows_total_mana_threshold" } }, - [1141]={ + [1179]={ [1]={ [1]={ limit={ @@ -24926,14 +25928,14 @@ return { [1]="mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [1142]={ + [1180]={ [1]={ }, stats={ [1]="mark_effect_+%" } }, - [1143]={ + [1181]={ [1]={ [1]={ limit={ @@ -24949,7 +25951,7 @@ return { [1]="max_crab_aspect_stacks" } }, - [1144]={ + [1182]={ [1]={ [1]={ limit={ @@ -24965,7 +25967,7 @@ return { [1]="max_number_of_absolution_sentinels" } }, - [1145]={ + [1183]={ [1]={ [1]={ limit={ @@ -24981,7 +25983,7 @@ return { [1]="max_number_of_lightning_warp_markers" } }, - [1146]={ + [1184]={ [1]={ [1]={ limit={ @@ -24997,7 +25999,7 @@ return { [1]="max_steel_ammo" } }, - [1147]={ + [1185]={ [1]={ [1]={ limit={ @@ -25013,7 +26015,7 @@ return { [1]="maximum_life_%_damage_absorbed_per_jade_consumed" } }, - [1148]={ + [1186]={ [1]={ [1]={ limit={ @@ -25042,49 +26044,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [1149]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Gains a Stage every second, up to a maximum of {1} Stages" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="Gains a Stage every {0} seconds, up to a maximum of {1} Stages" - } - }, - stats={ - [1]="base_active_skill_buff_stack_gain_frequency_ms", - [2]="maximum_number_of_arctic_armour_stationary_stacks" - } - }, - [1150]={ + [1187]={ [1]={ [1]={ limit={ @@ -25100,7 +26060,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [1151]={ + [1188]={ [1]={ [1]={ limit={ @@ -25134,7 +26094,7 @@ return { [2]="quality_display_rapid_shot_maximum_num_of_stacks_is_gem" } }, - [1152]={ + [1189]={ [1]={ [1]={ limit={ @@ -25159,7 +26119,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [1153]={ + [1190]={ [1]={ [1]={ limit={ @@ -25184,7 +26144,7 @@ return { [1]="maximum_number_of_mirage_warriors" } }, - [1154]={ + [1191]={ [1]={ [1]={ limit={ @@ -25244,7 +26204,7 @@ return { [3]="vaal_venom_gyre_capture_x_projectiles_per_second" } }, - [1155]={ + [1192]={ [1]={ [1]={ limit={ @@ -25269,7 +26229,7 @@ return { [1]="maximum_number_of_summoned_doubles" } }, - [1156]={ + [1193]={ [1]={ [1]={ limit={ @@ -25294,7 +26254,23 @@ return { [1]="maximum_number_of_vaal_ice_shot_mirages" } }, - [1157]={ + [1194]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0} to maximum Verisium Infusions" + } + }, + stats={ + [1]="maximum_verisium_infusion_stacks" + } + }, + [1195]={ [1]={ [1]={ limit={ @@ -25310,7 +26286,7 @@ return { [1]="maximum_virulence_stacks" } }, - [1158]={ + [1196]={ [1]={ [1]={ limit={ @@ -25339,7 +26315,7 @@ return { [1]="meditate_energy_shield_recharge_rate_+%_final" } }, - [1159]={ + [1197]={ [1]={ [1]={ limit={ @@ -25364,7 +26340,7 @@ return { [1]="virtual_number_of_spirit_strikes" } }, - [1160]={ + [1198]={ [1]={ [1]={ [1]={ @@ -25384,7 +26360,7 @@ return { [1]="melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [1161]={ + [1199]={ [1]={ [1]={ limit={ @@ -25400,7 +26376,7 @@ return { [1]="mine_cannot_rearm" } }, - [1162]={ + [1200]={ [1]={ [1]={ limit={ @@ -25429,7 +26405,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [1163]={ + [1201]={ [1]={ [1]={ limit={ @@ -25445,7 +26421,7 @@ return { [1]="mine_detonates_instantly" } }, - [1164]={ + [1202]={ [1]={ [1]={ limit={ @@ -25474,7 +26450,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [1165]={ + [1203]={ [1]={ [1]={ limit={ @@ -25503,7 +26479,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [1166]={ + [1204]={ [1]={ [1]={ limit={ @@ -25532,7 +26508,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [1167]={ + [1205]={ [1]={ [1]={ limit={ @@ -25553,7 +26529,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [1168]={ + [1206]={ [1]={ [1]={ limit={ @@ -25574,7 +26550,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [1169]={ + [1207]={ [1]={ [1]={ limit={ @@ -25595,7 +26571,7 @@ return { [2]="maximum_added_lightning_damage_from_skill" } }, - [1170]={ + [1208]={ [1]={ [1]={ limit={ @@ -25611,7 +26587,7 @@ return { [1]="minimum_power_from_quality" } }, - [1171]={ + [1209]={ [1]={ [1]={ limit={ @@ -25632,7 +26608,7 @@ return { [2]="maximum_secondary_physical_damage_per_15_strength" } }, - [1172]={ + [1210]={ [1]={ }, stats={ @@ -25640,7 +26616,7 @@ return { [2]="maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite" } }, - [1173]={ + [1211]={ [1]={ [1]={ limit={ @@ -25656,7 +26632,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1174]={ + [1212]={ [1]={ [1]={ limit={ @@ -25672,7 +26648,7 @@ return { [1]="minion_block_%" } }, - [1175]={ + [1213]={ [1]={ [1]={ limit={ @@ -25701,7 +26677,7 @@ return { [1]="minion_burning_damage_+%" } }, - [1176]={ + [1214]={ [1]={ [1]={ limit={ @@ -25717,7 +26693,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [1177]={ + [1215]={ [1]={ [1]={ limit={ @@ -25733,7 +26709,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [1178]={ + [1216]={ [1]={ [1]={ limit={ @@ -25762,7 +26738,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [1179]={ + [1217]={ [1]={ [1]={ limit={ @@ -25791,7 +26767,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [1180]={ + [1218]={ [1]={ [1]={ limit={ @@ -25820,23 +26796,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [1181]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Minions have {0}% chance to grant Feeding Frenzy to you on Hit" - } - }, - stats={ - [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" - } - }, - [1182]={ + [1219]={ [1]={ [1]={ [1]={ @@ -25856,7 +26816,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [1183]={ + [1220]={ [1]={ [1]={ limit={ @@ -25872,7 +26832,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [1184]={ + [1221]={ [1]={ [1]={ limit={ @@ -25888,7 +26848,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [1185]={ + [1222]={ [1]={ [1]={ limit={ @@ -25917,7 +26877,7 @@ return { [1]="minion_melee_damage_+%" } }, - [1186]={ + [1223]={ [1]={ [1]={ limit={ @@ -25942,7 +26902,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [1187]={ + [1224]={ [1]={ [1]={ limit={ @@ -25971,7 +26931,7 @@ return { [1]="minion_rage_effect_+%" } }, - [1188]={ + [1225]={ [1]={ [1]={ limit={ @@ -26000,7 +26960,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [1189]={ + [1226]={ [1]={ [1]={ limit={ @@ -26029,7 +26989,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [1190]={ + [1227]={ [1]={ [1]={ [1]={ @@ -26062,7 +27022,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [1191]={ + [1228]={ [1]={ [1]={ limit={ @@ -26087,7 +27047,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [1192]={ + [1229]={ [1]={ [1]={ limit={ @@ -26103,7 +27063,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [1193]={ + [1230]={ [1]={ [1]={ limit={ @@ -26128,7 +27088,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [1194]={ + [1231]={ [1]={ [1]={ limit={ @@ -26144,7 +27104,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [1195]={ + [1232]={ [1]={ [1]={ limit={ @@ -26160,7 +27120,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [1196]={ + [1233]={ [1]={ [1]={ limit={ @@ -26203,7 +27163,7 @@ return { [3]="molten_shell_max_damage_absorbed" } }, - [1197]={ + [1234]={ [1]={ [1]={ limit={ @@ -26237,7 +27197,7 @@ return { [2]="display_vaal_molten_shell_alternate_description" } }, - [1198]={ + [1235]={ [1]={ [1]={ limit={ @@ -26253,7 +27213,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [1199]={ + [1236]={ [1]={ [1]={ limit={ @@ -26269,7 +27229,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [1200]={ + [1237]={ [1]={ [1]={ limit={ @@ -26298,7 +27258,7 @@ return { [1]="mortal_call_elemental_damage_taken_+%_final" } }, - [1201]={ + [1238]={ [1]={ [1]={ limit={ @@ -26327,7 +27287,7 @@ return { [1]="mortal_call_physical_damage_taken_+%_final" } }, - [1202]={ + [1239]={ [1]={ [1]={ [1]={ @@ -26386,7 +27346,7 @@ return { [2]="quality_display_immortal_call_is_gem" } }, - [1203]={ + [1240]={ [1]={ [1]={ limit={ @@ -26415,123 +27375,33 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [1204]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Area of Effect per Repeat" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Area of Effect per Repeat" - } - }, - stats={ - [1]="multistrike_area_of_effect_+%_per_repeat" - } - }, - [1205]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="First Repeat deals {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="First Repeat deals {0}% less Damage" - } - }, - stats={ - [1]="multistrike_damage_+%_final_on_first_repeat" - } - }, - [1206]={ + [1241]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]=1, [2]="#" } }, - text="Second Repeat deals {0}% more Damage" + text="Empowered Skills have {0}% increased Projectile speed" }, [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Second Repeat deals {0}% less Damage" - } - }, - stats={ - [1]="multistrike_damage_+%_final_on_second_repeat" - } - }, - [1207]={ - [1]={ - [1]={ limit={ [1]={ [1]=1, [2]="#" } }, - text="Third Repeat deals {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Third Repeat deals {0}% less Damage" + text="Empowered Skills fire 2 additional Projectiles\nEmpowered Skills have {0}% increased Projectile speed" } }, stats={ - [1]="multistrike_damage_+%_final_on_third_repeat" + [1]="multishot_empowered_projectile_speed_+%" } }, - [1208]={ + [1242]={ [1]={ [1]={ limit={ @@ -26547,7 +27417,7 @@ return { [1]="never_ignite" } }, - [1209]={ + [1243]={ [1]={ [1]={ limit={ @@ -26563,7 +27433,7 @@ return { [1]="never_shock" } }, - [1210]={ + [1244]={ [1]={ [1]={ limit={ @@ -26579,7 +27449,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [1211]={ + [1245]={ [1]={ [1]={ limit={ @@ -26608,7 +27478,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [1212]={ + [1246]={ [1]={ [1]={ limit={ @@ -26624,7 +27494,7 @@ return { [1]="non_modifiable_totem_limit" } }, - [1213]={ + [1247]={ [1]={ [1]={ limit={ @@ -26640,14 +27510,14 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff" } }, - [1214]={ + [1248]={ [1]={ }, stats={ [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [1215]={ + [1249]={ [1]={ [1]={ limit={ @@ -26681,7 +27551,7 @@ return { [2]="quality_display_mana_tempest_is_gem" } }, - [1216]={ + [1250]={ [1]={ [1]={ limit={ @@ -26697,21 +27567,21 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [1217]={ + [1251]={ [1]={ }, stats={ [1]="non_spell_cast_duration_ms" } }, - [1218]={ + [1252]={ [1]={ }, stats={ [1]="nova_skills_cast_at_target_location" } }, - [1219]={ + [1253]={ [1]={ [1]={ limit={ @@ -26736,14 +27606,14 @@ return { [1]="number_of_additional_chain_targets" } }, - [1220]={ + [1254]={ [1]={ }, stats={ [1]="number_of_additional_fissures" } }, - [1221]={ + [1255]={ [1]={ [1]={ limit={ @@ -26768,7 +27638,7 @@ return { [1]="number_of_additional_impaled_debuffs_to_apply" } }, - [1222]={ + [1256]={ [1]={ [1]={ limit={ @@ -26784,7 +27654,7 @@ return { [1]="number_of_allowed_storm_arrows" } }, - [1223]={ + [1257]={ [1]={ [1]={ limit={ @@ -26809,7 +27679,7 @@ return { [1]="number_of_branching_fissures" } }, - [1224]={ + [1258]={ [1]={ [1]={ limit={ @@ -26834,7 +27704,7 @@ return { [1]="number_of_champions_of_light_allowed" } }, - [1225]={ + [1259]={ [1]={ [1]={ limit={ @@ -26859,14 +27729,14 @@ return { [1]="number_of_corpses_to_consume" } }, - [1226]={ + [1260]={ [1]={ }, stats={ [1]="number_of_crossbow_bolts" } }, - [1227]={ + [1261]={ [1]={ [1]={ limit={ @@ -26891,7 +27761,7 @@ return { [1]="base_number_of_effigies_allowed" } }, - [1228]={ + [1262]={ [1]={ [1]={ limit={ @@ -26916,7 +27786,7 @@ return { [1]="number_of_herald_scorpions_allowed" } }, - [1229]={ + [1263]={ [1]={ [1]={ limit={ @@ -26941,7 +27811,7 @@ return { [1]="number_of_marks_allowed_per_type" } }, - [1230]={ + [1264]={ [1]={ [1]={ limit={ @@ -26966,7 +27836,7 @@ return { [1]="number_of_mirage_archers_allowed" } }, - [1231]={ + [1265]={ [1]={ [1]={ limit={ @@ -26991,7 +27861,7 @@ return { [1]="number_of_reapers_allowed" } }, - [1232]={ + [1266]={ [1]={ [1]={ limit={ @@ -27016,21 +27886,28 @@ return { [1]="number_of_relics_allowed" } }, - [1233]={ + [1267]={ + [1]={ + }, + stats={ + [1]="number_of_runic_aftershocks_allowed" + } + }, + [1268]={ [1]={ }, stats={ [1]="number_of_skeletal_constructs_allowed" } }, - [1234]={ + [1269]={ [1]={ }, stats={ [1]="number_of_tempest_bells_allowed" } }, - [1235]={ + [1270]={ [1]={ [1]={ limit={ @@ -27046,110 +27923,115 @@ return { [1]="number_of_totems_to_summon" } }, - [1236]={ + [1271]={ [1]={ }, stats={ [1]="off_hand_accuracy_rating" } }, - [1237]={ + [1272]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1238]={ + [1273]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_cold_resist_%" } }, - [1239]={ + [1274]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_fire_resist_%" } }, - [1240]={ + [1275]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1241]={ + [1276]={ [1]={ }, stats={ [1]="off_hand_critical_hit_damage_bonus" } }, - [1242]={ + [1277]={ [1]={ }, stats={ [1]="off_hand_critical_strike_chance" } }, - [1243]={ + [1278]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1244]={ + [1279]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1245]={ + [1280]={ [1]={ }, stats={ [1]="off_hand_minimum_chaos_damage", - [2]="off_hand_maximum_chaos_damage" + [2]="off_hand_maximum_chaos_damage", + [3]="off_hand_chaos_damage_only_min_or_max" } }, - [1246]={ + [1281]={ [1]={ }, stats={ [1]="off_hand_minimum_cold_damage", - [2]="off_hand_maximum_cold_damage" + [2]="off_hand_maximum_cold_damage", + [3]="off_hand_cold_damage_only_min_or_max" } }, - [1247]={ + [1282]={ [1]={ }, stats={ [1]="off_hand_minimum_fire_damage", - [2]="off_hand_maximum_fire_damage" + [2]="off_hand_maximum_fire_damage", + [3]="off_hand_fire_damage_only_min_or_max" } }, - [1248]={ + [1283]={ [1]={ }, stats={ [1]="off_hand_minimum_lightning_damage", - [2]="off_hand_maximum_lightning_damage" + [2]="off_hand_maximum_lightning_damage", + [3]="off_hand_lightning_damage_only_min_or_max" } }, - [1249]={ + [1284]={ [1]={ }, stats={ [1]="off_hand_minimum_physical_damage", - [2]="off_hand_maximum_physical_damage" + [2]="off_hand_maximum_physical_damage", + [3]="off_hand_physical_damage_only_min_or_max" } }, - [1250]={ + [1285]={ [1]={ }, stats={ @@ -27157,14 +28039,14 @@ return { [2]="off_hand_maximum_total_damage" } }, - [1251]={ + [1286]={ [1]={ }, stats={ [1]="orb_of_storms_bolt_frequency_ms" } }, - [1252]={ + [1287]={ [1]={ [1]={ [1]={ @@ -27197,7 +28079,7 @@ return { [1]="orb_of_storms_channelling_bolt_frequency_ms" } }, - [1253]={ + [1288]={ [1]={ [1]={ limit={ @@ -27213,7 +28095,7 @@ return { [1]="orb_of_storms_maximum_number_of_hits" } }, - [1254]={ + [1289]={ [1]={ [1]={ limit={ @@ -27229,7 +28111,7 @@ return { [1]="orb_of_storms_maximum_number_of_orbs" } }, - [1255]={ + [1290]={ [1]={ [1]={ limit={ @@ -27245,7 +28127,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [1256]={ + [1291]={ [1]={ [1]={ limit={ @@ -27274,7 +28156,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [1257]={ + [1292]={ [1]={ [1]={ limit={ @@ -27290,7 +28172,7 @@ return { [1]="penance_brand_additional_descriptions_boolean" } }, - [1258]={ + [1293]={ [1]={ [1]={ limit={ @@ -27306,7 +28188,7 @@ return { [1]="penance_brand_base_spread_radius_+" } }, - [1259]={ + [1294]={ [1]={ [1]={ limit={ @@ -27322,7 +28204,7 @@ return { [1]="penetrate_%_fire_resistance_per_100_dexterity" } }, - [1260]={ + [1295]={ [1]={ [1]={ limit={ @@ -27347,7 +28229,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [1261]={ + [1296]={ [1]={ [1]={ limit={ @@ -27372,7 +28254,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [1262]={ + [1297]={ [1]={ [1]={ limit={ @@ -27397,7 +28279,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1263]={ + [1298]={ [1]={ [1]={ limit={ @@ -27422,7 +28304,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1264]={ + [1299]={ [1]={ [1]={ limit={ @@ -27438,7 +28320,7 @@ return { [1]="petrification_statue_target_action_speed_-%" } }, - [1265]={ + [1300]={ [1]={ [1]={ limit={ @@ -27459,7 +28341,7 @@ return { [2]="phantasm_grant_buff_maximum_added_physical_damage" } }, - [1266]={ + [1301]={ [1]={ [1]={ limit={ @@ -27484,7 +28366,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [1267]={ + [1302]={ [1]={ [1]={ limit={ @@ -27522,7 +28404,7 @@ return { [2]="phys_cascade_trap_interval_duration_ms" } }, - [1268]={ + [1303]={ [1]={ [1]={ limit={ @@ -27538,7 +28420,7 @@ return { [1]="physical_damage_reduction_%_per_crab_aspect_stack" } }, - [1269]={ + [1304]={ [1]={ [1]={ limit={ @@ -27567,7 +28449,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [1270]={ + [1305]={ [1]={ [1]={ limit={ @@ -27588,7 +28470,7 @@ return { [2]="plague_bearer_maximum_stored_poison_damage" } }, - [1271]={ + [1306]={ [1]={ [1]={ limit={ @@ -27617,7 +28499,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [1272]={ + [1307]={ [1]={ [1]={ limit={ @@ -27633,7 +28515,7 @@ return { [1]="plague_burst_%_stored_value_to_deal_as_physical_damage" } }, - [1273]={ + [1308]={ [1]={ [1]={ limit={ @@ -27649,7 +28531,7 @@ return { [1]="plague_burst_area_+%_final_maximum" } }, - [1274]={ + [1309]={ [1]={ [1]={ limit={ @@ -27665,7 +28547,7 @@ return { [1]="plague_burst_triggered_by_bursting_plague_death" } }, - [1275]={ + [1310]={ [1]={ [1]={ limit={ @@ -27681,7 +28563,7 @@ return { [1]="plant_skill_damage_+%_final_when_wet" } }, - [1276]={ + [1311]={ [1]={ [1]={ limit={ @@ -27710,7 +28592,7 @@ return { [1]="base_poison_effect_+%" } }, - [1277]={ + [1312]={ [1]={ [1]={ [1]={ @@ -27752,7 +28634,7 @@ return { [2]="toxic_pustule_max_additional_burst_base_radius_+" } }, - [1278]={ + [1313]={ [1]={ [1]={ limit={ @@ -27773,7 +28655,7 @@ return { [2]="toxic_pustule_max_burst_damage_+%_final_from_stored_poison" } }, - [1279]={ + [1314]={ [1]={ [1]={ [1]={ @@ -27793,7 +28675,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [1280]={ + [1315]={ [1]={ [1]={ limit={ @@ -27809,7 +28691,7 @@ return { [1]="predict_totem_maximum_energy_shield" } }, - [1281]={ + [1316]={ [1]={ [1]={ limit={ @@ -27825,32 +28707,7 @@ return { [1]="predict_totem_maximum_life" } }, - [1282]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Primary Projectile Chains {0} Time" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Primary Projectile Chains {0} Times" - } - }, - stats={ - [1]="primary_projectile_chain_num" - } - }, - [1283]={ + [1317]={ [1]={ [1]={ limit={ @@ -27875,7 +28732,7 @@ return { [1]="primary_projectile_impale_chance_%" } }, - [1284]={ + [1318]={ [1]={ [1]={ [1]={ @@ -27908,7 +28765,7 @@ return { [1]="prismatic_rain_beam_frequency_ms" } }, - [1285]={ + [1319]={ [1]={ [1]={ limit={ @@ -27937,7 +28794,7 @@ return { [1]="projectile_attack_damage_+%_in_blood_stance" } }, - [1286]={ + [1320]={ [1]={ [1]={ limit={ @@ -27984,7 +28841,7 @@ return { [2]="projectiles_can_split_from_terrain" } }, - [1287]={ + [1321]={ [1]={ [1]={ limit={ @@ -28000,9 +28857,19 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%" } }, - [1288]={ + [1322]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+{0}% chance to Chain from terrain" + }, + [2]={ limit={ [1]={ [1]=1, @@ -28016,7 +28883,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [1289]={ + [1323]={ [1]={ [1]={ limit={ @@ -28041,7 +28908,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [1290]={ + [1324]={ [1]={ [1]={ limit={ @@ -28070,7 +28937,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [1291]={ + [1325]={ [1]={ [1]={ limit={ @@ -28099,7 +28966,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [1292]={ + [1326]={ [1]={ [1]={ limit={ @@ -28115,14 +28982,14 @@ return { [1]="projectile_only_collide_with_wet_targets" } }, - [1293]={ + [1327]={ [1]={ }, stats={ [1]="projectile_speed_+%" } }, - [1294]={ + [1328]={ [1]={ [1]={ limit={ @@ -28151,14 +29018,30 @@ return { [1]="projectile_speed_+%_in_sand_stance" } }, - [1295]={ + [1329]={ [1]={ }, stats={ [1]="projectiles_can_shotgun" } }, - [1296]={ + [1330]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles cannot Fork" + } + }, + stats={ + [1]="projectiles_cannot_fork" + } + }, + [1331]={ [1]={ [1]={ limit={ @@ -28174,7 +29057,7 @@ return { [1]="projectiles_cannot_split" } }, - [1297]={ + [1332]={ [1]={ [1]={ limit={ @@ -28203,7 +29086,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [1298]={ + [1333]={ [1]={ [1]={ limit={ @@ -28219,7 +29102,23 @@ return { [1]="projectiles_fork_when_passing_a_flame_wall" } }, - [1299]={ + [1334]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Fires Projectiles in a circle" + } + }, + stats={ + [1]="projectiles_nova" + } + }, + [1335]={ [1]={ [1]={ limit={ @@ -28235,7 +29134,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [1300]={ + [1336]={ [1]={ [1]={ limit={ @@ -28251,7 +29150,7 @@ return { [1]="projectiles_rain" } }, - [1301]={ + [1337]={ [1]={ [1]={ [1]={ @@ -28284,7 +29183,7 @@ return { [1]="puppet_master_duration_ms" } }, - [1302]={ + [1338]={ [1]={ [1]={ limit={ @@ -28300,7 +29199,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [1303]={ + [1339]={ [1]={ [1]={ limit={ @@ -28325,7 +29224,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [1304]={ + [1340]={ [1]={ [1]={ [1]={ @@ -28345,7 +29244,7 @@ return { [1]="pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet" } }, - [1305]={ + [1341]={ [1]={ [1]={ limit={ @@ -28366,7 +29265,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [1306]={ + [1342]={ [1]={ [1]={ limit={ @@ -28382,7 +29281,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [1307]={ + [1343]={ [1]={ [1]={ limit={ @@ -28420,7 +29319,7 @@ return { [2]="rage_slash_rage_sacrifice_per_damage_bonus" } }, - [1308]={ + [1344]={ [1]={ [1]={ limit={ @@ -28441,7 +29340,7 @@ return { [2]="rage_slash_rage_sacrifice_per_radius_bonus" } }, - [1309]={ + [1345]={ [1]={ [1]={ limit={ @@ -28470,7 +29369,7 @@ return { [1]="rage_slash_vortex_attack_speed_+%_final" } }, - [1310]={ + [1346]={ [1]={ [1]={ limit={ @@ -28495,7 +29394,7 @@ return { [1]="rage_slash_maximum_vortices" } }, - [1311]={ + [1347]={ [1]={ [1]={ limit={ @@ -28524,7 +29423,7 @@ return { [1]="ragestorm_movement_speed_+%" } }, - [1312]={ + [1348]={ [1]={ [1]={ [1]={ @@ -28557,7 +29456,7 @@ return { [1]="rain_hit_delay_ms" } }, - [1313]={ + [1349]={ [1]={ [1]={ limit={ @@ -28573,7 +29472,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [1314]={ + [1350]={ [1]={ [1]={ limit={ @@ -28602,7 +29501,7 @@ return { [1]="rain_of_arrows_arrow_speed_+%" } }, - [1315]={ + [1351]={ [1]={ [1]={ limit={ @@ -28631,7 +29530,7 @@ return { [1]="raise_zombie_empowerment_effect_+%" } }, - [1316]={ + [1352]={ [1]={ [1]={ limit={ @@ -28647,7 +29546,7 @@ return { [1]="reave_additional_max_stacks" } }, - [1317]={ + [1353]={ [1]={ }, stats={ @@ -28655,7 +29554,7 @@ return { [2]="reaver_enrage_decay_rate_increase_+%_final" } }, - [1318]={ + [1354]={ [1]={ [1]={ limit={ @@ -28684,7 +29583,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [1319]={ + [1355]={ [1]={ [1]={ [1]={ @@ -28704,14 +29603,33 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [1320]={ + [1356]={ [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of maximum Life over four seconds on Culling an Enemy" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of maximum Life over four seconds on Culling an Enemy" + } }, stats={ [1]="recover_%_maximum_life_on_cull" } }, - [1321]={ + [1357]={ [1]={ [1]={ limit={ @@ -28727,7 +29645,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [1322]={ + [1358]={ [1]={ [1]={ [1]={ @@ -28747,14 +29665,14 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [1323]={ + [1359]={ [1]={ }, stats={ [1]="reduce_enemy_chaos_resistance_%" } }, - [1324]={ + [1360]={ [1]={ [1]={ limit={ @@ -28770,28 +29688,28 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [1325]={ + [1361]={ [1]={ }, stats={ [1]="reduce_enemy_cold_resistance_%" } }, - [1326]={ + [1362]={ [1]={ }, stats={ [1]="reduce_enemy_fire_resistance_%" } }, - [1327]={ + [1363]={ [1]={ }, stats={ [1]="reduce_enemy_lightning_resistance_%" } }, - [1328]={ + [1364]={ [1]={ [1]={ limit={ @@ -28807,14 +29725,43 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [1329]={ + [1365]={ [1]={ }, stats={ [1]="reload_speed_+%" } }, - [1330]={ + [1366]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Remnants from this Skill have {0}% increased effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Remnants from this Skill have {0}% reduced effect" + } + }, + stats={ + [1]="remnant_effect_+%" + } + }, + [1367]={ [1]={ [1]={ limit={ @@ -28830,14 +29777,14 @@ return { [1]="remove_freeze_on_ignite" } }, - [1331]={ + [1368]={ [1]={ }, stats={ [1]="repeat_last_step_of_combo_attack" } }, - [1332]={ + [1369]={ [1]={ [1]={ limit={ @@ -28866,7 +29813,7 @@ return { [1]="rhoa_movement_speed_+%" } }, - [1333]={ + [1370]={ [1]={ [1]={ limit={ @@ -28895,7 +29842,7 @@ return { [1]="rhoa_movement_speed_penalty_+%_final_while_performing_action" } }, - [1334]={ + [1371]={ [1]={ [1]={ limit={ @@ -28911,7 +29858,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [1335]={ + [1372]={ [1]={ [1]={ limit={ @@ -28927,7 +29874,7 @@ return { [1]="ring_of_ice_placement_distance" } }, - [1336]={ + [1373]={ [1]={ [1]={ limit={ @@ -28956,7 +29903,7 @@ return { [1]="rune_paint_area_of_effect_+%_final_per_rune_level" } }, - [1337]={ + [1374]={ [1]={ [1]={ limit={ @@ -28985,7 +29932,7 @@ return { [1]="rune_paint_area_of_effect_+%_per_rune_level" } }, - [1338]={ + [1375]={ [1]={ [1]={ limit={ @@ -29036,7 +29983,7 @@ return { [2]="quality_display_rune_paint_is_gem" } }, - [1339]={ + [1376]={ [1]={ [1]={ limit={ @@ -29052,7 +29999,7 @@ return { [1]="rune_paint_mana_spend_per_rune_upgrade" } }, - [1340]={ + [1377]={ [1]={ [1]={ limit={ @@ -29077,14 +30024,43 @@ return { [1]="rune_paint_max_rune_level" } }, - [1341]={ + [1378]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced maximum Life" + } + }, + stats={ + [1]="sacrifice_minion_life_granted_+%" + } + }, + [1379]={ [1]={ }, stats={ [1]="sacrifice_%_life_on_skill_use" } }, - [1342]={ + [1380]={ [1]={ [1]={ limit={ @@ -29113,7 +30089,7 @@ return { [1]="sanctify_wave_damage_+%_final" } }, - [1343]={ + [1381]={ [1]={ [1]={ limit={ @@ -29129,7 +30105,7 @@ return { [1]="sandstorm_swipe_max_stages" } }, - [1344]={ + [1382]={ [1]={ [1]={ limit={ @@ -29180,7 +30156,7 @@ return { [2]="quality_display_sandstorm_swipe_is_gem" } }, - [1345]={ + [1383]={ [1]={ [1]={ limit={ @@ -29196,7 +30172,7 @@ return { [1]="sandstorm_swipe_storm_radius_+_per_stage" } }, - [1346]={ + [1384]={ [1]={ [1]={ limit={ @@ -29225,7 +30201,7 @@ return { [1]="scorpion_minion_attack_speed_+%" } }, - [1347]={ + [1385]={ [1]={ [1]={ limit={ @@ -29254,7 +30230,7 @@ return { [1]="scorpion_minion_physical_damage_+%" } }, - [1348]={ + [1386]={ [1]={ [1]={ limit={ @@ -29275,28 +30251,28 @@ return { [2]="scorpion_minion_maximum_added_physical_damage" } }, - [1349]={ + [1387]={ [1]={ }, stats={ [1]="secondary_critical_hit_damage_bonus" } }, - [1350]={ + [1388]={ [1]={ }, stats={ [1]="secondary_critical_strike_chance" } }, - [1351]={ + [1389]={ [1]={ }, stats={ [1]="secondary_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1352]={ + [1390]={ [1]={ }, stats={ @@ -29304,7 +30280,7 @@ return { [2]="secondary_maximum_chaos_damage" } }, - [1353]={ + [1391]={ [1]={ }, stats={ @@ -29312,7 +30288,7 @@ return { [2]="secondary_maximum_cold_damage" } }, - [1354]={ + [1392]={ [1]={ }, stats={ @@ -29320,15 +30296,16 @@ return { [2]="secondary_maximum_fire_damage" } }, - [1355]={ + [1393]={ [1]={ }, stats={ [1]="secondary_minimum_lightning_damage", - [2]="secondary_maximum_lightning_damage" + [2]="secondary_maximum_lightning_damage", + [3]="secondary_lightning_damage_only_min_or_max" } }, - [1356]={ + [1394]={ [1]={ }, stats={ @@ -29336,7 +30313,7 @@ return { [2]="secondary_maximum_physical_damage" } }, - [1357]={ + [1395]={ [1]={ }, stats={ @@ -29344,7 +30321,7 @@ return { [2]="secondary_maximum_total_damage" } }, - [1358]={ + [1396]={ [1]={ [1]={ limit={ @@ -29373,7 +30350,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [1359]={ + [1397]={ [1]={ [1]={ limit={ @@ -29389,7 +30366,7 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [1360]={ + [1398]={ [1]={ [1]={ limit={ @@ -29405,7 +30382,7 @@ return { [1]="shatter_on_killing_blow" } }, - [1361]={ + [1399]={ [1]={ [1]={ limit={ @@ -29434,7 +30411,7 @@ return { [1]="shattering_palm_target_damage_+%_final" } }, - [1362]={ + [1400]={ [1]={ [1]={ limit={ @@ -29459,7 +30436,7 @@ return { [1]="shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed" } }, - [1363]={ + [1401]={ [1]={ [1]={ limit={ @@ -29488,7 +30465,36 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [1364]={ + [1402]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage if destroyed within 0.5 seconds by something other than you" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage if not destroyed withint 0.5 seconds by something other than you" + } + }, + stats={ + [1]="shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self" + } + }, + [1403]={ [1]={ [1]={ limit={ @@ -29517,7 +30523,7 @@ return { [1]="shield_wall_damage_+%_final_when_slammed" } }, - [1365]={ + [1404]={ [1]={ [1]={ limit={ @@ -29546,7 +30552,7 @@ return { [1]="shock_effect_+%" } }, - [1366]={ + [1405]={ [1]={ [1]={ limit={ @@ -29575,7 +30581,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [1367]={ + [1406]={ [1]={ [1]={ limit={ @@ -29591,7 +30597,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [1368]={ + [1407]={ [1]={ [1]={ limit={ @@ -29616,7 +30622,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [1369]={ + [1408]={ [1]={ [1]={ limit={ @@ -29645,7 +30651,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [1370]={ + [1409]={ [1]={ [1]={ limit={ @@ -29674,7 +30680,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [1371]={ + [1410]={ [1]={ [1]={ [1]={ @@ -29694,7 +30700,7 @@ return { [1]="shrapnel_shot_cone_placement_distance_+" } }, - [1372]={ + [1411]={ [1]={ [1]={ limit={ @@ -29710,7 +30716,7 @@ return { [1]="shrapnel_trap_number_of_secondary_explosions" } }, - [1373]={ + [1412]={ [1]={ [1]={ limit={ @@ -29726,7 +30732,7 @@ return { [1]="sigil_attached_target_fire_penetration_%" } }, - [1374]={ + [1413]={ [1]={ [1]={ limit={ @@ -29742,7 +30748,7 @@ return { [1]="sigil_attached_target_lightning_penetration_%" } }, - [1375]={ + [1414]={ [1]={ [1]={ [1]={ @@ -29762,7 +30768,7 @@ return { [1]="sigil_recall_extend_base_secondary_skill_effect_duration" } }, - [1376]={ + [1415]={ [1]={ [1]={ [1]={ @@ -29782,7 +30788,7 @@ return { [1]="sigil_recall_extend_base_skill_effect_duration" } }, - [1377]={ + [1416]={ [1]={ [1]={ limit={ @@ -29798,7 +30804,7 @@ return { [1]="sigils_can_target_reaper_minions" } }, - [1378]={ + [1417]={ [1]={ [1]={ [1]={ @@ -29831,7 +30837,7 @@ return { [1]="skeletal_cleric_revived_skeletons_immune_for_X_ms" } }, - [1379]={ + [1418]={ [1]={ [1]={ limit={ @@ -29847,7 +30853,14 @@ return { [1]="skill_additional_fissure_chance_%" } }, - [1380]={ + [1419]={ + [1]={ + }, + stats={ + [1]="skill_additional_projectiles_per_seal_broken" + } + }, + [1420]={ [1]={ [1]={ limit={ @@ -29863,7 +30876,7 @@ return { [1]="skill_angle_+%_in_sand_stance" } }, - [1381]={ + [1421]={ [1]={ [1]={ limit={ @@ -29892,7 +30905,14 @@ return { [1]="skill_area_angle_+%" } }, - [1382]={ + [1422]={ + [1]={ + }, + stats={ + [1]="skill_area_of_effect_+%_per_broken_seal" + } + }, + [1423]={ [1]={ [1]={ limit={ @@ -29917,7 +30937,7 @@ return { [1]="skill_area_of_effect_+%_final_in_sand_stance" } }, - [1383]={ + [1424]={ [1]={ [1]={ [1]={ @@ -29937,7 +30957,7 @@ return { [1]="skill_base_oil_movement_speed_+%_final_to_apply" } }, - [1384]={ + [1425]={ [1]={ [1]={ ["gem_quality"]=true, @@ -29963,7 +30983,7 @@ return { [1]="skill_base_oil_exposure_-_to_total_elemental_resistance" } }, - [1385]={ + [1426]={ [1]={ [1]={ limit={ @@ -29979,7 +30999,7 @@ return { [1]="base_chance_to_shock_%_from_skill" } }, - [1386]={ + [1427]={ [1]={ [1]={ limit={ @@ -30008,7 +31028,7 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [1387]={ + [1428]={ [1]={ [1]={ limit={ @@ -30024,7 +31044,7 @@ return { [1]="skill_can_flicker" } }, - [1388]={ + [1429]={ [1]={ [1]={ limit={ @@ -30040,7 +31060,7 @@ return { [1]="skill_cannot_gain_rage_during_use" } }, - [1389]={ + [1430]={ [1]={ [1]={ limit={ @@ -30069,21 +31089,21 @@ return { [1]="skill_code_movement_speed_+%_final" } }, - [1390]={ + [1431]={ [1]={ }, stats={ [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [1391]={ + [1432]={ [1]={ }, stats={ [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [1392]={ + [1433]={ [1]={ [1]={ limit={ @@ -30099,7 +31119,7 @@ return { [1]="skill_curses_cannot_apply_to_targets_above_level" } }, - [1393]={ + [1434]={ [1]={ [1]={ limit={ @@ -30128,30 +31148,21 @@ return { [1]="skill_damage_+%_final_per_chain_from_skill_specific_stat" } }, - [1394]={ + [1435]={ [1]={ }, stats={ [1]="skill_detonation_time" } }, - [1395]={ + [1436]={ [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to repeat" - } }, stats={ - [1]="skill_echo_chance_%" + [1]="skill_echoes_per_seal_broken" } }, - [1396]={ + [1437]={ [1]={ [1]={ limit={ @@ -30180,7 +31191,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [1397]={ + [1438]={ [1]={ [1]={ [1]={ @@ -30200,7 +31211,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [1398]={ + [1439]={ [1]={ [1]={ limit={ @@ -30229,7 +31240,53 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [1399]={ + [1440]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Spends up to {0} additional Runic Ward" + }, + [2]={ + [1]={ + k="divide_by_one_hundred_0dp", + v=2 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Spends up to {0} Runic Ward to Revive Minions with total maximum Life equal to {1} times the Runic Ward spent" + } + }, + stats={ + [1]="skill_eternal_march_maximum_ward_cost", + [2]="skill_eternal_march_life_per_ward_spent_%" + } + }, + [1441]={ + [1]={ + }, + stats={ + [1]="skill_gain_seal_every_x_hits_blocked" + } + }, + [1442]={ [1]={ [1]={ limit={ @@ -30374,7 +31431,7 @@ return { [3]="skill_grant_X_frenzy_charges_against_unique_monsters" } }, - [1400]={ + [1443]={ [1]={ [1]={ limit={ @@ -30390,7 +31447,7 @@ return { [1]="skill_grant_elusive_when_used" } }, - [1401]={ + [1444]={ [1]={ [1]={ limit={ @@ -30406,7 +31463,7 @@ return { [1]="skill_has_trigger_from_unique_item" } }, - [1402]={ + [1445]={ [1]={ [1]={ limit={ @@ -30431,7 +31488,7 @@ return { [1]="skill_hyena_cackle_size" } }, - [1403]={ + [1446]={ [1]={ [1]={ [1]={ @@ -30464,14 +31521,21 @@ return { [1]="skill_jagged_ground_base_duration_ms" } }, - [1404]={ + [1447]={ [1]={ }, stats={ [1]="skill_maximum_number_of_combo_stacks" } }, - [1405]={ + [1448]={ + [1]={ + }, + stats={ + [1]="skill_maximum_seals" + } + }, + [1449]={ [1]={ [1]={ limit={ @@ -30487,21 +31551,35 @@ return { [1]="skill_maximum_travel_distance_+%" } }, - [1406]={ + [1450]={ [1]={ }, stats={ [1]="skill_offering_targets_an_additional_skeleton" } }, - [1407]={ + [1451]={ [1]={ }, stats={ [1]="skill_oil_movement_speed_+%_final_to_apply" } }, - [1408]={ + [1452]={ + [1]={ + }, + stats={ + [1]="skill_rapid_fire_repeats_per_broken_seal" + } + }, + [1453]={ + [1]={ + }, + stats={ + [1]="skill_seal_gain_interval_ms" + } + }, + [1454]={ [1]={ [1]={ limit={ @@ -30517,7 +31595,23 @@ return { [1]="skill_travel_distance_+%" } }, - [1409]={ + [1455]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Skill is Triggered by consuming a Primal Owl Feather when you Dodge Roll" + } + }, + stats={ + [1]="skill_triggered_by_owl_feathers" + } + }, + [1456]={ [1]={ [1]={ limit={ @@ -30533,7 +31627,7 @@ return { [1]="skill_triggered_by_snipe" } }, - [1410]={ + [1457]={ [1]={ [1]={ limit={ @@ -30558,7 +31652,7 @@ return { [1]="skill_triggered_when_you_focus_chance_%" } }, - [1411]={ + [1458]={ [1]={ [1]={ limit={ @@ -30567,7 +31661,7 @@ return { [2]="#" } }, - text="Skills used by Mirage Chieftains deal {0}% more Damage\nSkills used by Mirage Chieftains cannot Repeat" + text="DNT-UNUSEDSkills used by Mirage Chieftains deal {0}% more Damage" }, [2]={ [1]={ @@ -30580,14 +31674,14 @@ return { [2]=-1 } }, - text="Skills used by Mirage Chieftains deal {0}% less Damage\nSkills used by Mirage Chieftains cannot Repeat" + text="DNT-UNUSEDSkills used by Mirage Chieftains deal {0}% less Damage" } }, stats={ [1]="skill_used_by_mirage_chieftain_damage_+%_final" } }, - [1412]={ + [1459]={ [1]={ [1]={ [1]={ @@ -30607,7 +31701,7 @@ return { [1]="skill_used_by_mirage_warrior_damage_+%_final" } }, - [1413]={ + [1460]={ [1]={ [1]={ [1]={ @@ -30627,7 +31721,7 @@ return { [1]="skill_withered_duration_ms" } }, - [1414]={ + [1461]={ [1]={ [1]={ limit={ @@ -30652,7 +31746,7 @@ return { [1]="skill_wolf_pack_size" } }, - [1415]={ + [1462]={ [1]={ [1]={ limit={ @@ -30668,7 +31762,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [1416]={ + [1463]={ [1]={ [1]={ limit={ @@ -30693,7 +31787,7 @@ return { [1]="slither_wither_stacks" } }, - [1417]={ + [1464]={ [1]={ [1]={ limit={ @@ -30709,14 +31803,14 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [1418]={ + [1465]={ [1]={ }, stats={ [1]="solar_orb_pulse_frequency_ms" } }, - [1419]={ + [1466]={ [1]={ [1]={ limit={ @@ -30732,7 +31826,7 @@ return { [1]="soulfeast_chaos_damage_to_self" } }, - [1420]={ + [1467]={ [1]={ [1]={ limit={ @@ -30748,7 +31842,7 @@ return { [1]="soulfeast_maximum_stages" } }, - [1421]={ + [1468]={ [1]={ [1]={ limit={ @@ -30764,7 +31858,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [1422]={ + [1469]={ [1]={ [1]={ limit={ @@ -30793,7 +31887,7 @@ return { [1]="soulfeast_spell_damage_+%_final_per_stage" } }, - [1423]={ + [1470]={ [1]={ [1]={ limit={ @@ -30809,7 +31903,7 @@ return { [1]="spear_wall_num_spears" } }, - [1424]={ + [1471]={ [1]={ [1]={ limit={ @@ -30825,7 +31919,7 @@ return { [1]="spearfield_maim_slows_an_additional_%" } }, - [1425]={ + [1472]={ [1]={ [1]={ [1]={ @@ -30845,7 +31939,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [1426]={ + [1473]={ [1]={ [1]={ limit={ @@ -30867,10 +31961,10 @@ return { } }, stats={ - [1]="spectral_spiral_weapon_number_of_bounces" + [1]="display_spectral_spiral_weapon_number_of_bounces" } }, - [1427]={ + [1474]={ [1]={ [1]={ [1]={ @@ -30890,7 +31984,23 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [1428]={ + [1475]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Echo" + } + }, + stats={ + [1]="base_spell_%_chance_to_echo" + } + }, + [1476]={ [1]={ [1]={ limit={ @@ -30919,7 +32029,7 @@ return { [1]="spell_area_damage_+%_in_blood_stance" } }, - [1429]={ + [1477]={ [1]={ [1]={ limit={ @@ -30948,14 +32058,14 @@ return { [1]="spell_area_of_effect_+%_in_sand_stance" } }, - [1430]={ + [1478]={ [1]={ }, stats={ [1]="spell_cast_duration_ms" } }, - [1431]={ + [1479]={ [1]={ [1]={ limit={ @@ -30971,73 +32081,28 @@ return { [1]="spell_cast_time_cannot_be_modified" } }, - [1432]={ + [1480]={ [1]={ }, stats={ [1]="spell_critical_hit_damage_bonus" } }, - [1433]={ + [1481]={ [1]={ }, stats={ [1]="spell_critical_strike_chance" } }, - [1434]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Final Repeat has {0:+d}% chance to deal Double Damage" - } - }, - stats={ - [1]="spell_echo_plus_chance_double_damage_%_final" - } - }, - [1435]={ + [1482]={ [1]={ }, stats={ [1]="spell_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1436]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Visage frequency" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Visage frequency" - } - }, - stats={ - [1]="spellflux_frequency_+%" - } - }, - [1437]={ + [1483]={ [1]={ [1]={ limit={ @@ -31053,7 +32118,7 @@ return { [1]="spell_has_trigger_from_crafted_item_mod" } }, - [1438]={ + [1484]={ [1]={ [1]={ limit={ @@ -31074,7 +32139,7 @@ return { [2]="spell_maximum_base_fire_damage_as_%_of_intelligence" } }, - [1439]={ + [1485]={ [1]={ [1]={ limit={ @@ -31095,7 +32160,7 @@ return { [2]="spell_maximum_base_cold_damage_as_%_of_intelligence" } }, - [1440]={ + [1486]={ [1]={ [1]={ limit={ @@ -31116,7 +32181,7 @@ return { [2]="spell_maximum_base_lightning_damage_as_%_of_intelligence" } }, - [1441]={ + [1487]={ [1]={ [1]={ limit={ @@ -31137,7 +32202,7 @@ return { [2]="spell_maximum_base_physical_damage_per_shield_quality" } }, - [1442]={ + [1488]={ [1]={ }, stats={ @@ -31145,7 +32210,7 @@ return { [2]="spell_maximum_chaos_damage" } }, - [1443]={ + [1489]={ [1]={ }, stats={ @@ -31153,7 +32218,7 @@ return { [2]="spell_maximum_cold_damage" } }, - [1444]={ + [1490]={ [1]={ }, stats={ @@ -31161,15 +32226,16 @@ return { [2]="spell_maximum_fire_damage" } }, - [1445]={ + [1491]={ [1]={ }, stats={ [1]="spell_minimum_lightning_damage", - [2]="spell_maximum_lightning_damage" + [2]="spell_maximum_lightning_damage", + [3]="spell_lightning_damage_only_min_or_max" } }, - [1446]={ + [1492]={ [1]={ }, stats={ @@ -31177,7 +32243,7 @@ return { [2]="spell_maximum_physical_damage" } }, - [1447]={ + [1493]={ [1]={ }, stats={ @@ -31185,92 +32251,40 @@ return { [2]="spell_maximum_total_damage" } }, - [1448]={ - [1]={ - }, - stats={ - [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" - } - }, - [1449]={ + [1494]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d}% chance to fire 2 additional Projectiles" + text="+{0}% chance to fire 8 additional Projectiles in a circle" } }, stats={ - [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" + [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [1450]={ + [1495]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="{0} second delay between Visages" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0} second delay between Visage" - } - }, - stats={ - [1]="spellflux_base_delay_between_fluxes_ms" - } - }, - [1451]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Visage frequency per Spell Visages could cast" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Visage frequency per Spell Visages could cast" + text="{0:+d}% chance to fire 2 additional Projectiles" } }, stats={ - [1]="spellflux_frequency_+%_per_socketed_valid_spell" + [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [1452]={ + [1496]={ [1]={ [1]={ limit={ @@ -31279,7 +32293,7 @@ return { [2]="#" } }, - text="Casting the matching Spell before the next Visage Empowers it\nEmpowered Spells deal {0}% more damage" + text="{0}% more Visage frequency" }, [2]={ [1]={ @@ -31292,14 +32306,14 @@ return { [2]=-1 } }, - text="Casting the matching Spell before the next Visage Empowers it\nEmpowered Spells deal {0}% less damage" + text="{0}% less Visage frequency" } }, stats={ - [1]="spellflux_spell_damage_+%_final_if_matching_flux_cast" + [1]="spellflux_frequency_+%_final" } }, - [1453]={ + [1497]={ [1]={ [1]={ limit={ @@ -31324,7 +32338,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [1454]={ + [1498]={ [1]={ [1]={ [1]={ @@ -31344,7 +32358,7 @@ return { [1]="spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time" } }, - [1455]={ + [1499]={ [1]={ [1]={ limit={ @@ -31360,7 +32374,7 @@ return { [1]="spellslinger_mana_reservation" } }, - [1456]={ + [1500]={ [1]={ [1]={ limit={ @@ -31385,7 +32399,7 @@ return { [1]="spider_aspect_max_web_count" } }, - [1457]={ + [1501]={ [1]={ [1]={ limit={ @@ -31401,7 +32415,7 @@ return { [1]="spike_slam_additional_spike_%_chance" } }, - [1458]={ + [1502]={ [1]={ [1]={ limit={ @@ -31430,7 +32444,7 @@ return { [1]="spike_slam_explosion_damage_+%_final" } }, - [1459]={ + [1503]={ [1]={ [1]={ limit={ @@ -31459,7 +32473,7 @@ return { [1]="spike_slam_fissure_damage_+%_final" } }, - [1460]={ + [1504]={ [1]={ [1]={ limit={ @@ -31488,7 +32502,7 @@ return { [1]="spike_slam_fissure_length_+%" } }, - [1461]={ + [1505]={ [1]={ [1]={ limit={ @@ -31513,7 +32527,7 @@ return { [1]="spike_slam_num_spikes" } }, - [1462]={ + [1506]={ [1]={ [1]={ limit={ @@ -31542,7 +32556,7 @@ return { [1]="spike_slam_spike_damage_+%_final" } }, - [1463]={ + [1507]={ [1]={ [1]={ limit={ @@ -31571,7 +32585,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [1464]={ + [1508]={ [1]={ [1]={ limit={ @@ -31587,14 +32601,14 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [1465]={ + [1509]={ [1]={ }, stats={ [1]="spirit_reservation" } }, - [1466]={ + [1510]={ [1]={ [1]={ limit={ @@ -31623,7 +32637,7 @@ return { [1]="spiritual_cry_double_movement_velocity_+%" } }, - [1467]={ + [1511]={ [1]={ [1]={ limit={ @@ -31652,7 +32666,7 @@ return { [1]="splitting_steel_area_+%_final_after_splitting" } }, - [1468]={ + [1512]={ [1]={ [1]={ limit={ @@ -31681,7 +32695,7 @@ return { [1]="static_strike_beam_damage_+%_final" } }, - [1469]={ + [1513]={ [1]={ [1]={ limit={ @@ -31710,7 +32724,7 @@ return { [1]="static_strike_beam_damage_+%_final_while_moving" } }, - [1470]={ + [1514]={ [1]={ [1]={ limit={ @@ -31726,7 +32740,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [1471]={ + [1515]={ [1]={ [1]={ limit={ @@ -31755,7 +32769,7 @@ return { [1]="stealth_+%" } }, - [1472]={ + [1516]={ [1]={ [1]={ limit={ @@ -31780,7 +32794,7 @@ return { [1]="steel_ammo_consumed_per_use" } }, - [1473]={ + [1517]={ [1]={ [1]={ limit={ @@ -31805,7 +32819,7 @@ return { [1]="steel_skill_%_chance_to_not_consume_ammo" } }, - [1474]={ + [1518]={ [1]={ [1]={ limit={ @@ -31834,7 +32848,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [1475]={ + [1519]={ [1]={ [1]={ limit={ @@ -31863,7 +32877,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [1476]={ + [1520]={ [1]={ [1]={ [1]={ @@ -31883,7 +32897,7 @@ return { [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" } }, - [1477]={ + [1521]={ [1]={ [1]={ limit={ @@ -31912,7 +32926,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [1478]={ + [1522]={ [1]={ [1]={ limit={ @@ -31928,7 +32942,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [1479]={ + [1523]={ [1]={ [1]={ limit={ @@ -31944,7 +32958,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [1480]={ + [1524]={ [1]={ [1]={ limit={ @@ -31973,7 +32987,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [1481]={ + [1525]={ [1]={ [1]={ limit={ @@ -31989,7 +33003,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [1482]={ + [1526]={ [1]={ [1]={ limit={ @@ -32018,7 +33032,7 @@ return { [1]="storm_burst_explosion_area_of_effect_+%" } }, - [1483]={ + [1527]={ [1]={ [1]={ limit={ @@ -32034,7 +33048,7 @@ return { [1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap" } }, - [1484]={ + [1528]={ [1]={ [1]={ limit={ @@ -32063,7 +33077,7 @@ return { [1]="storm_burst_zap_area_of_effect_+%" } }, - [1485]={ + [1529]={ [1]={ [1]={ limit={ @@ -32079,7 +33093,7 @@ return { [1]="storm_call_chance_to_strike_on_cast_%" } }, - [1486]={ + [1530]={ [1]={ [1]={ limit={ @@ -32104,7 +33118,7 @@ return { [1]="storm_rain_pulse_count" } }, - [1487]={ + [1531]={ [1]={ [1]={ limit={ @@ -32120,14 +33134,14 @@ return { [1]="stormblast_bolts_maximum_active_bolt_count" } }, - [1488]={ + [1532]={ [1]={ }, stats={ [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [1489]={ + [1533]={ [1]={ [1]={ limit={ @@ -32156,7 +33170,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [1490]={ + [1534]={ [1]={ [1]={ limit={ @@ -32172,7 +33186,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [1491]={ + [1535]={ [1]={ [1]={ limit={ @@ -32188,7 +33202,7 @@ return { [1]="summon_mirage_warrior_on_crit" } }, - [1492]={ + [1536]={ [1]={ [1]={ limit={ @@ -32217,7 +33231,7 @@ return { [1]="summoned_spider_grants_attack_speed_+%" } }, - [1493]={ + [1537]={ [1]={ [1]={ limit={ @@ -32246,7 +33260,7 @@ return { [1]="sunder_shockwave_area_of_effect_+%" } }, - [1494]={ + [1538]={ [1]={ [1]={ limit={ @@ -32275,7 +33289,7 @@ return { [1]="sunder_wave_area_of_effect_+%" } }, - [1495]={ + [1539]={ [1]={ [1]={ limit={ @@ -32304,7 +33318,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [1496]={ + [1540]={ [1]={ [1]={ limit={ @@ -32320,7 +33334,7 @@ return { [1]="sunder_wave_min_steps" } }, - [1497]={ + [1541]={ [1]={ }, stats={ @@ -32329,14 +33343,14 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [1498]={ + [1542]={ [1]={ }, stats={ [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [1499]={ + [1543]={ [1]={ [1]={ limit={ @@ -32352,7 +33366,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [1500]={ + [1544]={ [1]={ [1]={ limit={ @@ -32368,7 +33382,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [1501]={ + [1545]={ [1]={ [1]={ limit={ @@ -32384,7 +33398,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [1502]={ + [1546]={ [1]={ [1]={ limit={ @@ -32400,21 +33414,14 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [1503]={ + [1547]={ [1]={ }, stats={ [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [1504]={ - [1]={ - }, - stats={ - [1]="skill_max_unleash_seals" - } - }, - [1505]={ + [1548]={ [1]={ [1]={ limit={ @@ -32430,7 +33437,7 @@ return { [1]="support_apply_daze_on_warcry" } }, - [1506]={ + [1549]={ [1]={ [1]={ [1]={ @@ -32455,14 +33462,14 @@ return { [2]="support_arcane_surge_duration_ms" } }, - [1507]={ + [1550]={ [1]={ }, stats={ [1]="support_armour_explosion" } }, - [1508]={ + [1551]={ [1]={ [1]={ [1]={ @@ -32482,7 +33489,7 @@ return { [1]="support_aura_duration_buff_duration" } }, - [1509]={ + [1552]={ [1]={ [1]={ limit={ @@ -32511,7 +33518,7 @@ return { [1]="support_better_ailments_damaging_ailment_effect_+%_final" } }, - [1510]={ + [1553]={ [1]={ [1]={ limit={ @@ -32536,7 +33543,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [1511]={ + [1554]={ [1]={ }, stats={ @@ -32544,42 +33551,42 @@ return { [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [1512]={ + [1555]={ [1]={ }, stats={ [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [1513]={ + [1556]={ [1]={ }, stats={ [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [1514]={ + [1557]={ [1]={ }, stats={ [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" } }, - [1515]={ + [1558]={ [1]={ }, stats={ [1]="support_clarity_mana_regeneration_rate_+%" } }, - [1516]={ + [1559]={ [1]={ }, stats={ [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [1517]={ + [1560]={ [1]={ [1]={ limit={ @@ -32608,7 +33615,7 @@ return { [1]="support_combo_finisher_damage_+%_final" } }, - [1518]={ + [1561]={ [1]={ [1]={ limit={ @@ -32629,7 +33636,7 @@ return { [2]="support_combo_finisher_max_combo_required" } }, - [1519]={ + [1562]={ [1]={ [1]={ limit={ @@ -32658,7 +33665,7 @@ return { [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" } }, - [1520]={ + [1563]={ [1]={ [1]={ limit={ @@ -32687,21 +33694,7 @@ return { [1]="support_cooldown_reduction_cooldown_recovery_+%" } }, - [1521]={ - [1]={ - }, - stats={ - [1]="support_corrupting_cry_corrupted_blood_damage_per_minute" - } - }, - [1522]={ - [1]={ - }, - stats={ - [1]="support_corrupting_cry_corrupted_blood_duration_ms" - } - }, - [1523]={ + [1564]={ [1]={ [1]={ [1]={ @@ -32721,49 +33714,49 @@ return { [1]="support_crushing_stuns_crush_on_stun_ms" } }, - [1524]={ + [1565]={ [1]={ }, stats={ [1]="support_culling_strike_vs_rare_or_unique_enemy" } }, - [1525]={ + [1566]={ [1]={ }, stats={ - [1]="support_damage_+%_final_per_combo_stack" + [1]="support_culmination_damage_+%_final_per_combo_stack" } }, - [1526]={ + [1567]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" } }, - [1527]={ + [1568]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" } }, - [1528]={ + [1569]={ [1]={ }, stats={ [1]="support_daze_break_duration_ms" } }, - [1529]={ + [1570]={ [1]={ }, stats={ [1]="support_dazed_cry_duration_ms" } }, - [1530]={ + [1571]={ [1]={ [1]={ limit={ @@ -32801,28 +33794,28 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [1531]={ + [1572]={ [1]={ }, stats={ [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [1532]={ + [1573]={ [1]={ }, stats={ [1]="support_empowered_culling_strike" } }, - [1533]={ + [1574]={ [1]={ }, stats={ [1]="support_empowered_damage_+%_final" } }, - [1534]={ + [1575]={ [1]={ [1]={ [1]={ @@ -32842,28 +33835,28 @@ return { [1]="support_executioner_buff_duration_ms" } }, - [1535]={ + [1576]={ [1]={ }, stats={ [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [1536]={ + [1577]={ [1]={ }, stats={ [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [1537]={ + [1578]={ [1]={ }, stats={ [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" } }, - [1538]={ + [1579]={ [1]={ [1]={ limit={ @@ -32879,7 +33872,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [1539]={ + [1580]={ [1]={ [1]={ limit={ @@ -32895,7 +33888,7 @@ return { [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [1540]={ + [1581]={ [1]={ [1]={ limit={ @@ -32924,21 +33917,21 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [1541]={ + [1582]={ [1]={ }, stats={ [1]="support_fork_forked_projectile_damage_+%_final" } }, - [1542]={ + [1583]={ [1]={ }, stats={ [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [1543]={ + [1584]={ [1]={ [1]={ [1]={ @@ -32958,65 +33951,7 @@ return { [1]="support_ghost_duration" } }, - [1544]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Area of Effect per Repeat" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Area of Effect per Repeat" - } - }, - stats={ - [1]="support_greater_spell_echo_area_of_effect_+%_per_repeat" - } - }, - [1545]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more Spell Damage per Repeat" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less Spell Damage per Repeat" - } - }, - stats={ - [1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat" - } - }, - [1546]={ + [1585]={ [1]={ [1]={ limit={ @@ -33045,7 +33980,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [1547]={ + [1586]={ [1]={ [1]={ limit={ @@ -33066,28 +34001,28 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1548]={ + [1587]={ [1]={ }, stats={ [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [1549]={ + [1588]={ [1]={ }, stats={ [1]="support_hinder_dots_also_apply_hinder" } }, - [1550]={ + [1589]={ [1]={ }, stats={ [1]="support_holy_descent_consecrated_ground_duration_ms" } }, - [1551]={ + [1590]={ [1]={ [1]={ limit={ @@ -33116,7 +34051,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [1552]={ + [1591]={ [1]={ }, stats={ @@ -33124,7 +34059,7 @@ return { [2]="support_ice_bite_virtual_buff_duration" } }, - [1553]={ + [1592]={ [1]={ [1]={ limit={ @@ -33153,7 +34088,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [1554]={ + [1593]={ [1]={ [1]={ limit={ @@ -33182,21 +34117,21 @@ return { [1]="support_ignite_prolif_ignite_effect_+%_final" } }, - [1555]={ + [1594]={ [1]={ }, stats={ [1]="support_ignite_proliferation_radius" } }, - [1556]={ + [1595]={ [1]={ }, stats={ [1]="support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius" } }, - [1557]={ + [1596]={ [1]={ [1]={ limit={ @@ -33217,7 +34152,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [1558]={ + [1597]={ [1]={ [1]={ limit={ @@ -33255,7 +34190,7 @@ return { [2]="support_inevitable_criticals_critical_strike_multiplier_+%_final_cap" } }, - [1559]={ + [1598]={ [1]={ }, stats={ @@ -33263,7 +34198,7 @@ return { [2]="support_innervate_buff_duration_ms" } }, - [1560]={ + [1599]={ [1]={ [1]={ limit={ @@ -33292,21 +34227,21 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [1561]={ + [1600]={ [1]={ }, stats={ [1]="support_knockback_wave_on_stunned" } }, - [1562]={ + [1601]={ [1]={ }, stats={ [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [1563]={ + [1602]={ [1]={ [1]={ [1]={ @@ -33339,7 +34274,7 @@ return { [1]="support_lifetap_buff_duration" } }, - [1564]={ + [1603]={ [1]={ [1]={ limit={ @@ -33355,7 +34290,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1565]={ + [1604]={ [1]={ [1]={ limit={ @@ -33371,7 +34306,7 @@ return { [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [1566]={ + [1605]={ [1]={ [1]={ limit={ @@ -33400,7 +34335,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [1567]={ + [1606]={ [1]={ [1]={ limit={ @@ -33429,14 +34364,14 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1568]={ + [1607]={ [1]={ }, stats={ [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [1569]={ + [1608]={ [1]={ [1]={ limit={ @@ -33465,7 +34400,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1570]={ + [1609]={ [1]={ [1]={ limit={ @@ -33486,7 +34421,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1571]={ + [1610]={ [1]={ [1]={ limit={ @@ -33515,7 +34450,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1572]={ + [1611]={ [1]={ [1]={ limit={ @@ -33544,36 +34479,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1573]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Minions deal {0}% more Damage while you have Feeding Frenzy" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Minions deal {0}% less Damage while you have Feeding Frenzy" - } - }, - stats={ - [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" - } - }, - [1574]={ + [1612]={ [1]={ }, stats={ @@ -33581,7 +34487,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [1575]={ + [1613]={ [1]={ [1]={ limit={ @@ -33610,7 +34516,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1576]={ + [1614]={ [1]={ [1]={ limit={ @@ -33639,7 +34545,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1577]={ + [1615]={ [1]={ [1]={ [1]={ @@ -33659,7 +34565,7 @@ return { [1]="support_mirage_archer_duration" } }, - [1578]={ + [1616]={ [1]={ [1]={ [1]={ @@ -33701,14 +34607,41 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [1579]={ + [1617]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Intimidate duration on enemies entering Presence@{0}s" + } + }, + stats={ + [1]="intimidate_enemies_when_they_enter_your_presence_duration_ms" + } + }, + [1618]={ + [1]={ + }, + stats={ + [1]="support_mothers_ward_duration_ms" + } + }, + [1619]={ [1]={ }, stats={ [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" } }, - [1580]={ + [1620]={ [1]={ [1]={ [1]={ @@ -33741,7 +34674,7 @@ return { [1]="support_overkill_icy_vortex_duration_ms" } }, - [1581]={ + [1621]={ [1]={ [1]={ limit={ @@ -33766,7 +34699,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1582]={ + [1622]={ [1]={ [1]={ limit={ @@ -33782,14 +34715,14 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [1583]={ + [1623]={ [1]={ }, stats={ [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [1584]={ + [1624]={ [1]={ [1]={ limit={ @@ -33818,7 +34751,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1585]={ + [1625]={ [1]={ [1]={ limit={ @@ -33834,7 +34767,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [1586]={ + [1626]={ [1]={ [1]={ limit={ @@ -33863,7 +34796,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1587]={ + [1627]={ [1]={ [1]={ [1]={ @@ -33883,7 +34816,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1588]={ + [1628]={ [1]={ }, stats={ @@ -33891,14 +34824,14 @@ return { [2]="support_rageforged_enraged_damage_+%_final" } }, - [1589]={ + [1629]={ [1]={ }, stats={ [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [1590]={ + [1630]={ [1]={ [1]={ [1]={ @@ -33918,7 +34851,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [1591]={ + [1631]={ [1]={ [1]={ limit={ @@ -33947,14 +34880,14 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1592]={ + [1632]={ [1]={ }, stats={ [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [1593]={ + [1633]={ [1]={ [1]={ [1]={ @@ -33979,7 +34912,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1594]={ + [1634]={ [1]={ [1]={ [1]={ @@ -34009,28 +34942,35 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1595]={ + [1635]={ [1]={ }, stats={ [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1596]={ + [1636]={ [1]={ }, stats={ [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1597]={ + [1637]={ [1]={ }, stats={ [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1598]={ + [1638]={ + [1]={ + }, + stats={ + [1]="support_slam_spend_X_ward_to_become_runic_boosted" + } + }, + [1639]={ [1]={ [1]={ [1]={ @@ -34063,7 +35003,7 @@ return { [1]="support_slashing_buff_duration_ms" } }, - [1599]={ + [1640]={ [1]={ [1]={ limit={ @@ -34092,7 +35032,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1600]={ + [1641]={ [1]={ [1]={ limit={ @@ -34108,7 +35048,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [1601]={ + [1642]={ [1]={ [1]={ limit={ @@ -34184,7 +35124,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1602]={ + [1643]={ [1]={ [1]={ limit={ @@ -34213,7 +35153,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1603]={ + [1644]={ [1]={ [1]={ limit={ @@ -34242,14 +35182,14 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1604]={ + [1645]={ [1]={ }, stats={ [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [1605]={ + [1646]={ [1]={ }, stats={ @@ -34257,21 +35197,14 @@ return { [2]="support_spell_cascade_sideways" } }, - [1606]={ - [1]={ - }, - stats={ - [1]="support_spell_echo_area_of_effect_+%" - } - }, - [1607]={ + [1647]={ [1]={ }, stats={ [1]="support_spell_echo_area_of_effect_+%_final" } }, - [1608]={ + [1648]={ [1]={ [1]={ limit={ @@ -34300,7 +35233,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [1609]={ + [1649]={ [1]={ [1]={ limit={ @@ -34329,7 +35262,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [1610]={ + [1650]={ [1]={ [1]={ limit={ @@ -34358,7 +35291,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [1611]={ + [1651]={ [1]={ [1]={ limit={ @@ -34387,64 +35320,35 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [1612]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Final Repeat deals {0}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Final Repeat deals {0}% less Damage" - } - }, - stats={ - [1]="support_spell_echo_final_repeat_damage_+%_final" - } - }, - [1613]={ + [1652]={ [1]={ }, stats={ [1]="support_spell_echo_number_of_echo_cascades" } }, - [1614]={ + [1653]={ [1]={ }, stats={ [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1615]={ + [1654]={ [1]={ }, stats={ [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1616]={ + [1655]={ [1]={ }, stats={ [1]="support_stomping_ground" } }, - [1617]={ + [1656]={ [1]={ [1]={ limit={ @@ -34473,7 +35377,7 @@ return { [1]="support_storm_barrier_chaos_damage_+%_final_to_apply" } }, - [1618]={ + [1657]={ [1]={ [1]={ limit={ @@ -34502,7 +35406,7 @@ return { [1]="support_storm_barrier_cold_damage_+%_final_to_apply" } }, - [1619]={ + [1658]={ [1]={ [1]={ [1]={ @@ -34535,7 +35439,7 @@ return { [1]="support_storm_barrier_damage_buff_duration_ms" } }, - [1620]={ + [1659]={ [1]={ [1]={ limit={ @@ -34564,7 +35468,7 @@ return { [1]="support_storm_barrier_fire_damage_+%_final_to_apply" } }, - [1621]={ + [1660]={ [1]={ [1]={ limit={ @@ -34593,7 +35497,7 @@ return { [1]="support_storm_barrier_lightning_damage_+%_final_to_apply" } }, - [1622]={ + [1661]={ [1]={ [1]={ limit={ @@ -34622,7 +35526,7 @@ return { [1]="support_storm_barrier_physical_damage_+%_final_to_apply" } }, - [1623]={ + [1662]={ [1]={ [1]={ [1]={ @@ -34642,7 +35546,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [1624]={ + [1663]={ [1]={ [1]={ [1]={ @@ -34662,7 +35566,7 @@ return { [1]="support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling" } }, - [1625]={ + [1664]={ [1]={ [1]={ [1]={ @@ -34682,7 +35586,7 @@ return { [1]="support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling" } }, - [1626]={ + [1665]={ [1]={ [1]={ [1]={ @@ -34702,7 +35606,7 @@ return { [1]="support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling" } }, - [1627]={ + [1666]={ [1]={ [1]={ [1]={ @@ -34722,7 +35626,7 @@ return { [1]="support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling" } }, - [1628]={ + [1667]={ [1]={ [1]={ limit={ @@ -34751,14 +35655,14 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [1629]={ + [1668]={ [1]={ }, stats={ [1]="support_trigger_mana_flare_on_crit" } }, - [1630]={ + [1669]={ [1]={ [1]={ limit={ @@ -34787,21 +35691,28 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [1631]={ + [1670]={ [1]={ }, stats={ [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [1632]={ + [1671]={ [1]={ }, stats={ [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [1633]={ + [1672]={ + [1]={ + }, + stats={ + [1]="support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies" + } + }, + [1673]={ [1]={ }, stats={ @@ -34809,7 +35720,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [1634]={ + [1674]={ [1]={ [1]={ limit={ @@ -34838,7 +35749,7 @@ return { [1]="support_weapon_elemental_damage_+%_final" } }, - [1635]={ + [1675]={ [1]={ [1]={ limit={ @@ -34854,7 +35765,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1636]={ + [1676]={ [1]={ [1]={ limit={ @@ -34870,7 +35781,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1637]={ + [1677]={ [1]={ [1]={ limit={ @@ -34886,7 +35797,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1638]={ + [1678]={ [1]={ [1]={ limit={ @@ -34902,7 +35813,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1639]={ + [1679]={ [1]={ [1]={ limit={ @@ -34918,7 +35829,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1640]={ + [1680]={ [1]={ [1]={ [1]={ @@ -34938,7 +35849,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [1641]={ + [1681]={ [1]={ [1]={ limit={ @@ -34954,7 +35865,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [1642]={ + [1682]={ [1]={ [1]={ limit={ @@ -34970,7 +35881,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge" } }, - [1643]={ + [1683]={ [1]={ [1]={ limit={ @@ -34995,7 +35906,7 @@ return { [1]="temper_weapon_empowers_per_strike" } }, - [1644]={ + [1684]={ [1]={ [1]={ limit={ @@ -35024,7 +35935,7 @@ return { [1]="tempest_bell_damage_+%_final_per_time_hit" } }, - [1645]={ + [1685]={ [1]={ [1]={ limit={ @@ -35053,7 +35964,7 @@ return { [1]="tethered_enemies_take_attack_projectile_damage_taken_+%" } }, - [1646]={ + [1686]={ [1]={ [1]={ [1]={ @@ -35073,7 +35984,7 @@ return { [1]="tethered_movement_speed_+%_final" } }, - [1647]={ + [1687]={ [1]={ [1]={ limit={ @@ -35102,7 +36013,7 @@ return { [1]="tethered_movement_speed_+%_final_vs_unique_and_rare" } }, - [1648]={ + [1688]={ [1]={ [1]={ limit={ @@ -35118,7 +36029,21 @@ return { [1]="tethering_arrow_display_rope_limit" } }, - [1649]={ + [1689]={ + [1]={ + }, + stats={ + [1]="thorns_critical_hit_damage_bonus" + } + }, + [1690]={ + [1]={ + }, + stats={ + [1]="thorns_critical_strike_chance" + } + }, + [1691]={ [1]={ [1]={ limit={ @@ -35134,7 +36059,63 @@ return { [1]="thorns_damage_modifiers_apply_to_spell_damage" } }, - [1650]={ + [1692]={ + [1]={ + }, + stats={ + [1]="thorns_effetive_total_chance_permyriad_for_hit_to_be_critical" + } + }, + [1693]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_chaos_damage", + [2]="thorns_maximum_chaos_damage" + } + }, + [1694]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_cold_damage", + [2]="thorns_maximum_cold_damage" + } + }, + [1695]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_fire_damage", + [2]="thorns_maximum_fire_damage" + } + }, + [1696]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_lightning_damage", + [2]="thorns_maximum_lightning_damage", + [3]="thorns_lightning_damage_only_min_or_max" + } + }, + [1697]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_physical_damage", + [2]="thorns_maximum_physical_damage" + } + }, + [1698]={ + [1]={ + }, + stats={ + [1]="thorns_minimum_total_damage", + [2]="thorns_maximum_total_damage" + } + }, + [1699]={ [1]={ [1]={ limit={ @@ -35150,7 +36131,36 @@ return { [1]="thunderous_leap_%_chance_for_shocked_ground_when_detonating" } }, - [1651]={ + [1700]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased Life Regeneration Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% reduced Life Regeneration Rate" + } + }, + stats={ + [1]="time_of_need_global_life_regeneration_rate_granted_+%" + } + }, + [1701]={ [1]={ [1]={ [1]={ @@ -35183,14 +36193,14 @@ return { [1]="tornado_base_damage_interval_ms" } }, - [1652]={ + [1702]={ [1]={ }, stats={ [1]="tornado_damage_interval_ms" } }, - [1653]={ + [1703]={ [1]={ [1]={ [1]={ @@ -35210,7 +36220,7 @@ return { [1]="tornado_hinder" } }, - [1654]={ + [1704]={ [1]={ [1]={ limit={ @@ -35239,43 +36249,14 @@ return { [1]="tornado_movement_speed_+%" } }, - [1655]={ - [1]={ - }, - stats={ - [1]="total_number_of_projectiles_to_fire" - } - }, - [1656]={ + [1705]={ [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Totem gains +{0}% to Chaos Resistance" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Totem loses -{0}% to Chaos Resistance" - } }, stats={ - [1]="totem_chaos_resistance_%" + [1]="total_number_of_projectiles_to_fire_from_stats" } }, - [1657]={ + [1706]={ [1]={ [1]={ [1]={ @@ -35295,7 +36276,7 @@ return { [1]="totem_duration" } }, - [1658]={ + [1707]={ [1]={ [1]={ limit={ @@ -35311,7 +36292,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [1659]={ + [1708]={ [1]={ [1]={ [1]={ @@ -35331,14 +36312,14 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [1660]={ + [1709]={ [1]={ }, stats={ [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1661]={ + [1710]={ [1]={ [1]={ limit={ @@ -35354,7 +36335,7 @@ return { [1]="trap_can_be_triggered_by_warcries" } }, - [1662]={ + [1711]={ [1]={ [1]={ limit={ @@ -35370,7 +36351,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1663]={ + [1712]={ [1]={ [1]={ limit={ @@ -35399,7 +36380,7 @@ return { [1]="trap_spread_+%" } }, - [1664]={ + [1713]={ [1]={ [1]={ limit={ @@ -35428,7 +36409,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1665]={ + [1714]={ [1]={ [1]={ limit={ @@ -35457,7 +36438,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1666]={ + [1715]={ [1]={ [1]={ limit={ @@ -35486,7 +36467,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [1667]={ + [1716]={ [1]={ [1]={ limit={ @@ -35596,7 +36577,7 @@ return { [3]="trauma_strike_self_damage_per_trauma" } }, - [1668]={ + [1717]={ [1]={ [1]={ limit={ @@ -35625,7 +36606,7 @@ return { [1]="trauma_strike_damage_+%_final_per_trauma" } }, - [1669]={ + [1718]={ [1]={ [1]={ limit={ @@ -35654,7 +36635,7 @@ return { [1]="trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%" } }, - [1670]={ + [1719]={ [1]={ [1]={ limit={ @@ -35679,7 +36660,7 @@ return { [1]="trigger_after_spending_200_mana_%_chance" } }, - [1671]={ + [1720]={ [1]={ [1]={ limit={ @@ -35708,7 +36689,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1672]={ + [1721]={ [1]={ [1]={ limit={ @@ -35724,7 +36705,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1673]={ + [1722]={ [1]={ [1]={ limit={ @@ -35749,7 +36730,7 @@ return { [1]="trigger_on_block_%_chance" } }, - [1674]={ + [1723]={ [1]={ [1]={ limit={ @@ -35774,7 +36755,7 @@ return { [1]="trigger_on_bow_attack_%" } }, - [1675]={ + [1724]={ [1]={ [1]={ limit={ @@ -35799,7 +36780,32 @@ return { [1]="trigger_on_corpse_consume_%_chance" } }, - [1676]={ + [1725]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Trigger when you Heavy Stun an enemy" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Triggers when you Heavy Stun an enemy" + } + }, + stats={ + [1]="trigger_on_heavy_stun_%" + } + }, + [1726]={ [1]={ [1]={ limit={ @@ -35815,7 +36821,7 @@ return { [1]="trigger_on_hit_against_rare_or_unique_if_no_marked_enemy" } }, - [1677]={ + [1727]={ [1]={ [1]={ limit={ @@ -35840,7 +36846,7 @@ return { [1]="trigger_on_hit_vs_frozen_enemy_%" } }, - [1678]={ + [1728]={ [1]={ [1]={ limit={ @@ -35865,7 +36871,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_void_arrow" } }, - [1679]={ + [1729]={ [1]={ [1]={ limit={ @@ -35890,7 +36896,7 @@ return { [1]="trigger_on_slam_%_chance" } }, - [1680]={ + [1730]={ [1]={ [1]={ limit={ @@ -35906,7 +36912,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1681]={ + [1731]={ [1]={ [1]={ limit={ @@ -35931,21 +36937,21 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1682]={ + [1732]={ [1]={ }, stats={ [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1683]={ + [1733]={ [1]={ }, stats={ [1]="trigger_vicious_hex_explosion_when_curse_ends" } }, - [1684]={ + [1734]={ [1]={ [1]={ limit={ @@ -35961,7 +36967,7 @@ return { [1]="triggered_by_brand_support" } }, - [1685]={ + [1735]={ [1]={ [1]={ limit={ @@ -35977,7 +36983,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1686]={ + [1736]={ [1]={ [1]={ limit={ @@ -36020,7 +37026,7 @@ return { [3]="virtual_energy_cost_for_generic_ongoing_trigger" } }, - [1687]={ + [1737]={ [1]={ [1]={ limit={ @@ -36036,7 +37042,7 @@ return { [1]="triggered_by_item_buff" } }, - [1688]={ + [1738]={ [1]={ [1]={ limit={ @@ -36052,36 +37058,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1689]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Seal gain frequency while you are Channelling" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Seal gain frequency while you are Channelling" - } - }, - stats={ - [1]="unleash_support_seal_gain_frequency_+%_while_channelling" - } - }, - [1690]={ + [1739]={ [1]={ [1]={ limit={ @@ -36090,27 +37067,14 @@ return { [2]="#" } }, - text="{0}% increased Seal gain frequency while you are not Channelling" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Seal gain frequency while you are not Channelling" + text="{0}% of Physical damage Converted to a random Element" } }, stats={ - [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" + [1]="trinity_%_physical_damage_to_convert_to_random_element_granted" } }, - [1691]={ + [1740]={ [1]={ [1]={ [1]={ @@ -36130,7 +37094,7 @@ return { [1]="use_time_+_ms_if_shapeshift_required" } }, - [1692]={ + [1741]={ [1]={ [1]={ limit={ @@ -36146,7 +37110,7 @@ return { [1]="vaal_animate_weapon_raise_up_to_X_weapons_as_uniques" } }, - [1693]={ + [1742]={ [1]={ [1]={ limit={ @@ -36175,7 +37139,7 @@ return { [1]="vaal_arctic_armour_damage_taken_+%_final_from_hits" } }, - [1694]={ + [1743]={ [1]={ [1]={ limit={ @@ -36200,7 +37164,7 @@ return { [1]="vaal_arctic_armour_number_of_hits_absorbed" } }, - [1695]={ + [1744]={ [1]={ [1]={ limit={ @@ -36216,7 +37180,7 @@ return { [1]="vaal_blade_vortex_has_10_spinning_blades" } }, - [1696]={ + [1745]={ [1]={ [1]={ limit={ @@ -36245,7 +37209,7 @@ return { [1]="vaal_charged_attack_damage_taken_+%_final" } }, - [1697]={ + [1746]={ [1]={ [1]={ limit={ @@ -36261,7 +37225,7 @@ return { [1]="vaal_charged_attack_radius_+_per_stage" } }, - [1698]={ + [1747]={ [1]={ [1]={ limit={ @@ -36282,7 +37246,7 @@ return { [2]="vaal_cleave_executioner_damage_against_enemies_on_low_life_+%" } }, - [1699]={ + [1748]={ [1]={ [1]={ limit={ @@ -36298,7 +37262,7 @@ return { [1]="vaal_earthquake_maximum_aftershocks" } }, - [1700]={ + [1749]={ [1]={ [1]={ [1]={ @@ -36331,7 +37295,7 @@ return { [1]="vaal_flameblast_radius_+_per_stage" } }, - [1701]={ + [1750]={ [1]={ [1]={ limit={ @@ -36347,7 +37311,7 @@ return { [1]="vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages" } }, - [1702]={ + [1751]={ [1]={ [1]={ limit={ @@ -36363,7 +37327,7 @@ return { [1]="vaal_reap_additional_maximum_blood_charges" } }, - [1703]={ + [1752]={ [1]={ [1]={ limit={ @@ -36379,7 +37343,7 @@ return { [1]="vaal_reap_gain_maximum_blood_charges_to_on_use" } }, - [1704]={ + [1753]={ [1]={ [1]={ limit={ @@ -36395,7 +37359,7 @@ return { [1]="vaal_skill_exertable" } }, - [1705]={ + [1754]={ [1]={ [1]={ [1]={ @@ -36428,7 +37392,7 @@ return { [1]="vaal_storm_call_delay_ms" } }, - [1706]={ + [1755]={ [1]={ [1]={ limit={ @@ -36457,7 +37421,7 @@ return { [1]="vaal_upgrade_minion_damage_+%_final" } }, - [1707]={ + [1756]={ [1]={ [1]={ limit={ @@ -36486,7 +37450,7 @@ return { [1]="vaal_upgrade_minion_damage_taken_+%_final" } }, - [1708]={ + [1757]={ [1]={ [1]={ limit={ @@ -36502,7 +37466,7 @@ return { [1]="vaal_volcanic_fissure_crack_repeat_count" } }, - [1709]={ + [1758]={ [1]={ [1]={ limit={ @@ -36531,21 +37495,101 @@ return { [1]="vampiric_icon_bleeding_effect_+%_final" } }, - [1710]={ + [1759]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Verisium Infusions do not expire" + } + }, + stats={ + [1]="verisium_infusion_do_not_expire" + } + }, + [1760]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Verisium Infusion duration" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Verisium Infusion duration" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Verisium Infusion duration" + } + }, + stats={ + [1]="verisium_infusion_duration_+%" + } + }, + [1761]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Generates {0} Verisium Infusion" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Generates {0} Verisium Infusions" + } + }, + stats={ + [1]="verisium_infusion_skill_number_of_verisium_infusion_to_grant" + } + }, + [1762]={ [1]={ }, stats={ [1]="virtual_aegis_unique_shield_max_value" } }, - [1711]={ + [1763]={ [1]={ }, stats={ [1]="virtual_armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [1712]={ + [1764]={ [1]={ [1]={ limit={ @@ -36570,7 +37614,7 @@ return { [1]="virtual_bladefall_number_of_volleys" } }, - [1713]={ + [1765]={ [1]={ [1]={ limit={ @@ -36586,21 +37630,21 @@ return { [1]="virtual_blood_spears_total_number_of_spears" } }, - [1714]={ + [1766]={ [1]={ }, stats={ [1]="virtual_chance_to_daze_%" } }, - [1715]={ + [1767]={ [1]={ }, stats={ [1]="virtual_chill_effect_+%_final" } }, - [1716]={ + [1768]={ [1]={ [1]={ limit={ @@ -36616,105 +37660,98 @@ return { [1]="virtual_chill_minimum_slow_%" } }, - [1717]={ + [1769]={ [1]={ }, stats={ [1]="virtual_crossbow_attack_%_chance_to_not_consume_ammo" } }, - [1718]={ + [1770]={ [1]={ }, stats={ [1]="virtual_curse_delay_duration_ms" } }, - [1719]={ + [1771]={ [1]={ }, stats={ [1]="virtual_damage_absorbed_per_jade_consumed" } }, - [1720]={ + [1772]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [1721]={ + [1773]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [1722]={ - [1]={ - }, - stats={ - [1]="virtual_deal_chaos_damage_per_minute_for_8_seconds_on_curse" - } - }, - [1723]={ + [1774]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1724]={ + [1775]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%" } }, - [1725]={ + [1776]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1726]={ + [1777]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%" } }, - [1727]={ + [1778]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%" } }, - [1728]={ + [1779]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%" } }, - [1729]={ + [1780]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%" } }, - [1730]={ + [1781]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_poison_on_hit_%" } }, - [1731]={ + [1782]={ [1]={ [1]={ limit={ @@ -36730,28 +37767,35 @@ return { [1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap" } }, - [1732]={ + [1783]={ + [1]={ + }, + stats={ + [1]="virtual_energy_shield_modified_amount_on_skill_use" + } + }, + [1784]={ [1]={ }, stats={ [1]="virtual_evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [1733]={ + [1785]={ [1]={ }, stats={ [1]="virtual_flameblast_maximum_stages" } }, - [1734]={ + [1786]={ [1]={ }, stats={ [1]="virtual_generic_ongoing_trigger_maximum_energy" } }, - [1735]={ + [1787]={ [1]={ [1]={ limit={ @@ -36772,7 +37816,7 @@ return { [2]="virtual_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1736]={ + [1788]={ [1]={ [1]={ [1]={ @@ -36792,7 +37836,7 @@ return { [1]="virtual_herald_of_thunder_bolt_base_frequency" } }, - [1737]={ + [1789]={ [1]={ [1]={ limit={ @@ -36830,50 +37874,56 @@ return { [1]="virtual_hit_damage_stun_multiplier_+%_final" } }, - [1738]={ + [1790]={ [1]={ }, stats={ [1]="virtual_knockback_distance_+%" } }, - [1739]={ + [1791]={ + [1]={ + }, + stats={ + [1]="virtual_life_modified_amount_on_skill_use" + } + }, + [1792]={ [1]={ }, stats={ [1]="virtual_main_hand_apply_X_armour_break_on_hit" } }, - [1740]={ + [1793]={ [1]={ }, stats={ [1]="virtual_main_hand_hit_damage_stun_multiplier_+%" } }, - [1741]={ + [1794]={ [1]={ }, stats={ [1]="virtual_main_hand_melee_splash_chance_%" } }, - [1742]={ + [1795]={ [1]={ }, stats={ [1]="virtual_main_hand_slam_aftershock_chance_%" } }, - [1743]={ + [1796]={ [1]={ }, stats={ - [1]="active_skill_buff_stack_gain_frequency_ms", - [2]="virtual_maximum_number_of_arctic_armour_stationary_stacks" + [1]="virtual_mana_modified_amount_on_skill_use" } }, - [1744]={ + [1797]={ [1]={ [1]={ [1]={ @@ -36893,7 +37943,7 @@ return { [1]="virtual_mine_detonation_time_ms" } }, - [1745]={ + [1798]={ [1]={ [1]={ limit={ @@ -36931,35 +37981,35 @@ return { [1]="virtual_movement_speed_penalty_+%_final_while_performing_action" } }, - [1746]={ + [1799]={ [1]={ }, stats={ [1]="virtual_never_chill" } }, - [1747]={ + [1800]={ [1]={ }, stats={ [1]="virtual_never_freeze" } }, - [1748]={ + [1801]={ [1]={ }, stats={ [1]="virtual_never_ignite" } }, - [1749]={ + [1802]={ [1]={ }, stats={ [1]="virtual_never_shock" } }, - [1750]={ + [1803]={ [1]={ [1]={ limit={ @@ -36984,14 +38034,14 @@ return { [1]="virtual_number_of_additional_curses_allowed" } }, - [1751]={ + [1804]={ [1]={ }, stats={ [1]="virtual_number_of_banners_allowed" } }, - [1752]={ + [1805]={ [1]={ [1]={ limit={ @@ -37004,45 +38054,61 @@ return { } }, stats={ - [1]="virtual_number_of_chains" + [1]="display_number_of_chains_for_beams" } }, - [1753]={ + [1806]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chain count@{0}" + } + }, + stats={ + [1]="display_number_of_chains_for_projectiles" + } + }, + [1807]={ [1]={ }, stats={ [1]="virtual_number_of_marks_allowed_per_type" } }, - [1754]={ + [1808]={ [1]={ }, stats={ [1]="virtual_off_hand_apply_X_armour_break_on_hit" } }, - [1755]={ + [1809]={ [1]={ }, stats={ [1]="virtual_off_hand_hit_damage_stun_multiplier_+%" } }, - [1756]={ + [1810]={ [1]={ }, stats={ [1]="virtual_off_hand_melee_splash_chance_%" } }, - [1757]={ + [1811]={ [1]={ }, stats={ [1]="virtual_off_hand_slam_aftershock_chance_%" } }, - [1758]={ + [1812]={ [1]={ [1]={ limit={ @@ -37067,14 +38133,14 @@ return { [1]="virtual_onslaught_on_hit_%_chance" } }, - [1759]={ + [1813]={ [1]={ }, stats={ [1]="virtual_physical_damage_can_pin" } }, - [1760]={ + [1814]={ [1]={ [1]={ limit={ @@ -37090,21 +38156,21 @@ return { [1]="virtual_poison_cloud_limit" } }, - [1761]={ + [1815]={ [1]={ }, stats={ - [1]="virtual_projectile_number_to_split" + [1]="display_projectile_number_to_split" } }, - [1762]={ + [1816]={ [1]={ }, stats={ [1]="virtual_projectiles_fork" } }, - [1763]={ + [1817]={ [1]={ [1]={ limit={ @@ -37120,28 +38186,28 @@ return { [1]="virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [1764]={ + [1818]={ [1]={ }, stats={ [1]="virtual_ritual_of_power_maximum_number_of_rituals" } }, - [1765]={ + [1819]={ [1]={ }, stats={ [1]="virtual_sandstorm_swipe_max_stages" } }, - [1766]={ + [1820]={ [1]={ }, stats={ [1]="virtual_skill_required_number_of_combo_stacks" } }, - [1767]={ + [1821]={ [1]={ [1]={ limit={ @@ -37157,7 +38223,7 @@ return { [1]="virtual_spell_apply_X_armour_break_on_hit" } }, - [1768]={ + [1822]={ [1]={ [1]={ [1]={ @@ -37177,7 +38243,7 @@ return { [1]="virtual_spider_aspect_web_interval_ms" } }, - [1769]={ + [1823]={ [1]={ [1]={ [1]={ @@ -37210,7 +38276,7 @@ return { [1]="virtual_static_strike_base_zap_frequency_ms" } }, - [1770]={ + [1824]={ [1]={ [1]={ limit={ @@ -37231,35 +38297,28 @@ return { [2]="virtual_steelskin_damage_limit" } }, - [1771]={ - [1]={ - }, - stats={ - [1]="virtual_support_anticipation_charge_gain_interval_ms" - } - }, - [1772]={ + [1825]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_one_additional_aftershock_%" } }, - [1773]={ + [1826]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_three_additional_aftershocks_%" } }, - [1774]={ + [1827]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_two_additional_aftershocks_%" } }, - [1775]={ + [1828]={ [1]={ [1]={ [1]={ @@ -37279,7 +38338,7 @@ return { [1]="virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling" } }, - [1776]={ + [1829]={ [1]={ [1]={ limit={ @@ -37295,35 +38354,35 @@ return { [1]="virtual_tectonic_slam_%_chance_to_do_charged_slam" } }, - [1777]={ + [1830]={ [1]={ }, stats={ [1]="virtual_total_cooldown_count" } }, - [1778]={ + [1831]={ [1]={ }, stats={ [1]="virtual_totem_cold_resistance_%" } }, - [1779]={ + [1832]={ [1]={ }, stats={ [1]="virtual_totem_fire_resistance_%" } }, - [1780]={ + [1833]={ [1]={ }, stats={ [1]="virtual_totem_lightning_resistance_%" } }, - [1781]={ + [1834]={ [1]={ [1]={ limit={ @@ -37352,7 +38411,7 @@ return { [1]="virtual_trap_and_mine_throwing_time_+%_final" } }, - [1782]={ + [1835]={ [1]={ [1]={ limit={ @@ -37377,7 +38436,7 @@ return { [1]="virtual_vaal_lightning_arrow_number_of_redirects" } }, - [1783]={ + [1836]={ [1]={ [1]={ limit={ @@ -37406,7 +38465,7 @@ return { [1]="virulent_arrow_damage_+%_final_per_stage" } }, - [1784]={ + [1837]={ [1]={ [1]={ limit={ @@ -37422,7 +38481,7 @@ return { [1]="virulent_arrow_maximum_number_of_stacks" } }, - [1785]={ + [1838]={ [1]={ [1]={ limit={ @@ -37438,7 +38497,7 @@ return { [1]="virulent_arrow_number_of_pod_projectiles" } }, - [1786]={ + [1839]={ [1]={ [1]={ limit={ @@ -37467,7 +38526,7 @@ return { [1]="virulent_arrow_pod_projectile_damage_+%_final" } }, - [1787]={ + [1840]={ [1]={ [1]={ limit={ @@ -37496,7 +38555,7 @@ return { [1]="volatile_dead_core_movement_speed_+%" } }, - [1788]={ + [1841]={ [1]={ [1]={ limit={ @@ -37512,7 +38571,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [1789]={ + [1842]={ [1]={ [1]={ limit={ @@ -37537,7 +38596,7 @@ return { [1]="volatile_dead_number_of_corpses_to_consume" } }, - [1790]={ + [1843]={ [1]={ [1]={ limit={ @@ -37553,23 +38612,7 @@ return { [1]="volcanic_fissure_maximum_number_of_fissures" } }, - [1791]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% Chance for triggered Aftershocks to repeat" - } - }, - stats={ - [1]="volcanic_fissure_%_chance_repeat_aftershocks" - } - }, - [1792]={ + [1844]={ [1]={ [1]={ limit={ @@ -37598,7 +38641,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [1793]={ + [1845]={ [1]={ [1]={ limit={ @@ -37623,7 +38666,7 @@ return { [1]="volcano_base_number_of_geysers_allowed" } }, - [1794]={ + [1846]={ [1]={ [1]={ limit={ @@ -37639,7 +38682,7 @@ return { [1]="volcano_damage_+%_final_per_stage" } }, - [1795]={ + [1847]={ [1]={ [1]={ [1]={ @@ -37672,7 +38715,7 @@ return { [1]="volcano_fires_projectiles_every_x_ms" } }, - [1796]={ + [1848]={ [1]={ [1]={ limit={ @@ -37688,7 +38731,7 @@ return { [1]="volcano_maximum_number_of_stages" } }, - [1797]={ + [1849]={ [1]={ [1]={ [1]={ @@ -37708,7 +38751,7 @@ return { [1]="volcano_skill_effect_duration_per_stage" } }, - [1798]={ + [1850]={ [1]={ [1]={ limit={ @@ -37737,14 +38780,14 @@ return { [1]="voltaxic_burst_damage_+%_final_per_stack" } }, - [1799]={ + [1851]={ [1]={ }, stats={ [1]="wall_is_created_in_a_circle_instead" } }, - [1800]={ + [1852]={ [1]={ [1]={ limit={ @@ -37760,7 +38803,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [1801]={ + [1853]={ [1]={ [1]={ limit={ @@ -37776,7 +38819,7 @@ return { [1]="rallying_cry_weapon_damage_%_for_allies_per_5_monster_power" } }, - [1802]={ + [1854]={ [1]={ [1]={ limit={ @@ -37792,7 +38835,7 @@ return { [1]="intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP" } }, - [1803]={ + [1855]={ [1]={ [1]={ limit={ @@ -37813,7 +38856,7 @@ return { [2]="ancestral_cry_max_physical_damage_reduction_rating" } }, - [1804]={ + [1856]={ [1]={ [1]={ limit={ @@ -37829,7 +38872,7 @@ return { [1]="ancestral_cry_x_melee_range_per_5_monster_power" } }, - [1805]={ + [1857]={ [1]={ [1]={ limit={ @@ -37845,7 +38888,7 @@ return { [1]="infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power" } }, - [1806]={ + [1858]={ [1]={ [1]={ limit={ @@ -37861,7 +38904,7 @@ return { [1]="endurance_charge_granted_per_X_monster_power_during_endurance_warcry" } }, - [1807]={ + [1859]={ [1]={ [1]={ limit={ @@ -37882,7 +38925,7 @@ return { [2]="maximum_number_of_spiritual_cry_warriors" } }, - [1808]={ + [1860]={ [1]={ [1]={ limit={ @@ -37911,7 +38954,7 @@ return { [1]="divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%" } }, - [1809]={ + [1861]={ [1]={ [1]={ limit={ @@ -37927,7 +38970,7 @@ return { [1]="divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%" } }, - [1810]={ + [1862]={ [1]={ [1]={ limit={ @@ -37956,7 +38999,7 @@ return { [1]="rallying_cry_buff_effect_on_minions_+%_final" } }, - [1811]={ + [1863]={ [1]={ [1]={ limit={ @@ -37990,7 +39033,7 @@ return { [2]="warcry_empowers_per_X_monster_power_mp_cap" } }, - [1812]={ + [1864]={ [1]={ [1]={ limit={ @@ -38441,7 +39484,7 @@ return { [3]="skill_empower_limitation_specifier_for_stat_description" } }, - [1813]={ + [1865]={ [1]={ [1]={ limit={ @@ -38466,7 +39509,7 @@ return { [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" } }, - [1814]={ + [1866]={ [1]={ [1]={ limit={ @@ -38482,7 +39525,7 @@ return { [1]="rallying_cry_damage_+%_final_from_osm_per_nearby_ally" } }, - [1815]={ + [1867]={ [1]={ [1]={ limit={ @@ -38511,7 +39554,7 @@ return { [1]="seismic_cry_base_slam_skill_damage_+%_final" } }, - [1816]={ + [1868]={ [1]={ [1]={ limit={ @@ -38540,7 +39583,7 @@ return { [1]="seismic_cry_slam_skill_damage_+%_final_increase_per_repeat" } }, - [1817]={ + [1869]={ [1]={ [1]={ limit={ @@ -38569,7 +39612,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%" } }, - [1818]={ + [1870]={ [1]={ [1]={ limit={ @@ -38598,7 +39641,7 @@ return { [1]="seismic_cry_slam_skill_area_+%_increase_per_repeat" } }, - [1819]={ + [1871]={ [1]={ [1]={ limit={ @@ -38614,7 +39657,7 @@ return { [1]="display_battlemage_cry_exerted_attacks_trigger_supported_spell" } }, - [1820]={ + [1872]={ [1]={ [1]={ limit={ @@ -38630,7 +39673,7 @@ return { [1]="infernal_cry_empowered_attacks_trigger_combust_display" } }, - [1821]={ + [1873]={ [1]={ [1]={ [1]={ @@ -38650,7 +39693,7 @@ return { [1]="ambush_additional_critical_strike_chance_permyriad" } }, - [1822]={ + [1874]={ [1]={ [1]={ limit={ @@ -38666,7 +39709,7 @@ return { [1]="vanishing_ambush_critical_strike_multiplier_+" } }, - [1823]={ + [1875]={ [1]={ [1]={ limit={ @@ -38682,7 +39725,7 @@ return { [1]="intimidating_cry_empowerd_attacks_deal_double_damage_display" } }, - [1824]={ + [1876]={ [1]={ [1]={ limit={ @@ -38711,7 +39754,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [1825]={ + [1877]={ [1]={ [1]={ limit={ @@ -38736,7 +39779,7 @@ return { [1]="warcry_grant_knockback_%_to_exerted_attacks" } }, - [1826]={ + [1878]={ [1]={ [1]={ limit={ @@ -38752,14 +39795,14 @@ return { [1]="warcry_grant_overwhelm_%_to_exerted_attacks" } }, - [1827]={ + [1879]={ [1]={ }, stats={ [1]="warcry_grant_X_rage_per_5_power" } }, - [1828]={ + [1880]={ [1]={ [1]={ limit={ @@ -38802,7 +39845,7 @@ return { [3]="quality_display_warding_steel_is_gem" } }, - [1829]={ + [1881]={ [1]={ [1]={ limit={ @@ -38818,7 +39861,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [1830]={ + [1882]={ [1]={ [1]={ limit={ @@ -38834,7 +39877,7 @@ return { [1]="water_sphere_does_weird_conversion_stuff" } }, - [1831]={ + [1883]={ [1]={ [1]={ limit={ @@ -38863,7 +39906,7 @@ return { [1]="weapon_trap_rotation_speed_+%" } }, - [1832]={ + [1884]={ [1]={ [1]={ [1]={ @@ -38883,7 +39926,7 @@ return { [1]="weapon_trap_total_rotation_%" } }, - [1833]={ + [1885]={ [1]={ [1]={ limit={ @@ -38912,7 +39955,7 @@ return { [1]="whirling_blades_evasion_rating_+%_while_moving" } }, - [1834]={ + [1886]={ [1]={ [1]={ limit={ @@ -38928,7 +39971,7 @@ return { [1]="whirling_slash_knockback_distance_+%_final_per_stage" } }, - [1835]={ + [1887]={ [1]={ [1]={ limit={ @@ -38957,7 +40000,7 @@ return { [1]="wind_blast_damage_+%_final_from_distance" } }, - [1836]={ + [1888]={ [1]={ [1]={ limit={ @@ -38973,7 +40016,7 @@ return { [1]="winter_brand_max_number_of_stages" } }, - [1837]={ + [1889]={ [1]={ [1]={ limit={ @@ -38989,7 +40032,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1838]={ + [1890]={ [1]={ [1]={ limit={ @@ -39005,7 +40048,7 @@ return { [1]="wither_chance_to_apply_another_stack_if_hand_cast_%" } }, - [1839]={ + [1891]={ [1]={ [1]={ limit={ @@ -39021,14 +40064,14 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1840]={ + [1892]={ [1]={ }, stats={ [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1841]={ + [1893]={ [1]={ [1]={ limit={ @@ -39053,7 +40096,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [1842]={ + [1894]={ [1]={ [1]={ limit={ @@ -39078,7 +40121,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [1843]={ + [1895]={ [1]={ [1]={ limit={ @@ -39103,7 +40146,7 @@ return { [1]="withering_step_chance_to_not_remove_on_skill_use_%" } }, - [1844]={ + [1896]={ [1]={ [1]={ [1]={ @@ -39136,7 +40179,7 @@ return { [1]="wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms" } }, - [1845]={ + [1897]={ [1]={ [1]={ limit={ @@ -39152,7 +40195,7 @@ return { [1]="wolf_warcry_maximum_number_of_wolves" } }, - [1846]={ + [1898]={ [1]={ [1]={ limit={ @@ -39168,7 +40211,7 @@ return { [1]="wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed" } }, - [1847]={ + [1899]={ [1]={ [1]={ [1]={ @@ -39201,36 +40244,7 @@ return { [1]="igneous_shield_perfect_block_cooldown_ms" } }, - [1848]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="This Skill's effects deal {0}% more Damage when Reoccurring" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="This Skill's effects deal {0}% less Damage when Reoccurring" - } - }, - stats={ - [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" - } - }, - [1849]={ + [1900]={ [1]={ [1]={ limit={ @@ -39246,7 +40260,7 @@ return { [1]="kinetic_bolt_number_of_zig_zags" } }, - [1850]={ + [1901]={ [1]={ [1]={ limit={ @@ -39275,7 +40289,7 @@ return { [1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self" } }, - [1851]={ + [1902]={ [1]={ [1]={ limit={ @@ -39304,7 +40318,7 @@ return { [1]="lightning_explosion_mine_aura_damage_taken_+%" } }, - [1852]={ + [1903]={ [1]={ [1]={ limit={ @@ -39335,7 +40349,7 @@ return { [4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit" } }, - [1853]={ + [1904]={ [1]={ [1]={ limit={ @@ -39351,7 +40365,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1854]={ + [1905]={ [1]={ [1]={ limit={ @@ -39380,7 +40394,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [1855]={ + [1906]={ [1]={ [1]={ limit={ @@ -39396,7 +40410,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [1856]={ + [1907]={ [1]={ [1]={ limit={ @@ -39412,7 +40426,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1857]={ + [1908]={ [1]={ [1]={ limit={ @@ -39428,7 +40442,7 @@ return { [1]="minions_are_defensive" } }, - [1858]={ + [1909]={ [1]={ [1]={ limit={ @@ -39444,7 +40458,7 @@ return { [1]="display_skill_reserves_in_all_weapon_sets" } }, - [1859]={ + [1910]={ [1]={ [1]={ limit={ @@ -39487,2037 +40501,2107 @@ return { [3]="quality_display_infernal_cry_is_gem" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1260, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1261, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1262, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1263, - ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=389, - ["abyssal_cry_%_max_life_as_chaos_on_death"]=307, - ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=305, - ["accuracy_range_penalty_+%"]=390, - ["accuracy_rating"]=105, - ["accuracy_rating_+%"]=106, - ["active_skill_200%_increased_knockback_distance"]=61, - ["active_skill_added_damage_+%_final"]=391, - ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=392, - ["active_skill_all_damage_%_as_fire_if_heat_is_consumed"]=730, - ["active_skill_area_damage_+%_final"]=393, - ["active_skill_area_of_effect_+%_final"]=70, - ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=394, - ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=395, - ["active_skill_attack_speed_+%_final"]=275, - ["active_skill_attack_speed_+%_final_while_dual_wielding"]=396, - ["active_skill_base_area_length_+"]=397, - ["active_skill_base_radius_+"]=64, - ["active_skill_base_slow_debuff_movement_speed_+%_final"]=398, - ["active_skill_bleeding_effect_+%_final"]=400, - ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=399, - ["active_skill_buff_stack_gain_frequency_ms"]=1743, - ["active_skill_can_overload"]=401, - ["active_skill_chaos_damage_+%_final"]=402, - ["active_skill_chill_as_though_damage_+%_final"]=403, - ["active_skill_chill_effect_+%_final"]=96, - ["active_skill_compounding_ignites"]=404, - ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=405, - ["active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final"]=406, - ["active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final"]=407, - ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=408, - ["active_skill_cooldown_bypass_type_override_to_power_charge"]=640, - ["active_skill_damage_+%_final_against_enemies_on_full_life"]=413, - ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=409, - ["active_skill_damage_+%_final_per_time_chained"]=414, - ["active_skill_damage_+%_final_vs_burning_enemies"]=415, - ["active_skill_damage_+%_final_vs_chilled_enemies"]=416, - ["active_skill_damage_+%_final_vs_fully_broken_armour"]=417, - ["active_skill_damage_+%_final_vs_immobilised_enemies"]=410, - ["active_skill_damage_+%_final_vs_unique_enemies"]=411, - ["active_skill_damage_+%_final_while_dual_wielding"]=412, - ["active_skill_damage_+%_when_cast_on_frostbolt"]=418, - ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=366, - ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=419, - ["active_skill_ground_consecration_radius_+"]=65, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=1025, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=1025, - ["active_skill_has_%_standard_scaling_attack_damage"]=420, - ["active_skill_hit_damage_freeze_multiplier_+%_final"]=421, - ["active_skill_hit_damage_stun_multiplier_+%_final"]=422, - ["active_skill_if_used_through_frostbolt_damage_+%_final"]=423, - ["active_skill_ignite_chance_+%_final"]=424, - ["active_skill_ignite_duration_+%_final"]=425, - ["active_skill_ignite_effect_+%_final"]=426, - ["active_skill_ignite_proliferation_radius"]=427, - ["active_skill_knockback_distance_+%_final"]=428, - ["active_skill_lightning_damage_+%_final"]=429, - ["active_skill_minion_energy_shield_+%_final"]=130, - ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=430, - ["active_skill_minion_life_+%_final"]=129, - ["active_skill_minion_movement_velocity_+%_final"]=126, - ["active_skill_movement_speed_+%_final"]=228, - ["active_skill_never_freeze_shock_ignite"]=431, - ["active_skill_pins_as_though_dealt_damage_+%_final"]=432, - ["active_skill_poison_duration_+%_final"]=433, - ["active_skill_projectile_damage_+%_final"]=361, - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=434, - ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=435, - ["active_skill_reload_speed_+%_final"]=436, - ["active_skill_required_number_of_combo_stacks"]=437, - ["active_skill_requires_X_glory"]=13, - ["active_skill_returning_projectile_damage_+%_final"]=362, - ["active_skill_shock_as_though_damage_+%_final"]=438, - ["active_skill_shock_chance_+%_final"]=439, - ["active_skill_shock_duration_+%_final"]=440, - ["active_skill_shock_effect_+%_final"]=441, - ["active_skill_stun_threshold_+%_while_performing_action"]=442, - ["active_skill_withered_base_duration_ms"]=119, - ["add_endurance_charge_on_skill_hit_%"]=443, - ["add_frenzy_charge_on_kill"]=110, - ["add_frenzy_charge_on_kill_%_chance"]=111, - ["add_frenzy_charge_on_skill_hit_%"]=444, - ["add_power_charge_on_critical_strike_%"]=235, - ["additional_base_critical_strike_chance"]=349, - ["additional_block_chance_against_projectiles_%_per_steel_charge"]=445, - ["additional_chain_chance_%"]=446, - ["additional_chance_to_freeze_chilled_enemies_%"]=330, - ["additional_combo_gain_chance_%"]=447, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=449, - ["additional_critical_strike_chance_permyriad_while_dead"]=448, - ["additional_projectiles_per_intensity"]=450, - ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=451, - ["aftershock_area_of_effect_+%_final"]=346, - ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=452, - ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=452, - ["all_damage_can_ignite_freeze_shock"]=453, - ["all_damage_can_sap"]=454, - ["already_split_if_no_steel_shards"]=455, - ["always_chain_from_shocked_enemies"]=456, - ["always_crit"]=457, - ["always_freeze"]=91, - ["always_ignite"]=458, - ["always_pierce"]=459, - ["always_stun"]=135, - ["always_stun_enemies_that_are_on_full_life"]=460, - ["ambush_additional_critical_strike_chance_permyriad"]=1821, - ["ancestor_totem_buff_effect_+%"]=461, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=51, - ["ancestor_totem_parent_activation_range_+%"]=462, - ["ancestral_aid_required_count_of_recent_blocks"]=463, - ["ancestral_call_spirit_strike_interval_ms"]=376, - ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1813, - ["ancestral_cry_max_physical_damage_reduction_rating"]=1803, - ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1803, - ["ancestral_cry_x_melee_range_per_5_monster_power"]=1804, - ["ancestral_slam_interval_duration"]=377, - ["ancestral_slam_stun_threshold_reduction_+%"]=464, - ["animate_item_maximum_level_requirement"]=252, - ["animate_weapon_chance_to_create_additional_copy_%"]=465, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=466, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=467, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=468, - ["apply_linked_curses_on_hit_%"]=241, - ["apply_linked_curses_with_dark_ritual"]=469, - ["apply_x_wither_on_hit"]=118, - ["arc_chain_hit_damage_+%_final"]=470, - ["arc_chains_gained_from_infusion_consumption"]=471, - ["arc_damage_+%_final_from_infusion_consumption"]=472, - ["arc_damage_+%_final_per_chain"]=473, - ["arcane_cloak_consume_%_of_mana"]=474, - ["arcane_cloak_damage_absorbed_%"]=475, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=476, - ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=477, - ["arctic_armour_chill_when_hit_duration"]=478, - ["arctic_armour_fire_damage_taken_+%_final"]=479, - ["arctic_armour_physical_damage_taken_+%_final"]=480, - ["arctic_breath_maximum_number_of_skulls_allowed"]=481, - ["area_of_effect_+%_final_from_whirling_assault_level"]=482, - ["area_of_effect_+%_per_frost_fury_stage"]=483, - ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=484, - ["area_of_effect_+%_when_cast_on_frostbolt"]=485, - ["area_of_effect_+%_while_dead"]=69, - ["area_of_effect_+%_while_not_dual_wielding"]=486, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=487, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=488, - ["attack_and_cast_speed_+%"]=489, - ["attack_damage_+%"]=490, - ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=491, - ["attack_duration_ms"]=492, - ["attack_repeat_count"]=234, - ["attack_speed_+%"]=46, - ["attack_speed_+%_granted_from_skill"]=47, - ["attack_speed_+%_per_trauma"]=1666, - ["attack_speed_+%_when_on_low_life"]=48, - ["attack_speed_cannot_be_modified"]=493, - ["attack_speed_modifiers_apply_to_over_time_cost"]=494, - ["attack_trigger_on_hit_%"]=271, - ["attack_trigger_on_hitting_bleeding_enemy_%"]=495, - ["attack_trigger_on_kill_%"]=253, - ["attack_trigger_on_melee_hit_%"]=272, - ["attack_trigger_when_critically_hit_%"]=249, - ["attack_unusable_if_triggerable"]=251, - ["attacks_impale_on_hit_%_chance"]=496, - ["attacks_inflict_bleeding_on_hit"]=560, - ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=283, - ["aura_effect_+%"]=73, - ["avoid_damage_%"]=497, - ["avoid_interruption_while_using_this_skill_%"]=498, - ["backstab_damage_+%"]=136, - ["ball_lightning_superball_%_chance"]=499, - ["barrage_support_projectile_spread_+%"]=500, - ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=501, - ["base_active_skill_buff_stack_gain_frequency_ms"]=1149, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1295, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1296, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1297, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1298, + ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=390, + ["abyssal_cry_%_max_life_as_chaos_on_death"]=304, + ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=302, + ["accuracy_range_penalty_+%"]=391, + ["accuracy_rating"]=103, + ["accuracy_rating_+%"]=104, + ["active_skill_200%_increased_knockback_distance"]=60, + ["active_skill_added_damage_+%_final"]=392, + ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=393, + ["active_skill_all_damage_%_as_fire_if_heat_is_consumed"]=751, + ["active_skill_area_damage_+%_final"]=394, + ["active_skill_area_of_effect_+%_final"]=69, + ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=395, + ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=396, + ["active_skill_attack_speed_+%_final"]=272, + ["active_skill_attack_speed_+%_final_while_dual_wielding"]=397, + ["active_skill_base_area_length_+"]=398, + ["active_skill_base_radius_+"]=63, + ["active_skill_base_slow_debuff_movement_speed_+%_final"]=399, + ["active_skill_bleeding_effect_+%_final"]=401, + ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=400, + ["active_skill_can_overload"]=402, + ["active_skill_chaos_damage_+%_final"]=403, + ["active_skill_chill_as_though_damage_+%_final"]=404, + ["active_skill_chill_effect_+%_final"]=94, + ["active_skill_compounding_ignites"]=405, + ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=406, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final"]=407, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final"]=408, + ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=409, + ["active_skill_cooldown_bypass_type_override_to_power_charge"]=660, + ["active_skill_damage_+%_final_against_enemies_on_full_life"]=414, + ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=410, + ["active_skill_damage_+%_final_per_time_chained"]=415, + ["active_skill_damage_+%_final_vs_burning_enemies"]=416, + ["active_skill_damage_+%_final_vs_chilled_enemies"]=417, + ["active_skill_damage_+%_final_vs_fully_broken_armour"]=418, + ["active_skill_damage_+%_final_vs_immobilised_enemies"]=411, + ["active_skill_damage_+%_final_vs_unique_enemies"]=412, + ["active_skill_damage_+%_final_while_dual_wielding"]=413, + ["active_skill_damage_+%_when_cast_on_frostbolt"]=419, + ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=363, + ["active_skill_damaging_ailment_effect_+%_final"]=420, + ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=421, + ["active_skill_generates_mp_%_glory_per_chaos_hit"]=422, + ["active_skill_ground_consecration_radius_+"]=64, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=1055, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=1055, + ["active_skill_has_%_standard_scaling_attack_damage"]=423, + ["active_skill_hit_damage_freeze_multiplier_+%_final"]=424, + ["active_skill_hit_damage_stun_multiplier_+%_final"]=425, + ["active_skill_if_used_through_frostbolt_damage_+%_final"]=426, + ["active_skill_ignite_chance_+%_final"]=427, + ["active_skill_ignite_duration_+%_final"]=428, + ["active_skill_ignite_effect_+%_final"]=429, + ["active_skill_ignite_proliferation_radius"]=430, + ["active_skill_knockback_distance_+%_final"]=431, + ["active_skill_lightning_damage_+%_final"]=432, + ["active_skill_minion_energy_shield_+%_final"]=129, + ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=433, + ["active_skill_minion_life_+%_final"]=128, + ["active_skill_minion_movement_velocity_+%_final"]=125, + ["active_skill_movement_speed_+%_final"]=226, + ["active_skill_never_freeze_shock_ignite"]=434, + ["active_skill_pins_as_though_dealt_damage_+%_final"]=435, + ["active_skill_poison_duration_+%_final"]=436, + ["active_skill_projectile_damage_+%_final"]=358, + ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=437, + ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=438, + ["active_skill_reload_speed_+%_final"]=439, + ["active_skill_required_number_of_combo_stacks"]=440, + ["active_skill_requires_X_glory"]=12, + ["active_skill_returning_projectile_damage_+%_final"]=359, + ["active_skill_shock_as_though_damage_+%_final"]=441, + ["active_skill_shock_chance_+%_final"]=442, + ["active_skill_shock_duration_+%_final"]=443, + ["active_skill_shock_effect_+%_final"]=444, + ["active_skill_stun_threshold_+%_while_performing_action"]=445, + ["active_skill_withered_base_duration_ms"]=117, + ["add_endurance_charge_on_skill_hit_%"]=446, + ["add_frenzy_charge_on_kill"]=108, + ["add_frenzy_charge_on_kill_%_chance"]=109, + ["add_frenzy_charge_on_skill_hit_%"]=447, + ["add_power_charge_on_critical_strike_%"]=232, + ["additional_base_critical_strike_chance"]=346, + ["additional_block_chance_against_projectiles_%_per_steel_charge"]=448, + ["additional_chain_chance_%"]=449, + ["additional_chance_to_freeze_chilled_enemies_%"]=327, + ["additional_combo_gain_chance_%"]=450, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=452, + ["additional_critical_strike_chance_permyriad_while_dead"]=451, + ["additional_projectiles_per_intensity"]=453, + ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=454, + ["aftershock_area_of_effect_+%_final"]=343, + ["alchemists_boon_attack_speed_granted_+%_during_life_flask"]=455, + ["alchemists_boon_cast_speed_granted_+%_during_mana_flask"]=456, + ["all_damage_can_ignite_freeze_shock"]=457, + ["all_damage_can_sap"]=458, + ["already_split_if_no_steel_shards"]=459, + ["always_chain_from_cursed_enemies"]=460, + ["always_chain_from_shocked_enemies"]=461, + ["always_crit"]=462, + ["always_freeze"]=89, + ["always_ignite"]=463, + ["always_pierce"]=464, + ["always_stun"]=134, + ["always_stun_enemies_that_are_on_full_life"]=465, + ["ambush_additional_critical_strike_chance_permyriad"]=1873, + ["ancestor_totem_buff_effect_+%"]=466, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=50, + ["ancestor_totem_parent_activation_range_+%"]=467, + ["ancestral_aid_required_count_of_recent_blocks"]=468, + ["ancestral_call_spirit_strike_interval_ms"]=373, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1865, + ["ancestral_cry_max_physical_damage_reduction_rating"]=1855, + ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1855, + ["ancestral_cry_x_melee_range_per_5_monster_power"]=1856, + ["ancestral_slam_interval_duration"]=374, + ["ancestral_slam_stun_threshold_reduction_+%"]=469, + ["ancestral_warrior_totem_total_use_time_%_as_idle_after_animation"]=378, + ["animate_item_maximum_level_requirement"]=249, + ["animate_weapon_chance_to_create_additional_copy_%"]=470, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=471, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=472, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=473, + ["apply_linked_curses_on_hit_%"]=238, + ["apply_linked_curses_with_dark_ritual"]=474, + ["apply_x_wither_on_hit"]=116, + ["arc_chain_hit_damage_+%_final"]=475, + ["arc_chains_gained_from_infusion_consumption"]=476, + ["arc_damage_+%_final_from_infusion_consumption"]=477, + ["arc_damage_+%_final_per_chain"]=478, + ["arcane_cloak_consume_%_of_mana"]=479, + ["arcane_cloak_damage_absorbed_%"]=480, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=481, + ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=482, + ["archon_of_chayula_physical_and_chaos_damage_+%_final"]=483, + ["archon_of_chayula_spawn_chaos_tornado_interval_ms"]=485, + ["archon_of_chayula_withered_on_hit_for_4_seconds_%_chance"]=484, + ["arctic_armour_armour_granted_+%_per_stage"]=486, + ["arctic_armour_chill_when_hit_duration"]=487, + ["arctic_armour_fire_damage_taken_+%_final"]=488, + ["arctic_armour_physical_damage_taken_+%_final"]=489, + ["arctic_breath_maximum_number_of_skulls_allowed"]=490, + ["area_of_effect_+%_final_from_whirling_assault_level"]=491, + ["area_of_effect_+%_per_combo_stack"]=492, + ["area_of_effect_+%_per_frost_fury_stage"]=493, + ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=494, + ["area_of_effect_+%_when_cast_on_frostbolt"]=495, + ["area_of_effect_+%_while_dead"]=68, + ["area_of_effect_+%_while_not_dual_wielding"]=496, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=497, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=498, + ["attack_and_cast_speed_+%"]=499, + ["attack_damage_+%"]=500, + ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=501, + ["attack_duration_ms"]=502, + ["attack_speed_+%"]=45, + ["attack_speed_+%_granted_from_skill"]=46, + ["attack_speed_+%_per_trauma"]=1715, + ["attack_speed_+%_when_on_low_life"]=47, + ["attack_speed_cannot_be_modified"]=503, + ["attack_speed_modifiers_apply_to_over_time_cost"]=504, + ["attack_trigger_on_hit_%"]=268, + ["attack_trigger_on_hitting_bleeding_enemy_%"]=505, + ["attack_trigger_on_kill_%"]=250, + ["attack_trigger_on_melee_hit_%"]=269, + ["attack_trigger_when_critically_hit_%"]=246, + ["attack_unusable_if_triggerable"]=248, + ["attacks_impale_on_hit_%_chance"]=506, + ["attacks_inflict_bleeding_on_hit"]=576, + ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=280, + ["aura_effect_+%"]=72, + ["avoid_damage_%"]=507, + ["avoid_interruption_while_using_this_skill_%"]=508, + ["backstab_damage_+%"]=135, + ["ball_lightning_superball_%_chance"]=509, + ["barrage_support_projectile_spread_+%"]=510, + ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=511, ["base_actor_scale_+%"]=1, - ["base_additional_damage_from_distance_+%_final"]=502, - ["base_all_damage_can_pin"]=92, - ["base_arrow_speed_+%"]=303, - ["base_attack_speed_+%_per_frenzy_charge"]=74, - ["base_aura_area_of_effect_+%"]=72, - ["base_bleeding_effect_+100%_final_chance"]=503, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=166, - ["base_cast_speed_+%"]=57, - ["base_chance_to_daze_%"]=504, - ["base_chance_to_deal_triple_damage_%"]=505, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=506, - ["base_chance_to_freeze_%"]=91, - ["base_chance_to_inflict_bleeding_%"]=507, - ["base_chance_to_not_consume_corpse_%"]=645, - ["base_chance_to_pierce_%"]=508, - ["base_chance_to_poison_on_hit_%"]=340, - ["base_chance_to_shock_%"]=93, - ["base_chance_to_shock_%_from_skill"]=1385, - ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=107, - ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=137, - ["base_cold_damage_resistance_%"]=206, - ["base_combo_stacks_decay_delay_ms"]=509, - ["base_consume_enemy_freeze_on_hit"]=510, - ["base_consume_enemy_shock_on_hit"]=511, - ["base_cooldown_modifier_ms"]=512, - ["base_cooldown_speed_+%"]=513, - ["base_critical_strike_multiplier_+"]=116, - ["base_curse_delay_+%"]=514, - ["base_damage_taken_+%"]=515, - ["base_deal_no_chaos_damage"]=516, - ["base_debuff_slow_magnitude_+%"]=517, - ["base_extra_damage_rolls"]=518, - ["base_ignite_effect_+%"]=519, - ["base_inflict_cold_exposure_on_hit_%_chance"]=520, - ["base_inflict_fire_exposure_on_hit_%_chance"]=521, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=522, - ["base_life_leech_from_physical_attack_damage_permyriad"]=59, - ["base_life_regeneration_rate_per_minute"]=203, - ["base_lightning_damage_can_electrocute"]=523, - ["base_mana_leech_rate_+%"]=359, - ["base_mana_regeneration_rate_per_minute"]=322, - ["base_movement_velocity_+%"]=101, - ["base_number_of_crossbow_bolts"]=524, - ["base_number_of_effigies_allowed"]=1227, - ["base_number_of_projectiles"]=525, - ["base_number_of_projectiles_in_spiral_nova"]=526, - ["base_number_of_tempest_bells_allowed"]=528, - ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=109, - ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=108, - ["base_physical_damage_reduction_rating"]=181, - ["base_poison_duration_+%"]=345, - ["base_poison_effect_+%"]=1276, - ["base_poison_effect_+100%_final_chance"]=529, - ["base_projectiles_cannot_chain"]=530, - ["base_reduce_enemy_cold_resistance_%"]=214, - ["base_reduce_enemy_fire_resistance_%"]=213, - ["base_reduce_enemy_lightning_resistance_%"]=215, - ["base_remnant_duration_ms"]=531, - ["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_smite_number_of_targets"]=532, - ["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"]=534, - ["bear_skills_additional_base_attack_time_when_performing_from_default_stance"]=535, - ["bear_skills_additional_base_attack_time_when_performing_from_standing_stance"]=536, - ["berserk_attack_damage_+%_final"]=370, - ["berserk_attack_speed_+%_final"]=371, - ["berserk_base_damage_taken_+%_final"]=373, - ["berserk_minimum_rage"]=369, - ["berserk_movement_speed_+%_final"]=372, - ["berserk_rage_loss_+%_per_second"]=375, - ["blackhole_damage_taken_+%"]=537, - ["blackhole_hinder_%"]=538, - ["blackhole_tick_rate_ms"]=539, - ["blade_blast_detonated_blades_not_removed_%_chance"]=540, - ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=541, - ["blade_flurry_elemental_damage_+%_while_channeling"]=542, - ["blade_flurry_final_flurry_area_of_effect_+%"]=543, - ["blade_vortex_additional_blade_chance_%"]=544, - ["blade_vortex_critical_strike_chance_+%_per_blade"]=545, - ["blade_vortex_damage_+%_per_blade_final"]=227, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=546, - ["blade_vortex_hit_rate_+%_per_blade"]=226, - ["blade_vortex_hit_rate_ms"]=547, - ["bladefall_critical_strike_chance_+%_per_stage"]=548, - ["bladefall_damage_per_stage_+%_final"]=343, - ["bladefall_volley_gap_distance_+%"]=549, - ["bladefall_volleys_needed_per_vestige_blade"]=550, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=551, - ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=552, - ["bladestorm_create_alternate_stance_storm_%_chance"]=553, - ["bladestorm_maximum_number_of_storms_allowed"]=554, - ["bladestorm_movement_speed_+%_while_in_sandstorm"]=555, - ["bladestorm_sandstorm_movement_speed_+%"]=556, - ["bladestorm_storm_damage_+%_final"]=557, - ["blast_rain_area_of_effect_+%"]=558, - ["blast_rain_damage_+%_vs_distant_enemies"]=559, - ["bleed_on_hit_with_attacks_%"]=560, - ["bleeding_skill_effect_duration"]=81, - ["blind_duration_+%"]=212, - ["blind_effect_+%"]=561, - ["blink_travel_distance"]=562, - ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=563, - ["blood_boil_application_interval_ms"]=564, - ["blood_boil_explosion_area_+%_final_per_boil"]=565, - ["blood_ground_leaving_area_lasts_for_ms"]=566, - ["blood_magic_skill_life_cost_+%_final"]=567, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=352, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=355, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=353, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=354, - ["blood_sand_triggered_blind_on_attack_chance_%"]=569, - ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=570, - ["blood_scythe_cost_+%_final_per_charge"]=571, - ["blood_scythe_damage_+%_final_per_charge"]=572, - ["blood_surge_refresh_on_total_life_spent"]=573, - ["blood_tendrils_beam_count"]=574, - ["bodyswap_damage_+%_when_not_consuming_corpse"]=575, - ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=576, - ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=576, - ["bone_golem_grants_minion_maximum_added_physical_damage"]=577, - ["bone_golem_grants_minion_minimum_added_physical_damage"]=577, - ["bone_offering_damage_taken_+%_final_after_shield_loss"]=578, - ["boneshatter_chance_to_gain_+1_trauma"]=579, - ["brand_detonate_faster_activation_%_per_second"]=580, - ["brand_detonate_faster_duration_%_per_second"]=581, - ["brand_recall_spend_%_of_recalled_brands_cost"]=582, - ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=583, - ["breach_flame_spawn_rate_ms"]=584, - ["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"]=585, - ["burn_damage_+%"]=100, - ["call_of_steel_reload_amount"]=586, - ["call_of_steel_reload_time"]=586, - ["caltrops_on_dodge_X_triggers"]=587, - ["cannot_be_empowered_by_warcries"]=588, - ["cannot_break_armour"]=589, - ["cannot_cause_bleeding"]=560, - ["cannot_cause_stun_but_allow_stun_buildup"]=590, - ["cannot_consume_power_frenzy_endurance_charges"]=591, - ["cannot_daze"]=592, - ["cannot_gain_power_charges_during_skill"]=593, - ["cannot_inflict_blind"]=594, - ["cannot_inflict_bloodstone_lance"]=595, - ["cannot_inflict_elemental_ailments"]=183, - ["cannot_knockback"]=596, - ["cannot_pin"]=597, - ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=598, - ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=599, - ["cast_linked_spells_on_attack_crit_%"]=245, - ["cast_linked_spells_on_melee_kill_%"]=247, - ["cast_on_any_damage_taken_%"]=260, - ["cast_on_attack_use_%"]=254, - ["cast_on_block_gain_X_centienergy_on_block"]=600, - ["cast_on_crit_%"]=602, - ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=601, - ["cast_on_damage_taken_%"]=273, - ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=603, - ["cast_on_damage_taken_threshold"]=273, - ["cast_on_death_%"]=262, - ["cast_on_death_gain_X_centienergy_on_death"]=604, - ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=605, - ["cast_on_flask_use_%"]=606, - ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=607, - ["cast_on_gain_avians_flight_or_avians_might_%"]=266, - ["cast_on_hit_%"]=267, - ["cast_on_hit_if_cursed_%"]=268, - ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=608, - ["cast_on_lose_cats_stealth"]=269, - ["cast_on_melee_hit_if_cursed_%"]=270, - ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=609, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=610, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=611, - ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=612, - ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=613, - ["cast_on_skill_use_%"]=255, - ["cast_on_stunned_%"]=264, - ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=614, + ["base_additional_damage_from_distance_+%_final"]=512, + ["base_all_damage_can_pin"]=90, + ["base_arrow_speed_+%"]=300, + ["base_attack_speed_+%_per_frenzy_charge"]=73, + ["base_aura_area_of_effect_+%"]=71, + ["base_bleeding_effect_+100%_final_chance"]=513, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=165, + ["base_cast_speed_+%"]=56, + ["base_chance_to_daze_%"]=514, + ["base_chance_to_deal_triple_damage_%"]=515, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=516, + ["base_chance_to_freeze_%"]=89, + ["base_chance_to_inflict_bleeding_%"]=517, + ["base_chance_to_not_consume_corpse_%"]=665, + ["base_chance_to_pierce_%"]=518, + ["base_chance_to_poison_on_hit_%"]=337, + ["base_chance_to_shock_%"]=91, + ["base_chance_to_shock_%_from_skill"]=1426, + ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=105, + ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=136, + ["base_cold_damage_resistance_%"]=205, + ["base_combo_stacks_decay_delay_ms"]=519, + ["base_consume_enemy_freeze_on_hit"]=520, + ["base_consume_enemy_shock_on_hit"]=521, + ["base_cooldown_modifier_ms"]=522, + ["base_cooldown_speed_+%"]=523, + ["base_critical_strike_multiplier_+"]=114, + ["base_curse_delay_+%"]=524, + ["base_damage_taken_+%"]=525, + ["base_deal_no_chaos_damage"]=526, + ["base_debuff_slow_magnitude_+%"]=527, + ["base_extra_damage_rolls"]=528, + ["base_ignite_effect_+%"]=529, + ["base_inflict_cold_exposure_on_hit_%_chance"]=530, + ["base_inflict_fire_exposure_on_hit_%_chance"]=531, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=532, + ["base_life_leech_from_physical_attack_damage_permyriad"]=58, + ["base_life_regeneration_rate_per_minute"]=202, + ["base_lightning_damage_can_electrocute"]=533, + ["base_mana_leech_rate_+%"]=356, + ["base_mana_regeneration_rate_per_minute"]=319, + ["base_maximum_seals_for_skill"]=534, + ["base_movement_velocity_+%"]=99, + ["base_number_of_crossbow_bolts"]=535, + ["base_number_of_effigies_allowed"]=1261, + ["base_number_of_projectiles"]=536, + ["base_number_of_projectiles_in_spiral_nova"]=537, + ["base_number_of_tempest_bells_allowed"]=539, + ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=107, + ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=106, + ["base_physical_damage_reduction_rating"]=180, + ["base_poison_duration_+%"]=342, + ["base_poison_effect_+%"]=1311, + ["base_poison_effect_+100%_final_chance"]=540, + ["base_power_charge_skip_consume_chance_%"]=541, + ["base_projectiles_cannot_chain"]=542, + ["base_reduce_enemy_cold_resistance_%"]=213, + ["base_reduce_enemy_fire_resistance_%"]=212, + ["base_reduce_enemy_lightning_resistance_%"]=214, + ["base_remnant_duration_ms"]=543, + ["base_resist_all_elements_%"]=172, + ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=174, + ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=173, + ["base_skill_area_of_effect_+%"]=65, + ["base_skill_seal_gain_interval_ms"]=544, + ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=545, + ["base_smite_number_of_targets"]=546, + ["base_spell_%_chance_to_echo"]=1475, + ["base_stun_duration_+%"]=133, + ["base_stun_recovery_+%"]=161, + ["base_stun_threshold_reduction_+%"]=62, + ["base_use_life_in_place_of_mana"]=183, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=548, + ["bear_companion_intimidate_on_hit_with_warcry_for_ms"]=549, + ["bear_skills_additional_base_attack_time_when_performing_from_default_stance"]=550, + ["bear_skills_additional_base_attack_time_when_performing_from_standing_stance"]=551, + ["berserk_attack_damage_+%_final"]=367, + ["berserk_attack_speed_+%_final"]=368, + ["berserk_base_damage_taken_+%_final"]=370, + ["berserk_maximum_rage_granted_+"]=552, + ["berserk_minimum_rage"]=366, + ["berserk_movement_speed_+%_final"]=369, + ["berserk_rage_loss_+%_per_second"]=372, + ["blackhole_damage_taken_+%"]=553, + ["blackhole_hinder_%"]=554, + ["blackhole_tick_rate_ms"]=555, + ["blade_blast_detonated_blades_not_removed_%_chance"]=556, + ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=557, + ["blade_flurry_elemental_damage_+%_while_channeling"]=558, + ["blade_flurry_final_flurry_area_of_effect_+%"]=559, + ["blade_vortex_additional_blade_chance_%"]=560, + ["blade_vortex_critical_strike_chance_+%_per_blade"]=561, + ["blade_vortex_damage_+%_per_blade_final"]=225, + ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=562, + ["blade_vortex_hit_rate_+%_per_blade"]=224, + ["blade_vortex_hit_rate_ms"]=563, + ["bladefall_critical_strike_chance_+%_per_stage"]=564, + ["bladefall_damage_per_stage_+%_final"]=340, + ["bladefall_volley_gap_distance_+%"]=565, + ["bladefall_volleys_needed_per_vestige_blade"]=566, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=567, + ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=568, + ["bladestorm_create_alternate_stance_storm_%_chance"]=569, + ["bladestorm_maximum_number_of_storms_allowed"]=570, + ["bladestorm_movement_speed_+%_while_in_sandstorm"]=571, + ["bladestorm_sandstorm_movement_speed_+%"]=572, + ["bladestorm_storm_damage_+%_final"]=573, + ["blast_rain_area_of_effect_+%"]=574, + ["blast_rain_damage_+%_vs_distant_enemies"]=575, + ["bleed_on_hit_with_attacks_%"]=576, + ["bleeding_skill_effect_duration"]=80, + ["blind_duration_+%"]=211, + ["blind_effect_+%"]=577, + ["blink_travel_distance"]=578, + ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=579, + ["blood_boil_application_interval_ms"]=580, + ["blood_boil_explosion_area_+%_final_per_boil"]=581, + ["blood_ground_leaving_area_lasts_for_ms"]=582, + ["blood_magic_skill_life_cost_+%_final"]=583, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=349, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=352, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=350, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=351, + ["blood_sand_triggered_blind_on_attack_chance_%"]=585, + ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=586, + ["blood_scythe_cost_+%_final_per_charge"]=587, + ["blood_scythe_damage_+%_final_per_charge"]=588, + ["blood_surge_refresh_on_total_life_spent"]=589, + ["blood_tendrils_beam_count"]=590, + ["bodyswap_damage_+%_when_not_consuming_corpse"]=591, + ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=592, + ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=592, + ["bone_golem_grants_minion_maximum_added_physical_damage"]=593, + ["bone_golem_grants_minion_minimum_added_physical_damage"]=593, + ["bone_offering_damage_taken_+%_final_after_shield_loss"]=594, + ["boneshatter_chance_to_gain_+1_trauma"]=595, + ["brand_detonate_faster_activation_%_per_second"]=596, + ["brand_detonate_faster_duration_%_per_second"]=597, + ["brand_recall_spend_%_of_recalled_brands_cost"]=598, + ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=599, + ["breach_flame_spawn_rate_ms"]=600, + ["buff_effect_duration"]=76, + ["buff_effect_duration_+%_per_removable_endurance_charge"]=166, + ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=167, + ["buff_grants_smite_additional_lightning_targets"]=601, + ["burn_damage_+%"]=98, + ["call_of_steel_reload_amount"]=602, + ["call_of_steel_reload_time"]=602, + ["caltrops_on_dodge_X_triggers"]=603, + ["cannot_be_empowered_by_warcries"]=604, + ["cannot_break_armour"]=605, + ["cannot_cause_bleeding"]=576, + ["cannot_cause_stun_but_allow_stun_buildup"]=606, + ["cannot_consume_power_frenzy_endurance_charges"]=607, + ["cannot_daze"]=608, + ["cannot_gain_power_charges_during_skill"]=609, + ["cannot_inflict_blind"]=610, + ["cannot_inflict_bloodstone_lance"]=611, + ["cannot_inflict_elemental_ailments"]=182, + ["cannot_knockback"]=612, + ["cannot_pin"]=613, + ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=614, + ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=615, + ["cast_linked_spells_on_attack_crit_%"]=242, + ["cast_linked_spells_on_melee_kill_%"]=244, + ["cast_on_any_damage_taken_%"]=257, + ["cast_on_attack_use_%"]=251, + ["cast_on_block_gain_X_centienergy_on_block"]=616, + ["cast_on_crit_%"]=619, + ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=617, + ["cast_on_crit_global_critical_hit_chance_granted_+%"]=618, + ["cast_on_damage_taken_%"]=270, + ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=620, + ["cast_on_damage_taken_threshold"]=270, + ["cast_on_death_%"]=259, + ["cast_on_death_gain_X_centienergy_on_death"]=621, + ["cast_on_dodge_dodge_roll_distance_granted_+"]=622, + ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=623, + ["cast_on_flask_use_%"]=624, + ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=625, + ["cast_on_gain_avians_flight_or_avians_might_%"]=263, + ["cast_on_hit_%"]=264, + ["cast_on_hit_if_cursed_%"]=265, + ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=626, + ["cast_on_lose_cats_stealth"]=266, + ["cast_on_melee_hit_if_cursed_%"]=267, + ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=627, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=628, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=629, + ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=630, + ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=631, + ["cast_on_skill_use_%"]=252, + ["cast_on_stunned_%"]=261, + ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=632, ["cast_speed_+%_granted_from_skill"]=18, - ["cast_speed_+%_when_on_low_life"]=56, - ["cast_speed_modifiers_apply_to_over_time_cost"]=615, - ["cast_when_hit_%"]=261, - ["cast_when_stunned_gain_X_centienergy_when_stunned"]=616, - ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=617, - ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=618, - ["cast_while_channelling_time_ms"]=277, - ["chain_hook_range_+%"]=619, - ["chain_strike_cone_radius_+_per_x_rage"]=620, - ["chain_strike_gain_x_rage_if_attack_hits"]=621, - ["chaining_range_+%"]=622, - ["chance_%_to_double_effect_of_removing_charges"]=626, - ["chance_%_to_spawn_another_infusion_remnant"]=623, - ["chance_%_when_poison_to_also_poison_another_enemy"]=627, - ["chance_for_extra_damage_roll_%"]=624, - ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=625, - ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=628, - ["chance_to_bleed_on_hit_%_vs_maimed"]=629, - ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=630, - ["chance_to_cast_on_bear_warcry_%"]=631, - ["chance_to_cast_on_kill_%"]=256, - ["chance_to_cast_on_kill_%_target_self"]=257, - ["chance_to_cast_on_rampage_tier_%"]=263, - ["chance_to_cast_when_your_trap_is_triggered_%"]=274, - ["chance_to_daze_+%"]=632, - ["chance_to_daze_+%_final"]=633, - ["chance_to_deal_double_damage_%"]=634, - ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=635, - ["chance_to_double_stun_duration_%"]=636, - ["chance_to_fork_extra_projectile_%"]=637, - ["chance_to_fortify_on_melee_hit_+%"]=309, - ["chance_to_gain_1_more_charge_%"]=638, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=639, - ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=640, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=641, - ["chance_to_ignore_hexproof_%"]=642, - ["chance_to_inflict_additional_impale_%"]=643, - ["chance_to_inflict_scorch_brittle_sap_%"]=644, - ["chance_to_not_consume_infusion_%"]=646, - ["chance_to_not_consume_parried_%"]=647, - ["chance_to_pierce_ignited_enemy_%"]=648, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=649, - ["chance_to_retain_40%_of_glory_on_use_%"]=650, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=651, - ["chance_to_scorch_%"]=652, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=653, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=654, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=655, - ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=656, - ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=657, - ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=658, - ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=659, - ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=660, - ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=661, - ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=662, - ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=663, - ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=664, - ["chance_to_trigger_on_animate_guardian_kill_%"]=665, - ["chance_to_trigger_on_animate_weapon_kill_%"]=666, - ["chance_to_unnerve_on_hit_%"]=667, - ["channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms"]=668, - ["channelled_slam_area_of_effect_radius_+_per_stage"]=669, - ["chaos_damage_resisted_by_lowest_resistance"]=670, - ["chaos_damage_taken_+%"]=339, - ["chaos_golem_grants_additional_physical_damage_reduction_%"]=316, - ["charge_skip_consume_chance_%"]=671, - ["charged_attack_damage_per_stack_+%_final"]=672, - ["charged_blast_spell_damage_+%_final_per_stack"]=276, - ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=673, - ["charged_dash_damage_+%_final_per_stack"]=674, - ["charged_dash_skill_inherent_movement_speed_+%_final"]=675, - ["chill_duration_+%"]=95, - ["chill_effect_+%"]=97, - ["chilled_ground_base_magnitude_override"]=676, - ["chilling_area_movement_velocity_+%"]=677, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=678, - ["chronomancer_buff_cooldown_speed_+%"]=679, - ["circle_of_power_mana_spend_per_upgrade"]=680, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=683, - ["cleave_area_of_effect_+%_final_from_executioner"]=681, - ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=682, - ["cluster_burst_spawn_amount"]=304, - ["cold_ailment_duration_+%"]=684, - ["cold_ailment_effect_+%"]=685, - ["cold_damage_+%"]=297, - ["cold_damage_cannot_freeze"]=385, - ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1850, - ["cold_snap_%_chance_to_not_remove_freeze"]=686, - ["combat_rush_effect_+%"]=687, - ["combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=688, - ["combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final"]=689, - ["combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=690, - ["combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final"]=691, - ["combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final"]=692, - ["combined_chaos_other_hit_damage_stun_multiplier_+%_including_final"]=693, - ["combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final"]=694, - ["combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final"]=695, - ["combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=696, - ["combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=697, - ["combined_cold_other_hit_damage_freeze_multiplier_+%_including_final"]=698, - ["combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final"]=699, - ["combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=700, - ["combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final"]=701, - ["combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=702, - ["combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final"]=703, - ["combined_fire_other_hit_damage_freeze_multiplier_+%_including_final"]=704, - ["combined_fire_other_hit_damage_stun_multiplier_+%_including_final"]=705, - ["combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final"]=706, - ["combined_fire_spell_hit_damage_stun_multiplier_+%_including_final"]=707, - ["combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=708, - ["combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final"]=709, - ["combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=710, - ["combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final"]=711, - ["combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final"]=712, - ["combined_lightning_other_hit_damage_stun_multiplier_+%_including_final"]=713, - ["combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final"]=714, - ["combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final"]=715, - ["combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=716, - ["combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final"]=717, - ["combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=718, - ["combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final"]=719, - ["combined_physical_other_hit_damage_freeze_multiplier_+%_including_final"]=720, - ["combined_physical_other_hit_damage_stun_multiplier_+%_including_final"]=721, - ["combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final"]=722, - ["combined_physical_spell_hit_damage_stun_multiplier_+%_including_final"]=723, - ["command_minion_target_ally_below_x_life"]=724, - ["companion_all_attributes_+%"]=725, - ["consecrated_ground_area_+%"]=729, - ["consecrated_ground_effect_+%"]=726, - ["consecrated_ground_enemy_damage_taken_+%"]=727, - ["consecrated_ground_immune_to_curses"]=728, - ["consume_X_heat_on_skill_use"]=730, - ["consume_enemy_daze_to_always_hit"]=731, - ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=732, - ["consume_enemy_freeze_to_guarantee_crit"]=733, - ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=734, - ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=735, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=736, - ["consume_ignite_on_hit"]=737, - ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=12, - ["contagion_maximum_spread_magnitude_+%_final"]=739, - ["contagion_number_of_additional_targets"]=738, - ["contagion_spread_magnitude_+%_final"]=739, - ["conversation_trap_converted_enemy_damage_+%"]=740, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=741, - ["corpse_erruption_maximum_number_of_geyers"]=742, + ["cast_speed_+%_when_on_low_life"]=55, + ["cast_speed_modifiers_apply_to_over_time_cost"]=633, + ["cast_when_hit_%"]=258, + ["cast_when_stunned_gain_X_centienergy_when_stunned"]=634, + ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=635, + ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=636, + ["cast_while_channelling_time_ms"]=274, + ["chain_hook_range_+%"]=637, + ["chain_strike_cone_radius_+_per_x_rage"]=638, + ["chain_strike_gain_x_rage_if_attack_hits"]=639, + ["chaining_range_+%"]=640, + ["chance_%_to_double_effect_of_removing_charges"]=645, + ["chance_%_to_spawn_another_infusion_remnant"]=641, + ["chance_%_when_poison_to_also_poison_another_enemy"]=646, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=642, + ["chance_for_extra_damage_roll_%"]=643, + ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=644, + ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=647, + ["chance_to_bleed_on_hit_%_vs_maimed"]=648, + ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=649, + ["chance_to_cast_on_bear_warcry_%"]=650, + ["chance_to_cast_on_kill_%"]=253, + ["chance_to_cast_on_kill_%_target_self"]=254, + ["chance_to_cast_on_rampage_tier_%"]=260, + ["chance_to_cast_when_your_trap_is_triggered_%"]=271, + ["chance_to_daze_+%"]=651, + ["chance_to_daze_+%_final"]=652, + ["chance_to_deal_double_damage_%"]=653, + ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=654, + ["chance_to_double_stun_duration_%"]=655, + ["chance_to_fork_extra_projectile_%"]=656, + ["chance_to_fortify_on_melee_hit_+%"]=306, + ["chance_to_gain_1_more_charge_%"]=657, + ["chance_to_gain_1_more_random_charge_%"]=658, + ["chance_to_gain_endurance_charge_on_armour_break_%"]=659, + ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=660, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=661, + ["chance_to_ignore_hexproof_%"]=662, + ["chance_to_inflict_additional_impale_%"]=663, + ["chance_to_inflict_scorch_brittle_sap_%"]=664, + ["chance_to_not_consume_infusion_%"]=666, + ["chance_to_not_consume_parried_%"]=667, + ["chance_to_pierce_ignited_enemy_%"]=668, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=669, + ["chance_to_retain_40%_of_glory_on_use_%"]=670, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=671, + ["chance_to_scorch_%"]=672, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=673, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=674, + ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=675, + ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=676, + ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=677, + ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=678, + ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=679, + ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=680, + ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=681, + ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=682, + ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=683, + ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=684, + ["chance_to_trigger_on_animate_guardian_kill_%"]=685, + ["chance_to_trigger_on_animate_weapon_kill_%"]=686, + ["chance_to_unnerve_on_hit_%"]=687, + ["channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms"]=688, + ["channelled_slam_area_of_effect_radius_+_per_stage"]=689, + ["chaos_damage_resisted_by_lowest_resistance"]=690, + ["chaos_damage_taken_+%"]=336, + ["chaos_golem_grants_additional_physical_damage_reduction_%"]=313, + ["charge_regulation_damage_per_charge_granted_+%"]=691, + ["charge_skip_consume_chance_%"]=692, + ["charged_attack_damage_per_stack_+%_final"]=693, + ["charged_blast_spell_damage_+%_final_per_stack"]=273, + ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=694, + ["charged_dash_damage_+%_final_per_stack"]=695, + ["charged_dash_skill_inherent_movement_speed_+%_final"]=696, + ["chill_duration_+%"]=93, + ["chill_effect_+%"]=95, + ["chilled_ground_base_magnitude_override"]=697, + ["chilling_area_movement_velocity_+%"]=698, + ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=699, + ["chronomancer_buff_cooldown_speed_+%"]=700, + ["circle_of_power_mana_spend_per_upgrade"]=701, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=704, + ["cleave_area_of_effect_+%_final_from_executioner"]=702, + ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=703, + ["cluster_burst_spawn_amount"]=301, + ["cold_ailment_duration_+%"]=705, + ["cold_ailment_effect_+%"]=706, + ["cold_damage_+%"]=294, + ["cold_damage_cannot_freeze"]=384, + ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1901, + ["cold_snap_%_chance_to_not_remove_freeze"]=707, + ["combat_rush_effect_+%"]=708, + ["combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=709, + ["combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final"]=710, + ["combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=711, + ["combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final"]=712, + ["combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final"]=713, + ["combined_chaos_other_hit_damage_stun_multiplier_+%_including_final"]=714, + ["combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final"]=715, + ["combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final"]=716, + ["combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=717, + ["combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=718, + ["combined_cold_other_hit_damage_freeze_multiplier_+%_including_final"]=719, + ["combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final"]=720, + ["combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=721, + ["combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final"]=722, + ["combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=723, + ["combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final"]=724, + ["combined_fire_other_hit_damage_freeze_multiplier_+%_including_final"]=725, + ["combined_fire_other_hit_damage_stun_multiplier_+%_including_final"]=726, + ["combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final"]=727, + ["combined_fire_spell_hit_damage_stun_multiplier_+%_including_final"]=728, + ["combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=729, + ["combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final"]=730, + ["combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=731, + ["combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final"]=732, + ["combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final"]=733, + ["combined_lightning_other_hit_damage_stun_multiplier_+%_including_final"]=734, + ["combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final"]=735, + ["combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final"]=736, + ["combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=737, + ["combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final"]=738, + ["combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=739, + ["combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final"]=740, + ["combined_physical_other_hit_damage_freeze_multiplier_+%_including_final"]=741, + ["combined_physical_other_hit_damage_stun_multiplier_+%_including_final"]=742, + ["combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final"]=743, + ["combined_physical_spell_hit_damage_stun_multiplier_+%_including_final"]=744, + ["command_minion_target_ally_below_x_life"]=745, + ["companion_all_attributes_+%"]=746, + ["consecrated_ground_area_+%"]=750, + ["consecrated_ground_effect_+%"]=747, + ["consecrated_ground_enemy_damage_taken_+%"]=748, + ["consecrated_ground_immune_to_curses"]=749, + ["consume_X_heat_on_skill_use"]=751, + ["consume_enemy_daze_to_always_hit"]=752, + ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=753, + ["consume_enemy_freeze_to_guarantee_crit"]=754, + ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=755, + ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=756, + ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=757, + ["consume_ignite_on_hit"]=758, + ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=11, + ["contagion_maximum_spread_magnitude_+%_final"]=760, + ["contagion_number_of_additional_targets"]=759, + ["contagion_spread_magnitude_+%_final"]=760, + ["conversation_trap_converted_enemy_damage_+%"]=761, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=762, + ["corpse_erruption_maximum_number_of_geyers"]=763, ["corpse_explosion_monster_life_%"]=26, ["corpse_explosion_monster_life_%_chaos"]=27, ["corpse_explosion_monster_life_%_lightning"]=28, - ["corpse_explosion_monster_life_permillage_chaos"]=743, + ["corpse_explosion_monster_life_permillage_chaos"]=764, ["corpse_explosion_monster_life_permillage_fire"]=29, ["corpse_explosion_monster_life_permillage_physical"]=30, - ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=744, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=357, - ["corrosive_shroud_poison_effect_+%_final_while_accumulating_poison"]=356, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=745, - ["cover_in_ash_on_hit_%"]=746, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=747, - ["created_slipstream_action_speed_+%"]=748, - ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=749, - ["critical_hit_damaging_ailment_effect_+%"]=751, - ["critical_hit_poison_effect_+%"]=752, - ["critical_strike_chance_+%"]=112, - ["critical_strike_chance_+%_per_power_charge"]=753, - ["critical_strike_chance_+%_per_righteous_charge"]=754, - ["critical_strike_chance_+%_vs_blinded_enemies"]=755, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=756, - ["critical_strike_chance_+%_vs_shocked_enemies"]=750, - ["critical_strike_multiplier_+_per_blade"]=757, - ["critical_strike_multiplier_+_per_power_charge"]=758, - ["critical_strike_multiplier_+_while_affected_by_elusive"]=117, - ["crossbow_ammo_always_reload"]=759, - ["crossbow_reload_on_heavy_stun"]=760, - ["cruelty_effect_+%"]=761, - ["crush_for_2_seconds_on_hit_%_chance"]=762, - ["cull_frozen_enemies_on_hit"]=763, - ["curse_apply_as_curse_zone"]=764, - ["curse_delay_duration_ms"]=765, - ["curse_effect_+%"]=278, - ["curse_effect_duration"]=75, - ["curse_pillar_curse_effect_+%_final"]=279, - ["cyclone_area_of_effect_+%_per_additional_melee_range"]=67, - ["cyclone_first_hit_damage_+%_final"]=347, - ["cyclone_gain_stage_every_x_ms_while_channelling"]=766, - ["cyclone_max_number_of_stages"]=767, - ["cyclone_melee_weapon_range_+_per_stage"]=768, - ["cyclone_stage_decay_time_ms"]=769, - ["damage_+%"]=323, - ["damage_+%_final_from_lich_apparition_cloned_skill"]=770, - ["damage_+%_final_to_stunned_enemies"]=291, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=771, - ["damage_+%_per_200_mana_spent_recently"]=772, - ["damage_+%_per_chain"]=773, - ["damage_+%_vs_burning_enemies"]=293, - ["damage_+%_vs_enemies_on_full_life"]=774, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=775, - ["damage_+%_while_life_leeching"]=776, - ["damage_+%_while_mana_leeching"]=777, - ["damage_over_time_+%"]=342, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=779, - ["damage_vs_enemies_on_low_life_+%"]=780, - ["damaging_ailments_deal_damage_+%_faster"]=781, - ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=782, - ["dark_ritual_damage_+%_final_per_curse_applied"]=783, - ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=784, - ["dash_grants_phasing_after_use_ms"]=785, - ["deal_no_elemental_damage"]=786, - ["deal_no_non_cold_damage"]=384, - ["deal_no_non_fire_damage"]=382, - ["deal_no_non_lightning_damage"]=383, - ["death_wish_attack_speed_+%"]=787, - ["death_wish_cast_speed_+%"]=788, - ["death_wish_hit_damage_+%_final_per_stage"]=789, - ["death_wish_max_stages"]=790, - ["death_wish_movement_speed_+%"]=791, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=792, - ["debuff_time_passed_+%"]=793, - ["degen_effect_+%"]=165, - ["desecrate_chance_for_additional_corpse_%"]=794, - ["desecrate_chance_for_special_corpse_%"]=795, - ["desecrate_corpse_level"]=285, - ["desecrate_maximum_number_of_corpses"]=796, - ["desecrate_number_of_corpses_to_create"]=284, - ["destroy_corpses_on_kill_%_chance"]=797, - ["detonate_dead_damage_+%_if_corpse_ignited"]=798, - ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=799, - ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=800, - ["detonating_arrow_max_number_of_stages"]=800, - ["disable_mine_detonation_cascade"]=801, - ["discharge_chance_not_to_consume_charges_%"]=802, - ["discharge_damage_+%_if_3_charge_types_removed"]=803, - ["disengage_%_chance_for_additional_shockwave"]=804, - ["disintegrate_base_radius_+_per_intensify"]=805, - ["disintegrate_damage_+%_final_per_intensity"]=806, - ["disintegrate_secondary_beam_angle_+%"]=807, - ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=808, - ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=809, - ["display_additional_projectile_per_mine_in_detonation_sequence"]=810, - ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1819, - ["display_blink_base_cooldown"]=811, - ["display_brand_deonate_tag_conversion"]=812, - ["display_charge_speed_is_move_speed"]=813, + ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=765, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=354, + ["corrosive_shroud_poison_effect_+%_final_while_accumulating_poison"]=353, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=766, + ["cover_in_ash_on_hit_%"]=767, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=768, + ["created_slipstream_action_speed_+%"]=769, + ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=770, + ["critical_hit_damaging_ailment_effect_+%"]=772, + ["critical_hit_poison_effect_+%"]=773, + ["critical_strike_chance_+%"]=110, + ["critical_strike_chance_+%_per_power_charge"]=774, + ["critical_strike_chance_+%_per_righteous_charge"]=775, + ["critical_strike_chance_+%_vs_blinded_enemies"]=776, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=777, + ["critical_strike_chance_+%_vs_shocked_enemies"]=771, + ["critical_strike_multiplier_+_per_blade"]=778, + ["critical_strike_multiplier_+_per_power_charge"]=779, + ["critical_strike_multiplier_+_while_affected_by_elusive"]=115, + ["crossbow_ammo_always_reload"]=780, + ["crossbow_reload_on_heavy_stun"]=781, + ["cruelty_effect_+%"]=782, + ["crush_for_2_seconds_on_hit_%_chance"]=783, + ["crushed_target_%_physical_damage_taken_as_armour_break"]=386, + ["cull_frozen_enemies_on_hit"]=784, + ["curse_apply_as_curse_zone"]=785, + ["curse_delay_duration_ms"]=786, + ["curse_effect_+%"]=275, + ["curse_effect_duration"]=74, + ["curse_pillar_curse_effect_+%_final"]=276, + ["cyclone_area_of_effect_+%_per_additional_melee_range"]=66, + ["cyclone_first_hit_damage_+%_final"]=344, + ["cyclone_gain_stage_every_x_ms_while_channelling"]=787, + ["cyclone_max_number_of_stages"]=788, + ["cyclone_melee_weapon_range_+_per_stage"]=789, + ["cyclone_stage_decay_time_ms"]=790, + ["damage_+%"]=320, + ["damage_+%_final_from_lich_apparition_cloned_skill"]=791, + ["damage_+%_final_to_stunned_enemies"]=288, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=792, + ["damage_+%_per_200_mana_spent_recently"]=793, + ["damage_+%_per_chain"]=794, + ["damage_+%_vs_burning_enemies"]=290, + ["damage_+%_vs_enemies_on_full_life"]=795, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=796, + ["damage_+%_while_life_leeching"]=797, + ["damage_+%_while_mana_leeching"]=798, + ["damage_over_time_+%"]=339, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=800, + ["damage_vs_enemies_on_low_life_+%"]=801, + ["damaging_ailments_deal_damage_+%_faster"]=802, + ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=803, + ["dark_ritual_damage_+%_final_per_curse_applied"]=804, + ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=805, + ["dash_grants_phasing_after_use_ms"]=806, + ["deal_no_elemental_damage"]=807, + ["deal_no_non_cold_damage"]=383, + ["deal_no_non_fire_damage"]=381, + ["deal_no_non_lightning_damage"]=382, + ["death_wish_attack_speed_+%"]=808, + ["death_wish_cast_speed_+%"]=809, + ["death_wish_hit_damage_+%_final_per_stage"]=810, + ["death_wish_max_stages"]=811, + ["death_wish_movement_speed_+%"]=812, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=813, + ["debuff_time_passed_+%"]=814, + ["degen_effect_+%"]=164, + ["desecrate_chance_for_additional_corpse_%"]=815, + ["desecrate_chance_for_special_corpse_%"]=816, + ["desecrate_corpse_level"]=282, + ["desecrate_maximum_number_of_corpses"]=817, + ["desecrate_number_of_corpses_to_create"]=281, + ["destroy_corpses_on_kill_%_chance"]=818, + ["detonate_dead_damage_+%_if_corpse_ignited"]=819, + ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=820, + ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=821, + ["detonating_arrow_max_number_of_stages"]=821, + ["disable_mine_detonation_cascade"]=822, + ["discharge_chance_not_to_consume_charges_%"]=823, + ["discharge_damage_+%_if_3_charge_types_removed"]=824, + ["disengage_%_chance_for_additional_shockwave"]=825, + ["disintegrate_base_radius_+_per_intensify"]=826, + ["disintegrate_damage_+%_final_per_intensity"]=827, + ["disintegrate_secondary_beam_angle_+%"]=828, + ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=829, + ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=830, + ["display_additional_projectile_per_mine_in_detonation_sequence"]=831, + ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1871, + ["display_blink_base_cooldown"]=832, + ["display_brand_deonate_tag_conversion"]=833, + ["display_charge_speed_is_move_speed"]=834, ["display_disable_melee_weapons"]=43, - ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=814, - ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=814, - ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=815, - ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=816, - ["display_estimate_maximum_roll_secondary_chill_magnitude"]=817, - ["display_estimate_maximum_roll_spell_chill_magnitude"]=818, - ["display_estimate_maximum_total_main_hand_ignite_chance_%"]=819, - ["display_estimate_maximum_total_main_hand_shock_chance_%"]=820, - ["display_estimate_maximum_total_off_hand_ignite_chance_%"]=821, - ["display_estimate_maximum_total_off_hand_shock_chance_%"]=822, - ["display_estimate_maximum_total_spell_ignite_chance_%"]=825, - ["display_estimate_maximum_total_spell_shock_chance_%"]=826, - ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=815, - ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=816, - ["display_estimate_minimum_roll_secondary_chill_magnitude"]=817, - ["display_estimate_minimum_roll_spell_chill_magnitude"]=818, - ["display_estimate_minimum_total_main_hand_ignite_chance_%"]=819, - ["display_estimate_minimum_total_main_hand_shock_chance_%"]=820, - ["display_estimate_minimum_total_off_hand_ignite_chance_%"]=821, - ["display_estimate_minimum_total_off_hand_shock_chance_%"]=822, - ["display_estimate_minimum_total_spell_ignite_chance_%"]=825, - ["display_estimate_minimum_total_spell_shock_chance_%"]=826, - ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=827, - ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=827, - ["display_fake_attack_hit_bleed"]=828, - ["display_fake_attack_hit_chill"]=829, - ["display_fake_attack_hit_ignite"]=830, - ["display_fake_attack_hit_poison"]=831, - ["display_herald_of_thunder_storm"]=747, - ["display_linked_curse_effect_+%"]=832, - ["display_linked_curse_effect_+%_final"]=833, - ["display_main_hand_chance_to_hit_%_at_max_range"]=834, - ["display_main_hand_chance_to_hit_%_at_mid_range"]=835, - ["display_main_hand_chance_to_hit_%_at_min_range"]=836, - ["display_main_hand_hit_chance_estimate_range_max"]=834, - ["display_main_hand_hit_chance_estimate_range_mid"]=835, - ["display_main_hand_hit_chance_estimate_range_min"]=836, - ["display_max_ailment_bearer_charges"]=837, - ["display_max_blight_stacks"]=838, - ["display_max_fire_beam_stacks"]=839, - ["display_max_upgraded_sentinels_of_absolution"]=840, - ["display_max_upgraded_sentinels_of_dominance"]=841, - ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=842, - ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=843, - ["display_maximum_roll_main_hand_poison_damage_per_minute"]=844, - ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=845, - ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=846, - ["display_maximum_roll_off_hand_poison_damage_per_minute"]=847, - ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=848, - ["display_maximum_roll_secondary_ignite_damage_per_minute"]=849, - ["display_maximum_roll_secondary_poison_damage_per_minute"]=850, - ["display_maximum_roll_spell_bleeding_damage_per_minute"]=851, - ["display_maximum_roll_spell_ignite_damage_per_minute"]=852, - ["display_maximum_roll_spell_poison_damage_per_minute"]=853, - ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=854, - ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=842, - ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=843, - ["display_minimum_roll_main_hand_poison_damage_per_minute"]=844, - ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=845, - ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=846, - ["display_minimum_roll_off_hand_poison_damage_per_minute"]=847, - ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=848, - ["display_minimum_roll_secondary_ignite_damage_per_minute"]=849, - ["display_minimum_roll_secondary_poison_damage_per_minute"]=850, - ["display_minimum_roll_spell_bleeding_damage_per_minute"]=851, - ["display_minimum_roll_spell_ignite_damage_per_minute"]=852, - ["display_minimum_roll_spell_poison_damage_per_minute"]=853, - ["display_mirage_warriors_no_spirit_strikes"]=855, - ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=856, - ["display_off_hand_chance_to_hit_%_at_max_range"]=857, - ["display_off_hand_chance_to_hit_%_at_mid_range"]=858, - ["display_off_hand_chance_to_hit_%_at_min_range"]=859, - ["display_off_hand_hit_chance_estimate_range_max"]=857, - ["display_off_hand_hit_chance_estimate_range_mid"]=858, - ["display_off_hand_hit_chance_estimate_range_min"]=859, - ["display_removes_and_grants_elusive_when_used"]=861, - ["display_sigil_of_power_stage_gain_delay"]=862, - ["display_skill_cooldown_time_ms"]=863, - ["display_skill_fixed_duration_buff"]=864, - ["display_skill_increased_item_rarity_+%"]=865, - ["display_skill_reserves_in_all_weapon_sets"]=1858, - ["display_storm_burst_jump_time_ms"]=866, - ["display_this_skill_cooldown_does_not_recover_during_buff"]=867, - ["display_total_bleeding_duration"]=868, - ["display_total_chill_duration"]=869, - ["display_total_ignite_duration"]=870, - ["display_total_poison_duration"]=871, - ["display_total_shock_duration"]=872, - ["display_total_shock_magnitude"]=873, - ["display_touch_of_fire"]=874, - ["display_trigger_link"]=875, - ["display_triggerbots_do_their_job"]=876, - ["display_unhinge_grant_insane"]=877, - ["display_vaal_breach_no_drops_xp"]=878, - ["display_vaal_molten_shell_alternate_description"]=1197, + ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=835, + ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=835, + ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=836, + ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=837, + ["display_estimate_maximum_roll_secondary_chill_magnitude"]=838, + ["display_estimate_maximum_roll_spell_chill_magnitude"]=839, + ["display_estimate_maximum_total_main_hand_ignite_chance_%"]=840, + ["display_estimate_maximum_total_main_hand_shock_chance_%"]=841, + ["display_estimate_maximum_total_off_hand_ignite_chance_%"]=842, + ["display_estimate_maximum_total_off_hand_shock_chance_%"]=843, + ["display_estimate_maximum_total_spell_ignite_chance_%"]=846, + ["display_estimate_maximum_total_spell_shock_chance_%"]=847, + ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=836, + ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=837, + ["display_estimate_minimum_roll_secondary_chill_magnitude"]=838, + ["display_estimate_minimum_roll_spell_chill_magnitude"]=839, + ["display_estimate_minimum_total_main_hand_ignite_chance_%"]=840, + ["display_estimate_minimum_total_main_hand_shock_chance_%"]=841, + ["display_estimate_minimum_total_off_hand_ignite_chance_%"]=842, + ["display_estimate_minimum_total_off_hand_shock_chance_%"]=843, + ["display_estimate_minimum_total_spell_ignite_chance_%"]=846, + ["display_estimate_minimum_total_spell_shock_chance_%"]=847, + ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=848, + ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=848, + ["display_fake_attack_hit_bleed"]=849, + ["display_fake_attack_hit_chill"]=850, + ["display_fake_attack_hit_ignite"]=851, + ["display_fake_attack_hit_poison"]=852, + ["display_herald_of_thunder_storm"]=768, + ["display_linked_curse_effect_+%"]=853, + ["display_linked_curse_effect_+%_final"]=854, + ["display_main_hand_chance_to_hit_%_at_max_range"]=855, + ["display_main_hand_chance_to_hit_%_at_mid_range"]=856, + ["display_main_hand_chance_to_hit_%_at_min_range"]=857, + ["display_main_hand_hit_chance_estimate_range_max"]=855, + ["display_main_hand_hit_chance_estimate_range_mid"]=856, + ["display_main_hand_hit_chance_estimate_range_min"]=857, + ["display_max_ailment_bearer_charges"]=858, + ["display_max_blight_stacks"]=859, + ["display_max_fire_beam_stacks"]=860, + ["display_max_upgraded_sentinels_of_absolution"]=861, + ["display_max_upgraded_sentinels_of_dominance"]=862, + ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=863, + ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=864, + ["display_maximum_roll_main_hand_poison_damage_per_minute"]=865, + ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=866, + ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=867, + ["display_maximum_roll_off_hand_poison_damage_per_minute"]=868, + ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=869, + ["display_maximum_roll_secondary_ignite_damage_per_minute"]=870, + ["display_maximum_roll_secondary_poison_damage_per_minute"]=871, + ["display_maximum_roll_spell_bleeding_damage_per_minute"]=872, + ["display_maximum_roll_spell_ignite_damage_per_minute"]=873, + ["display_maximum_roll_spell_poison_damage_per_minute"]=874, + ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=875, + ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=863, + ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=864, + ["display_minimum_roll_main_hand_poison_damage_per_minute"]=865, + ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=866, + ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=867, + ["display_minimum_roll_off_hand_poison_damage_per_minute"]=868, + ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=869, + ["display_minimum_roll_secondary_ignite_damage_per_minute"]=870, + ["display_minimum_roll_secondary_poison_damage_per_minute"]=871, + ["display_minimum_roll_spell_bleeding_damage_per_minute"]=872, + ["display_minimum_roll_spell_ignite_damage_per_minute"]=873, + ["display_minimum_roll_spell_poison_damage_per_minute"]=874, + ["display_mirage_warriors_no_spirit_strikes"]=876, + ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=877, + ["display_number_of_chains_for_beams"]=1805, + ["display_number_of_chains_for_projectiles"]=1806, + ["display_off_hand_chance_to_hit_%_at_max_range"]=878, + ["display_off_hand_chance_to_hit_%_at_mid_range"]=879, + ["display_off_hand_chance_to_hit_%_at_min_range"]=880, + ["display_off_hand_hit_chance_estimate_range_max"]=878, + ["display_off_hand_hit_chance_estimate_range_mid"]=879, + ["display_off_hand_hit_chance_estimate_range_min"]=880, + ["display_projectile_number_of_targets_to_pierce"]=87, + ["display_projectile_number_to_split"]=1815, + ["display_removes_and_grants_elusive_when_used"]=882, + ["display_sigil_of_power_stage_gain_delay"]=883, + ["display_skill_cooldown_time_ms"]=884, + ["display_skill_fixed_duration_buff"]=885, + ["display_skill_increased_item_rarity_+%"]=886, + ["display_skill_overflowing_chalice_duration_ms"]=887, + ["display_skill_reserves_in_all_weapon_sets"]=1909, + ["display_spectral_spiral_weapon_number_of_bounces"]=1473, + ["display_storm_burst_jump_time_ms"]=888, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=889, + ["display_total_bleeding_duration"]=890, + ["display_total_chill_duration"]=891, + ["display_total_ignite_duration"]=892, + ["display_total_poison_duration"]=893, + ["display_total_shock_duration"]=894, + ["display_total_shock_magnitude"]=895, + ["display_touch_of_fire"]=896, + ["display_trigger_link"]=897, + ["display_triggerbots_do_their_job"]=898, + ["display_unhinge_grant_insane"]=899, + ["display_vaal_breach_no_drops_xp"]=900, + ["display_vaal_molten_shell_alternate_description"]=1234, ["display_what_freezing_pulse_does"]=17, - ["distance_scaled_accuracy_rating_penalty_+%"]=879, - ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1809, - ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1808, - ["divine_tempest_beam_width_+%"]=880, - ["divine_tempest_damage_+%_final_while_channelling"]=881, - ["divine_tempest_hit_damage_+%_final_per_stage"]=882, - ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=883, - ["divine_tempest_stage_on_hitting_rare_unique"]=884, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=885, - ["doubles_have_movement_speed_+%"]=122, - ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=886, - ["dual_wield_inherent_attack_speed_+%_final"]=887, - ["earthquake_aftershock_maximum_added_physical_damage"]=888, - ["earthquake_aftershock_minimum_added_physical_damage"]=888, - ["earthquake_initial_slam_area_of_effect_+%"]=889, - ["earthshatter_damage_+%_final_per_spike"]=890, - ["elemental_damage_+%_final_per_righteous_charge"]=892, - ["elemental_damage_cannot_be_reflected"]=891, - ["elemental_discharge_no_physical_chaos_damage"]=300, - ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=893, - ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=894, - ["elemental_hit_no_physical_chaos_damage"]=301, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=895, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=896, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=897, - ["elemental_penetration_%_from_resonance"]=898, - ["elemental_strike_physical_damage_%_to_convert"]=331, - ["elusive_effect_+%"]=899, - ["ember_fusillade_damage_+%_final_per_ember_fired"]=900, - ["embrace_madness_amount_of_cooldown_to_gain_ms"]=901, - ["empower_barrage_cooldown_%_of_attack_time"]=902, - ["empowered_attack_damage_+%"]=903, - ["empowered_barrage_maximum_cooldown_ms"]=902, - ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1806, - ["enduring_cry_grants_x_additional_endurance_charges"]=904, - ["enemies_chilled_by_bane_and_contagion"]=905, - ["enemies_covered_in_frost_as_unfrozen"]=906, - ["enemies_taunted_by_your_warcies_are_intimidated"]=907, - ["enemies_you_shock_movement_speed_+%"]=908, - ["enemies_you_shock_take_%_increased_physical_damage"]=909, - ["enemy_aggro_radius_+%"]=336, - ["enemy_phys_reduction_%_penalty_vs_hit"]=910, - ["energy_generated_+%"]=911, - ["energy_shield_delay_-%"]=163, - ["energy_shield_recharge_rate_+%"]=164, - ["energy_shield_regeneration_rate_+%"]=912, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=913, - ["ethereal_knives_projectiles_needed_per_vestige_blade"]=914, - ["evasion_and_physical_damage_reduction_rating_+%"]=915, - ["expanding_fire_cone_angle_+%_per_stage"]=916, - ["expanding_fire_cone_final_wave_always_ignite"]=917, - ["expanding_fire_cone_maximum_number_of_stages"]=918, - ["expanding_fire_cone_radius_+_per_stage"]=919, - ["expanding_fire_cone_radius_limit"]=919, - ["expanding_fire_cone_release_hit_damage_+%_final"]=920, - ["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"]=921, - ["exposure_effect_+%"]=922, - ["extra_target_targeting_distance_+%"]=923, - ["eye_of_winter_display_number_of_explosion_shards"]=45, - ["eye_of_winter_number_of_brittle_stacks_to_apply"]=924, - ["eye_of_winter_spiral_angle_+%"]=925, - ["eye_of_winter_spiral_fire_frequency_+%"]=926, - ["faster_bleed_%"]=927, - ["feast_of_flesh_recover_X_life_per_corpse_consumed"]=928, - ["feast_of_flesh_recover_X_mana_per_corpse_consumed"]=928, - ["feast_of_flesh_recovery_duration"]=928, - ["feral_invocation_gain_1_energy_per_X_mana_spent"]=929, - ["fire_beam_additional_stack_damage_+%_final"]=930, - ["fire_beam_enemy_fire_resistance_%_maximum"]=931, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=932, - ["fire_beam_length_+%"]=933, - ["fire_damage_+%"]=296, - ["fire_damage_taken_+"]=232, - ["fire_dot_multiplier_+"]=934, - ["fire_golem_grants_damage_+%"]=313, - ["fire_nova_damage_+%_per_repeat_final"]=324, - ["fire_shield_damage_threshold"]=171, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=935, - ["fires_1_projectile_if_no_steel_ammo"]=936, - ["firestorm_final_impact_damage_+%_final"]=937, - ["firestorm_initial_impact_area_of_effect_+%_final"]=938, - ["firestorm_initial_impact_damage_+%_final"]=939, - ["firewall_applies_%_fire_exposure"]=940, - ["fixed_skill_effect_duration"]=941, - ["flame_dash_burning_damage_+%_final"]=942, - ["flame_surge_burning_ground_creation_cooldown_ms"]=943, - ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=944, - ["flame_wall_projectiles_ignite_effect_+%_final"]=945, - ["flame_whip_damage_+%_final_vs_burning_enemies"]=292, - ["flameblast_area_+%_final_per_stage"]=946, - ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=947, - ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=948, - ["flameblast_maximum_stages"]=949, - ["flameblast_starts_with_X_additional_stages"]=950, - ["flamethrower_damage_+%_per_stage_final"]=224, - ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=951, - ["flamethrower_tower_trap_number_of_flamethrowers"]=952, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=953, - ["flask_charges_used_+%"]=954, - ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=961, - ["flask_throw_base_charges_used"]=955, - ["flask_throw_bleed_effect_+%_final"]=956, - ["flask_throw_cold_exposure_ms"]=957, - ["flask_throw_fire_exposure_ms"]=959, - ["flask_throw_lightning_exposure_ms"]=960, - ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=962, - ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=963, - ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=962, - ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=963, - ["flask_throw_poison_effect_+%_final"]=964, - ["flask_throw_ruby_flask_ignite_effect_+%"]=965, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=958, - ["flicker_strike_additional_flickers_from_power_charges"]=246, - ["flicker_strike_buff_movement_speed_+%"]=966, - ["flicker_strike_teleport_range_+%"]=967, + ["distance_scaled_accuracy_rating_penalty_+%"]=901, + ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1861, + ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1860, + ["divine_tempest_beam_width_+%"]=902, + ["divine_tempest_damage_+%_final_while_channelling"]=903, + ["divine_tempest_hit_damage_+%_final_per_stage"]=904, + ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=905, + ["divine_tempest_stage_on_hitting_rare_unique"]=906, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=907, + ["doubles_have_movement_speed_+%"]=121, + ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=908, + ["dual_wield_inherent_attack_speed_+%_final"]=909, + ["earthquake_aftershock_maximum_added_physical_damage"]=910, + ["earthquake_aftershock_minimum_added_physical_damage"]=910, + ["earthquake_initial_slam_area_of_effect_+%"]=911, + ["earthshatter_damage_+%_final_per_spike"]=912, + ["echoed_spell_area_of_effect_+%"]=913, + ["elemental_damage_+%_final_per_righteous_charge"]=915, + ["elemental_damage_cannot_be_reflected"]=914, + ["elemental_discharge_no_physical_chaos_damage"]=297, + ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=916, + ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=917, + ["elemental_hit_no_physical_chaos_damage"]=298, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=918, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=919, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=920, + ["elemental_penetration_%_from_resonance"]=921, + ["elemental_strike_physical_damage_%_to_convert"]=328, + ["elusive_effect_+%"]=922, + ["ember_fusillade_damage_+%_final_per_ember_fired"]=923, + ["embrace_madness_amount_of_cooldown_to_gain_ms"]=924, + ["empower_barrage_cooldown_%_of_attack_time"]=925, + ["empowered_attack_damage_+%"]=926, + ["empowered_barrage_maximum_cooldown_ms"]=925, + ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1858, + ["enduring_cry_grants_x_additional_endurance_charges"]=927, + ["enemies_chilled_by_bane_and_contagion"]=928, + ["enemies_covered_in_frost_as_unfrozen"]=929, + ["enemies_taunted_by_your_warcies_are_intimidated"]=930, + ["enemies_you_shock_movement_speed_+%"]=931, + ["enemies_you_shock_take_%_increased_physical_damage"]=932, + ["enemy_aggro_radius_+%"]=333, + ["enemy_phys_reduction_%_penalty_vs_hit"]=934, + ["energy_generated_+%"]=935, + ["energy_shield_delay_-%"]=162, + ["energy_shield_recharge_rate_+%"]=163, + ["energy_shield_regeneration_rate_+%"]=936, + ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=937, + ["ethereal_knives_projectiles_needed_per_vestige_blade"]=938, + ["evasion_and_physical_damage_reduction_rating_+%"]=939, + ["expanding_fire_cone_angle_+%_per_stage"]=940, + ["expanding_fire_cone_final_wave_always_ignite"]=941, + ["expanding_fire_cone_maximum_number_of_stages"]=942, + ["expanding_fire_cone_radius_+_per_stage"]=943, + ["expanding_fire_cone_radius_limit"]=943, + ["expanding_fire_cone_release_hit_damage_+%_final"]=944, + ["explosive_arrow_explosion_base_damage_+permyriad"]=155, + ["explosive_arrow_explosion_maximum_added_fire_damage"]=157, + ["explosive_arrow_explosion_minimum_added_fire_damage"]=157, + ["explosive_arrow_hit_damage_+%_final_per_stack"]=209, + ["explosive_arrow_maximum_bonus_explosion_radius"]=160, + ["explosive_arrow_stack_limit"]=945, + ["exposure_effect_+%"]=946, + ["extra_target_targeting_distance_+%"]=947, + ["eye_of_winter_display_number_of_explosion_shards"]=44, + ["eye_of_winter_number_of_brittle_stacks_to_apply"]=948, + ["eye_of_winter_spiral_angle_+%"]=949, + ["eye_of_winter_spiral_fire_frequency_+%"]=950, + ["faster_bleed_%"]=951, + ["feast_of_flesh_recover_X_life_per_corpse_consumed"]=952, + ["feast_of_flesh_recover_X_mana_per_corpse_consumed"]=952, + ["feast_of_flesh_recovery_duration"]=952, + ["feral_invocation_gain_1_energy_per_X_mana_spent"]=953, + ["final_strike_number_of_spirit_strikes"]=954, + ["fire_beam_additional_stack_damage_+%_final"]=955, + ["fire_beam_enemy_fire_resistance_%_maximum"]=956, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=957, + ["fire_beam_length_+%"]=958, + ["fire_damage_+%"]=293, + ["fire_damage_taken_+"]=230, + ["fire_dot_multiplier_+"]=959, + ["fire_golem_grants_damage_+%"]=310, + ["fire_nova_damage_+%_per_repeat_final"]=321, + ["fire_shield_damage_threshold"]=170, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=960, + ["firestorm_final_impact_damage_+%_final"]=961, + ["firestorm_initial_impact_area_of_effect_+%_final"]=962, + ["firestorm_initial_impact_damage_+%_final"]=963, + ["firewall_applies_%_fire_exposure"]=964, + ["fixed_skill_effect_duration"]=965, + ["flame_dash_burning_damage_+%_final"]=966, + ["flame_surge_burning_ground_creation_cooldown_ms"]=967, + ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=968, + ["flame_wall_projectiles_ignite_effect_+%_final"]=969, + ["flame_whip_damage_+%_final_vs_burning_enemies"]=289, + ["flameblast_area_+%_final_per_stage"]=970, + ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=971, + ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=972, + ["flameblast_maximum_stages"]=973, + ["flameblast_starts_with_X_additional_stages"]=974, + ["flamethrower_damage_+%_per_stage_final"]=222, + ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=975, + ["flamethrower_tower_trap_number_of_flamethrowers"]=976, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=977, + ["flask_charges_used_+%"]=978, + ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=985, + ["flask_throw_base_charges_used"]=979, + ["flask_throw_bleed_effect_+%_final"]=980, + ["flask_throw_cold_exposure_ms"]=981, + ["flask_throw_fire_exposure_ms"]=983, + ["flask_throw_lightning_exposure_ms"]=984, + ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=986, + ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=987, + ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=986, + ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=987, + ["flask_throw_poison_effect_+%_final"]=988, + ["flask_throw_ruby_flask_ignite_effect_+%"]=989, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=982, + ["flicker_strike_additional_flickers_from_power_charges"]=243, + ["flicker_strike_buff_movement_speed_+%"]=990, + ["flicker_strike_teleport_range_+%"]=991, ["font_of_blood_radius"]=3, ["font_of_mana_radius"]=5, ["font_of_rage_radius"]=7, - ["fortify_duration_+%"]=310, - ["fortify_on_hit"]=968, - ["fortify_on_hit_close_range"]=969, - ["freeze_applies_cold_resistance_+"]=970, - ["freeze_duration_+%"]=94, - ["freeze_duration_ms_+"]=971, - ["freeze_mine_cold_resistance_+_while_frozen"]=244, - ["freezing_pulse_damage_+%_final_at_long_range"]=973, - ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=974, - ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=975, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=976, - ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=977, - ["frost_fury_added_duration_per_stage_ms"]=978, - ["frost_fury_base_fire_interval_ms"]=979, - ["frost_fury_duration_+%_per_stage"]=980, - ["frost_fury_fire_speed_+%_final_while_channelling"]=981, - ["frost_fury_fire_speed_+%_per_stage"]=982, - ["frost_fury_max_number_of_stages"]=983, - ["frost_globe_absorb_damage_%_enemy_in_bubble"]=984, - ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=985, - ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=986, - ["frost_globe_health_per_stage"]=987, - ["frost_globe_life_regeneration_rate_per_minute_%"]=988, - ["frost_globe_max_stages"]=989, - ["frost_globe_stage_gain_interval_ms"]=990, - ["frost_wall_total_maximum_life"]=991, - ["frostbolt_projectile_acceleration"]=992, - ["frostbolt_projectile_speed_+%_final"]=993, - ["frozen_legion_%_chance_to_summon_additional_statue"]=994, - ["fully_break_enemies_armour_on_heavy_stun"]=995, - ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=996, - ["fully_broken_armour_duration_ms_removed_on_hit"]=997, - ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=161, - ["gain_1_rage_on_use_%_chance"]=998, - ["gain_X_volatility_on_empowered_skill_use"]=999, - ["gain_elusive_on_crit_%_chance"]=1000, - ["gain_endurance_charge_on_melee_stun"]=243, - ["gain_endurance_charge_on_melee_stun_%"]=243, - ["gain_fortify_on_melee_hit_ms"]=1001, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=1002, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=1003, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=1004, - ["gain_power_charge_on_kill_with_hit_%"]=1005, - ["gain_rage_on_hit_%_chance"]=1007, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=1008, - ["gain_righteous_charge_on_mana_spent_%"]=1009, - ["gain_x_rage_on_attack_hit"]=1010, - ["gain_x_rage_on_hit"]=1006, - ["gain_x_rage_on_melee_hit"]=1011, - ["galvanic_field_beam_delay_ms"]=1012, - ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1013, - ["galvanic_field_maximum_number_of_spheres"]=1152, - ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=1014, - ["generic_ongoing_trigger_maximum_energy"]=1015, - ["generic_ongoing_trigger_triggers_at_maximum_energy"]=1015, - ["generic_ongoing_triggerer_is_invocation_skill"]=1686, - ["glacial_cascade_travel_speed_+%"]=1016, - ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=202, - ["global_always_hit"]=290, - ["global_bleed_on_hit"]=1017, - ["global_cannot_crit"]=360, - ["global_chance_to_blind_on_hit_%"]=211, - ["global_chance_to_knockback_%"]=60, - ["global_hit_causes_monster_flee_%"]=190, - ["global_knockback"]=1018, - ["global_maim_on_hit"]=1019, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1570, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=1020, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1570, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=1020, - ["global_poison_on_hit"]=344, - ["glorious_madness_timer_ms"]=1021, - ["golem_buff_effect_+%"]=1022, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=1023, - ["grenade_skill_%_chance_to_explode_twice"]=1024, - ["ground_slam_angle_+%"]=1026, - ["groundslam_damage_to_close_targets_+%_final"]=363, - ["has_freeze_cull"]=1027, - ["hazard_rearm_%_chance"]=1028, - ["herald_of_agony_add_stack_on_poison"]=1029, - ["herald_of_agony_poison_effect_+%_final"]=1030, - ["herald_of_light_summon_champion_on_kill"]=1031, - ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=1032, - ["herald_of_purity_physical_damage_+%_final"]=1033, - ["hex_transfer_on_death_total_range"]=1034, - ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=1035, - ["hexblast_hit_damage_+%_final_if_hexed"]=1036, - ["hinder_enemy_chaos_damage_+%"]=1037, - ["hinder_enemy_chaos_damage_taken_+%"]=1038, - ["hit_%_chance_to_be_dazing"]=1042, - ["hit_damage_+%_vs_chilled_enemies"]=1039, - ["hit_damage_stun_multiplier_+%"]=1040, - ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=1041, - ["hits_grant_cruelty"]=1043, - ["hits_ignore_all_enemy_monster_resistances"]=1044, - ["hits_ignore_enemy_monster_physical_damage_reduction"]=1045, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=1046, - ["holy_path_teleport_range_+%"]=1047, - ["holy_relic_nova_life_regeneration_rate_per_minute"]=1048, - ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1049, - ["hundred_times_attacks_per_second"]=1050, - ["hundred_times_average_damage_per_skill_use"]=1051, - ["hundred_times_casts_per_second"]=1052, - ["hundred_times_damage_per_second"]=1053, - ["hydro_sphere_pulse_frequency_ms"]=1054, - ["hydrosphere_hit_cooldown_ms"]=1055, - ["ice_crash_first_stage_damage_+%_final"]=1056, - ["ice_crash_second_hit_damage_+%_final"]=311, - ["ice_crash_third_hit_damage_+%_final"]=312, - ["ice_crystal_shatter_detonation_area_of_effect_+%_final"]=1057, - ["ice_crystal_shatter_detonation_damage_+%_final"]=1058, - ["ice_crystals_hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1059, - ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1060, - ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1060, - ["ice_golem_grants_accuracy_+%"]=315, - ["ice_golem_grants_critical_strike_chance_+%"]=314, - ["ice_nova_number_of_repeats"]=287, - ["ice_nova_radius_+%_per_repeat"]=288, - ["ice_shield_moving_mana_degeneration_per_minute"]=230, - ["ice_spear_distance_before_form_change_+%"]=1061, - ["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"]=1847, - ["igneous_shield_perfect_block_window_time_ms"]=1062, - ["ignite_duration_+%"]=99, - ["ignite_effect_+%_final_against_frozen_enemies"]=1063, - ["ignite_effect_+%_final_if_heat_is_consumed"]=730, - ["ignite_proliferation_delay_ms"]=182, - ["ignite_proliferation_radius"]=182, - ["ignites_apply_fire_resistance_+"]=1064, - ["immolation_brand_burn_damage_+%_final_per_stage"]=1065, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1066, - ["impacting_steel_secondary_projectile_damage_+%_final"]=1067, - ["impale_magnitude_+%"]=1068, - ["impale_on_hit_%_chance"]=1069, - ["impurity_cold_damage_taken_+%_final"]=1070, - ["impurity_fire_damage_taken_+%_final"]=1071, - ["impurity_lightning_damage_taken_+%_final"]=1072, - ["incinerate_damage_+%_per_stage"]=225, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1073, - ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1074, - ["infernal_cry_%_max_life_as_fire_on_death"]=308, - ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1805, - ["infernal_cry_empowered_attacks_trigger_combust_display"]=1820, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1859, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1859, - ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1075, - ["inflict_all_exposure_on_hit"]=1076, - ["inflict_exposure_for_x_ms_on_cold_crit"]=1077, - ["inflict_exposure_for_x_ms_on_ignite"]=1078, - ["inflict_exposure_for_x_ms_on_shock"]=1079, - ["inflict_exposure_on_hit_%_chance"]=1080, - ["infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy"]=1081, - ["infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy"]=1082, - ["infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy"]=1083, - ["inspiration_charge_duration_+%"]=1084, - ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=321, - ["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"]=1085, - ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1086, - ["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"]=1087, - ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1088, - ["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"]=1089, - ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1090, - ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1091, - ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1092, - ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1093, - ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1094, - ["intimidate_nearby_enemies_on_use_for_ms"]=1095, - ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1823, - ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1802, + ["fortify_duration_+%"]=307, + ["fortify_on_hit"]=992, + ["fortify_on_hit_close_range"]=993, + ["fortifying_cry_guard_gained_+%_final"]=994, + ["freeze_applies_cold_resistance_+"]=995, + ["freeze_duration_+%"]=92, + ["freeze_duration_ms_+"]=996, + ["freeze_mine_cold_resistance_+_while_frozen"]=241, + ["freezing_pulse_damage_+%_final_at_long_range"]=998, + ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=999, + ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=1000, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=1001, + ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=1002, + ["frost_fury_added_duration_per_stage_ms"]=1003, + ["frost_fury_base_fire_interval_ms"]=1004, + ["frost_fury_duration_+%_per_stage"]=1005, + ["frost_fury_fire_speed_+%_final_while_channelling"]=1006, + ["frost_fury_fire_speed_+%_per_stage"]=1007, + ["frost_fury_max_number_of_stages"]=1008, + ["frost_globe_absorb_damage_%_enemy_in_bubble"]=1009, + ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=1010, + ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=1011, + ["frost_globe_health_per_stage"]=1012, + ["frost_globe_life_regeneration_rate_per_minute_%"]=1013, + ["frost_globe_max_stages"]=1014, + ["frost_globe_stage_gain_interval_ms"]=1015, + ["frost_wall_total_maximum_life"]=1016, + ["frostbolt_projectile_acceleration"]=1017, + ["frostbolt_projectile_speed_+%_final"]=1018, + ["frozen_legion_%_chance_to_summon_additional_statue"]=1019, + ["frozen_monsters_take_increased_damage"]=1020, + ["fully_break_enemies_armour_on_heavy_stun"]=1021, + ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=1022, + ["fully_broken_armour_duration_ms_removed_on_hit"]=1023, + ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=160, + ["gain_1_rage_on_use_%_chance"]=1024, + ["gain_X_volatility_on_empowered_skill_use"]=1025, + ["gain_elusive_on_crit_%_chance"]=1026, + ["gain_endurance_charge_on_melee_stun"]=240, + ["gain_endurance_charge_on_melee_stun_%"]=240, + ["gain_fortify_on_melee_hit_ms"]=1027, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=1028, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=1029, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=1030, + ["gain_power_charge_on_kill_with_hit_%"]=1031, + ["gain_rage_on_hit_%_chance"]=1033, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=1034, + ["gain_righteous_charge_on_mana_spent_%"]=1035, + ["gain_x_rage_on_attack_hit"]=1036, + ["gain_x_rage_on_hit"]=1032, + ["gain_x_rage_on_melee_hit"]=1037, + ["galvanic_field_beam_delay_ms"]=1038, + ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1039, + ["galvanic_field_maximum_number_of_spheres"]=1189, + ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=1040, + ["gem_quality_ancestral_cry_global_fire_damage_granted_+%_final"]=1041, + ["gem_quality_earthquake_damaging_ailment_effect_+%_final"]=1042, + ["gem_quality_flameblast_damaging_ailment_effect_per_stage_+%_final"]=1043, + ["gem_quality_marked_enemy_damage_dealt_+%_final"]=1044, + ["generic_ongoing_trigger_maximum_energy"]=1045, + ["generic_ongoing_trigger_triggers_at_maximum_energy"]=1045, + ["generic_ongoing_triggerer_is_invocation_skill"]=1736, + ["glacial_cascade_travel_speed_+%"]=1046, + ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=201, + ["global_always_hit"]=287, + ["global_bleed_on_hit"]=1047, + ["global_cannot_crit"]=357, + ["global_chance_to_blind_on_hit_%"]=210, + ["global_chance_to_knockback_%"]=59, + ["global_hit_causes_monster_flee_%"]=189, + ["global_knockback"]=1048, + ["global_maim_on_hit"]=1049, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1609, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=1050, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1609, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=1050, + ["global_poison_on_hit"]=341, + ["glorious_madness_timer_ms"]=1051, + ["golem_buff_effect_+%"]=1052, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=1053, + ["grenade_skill_%_chance_to_explode_twice"]=1054, + ["ground_slam_angle_+%"]=1056, + ["groundslam_damage_to_close_targets_+%_final"]=360, + ["has_freeze_cull"]=1057, + ["hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1058, + ["hazard_rearm_%_chance"]=1059, + ["herald_of_agony_add_stack_on_poison"]=1060, + ["herald_of_agony_poison_effect_+%_final"]=1061, + ["herald_of_ash_fire_damage_+%"]=1062, + ["herald_of_blood_global_physical_damage_granted_+%"]=1063, + ["herald_of_ice_cold_damage_+%"]=1064, + ["herald_of_light_summon_champion_on_kill"]=1065, + ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=1066, + ["herald_of_purity_physical_damage_+%_final"]=1067, + ["herald_of_thunder_lightning_damage_+%"]=1068, + ["hex_transfer_on_death_total_range"]=1069, + ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=1070, + ["hexblast_hit_damage_+%_final_if_hexed"]=1071, + ["hinder_enemy_chaos_damage_+%"]=1072, + ["hinder_enemy_chaos_damage_taken_+%"]=1073, + ["hit_%_chance_to_be_dazing"]=1077, + ["hit_damage_+%_vs_chilled_enemies"]=1074, + ["hit_damage_stun_multiplier_+%"]=1075, + ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=1076, + ["hits_grant_cruelty"]=1078, + ["hits_ignore_all_enemy_monster_resistances"]=1079, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=1080, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=1081, + ["holy_path_teleport_range_+%"]=1082, + ["holy_relic_nova_life_regeneration_rate_per_minute"]=1083, + ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1084, + ["hundred_times_attacks_per_second"]=1085, + ["hundred_times_average_damage_per_skill_use"]=1086, + ["hundred_times_casts_per_second"]=1087, + ["hundred_times_damage_per_second"]=1088, + ["hydro_sphere_pulse_frequency_ms"]=1089, + ["hydrosphere_hit_cooldown_ms"]=1090, + ["ice_crash_first_stage_damage_+%_final"]=1091, + ["ice_crash_second_hit_damage_+%_final"]=308, + ["ice_crash_third_hit_damage_+%_final"]=309, + ["ice_crystal_shatter_detonation_area_of_effect_+%_final"]=1092, + ["ice_crystal_shatter_detonation_damage_+%_final"]=1093, + ["ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1094, + ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1095, + ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1095, + ["ice_golem_grants_accuracy_+%"]=312, + ["ice_golem_grants_critical_strike_chance_+%"]=311, + ["ice_nova_number_of_repeats"]=284, + ["ice_nova_radius_+%_per_repeat"]=285, + ["ice_shield_moving_mana_degeneration_per_minute"]=228, + ["ice_spear_distance_before_form_change_+%"]=1096, + ["ice_spear_second_form_critical_strike_chance_+%"]=206, + ["ice_spear_second_form_critical_strike_multiplier_+"]=207, + ["ice_spear_second_form_projectile_speed_+%_final"]=208, + ["igneous_shield_perfect_block_cooldown_ms"]=1899, + ["igneous_shield_perfect_block_window_time_ms"]=1097, + ["ignite_duration_+%"]=97, + ["ignite_effect_+%_final_against_frozen_enemies"]=1098, + ["ignite_effect_+%_final_if_heat_is_consumed"]=751, + ["ignite_proliferation_delay_ms"]=181, + ["ignite_proliferation_radius"]=181, + ["ignites_apply_fire_resistance_+"]=1099, + ["immolation_brand_burn_damage_+%_final_per_stage"]=1100, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1101, + ["impacting_steel_secondary_projectile_damage_+%_final"]=1102, + ["impale_magnitude_+%"]=1103, + ["impale_on_hit_%_chance"]=1104, + ["impurity_cold_damage_taken_+%_final"]=1105, + ["impurity_fire_damage_taken_+%_final"]=1106, + ["impurity_lightning_damage_taken_+%_final"]=1107, + ["incinerate_damage_+%_per_stage"]=223, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1108, + ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1109, + ["infernal_cry_%_max_life_as_fire_on_death"]=305, + ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1857, + ["infernal_cry_empowered_attacks_trigger_combust_display"]=1872, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1910, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1910, + ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1110, + ["inflict_all_exposure_on_hit"]=1111, + ["inflict_exposure_for_x_ms_on_cold_crit"]=1112, + ["inflict_exposure_for_x_ms_on_ignite"]=1113, + ["inflict_exposure_for_x_ms_on_shock"]=1114, + ["inflict_exposure_on_hit_%_chance"]=1115, + ["infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy"]=1116, + ["infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy"]=1117, + ["infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy"]=1118, + ["inspiration_charge_duration_+%"]=1119, + ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=318, + ["intermediary_chaos_area_damage_to_deal_per_minute"]=137, + ["intermediary_chaos_damage_to_deal_per_minute"]=138, + ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=1120, + ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1121, + ["intermediary_cold_area_damage_to_deal_per_minute"]=143, + ["intermediary_cold_damage_to_deal_per_minute"]=144, + ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=1122, + ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1123, + ["intermediary_fire_area_damage_to_deal_per_minute"]=147, + ["intermediary_fire_damage_to_deal_per_minute"]=148, + ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=1124, + ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1125, + ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1126, + ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1127, + ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1128, + ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1129, + ["intimidate_enemies_when_they_enter_your_presence_duration_ms"]=1617, + ["intimidate_nearby_enemies_on_use_for_ms"]=1130, + ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1875, + ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1854, ["is_remote_mine"]=38, ["is_trap"]=39, - ["jagged_ground_duration_ms"]=1097, - ["keystone_minion_instability"]=133, - ["keystone_point_blank"]=186, - ["kill_enemy_on_hit_if_under_10%_life"]=185, - ["killed_monster_dropped_item_quantity_+%"]=104, - ["killed_monster_dropped_item_rarity_+%"]=103, - ["killing_blow_consumes_corpse_restore_%_life"]=1098, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1099, - ["kinetic_bolt_forks_apply_to_zig_zags"]=1100, - ["kinetic_bolt_number_of_zig_zags"]=1849, - ["knockback_chance_%_at_close_range"]=1101, - ["knockback_distance_+%"]=62, - ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1102, - ["lancing_steel_damage_+%_at_close_range"]=1103, - ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1104, - ["lancing_steel_targeting_range_+%"]=1105, - ["life_gain_per_target"]=120, - ["life_leech_also_recovers_based_on_elemental_damage_types"]=1106, - ["life_regeneration_rate_+%"]=205, - ["life_regeneration_rate_per_minute_%"]=204, + ["jagged_ground_duration_ms"]=1132, + ["keystone_minion_instability"]=132, + ["keystone_point_blank"]=185, + ["kill_enemy_on_hit_if_under_10%_life"]=184, + ["killed_monster_dropped_item_quantity_+%"]=102, + ["killed_monster_dropped_item_rarity_+%"]=101, + ["killing_blow_consumes_corpse_restore_%_life"]=1133, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1134, + ["kinetic_bolt_forks_apply_to_zig_zags"]=1135, + ["kinetic_bolt_number_of_zig_zags"]=1900, + ["knockback_chance_%_at_close_range"]=1136, + ["knockback_distance_+%"]=61, + ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1137, + ["lancing_steel_damage_+%_at_close_range"]=1138, + ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1139, + ["lancing_steel_targeting_range_+%"]=1140, + ["life_gain_per_target"]=118, + ["life_leech_also_recovers_based_on_elemental_damage_types"]=1141, + ["life_regeneration_rate_+%"]=204, + ["life_regeneration_rate_per_minute_%"]=203, ["light_radius_increases_apply_to_area_of_effect"]=34, - ["lightning_ailment_effect_+%"]=1107, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1108, - ["lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1109, - ["lightning_explosion_mine_aura_damage_taken_+%"]=1851, - ["lightning_golem_grants_attack_and_cast_speed_+%"]=318, - ["lightning_penetration_%_while_on_low_mana"]=216, - ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1110, - ["lightning_tendrils_channelled_larger_pulse_always_crit"]=127, - ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1111, - ["lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1112, - ["lightning_tower_trap_interval_duration_ms"]=1113, - ["lightning_tower_trap_number_of_beams"]=1113, - ["lightning_trap_projectiles_leave_shocking_ground"]=295, - ["lightning_warp_shocked_ground_base_duration_ms"]=1114, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1115, - ["lose_blood_scythe_charge_on_kill"]=568, - ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1116, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1117, - ["maim_effect_+%"]=1118, - ["maim_on_hit_%"]=1119, - ["main_hand_accuracy_rating"]=1120, - ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1121, - ["main_hand_attack_damage_penetrates_cold_resist_%"]=1122, - ["main_hand_attack_damage_penetrates_fire_resist_%"]=1123, - ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1124, - ["main_hand_critical_hit_damage_bonus"]=1125, - ["main_hand_critical_strike_chance"]=1126, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1127, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1128, - ["main_hand_maximum_chaos_damage"]=1129, - ["main_hand_maximum_cold_damage"]=1130, - ["main_hand_maximum_fire_damage"]=1131, - ["main_hand_maximum_lightning_damage"]=1132, - ["main_hand_maximum_physical_damage"]=1133, - ["main_hand_maximum_total_damage"]=1134, - ["main_hand_minimum_chaos_damage"]=1129, - ["main_hand_minimum_cold_damage"]=1130, - ["main_hand_minimum_fire_damage"]=1131, - ["main_hand_minimum_lightning_damage"]=1132, - ["main_hand_minimum_physical_damage"]=1133, - ["main_hand_minimum_total_damage"]=1134, - ["main_hand_reload_time"]=1135, - ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1136, - ["mana_degeneration_per_minute"]=229, - ["mana_gain_per_target"]=1137, - ["mana_tempest_effects_linger_X_ms"]=1138, - ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1139, - ["manaforged_arrows_total_mana_threshold"]=1140, - ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1141, - ["mark_effect_+%"]=1142, - ["max_crab_aspect_stacks"]=1143, - ["max_number_of_absolution_sentinels"]=1144, - ["max_number_of_lightning_warp_markers"]=1145, - ["max_steel_ammo"]=1146, - ["maximum_added_cold_damage_per_frenzy_charge"]=1167, - ["maximum_added_cold_damage_vs_chilled_enemies"]=1168, - ["maximum_added_lightning_damage_from_skill"]=1169, - ["maximum_fire_damage_per_fuse_arrow_orb"]=160, - ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1147, - ["maximum_life_+%_for_corpses_you_create"]=1148, - ["maximum_number_of_arctic_armour_stationary_stacks"]=1149, - ["maximum_number_of_blades_left_in_ground"]=1150, - ["maximum_number_of_crossbow_heat_stacks"]=1151, - ["maximum_number_of_mirage_warriors"]=1153, - ["maximum_number_of_snapping_adder_projectiles"]=1154, - ["maximum_number_of_spinning_blades"]=338, - ["maximum_number_of_spiritual_cry_warriors"]=1807, - ["maximum_number_of_summoned_doubles"]=1155, - ["maximum_number_of_vaal_ice_shot_mirages"]=1156, - ["maximum_secondary_physical_damage_per_15_strength"]=1171, - ["maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1172, - ["maximum_virulence_stacks"]=1157, - ["meditate_energy_shield_recharge_rate_+%_final"]=1158, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=54, - ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=49, - ["melee_counterattack_trigger_on_block_%"]=250, - ["melee_counterattack_trigger_on_hit_%"]=248, - ["melee_damage_vs_bleeding_enemies_+%"]=326, - ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1160, - ["melee_physical_damage_+%"]=155, - ["melee_range_+"]=333, - ["melee_weapon_range_+"]=332, - ["mine_cannot_rearm"]=1161, - ["mine_critical_strike_chance_+%_per_power_charge"]=1162, - ["mine_detonates_instantly"]=1163, + ["lightning_ailment_effect_+%"]=1142, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1143, + ["lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1144, + ["lightning_explosion_mine_aura_damage_taken_+%"]=1902, + ["lightning_golem_grants_attack_and_cast_speed_+%"]=315, + ["lightning_penetration_%_while_on_low_mana"]=215, + ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1145, + ["lightning_tendrils_channelled_larger_pulse_always_crit"]=126, + ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1146, + ["lightning_tendrils_channelled_larger_pulse_interval"]=126, + ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1147, + ["lightning_tower_trap_interval_duration_ms"]=1148, + ["lightning_tower_trap_number_of_beams"]=1148, + ["lightning_trap_projectiles_leave_shocking_ground"]=292, + ["lightning_warp_shocked_ground_base_duration_ms"]=1149, + ["lose_%_of_maximum_rage_on_dealing_critical_strike"]=1150, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1151, + ["lose_blood_scythe_charge_on_kill"]=584, + ["magma_barrier_maximum_block_chance_granted_%"]=1152, + ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1153, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1154, + ["maim_effect_+%"]=1155, + ["maim_on_hit_%"]=1156, + ["main_hand_accuracy_rating"]=1157, + ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1158, + ["main_hand_attack_damage_penetrates_cold_resist_%"]=1159, + ["main_hand_attack_damage_penetrates_fire_resist_%"]=1160, + ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1161, + ["main_hand_chaos_damage_only_min_or_max"]=1166, + ["main_hand_cold_damage_only_min_or_max"]=1167, + ["main_hand_critical_hit_damage_bonus"]=1162, + ["main_hand_critical_strike_chance"]=1163, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1164, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1165, + ["main_hand_fire_damage_only_min_or_max"]=1168, + ["main_hand_lightning_damage_only_min_or_max"]=1169, + ["main_hand_maximum_chaos_damage"]=1166, + ["main_hand_maximum_cold_damage"]=1167, + ["main_hand_maximum_fire_damage"]=1168, + ["main_hand_maximum_lightning_damage"]=1169, + ["main_hand_maximum_physical_damage"]=1170, + ["main_hand_maximum_total_damage"]=1171, + ["main_hand_minimum_chaos_damage"]=1166, + ["main_hand_minimum_cold_damage"]=1167, + ["main_hand_minimum_fire_damage"]=1168, + ["main_hand_minimum_lightning_damage"]=1169, + ["main_hand_minimum_physical_damage"]=1170, + ["main_hand_minimum_total_damage"]=1171, + ["main_hand_physical_damage_only_min_or_max"]=1170, + ["main_hand_reload_time"]=1172, + ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1173, + ["mana_degeneration_per_minute"]=227, + ["mana_gain_per_target"]=1174, + ["mana_remnants_global_mana_regeneration_rate_granted_+%"]=1175, + ["mana_tempest_effects_linger_X_ms"]=1176, + ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1177, + ["manaforged_arrows_total_mana_threshold"]=1178, + ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1179, + ["mark_effect_+%"]=1180, + ["max_crab_aspect_stacks"]=1181, + ["max_number_of_absolution_sentinels"]=1182, + ["max_number_of_lightning_warp_markers"]=1183, + ["max_steel_ammo"]=1184, + ["maximum_added_cold_damage_per_frenzy_charge"]=1205, + ["maximum_added_cold_damage_vs_chilled_enemies"]=1206, + ["maximum_added_lightning_damage_from_skill"]=1207, + ["maximum_fire_damage_per_fuse_arrow_orb"]=159, + ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1185, + ["maximum_life_+%_for_corpses_you_create"]=1186, + ["maximum_number_of_blades_left_in_ground"]=1187, + ["maximum_number_of_crossbow_heat_stacks"]=1188, + ["maximum_number_of_mirage_warriors"]=1190, + ["maximum_number_of_snapping_adder_projectiles"]=1191, + ["maximum_number_of_spinning_blades"]=335, + ["maximum_number_of_spiritual_cry_warriors"]=1859, + ["maximum_number_of_summoned_doubles"]=1192, + ["maximum_number_of_vaal_ice_shot_mirages"]=1193, + ["maximum_secondary_physical_damage_per_15_strength"]=1209, + ["maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1210, + ["maximum_verisium_infusion_stacks"]=1194, + ["maximum_virulence_stacks"]=1195, + ["meditate_energy_shield_recharge_rate_+%_final"]=1196, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=53, + ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=48, + ["melee_counterattack_trigger_on_block_%"]=247, + ["melee_counterattack_trigger_on_hit_%"]=245, + ["melee_damage_vs_bleeding_enemies_+%"]=323, + ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1198, + ["melee_physical_damage_+%"]=154, + ["melee_range_+"]=330, + ["melee_weapon_range_+"]=329, + ["meta_skill_base_costs_equals_%_total_base_costs_from_all_socketed_skills"]=13, + ["mine_cannot_rearm"]=1199, + ["mine_critical_strike_chance_+%_per_power_charge"]=1200, + ["mine_detonates_instantly"]=1201, ["mine_detonation_radius_+%"]=42, - ["mine_detonation_speed_+%"]=1164, - ["mine_duration"]=200, - ["mine_laying_speed_+%"]=199, - ["mine_projectile_speed_+%_per_frenzy_charge"]=1165, - ["mine_throwing_speed_+%_per_frenzy_charge"]=1166, - ["minimum_added_cold_damage_per_frenzy_charge"]=1167, - ["minimum_added_cold_damage_vs_chilled_enemies"]=1168, - ["minimum_added_lightning_damage_from_skill"]=1169, - ["minimum_fire_damage_per_fuse_arrow_orb"]=160, - ["minimum_power_from_quality"]=1170, - ["minimum_secondary_physical_damage_per_15_strength"]=1171, - ["minimum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1172, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1186, - ["minion_additional_physical_damage_reduction_%"]=1173, - ["minion_attack_speed_+%"]=123, - ["minion_block_%"]=1174, - ["minion_burning_damage_+%"]=1175, - ["minion_cast_speed_+%"]=124, - ["minion_chance_to_deal_double_damage_%"]=1176, - ["minion_chance_to_taunt_on_hit_%"]=1177, - ["minion_cooldown_recovery_+%"]=1178, - ["minion_damage_+%"]=121, - ["minion_damage_+%_on_full_life"]=1179, - ["minion_duration"]=82, - ["minion_fire_damage_taken_+%"]=1180, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1181, - ["minion_larger_aggro_radius"]=1856, - ["minion_life_regeneration_rate_per_minute_%"]=1182, - ["minion_maim_on_hit_%"]=1183, - ["minion_maximum_all_elemental_resistances_%"]=1184, - ["minion_maximum_life_+%"]=132, - ["minion_melee_damage_+%"]=1185, - ["minion_movement_speed_+%"]=125, - ["minion_rage_effect_+%"]=1187, - ["minion_skill_area_of_effect_+%"]=1188, - ["minion_stun_threshold_reduction_+%"]=1189, - ["minions_are_defensive"]=1857, - ["minions_cannot_be_damaged_after_summoned_ms"]=1190, - ["minions_chance_to_intimidate_on_hit_%"]=1191, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1192, - ["minions_inflict_exposure_on_hit_%_chance"]=1193, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1194, - ["mirage_archer_number_of_additional_projectiles"]=1195, + ["mine_detonation_speed_+%"]=1202, + ["mine_duration"]=199, + ["mine_laying_speed_+%"]=198, + ["mine_projectile_speed_+%_per_frenzy_charge"]=1203, + ["mine_throwing_speed_+%_per_frenzy_charge"]=1204, + ["minimum_added_cold_damage_per_frenzy_charge"]=1205, + ["minimum_added_cold_damage_vs_chilled_enemies"]=1206, + ["minimum_added_lightning_damage_from_skill"]=1207, + ["minimum_fire_damage_per_fuse_arrow_orb"]=159, + ["minimum_power_from_quality"]=1208, + ["minimum_secondary_physical_damage_per_15_strength"]=1209, + ["minimum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1210, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1223, + ["minion_additional_physical_damage_reduction_%"]=1211, + ["minion_attack_speed_+%"]=122, + ["minion_block_%"]=1212, + ["minion_burning_damage_+%"]=1213, + ["minion_cast_speed_+%"]=123, + ["minion_chance_to_deal_double_damage_%"]=1214, + ["minion_chance_to_taunt_on_hit_%"]=1215, + ["minion_cooldown_recovery_+%"]=1216, + ["minion_damage_+%"]=119, + ["minion_damage_+%_on_full_life"]=1217, + ["minion_duration"]=81, + ["minion_fire_damage_taken_+%"]=1218, + ["minion_larger_aggro_radius"]=1907, + ["minion_life_regeneration_rate_per_minute_%"]=1219, + ["minion_maim_on_hit_%"]=1220, + ["minion_maximum_all_elemental_resistances_%"]=1221, + ["minion_maximum_life_+%"]=131, + ["minion_melee_damage_+%"]=1222, + ["minion_movement_speed_+%"]=124, + ["minion_rage_effect_+%"]=1224, + ["minion_skill_area_of_effect_+%"]=1225, + ["minion_stun_threshold_reduction_+%"]=1226, + ["minions_are_defensive"]=1908, + ["minions_cannot_be_damaged_after_summoned_ms"]=1227, + ["minions_chance_to_intimidate_on_hit_%"]=1228, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1229, + ["minions_inflict_exposure_on_hit_%_chance"]=1230, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1231, + ["mirage_archer_number_of_additional_projectiles"]=1232, ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=37, ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=35, ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=36, - ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1197, - ["molten_shell_damage_absorb_limit_%_of_armour"]=1196, - ["molten_shell_damage_absorbed_%"]=1196, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1198, - ["molten_shell_max_damage_absorbed"]=1196, - ["molten_strike_projectiles_chain_when_impacting_ground"]=1199, - ["monster_response_time_ms"]=153, - ["mortal_call_elemental_damage_taken_+%_final"]=1200, - ["mortal_call_physical_damage_taken_+%_final"]=1201, - ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1202, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1852, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1852, - ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1852, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1852, - ["movement_velocity_cap"]=128, - ["multiple_projectiles_projectile_spread_+%"]=1203, - ["multistrike_area_of_effect_+%_per_repeat"]=1204, - ["multistrike_damage_+%_final_on_first_repeat"]=1205, - ["multistrike_damage_+%_final_on_second_repeat"]=1206, - ["multistrike_damage_+%_final_on_third_repeat"]=1207, - ["never_freeze"]=294, - ["never_ignite"]=1208, - ["never_shock"]=1209, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=329, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=328, - ["newshocknova_first_ring_damage_+%_final"]=306, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1210, - ["no_movement_speed"]=102, - ["non_damaging_ailment_effect_+%"]=1211, - ["non_modifiable_totem_limit"]=1212, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff"]=1213, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1214, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1215, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1216, - ["non_spell_cast_duration_ms"]=1217, - ["nova_skills_cast_at_target_location"]=1218, - ["number_of_additional_chain_targets"]=1219, - ["number_of_additional_fissures"]=1220, - ["number_of_additional_impaled_debuffs_to_apply"]=1221, - ["number_of_allowed_storm_arrows"]=1222, - ["number_of_branching_fissures"]=1223, - ["number_of_champions_of_light_allowed"]=1224, - ["number_of_corpses_to_consume"]=1225, - ["number_of_crossbow_bolts"]=1226, - ["number_of_herald_scorpions_allowed"]=1228, - ["number_of_marks_allowed_per_type"]=1229, + ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1234, + ["molten_shell_damage_absorb_limit_%_of_armour"]=1233, + ["molten_shell_damage_absorbed_%"]=1233, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1235, + ["molten_shell_max_damage_absorbed"]=1233, + ["molten_strike_projectiles_chain_when_impacting_ground"]=1236, + ["monster_response_time_ms"]=152, + ["mortal_call_elemental_damage_taken_+%_final"]=1237, + ["mortal_call_physical_damage_taken_+%_final"]=1238, + ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1239, + ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1903, + ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1903, + ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1903, + ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1903, + ["movement_velocity_cap"]=127, + ["multiple_projectiles_projectile_spread_+%"]=1240, + ["multishot_empowered_projectile_speed_+%"]=1241, + ["never_freeze"]=291, + ["never_ignite"]=1242, + ["never_shock"]=1243, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=326, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=325, + ["newshocknova_first_ring_damage_+%_final"]=303, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1244, + ["no_movement_speed"]=100, + ["non_damaging_ailment_effect_+%"]=1245, + ["non_modifiable_totem_limit"]=1246, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff"]=1247, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1248, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1249, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1250, + ["non_spell_cast_duration_ms"]=1251, + ["nova_skills_cast_at_target_location"]=1252, + ["number_of_additional_chain_targets"]=1253, + ["number_of_additional_fissures"]=1254, + ["number_of_additional_impaled_debuffs_to_apply"]=1255, + ["number_of_allowed_storm_arrows"]=1256, + ["number_of_branching_fissures"]=1257, + ["number_of_champions_of_light_allowed"]=1258, + ["number_of_corpses_to_consume"]=1259, + ["number_of_crossbow_bolts"]=1260, + ["number_of_herald_scorpions_allowed"]=1262, + ["number_of_marks_allowed_per_type"]=1263, ["number_of_mines_to_place"]=38, - ["number_of_mirage_archers_allowed"]=1230, - ["number_of_reapers_allowed"]=1231, - ["number_of_relics_allowed"]=1232, - ["number_of_skeletal_constructs_allowed"]=1233, - ["number_of_support_ghosts_allowed"]=527, - ["number_of_tempest_bells_allowed"]=1234, - ["number_of_totems_to_summon"]=1235, + ["number_of_mirage_archers_allowed"]=1264, + ["number_of_reapers_allowed"]=1265, + ["number_of_relics_allowed"]=1266, + ["number_of_runic_aftershocks_allowed"]=1267, + ["number_of_skeletal_constructs_allowed"]=1268, + ["number_of_support_ghosts_allowed"]=538, + ["number_of_tempest_bells_allowed"]=1269, + ["number_of_totems_to_summon"]=1270, ["number_of_traps_to_throw"]=39, - ["number_of_warcries_exerting_this_action"]=1096, - ["off_hand_accuracy_rating"]=1236, - ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1237, - ["off_hand_attack_damage_penetrates_cold_resist_%"]=1238, - ["off_hand_attack_damage_penetrates_fire_resist_%"]=1239, - ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1240, - ["off_hand_critical_hit_damage_bonus"]=1241, - ["off_hand_critical_strike_chance"]=1242, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1243, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1244, - ["off_hand_maximum_chaos_damage"]=1245, - ["off_hand_maximum_cold_damage"]=1246, - ["off_hand_maximum_fire_damage"]=1247, - ["off_hand_maximum_lightning_damage"]=1248, - ["off_hand_maximum_physical_damage"]=1249, - ["off_hand_maximum_total_damage"]=1250, - ["off_hand_minimum_chaos_damage"]=1245, - ["off_hand_minimum_cold_damage"]=1246, - ["off_hand_minimum_fire_damage"]=1247, - ["off_hand_minimum_lightning_damage"]=1248, - ["off_hand_minimum_physical_damage"]=1249, - ["off_hand_minimum_total_damage"]=1250, + ["number_of_warcries_exerting_this_action"]=1131, + ["off_hand_accuracy_rating"]=1271, + ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1272, + ["off_hand_attack_damage_penetrates_cold_resist_%"]=1273, + ["off_hand_attack_damage_penetrates_fire_resist_%"]=1274, + ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1275, + ["off_hand_chaos_damage_only_min_or_max"]=1280, + ["off_hand_cold_damage_only_min_or_max"]=1281, + ["off_hand_critical_hit_damage_bonus"]=1276, + ["off_hand_critical_strike_chance"]=1277, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1278, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1279, + ["off_hand_fire_damage_only_min_or_max"]=1282, + ["off_hand_lightning_damage_only_min_or_max"]=1283, + ["off_hand_maximum_chaos_damage"]=1280, + ["off_hand_maximum_cold_damage"]=1281, + ["off_hand_maximum_fire_damage"]=1282, + ["off_hand_maximum_lightning_damage"]=1283, + ["off_hand_maximum_physical_damage"]=1284, + ["off_hand_maximum_total_damage"]=1285, + ["off_hand_minimum_chaos_damage"]=1280, + ["off_hand_minimum_cold_damage"]=1281, + ["off_hand_minimum_fire_damage"]=1282, + ["off_hand_minimum_lightning_damage"]=1283, + ["off_hand_minimum_physical_damage"]=1284, + ["off_hand_minimum_total_damage"]=1285, + ["off_hand_physical_damage_only_min_or_max"]=1284, ["offering_skill_effect_duration_per_corpse"]=23, - ["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"]=1251, - ["orb_of_storms_channelling_bolt_frequency_ms"]=1252, - ["orb_of_storms_maximum_number_of_hits"]=1253, - ["orb_of_storms_maximum_number_of_orbs"]=1254, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1255, - ["parallel_projectile_firing_point_x_dist_+%"]=1256, + ["oil_arrow_explosion_base_damage_+permyriad"]=156, + ["oil_arrow_explosion_maximum_added_fire_damage"]=158, + ["oil_arrow_explosion_minimum_added_fire_damage"]=158, + ["orb_of_storms_bolt_frequency_ms"]=1286, + ["orb_of_storms_channelling_bolt_frequency_ms"]=1287, + ["orb_of_storms_maximum_number_of_hits"]=1288, + ["orb_of_storms_maximum_number_of_orbs"]=1289, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1290, + ["parallel_projectile_firing_point_x_dist_+%"]=1291, parent="active_skill_gem_stat_descriptions", - ["penance_brand_additional_descriptions_boolean"]=1257, - ["penance_brand_base_spread_radius_+"]=1258, - ["penetrate_%_fire_resistance_per_100_dexterity"]=1259, - ["petrification_statue_target_action_speed_-%"]=1264, - ["phantasm_grant_buff_maximum_added_physical_damage"]=1265, - ["phantasm_grant_buff_minimum_added_physical_damage"]=1265, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1266, - ["phase_run_melee_physical_damage_+%_final"]=154, - ["phase_through_objects"]=335, - ["phys_cascade_trap_interval_duration_ms"]=1267, - ["phys_cascade_trap_number_of_cascades"]=1267, - ["physical_damage_reduction_%_per_crab_aspect_stack"]=1268, - ["physical_damage_reduction_rating_+%"]=172, - ["physical_damage_taken_+"]=231, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1269, - ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=1270, - ["plague_bearer_maximum_stored_poison_damage"]=1270, - ["plague_bearer_movement_speed_+%_while_infecting"]=1271, - ["plague_bearer_poison_effect_+%_while_infecting"]=358, - ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1272, - ["plague_burst_area_+%_final_maximum"]=1273, - ["plague_burst_triggered_by_bursting_plague_death"]=1274, - ["plant_skill_damage_+%_final_when_wet"]=1275, - ["portal_alternate_destination_chance_permyriad"]=1279, - ["predict_totem_maximum_energy_shield"]=1280, - ["predict_totem_maximum_life"]=1281, - ["primary_projectile_chain_num"]=1282, - ["primary_projectile_display_targets_to_pierce"]=89, - ["primary_projectile_impale_chance_%"]=1283, - ["prismatic_rain_beam_frequency_ms"]=1284, - ["projectile_attack_damage_+%_in_blood_stance"]=1285, - ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1287, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1288, - ["projectile_chance_to_not_pierce_%"]=1289, - ["projectile_damage_+%_if_pierced_enemy"]=1290, - ["projectile_damage_+%_per_remaining_chain"]=1291, - ["projectile_damage_+%_vs_nearby_enemies"]=1297, + ["penance_brand_additional_descriptions_boolean"]=1292, + ["penance_brand_base_spread_radius_+"]=1293, + ["penetrate_%_fire_resistance_per_100_dexterity"]=1294, + ["petrification_statue_target_action_speed_-%"]=1299, + ["phantasm_grant_buff_maximum_added_physical_damage"]=1300, + ["phantasm_grant_buff_minimum_added_physical_damage"]=1300, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1301, + ["phase_run_melee_physical_damage_+%_final"]=153, + ["phase_through_objects"]=332, + ["phys_cascade_trap_interval_duration_ms"]=1302, + ["phys_cascade_trap_number_of_cascades"]=1302, + ["physical_damage_reduction_%_per_crab_aspect_stack"]=1303, + ["physical_damage_reduction_rating_+%"]=171, + ["physical_damage_taken_+"]=229, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1304, + ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=1305, + ["plague_bearer_maximum_stored_poison_damage"]=1305, + ["plague_bearer_movement_speed_+%_while_infecting"]=1306, + ["plague_bearer_poison_effect_+%_while_infecting"]=355, + ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1307, + ["plague_burst_area_+%_final_maximum"]=1308, + ["plague_burst_triggered_by_bursting_plague_death"]=1309, + ["plant_skill_damage_+%_final_when_wet"]=1310, + ["portal_alternate_destination_chance_permyriad"]=1314, + ["predict_totem_maximum_energy_shield"]=1315, + ["predict_totem_maximum_life"]=1316, + ["primary_projectile_impale_chance_%"]=1317, + ["prismatic_rain_beam_frequency_ms"]=1318, + ["projectile_attack_damage_+%_in_blood_stance"]=1319, + ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1321, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1322, + ["projectile_chance_to_not_pierce_%"]=1323, + ["projectile_damage_+%_if_pierced_enemy"]=1324, + ["projectile_damage_+%_per_remaining_chain"]=1325, + ["projectile_damage_+%_vs_nearby_enemies"]=1332, ["projectile_damage_modifiers_apply_to_skill_dot"]=33, - ["projectile_ground_effect_duration"]=80, - ["projectile_number_of_targets_to_pierce"]=88, - ["projectile_only_collide_with_wet_targets"]=1292, - ["projectile_return_%_chance"]=223, - ["projectile_speed_+%"]=1293, - ["projectile_speed_+%_in_sand_stance"]=1294, - ["projectiles_can_shotgun"]=1295, - ["projectiles_can_split_at_end_of_range"]=1286, - ["projectiles_can_split_from_terrain"]=1286, - ["projectiles_cannot_split"]=1296, - ["projectiles_fork_when_passing_a_flame_wall"]=1298, - ["projectiles_pierce_all_targets_in_x_range"]=1299, - ["projectiles_rain"]=1300, - ["projectiles_return"]=223, - ["puppet_master_duration_ms"]=1301, - ["purge_expose_resist_%_matching_highest_element_damage"]=1302, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1303, - ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=1304, - ["quake_slam_fully_charged_explosion_damage_+%_final"]=337, - ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=410, - ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=1025, - ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=432, - ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=437, - ["quality_display_active_skill_returning_damage_is_gem"]=362, - ["quality_display_base_number_of_crossbow_bolts_is_gem"]=524, - ["quality_display_base_number_of_projectiles_is_gem"]=525, - ["quality_display_contagion_is_gem"]=739, - ["quality_display_ember_fusilade_is_gem"]=900, - ["quality_display_exsanguinate_beam_targets_is_gem"]=574, - ["quality_display_ice_crash_is_gem"]=312, - ["quality_display_immortal_call_is_gem"]=1202, - ["quality_display_incinerate_is_gem_hit"]=920, - ["quality_display_infernal_cry_is_gem"]=1859, - ["quality_display_mana_tempest_is_gem"]=1215, - ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1151, - ["quality_display_rune_paint_is_gem"]=1338, - ["quality_display_sandstorm_swipe_is_gem"]=1344, - ["quality_display_spear_puncture_is_gem"]=502, - ["quality_display_warding_steel_is_gem"]=1828, - ["queens_demand_effect"]=860, - ["quick_guard_damage_absorb_limit"]=1305, - ["quick_guard_damage_absorbed_%"]=1305, - ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1307, - ["rage_slash_maximum_vortices"]=1310, - ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1308, - ["rage_slash_rage_sacrifice_per_damage_bonus"]=1307, - ["rage_slash_rage_sacrifice_per_radius_bonus"]=1308, - ["rage_slash_sacrifice_rage_%"]=1306, - ["rage_slash_vortex_attack_speed_+%_final"]=1309, - ["ragestorm_movement_speed_+%"]=1311, - ["rain_hit_delay_ms"]=1312, - ["rain_of_arrows_additional_sequence_chance_%"]=1313, - ["rain_of_arrows_arrow_speed_+%"]=1314, - ["raise_zombie_empowerment_effect_+%"]=1315, - ["rallying_cry_buff_effect_on_minions_+%_final"]=1810, - ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1814, - ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1801, - ["reap_life_%_granted_on_death_with_debuff"]=568, - ["reave_additional_max_stacks"]=1316, - ["reave_area_of_effect_+%_final_per_stage"]=242, - ["reaver_enrage_base_life_%_degen_per_minute"]=1317, - ["reaver_enrage_decay_rate_increase_+%_final"]=1317, - ["recall_sigil_target_search_range_+%"]=1318, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=1319, - ["recover_%_maximum_life_on_cull"]=1320, - ["recover_%_maximum_mana_on_cull"]=1321, - ["recover_permyriad_life_on_skill_use"]=1322, - ["reduce_enemy_chaos_resistance_%"]=1324, - ["reduce_enemy_cold_resistance_%"]=1325, - ["reduce_enemy_elemental_resistance_%"]=217, - ["reduce_enemy_fire_resistance_%"]=1326, - ["reduce_enemy_lightning_resistance_%"]=1327, - ["refresh_bleeding_duration_on_hit_%_chance"]=1328, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=388, - ["reload_speed_+%"]=1329, - ["remove_freeze_on_ignite"]=1330, - ["repeat_last_step_of_combo_attack"]=1331, - ["returning_projectiles_always_pierce"]=365, - ["rhoa_movement_speed_+%"]=1332, - ["rhoa_movement_speed_penalty_+%_final_while_performing_action"]=1333, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1334, - ["righteous_fire_spell_damage_+%_final"]=178, - ["ring_of_ice_placement_distance"]=1335, - ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1336, - ["rune_paint_area_of_effect_+%_per_rune_level"]=1337, - ["rune_paint_hit_damage_+%_final_per_rune_level"]=1338, - ["rune_paint_mana_spend_per_rune_upgrade"]=1339, - ["rune_paint_max_rune_level"]=1340, - ["sacrifice_%_life_on_skill_use"]=1341, - ["sanctify_wave_damage_+%_final"]=1342, - ["sandstorm_swipe_max_stages"]=1343, - ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1344, - ["sandstorm_swipe_storm_radius_+_per_stage"]=1345, - ["scorpion_minion_attack_speed_+%"]=1346, - ["scorpion_minion_maximum_added_physical_damage"]=1348, - ["scorpion_minion_minimum_added_physical_damage"]=1348, - ["scorpion_minion_physical_damage_+%"]=1347, - ["secondary_buff_effect_duration"]=78, - ["secondary_critical_hit_damage_bonus"]=1349, - ["secondary_critical_strike_chance"]=1350, - ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1351, - ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=152, - ["secondary_maximum_chaos_damage"]=1352, - ["secondary_maximum_cold_damage"]=1353, - ["secondary_maximum_fire_damage"]=1354, - ["secondary_maximum_lightning_damage"]=1355, - ["secondary_maximum_physical_damage"]=1356, - ["secondary_maximum_total_damage"]=1357, - ["secondary_minimum_chaos_damage"]=1352, - ["secondary_minimum_cold_damage"]=1353, - ["secondary_minimum_fire_damage"]=1354, - ["secondary_minimum_lightning_damage"]=1355, - ["secondary_minimum_physical_damage"]=1356, - ["secondary_minimum_total_damage"]=1357, - ["secondary_minion_duration"]=83, - ["seismic_cry_base_slam_skill_area_+%"]=1817, - ["seismic_cry_base_slam_skill_damage_+%_final"]=1815, - ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1818, - ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1816, - ["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_+%"]=1358, - ["share_charges_with_allies_in_your_presence"]=1359, - ["shatter_on_killing_blow"]=1360, - ["shattering_palm_target_damage_+%_final"]=1361, - ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1362, - ["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"]=1363, - ["shield_wall_damage_+%_final_when_slammed"]=1364, - ["shock_duration_+%"]=98, - ["shock_effect_+%"]=1365, - ["shock_effect_+%_with_critical_strikes"]=1366, - ["shock_maximum_magnitude_+"]=1367, - ["shock_nearby_enemy_area_of_effect_radius"]=1497, - ["shock_nearby_enemy_base_area_of_effect_radius"]=1497, - ["shock_nova_ring_chance_to_shock_+%"]=1368, - ["shock_nova_ring_damage_+%"]=350, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1369, - ["shocked_ground_base_magnitude_override"]=1370, - ["shockwave_slam_explosion_damage_+%_final"]=348, - ["shrapnel_shot_cone_placement_distance_+"]=1371, - ["shrapnel_trap_number_of_secondary_explosions"]=1372, - ["sigil_attached_target_fire_penetration_%"]=1373, - ["sigil_attached_target_lightning_penetration_%"]=1374, - ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1375, - ["sigil_recall_extend_base_skill_effect_duration"]=1376, - ["sigils_can_target_reaper_minions"]=1377, + ["projectile_ground_effect_duration"]=79, + ["projectile_only_collide_with_wet_targets"]=1326, + ["projectile_return_%_chance"]=221, + ["projectile_speed_+%"]=1327, + ["projectile_speed_+%_in_sand_stance"]=1328, + ["projectiles_can_shotgun"]=1329, + ["projectiles_can_split_at_end_of_range"]=1320, + ["projectiles_can_split_from_terrain"]=1320, + ["projectiles_cannot_fork"]=1330, + ["projectiles_cannot_split"]=1331, + ["projectiles_fork_when_passing_a_flame_wall"]=1333, + ["projectiles_nova"]=1334, + ["projectiles_pierce_all_targets_in_x_range"]=1335, + ["projectiles_rain"]=1336, + ["projectiles_return"]=221, + ["puppet_master_duration_ms"]=1337, + ["purge_expose_resist_%_matching_highest_element_damage"]=1338, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1339, + ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=1340, + ["quake_slam_fully_charged_explosion_damage_+%_final"]=334, + ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=411, + ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=1055, + ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=435, + ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=440, + ["quality_display_active_skill_returning_damage_is_gem"]=359, + ["quality_display_base_number_of_crossbow_bolts_is_gem"]=535, + ["quality_display_base_number_of_projectiles_is_gem"]=536, + ["quality_display_contagion_is_gem"]=760, + ["quality_display_ember_fusilade_is_gem"]=923, + ["quality_display_exsanguinate_beam_targets_is_gem"]=590, + ["quality_display_ice_crash_is_gem"]=309, + ["quality_display_immortal_call_is_gem"]=1239, + ["quality_display_incinerate_is_gem_hit"]=944, + ["quality_display_infernal_cry_is_gem"]=1910, + ["quality_display_mana_tempest_is_gem"]=1249, + ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1188, + ["quality_display_rune_paint_is_gem"]=1375, + ["quality_display_sandstorm_swipe_is_gem"]=1382, + ["quality_display_spear_puncture_is_gem"]=512, + ["quality_display_warding_steel_is_gem"]=1880, + ["queens_demand_effect"]=881, + ["quick_guard_damage_absorb_limit"]=1341, + ["quick_guard_damage_absorbed_%"]=1341, + ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1343, + ["rage_slash_maximum_vortices"]=1346, + ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1344, + ["rage_slash_rage_sacrifice_per_damage_bonus"]=1343, + ["rage_slash_rage_sacrifice_per_radius_bonus"]=1344, + ["rage_slash_sacrifice_rage_%"]=1342, + ["rage_slash_vortex_attack_speed_+%_final"]=1345, + ["ragestorm_movement_speed_+%"]=1347, + ["rain_hit_delay_ms"]=1348, + ["rain_of_arrows_additional_sequence_chance_%"]=1349, + ["rain_of_arrows_arrow_speed_+%"]=1350, + ["raise_zombie_empowerment_effect_+%"]=1351, + ["rallying_cry_buff_effect_on_minions_+%_final"]=1862, + ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1866, + ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1853, + ["reap_life_%_granted_on_death_with_debuff"]=584, + ["reave_additional_max_stacks"]=1352, + ["reave_area_of_effect_+%_final_per_stage"]=239, + ["reaver_enrage_base_life_%_degen_per_minute"]=1353, + ["reaver_enrage_decay_rate_increase_+%_final"]=1353, + ["recall_sigil_target_search_range_+%"]=1354, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=1355, + ["recover_%_maximum_life_on_cull"]=1356, + ["recover_%_maximum_mana_on_cull"]=1357, + ["recover_permyriad_life_on_skill_use"]=1358, + ["reduce_enemy_chaos_resistance_%"]=1360, + ["reduce_enemy_cold_resistance_%"]=1361, + ["reduce_enemy_elemental_resistance_%"]=216, + ["reduce_enemy_fire_resistance_%"]=1362, + ["reduce_enemy_lightning_resistance_%"]=1363, + ["refresh_bleeding_duration_on_hit_%_chance"]=1364, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=389, + ["reload_speed_+%"]=1365, + ["remnant_effect_+%"]=1366, + ["remove_freeze_on_ignite"]=1367, + ["repeat_last_step_of_combo_attack"]=1368, + ["returning_projectiles_always_pierce"]=362, + ["rhoa_movement_speed_+%"]=1369, + ["rhoa_movement_speed_penalty_+%_final_while_performing_action"]=1370, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1371, + ["righteous_fire_spell_damage_+%_final"]=177, + ["ring_of_ice_placement_distance"]=1372, + ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1373, + ["rune_paint_area_of_effect_+%_per_rune_level"]=1374, + ["rune_paint_hit_damage_+%_final_per_rune_level"]=1375, + ["rune_paint_mana_spend_per_rune_upgrade"]=1376, + ["rune_paint_max_rune_level"]=1377, + ["sacrifice_%_life_on_skill_use"]=1379, + ["sacrifice_minion_life_granted_+%"]=1378, + ["sanctify_wave_damage_+%_final"]=1380, + ["sandstorm_swipe_max_stages"]=1381, + ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1382, + ["sandstorm_swipe_storm_radius_+_per_stage"]=1383, + ["scorpion_minion_attack_speed_+%"]=1384, + ["scorpion_minion_maximum_added_physical_damage"]=1386, + ["scorpion_minion_minimum_added_physical_damage"]=1386, + ["scorpion_minion_physical_damage_+%"]=1385, + ["secondary_buff_effect_duration"]=77, + ["secondary_critical_hit_damage_bonus"]=1387, + ["secondary_critical_strike_chance"]=1388, + ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1389, + ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=151, + ["secondary_lightning_damage_only_min_or_max"]=1393, + ["secondary_maximum_chaos_damage"]=1390, + ["secondary_maximum_cold_damage"]=1391, + ["secondary_maximum_fire_damage"]=1392, + ["secondary_maximum_lightning_damage"]=1393, + ["secondary_maximum_physical_damage"]=1394, + ["secondary_maximum_total_damage"]=1395, + ["secondary_minimum_chaos_damage"]=1390, + ["secondary_minimum_cold_damage"]=1391, + ["secondary_minimum_fire_damage"]=1392, + ["secondary_minimum_lightning_damage"]=1393, + ["secondary_minimum_physical_damage"]=1394, + ["secondary_minimum_total_damage"]=1395, + ["secondary_minion_duration"]=82, + ["seismic_cry_base_slam_skill_area_+%"]=1869, + ["seismic_cry_base_slam_skill_damage_+%_final"]=1867, + ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1870, + ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1868, + ["self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=176, + ["self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=175, + ["sentinel_minion_cooldown_speed_+%"]=1396, + ["share_charges_with_allies_in_your_presence"]=1397, + ["shatter_on_killing_blow"]=1398, + ["shattering_palm_target_damage_+%_final"]=1399, + ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1400, + ["shield_block_%"]=169, + ["shield_charge_damage_+%_maximum"]=86, + ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=84, + ["shield_charge_stun_duration_+%_maximum"]=85, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=1401, + ["shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1402, + ["shield_wall_damage_+%_final_when_slammed"]=1403, + ["shock_duration_+%"]=96, + ["shock_effect_+%"]=1404, + ["shock_effect_+%_with_critical_strikes"]=1405, + ["shock_maximum_magnitude_+"]=1406, + ["shock_nearby_enemy_area_of_effect_radius"]=1541, + ["shock_nearby_enemy_base_area_of_effect_radius"]=1541, + ["shock_nova_ring_chance_to_shock_+%"]=1407, + ["shock_nova_ring_damage_+%"]=347, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1408, + ["shocked_ground_base_magnitude_override"]=1409, + ["shockwave_slam_explosion_damage_+%_final"]=345, + ["shrapnel_shot_cone_placement_distance_+"]=1410, + ["shrapnel_trap_number_of_secondary_explosions"]=1411, + ["sigil_attached_target_fire_penetration_%"]=1412, + ["sigil_attached_target_lightning_penetration_%"]=1413, + ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1414, + ["sigil_recall_extend_base_skill_effect_duration"]=1415, + ["sigils_can_target_reaper_minions"]=1416, ["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"]=1378, - ["skill_additional_fissure_chance_%"]=1379, - ["skill_angle_+%_in_sand_stance"]=1380, - ["skill_area_angle_+%"]=1381, - ["skill_area_of_effect_+%_final_in_sand_stance"]=1382, - ["skill_base_oil_exposure_-_to_total_elemental_resistance"]=1384, - ["skill_base_oil_movement_speed_+%_final_to_apply"]=1383, - ["skill_buff_effect_+%"]=351, - ["skill_buff_grants_attack_and_cast_speed_+%"]=1386, - ["skill_buff_grants_chance_to_poison_%"]=341, - ["skill_buff_grants_critical_strike_chance_+%"]=113, - ["skill_can_fire_arrows"]=525, - ["skill_can_flicker"]=1387, - ["skill_can_only_use_bow"]=1636, - ["skill_can_only_use_non_melee_weapons"]=1639, - ["skill_cannot_gain_rage_during_use"]=1388, - ["skill_code_movement_speed_+%_final"]=1389, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1390, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1391, - ["skill_curses_cannot_apply_to_targets_above_level"]=1392, - ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1393, - ["skill_detonation_time"]=1394, - ["skill_display_number_of_remote_mines_allowed"]=194, - ["skill_display_number_of_totems_allowed"]=192, - ["skill_display_number_of_traps_allowed"]=193, - ["skill_echo_chance_%"]=1395, - ["skill_effect_and_damaging_ailment_duration_+%"]=1396, - ["skill_effect_duration_+%_per_removable_frenzy_charge"]=169, - ["skill_effect_duration_+%_while_dead"]=1398, - ["skill_effect_duration_per_100_int"]=1397, - ["skill_empower_limitation_specifier_for_stat_description"]=1812, - ["skill_empowers_next_x_melee_attacks"]=1812, - ["skill_grant_X_frenzy_charges_against_normal_and_magic_monsters"]=1399, - ["skill_grant_X_frenzy_charges_against_rare_monsters"]=1399, - ["skill_grant_X_frenzy_charges_against_unique_monsters"]=1399, - ["skill_grant_elusive_when_used"]=1400, - ["skill_has_trigger_from_unique_item"]=1401, - ["skill_hyena_cackle_size"]=1402, + ["skeletal_chains_no_minions_damage_+%_final"]=218, + ["skeletal_chains_no_minions_radius_+"]=219, + ["skeletal_chains_no_minions_targets_self"]=217, + ["skeletal_cleric_revived_skeletons_immune_for_X_ms"]=1417, + ["skill_additional_fissure_chance_%"]=1418, + ["skill_additional_projectiles_per_seal_broken"]=1419, + ["skill_angle_+%_in_sand_stance"]=1420, + ["skill_area_angle_+%"]=1421, + ["skill_area_of_effect_+%_final_in_sand_stance"]=1423, + ["skill_area_of_effect_+%_per_broken_seal"]=1422, + ["skill_base_oil_exposure_-_to_total_elemental_resistance"]=1425, + ["skill_base_oil_movement_speed_+%_final_to_apply"]=1424, + ["skill_buff_effect_+%"]=348, + ["skill_buff_grants_attack_and_cast_speed_+%"]=1427, + ["skill_buff_grants_chance_to_poison_%"]=338, + ["skill_buff_grants_critical_strike_chance_+%"]=111, + ["skill_can_fire_arrows"]=536, + ["skill_can_flicker"]=1428, + ["skill_can_only_use_bow"]=1676, + ["skill_can_only_use_non_melee_weapons"]=1679, + ["skill_cannot_gain_rage_during_use"]=1429, + ["skill_code_movement_speed_+%_final"]=1430, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1431, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1432, + ["skill_curses_cannot_apply_to_targets_above_level"]=1433, + ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1434, + ["skill_detonation_time"]=1435, + ["skill_display_number_of_remote_mines_allowed"]=193, + ["skill_display_number_of_totems_allowed"]=191, + ["skill_display_number_of_traps_allowed"]=192, + ["skill_echoes_per_seal_broken"]=1436, + ["skill_effect_and_damaging_ailment_duration_+%"]=1437, + ["skill_effect_duration_+%_per_removable_frenzy_charge"]=168, + ["skill_effect_duration_+%_while_dead"]=1439, + ["skill_effect_duration_per_100_int"]=1438, + ["skill_empower_limitation_specifier_for_stat_description"]=1864, + ["skill_empowers_next_x_melee_attacks"]=1864, + ["skill_eternal_march_life_per_ward_spent_%"]=1440, + ["skill_eternal_march_maximum_ward_cost"]=1440, + ["skill_gain_seal_every_x_hits_blocked"]=1441, + ["skill_grant_X_frenzy_charges_against_normal_and_magic_monsters"]=1442, + ["skill_grant_X_frenzy_charges_against_rare_monsters"]=1442, + ["skill_grant_X_frenzy_charges_against_unique_monsters"]=1442, + ["skill_grant_elusive_when_used"]=1443, + ["skill_has_trigger_from_unique_item"]=1444, + ["skill_hyena_cackle_size"]=1445, ["skill_is_steel_skill_reload"]=15, - ["skill_jagged_ground_base_duration_ms"]=1403, + ["skill_jagged_ground_base_duration_ms"]=1446, ["skill_main_hand_total_attack_fire_damage_permyriad_to_add_as_unscalable_damage_to_oil_ground_ignite"]=19, - ["skill_max_unleash_seals"]=1504, - ["skill_maximum_number_of_combo_stacks"]=1404, - ["skill_maximum_travel_distance_+%"]=1405, + ["skill_maximum_number_of_combo_stacks"]=1447, + ["skill_maximum_seals"]=1448, + ["skill_maximum_travel_distance_+%"]=1449, ["skill_minion_explosion_life_%"]=31, - ["skill_offering_targets_an_additional_skeleton"]=1406, - ["skill_oil_movement_speed_+%_final_to_apply"]=1407, - ["skill_travel_distance_+%"]=1408, - ["skill_triggered_by_snipe"]=1409, - ["skill_triggered_when_you_focus_chance_%"]=1410, - ["skill_used_by_mirage_chieftain_damage_+%_final"]=1411, - ["skill_used_by_mirage_warrior_damage_+%_final"]=1412, - ["skill_withered_duration_ms"]=1413, - ["skill_wolf_pack_size"]=1414, - ["slam_aftershock_chance_%"]=1415, - ["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"]=1416, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1417, - ["snapping_adder_released_projectile_damage_+%_final"]=364, - ["solar_orb_pulse_frequency_ms"]=1418, - ["soulfeast_chaos_damage_to_self"]=1419, - ["soulfeast_maximum_stages"]=1420, - ["soulfeast_number_of_secondary_projectiles"]=1421, - ["soulfeast_spell_damage_+%_final_per_stage"]=1422, - ["spear_wall_num_spears"]=1423, - ["spearfield_maim_slows_an_additional_%"]=1424, - ["spectral_helix_rotations_%"]=1425, - ["spectral_spiral_weapon_number_of_bounces"]=1426, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1427, - ["spectre_duration"]=84, - ["spell_area_damage_+%_in_blood_stance"]=1428, - ["spell_area_of_effect_+%_in_sand_stance"]=1429, - ["spell_cast_duration_ms"]=1430, - ["spell_cast_time_cannot_be_modified"]=1431, - ["spell_critical_hit_damage_bonus"]=1432, - ["spell_critical_strike_chance"]=1433, - ["spell_damage_+%"]=180, + ["skill_offering_targets_an_additional_skeleton"]=1450, + ["skill_oil_movement_speed_+%_final_to_apply"]=1451, + ["skill_rapid_fire_repeats_per_broken_seal"]=1452, + ["skill_seal_gain_interval_ms"]=1453, + ["skill_travel_distance_+%"]=1454, + ["skill_triggered_by_owl_feathers"]=1455, + ["skill_triggered_by_snipe"]=1456, + ["skill_triggered_when_you_focus_chance_%"]=1457, + ["skill_used_by_mirage_chieftain_damage_+%_final"]=1458, + ["skill_used_by_mirage_warrior_damage_+%_final"]=1459, + ["skill_withered_duration_ms"]=1460, + ["skill_wolf_pack_size"]=1461, + ["slam_aftershock_chance_%"]=1462, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=54, + ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=49, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=51, + ["slither_wither_stacks"]=1463, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1464, + ["snapping_adder_released_projectile_damage_+%_final"]=361, + ["solar_orb_pulse_frequency_ms"]=1465, + ["soulfeast_chaos_damage_to_self"]=1466, + ["soulfeast_maximum_stages"]=1467, + ["soulfeast_number_of_secondary_projectiles"]=1468, + ["soulfeast_spell_damage_+%_final_per_stage"]=1469, + ["spear_wall_num_spears"]=1470, + ["spearfield_maim_slows_an_additional_%"]=1471, + ["spectral_helix_rotations_%"]=1472, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1474, + ["spectre_duration"]=83, + ["spell_area_damage_+%_in_blood_stance"]=1476, + ["spell_area_of_effect_+%_in_sand_stance"]=1477, + ["spell_cast_duration_ms"]=1478, + ["spell_cast_time_cannot_be_modified"]=1479, + ["spell_critical_hit_damage_bonus"]=1480, + ["spell_critical_strike_chance"]=1481, + ["spell_damage_+%"]=179, ["spell_damage_modifiers_apply_to_skill_dot"]=32, - ["spell_echo_plus_chance_double_damage_%_final"]=1434, - ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1435, - ["spell_has_trigger_from_crafted_item_mod"]=1437, - ["spell_maximum_added_cold_damage"]=298, - ["spell_maximum_added_lightning_damage"]=299, + ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1482, + ["spell_has_trigger_from_crafted_item_mod"]=1483, + ["spell_lightning_damage_only_min_or_max"]=1491, + ["spell_maximum_added_cold_damage"]=295, + ["spell_maximum_added_lightning_damage"]=296, ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=25, - ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=1439, - ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=533, - ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=1438, + ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=1485, + ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=547, + ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=1484, ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=22, - ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=1440, + ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=1486, ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=21, - ["spell_maximum_base_physical_damage_per_shield_quality"]=1441, - ["spell_maximum_chaos_damage"]=1442, - ["spell_maximum_cold_damage"]=1443, - ["spell_maximum_fire_damage"]=1444, - ["spell_maximum_lightning_damage"]=1445, - ["spell_maximum_physical_damage"]=1446, - ["spell_maximum_total_damage"]=1447, - ["spell_minimum_added_cold_damage"]=298, - ["spell_minimum_added_lightning_damage"]=299, + ["spell_maximum_base_physical_damage_per_shield_quality"]=1487, + ["spell_maximum_chaos_damage"]=1488, + ["spell_maximum_cold_damage"]=1489, + ["spell_maximum_fire_damage"]=1490, + ["spell_maximum_lightning_damage"]=1491, + ["spell_maximum_physical_damage"]=1492, + ["spell_maximum_total_damage"]=1493, + ["spell_minimum_added_cold_damage"]=295, + ["spell_minimum_added_lightning_damage"]=296, ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=25, - ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=1439, - ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=533, - ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=1438, + ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=1485, + ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=547, + ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=1484, ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=22, - ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=1440, + ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=1486, ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=21, - ["spell_minimum_base_physical_damage_per_shield_quality"]=1441, - ["spell_minimum_chaos_damage"]=1442, - ["spell_minimum_cold_damage"]=1443, - ["spell_minimum_fire_damage"]=1444, - ["spell_minimum_lightning_damage"]=1445, - ["spell_minimum_physical_damage"]=1446, - ["spell_minimum_total_damage"]=1447, - ["spell_repeat_count"]=44, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1448, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1449, - ["spellflux_base_delay_between_fluxes_ms"]=1450, - ["spellflux_frequency_+%"]=1436, - ["spellflux_frequency_+%_per_socketed_valid_spell"]=1451, - ["spellflux_spell_damage_+%_final_if_matching_flux_cast"]=1452, - ["spells_chance_to_hinder_on_hit_%"]=1453, - ["spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time"]=1454, - ["spellslinger_mana_reservation"]=1455, - ["spellslinger_trigger_on_wand_attack_%"]=265, - ["spider_aspect_max_web_count"]=1456, - ["spike_slam_additional_spike_%_chance"]=1457, - ["spike_slam_explosion_damage_+%_final"]=1458, - ["spike_slam_fissure_damage_+%_final"]=1459, - ["spike_slam_fissure_length_+%"]=1460, - ["spike_slam_num_spikes"]=1461, - ["spike_slam_spike_damage_+%_final"]=1462, - ["spirit_offering_critical_strike_chance_+%"]=1463, - ["spirit_offering_critical_strike_multiplier_+"]=1464, - ["spirit_reservation"]=1465, - ["spiritual_cry_double_movement_velocity_+%"]=1466, - ["spiritual_cry_doubles_summoned_per_5_MP"]=1807, - ["splitting_steel_area_+%_final_after_splitting"]=1467, - ["static_strike_beam_damage_+%_final"]=1468, - ["static_strike_beam_damage_+%_final_while_moving"]=1469, - ["static_strike_explosion_damage_+%_final"]=302, - ["static_strike_number_of_beam_targets"]=1470, - ["stealth_+%"]=1471, - ["steel_ammo_consumed_per_use"]=1472, - ["steel_skill_%_chance_to_not_consume_ammo"]=1473, - ["steel_steal_area_of_effect_+%"]=1474, - ["steel_steal_reflect_damage_+%"]=1475, - ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=317, - ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=1476, - ["storm_blade_has_local_attack_speed_+%"]=1477, - ["storm_blade_has_local_lightning_penetration_%"]=1478, - ["storm_blade_quality_chance_to_shock_%"]=1479, - ["storm_blade_quality_local_critical_strike_chance_+%"]=1480, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1481, - ["storm_burst_explosion_area_of_effect_+%"]=1482, - ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1483, - ["storm_burst_zap_area_of_effect_+%"]=1484, - ["storm_call_chance_to_strike_on_cast_%"]=1485, - ["storm_rain_pulse_count"]=1486, - ["stormblast_bolts_maximum_active_bolt_count"]=1487, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1488, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1489, - ["summon_cold_resistance_+"]=238, - ["summon_fire_resistance_+"]=237, - ["summon_lightning_resistance_+"]=239, - ["summon_mirage_archer_on_hit"]=1490, - ["summon_mirage_warrior_on_crit"]=1491, - ["summon_totem_cast_speed_+%"]=327, - ["summoned_spider_grants_attack_speed_+%"]=1492, - ["sunder_shockwave_area_of_effect_+%"]=1493, - ["sunder_wave_area_of_effect_+%"]=1494, - ["sunder_wave_delay_+%"]=1495, - ["sunder_wave_min_steps"]=1496, - ["sunder_wave_radius_+_per_step"]=53, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1497, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1498, - ["support_additional_trap_%_chance_for_1_additional_trap"]=1502, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1499, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1500, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1501, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1503, - ["support_ancestral_slam_big_hit_area_+%"]=379, - ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=378, - ["support_anticipation_rapid_fire_count"]=11, - ["support_apply_daze_on_warcry"]=1505, - ["support_arcane_surge_duration_ms"]=1506, - ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1506, - ["support_armour_explosion"]=1507, - ["support_attack_totem_attack_speed_+%_final"]=282, - ["support_aura_duration_buff_duration"]=1508, - ["support_better_ailments_damaging_ailment_effect_+%_final"]=1509, + ["spell_minimum_base_physical_damage_per_shield_quality"]=1487, + ["spell_minimum_chaos_damage"]=1488, + ["spell_minimum_cold_damage"]=1489, + ["spell_minimum_fire_damage"]=1490, + ["spell_minimum_lightning_damage"]=1491, + ["spell_minimum_physical_damage"]=1492, + ["spell_minimum_total_damage"]=1493, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1494, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1495, + ["spellflux_frequency_+%_final"]=1496, + ["spells_chance_to_hinder_on_hit_%"]=1497, + ["spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time"]=1498, + ["spellslinger_mana_reservation"]=1499, + ["spellslinger_trigger_on_wand_attack_%"]=262, + ["spider_aspect_max_web_count"]=1500, + ["spike_slam_additional_spike_%_chance"]=1501, + ["spike_slam_explosion_damage_+%_final"]=1502, + ["spike_slam_fissure_damage_+%_final"]=1503, + ["spike_slam_fissure_length_+%"]=1504, + ["spike_slam_num_spikes"]=1505, + ["spike_slam_spike_damage_+%_final"]=1506, + ["spirit_offering_critical_strike_chance_+%"]=1507, + ["spirit_offering_critical_strike_multiplier_+"]=1508, + ["spirit_reservation"]=1509, + ["spiritual_cry_double_movement_velocity_+%"]=1510, + ["spiritual_cry_doubles_summoned_per_5_MP"]=1859, + ["splitting_steel_area_+%_final_after_splitting"]=1511, + ["static_strike_beam_damage_+%_final"]=1512, + ["static_strike_beam_damage_+%_final_while_moving"]=1513, + ["static_strike_explosion_damage_+%_final"]=299, + ["static_strike_number_of_beam_targets"]=1514, + ["stealth_+%"]=1515, + ["steel_ammo_consumed_per_use"]=1516, + ["steel_skill_%_chance_to_not_consume_ammo"]=1517, + ["steel_steal_area_of_effect_+%"]=1518, + ["steel_steal_reflect_damage_+%"]=1519, + ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=314, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=1520, + ["storm_blade_has_local_attack_speed_+%"]=1521, + ["storm_blade_has_local_lightning_penetration_%"]=1522, + ["storm_blade_quality_chance_to_shock_%"]=1523, + ["storm_blade_quality_local_critical_strike_chance_+%"]=1524, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1525, + ["storm_burst_explosion_area_of_effect_+%"]=1526, + ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1527, + ["storm_burst_zap_area_of_effect_+%"]=1528, + ["storm_call_chance_to_strike_on_cast_%"]=1529, + ["storm_rain_pulse_count"]=1530, + ["stormblast_bolts_maximum_active_bolt_count"]=1531, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1532, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1533, + ["summon_cold_resistance_+"]=235, + ["summon_fire_resistance_+"]=234, + ["summon_lightning_resistance_+"]=236, + ["summon_mirage_archer_on_hit"]=1534, + ["summon_mirage_warrior_on_crit"]=1535, + ["summon_totem_cast_speed_+%"]=324, + ["summoned_spider_grants_attack_speed_+%"]=1536, + ["sunder_shockwave_area_of_effect_+%"]=1537, + ["sunder_wave_area_of_effect_+%"]=1538, + ["sunder_wave_delay_+%"]=1539, + ["sunder_wave_min_steps"]=1540, + ["sunder_wave_radius_+_per_step"]=52, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1541, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1542, + ["support_additional_trap_%_chance_for_1_additional_trap"]=1546, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1543, + ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1544, + ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1545, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1547, + ["support_ancestral_slam_big_hit_area_+%"]=376, + ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=375, + ["support_apply_daze_on_warcry"]=1548, + ["support_arcane_surge_duration_ms"]=1549, + ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1549, + ["support_armour_explosion"]=1550, + ["support_attack_totem_attack_speed_+%_final"]=279, + ["support_aura_duration_buff_duration"]=1551, + ["support_better_ailments_damaging_ailment_effect_+%_final"]=1552, ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=2, - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=325, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1510, - ["support_bursting_plague_max_value_%_of_max_life"]=1511, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1511, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=1512, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1513, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1514, - ["support_clarity_mana_regeneration_rate_+%"]=1515, - ["support_close_combat_attack_damage_+%_final_from_distance"]=1516, - ["support_combo_finisher_damage_+%_final"]=1517, - ["support_combo_finisher_max_combo_required"]=1518, - ["support_combo_finisher_required_number_of_combo_stacks"]=1518, - ["support_concentrated_effect_skill_area_of_effect_+%_final"]=71, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1519, - ["support_controlled_destruction_critical_strike_chance_+%_final"]=114, - ["support_cooldown_reduction_cooldown_recovery_+%"]=1520, - ["support_corrupting_cry_corrupted_blood_damage_per_minute"]=1521, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=1522, - ["support_cruelty_duration_ms"]=367, - ["support_crushing_stuns_crush_on_stun_ms"]=1523, - ["support_culling_strike_vs_rare_or_unique_enemy"]=1524, - ["support_damage_+%_final_per_combo_stack"]=1525, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1526, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=1527, - ["support_daze_break_duration_ms"]=1528, - ["support_dazed_cry_duration_ms"]=1529, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1530, - ["support_debilitate_hit_damage_max_poison_stacks"]=1530, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1531, - ["support_empowered_culling_strike"]=1532, - ["support_empowered_damage_+%_final"]=1533, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1633, - ["support_executioner_buff_duration_ms"]=1534, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1535, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1536, - ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=1537, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1538, - ["support_far_combat_attack_damage_+%_final_from_distance"]=1539, - ["support_focused_ballista_totem_attack_speed_+%_final"]=1540, - ["support_fork_forked_projectile_damage_+%_final"]=1541, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1542, - ["support_ghost_duration"]=1543, - ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1544, - ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1545, - ["support_grenade_damage_+%_final"]=1546, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=1547, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1547, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=1548, - ["support_hinder_dots_also_apply_hinder"]=1549, - ["support_holy_descent_consecrated_ground_duration_ms"]=1550, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=334, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1551, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1552, - ["support_ice_bite_virtual_buff_duration"]=1552, - ["support_ignite_duration_ignite_effect_+%_final"]=1553, - ["support_ignite_prolif_ignite_effect_+%_final"]=1554, - ["support_ignite_proliferation_radius"]=1555, - ["support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius"]=1556, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1557, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1557, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1558, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1558, - ["support_innervate_buff_duration_ms"]=1559, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1559, - ["support_jagged_ground_area_of_effect_+%_final"]=1560, - ["support_knockback_wave_on_stunned"]=1561, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1562, - ["support_lifetap_buff_duration"]=1563, - ["support_lifetap_spent_life_threshold"]=1564, - ["support_lockdown_distance_based_pin_damage_+%_final"]=1565, - ["support_maim_chance_physical_damage_+%_final"]=1566, - ["support_maimed_enemies_physical_damage_taken_+%"]=1567, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1568, + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=322, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1553, + ["support_bursting_plague_max_value_%_of_max_life"]=1554, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1554, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=1555, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1556, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1557, + ["support_clarity_mana_regeneration_rate_+%"]=1558, + ["support_close_combat_attack_damage_+%_final_from_distance"]=1559, + ["support_combo_finisher_damage_+%_final"]=1560, + ["support_combo_finisher_max_combo_required"]=1561, + ["support_combo_finisher_required_number_of_combo_stacks"]=1561, + ["support_concentrated_effect_skill_area_of_effect_+%_final"]=70, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1562, + ["support_controlled_destruction_critical_strike_chance_+%_final"]=112, + ["support_cooldown_reduction_cooldown_recovery_+%"]=1563, + ["support_cruelty_duration_ms"]=364, + ["support_crushing_stuns_crush_on_stun_ms"]=1564, + ["support_culling_strike_vs_rare_or_unique_enemy"]=1565, + ["support_culmination_damage_+%_final_per_combo_stack"]=1566, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1567, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=1568, + ["support_daze_break_duration_ms"]=1569, + ["support_dazed_cry_duration_ms"]=1570, + ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1571, + ["support_debilitate_hit_damage_max_poison_stacks"]=1571, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1572, + ["support_empowered_culling_strike"]=1573, + ["support_empowered_damage_+%_final"]=1574, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1673, + ["support_executioner_buff_duration_ms"]=1575, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1576, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1577, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=1578, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1579, + ["support_far_combat_attack_damage_+%_final_from_distance"]=1580, + ["support_focused_ballista_totem_attack_speed_+%_final"]=1581, + ["support_fork_forked_projectile_damage_+%_final"]=1582, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1583, + ["support_ghost_duration"]=1584, + ["support_grenade_damage_+%_final"]=1585, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=1586, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1586, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=1587, + ["support_hinder_dots_also_apply_hinder"]=1588, + ["support_holy_descent_consecrated_ground_duration_ms"]=1589, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=331, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1590, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1591, + ["support_ice_bite_virtual_buff_duration"]=1591, + ["support_ignite_duration_ignite_effect_+%_final"]=1592, + ["support_ignite_prolif_ignite_effect_+%_final"]=1593, + ["support_ignite_proliferation_radius"]=1594, + ["support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius"]=1595, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1596, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1596, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1597, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1597, + ["support_innervate_buff_duration_ms"]=1598, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1598, + ["support_jagged_ground_area_of_effect_+%_final"]=1599, + ["support_knights_ferocity_crush_on_hit_ms"]=385, + ["support_knockback_wave_on_stunned"]=1600, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1601, + ["support_lifetap_buff_duration"]=1602, + ["support_lifetap_spent_life_threshold"]=1603, + ["support_lockdown_distance_based_pin_damage_+%_final"]=1604, + ["support_maim_chance_physical_damage_+%_final"]=1605, + ["support_maimed_enemies_physical_damage_taken_+%"]=1606, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1607, ["support_mana_fountain_mana_regeneration_rate_+%"]=4, - ["support_minefield_mine_throwing_speed_+%_final"]=1569, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1571, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1572, - ["support_minion_maximum_life_+%_final"]=131, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1573, - ["support_minion_pact_damage_+%_final"]=1574, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1574, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1575, - ["support_mirage_archer_attack_speed_+%_final"]=1576, - ["support_mirage_archer_duration"]=1577, - ["support_momentum_distance_travelled_to_gain_momentum"]=1578, - ["support_momnetum_damage_+%_final_with_momentum"]=1578, - ["support_multicast_cast_speed_+%_final"]=58, - ["support_multiple_attacks_melee_attack_speed_+%_final"]=236, - ["support_multiple_projectiles_critical_strike_chance_+%_final"]=115, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1579, - ["support_overkill_icy_vortex_duration_ms"]=1580, - ["support_parallel_projectile_number_of_points_per_side"]=1581, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=1582, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1583, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1584, - ["support_precision_accuracy_rating_+%"]=1585, - ["support_projectile_attack_speed_+%_final"]=280, - ["support_pulverise_area_of_effect_+%_final"]=1586, + ["support_minefield_mine_throwing_speed_+%_final"]=1608, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1610, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1611, + ["support_minion_maximum_life_+%_final"]=130, + ["support_minion_pact_damage_+%_final"]=1612, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1612, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1613, + ["support_mirage_archer_attack_speed_+%_final"]=1614, + ["support_mirage_archer_duration"]=1615, + ["support_momentum_distance_travelled_to_gain_momentum"]=1616, + ["support_momnetum_damage_+%_final_with_momentum"]=1616, + ["support_mothers_ward_duration_ms"]=1618, + ["support_multicast_cast_speed_+%_final"]=57, + ["support_multiple_attacks_melee_attack_speed_+%_final"]=233, + ["support_multiple_projectiles_critical_strike_chance_+%_final"]=113, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1619, + ["support_overkill_icy_vortex_duration_ms"]=1620, + ["support_parallel_projectile_number_of_points_per_side"]=1621, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1622, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1623, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1624, + ["support_precision_accuracy_rating_+%"]=1625, + ["support_projectile_attack_speed_+%_final"]=277, + ["support_pulverise_area_of_effect_+%_final"]=1626, ["support_rage_fountain_rage_regeneration_per_minute"]=6, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1587, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1588, - ["support_rageforged_enraged_damage_+%_final"]=1588, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1589, - ["support_regenerate_mana_per_minute_on_shock"]=1590, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1853, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1591, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1592, - ["support_ruthless_big_hit_max_count"]=368, - ["support_ruthless_big_hit_stun_damage_+%_final"]=368, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1593, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1594, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1594, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1593, - ["support_slam_chance_for_one_additional_aftershock_%"]=1595, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1596, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1597, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1599, - ["support_slashing_buff_duration_ms"]=1598, - ["support_slashing_damage_+%_final_from_distance"]=1600, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1601, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1601, - ["support_spell_cascade_area_delay_+%"]=1602, - ["support_spell_cascade_area_of_effect_+%_final"]=1603, - ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1604, - ["support_spell_cascade_number_of_cascades_per_side"]=1605, - ["support_spell_cascade_sideways"]=1605, - ["support_spell_echo_area_of_effect_+%"]=1606, - ["support_spell_echo_area_of_effect_+%_final"]=1607, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1608, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1609, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1610, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1611, - ["support_spell_echo_final_repeat_damage_+%_final"]=1612, - ["support_spell_echo_number_of_echo_cascades"]=1613, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1848, - ["support_spell_totem_cast_speed_+%_final"]=281, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1615, - ["support_stomping_ground"]=1616, - ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1617, - ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1624, - ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1618, - ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1625, - ["support_storm_barrier_damage_buff_duration_ms"]=1619, - ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1620, - ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1626, - ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1621, - ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1627, - ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1622, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1623, - ["support_stronger_ignites_ignite_effect_+%_final"]=1628, - ["support_trigger_mana_flare_on_crit"]=1629, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1630, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1631, - ["support_vitality_life_regeneration_rate_per_minute_%"]=1632, - ["support_warcry_consumes_up_to_X_rage"]=1633, - ["support_weapon_elemental_damage_+%_final"]=1634, - ["supported_skill_can_only_use_axe_and_sword"]=1635, - ["supported_skill_can_only_use_dagger_and_claw"]=1637, - ["supported_skill_can_only_use_mace_and_staff"]=1638, - ["tectonic_slam_side_crack_additional_chance_%"]=1641, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1642, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1640, - ["temper_weapon_empowers_per_strike"]=1643, - ["tempest_bell_damage_+%_final_per_time_hit"]=1644, - ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1645, - ["tethered_movement_speed_+%_final"]=1646, - ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1647, - ["tethering_arrow_display_rope_limit"]=1648, - ["thorns_damage_modifiers_apply_to_spell_damage"]=1649, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1627, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1628, + ["support_rageforged_enraged_damage_+%_final"]=1628, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1629, + ["support_regenerate_mana_per_minute_on_shock"]=1630, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1904, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1631, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1632, + ["support_ruthless_big_hit_max_count"]=365, + ["support_ruthless_big_hit_stun_damage_+%_final"]=365, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1633, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1634, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1634, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1633, + ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=933, + ["support_slam_chance_for_one_additional_aftershock_%"]=1635, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1636, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1637, + ["support_slam_spend_X_ward_to_become_runic_boosted"]=1638, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1640, + ["support_slashing_buff_duration_ms"]=1639, + ["support_slashing_damage_+%_final_from_distance"]=1641, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1642, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1642, + ["support_spell_cascade_area_delay_+%"]=1643, + ["support_spell_cascade_area_of_effect_+%_final"]=1644, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1645, + ["support_spell_cascade_number_of_cascades_per_side"]=1646, + ["support_spell_cascade_sideways"]=1646, + ["support_spell_echo_area_of_effect_+%_final"]=1647, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1648, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1649, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1650, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1651, + ["support_spell_echo_number_of_echo_cascades"]=1652, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1653, + ["support_spell_totem_cast_speed_+%_final"]=278, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1654, + ["support_stomping_ground"]=1655, + ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1656, + ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1663, + ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1657, + ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1664, + ["support_storm_barrier_damage_buff_duration_ms"]=1658, + ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1659, + ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1665, + ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1660, + ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1666, + ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1661, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1662, + ["support_stronger_ignites_ignite_effect_+%_final"]=1667, + ["support_trigger_mana_flare_on_crit"]=1668, + ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1669, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1670, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1671, + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1672, + ["support_warcry_consumes_up_to_X_rage"]=1673, + ["support_weapon_elemental_damage_+%_final"]=1674, + ["supported_skill_can_only_use_axe_and_sword"]=1675, + ["supported_skill_can_only_use_dagger_and_claw"]=1677, + ["supported_skill_can_only_use_mace_and_staff"]=1678, + ["tectonic_slam_side_crack_additional_chance_%"]=1681, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1682, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1680, + ["temper_weapon_empowers_per_strike"]=1683, + ["tempest_bell_damage_+%_final_per_time_hit"]=1684, + ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1685, + ["tethered_movement_speed_+%_final"]=1686, + ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1687, + ["tethering_arrow_display_rope_limit"]=1688, + ["thorns_critical_hit_damage_bonus"]=1689, + ["thorns_critical_strike_chance"]=1690, + ["thorns_damage_modifiers_apply_to_spell_damage"]=1691, + ["thorns_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1692, + ["thorns_lightning_damage_only_min_or_max"]=1696, + ["thorns_maximum_chaos_damage"]=1693, + ["thorns_maximum_cold_damage"]=1694, + ["thorns_maximum_fire_damage"]=1695, + ["thorns_maximum_lightning_damage"]=1696, + ["thorns_maximum_physical_damage"]=1697, + ["thorns_maximum_total_damage"]=1698, + ["thorns_minimum_chaos_damage"]=1693, + ["thorns_minimum_cold_damage"]=1694, + ["thorns_minimum_fire_damage"]=1695, + ["thorns_minimum_lightning_damage"]=1696, + ["thorns_minimum_physical_damage"]=1697, + ["thorns_minimum_total_damage"]=1698, ["throw_traps_in_circle_radius"]=40, - ["thunderous_leap_%_chance_for_shocked_ground_when_detonating"]=1650, - ["tornado_base_damage_interval_ms"]=1651, - ["tornado_damage_absorbed_%"]=380, - ["tornado_damage_interval_ms"]=1652, - ["tornado_hinder"]=1653, - ["tornado_maximum_number_of_hits"]=79, - ["tornado_movement_speed_+%"]=1654, - ["total_number_of_projectiles_to_fire"]=1655, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=386, - ["totem_chaos_resistance_%"]=1656, - ["totem_duration"]=1657, - ["totem_elemental_resistance_%"]=381, - ["totem_life_+%"]=201, - ["totem_range"]=191, - ["totems_cannot_evade"]=196, - ["totems_explode_on_death_for_%_life_as_physical"]=1658, - ["totems_regenerate_%_life_per_minute"]=1659, - ["toxic_pustule_burst_1%_more_damage_per_x_stored_poison"]=1278, - ["toxic_pustule_burst_base_radius_+1_per_x_stored_poison"]=1277, - ["toxic_pustule_max_additional_burst_base_radius_+"]=1277, - ["toxic_pustule_max_burst_damage_+%_final_from_stored_poison"]=1278, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1660, - ["trap_can_be_triggered_by_warcries"]=1661, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1662, - ["trap_duration"]=197, - ["trap_spread_+%"]=1663, - ["trap_throwing_speed_+%"]=198, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1664, + ["thunderous_leap_%_chance_for_shocked_ground_when_detonating"]=1699, + ["time_of_need_global_life_regeneration_rate_granted_+%"]=1700, + ["tornado_base_damage_interval_ms"]=1701, + ["tornado_damage_absorbed_%"]=377, + ["tornado_damage_interval_ms"]=1702, + ["tornado_hinder"]=1703, + ["tornado_maximum_number_of_hits"]=78, + ["tornado_movement_speed_+%"]=1704, + ["total_number_of_projectiles_to_fire_from_stats"]=1705, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=387, + ["totem_chaos_resistance_%"]=380, + ["totem_duration"]=1706, + ["totem_elemental_resistance_%"]=379, + ["totem_life_+%"]=200, + ["totem_range"]=190, + ["totems_cannot_evade"]=195, + ["totems_explode_on_death_for_%_life_as_physical"]=1707, + ["totems_regenerate_%_life_per_minute"]=1708, + ["toxic_pustule_burst_1%_more_damage_per_x_stored_poison"]=1313, + ["toxic_pustule_burst_base_radius_+1_per_x_stored_poison"]=1312, + ["toxic_pustule_max_additional_burst_base_radius_+"]=1312, + ["toxic_pustule_max_burst_damage_+%_final_from_stored_poison"]=1313, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1709, + ["trap_can_be_triggered_by_warcries"]=1710, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1711, + ["trap_duration"]=196, + ["trap_spread_+%"]=1712, + ["trap_throwing_speed_+%"]=197, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1713, ["trap_trigger_radius_+%"]=41, - ["trap_trigger_radius_+%_per_power_charge"]=1665, - ["trauma_base_duration_ms"]=1667, - ["trauma_duration_ms"]=1667, - ["trauma_strike_damage_+%_final_per_trauma"]=1668, - ["trauma_strike_self_damage_per_trauma"]=1667, - ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1669, - ["trigger_after_spending_200_mana_%_chance"]=1670, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1671, - ["trigger_on_attack_hit_against_rare_or_unique"]=1672, - ["trigger_on_block_%_chance"]=1673, - ["trigger_on_bow_attack_%"]=1674, - ["trigger_on_corpse_consume_%_chance"]=1675, - ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1676, - ["trigger_on_hit_vs_frozen_enemy_%"]=1677, - ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=259, - ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1678, - ["trigger_on_skill_use_from_chest_%"]=258, - ["trigger_on_slam_%_chance"]=1679, - ["trigger_on_trigger_link_target_hit"]=1680, - ["trigger_prismatic_burst_on_hit_%_chance"]=1681, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1682, - ["trigger_vicious_hex_explosion_when_curse_ends"]=1683, - ["triggered_by_brand_support"]=1684, - ["triggered_by_divine_cry"]=1685, - ["triggered_by_generic_ongoing_trigger"]=1686, - ["triggered_by_item_buff"]=1687, - ["triggered_by_spiritual_cry"]=1688, - ["unearth_corpse_level"]=286, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1689, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1690, - ["use_time_+_ms_if_shapeshift_required"]=1691, - ["vaal_animate_weapon_minimum_level_requirement"]=252, - ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1692, - ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1693, - ["vaal_arctic_armour_number_of_hits_absorbed"]=1694, - ["vaal_blade_vortex_has_10_spinning_blades"]=1695, - ["vaal_charged_attack_damage_taken_+%_final"]=1696, - ["vaal_charged_attack_radius_+_per_stage"]=1697, - ["vaal_cleave_executioner_area_of_effect_+%"]=1698, - ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1698, - ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=640, - ["vaal_earthquake_maximum_aftershocks"]=1699, - ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=387, - ["vaal_flameblast_radius_+_per_stage"]=1700, - ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1701, - ["vaal_lightning_strike_beam_damage_+%_final"]=289, - ["vaal_reap_additional_maximum_blood_charges"]=1702, - ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1703, - ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=778, + ["trap_trigger_radius_+%_per_power_charge"]=1714, + ["trauma_base_duration_ms"]=1716, + ["trauma_duration_ms"]=1716, + ["trauma_strike_damage_+%_final_per_trauma"]=1717, + ["trauma_strike_self_damage_per_trauma"]=1716, + ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1718, + ["trigger_after_spending_200_mana_%_chance"]=1719, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1720, + ["trigger_on_attack_hit_against_rare_or_unique"]=1721, + ["trigger_on_block_%_chance"]=1722, + ["trigger_on_bow_attack_%"]=1723, + ["trigger_on_corpse_consume_%_chance"]=1724, + ["trigger_on_heavy_stun_%"]=1725, + ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1726, + ["trigger_on_hit_vs_frozen_enemy_%"]=1727, + ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=256, + ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1728, + ["trigger_on_skill_use_from_chest_%"]=255, + ["trigger_on_slam_%_chance"]=1729, + ["trigger_on_trigger_link_target_hit"]=1730, + ["trigger_prismatic_burst_on_hit_%_chance"]=1731, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1732, + ["trigger_vicious_hex_explosion_when_curse_ends"]=1733, + ["triggered_by_brand_support"]=1734, + ["triggered_by_divine_cry"]=1735, + ["triggered_by_generic_ongoing_trigger"]=1736, + ["triggered_by_item_buff"]=1737, + ["triggered_by_spiritual_cry"]=1738, + ["trinity_%_physical_damage_to_convert_to_random_element_granted"]=1739, + ["unearth_corpse_level"]=283, + ["use_time_+_ms_if_shapeshift_required"]=1740, + ["vaal_animate_weapon_minimum_level_requirement"]=249, + ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1741, + ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1742, + ["vaal_arctic_armour_number_of_hits_absorbed"]=1743, + ["vaal_blade_vortex_has_10_spinning_blades"]=1744, + ["vaal_charged_attack_damage_taken_+%_final"]=1745, + ["vaal_charged_attack_radius_+_per_stage"]=1746, + ["vaal_cleave_executioner_area_of_effect_+%"]=1747, + ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1747, + ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=660, + ["vaal_earthquake_maximum_aftershocks"]=1748, + ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=388, + ["vaal_flameblast_radius_+_per_stage"]=1749, + ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1750, + ["vaal_lightning_strike_beam_damage_+%_final"]=286, + ["vaal_reap_additional_maximum_blood_charges"]=1751, + ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1752, + ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=799, ["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"]=1704, - ["vaal_storm_call_delay_ms"]=1705, - ["vaal_upgrade_minion_damage_+%_final"]=1706, - ["vaal_upgrade_minion_damage_taken_+%_final"]=1707, - ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1154, - ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1154, - ["vaal_volcanic_fissure_crack_repeat_count"]=1708, - ["vampiric_icon_bleeding_effect_+%_final"]=1709, - ["vanishing_ambush_critical_strike_multiplier_+"]=1822, - ["virtual_aegis_unique_shield_max_value"]=1710, - ["virtual_always_pierce"]=88, - ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1711, - ["virtual_berserk_hundred_times_rage_loss_per_second"]=374, - ["virtual_bladefall_number_of_volleys"]=1712, - ["virtual_blood_spears_total_number_of_spears"]=1713, - ["virtual_cast_when_damage_taken_threshold"]=273, - ["virtual_chance_to_daze_%"]=1714, - ["virtual_chill_effect_+%_final"]=1715, - ["virtual_chill_minimum_slow_%"]=1716, - ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1717, - ["virtual_curse_delay_duration_ms"]=1718, - ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=68, - ["virtual_damage_absorbed_per_jade_consumed"]=1719, - ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1720, - ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1721, - ["virtual_deal_chaos_damage_per_minute_for_8_seconds_on_curse"]=1722, - ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1723, - ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1724, - ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1725, - ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1726, - ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1727, - ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1728, - ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1729, - ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1730, - ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1731, - ["virtual_energy_cost_for_generic_ongoing_trigger"]=1686, - ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1732, - ["virtual_firestorm_drop_burning_ground_duration_ms"]=319, - ["virtual_firestorm_drop_chilled_ground_duration_ms"]=320, - ["virtual_flameblast_maximum_stages"]=1733, - ["virtual_freezing_enemy_chills_enemies_in_radius"]=972, - ["virtual_generic_ongoing_trigger_maximum_energy"]=1734, - ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1735, - ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1735, - ["virtual_herald_of_thunder_bolt_base_frequency"]=1736, - ["virtual_hit_damage_stun_multiplier_+%_final"]=1737, - ["virtual_intensity_loss_ms_while_moving_interval"]=189, - ["virtual_intensity_lost_on_teleport"]=189, - ["virtual_knockback_distance_+%"]=1738, - ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["virtual_main_hand_apply_X_armour_break_on_hit"]=1739, - ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1740, - ["virtual_main_hand_melee_splash_chance_%"]=1741, - ["virtual_main_hand_slam_aftershock_chance_%"]=1742, - ["virtual_maximum_intensity"]=188, - ["virtual_maximum_number_of_arctic_armour_stationary_stacks"]=1743, - ["virtual_melee_splash"]=233, - ["virtual_mine_detonation_time_ms"]=1744, - ["virtual_minion_elemental_resistance_%"]=240, - ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1745, - ["virtual_never_chill"]=1746, - ["virtual_never_freeze"]=1747, - ["virtual_never_ignite"]=1748, - ["virtual_never_shock"]=1749, - ["virtual_number_of_additional_curses_allowed"]=1750, - ["virtual_number_of_banners_allowed"]=1751, - ["virtual_number_of_chains"]=1752, - ["virtual_number_of_forks_for_projectiles_final"]=222, - ["virtual_number_of_marks_allowed_per_type"]=1753, - ["virtual_number_of_spirit_strikes"]=1159, - ["virtual_off_hand_apply_X_armour_break_on_hit"]=1754, - ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1755, - ["virtual_off_hand_melee_splash_chance_%"]=1756, - ["virtual_off_hand_slam_aftershock_chance_%"]=1757, - ["virtual_onslaught_on_hit_%_chance"]=1758, - ["virtual_physical_damage_can_pin"]=1759, - ["virtual_poison_cloud_limit"]=1760, - ["virtual_projectile_number_to_split"]=1761, - ["virtual_projectiles_cannot_pierce"]=88, - ["virtual_projectiles_fork"]=1762, - ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1763, - ["virtual_ritual_of_power_maximum_number_of_rituals"]=1764, - ["virtual_sandstorm_swipe_max_stages"]=1765, - ["virtual_skill_gains_intensity"]=187, - ["virtual_skill_required_number_of_combo_stacks"]=1766, - ["virtual_spell_apply_X_armour_break_on_hit"]=1767, - ["virtual_spider_aspect_web_interval_ms"]=1768, - ["virtual_static_strike_base_zap_frequency_ms"]=1769, - ["virtual_steelskin_damage_%_taken_to_buff"]=1770, - ["virtual_steelskin_damage_limit"]=1770, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1771, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1594, - ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1772, - ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1773, - ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1774, - ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1775, - ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1776, - ["virtual_total_cooldown_count"]=1777, - ["virtual_totem_cold_resistance_%"]=1778, - ["virtual_totem_fire_resistance_%"]=1779, - ["virtual_totem_lightning_resistance_%"]=1780, - ["virtual_trap_and_mine_throwing_time_+%_final"]=1781, - ["virtual_vaal_lightning_arrow_number_of_redirects"]=1782, - ["virulent_arrow_damage_+%_final_per_stage"]=1783, - ["virulent_arrow_maximum_number_of_stacks"]=1784, - ["virulent_arrow_number_of_pod_projectiles"]=1785, - ["virulent_arrow_pod_projectile_damage_+%_final"]=1786, - ["volatile_dead_core_movement_speed_+%"]=1787, - ["volatile_dead_max_cores_allowed"]=1788, - ["volatile_dead_number_of_corpses_to_consume"]=1789, - ["volcanic_fissure_%_chance_repeat_aftershocks"]=1791, - ["volcanic_fissure_maximum_number_of_fissures"]=1790, - ["volcanic_fissure_speed_+%"]=1792, - ["volcano_base_number_of_geysers_allowed"]=1793, - ["volcano_damage_+%_final_per_stage"]=1794, - ["volcano_fires_projectiles_every_x_ms"]=1795, - ["volcano_maximum_number_of_stages"]=1796, - ["volcano_skill_effect_duration_per_stage"]=1797, - ["voltaxic_burst_damage_+%_final_per_stack"]=1798, - ["wall_is_created_in_a_circle_instead"]=1799, - ["warcries_knock_back_enemies"]=1800, - ["warcry_empowers_per_X_monster_power"]=1811, - ["warcry_empowers_per_X_monster_power_mp_cap"]=1811, - ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1812, - ["warcry_grant_X_rage_per_5_power"]=1827, - ["warcry_grant_damage_+%_to_exerted_attacks"]=1824, - ["warcry_grant_knockback_%_to_exerted_attacks"]=1825, - ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1826, - ["warding_steel_gains_%_of_damage_from_mitigated_physical_damage"]=1828, - ["warding_steel_maximum_stored_mitigated_physical_damage"]=1828, - ["water_sphere_cold_lightning_exposure_%"]=1829, - ["water_sphere_does_weird_conversion_stuff"]=1830, - ["weapon_trap_rotation_speed_+%"]=1831, - ["weapon_trap_total_rotation_%"]=1832, - ["whirling_blades_evasion_rating_+%_while_moving"]=1833, - ["whirling_slash_knockback_distance_+%_final_per_stage"]=1834, - ["wind_blast_damage_+%_final_from_distance"]=1835, - ["winter_brand_max_number_of_stages"]=1836, - ["wither_applies_additional_wither_%"]=1837, - ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1838, - ["withered_on_chaos_damage_hit_chance_%"]=1839, - ["withered_on_hit_chance_%"]=1841, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1840, - ["withered_on_hit_for_2_seconds_%_chance"]=1842, - ["withering_step_chance_to_not_remove_on_skill_use_%"]=1843, - ["wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms"]=1844, - ["wolf_warcry_maximum_number_of_wolves"]=1845, - ["wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed"]=1846, - ["zombie_slam_area_of_effect_+%"]=1854, - ["zombie_slam_cooldown_speed_+%"]=1855 + ["vaal_righteous_fire_spell_damage_+%_final"]=178, + ["vaal_skill_exertable"]=1753, + ["vaal_storm_call_delay_ms"]=1754, + ["vaal_upgrade_minion_damage_+%_final"]=1755, + ["vaal_upgrade_minion_damage_taken_+%_final"]=1756, + ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1191, + ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1191, + ["vaal_volcanic_fissure_crack_repeat_count"]=1757, + ["vampiric_icon_bleeding_effect_+%_final"]=1758, + ["vanishing_ambush_critical_strike_multiplier_+"]=1874, + ["verisium_infusion_do_not_expire"]=1759, + ["verisium_infusion_duration_+%"]=1760, + ["verisium_infusion_skill_number_of_verisium_infusion_to_grant"]=1761, + ["virtual_aegis_unique_shield_max_value"]=1762, + ["virtual_always_pierce"]=87, + ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1763, + ["virtual_berserk_hundred_times_rage_loss_per_second"]=371, + ["virtual_bladefall_number_of_volleys"]=1764, + ["virtual_blood_spears_total_number_of_spears"]=1765, + ["virtual_cast_when_damage_taken_threshold"]=270, + ["virtual_chance_to_daze_%"]=1766, + ["virtual_chill_effect_+%_final"]=1767, + ["virtual_chill_minimum_slow_%"]=1768, + ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1769, + ["virtual_curse_delay_duration_ms"]=1770, + ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=67, + ["virtual_damage_absorbed_per_jade_consumed"]=1771, + ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1772, + ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1773, + ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1774, + ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1775, + ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1776, + ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1777, + ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1778, + ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1779, + ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1780, + ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1781, + ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1782, + ["virtual_energy_cost_for_generic_ongoing_trigger"]=1736, + ["virtual_energy_shield_modified_amount_on_skill_use"]=1783, + ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1784, + ["virtual_firestorm_drop_burning_ground_duration_ms"]=316, + ["virtual_firestorm_drop_chilled_ground_duration_ms"]=317, + ["virtual_flameblast_maximum_stages"]=1785, + ["virtual_freezing_enemy_chills_enemies_in_radius"]=997, + ["virtual_generic_ongoing_trigger_maximum_energy"]=1786, + ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1787, + ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1787, + ["virtual_herald_of_thunder_bolt_base_frequency"]=1788, + ["virtual_hit_damage_stun_multiplier_+%_final"]=1789, + ["virtual_intensity_loss_ms_while_moving_interval"]=188, + ["virtual_intensity_lost_on_teleport"]=188, + ["virtual_knockback_distance_+%"]=1790, + ["virtual_life_modified_amount_on_skill_use"]=1791, + ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=126, + ["virtual_main_hand_apply_X_armour_break_on_hit"]=1792, + ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1793, + ["virtual_main_hand_melee_splash_chance_%"]=1794, + ["virtual_main_hand_slam_aftershock_chance_%"]=1795, + ["virtual_mana_modified_amount_on_skill_use"]=1796, + ["virtual_maximum_intensity"]=187, + ["virtual_melee_splash"]=231, + ["virtual_mine_detonation_time_ms"]=1797, + ["virtual_minion_damage_+%"]=120, + ["virtual_minion_elemental_resistance_%"]=237, + ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1798, + ["virtual_never_chill"]=1799, + ["virtual_never_freeze"]=1800, + ["virtual_never_ignite"]=1801, + ["virtual_never_shock"]=1802, + ["virtual_number_of_additional_curses_allowed"]=1803, + ["virtual_number_of_banners_allowed"]=1804, + ["virtual_number_of_forks_for_projectiles_final"]=220, + ["virtual_number_of_marks_allowed_per_type"]=1807, + ["virtual_number_of_spirit_strikes"]=1197, + ["virtual_off_hand_apply_X_armour_break_on_hit"]=1808, + ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1809, + ["virtual_off_hand_melee_splash_chance_%"]=1810, + ["virtual_off_hand_slam_aftershock_chance_%"]=1811, + ["virtual_onslaught_on_hit_%_chance"]=1812, + ["virtual_physical_damage_can_pin"]=1813, + ["virtual_poison_cloud_limit"]=1814, + ["virtual_projectiles_cannot_pierce"]=87, + ["virtual_projectiles_fork"]=1816, + ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1817, + ["virtual_ritual_of_power_maximum_number_of_rituals"]=1818, + ["virtual_sandstorm_swipe_max_stages"]=1819, + ["virtual_skill_gains_intensity"]=186, + ["virtual_skill_required_number_of_combo_stacks"]=1820, + ["virtual_spell_apply_X_armour_break_on_hit"]=1821, + ["virtual_spider_aspect_web_interval_ms"]=1822, + ["virtual_static_strike_base_zap_frequency_ms"]=1823, + ["virtual_steelskin_damage_%_taken_to_buff"]=1824, + ["virtual_steelskin_damage_limit"]=1824, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1634, + ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1825, + ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1826, + ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1827, + ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1828, + ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1829, + ["virtual_total_cooldown_count"]=1830, + ["virtual_totem_cold_resistance_%"]=1831, + ["virtual_totem_fire_resistance_%"]=1832, + ["virtual_totem_lightning_resistance_%"]=1833, + ["virtual_trap_and_mine_throwing_time_+%_final"]=1834, + ["virtual_vaal_lightning_arrow_number_of_redirects"]=1835, + ["virulent_arrow_damage_+%_final_per_stage"]=1836, + ["virulent_arrow_maximum_number_of_stacks"]=1837, + ["virulent_arrow_number_of_pod_projectiles"]=1838, + ["virulent_arrow_pod_projectile_damage_+%_final"]=1839, + ["volatile_dead_core_movement_speed_+%"]=1840, + ["volatile_dead_max_cores_allowed"]=1841, + ["volatile_dead_number_of_corpses_to_consume"]=1842, + ["volcanic_fissure_maximum_number_of_fissures"]=1843, + ["volcanic_fissure_speed_+%"]=1844, + ["volcano_base_number_of_geysers_allowed"]=1845, + ["volcano_damage_+%_final_per_stage"]=1846, + ["volcano_fires_projectiles_every_x_ms"]=1847, + ["volcano_maximum_number_of_stages"]=1848, + ["volcano_skill_effect_duration_per_stage"]=1849, + ["voltaxic_burst_damage_+%_final_per_stack"]=1850, + ["wall_is_created_in_a_circle_instead"]=1851, + ["warcries_knock_back_enemies"]=1852, + ["warcry_empowers_per_X_monster_power"]=1863, + ["warcry_empowers_per_X_monster_power_mp_cap"]=1863, + ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1864, + ["warcry_grant_X_rage_per_5_power"]=1879, + ["warcry_grant_damage_+%_to_exerted_attacks"]=1876, + ["warcry_grant_knockback_%_to_exerted_attacks"]=1877, + ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1878, + ["warding_steel_gains_%_of_damage_from_mitigated_physical_damage"]=1880, + ["warding_steel_maximum_stored_mitigated_physical_damage"]=1880, + ["water_sphere_cold_lightning_exposure_%"]=1881, + ["water_sphere_does_weird_conversion_stuff"]=1882, + ["weapon_trap_rotation_speed_+%"]=1883, + ["weapon_trap_total_rotation_%"]=1884, + ["whirling_blades_evasion_rating_+%_while_moving"]=1885, + ["whirling_slash_knockback_distance_+%_final_per_stage"]=1886, + ["wind_blast_damage_+%_final_from_distance"]=1887, + ["winter_brand_max_number_of_stages"]=1888, + ["wither_applies_additional_wither_%"]=1889, + ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1890, + ["withered_on_chaos_damage_hit_chance_%"]=1891, + ["withered_on_hit_chance_%"]=1893, + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1892, + ["withered_on_hit_for_2_seconds_%_chance"]=1894, + ["withering_step_chance_to_not_remove_on_skill_use_%"]=1895, + ["wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms"]=1896, + ["wolf_warcry_maximum_number_of_wolves"]=1897, + ["wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed"]=1898, + ["zombie_slam_area_of_effect_+%"]=1905, + ["zombie_slam_cooldown_speed_+%"]=1906 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/stat_descriptions.lua b/src/Data/StatDescriptions/stat_descriptions.lua index 844269fad3..37cb65e862 100644 --- a/src/Data/StatDescriptions/stat_descriptions.lua +++ b/src/Data/StatDescriptions/stat_descriptions.lua @@ -71,24 +71,15 @@ return { [1]={ limit={ [1]={ - [1]=100, + [1]=1, [2]="#" } }, - text="Physical Damage taken bypasses Energy Shield" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=99 - } - }, - text="{0}% of Physical Damage taken bypasses Energy Shield" + text="1% faster start of Energy Shield Recharge per {0} maximum Runic Ward" } }, stats={ - [1]="%_physical_damage_bypasses_energy_shield" + [1]="+%_faster_start_of_energy_shield_recharge_per_X_maximum_ward" } }, [6]={ @@ -140,126 +131,167 @@ return { } }, [9]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="+{0} to Deflection Rating per 10 maximum Runic Ward" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="-{0} to Deflection Rating per 10 maximum Runic Ward" + } + }, stats={ - [1]="level" + [1]="+_deflection_rating_per_10_maximum_ward" } }, [10]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Deflection Rating per 50 missing Energy Shield" + } + }, stats={ - [1]="item_drop_slots" + [1]="+_deflection_rating_per_50_missing_maximum_energy_shield" } }, [11]={ stats={ - [1]="main_hand_weapon_type" + [1]="level" } }, [12]={ stats={ - [1]="off_hand_weapon_type" + [1]="item_drop_slots" } }, [13]={ stats={ - [1]="current_endurance_charges" + [1]="main_hand_weapon_type" } }, [14]={ stats={ - [1]="current_frenzy_charges" + [1]="off_hand_weapon_type" } }, [15]={ stats={ - [1]="current_power_charges" + [1]="current_endurance_charges" } }, [16]={ stats={ - [1]="monster_slain_experience_+%" + [1]="current_frenzy_charges" } }, [17]={ stats={ - [1]="monster_dropped_item_rarity_+%" + [1]="current_power_charges" } }, [18]={ stats={ - [1]="monster_dropped_item_quantity_+%" + [1]="monster_slain_experience_+%" } }, [19]={ stats={ - [1]="main_hand_quality" + [1]="monster_dropped_item_rarity_+%" } }, [20]={ stats={ - [1]="off_hand_quality" + [1]="monster_dropped_item_quantity_+%" } }, [21]={ stats={ - [1]="skill_visual_scale_+%" + [1]="main_hand_quality" } }, [22]={ stats={ - [1]="main_hand_base_weapon_attack_duration_ms" + [1]="off_hand_quality" } }, [23]={ stats={ - [1]="off_hand_base_weapon_attack_duration_ms" + [1]="skill_visual_scale_+%" } }, [24]={ stats={ - [1]="main_hand_minimum_attack_distance" + [1]="main_hand_base_weapon_attack_duration_ms" } }, [25]={ stats={ - [1]="off_hand_minimum_attack_distance" + [1]="off_hand_base_weapon_attack_duration_ms" } }, [26]={ stats={ - [1]="main_hand_maximum_attack_distance" + [1]="main_hand_minimum_attack_distance" } }, [27]={ stats={ - [1]="off_hand_maximum_attack_distance" + [1]="off_hand_minimum_attack_distance" } }, [28]={ stats={ - [1]="chest_item_quantity_+%" + [1]="main_hand_maximum_attack_distance" } }, [29]={ stats={ - [1]="map_item_drop_quantity_+%" + [1]="off_hand_maximum_attack_distance" } }, [30]={ stats={ - [1]="map_item_drop_rarity_+%" + [1]="chest_item_quantity_+%" } }, [31]={ stats={ - [1]="map_tempest_display_prefix" + [1]="map_item_drop_quantity_+%" } }, [32]={ stats={ - [1]="map_tempest_display_suffix" + [1]="map_item_drop_rarity_+%" } }, [33]={ + stats={ + [1]="map_tempest_display_prefix" + } + }, + [34]={ + stats={ + [1]="map_tempest_display_suffix" + } + }, + [35]={ [1]={ [1]={ limit={ @@ -288,7 +320,7 @@ return { [1]="heist_coins_from_monsters_+%" } }, - [34]={ + [36]={ [1]={ [1]={ limit={ @@ -304,7 +336,7 @@ return { [1]="local_jewel_+%_effect_per_passive_between_jewel_and_class_start" } }, - [35]={ + [37]={ [1]={ [1]={ limit={ @@ -918,7 +950,7 @@ return { [4]="local_unique_jewel_alternate_tree_internal_revision" } }, - [36]={ + [38]={ [1]={ [1]={ limit={ @@ -934,7 +966,7 @@ return { [1]="local_item_allow_modification_while_corrupted" } }, - [37]={ + [39]={ [1]={ [1]={ limit={ @@ -1013,7 +1045,7 @@ return { [1]="local_jewel_variable_ring_radius_value" } }, - [38]={ + [40]={ [1]={ [1]={ limit={ @@ -1042,7 +1074,7 @@ return { [1]="local_item_can_have_x_additional_enchantments" } }, - [39]={ + [41]={ [1]={ [1]={ limit={ @@ -1067,7 +1099,7 @@ return { [1]="local_item_implicit_modifier_limit" } }, - [40]={ + [42]={ [1]={ [1]={ limit={ @@ -1092,7 +1124,7 @@ return { [1]="local_maximum_prefixes_allowed_+" } }, - [41]={ + [43]={ [1]={ [1]={ limit={ @@ -1117,7 +1149,7 @@ return { [1]="local_maximum_suffixes_allowed_+" } }, - [42]={ + [44]={ [1]={ [1]={ limit={ @@ -1133,7 +1165,7 @@ return { [1]="display_item_generation_can_roll_minion_affixes" } }, - [43]={ + [45]={ [1]={ [1]={ limit={ @@ -1149,7 +1181,7 @@ return { [1]="display_item_generation_can_roll_totem_affixes" } }, - [44]={ + [46]={ [1]={ [1]={ [1]={ @@ -1169,7 +1201,7 @@ return { [1]="ultimatum_wager_type_hash" } }, - [45]={ + [47]={ [1]={ [1]={ limit={ @@ -1185,7 +1217,7 @@ return { [1]="item_generation_cannot_change_prefixes" } }, - [46]={ + [48]={ [1]={ [1]={ limit={ @@ -1201,7 +1233,7 @@ return { [1]="local_implicit_mod_cannot_be_changed" } }, - [47]={ + [49]={ [1]={ [1]={ limit={ @@ -1217,7 +1249,7 @@ return { [1]="item_generation_cannot_change_suffixes" } }, - [48]={ + [50]={ [1]={ [1]={ limit={ @@ -1233,7 +1265,7 @@ return { [1]="item_generation_cannot_roll_caster_affixes" } }, - [49]={ + [51]={ [1]={ [1]={ limit={ @@ -1249,7 +1281,7 @@ return { [1]="item_generation_cannot_roll_attack_affixes" } }, - [50]={ + [52]={ [1]={ [1]={ limit={ @@ -1265,7 +1297,7 @@ return { [1]="item_generation_can_have_multiple_crafted_mods" } }, - [51]={ + [53]={ [1]={ [1]={ limit={ @@ -1290,7 +1322,7 @@ return { [1]="local_can_have_additional_crafted_mods" } }, - [52]={ + [54]={ [1]={ [1]={ limit={ @@ -1306,7 +1338,7 @@ return { [1]="item_generation_local_maximum_mod_required_level_override" } }, - [53]={ + [55]={ [1]={ [1]={ limit={ @@ -1335,7 +1367,7 @@ return { [1]="heist_enchantment_ailment_mod_effect_+%" } }, - [54]={ + [56]={ [1]={ [1]={ limit={ @@ -1364,7 +1396,7 @@ return { [1]="heist_enchantment_attribute_mod_effect_+%" } }, - [55]={ + [57]={ [1]={ [1]={ limit={ @@ -1393,7 +1425,7 @@ return { [1]="heist_enchantment_casterdamage_mod_effect_+%" } }, - [56]={ + [58]={ [1]={ [1]={ limit={ @@ -1422,7 +1454,7 @@ return { [1]="heist_enchantment_chaos_mod_effect_+%" } }, - [57]={ + [59]={ [1]={ [1]={ limit={ @@ -1451,7 +1483,7 @@ return { [1]="heist_enchantment_cold_mod_effect_+%" } }, - [58]={ + [60]={ [1]={ [1]={ limit={ @@ -1480,7 +1512,7 @@ return { [1]="heist_enchantment_critical_mod_effect_+%" } }, - [59]={ + [61]={ [1]={ [1]={ limit={ @@ -1509,7 +1541,7 @@ return { [1]="heist_enchantment_damage_mod_effect_+%" } }, - [60]={ + [62]={ [1]={ [1]={ limit={ @@ -1538,7 +1570,7 @@ return { [1]="heist_enchantment_defence_mod_effect_+%" } }, - [61]={ + [63]={ [1]={ [1]={ limit={ @@ -1567,7 +1599,7 @@ return { [1]="heist_enchantment_fire_mod_effect_+%" } }, - [62]={ + [64]={ [1]={ [1]={ limit={ @@ -1596,7 +1628,7 @@ return { [1]="heist_enchantment_life_mod_effect_+%" } }, - [63]={ + [65]={ [1]={ [1]={ limit={ @@ -1625,7 +1657,7 @@ return { [1]="heist_enchantment_lightning_mod_effect_+%" } }, - [64]={ + [66]={ [1]={ [1]={ limit={ @@ -1654,7 +1686,7 @@ return { [1]="heist_enchantment_mana_mod_effect_+%" } }, - [65]={ + [67]={ [1]={ [1]={ limit={ @@ -1683,7 +1715,7 @@ return { [1]="heist_enchantment_physical_mod_effect_+%" } }, - [66]={ + [68]={ [1]={ [1]={ limit={ @@ -1712,7 +1744,7 @@ return { [1]="heist_enchantment_resistance_mod_effect_+%" } }, - [67]={ + [69]={ [1]={ [1]={ limit={ @@ -1741,7 +1773,7 @@ return { [1]="heist_enchantment_speed_mod_effect_+%" } }, - [68]={ + [70]={ [1]={ [1]={ limit={ @@ -1770,7 +1802,7 @@ return { [1]="local_explicit_elemental_damage_mod_effect_+%" } }, - [69]={ + [71]={ [1]={ [1]={ limit={ @@ -1799,7 +1831,7 @@ return { [1]="local_explicit_minion_mod_effect_+%" } }, - [70]={ + [72]={ [1]={ [1]={ limit={ @@ -1828,7 +1860,7 @@ return { [1]="local_explicit_physical_and_chaos_damage_mod_effect_+%" } }, - [71]={ + [73]={ [1]={ [1]={ limit={ @@ -1844,7 +1876,7 @@ return { [1]="unveiled_mod_effect_+%" } }, - [72]={ + [74]={ [1]={ [1]={ limit={ @@ -1873,7 +1905,7 @@ return { [1]="local_explicit_mod_effect_+%" } }, - [73]={ + [75]={ [1]={ [1]={ limit={ @@ -1920,7 +1952,7 @@ return { [1]="local_implicit_stat_magnitude_+%" } }, - [74]={ + [76]={ [1]={ [1]={ limit={ @@ -1936,7 +1968,7 @@ return { [1]="local_display_grant_level_x_snipe_skill" } }, - [75]={ + [77]={ [1]={ [1]={ limit={ @@ -1952,7 +1984,7 @@ return { [1]="local_display_grants_level_X_spell_aegis" } }, - [76]={ + [78]={ [1]={ [1]={ limit={ @@ -1968,7 +2000,7 @@ return { [1]="local_has_no_sockets" } }, - [77]={ + [79]={ [1]={ [1]={ limit={ @@ -1997,7 +2029,7 @@ return { [1]="local_has_X_abyss_sockets" } }, - [78]={ + [80]={ [1]={ [1]={ limit={ @@ -2022,7 +2054,7 @@ return { [1]="local_has_X_sockets" } }, - [79]={ + [81]={ [1]={ [1]={ limit={ @@ -2047,7 +2079,39 @@ return { [1]="local_item_additional_skill_slots" } }, - [80]={ + [82]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can only Socket Corrupted Gems in this item" + } + }, + stats={ + [1]="local_can_only_socket_corrupted_gems" + } + }, + [83]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Only Runes can be Socketed in this item" + } + }, + stats={ + [1]="local_can_only_socket_runes" + } + }, + [84]={ [1]={ [1]={ limit={ @@ -2063,7 +2127,7 @@ return { [1]="local_can_only_socket_soul_cores" } }, - [81]={ + [85]={ [1]={ [1]={ limit={ @@ -2088,7 +2152,7 @@ return { [1]="local_maximum_sockets_+" } }, - [82]={ + [86]={ [1]={ [1]={ limit={ @@ -2104,7 +2168,7 @@ return { [1]="local_one_socket_each_colour_only" } }, - [83]={ + [87]={ [1]={ [1]={ limit={ @@ -2120,7 +2184,7 @@ return { [1]="map_number_of_harbinger_portals" } }, - [84]={ + [88]={ [1]={ [1]={ limit={ @@ -2136,7 +2200,7 @@ return { [1]="memory_line_breach_covers_map" } }, - [85]={ + [89]={ [1]={ [1]={ limit={ @@ -2161,7 +2225,7 @@ return { [1]="memory_line_minimum_possessions_of_rare_unique_monsters" } }, - [86]={ + [90]={ [1]={ [1]={ limit={ @@ -2177,7 +2241,7 @@ return { [1]="memory_line_num_harvest_plots" } }, - [87]={ + [91]={ [1]={ [1]={ limit={ @@ -2193,7 +2257,7 @@ return { [1]="memory_line_number_of_abyss_scourge_cracks" } }, - [88]={ + [92]={ [1]={ [1]={ limit={ @@ -2218,7 +2282,7 @@ return { [1]="memory_line_number_of_breaches" } }, - [89]={ + [93]={ [1]={ [1]={ limit={ @@ -2234,7 +2298,7 @@ return { [1]="memory_line_number_of_essences" } }, - [90]={ + [94]={ [1]={ [1]={ limit={ @@ -2263,7 +2327,7 @@ return { [1]="memory_line_number_of_strongboxes" } }, - [91]={ + [95]={ [1]={ [1]={ limit={ @@ -2279,7 +2343,302 @@ return { [1]="memory_line_player_is_harbinger" } }, - [92]={ + [96]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can only Socket Ruby Jewels in this item" + } + }, + stats={ + [1]="local_can_only_socket_ruby_gems" + } + }, + [97]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can only Socket Emerald Jewels in this item" + } + }, + stats={ + [1]="local_can_only_socket_emerald_gems" + } + }, + [98]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can only Socket Sapphire Jewels in this item" + } + }, + stats={ + [1]="local_can_only_socket_sapphire_gems" + } + }, + [99]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {0} Ruby Jewel in this item" + }, + [2]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {1} Emerald Jewel in this item" + }, + [3]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="You can only Socket {2} Sapphire Jewel in this item" + }, + [4]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {0} Ruby and {1} Emerald Jewel in this item" + }, + [5]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="You can only Socket {0} Ruby and {2} Sapphire Jewel in this item" + }, + [6]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="You can only Socket {1} Emerald and {2} Sapphire Jewel in this item" + }, + [7]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + }, + [3]={ + [1]=1, + [2]=1 + } + }, + text="You can only Socket {0} Ruby, {1} Emerald, and {2} Sapphire Jewel in this item" + }, + [8]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {0} Ruby Jewels in this item" + }, + [9]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {1} Emerald Jewels in this item" + }, + [10]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="You can only Socket {2} Sapphire Jewels in this item" + }, + [11]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="You can only Socket {0} Ruby and {1} Emerald Jewels in this item" + }, + [12]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="You can only Socket {0} Ruby and {2} Sapphire Jewels in this item" + }, + [13]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="You can only Socket {1} Emerald and {2} Sapphire Jewels in this item" + }, + [14]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="You can only Socket {0} Ruby, {1} Emerald, and {2} Sapphire Jewels in this item" + } + }, + stats={ + [1]="local_can_socket_x_ruby_jewels_exclude_disallowed_types", + [2]="local_can_socket_x_emerald_jewels_exclude_disallowed_types", + [3]="local_can_socket_x_sapphire_jewels_exclude_disallowed_types" + } + }, + [100]={ [1]={ [1]={ limit={ @@ -2295,7 +2654,7 @@ return { [1]="local_can_socket_gems_ignoring_colour" } }, - [93]={ + [101]={ [1]={ [1]={ limit={ @@ -2311,7 +2670,7 @@ return { [1]="local_soul_core_gain_benefits_from_boots_as_well" } }, - [94]={ + [102]={ [1]={ [1]={ limit={ @@ -2327,7 +2686,7 @@ return { [1]="local_soul_core_gain_benefits_from_gloves_as_well" } }, - [95]={ + [103]={ [1]={ [1]={ limit={ @@ -2343,7 +2702,7 @@ return { [1]="local_soul_core_gain_benefits_from_helmet_as_well" } }, - [96]={ + [104]={ [1]={ [1]={ limit={ @@ -2359,7 +2718,7 @@ return { [1]="local_soul_core_gain_benefits_from_shield_as_well" } }, - [97]={ + [105]={ [1]={ [1]={ limit={ @@ -2375,7 +2734,7 @@ return { [1]="map_breach_hands_are_small" } }, - [98]={ + [106]={ [1]={ [1]={ limit={ @@ -2404,7 +2763,7 @@ return { [1]="map_harbinger_cooldown_speed_+%" } }, - [99]={ + [107]={ [1]={ [1]={ limit={ @@ -2420,7 +2779,7 @@ return { [1]="map_strongbox_chain_length" } }, - [100]={ + [108]={ [1]={ [1]={ limit={ @@ -2445,7 +2804,7 @@ return { [1]="memory_line_abyss_scourge_spawn_boss_chance_%" } }, - [101]={ + [109]={ [1]={ [1]={ limit={ @@ -2461,7 +2820,7 @@ return { [1]="memory_line_big_harvest" } }, - [102]={ + [110]={ [1]={ [1]={ limit={ @@ -2477,7 +2836,7 @@ return { [1]="memory_line_essence_monster_number_of_essences" } }, - [103]={ + [111]={ [1]={ [1]={ limit={ @@ -2493,7 +2852,7 @@ return { [1]="memory_line_maximum_possessions_of_rare_unique_monsters" } }, - [104]={ + [112]={ [1]={ [1]={ limit={ @@ -2509,7 +2868,7 @@ return { [1]="memory_line_number_of_large_breach_chests" } }, - [105]={ + [113]={ [1]={ [1]={ limit={ @@ -2534,7 +2893,7 @@ return { [1]="player_is_harbinger_spawn_pack_on_kill_chance" } }, - [106]={ + [114]={ [1]={ [1]={ limit={ @@ -2615,7 +2974,7 @@ return { [2]="local_unique_hungry_loop_has_consumed_gem" } }, - [107]={ + [115]={ [1]={ [1]={ limit={ @@ -2640,7 +2999,7 @@ return { [1]="map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods" } }, - [108]={ + [116]={ [1]={ [1]={ limit={ @@ -2669,7 +3028,7 @@ return { [1]="map_breach_time_passed_+%" } }, - [109]={ + [117]={ [1]={ [1]={ limit={ @@ -2685,7 +3044,7 @@ return { [1]="map_essences_contains_rogue_exiles" } }, - [110]={ + [118]={ [1]={ [1]={ limit={ @@ -2701,7 +3060,7 @@ return { [1]="map_harvest_seeds_are_at_least_t2" } }, - [111]={ + [119]={ [1]={ [1]={ limit={ @@ -2717,7 +3076,7 @@ return { [1]="memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete" } }, - [112]={ + [120]={ [1]={ [1]={ limit={ @@ -2733,7 +3092,7 @@ return { [1]="memory_line_breach_boss_spawn_chance_%" } }, - [113]={ + [121]={ [1]={ [1]={ limit={ @@ -2749,7 +3108,7 @@ return { [1]="memory_line_strongboxes_chance_to_be_operatives_%" } }, - [114]={ + [122]={ [1]={ [1]={ limit={ @@ -2765,7 +3124,7 @@ return { [1]="map_breach_size_+%" } }, - [115]={ + [123]={ [1]={ [1]={ [1]={ @@ -2785,7 +3144,7 @@ return { [1]="map_breach_splinters_drop_as_stones_permyriad" } }, - [116]={ + [124]={ [1]={ [1]={ limit={ @@ -2801,7 +3160,7 @@ return { [1]="map_chance_for_breach_bosses_to_drop_breachstone_%" } }, - [117]={ + [125]={ [1]={ [1]={ limit={ @@ -2826,7 +3185,7 @@ return { [1]="map_essences_are_1_tier_higher_chance_%" } }, - [118]={ + [126]={ [1]={ [1]={ limit={ @@ -2842,7 +3201,7 @@ return { [1]="map_harvest_seed_t2_upgrade_%_chance" } }, - [119]={ + [127]={ [1]={ [1]={ limit={ @@ -2858,7 +3217,7 @@ return { [1]="map_strongboxes_additional_pack_chance_%" } }, - [120]={ + [128]={ [1]={ [1]={ limit={ @@ -2887,7 +3246,7 @@ return { [1]="map_breach_monsters_life_+%" } }, - [121]={ + [129]={ [1]={ [1]={ limit={ @@ -2903,7 +3262,7 @@ return { [1]="map_essence_corruption_cannot_release_monsters" } }, - [122]={ + [130]={ [1]={ [1]={ limit={ @@ -2919,7 +3278,7 @@ return { [1]="map_harvest_seed_t3_upgrade_%_chance" } }, - [123]={ + [131]={ [1]={ [1]={ limit={ @@ -2935,7 +3294,7 @@ return { [1]="map_strongbox_monsters_life_+%" } }, - [124]={ + [132]={ [1]={ [1]={ limit={ @@ -2951,7 +3310,7 @@ return { [1]="map_weapon_and_shields_drop_corrupted_with_implicit_%_chance" } }, - [125]={ + [133]={ [1]={ [1]={ limit={ @@ -2967,7 +3326,7 @@ return { [1]="map_weapon_and_shields_drop_fractured_%_chance" } }, - [126]={ + [134]={ [1]={ [1]={ limit={ @@ -2983,7 +3342,7 @@ return { [1]="map_weapon_and_shields_drop_fully_linked_%_chance" } }, - [127]={ + [135]={ [1]={ [1]={ limit={ @@ -2999,7 +3358,7 @@ return { [1]="map_weapon_and_shields_drop_fully_socketed_%_chance" } }, - [128]={ + [136]={ [1]={ [1]={ limit={ @@ -3028,7 +3387,7 @@ return { [1]="map_breach_monsters_damage_+%" } }, - [129]={ + [137]={ [1]={ [1]={ limit={ @@ -3044,7 +3403,7 @@ return { [1]="map_duplicate_essence_monsters_with_shrieking_essence" } }, - [130]={ + [138]={ [1]={ [1]={ limit={ @@ -3060,7 +3419,7 @@ return { [1]="map_strongbox_monsters_damage_+%" } }, - [131]={ + [139]={ [1]={ [1]={ limit={ @@ -3085,7 +3444,7 @@ return { [1]="map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance" } }, - [132]={ + [140]={ [1]={ [1]={ limit={ @@ -3110,7 +3469,7 @@ return { [1]="trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance" } }, - [133]={ + [141]={ [1]={ [1]={ limit={ @@ -3126,7 +3485,7 @@ return { [1]="local_gem_level_+" } }, - [134]={ + [142]={ [1]={ [1]={ limit={ @@ -3142,7 +3501,7 @@ return { [1]="local_socketed_strength_gem_level_+" } }, - [135]={ + [143]={ [1]={ [1]={ limit={ @@ -3158,7 +3517,7 @@ return { [1]="local_socketed_dexterity_gem_level_+" } }, - [136]={ + [144]={ [1]={ [1]={ limit={ @@ -3174,7 +3533,7 @@ return { [1]="phylactery_can_only_contain_non_unique_jewel" } }, - [137]={ + [145]={ [1]={ [1]={ limit={ @@ -3190,7 +3549,7 @@ return { [1]="local_socketed_intelligence_gem_level_+" } }, - [138]={ + [146]={ [1]={ [1]={ limit={ @@ -3199,7 +3558,7 @@ return { [2]="#" } }, - text="{0}% increased Effect of the Socketed Jewel" + text="{0}% increased Effect of bonuses gained from Socketed Jewel" }, [2]={ limit={ @@ -3208,14 +3567,14 @@ return { [2]=-1 } }, - text="{0}% reduced Effect of the Socketed Jewel" + text="{0}% reduced Effect of bonuses gained from Socketed Jewel" } }, stats={ - [1]="phylactery_jewel_mod_effect_+%" + [1]="phylactery_jewel_socket_effect_+%" } }, - [139]={ + [147]={ [1]={ [1]={ limit={ @@ -3231,7 +3590,7 @@ return { [1]="local_socketed_gem_level_+" } }, - [140]={ + [148]={ [1]={ [1]={ limit={ @@ -3247,7 +3606,7 @@ return { [1]="local_socketed_skill_gem_level_+1_per_x_player_levels" } }, - [141]={ + [149]={ [1]={ [1]={ limit={ @@ -3263,7 +3622,7 @@ return { [1]="local_socketed_gems_in_red_sockets_get_level_+" } }, - [142]={ + [150]={ [1]={ [1]={ limit={ @@ -3279,7 +3638,7 @@ return { [1]="local_socketed_gems_in_green_sockets_get_quality_%" } }, - [143]={ + [151]={ [1]={ [1]={ limit={ @@ -3295,7 +3654,7 @@ return { [1]="local_socketed_gems_in_blue_sockets_experience_gained_+%" } }, - [144]={ + [152]={ [1]={ [1]={ limit={ @@ -3311,7 +3670,7 @@ return { [1]="local_socketed_fire_gem_level_+" } }, - [145]={ + [153]={ [1]={ [1]={ limit={ @@ -3344,7 +3703,7 @@ return { [1]="lich_mana_cost_+%_final_if_you_have_no_energy_shield" } }, - [146]={ + [154]={ [1]={ [1]={ limit={ @@ -3360,7 +3719,7 @@ return { [1]="local_socketed_cold_gem_level_+" } }, - [147]={ + [155]={ [1]={ [1]={ limit={ @@ -3376,7 +3735,7 @@ return { [1]="local_socketed_lightning_gem_level_+" } }, - [148]={ + [156]={ [1]={ [1]={ limit={ @@ -3392,7 +3751,7 @@ return { [1]="local_socketed_chaos_gem_level_+" } }, - [149]={ + [157]={ [1]={ [1]={ limit={ @@ -3408,7 +3767,7 @@ return { [1]="local_socketed_spell_gem_level_+" } }, - [150]={ + [158]={ [1]={ [1]={ limit={ @@ -3424,7 +3783,7 @@ return { [1]="local_socketed_duration_gem_level_+" } }, - [151]={ + [159]={ [1]={ [1]={ limit={ @@ -3440,7 +3799,7 @@ return { [1]="local_socketed_area_of_effect_gem_level_+" } }, - [152]={ + [160]={ [1]={ [1]={ limit={ @@ -3456,7 +3815,7 @@ return { [1]="local_socketed_projectile_gem_level_+" } }, - [153]={ + [161]={ [1]={ [1]={ limit={ @@ -3472,7 +3831,7 @@ return { [1]="local_socketed_bow_gem_level_+" } }, - [154]={ + [162]={ [1]={ [1]={ limit={ @@ -3488,7 +3847,7 @@ return { [1]="local_socketed_melee_gem_level_+" } }, - [155]={ + [163]={ [1]={ [1]={ limit={ @@ -3504,7 +3863,7 @@ return { [1]="local_socketed_minion_gem_level_+" } }, - [156]={ + [164]={ [1]={ [1]={ limit={ @@ -3520,7 +3879,7 @@ return { [1]="local_socketed_aura_gem_level_+" } }, - [157]={ + [165]={ [1]={ [1]={ limit={ @@ -3536,7 +3895,7 @@ return { [1]="local_socketed_herald_gem_level_+" } }, - [158]={ + [166]={ [1]={ [1]={ limit={ @@ -3552,7 +3911,7 @@ return { [1]="local_socketed_movement_gem_level_+" } }, - [159]={ + [167]={ [1]={ [1]={ limit={ @@ -3568,7 +3927,7 @@ return { [1]="local_socketed_curse_gem_level_+" } }, - [160]={ + [168]={ [1]={ [1]={ limit={ @@ -3584,7 +3943,7 @@ return { [1]="local_socketed_hex_gem_level_+" } }, - [161]={ + [169]={ [1]={ [1]={ limit={ @@ -3600,7 +3959,7 @@ return { [1]="local_socketed_trap_gem_level_+" } }, - [162]={ + [170]={ [1]={ [1]={ limit={ @@ -3616,7 +3975,7 @@ return { [1]="local_socketed_trap_and_mine_gem_level_+" } }, - [163]={ + [171]={ [1]={ [1]={ limit={ @@ -3632,7 +3991,7 @@ return { [1]="local_socketed_vaal_gem_level_+" } }, - [164]={ + [172]={ [1]={ [1]={ limit={ @@ -3648,7 +4007,7 @@ return { [1]="local_socketed_support_gem_level_+" } }, - [165]={ + [173]={ [1]={ [1]={ limit={ @@ -3664,7 +4023,7 @@ return { [1]="local_socketed_active_skill_gem_level_+" } }, - [166]={ + [174]={ [1]={ [1]={ limit={ @@ -3680,7 +4039,7 @@ return { [1]="local_socketed_non_vaal_gem_level_+" } }, - [167]={ + [175]={ [1]={ [1]={ limit={ @@ -3696,7 +4055,7 @@ return { [1]="local_socketed_warcry_gem_level_+" } }, - [168]={ + [176]={ [1]={ [1]={ limit={ @@ -3712,7 +4071,7 @@ return { [1]="local_display_socketed_golem_attack_and_cast_speed_+%" } }, - [169]={ + [177]={ [1]={ [1]={ limit={ @@ -3728,7 +4087,7 @@ return { [1]="local_display_socketed_golem_buff_effect_+%" } }, - [170]={ + [178]={ [1]={ [1]={ limit={ @@ -3744,7 +4103,7 @@ return { [1]="local_display_socketed_golem_chance_to_taunt_%" } }, - [171]={ + [179]={ [1]={ [1]={ [1]={ @@ -3764,7 +4123,7 @@ return { [1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%" } }, - [172]={ + [180]={ [1]={ [1]={ [1]={ @@ -3784,7 +4143,7 @@ return { [1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned" } }, - [173]={ + [181]={ [1]={ [1]={ limit={ @@ -3800,7 +4159,7 @@ return { [1]="local_socketed_golem_gem_level_+" } }, - [174]={ + [182]={ [1]={ [1]={ limit={ @@ -3816,7 +4175,7 @@ return { [1]="local_socketed_gem_quality_+" } }, - [175]={ + [183]={ [1]={ [1]={ limit={ @@ -3832,7 +4191,7 @@ return { [1]="local_socketed_support_gem_quality_+" } }, - [176]={ + [184]={ [1]={ [1]={ limit={ @@ -3848,7 +4207,7 @@ return { [1]="local_socketed_active_skill_gem_quality_+" } }, - [177]={ + [185]={ [1]={ [1]={ limit={ @@ -3864,7 +4223,7 @@ return { [1]="local_socketed_area_of_effect_gem_quality_+" } }, - [178]={ + [186]={ [1]={ [1]={ limit={ @@ -3880,7 +4239,7 @@ return { [1]="local_socketed_aura_gem_quality_+" } }, - [179]={ + [187]={ [1]={ [1]={ limit={ @@ -3896,7 +4255,7 @@ return { [1]="local_socketed_bow_gem_quality_+" } }, - [180]={ + [188]={ [1]={ [1]={ limit={ @@ -3912,7 +4271,7 @@ return { [1]="local_socketed_chaos_gem_quality_+" } }, - [181]={ + [189]={ [1]={ [1]={ limit={ @@ -3928,7 +4287,7 @@ return { [1]="local_socketed_cold_gem_quality_+" } }, - [182]={ + [190]={ [1]={ [1]={ limit={ @@ -3944,7 +4303,7 @@ return { [1]="local_socketed_dexterity_gem_quality_+" } }, - [183]={ + [191]={ [1]={ [1]={ limit={ @@ -3960,7 +4319,7 @@ return { [1]="local_socketed_elemental_gem_level_+" } }, - [184]={ + [192]={ [1]={ [1]={ limit={ @@ -3976,7 +4335,7 @@ return { [1]="local_socketed_fire_gem_quality_+" } }, - [185]={ + [193]={ [1]={ [1]={ limit={ @@ -3992,7 +4351,7 @@ return { [1]="local_socketed_intelligence_gem_quality_+" } }, - [186]={ + [194]={ [1]={ [1]={ limit={ @@ -4008,7 +4367,7 @@ return { [1]="local_socketed_lightning_gem_quality_+" } }, - [187]={ + [195]={ [1]={ [1]={ limit={ @@ -4024,7 +4383,7 @@ return { [1]="local_socketed_melee_gem_quality_+" } }, - [188]={ + [196]={ [1]={ [1]={ limit={ @@ -4040,7 +4399,7 @@ return { [1]="local_socketed_minion_gem_quality_+" } }, - [189]={ + [197]={ [1]={ [1]={ limit={ @@ -4056,7 +4415,7 @@ return { [1]="local_socketed_projectile_gem_quality_+" } }, - [190]={ + [198]={ [1]={ [1]={ limit={ @@ -4072,7 +4431,36 @@ return { [1]="local_socketed_strength_gem_quality_+" } }, - [191]={ + [199]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased effect of Socketed Runes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced effect of Socketed Runes" + } + }, + stats={ + [1]="local_rune_effect_+%" + } + }, + [200]={ [1]={ [1]={ limit={ @@ -4101,7 +4489,65 @@ return { [1]="local_socketed_abyss_jewel_effect_+%" } }, - [192]={ + [201]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased effect of Socketed Augment Items" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced effect of Socketed Augment Items" + } + }, + stats={ + [1]="local_socketed_items_effect_+%" + } + }, + [202]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased effect of Socketed Soul Cores" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced effect of Socketed Soul Cores" + } + }, + stats={ + [1]="local_soul_core_effect_+%" + } + }, + [203]={ [1]={ [1]={ limit={ @@ -4117,7 +4563,7 @@ return { [1]="support_gems_socketed_in_amulet_also_support_body_skills" } }, - [193]={ + [204]={ [1]={ [1]={ limit={ @@ -4133,7 +4579,7 @@ return { [1]="support_gems_socketed_in_off_hand_also_support_main_hand_skills" } }, - [194]={ + [205]={ [1]={ [1]={ limit={ @@ -4149,7 +4595,7 @@ return { [1]="local_display_socketed_gems_get_increased_area_level" } }, - [195]={ + [206]={ [1]={ [1]={ limit={ @@ -4165,7 +4611,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_arcane_surge" } }, - [196]={ + [207]={ [1]={ [1]={ limit={ @@ -4181,7 +4627,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_archmage" } }, - [197]={ + [208]={ [1]={ [1]={ limit={ @@ -4197,7 +4643,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_aura_duration" } }, - [198]={ + [209]={ [1]={ [1]={ limit={ @@ -4213,7 +4659,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_barrage" } }, - [199]={ + [210]={ [1]={ [1]={ limit={ @@ -4229,7 +4675,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_behead" } }, - [200]={ + [211]={ [1]={ [1]={ limit={ @@ -4245,7 +4691,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodlust" } }, - [201]={ + [212]={ [1]={ [1]={ limit={ @@ -4261,7 +4707,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodthirst" } }, - [202]={ + [213]={ [1]={ [1]={ limit={ @@ -4277,7 +4723,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_brutality" } }, - [203]={ + [214]={ [1]={ [1]={ limit={ @@ -4293,7 +4739,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken" } }, - [204]={ + [215]={ [1]={ [1]={ limit={ @@ -4309,7 +4755,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill" } }, - [205]={ + [216]={ [1]={ [1]={ limit={ @@ -4325,7 +4771,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling" } }, - [206]={ + [217]={ [1]={ [1]={ limit={ @@ -4341,7 +4787,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chain" } }, - [207]={ + [218]={ [1]={ [1]={ limit={ @@ -4357,7 +4803,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed" } }, - [208]={ + [219]={ [1]={ [1]={ limit={ @@ -4373,7 +4819,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite" } }, - [209]={ + [220]={ [1]={ [1]={ limit={ @@ -4389,7 +4835,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_charged_mines" } }, - [210]={ + [221]={ [1]={ [1]={ limit={ @@ -4405,7 +4851,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_close_combat" } }, - [211]={ + [222]={ [1]={ [1]={ limit={ @@ -4421,7 +4867,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_culling_strike" } }, - [212]={ + [223]={ [1]={ [1]={ limit={ @@ -4437,7 +4883,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit" } }, - [213]={ + [224]={ [1]={ [1]={ limit={ @@ -4453,7 +4899,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cursed_ground" } }, - [214]={ + [225]={ [1]={ [1]={ limit={ @@ -4469,7 +4915,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments" } }, - [215]={ + [226]={ [1]={ [1]={ limit={ @@ -4485,7 +4931,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deathmark" } }, - [216]={ + [227]={ [1]={ [1]={ limit={ @@ -4501,7 +4947,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_decay" } }, - [217]={ + [228]={ [1]={ [1]={ limit={ @@ -4517,7 +4963,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_earthbreaker" } }, - [218]={ + [229]={ [1]={ [1]={ limit={ @@ -4533,7 +4979,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_efficacy" } }, - [219]={ + [230]={ [1]={ [1]={ limit={ @@ -4549,7 +4995,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_focus" } }, - [220]={ + [231]={ [1]={ [1]={ limit={ @@ -4565,7 +5011,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration" } }, - [221]={ + [232]={ [1]={ [1]={ limit={ @@ -4581,7 +5027,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_empower" } }, - [222]={ + [233]={ [1]={ [1]={ limit={ @@ -4597,7 +5043,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enhance" } }, - [223]={ + [234]={ [1]={ [1]={ limit={ @@ -4613,7 +5059,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enlighten" } }, - [224]={ + [235]={ [1]={ [1]={ limit={ @@ -4629,7 +5075,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eternal_blessing" } }, - [225]={ + [236]={ [1]={ [1]={ limit={ @@ -4645,7 +5091,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy" } }, - [226]={ + [237]={ [1]={ [1]={ limit={ @@ -4661,7 +5107,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fire_penetration" } }, - [227]={ + [238]={ [1]={ [1]={ limit={ @@ -4677,7 +5123,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fist_of_war" } }, - [228]={ + [239]={ [1]={ [1]={ limit={ @@ -4693,7 +5139,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focussed_ballista" } }, - [229]={ + [240]={ [1]={ [1]={ limit={ @@ -4709,7 +5155,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fragility" } }, - [230]={ + [241]={ [1]={ [1]={ limit={ @@ -4725,7 +5171,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger" } }, - [231]={ + [242]={ [1]={ [1]={ limit={ @@ -4741,7 +5187,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles" } }, - [232]={ + [243]={ [1]={ [1]={ limit={ @@ -4757,7 +5203,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo" } }, - [233]={ + [244]={ [1]={ [1]={ limit={ @@ -4773,7 +5219,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_volley" } }, - [234]={ + [245]={ [1]={ [1]={ limit={ @@ -4789,7 +5235,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hex_bloom" } }, - [235]={ + [246]={ [1]={ [1]={ limit={ @@ -4805,7 +5251,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation" } }, - [236]={ + [247]={ [1]={ [1]={ limit={ @@ -4821,7 +5267,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_immolate" } }, - [237]={ + [248]={ [1]={ [1]={ limit={ @@ -4837,7 +5283,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impale" } }, - [238]={ + [249]={ [1]={ [1]={ limit={ @@ -4853,7 +5299,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impending_doom" } }, - [239]={ + [250]={ [1]={ [1]={ limit={ @@ -4869,7 +5315,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage" } }, - [240]={ + [251]={ [1]={ [1]={ limit={ @@ -4885,7 +5331,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes" } }, - [241]={ + [252]={ [1]={ [1]={ limit={ @@ -4901,7 +5347,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_duration" } }, - [242]={ + [253]={ [1]={ [1]={ limit={ @@ -4917,7 +5363,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_infernal_legion" } }, - [243]={ + [254]={ [1]={ [1]={ limit={ @@ -4933,7 +5379,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_intensify" } }, - [244]={ + [255]={ [1]={ [1]={ limit={ @@ -4949,7 +5395,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_iron_grip" } }, - [245]={ + [256]={ [1]={ [1]={ limit={ @@ -4965,7 +5411,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_quantity" } }, - [246]={ + [257]={ [1]={ [1]={ limit={ @@ -4981,7 +5427,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_rarity" } }, - [247]={ + [258]={ [1]={ [1]={ limit={ @@ -4997,7 +5443,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit" } }, - [248]={ + [259]={ [1]={ [1]={ limit={ @@ -5013,7 +5459,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lifetap" } }, - [249]={ + [260]={ [1]={ [1]={ limit={ @@ -5029,7 +5475,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration" } }, - [250]={ + [261]={ [1]={ [1]={ limit={ @@ -5045,7 +5491,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_maim" } }, - [251]={ + [262]={ [1]={ [1]={ limit={ @@ -5061,7 +5507,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_manaforged_arrows" } }, - [252]={ + [263]={ [1]={ [1]={ limit={ @@ -5077,7 +5523,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mark_on_hit" } }, - [253]={ + [264]={ [1]={ [1]={ limit={ @@ -5093,7 +5539,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_meat_shield" } }, - [254]={ + [265]={ [1]={ [1]={ limit={ @@ -5109,7 +5555,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life" } }, - [255]={ + [266]={ [1]={ [1]={ limit={ @@ -5125,7 +5571,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_minefield" } }, - [256]={ + [267]={ [1]={ [1]={ limit={ @@ -5141,7 +5587,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mirage_archer" } }, - [257]={ + [268]={ [1]={ [1]={ limit={ @@ -5157,7 +5603,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_totem" } }, - [258]={ + [269]={ [1]={ [1]={ limit={ @@ -5173,7 +5619,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multicast" } }, - [259]={ + [270]={ [1]={ [1]={ limit={ @@ -5189,7 +5635,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_nightblade" } }, - [260]={ + [271]={ [1]={ [1]={ limit={ @@ -5205,7 +5651,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_onslaught" } }, - [261]={ + [272]={ [1]={ [1]={ limit={ @@ -5221,7 +5667,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overcharge" } }, - [262]={ + [273]={ [1]={ [1]={ limit={ @@ -5237,7 +5683,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles" } }, - [263]={ + [274]={ [1]={ [1]={ limit={ @@ -5253,7 +5699,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage" } }, - [264]={ + [275]={ [1]={ [1]={ limit={ @@ -5269,7 +5715,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning" } }, - [265]={ + [276]={ [1]={ [1]={ limit={ @@ -5285,7 +5731,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pinpoint" } }, - [266]={ + [277]={ [1]={ [1]={ limit={ @@ -5301,7 +5747,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_point_blank" } }, - [267]={ + [278]={ [1]={ [1]={ limit={ @@ -5317,7 +5763,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_poison" } }, - [268]={ + [279]={ [1]={ [1]={ limit={ @@ -5333,7 +5779,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit" } }, - [269]={ + [280]={ [1]={ [1]={ limit={ @@ -5349,7 +5795,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_prismatic_burst" } }, - [270]={ + [281]={ [1]={ [1]={ limit={ @@ -5365,7 +5811,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pulverise" } }, - [271]={ + [282]={ [1]={ [1]={ limit={ @@ -5381,7 +5827,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rage" } }, - [272]={ + [283]={ [1]={ [1]={ limit={ @@ -5397,7 +5843,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rain" } }, - [273]={ + [284]={ [1]={ [1]={ limit={ @@ -5413,7 +5859,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem" } }, - [274]={ + [285]={ [1]={ [1]={ limit={ @@ -5429,7 +5875,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rapid_decay" } }, - [275]={ + [286]={ [1]={ [1]={ limit={ @@ -5445,7 +5891,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance" } }, - [276]={ + [287]={ [1]={ [1]={ limit={ @@ -5461,7 +5907,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_duration" } }, - [277]={ + [288]={ [1]={ [1]={ limit={ @@ -5477,7 +5923,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2" } }, - [278]={ + [289]={ [1]={ [1]={ limit={ @@ -5493,7 +5939,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ruthless" } }, - [279]={ + [290]={ [1]={ [1]={ limit={ @@ -5509,7 +5955,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_second_wind" } }, - [280]={ + [291]={ [1]={ [1]={ limit={ @@ -5525,7 +5971,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_shockwave" } }, - [281]={ + [292]={ [1]={ [1]={ limit={ @@ -5541,7 +5987,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles" } }, - [282]={ + [293]={ [1]={ [1]={ limit={ @@ -5557,7 +6003,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_snipe" } }, - [283]={ + [294]={ [1]={ [1]={ limit={ @@ -5573,7 +6019,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_cascade" } }, - [284]={ + [295]={ [1]={ [1]={ limit={ @@ -5589,7 +6035,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_focus" } }, - [285]={ + [296]={ [1]={ [1]={ limit={ @@ -5605,7 +6051,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spirit_strike" } }, - [286]={ + [297]={ [1]={ [1]={ limit={ @@ -5621,7 +6067,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_storm_barrier" } }, - [287]={ + [298]={ [1]={ [1]={ limit={ @@ -5637,7 +6083,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance" } }, - [288]={ + [299]={ [1]={ [1]={ limit={ @@ -5653,7 +6099,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill" } }, - [289]={ + [300]={ [1]={ [1]={ limit={ @@ -5669,7 +6115,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swift_assembly" } }, - [290]={ + [301]={ [1]={ [1]={ limit={ @@ -5685,7 +6131,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swiftbrand" } }, - [291]={ + [302]={ [1]={ [1]={ limit={ @@ -5701,7 +6147,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown" } }, - [292]={ + [303]={ [1]={ [1]={ limit={ @@ -5717,7 +6163,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trinity" } }, - [293]={ + [304]={ [1]={ [1]={ limit={ @@ -5733,7 +6179,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments" } }, - [294]={ + [305]={ [1]={ [1]={ limit={ @@ -5749,7 +6195,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unleash" } }, - [295]={ + [306]={ [1]={ [1]={ limit={ @@ -5765,7 +6211,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_urgent_orders" } }, - [296]={ + [307]={ [1]={ [1]={ limit={ @@ -5781,7 +6227,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_void_manipulation" } }, - [297]={ + [308]={ [1]={ [1]={ limit={ @@ -5797,7 +6243,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks" } }, - [298]={ + [309]={ [1]={ [1]={ limit={ @@ -5813,7 +6259,7 @@ return { [1]="local_display_socketed_triggered_skills_deal_double_damage" } }, - [299]={ + [310]={ [1]={ [1]={ limit={ @@ -5829,7 +6275,7 @@ return { [1]="local_display_supported_by_level_10_controlled_destruction" } }, - [300]={ + [311]={ [1]={ [1]={ limit={ @@ -5845,7 +6291,7 @@ return { [1]="local_display_supported_by_level_10_intensify" } }, - [301]={ + [312]={ [1]={ [1]={ limit={ @@ -5861,7 +6307,7 @@ return { [1]="local_display_supported_by_level_10_spell_echo" } }, - [302]={ + [313]={ [1]={ [1]={ limit={ @@ -5877,7 +6323,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_chaos_damage" } }, - [303]={ + [314]={ [1]={ [1]={ limit={ @@ -5893,7 +6339,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_cold_damage" } }, - [304]={ + [315]={ [1]={ [1]={ limit={ @@ -5909,7 +6355,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_fire_damage" } }, - [305]={ + [316]={ [1]={ [1]={ limit={ @@ -5925,7 +6371,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_lightning_damage" } }, - [306]={ + [317]={ [1]={ [1]={ limit={ @@ -5941,7 +6387,7 @@ return { [1]="local_display_supported_by_level_x_awakened_ancestral_call" } }, - [307]={ + [318]={ [1]={ [1]={ limit={ @@ -5957,7 +6403,7 @@ return { [1]="local_display_supported_by_level_x_awakened_arrow_nova" } }, - [308]={ + [319]={ [1]={ [1]={ limit={ @@ -5973,7 +6419,7 @@ return { [1]="local_display_supported_by_level_x_awakened_blasphemy" } }, - [309]={ + [320]={ [1]={ [1]={ limit={ @@ -5989,7 +6435,7 @@ return { [1]="local_display_supported_by_level_x_awakened_brutality" } }, - [310]={ + [321]={ [1]={ [1]={ limit={ @@ -6005,7 +6451,7 @@ return { [1]="local_display_supported_by_level_x_awakened_burning_damage" } }, - [311]={ + [322]={ [1]={ [1]={ limit={ @@ -6021,7 +6467,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_on_crit" } }, - [312]={ + [323]={ [1]={ [1]={ limit={ @@ -6037,7 +6483,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_while_channelling" } }, - [313]={ + [324]={ [1]={ [1]={ limit={ @@ -6053,7 +6499,7 @@ return { [1]="local_display_supported_by_level_x_awakened_chain" } }, - [314]={ + [325]={ [1]={ [1]={ limit={ @@ -6069,7 +6515,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cold_penetration" } }, - [315]={ + [326]={ [1]={ [1]={ limit={ @@ -6085,7 +6531,7 @@ return { [1]="local_display_supported_by_level_x_awakened_controlled_destruction" } }, - [316]={ + [327]={ [1]={ [1]={ limit={ @@ -6101,7 +6547,7 @@ return { [1]="local_display_supported_by_level_x_awakened_curse_on_hit" } }, - [317]={ + [328]={ [1]={ [1]={ limit={ @@ -6117,7 +6563,7 @@ return { [1]="local_display_supported_by_level_x_awakened_deadly_ailments" } }, - [318]={ + [329]={ [1]={ [1]={ limit={ @@ -6133,7 +6579,7 @@ return { [1]="local_display_supported_by_level_x_awakened_elemental_focus" } }, - [319]={ + [330]={ [1]={ [1]={ limit={ @@ -6149,7 +6595,7 @@ return { [1]="local_display_supported_by_level_x_awakened_empower" } }, - [320]={ + [331]={ [1]={ [1]={ limit={ @@ -6165,7 +6611,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enhance" } }, - [321]={ + [332]={ [1]={ [1]={ limit={ @@ -6181,7 +6627,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enlighten" } }, - [322]={ + [333]={ [1]={ [1]={ limit={ @@ -6197,7 +6643,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fire_penetration" } }, - [323]={ + [334]={ [1]={ [1]={ limit={ @@ -6213,7 +6659,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fork" } }, - [324]={ + [335]={ [1]={ [1]={ limit={ @@ -6229,7 +6675,7 @@ return { [1]="local_display_supported_by_level_x_awakened_generosity" } }, - [325]={ + [336]={ [1]={ [1]={ limit={ @@ -6245,7 +6691,7 @@ return { [1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles" } }, - [326]={ + [337]={ [1]={ [1]={ limit={ @@ -6261,7 +6707,7 @@ return { [1]="local_display_supported_by_level_x_awakened_increased_area_of_effect" } }, - [327]={ + [338]={ [1]={ [1]={ limit={ @@ -6277,7 +6723,7 @@ return { [1]="local_display_supported_by_level_x_awakened_lightning_penetration" } }, - [328]={ + [339]={ [1]={ [1]={ limit={ @@ -6293,7 +6739,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_physical_damage" } }, - [329]={ + [340]={ [1]={ [1]={ limit={ @@ -6309,7 +6755,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_splash" } }, - [330]={ + [341]={ [1]={ [1]={ limit={ @@ -6325,7 +6771,7 @@ return { [1]="local_display_supported_by_level_x_awakened_minion_damage" } }, - [331]={ + [342]={ [1]={ [1]={ limit={ @@ -6341,7 +6787,7 @@ return { [1]="local_display_supported_by_level_x_awakened_multistrike" } }, - [332]={ + [343]={ [1]={ [1]={ limit={ @@ -6357,7 +6803,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_cascade" } }, - [333]={ + [344]={ [1]={ [1]={ limit={ @@ -6373,7 +6819,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_echo" } }, - [334]={ + [345]={ [1]={ [1]={ limit={ @@ -6389,7 +6835,7 @@ return { [1]="local_display_supported_by_level_x_awakened_swift_affliction" } }, - [335]={ + [346]={ [1]={ [1]={ limit={ @@ -6405,7 +6851,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unbound_ailments" } }, - [336]={ + [347]={ [1]={ [1]={ limit={ @@ -6421,7 +6867,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unleash" } }, - [337]={ + [348]={ [1]={ [1]={ limit={ @@ -6437,7 +6883,7 @@ return { [1]="local_display_supported_by_level_x_awakened_vicious_projectiles" } }, - [338]={ + [349]={ [1]={ [1]={ limit={ @@ -6453,7 +6899,7 @@ return { [1]="local_display_supported_by_level_x_awakened_void_manipulation" } }, - [339]={ + [350]={ [1]={ [1]={ limit={ @@ -6469,7 +6915,7 @@ return { [1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage" } }, - [340]={ + [351]={ [1]={ [1]={ [1]={ @@ -6494,7 +6940,7 @@ return { [2]="local_random_support_gem_index" } }, - [341]={ + [352]={ [1]={ [1]={ [1]={ @@ -6519,7 +6965,7 @@ return { [2]="local_random_support_gem_index_1" } }, - [342]={ + [353]={ [1]={ [1]={ limit={ @@ -6535,7 +6981,7 @@ return { [1]="local_display_socketed_gems_get_concentrated_area_level" } }, - [343]={ + [354]={ [1]={ [1]={ limit={ @@ -6551,7 +6997,7 @@ return { [1]="local_display_socketed_gems_get_trap_level" } }, - [344]={ + [355]={ [1]={ [1]={ limit={ @@ -6567,7 +7013,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cluster_trap" } }, - [345]={ + [356]={ [1]={ [1]={ limit={ @@ -6583,7 +7029,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_trap" } }, - [346]={ + [357]={ [1]={ [1]={ limit={ @@ -6599,7 +7045,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage" } }, - [347]={ + [358]={ [1]={ [1]={ limit={ @@ -6615,7 +7061,7 @@ return { [1]="local_display_socketed_gems_get_added_chaos_damage_level" } }, - [348]={ + [359]={ [1]={ [1]={ limit={ @@ -6631,7 +7077,7 @@ return { [1]="local_display_socketed_gems_get_blood_magic_level" } }, - [349]={ + [360]={ [1]={ [1]={ limit={ @@ -6647,7 +7093,7 @@ return { [1]="local_display_socketed_gems_get_increased_duration_level" } }, - [350]={ + [361]={ [1]={ [1]={ limit={ @@ -6663,7 +7109,7 @@ return { [1]="local_display_socketed_gems_get_added_fire_damage_level" } }, - [351]={ + [362]={ [1]={ [1]={ limit={ @@ -6679,7 +7125,7 @@ return { [1]="local_display_socketed_gems_get_cold_to_fire_level" } }, - [352]={ + [363]={ [1]={ [1]={ limit={ @@ -6695,7 +7141,7 @@ return { [1]="local_display_socketed_gems_get_spell_totem_level" } }, - [353]={ + [364]={ [1]={ [1]={ limit={ @@ -6711,7 +7157,7 @@ return { [1]="local_display_socketed_gems_get_fire_penetration_level" } }, - [354]={ + [365]={ [1]={ [1]={ limit={ @@ -6727,7 +7173,7 @@ return { [1]="local_display_socketed_gems_get_elemental_proliferation_level" } }, - [355]={ + [366]={ [1]={ [1]={ limit={ @@ -6743,7 +7189,7 @@ return { [1]="local_display_socketed_gems_get_added_lightning_damage_level" } }, - [356]={ + [367]={ [1]={ [1]={ limit={ @@ -6759,7 +7205,7 @@ return { [1]="local_display_socketed_gems_get_melee_physical_damage_level" } }, - [357]={ + [368]={ [1]={ [1]={ limit={ @@ -6775,7 +7221,7 @@ return { [1]="local_display_socketed_gems_get_faster_attacks_level" } }, - [358]={ + [369]={ [1]={ [1]={ limit={ @@ -6791,7 +7237,7 @@ return { [1]="local_display_socketed_gems_get_blind_level" } }, - [359]={ + [370]={ [1]={ [1]={ limit={ @@ -6807,7 +7253,7 @@ return { [1]="local_display_socketed_gems_get_melee_splash_level" } }, - [360]={ + [371]={ [1]={ [1]={ limit={ @@ -6823,7 +7269,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_crit_level" } }, - [361]={ + [372]={ [1]={ [1]={ limit={ @@ -6839,7 +7285,7 @@ return { [1]="local_display_socketed_gems_get_cast_when_stunned_level" } }, - [362]={ + [373]={ [1]={ [1]={ limit={ @@ -6855,7 +7301,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_death_level" } }, - [363]={ + [374]={ [1]={ [1]={ limit={ @@ -6871,7 +7317,7 @@ return { [1]="local_display_socketed_gems_get_stun_level" } }, - [364]={ + [375]={ [1]={ [1]={ limit={ @@ -6887,7 +7333,7 @@ return { [1]="local_display_socketed_gems_get_additional_accuracy_level" } }, - [365]={ + [376]={ [1]={ [1]={ limit={ @@ -6903,7 +7349,7 @@ return { [1]="local_display_socketed_gems_get_multistrike_level" } }, - [366]={ + [377]={ [1]={ [1]={ limit={ @@ -6919,7 +7365,7 @@ return { [1]="local_display_socketed_gems_get_faster_projectiles_level" } }, - [367]={ + [378]={ [1]={ [1]={ limit={ @@ -6935,7 +7381,7 @@ return { [1]="local_display_socketed_gems_get_life_leech_level" } }, - [368]={ + [379]={ [1]={ [1]={ limit={ @@ -6951,7 +7397,7 @@ return { [1]="local_display_socketed_gems_get_chance_to_bleed_level" } }, - [369]={ + [380]={ [1]={ [1]={ limit={ @@ -6967,7 +7413,7 @@ return { [1]="local_display_socketed_gems_get_increased_critical_damage_level" } }, - [370]={ + [381]={ [1]={ [1]={ limit={ @@ -6983,7 +7429,7 @@ return { [1]="local_display_socketed_gems_get_fork_level" } }, - [371]={ + [382]={ [1]={ [1]={ limit={ @@ -6999,7 +7445,7 @@ return { [1]="local_display_socketed_gems_get_weapon_elemental_damage_level" } }, - [372]={ + [383]={ [1]={ [1]={ limit={ @@ -7015,7 +7461,7 @@ return { [1]="local_display_socketed_gems_get_echo_level" } }, - [373]={ + [384]={ [1]={ [1]={ limit={ @@ -7031,7 +7477,7 @@ return { [1]="local_display_socketed_gems_get_reduced_mana_cost_level" } }, - [374]={ + [385]={ [1]={ [1]={ limit={ @@ -7047,7 +7493,7 @@ return { [1]="local_display_socketed_gems_get_generosity_level" } }, - [375]={ + [386]={ [1]={ [1]={ limit={ @@ -7063,7 +7509,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fortify" } }, - [376]={ + [387]={ [1]={ [1]={ limit={ @@ -7079,7 +7525,7 @@ return { [1]="local_display_socketed_gems_get_remote_mine_level" } }, - [377]={ + [388]={ [1]={ [1]={ limit={ @@ -7095,7 +7541,7 @@ return { [1]="local_display_socketed_gems_get_flee_level" } }, - [378]={ + [389]={ [1]={ [1]={ limit={ @@ -7111,7 +7557,7 @@ return { [1]="local_display_socketed_gems_get_faster_cast_level" } }, - [379]={ + [390]={ [1]={ [1]={ limit={ @@ -7127,7 +7573,7 @@ return { [1]="local_display_socketed_gems_get_iron_will_level" } }, - [380]={ + [391]={ [1]={ [1]={ limit={ @@ -7143,7 +7589,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_knockback_level" } }, - [381]={ + [392]={ [1]={ [1]={ limit={ @@ -7159,7 +7605,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level" } }, - [382]={ + [393]={ [1]={ [1]={ limit={ @@ -7175,7 +7621,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level" } }, - [383]={ + [394]={ [1]={ [1]={ limit={ @@ -7191,7 +7637,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level" } }, - [384]={ + [395]={ [1]={ [1]={ limit={ @@ -7207,7 +7653,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level" } }, - [385]={ + [396]={ [1]={ [1]={ limit={ @@ -7223,7 +7669,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level" } }, - [386]={ + [397]={ [1]={ [1]={ limit={ @@ -7239,7 +7685,7 @@ return { [1]="local_display_socketed_gems_supported_by_pierce_level" } }, - [387]={ + [398]={ [1]={ [1]={ limit={ @@ -7255,7 +7701,7 @@ return { [1]="local_display_socketed_gems_get_pierce_level" } }, - [388]={ + [399]={ [1]={ [1]={ limit={ @@ -7271,7 +7717,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_hypothermia" } }, - [389]={ + [400]={ [1]={ [1]={ limit={ @@ -7287,7 +7733,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_ice_bite" } }, - [390]={ + [401]={ [1]={ [1]={ limit={ @@ -7303,7 +7749,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_cold_penetration" } }, - [391]={ + [402]={ [1]={ [1]={ limit={ @@ -7319,7 +7765,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_mana_leech" } }, - [392]={ + [403]={ [1]={ [1]={ limit={ @@ -7335,7 +7781,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_added_cold_damage" } }, - [393]={ + [404]={ [1]={ [1]={ limit={ @@ -7351,7 +7797,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost" } }, - [394]={ + [405]={ [1]={ [1]={ limit={ @@ -7367,7 +7813,7 @@ return { [1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy" } }, - [395]={ + [406]={ [1]={ [1]={ limit={ @@ -7383,7 +7829,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_innervate_level" } }, - [396]={ + [407]={ [1]={ [1]={ limit={ @@ -7399,7 +7845,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_vile_toxins" } }, - [397]={ + [408]={ [1]={ [1]={ limit={ @@ -7415,7 +7861,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_lesser_poison" } }, - [398]={ + [409]={ [1]={ [1]={ limit={ @@ -7431,7 +7877,7 @@ return { [1]="display_socketed_minion_gems_supported_by_level_X_life_leech" } }, - [399]={ + [410]={ [1]={ [1]={ limit={ @@ -7447,7 +7893,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_controlled_destruction" } }, - [400]={ + [411]={ [1]={ [1]={ limit={ @@ -7463,7 +7909,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun" } }, - [401]={ + [412]={ [1]={ [1]={ limit={ @@ -7479,7 +7925,7 @@ return { [1]="local_display_socketed_gems_have_blood_magic" } }, - [402]={ + [413]={ [1]={ [1]={ [1]={ @@ -7508,7 +7954,7 @@ return { [1]="local_display_socketed_gems_have_mana_reservation_+%" } }, - [403]={ + [414]={ [1]={ [1]={ limit={ @@ -7524,7 +7970,7 @@ return { [1]="disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana" } }, - [404]={ + [415]={ [1]={ [1]={ limit={ @@ -7540,7 +7986,7 @@ return { [1]="local_display_socketed_gems_get_mana_multplier_%" } }, - [405]={ + [416]={ [1]={ [1]={ limit={ @@ -7569,7 +8015,7 @@ return { [1]="local_display_socketed_melee_gems_have_area_radius_+%" } }, - [406]={ + [417]={ [1]={ [1]={ limit={ @@ -7585,7 +8031,7 @@ return { [1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation" } }, - [407]={ + [418]={ [1]={ [1]={ limit={ @@ -7601,7 +8047,7 @@ return { [1]="local_display_socketed_gems_have_chance_to_flee_%" } }, - [408]={ + [419]={ [1]={ [1]={ limit={ @@ -7630,7 +8076,7 @@ return { [1]="local_display_socketed_gems_get_item_quantity_+%" } }, - [409]={ + [420]={ [1]={ [1]={ limit={ @@ -7646,7 +8092,7 @@ return { [1]="local_display_socketed_gems_get_curse_reflection" } }, - [410]={ + [421]={ [1]={ [1]={ limit={ @@ -7662,7 +8108,7 @@ return { [1]="local_display_socketed_gems_have_iron_will" } }, - [411]={ + [422]={ [1]={ [1]={ limit={ @@ -7678,7 +8124,7 @@ return { [1]="local_display_socketed_gems_chain_X_additional_times" } }, - [412]={ + [423]={ [1]={ [1]={ limit={ @@ -7711,32 +8157,23 @@ return { [1]="local_display_socketed_gems_additional_critical_strike_chance_%" } }, - [413]={ + [424]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]=1 - } - }, - text="Spells in this item Repeat an additional time" - }, - [2]={ - limit={ - [1]={ - [1]=2, + [1]="#", [2]="#" } }, - text="Spells in this item Repeat an additional {0} times" + text="Contains the Fragmented Mirror" } }, stats={ - [1]="local_display_socketed_spells_repeat_count" + [1]="dummy_stat_display_contains_mapuniquelake_mirror" } }, - [414]={ + [425]={ [1]={ [1]={ limit={ @@ -7761,7 +8198,7 @@ return { [1]="chance_to_trigger_socketed_spell_on_bow_attack_%" } }, - [415]={ + [426]={ [1]={ [1]={ limit={ @@ -7786,7 +8223,7 @@ return { [1]="local_display_avoid_interruption_%_while_using_socketed_attack_skills" } }, - [416]={ + [427]={ [1]={ [1]={ limit={ @@ -7815,7 +8252,7 @@ return { [1]="local_display_socketed_attack_damage_+%_final" } }, - [417]={ + [428]={ [1]={ [1]={ [1]={ @@ -7835,7 +8272,7 @@ return { [1]="local_display_socketed_attacks_additional_critical_strike_chance" } }, - [418]={ + [429]={ [1]={ [1]={ limit={ @@ -7851,7 +8288,7 @@ return { [1]="local_display_socketed_attacks_critical_strike_multiplier_+" } }, - [419]={ + [430]={ [1]={ [1]={ limit={ @@ -7867,7 +8304,7 @@ return { [1]="local_display_socketed_attacks_mana_cost_+" } }, - [420]={ + [431]={ [1]={ [1]={ limit={ @@ -7883,7 +8320,7 @@ return { [1]="local_display_socketed_gems_attack_and_cast_speed_+%_final" } }, - [421]={ + [432]={ [1]={ [1]={ limit={ @@ -7899,7 +8336,7 @@ return { [1]="local_display_socketed_gems_curse_auras_also_affect_you" } }, - [422]={ + [433]={ [1]={ [1]={ limit={ @@ -7915,7 +8352,7 @@ return { [1]="local_display_socketed_gems_damage_+%_final_while_on_low_life" } }, - [423]={ + [434]={ [1]={ [1]={ limit={ @@ -7931,7 +8368,7 @@ return { [1]="local_display_socketed_gems_elemental_damage_+%_final" } }, - [424]={ + [435]={ [1]={ [1]={ limit={ @@ -7947,7 +8384,7 @@ return { [1]="local_display_socketed_gems_exposure_on_hit" } }, - [425]={ + [436]={ [1]={ [1]={ limit={ @@ -7976,7 +8413,7 @@ return { [1]="local_display_socketed_gems_mana_cost_-%" } }, - [426]={ + [437]={ [1]={ [1]={ limit={ @@ -7997,7 +8434,7 @@ return { [2]="local_display_socketed_gems_maximum_added_fire_damage" } }, - [427]={ + [438]={ [1]={ [1]={ limit={ @@ -8022,7 +8459,7 @@ return { [1]="local_display_socketed_gems_projectile_damage_+%_final" } }, - [428]={ + [439]={ [1]={ [1]={ [1]={ @@ -8042,7 +8479,7 @@ return { [1]="local_display_socketed_gems_projectile_spells_cooldown_modifier_ms" } }, - [429]={ + [440]={ [1]={ [1]={ limit={ @@ -8058,7 +8495,7 @@ return { [1]="local_display_socketed_movement_skills_have_no_mana_cost" } }, - [430]={ + [441]={ [1]={ [1]={ limit={ @@ -8087,7 +8524,7 @@ return { [1]="local_display_socketed_skills_attack_speed_+%" } }, - [431]={ + [442]={ [1]={ [1]={ limit={ @@ -8116,7 +8553,7 @@ return { [1]="local_display_socketed_skills_cast_speed_+%" } }, - [432]={ + [443]={ [1]={ [1]={ limit={ @@ -8132,7 +8569,7 @@ return { [1]="local_display_socketed_skills_deal_double_damage" } }, - [433]={ + [444]={ [1]={ [1]={ limit={ @@ -8148,7 +8585,7 @@ return { [1]="local_display_socketed_skills_fork" } }, - [434]={ + [445]={ [1]={ [1]={ limit={ @@ -8177,7 +8614,7 @@ return { [1]="local_display_socketed_spell_damage_+%_final" } }, - [435]={ + [446]={ [1]={ [1]={ [1]={ @@ -8197,7 +8634,7 @@ return { [1]="local_display_socketed_spells_additional_critical_strike_chance" } }, - [436]={ + [447]={ [1]={ [1]={ limit={ @@ -8213,7 +8650,7 @@ return { [1]="local_display_socketed_spells_critical_strike_multiplier_+" } }, - [437]={ + [448]={ [1]={ [1]={ limit={ @@ -8246,7 +8683,7 @@ return { [1]="local_display_socketed_spells_mana_cost_+%" } }, - [438]={ + [449]={ [1]={ [1]={ limit={ @@ -8275,7 +8712,7 @@ return { [1]="local_display_socketed_travel_skills_damage_+%_final" } }, - [439]={ + [450]={ [1]={ [1]={ limit={ @@ -8304,7 +8741,7 @@ return { [1]="local_display_socketed_vaal_skills_area_of_effect_+%" } }, - [440]={ + [451]={ [1]={ [1]={ limit={ @@ -8333,7 +8770,7 @@ return { [1]="local_display_socketed_vaal_skills_aura_effect_+%" } }, - [441]={ + [452]={ [1]={ [1]={ limit={ @@ -8362,7 +8799,7 @@ return { [1]="local_display_socketed_vaal_skills_damage_+%_final" } }, - [442]={ + [453]={ [1]={ [1]={ limit={ @@ -8391,7 +8828,7 @@ return { [1]="local_display_socketed_vaal_skills_effect_duration_+%" } }, - [443]={ + [454]={ [1]={ [1]={ limit={ @@ -8407,7 +8844,7 @@ return { [1]="local_display_socketed_vaal_skills_elusive_on_use" } }, - [444]={ + [455]={ [1]={ [1]={ limit={ @@ -8432,7 +8869,7 @@ return { [1]="local_display_socketed_vaal_skills_extra_damage_rolls" } }, - [445]={ + [456]={ [1]={ [1]={ limit={ @@ -8448,7 +8885,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_phys_reduction" } }, - [446]={ + [457]={ [1]={ [1]={ limit={ @@ -8464,7 +8901,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_resistances" } }, - [447]={ + [458]={ [1]={ [1]={ limit={ @@ -8493,7 +8930,7 @@ return { [1]="local_display_socketed_vaal_skills_projectile_speed_+%" } }, - [448]={ + [459]={ [1]={ [1]={ limit={ @@ -8522,7 +8959,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%" } }, - [449]={ + [460]={ [1]={ [1]={ limit={ @@ -8551,7 +8988,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_requirement_+%_final" } }, - [450]={ + [461]={ [1]={ [1]={ limit={ @@ -8567,7 +9004,7 @@ return { [1]="local_display_socketed_vaal_skills_store_uses_+" } }, - [451]={ + [462]={ [1]={ [1]={ limit={ @@ -8592,7 +9029,7 @@ return { [1]="local_display_socketed_warcry_skills_cooldown_use_+" } }, - [452]={ + [463]={ [1]={ [1]={ limit={ @@ -8608,7 +9045,7 @@ return { [1]="local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills" } }, - [453]={ + [464]={ [1]={ [1]={ limit={ @@ -8624,7 +9061,7 @@ return { [1]="local_display_tailwind_if_socketed_vaal_skill_used_recently" } }, - [454]={ + [465]={ [1]={ [1]={ limit={ @@ -8653,7 +9090,7 @@ return { [1]="local_display_socketed_gems_damage_over_time_+%_final" } }, - [455]={ + [466]={ [1]={ [1]={ limit={ @@ -8669,7 +9106,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium" } }, - [456]={ + [467]={ [1]={ [1]={ limit={ @@ -8698,7 +9135,7 @@ return { [1]="local_display_socketed_non_curse_aura_gems_effect_+%" } }, - [457]={ + [468]={ [1]={ [1]={ limit={ @@ -8714,7 +9151,7 @@ return { [1]="local_display_socketed_gems_have_secrets_of_suffering" } }, - [458]={ + [469]={ [1]={ [1]={ limit={ @@ -8739,7 +9176,7 @@ return { [1]="local_display_socketed_gems_have_number_of_additional_projectiles" } }, - [459]={ + [470]={ [1]={ [1]={ limit={ @@ -8764,7 +9201,7 @@ return { [1]="local_display_socketed_spells_additional_projectiles" } }, - [460]={ + [471]={ [1]={ [1]={ limit={ @@ -8780,7 +9217,7 @@ return { [1]="local_display_socketed_gems_projectiles_nova" } }, - [461]={ + [472]={ [1]={ [1]={ limit={ @@ -8796,7 +9233,7 @@ return { [1]="local_display_socketed_spells_projectiles_circle" } }, - [462]={ + [473]={ [1]={ [1]={ limit={ @@ -8825,7 +9262,7 @@ return { [1]="local_display_socketed_gems_skill_effect_duration_+%" } }, - [463]={ + [474]={ [1]={ [1]={ limit={ @@ -8854,7 +9291,7 @@ return { [1]="local_display_socketed_projectile_spells_duration_+%_final" } }, - [464]={ + [475]={ [1]={ [1]={ limit={ @@ -8870,7 +9307,7 @@ return { [1]="local_display_socketed_trap_skills_create_smoke_cloud" } }, - [465]={ + [476]={ [1]={ [1]={ [1]={ @@ -8899,7 +9336,7 @@ return { [1]="local_display_socketed_curse_gems_have_mana_reservation_+%" } }, - [466]={ + [477]={ [1]={ [1]={ limit={ @@ -8915,7 +9352,7 @@ return { [1]="hierophant_helmet_supported_by_elemental_penetration" } }, - [467]={ + [478]={ [1]={ [1]={ limit={ @@ -8931,7 +9368,7 @@ return { [1]="hierophant_gloves_supported_by_increased_area_of_effect" } }, - [468]={ + [479]={ [1]={ [1]={ limit={ @@ -8947,7 +9384,7 @@ return { [1]="totem_maximum_all_elemental_resistances_%" } }, - [469]={ + [480]={ [1]={ [1]={ limit={ @@ -8972,7 +9409,7 @@ return { [1]="scion_helmet_skill_maximum_totems_+" } }, - [470]={ + [481]={ [1]={ [1]={ limit={ @@ -8988,7 +9425,7 @@ return { [1]="local_display_grants_skill_frostblink_level" } }, - [471]={ + [482]={ [1]={ [1]={ limit={ @@ -9004,7 +9441,7 @@ return { [1]="local_display_grants_skill_purity_of_fire_level" } }, - [472]={ + [483]={ [1]={ [1]={ limit={ @@ -9020,7 +9457,7 @@ return { [1]="local_display_illusory_warp_level" } }, - [473]={ + [484]={ [1]={ [1]={ limit={ @@ -9036,7 +9473,7 @@ return { [1]="local_display_grants_skill_bear_trap_level" } }, - [474]={ + [485]={ [1]={ [1]={ limit={ @@ -9052,7 +9489,7 @@ return { [1]="local_display_grants_level_x_summon_stone_golem" } }, - [475]={ + [486]={ [1]={ [1]={ limit={ @@ -9068,7 +9505,7 @@ return { [1]="local_display_grants_level_X_vengeance" } }, - [476]={ + [487]={ [1]={ [1]={ limit={ @@ -9084,7 +9521,7 @@ return { [1]="local_display_grants_level_x_despair" } }, - [477]={ + [488]={ [1]={ [1]={ limit={ @@ -9100,7 +9537,7 @@ return { [1]="local_display_grants_skill_purity_of_cold_level" } }, - [478]={ + [489]={ [1]={ [1]={ limit={ @@ -9134,7 +9571,7 @@ return { [1]="local_display_grants_summon_beast_companion" } }, - [479]={ + [490]={ [1]={ [1]={ limit={ @@ -9150,7 +9587,7 @@ return { [1]="local_display_grants_skill_purity_of_lightning_level" } }, - [480]={ + [491]={ [1]={ [1]={ limit={ @@ -9166,7 +9603,7 @@ return { [1]="local_display_grants_skill_flammability_level" } }, - [481]={ + [492]={ [1]={ [1]={ limit={ @@ -9281,7 +9718,7 @@ return { [1]="local_display_summon_harbinger_x_on_equip" } }, - [482]={ + [493]={ [1]={ [1]={ limit={ @@ -9297,7 +9734,7 @@ return { [1]="local_display_grants_skill_conductivity_level" } }, - [483]={ + [494]={ [1]={ [1]={ limit={ @@ -9313,7 +9750,7 @@ return { [1]="local_display_grants_skill_frostbite_level" } }, - [484]={ + [495]={ [1]={ [1]={ limit={ @@ -9329,7 +9766,7 @@ return { [1]="local_display_grants_skill_temporal_chains_level" } }, - [485]={ + [496]={ [1]={ [1]={ limit={ @@ -9345,7 +9782,7 @@ return { [1]="local_display_grants_skill_haste_level" } }, - [486]={ + [497]={ [1]={ [1]={ limit={ @@ -9361,7 +9798,7 @@ return { [1]="local_display_has_additional_implicit_mod" } }, - [487]={ + [498]={ [1]={ [1]={ limit={ @@ -9377,7 +9814,7 @@ return { [1]="local_display_grants_skill_clarity_level" } }, - [488]={ + [499]={ [1]={ [1]={ limit={ @@ -9393,7 +9830,7 @@ return { [1]="local_display_grants_skill_blood_sacrament_level" } }, - [489]={ + [500]={ [1]={ [1]={ limit={ @@ -9409,7 +9846,7 @@ return { [1]="local_display_grants_skill_vitality_level" } }, - [490]={ + [501]={ [1]={ [1]={ limit={ @@ -9425,7 +9862,7 @@ return { [1]="local_display_grants_skill_purity_level" } }, - [491]={ + [502]={ [1]={ [1]={ limit={ @@ -9441,7 +9878,7 @@ return { [1]="local_display_grants_skill_gluttony_of_elements_level" } }, - [492]={ + [503]={ [1]={ [1]={ limit={ @@ -9450,14 +9887,14 @@ return { [2]="#" } }, - text="Grants Level {0} Assassin's Mark Skill" + text="Grants Level {0} Wrath Skill" } }, stats={ - [1]="local_display_grants_skill_critical_weakness_level" + [1]="local_display_grants_skill_wrath_level" } }, - [493]={ + [504]={ [1]={ [1]={ limit={ @@ -9466,14 +9903,14 @@ return { [2]="#" } }, - text="Grants Level {0} Wrath Skill" + text="Hits with this Weapon have {0}% chance to Trigger Molten Shower per 25 Strength" } }, stats={ - [1]="local_display_grants_skill_wrath_level" + [1]="local_%_chance_to_trigger_molten_shower_on_hit_with_this_weapon_per_25_strength" } }, - [494]={ + [505]={ [1]={ [1]={ limit={ @@ -9489,7 +9926,7 @@ return { [1]="local_display_grants_skill_hatred_level" } }, - [495]={ + [506]={ [1]={ [1]={ limit={ @@ -9505,7 +9942,7 @@ return { [1]="local_display_grants_skill_anger_level" } }, - [496]={ + [507]={ [1]={ [1]={ limit={ @@ -9521,7 +9958,7 @@ return { [1]="local_display_grants_skill_determination_level" } }, - [497]={ + [508]={ [1]={ [1]={ limit={ @@ -9537,7 +9974,7 @@ return { [1]="local_display_grants_skill_grace_level" } }, - [498]={ + [509]={ [1]={ [1]={ limit={ @@ -9553,7 +9990,7 @@ return { [1]="local_display_grants_skill_scorching_ray_level" } }, - [499]={ + [510]={ [1]={ [1]={ limit={ @@ -9569,7 +10006,7 @@ return { [1]="local_display_grants_skill_discipline_level" } }, - [500]={ + [511]={ [1]={ [1]={ limit={ @@ -9585,7 +10022,7 @@ return { [1]="local_display_grants_level_X_envy" } }, - [501]={ + [512]={ [1]={ [1]={ limit={ @@ -9601,7 +10038,7 @@ return { [1]="local_display_grants_level_X_reckoning" } }, - [502]={ + [513]={ [1]={ [1]={ limit={ @@ -9617,7 +10054,7 @@ return { [1]="local_display_grants_skill_blight_level" } }, - [503]={ + [514]={ [1]={ [1]={ limit={ @@ -9633,7 +10070,7 @@ return { [1]="local_display_grants_skill_projectile_weakness_level" } }, - [504]={ + [515]={ [1]={ [1]={ limit={ @@ -9649,7 +10086,7 @@ return { [1]="local_display_grants_skill_elemental_weakness_level" } }, - [505]={ + [516]={ [1]={ [1]={ limit={ @@ -9665,7 +10102,7 @@ return { [1]="local_display_grants_skill_doryanis_touch_level" } }, - [506]={ + [517]={ [1]={ [1]={ limit={ @@ -9681,7 +10118,7 @@ return { [1]="local_display_grants_skill_vulnerability_level" } }, - [507]={ + [518]={ [1]={ [1]={ limit={ @@ -9697,7 +10134,7 @@ return { [1]="local_display_grants_skill_death_aura_level" } }, - [508]={ + [519]={ [1]={ [1]={ limit={ @@ -9713,7 +10150,7 @@ return { [1]="local_display_grants_skill_icestorm_level" } }, - [509]={ + [520]={ [1]={ [1]={ limit={ @@ -9738,7 +10175,7 @@ return { [1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%" } }, - [510]={ + [521]={ [1]={ [1]={ limit={ @@ -9754,7 +10191,7 @@ return { [1]="local_display_cast_level_X_consecrate_on_crit" } }, - [511]={ + [522]={ [1]={ [1]={ limit={ @@ -9770,7 +10207,7 @@ return { [1]="local_display_cast_level_x_shock_ground_when_hit" } }, - [512]={ + [523]={ [1]={ [1]={ limit={ @@ -9786,7 +10223,7 @@ return { [1]="local_display_grant_level_x_petrification_statue" } }, - [513]={ + [524]={ [1]={ [1]={ limit={ @@ -9802,7 +10239,7 @@ return { [1]="local_display_trigger_level_X_blinding_aura_skill_on_equip" } }, - [514]={ + [525]={ [1]={ [1]={ limit={ @@ -9818,7 +10255,7 @@ return { [1]="local_display_grants_level_x_blood_offering_skill" } }, - [515]={ + [526]={ [1]={ [1]={ limit={ @@ -9834,7 +10271,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect" } }, - [516]={ + [527]={ [1]={ [1]={ limit={ @@ -9850,7 +10287,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skill" } }, - [517]={ + [528]={ [1]={ [1]={ limit={ @@ -9866,7 +10303,7 @@ return { [1]="local_display_grants_level_x_wintertide_brand" } }, - [518]={ + [529]={ [1]={ [1]={ limit={ @@ -9882,7 +10319,7 @@ return { [1]="local_display_grants_skill_abyssal_cry_level" } }, - [519]={ + [530]={ [1]={ [1]={ limit={ @@ -9898,7 +10335,7 @@ return { [1]="local_display_grants_skill_accuracy_crits_aura_level" } }, - [520]={ + [531]={ [1]={ [1]={ limit={ @@ -9914,7 +10351,7 @@ return { [1]="local_display_grants_skill_bird_aspect_level" } }, - [521]={ + [532]={ [1]={ [1]={ limit={ @@ -9930,7 +10367,7 @@ return { [1]="local_display_grants_skill_bone_armour" } }, - [522]={ + [533]={ [1]={ [1]={ limit={ @@ -9946,7 +10383,7 @@ return { [1]="local_display_grants_skill_brand_detonate_level" } }, - [523]={ + [534]={ [1]={ [1]={ limit={ @@ -9962,7 +10399,7 @@ return { [1]="local_display_grants_skill_call_of_steel" } }, - [524]={ + [535]={ [1]={ [1]={ limit={ @@ -9978,7 +10415,7 @@ return { [1]="local_display_grants_skill_cat_aspect_level" } }, - [525]={ + [536]={ [1]={ [1]={ limit={ @@ -9994,7 +10431,7 @@ return { [1]="local_display_grants_skill_crab_aspect_level" } }, - [526]={ + [537]={ [1]={ [1]={ limit={ @@ -10010,7 +10447,7 @@ return { [1]="local_display_grants_skill_dash_level" } }, - [527]={ + [538]={ [1]={ [1]={ limit={ @@ -10026,7 +10463,7 @@ return { [1]="local_display_grants_skill_death_wish_level" } }, - [528]={ + [539]={ [1]={ [1]={ limit={ @@ -10042,7 +10479,7 @@ return { [1]="local_display_grants_skill_decoy_totem_level" } }, - [529]={ + [540]={ [1]={ [1]={ limit={ @@ -10058,7 +10495,7 @@ return { [1]="local_display_grants_skill_embrace_madness_level" } }, - [530]={ + [541]={ [1]={ [1]={ limit={ @@ -10074,7 +10511,7 @@ return { [1]="local_display_grants_skill_enduring_cry_level" } }, - [531]={ + [542]={ [1]={ [1]={ limit={ @@ -10090,7 +10527,7 @@ return { [1]="local_display_grants_skill_herald_of_agony_level" } }, - [532]={ + [543]={ [1]={ [1]={ limit={ @@ -10106,7 +10543,7 @@ return { [1]="local_display_grants_skill_herald_of_ash_level" } }, - [533]={ + [544]={ [1]={ [1]={ limit={ @@ -10122,7 +10559,7 @@ return { [1]="local_display_grants_skill_herald_of_ice_level" } }, - [534]={ + [545]={ [1]={ [1]={ limit={ @@ -10138,7 +10575,7 @@ return { [1]="local_display_grants_skill_herald_of_purity_level" } }, - [535]={ + [546]={ [1]={ [1]={ limit={ @@ -10154,7 +10591,7 @@ return { [1]="local_display_grants_skill_herald_of_thunder_level" } }, - [536]={ + [547]={ [1]={ [1]={ limit={ @@ -10170,7 +10607,7 @@ return { [1]="local_display_grants_skill_intimidating_cry_level" } }, - [537]={ + [548]={ [1]={ [1]={ limit={ @@ -10186,7 +10623,7 @@ return { [1]="local_display_grants_skill_lightning_warp_level" } }, - [538]={ + [549]={ [1]={ [1]={ limit={ @@ -10202,7 +10639,7 @@ return { [1]="local_display_grants_skill_malevolence_level" } }, - [539]={ + [550]={ [1]={ [1]={ limit={ @@ -10218,7 +10655,7 @@ return { [1]="local_display_grants_skill_mirage_chieftain" } }, - [540]={ + [551]={ [1]={ [1]={ limit={ @@ -10234,7 +10671,7 @@ return { [1]="local_display_grants_skill_pride_level" } }, - [541]={ + [552]={ [1]={ [1]={ limit={ @@ -10250,7 +10687,7 @@ return { [1]="local_display_grants_skill_rallying_cry_level" } }, - [542]={ + [553]={ [1]={ [1]={ limit={ @@ -10266,7 +10703,7 @@ return { [1]="local_display_grants_skill_smite_level" } }, - [543]={ + [554]={ [1]={ [1]={ limit={ @@ -10282,7 +10719,7 @@ return { [1]="local_display_grants_skill_spider_aspect_level" } }, - [544]={ + [555]={ [1]={ [1]={ limit={ @@ -10298,7 +10735,7 @@ return { [1]="local_display_grants_skill_touch_of_fire_level" } }, - [545]={ + [556]={ [1]={ [1]={ limit={ @@ -10314,7 +10751,7 @@ return { [1]="local_display_grants_skill_unhinge_level" } }, - [546]={ + [557]={ [1]={ [1]={ limit={ @@ -10330,7 +10767,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_fire_level" } }, - [547]={ + [558]={ [1]={ [1]={ limit={ @@ -10346,7 +10783,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_ice_level" } }, - [548]={ + [559]={ [1]={ [1]={ limit={ @@ -10362,7 +10799,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_lightning_level" } }, - [549]={ + [560]={ [1]={ [1]={ limit={ @@ -10378,7 +10815,7 @@ return { [1]="local_display_grants_skill_vampiric_icon_level" } }, - [550]={ + [561]={ [1]={ [1]={ limit={ @@ -10394,7 +10831,7 @@ return { [1]="local_display_grants_skill_zealotry_level" } }, - [551]={ + [562]={ [1]={ [1]={ limit={ @@ -10419,7 +10856,7 @@ return { [1]="local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance" } }, - [552]={ + [563]={ [1]={ [1]={ limit={ @@ -10435,7 +10872,7 @@ return { [1]="local_display_trigger_level_X_darktongue_kiss_on_curse" } }, - [553]={ + [564]={ [1]={ [1]={ limit={ @@ -10451,7 +10888,7 @@ return { [1]="local_display_trigger_level_X_void_gaze_on_skill_use" } }, - [554]={ + [565]={ [1]={ [1]={ limit={ @@ -10467,7 +10904,7 @@ return { [1]="local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon" } }, - [555]={ + [566]={ [1]={ [1]={ limit={ @@ -10483,7 +10920,7 @@ return { [1]="local_display_trigger_level_x_storm_cascade_on_attack" } }, - [556]={ + [567]={ [1]={ [1]={ limit={ @@ -10499,7 +10936,7 @@ return { [1]="local_display_grants_level_X_queens_demand_skill" } }, - [557]={ + [568]={ [1]={ [1]={ limit={ @@ -10515,7 +10952,7 @@ return { [1]="base_number_of_essence_spirits_allowed" } }, - [558]={ + [569]={ [1]={ [1]={ limit={ @@ -10531,7 +10968,7 @@ return { [1]="cast_linked_spells_on_shocked_enemy_kill_%" } }, - [559]={ + [570]={ [1]={ [1]={ limit={ @@ -10556,7 +10993,7 @@ return { [1]="cast_socketed_minion_skills_on_bow_kill_%" } }, - [560]={ + [571]={ [1]={ [1]={ limit={ @@ -10598,7 +11035,7 @@ return { [2]="cast_socketed_spells_on_mana_spent_%_chance" } }, - [561]={ + [572]={ [1]={ [1]={ limit={ @@ -10623,71 +11060,7 @@ return { [1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%" } }, - [562]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="curse_on_hit_level_assassins_mark" - } - }, - [563]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="curse_on_hit_level_poachers_mark" - } - }, - [564]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="curse_on_hit_level_poachers_mark_bypass_hexproof" - } - }, - [565]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="curse_on_hit_level_warlords_mark" - } - }, - [566]={ + [573]={ [1]={ [1]={ limit={ @@ -10703,7 +11076,7 @@ return { [1]="display_abberaths_hooves_skill_level" } }, - [567]={ + [574]={ [1]={ [1]={ limit={ @@ -10719,7 +11092,7 @@ return { [1]="display_cast_fire_burst_on_kill" } }, - [568]={ + [575]={ [1]={ [1]={ limit={ @@ -10744,7 +11117,7 @@ return { [1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance" } }, - [569]={ + [576]={ [1]={ [1]={ limit={ @@ -10760,7 +11133,7 @@ return { [1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill" } }, - [570]={ + [577]={ [1]={ [1]={ limit={ @@ -10776,7 +11149,7 @@ return { [1]="local_display_cast_animate_weapon_on_kill_%_chance" } }, - [571]={ + [578]={ [1]={ [1]={ limit={ @@ -10792,7 +11165,7 @@ return { [1]="local_display_cast_cold_aegis_on_gain_skill" } }, - [572]={ + [579]={ [1]={ [1]={ limit={ @@ -10808,7 +11181,7 @@ return { [1]="local_display_cast_elemental_aegis_on_gain_skill" } }, - [573]={ + [580]={ [1]={ [1]={ limit={ @@ -10824,7 +11197,7 @@ return { [1]="local_display_cast_fire_aegis_on_gain_skill" } }, - [574]={ + [581]={ [1]={ [1]={ limit={ @@ -10840,7 +11213,7 @@ return { [1]="local_display_cast_lightning_aegis_on_gain_skill" } }, - [575]={ + [582]={ [1]={ [1]={ limit={ @@ -10856,7 +11229,7 @@ return { [1]="local_display_cast_lightning_on_critical_strike" } }, - [576]={ + [583]={ [1]={ [1]={ limit={ @@ -10872,7 +11245,7 @@ return { [1]="local_display_cast_physical_aegis_on_gain_skill" } }, - [577]={ + [584]={ [1]={ [1]={ limit={ @@ -10888,7 +11261,7 @@ return { [1]="local_display_cast_primal_aegis_on_gain_skill" } }, - [578]={ + [585]={ [1]={ [1]={ limit={ @@ -10904,7 +11277,7 @@ return { [1]="local_display_cast_summon_arbalists_on_gain_skill" } }, - [579]={ + [586]={ [1]={ [1]={ limit={ @@ -10920,7 +11293,7 @@ return { [1]="local_display_cast_triggerbots_on_gain_skill" } }, - [580]={ + [587]={ [1]={ [1]={ limit={ @@ -10936,7 +11309,7 @@ return { [1]="local_display_fire_burst_on_hit_%" } }, - [581]={ + [588]={ [1]={ [1]={ limit={ @@ -10952,7 +11325,7 @@ return { [1]="local_display_grants_level_x_hidden_blade" } }, - [582]={ + [589]={ [1]={ [1]={ limit={ @@ -10968,7 +11341,7 @@ return { [1]="local_display_molten_burst_on_melee_hit_%" } }, - [583]={ + [590]={ [1]={ [1]={ limit={ @@ -10984,7 +11357,7 @@ return { [1]="local_display_raise_spider_on_kill_%_chance" } }, - [584]={ + [591]={ [1]={ [1]={ limit={ @@ -11009,7 +11382,7 @@ return { [1]="local_display_summon_raging_spirit_on_kill_%" } }, - [585]={ + [592]={ [1]={ [1]={ limit={ @@ -11034,7 +11407,7 @@ return { [1]="local_display_summon_wolf_on_kill_%" } }, - [586]={ + [593]={ [1]={ [1]={ limit={ @@ -11059,7 +11432,7 @@ return { [1]="local_display_trigger_commandment_of_inferno_on_crit_%" } }, - [587]={ + [594]={ [1]={ [1]={ limit={ @@ -11075,7 +11448,7 @@ return { [1]="local_display_trigger_corpse_walk_on_equip_level" } }, - [588]={ + [595]={ [1]={ [1]={ limit={ @@ -11091,7 +11464,7 @@ return { [1]="local_display_trigger_level_x_create_fungal_ground_on_kill" } }, - [589]={ + [596]={ [1]={ [1]={ limit={ @@ -11107,7 +11480,7 @@ return { [1]="local_display_trigger_death_walk_on_equip_level" } }, - [590]={ + [597]={ [1]={ [1]={ limit={ @@ -11123,7 +11496,7 @@ return { [1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance" } }, - [591]={ + [598]={ [1]={ [1]={ limit={ @@ -11148,7 +11521,7 @@ return { [1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%" } }, - [592]={ + [599]={ [1]={ [1]={ limit={ @@ -11173,7 +11546,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance" } }, - [593]={ + [600]={ [1]={ [1]={ limit={ @@ -11198,7 +11571,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance" } }, - [594]={ + [601]={ [1]={ [1]={ limit={ @@ -11214,7 +11587,7 @@ return { [1]="local_display_trigger_level_20_shade_form_on_skill_use_%" } }, - [595]={ + [602]={ [1]={ [1]={ limit={ @@ -11239,7 +11612,7 @@ return { [1]="local_display_trigger_level_20_shade_form_when_hit_%" } }, - [596]={ + [603]={ [1]={ [1]={ limit={ @@ -11255,23 +11628,7 @@ return { [1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%" } }, - [597]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy" - } - }, - [598]={ + [604]={ [1]={ [1]={ limit={ @@ -11287,7 +11644,7 @@ return { [1]="local_display_trigger_level_X_atziri_flameblast" } }, - [599]={ + [605]={ [1]={ [1]={ limit={ @@ -11303,7 +11660,7 @@ return { [1]="local_display_trigger_level_X_atziri_storm_call" } }, - [600]={ + [606]={ [1]={ [1]={ limit={ @@ -11319,7 +11676,7 @@ return { [1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds" } }, - [601]={ + [607]={ [1]={ [1]={ limit={ @@ -11335,23 +11692,7 @@ return { [1]="local_display_trigger_level_X_offering_every_5_seconds" } }, - [602]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy" - } - }, - [603]={ + [608]={ [1]={ [1]={ limit={ @@ -11367,23 +11708,7 @@ return { [1]="local_display_trigger_level_X_shield_shatter_on_block" } }, - [604]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Trigger Level {0} Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" - } - }, - stats={ - [1]="local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy" - } - }, - [605]={ + [609]={ [1]={ [1]={ limit={ @@ -11399,7 +11724,7 @@ return { [1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed" } }, - [606]={ + [610]={ [1]={ [1]={ limit={ @@ -11415,7 +11740,7 @@ return { [1]="local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon" } }, - [607]={ + [611]={ [1]={ [1]={ limit={ @@ -11431,7 +11756,7 @@ return { [1]="local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill" } }, - [608]={ + [612]={ [1]={ [1]={ limit={ @@ -11447,7 +11772,7 @@ return { [1]="local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength" } }, - [609]={ + [613]={ [1]={ [1]={ limit={ @@ -11463,7 +11788,7 @@ return { [1]="local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy" } }, - [610]={ + [614]={ [1]={ [1]={ limit={ @@ -11479,7 +11804,7 @@ return { [1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth" } }, - [611]={ + [615]={ [1]={ [1]={ limit={ @@ -11495,7 +11820,7 @@ return { [1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack" } }, - [612]={ + [616]={ [1]={ [1]={ limit={ @@ -11511,7 +11836,7 @@ return { [1]="local_display_trigger_level_x_reflection_skill_on_equip" } }, - [613]={ + [617]={ [1]={ [1]={ limit={ @@ -11527,7 +11852,7 @@ return { [1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered" } }, - [614]={ + [618]={ [1]={ [1]={ limit={ @@ -11543,7 +11868,7 @@ return { [1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge" } }, - [615]={ + [619]={ [1]={ [1]={ limit={ @@ -11559,7 +11884,7 @@ return { [1]="local_display_trigger_level_x_stalking_pustule_on_kill" } }, - [616]={ + [620]={ [1]={ [1]={ limit={ @@ -11575,7 +11900,7 @@ return { [1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume" } }, - [617]={ + [621]={ [1]={ [1]={ limit={ @@ -11591,7 +11916,7 @@ return { [1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow" } }, - [618]={ + [622]={ [1]={ [1]={ limit={ @@ -11607,7 +11932,7 @@ return { [1]="local_display_trigger_summon_taunting_contraption_on_flask_use" } }, - [619]={ + [623]={ [1]={ [1]={ limit={ @@ -11632,7 +11957,7 @@ return { [1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance" } }, - [620]={ + [624]={ [1]={ [1]={ limit={ @@ -11657,7 +11982,7 @@ return { [1]="local_display_trigger_temporal_anomaly_when_hit_%_chance" } }, - [621]={ + [625]={ [1]={ [1]={ limit={ @@ -11673,7 +11998,7 @@ return { [1]="local_display_trigger_tentacle_smash_on_kill_%_chance" } }, - [622]={ + [626]={ [1]={ [1]={ limit={ @@ -11689,7 +12014,7 @@ return { [1]="local_display_trigger_void_sphere_on_kill_%_chance" } }, - [623]={ + [627]={ [1]={ [1]={ limit={ @@ -11705,7 +12030,7 @@ return { [1]="local_display_use_level_X_abyssal_cry_on_hit" } }, - [624]={ + [628]={ [1]={ [1]={ limit={ @@ -11730,7 +12055,7 @@ return { [1]="local_unique_attacks_cast_socketed_lightning_spells_%" } }, - [625]={ + [629]={ [1]={ [1]={ limit={ @@ -11746,7 +12071,7 @@ return { [1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike" } }, - [626]={ + [630]={ [1]={ [1]={ limit={ @@ -11771,7 +12096,7 @@ return { [1]="trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%" } }, - [627]={ + [631]={ [1]={ [1]={ limit={ @@ -11796,7 +12121,7 @@ return { [1]="trigger_socketed_spell_on_attack_%" } }, - [628]={ + [632]={ [1]={ [1]={ [1]={ @@ -11816,7 +12141,7 @@ return { [1]="local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms" } }, - [629]={ + [633]={ [1]={ [1]={ limit={ @@ -11841,7 +12166,7 @@ return { [1]="trigger_socketed_spell_on_skill_use_%" } }, - [630]={ + [634]={ [1]={ [1]={ limit={ @@ -11866,7 +12191,7 @@ return { [1]="trigger_socketed_spells_when_you_focus_%" } }, - [631]={ + [635]={ [1]={ [1]={ limit={ @@ -11882,7 +12207,7 @@ return { [1]="local_display_trigger_level_x_toxic_rain_on_bow_attack" } }, - [632]={ + [636]={ [1]={ [1]={ limit={ @@ -11898,7 +12223,55 @@ return { [1]="your_aegis_skills_except_primal_are_disabled" } }, - [633]={ + [637]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum Quality is {0}%" + } + }, + stats={ + [1]="local_maximum_quality_is_%" + } + }, + [638]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{:+d}% to Maximum Quality" + } + }, + stats={ + [1]="local_maximum_quality_+" + } + }, + [639]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Has maximum Quality" + } + }, + stats={ + [1]="local_is_max_quality" + } + }, + [640]={ [1]={ [1]={ limit={ @@ -11914,7 +12287,7 @@ return { [1]="local_flask_always_drinking" } }, - [634]={ + [641]={ [1]={ [1]={ [1]={ @@ -11934,7 +12307,7 @@ return { [1]="local_flask_gain_X_charges_every_minute" } }, - [635]={ + [642]={ [1]={ [1]={ limit={ @@ -11959,7 +12332,7 @@ return { [1]="local_flask_gain_X_charges_on_consuming_ignited_corpse" } }, - [636]={ + [643]={ [1]={ [1]={ limit={ @@ -11984,7 +12357,7 @@ return { [1]="local_flask_gain_X_charges_when_hit" } }, - [637]={ + [644]={ [1]={ [1]={ limit={ @@ -12009,7 +12382,7 @@ return { [1]="local_recharge_on_crit" } }, - [638]={ + [645]={ [1]={ [1]={ limit={ @@ -12034,7 +12407,7 @@ return { [1]="local_recharge_on_crit_%" } }, - [639]={ + [646]={ [1]={ [1]={ limit={ @@ -12059,7 +12432,7 @@ return { [1]="local_recharge_on_demon_killed" } }, - [640]={ + [647]={ [1]={ [1]={ limit={ @@ -12084,7 +12457,39 @@ return { [1]="local_recharge_on_take_crit" } }, - [641]={ + [648]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Quality does not increase Damage" + } + }, + stats={ + [1]="local_quality_does_not_increase_damage" + } + }, + [649]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Quality does not increase Defences" + } + }, + stats={ + [1]="local_quality_does_not_increase_defences" + } + }, + [650]={ [1]={ [1]={ limit={ @@ -12100,7 +12505,7 @@ return { [1]="local_flask_lose_all_charges_on_entering_new_area" } }, - [642]={ + [651]={ [1]={ [1]={ limit={ @@ -12116,7 +12521,7 @@ return { [1]="local_flask_life_to_recover" } }, - [643]={ + [652]={ [1]={ [1]={ limit={ @@ -12145,7 +12550,7 @@ return { [1]="local_flask_life_to_recover_+%_final" } }, - [644]={ + [653]={ [1]={ [1]={ limit={ @@ -12161,7 +12566,7 @@ return { [1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield" } }, - [645]={ + [654]={ [1]={ [1]={ limit={ @@ -12177,7 +12582,7 @@ return { [1]="local_flask_mana_to_recover" } }, - [646]={ + [655]={ [1]={ [1]={ [1]={ @@ -12197,7 +12602,7 @@ return { [1]="local_flask_deciseconds_to_recover" } }, - [647]={ + [656]={ [1]={ [1]={ limit={ @@ -12226,7 +12631,7 @@ return { [1]="local_flask_duration_+%_final" } }, - [648]={ + [657]={ [1]={ [1]={ limit={ @@ -12242,7 +12647,7 @@ return { [1]="local_flask_recover_instantly_when_on_low_life" } }, - [649]={ + [658]={ [1]={ [1]={ limit={ @@ -12258,7 +12663,7 @@ return { [1]="local_flask_recover_instantly_when_on_low_mana" } }, - [650]={ + [659]={ [1]={ [1]={ limit={ @@ -12274,7 +12679,7 @@ return { [1]="local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends" } }, - [651]={ + [660]={ [1]={ [1]={ limit={ @@ -12290,7 +12695,7 @@ return { [1]="local_flask_effect_ends_when_hit_by_player" } }, - [652]={ + [661]={ [1]={ [1]={ limit={ @@ -12306,7 +12711,7 @@ return { [1]="local_flask_effect_not_removed_at_full_life" } }, - [653]={ + [662]={ [1]={ [1]={ limit={ @@ -12322,7 +12727,7 @@ return { [1]="local_flask_effect_not_removed_at_full_mana" } }, - [654]={ + [663]={ [1]={ [1]={ limit={ @@ -12338,23 +12743,7 @@ return { [1]="local_flask_recovery_occurs_instantly_at_end_of_flask_effect" } }, - [655]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Effect is removed when Ward Breaks" - } - }, - stats={ - [1]="local_flask_remove_effect_when_ward_breaks" - } - }, - [656]={ + [664]={ [1]={ [1]={ limit={ @@ -12370,7 +12759,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_life_on_use" } }, - [657]={ + [665]={ [1]={ [1]={ limit={ @@ -12386,7 +12775,7 @@ return { [1]="local_flask_removes_%_maximum_energy_shield_on_use" } }, - [658]={ + [666]={ [1]={ [1]={ limit={ @@ -12402,7 +12791,7 @@ return { [1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use" } }, - [659]={ + [667]={ [1]={ [1]={ limit={ @@ -12427,7 +12816,7 @@ return { [1]="local_unique_flask_instantly_recovers_%_maximum_life" } }, - [660]={ + [668]={ [1]={ [1]={ [1]={ @@ -12447,7 +12836,7 @@ return { [1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing" } }, - [661]={ + [669]={ [1]={ [1]={ limit={ @@ -12463,7 +12852,7 @@ return { [1]="local_consecrate_ground_on_flask_use_radius" } }, - [662]={ + [670]={ [1]={ [1]={ limit={ @@ -12479,7 +12868,7 @@ return { [1]="local_flask_chilled_ground_on_flask_use_radius" } }, - [663]={ + [671]={ [1]={ [1]={ limit={ @@ -12513,7 +12902,7 @@ return { [1]="local_flask_area_of_consecrated_ground_+%" } }, - [664]={ + [672]={ [1]={ [1]={ limit={ @@ -12529,7 +12918,7 @@ return { [1]="local_flask_consumes_max_charges_on_use" } }, - [665]={ + [673]={ [1]={ [1]={ limit={ @@ -12563,7 +12952,7 @@ return { [1]="local_flask_consumes_x_endurance_charges_on_use" } }, - [666]={ + [674]={ [1]={ [1]={ limit={ @@ -12597,7 +12986,7 @@ return { [1]="local_flask_consumes_x_frenzy_charges_on_use" } }, - [667]={ + [675]={ [1]={ [1]={ limit={ @@ -12631,7 +13020,7 @@ return { [1]="local_flask_consumes_x_power_charges_on_use" } }, - [668]={ + [676]={ [1]={ [1]={ limit={ @@ -12647,7 +13036,7 @@ return { [1]="local_flask_gain_charges_consumed_as_vaal_souls_on_use" } }, - [669]={ + [677]={ [1]={ [1]={ limit={ @@ -12672,7 +13061,7 @@ return { [1]="local_flask_gain_endurance_charges_on_use" } }, - [670]={ + [678]={ [1]={ [1]={ limit={ @@ -12697,7 +13086,7 @@ return { [1]="local_flask_gain_frenzy_charges_on_use" } }, - [671]={ + [679]={ [1]={ [1]={ limit={ @@ -12722,7 +13111,7 @@ return { [1]="local_flask_gain_power_charges_on_use" } }, - [672]={ + [680]={ [1]={ [1]={ limit={ @@ -12747,7 +13136,7 @@ return { [1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge" } }, - [673]={ + [681]={ [1]={ [1]={ limit={ @@ -12763,7 +13152,7 @@ return { [1]="local_flask_gain_x_vaal_souls_on_use" } }, - [674]={ + [682]={ [1]={ [1]={ limit={ @@ -12779,7 +13168,7 @@ return { [1]="local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use" } }, - [675]={ + [683]={ [1]={ [1]={ limit={ @@ -12795,7 +13184,7 @@ return { [1]="local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use" } }, - [676]={ + [684]={ [1]={ [1]={ limit={ @@ -12811,7 +13200,7 @@ return { [1]="local_flask_taunt_enemies_on_use_radius" } }, - [677]={ + [685]={ [1]={ [1]={ limit={ @@ -12827,7 +13216,7 @@ return { [1]="local_flask_use_causes_area_knockback" } }, - [678]={ + [686]={ [1]={ [1]={ limit={ @@ -12843,7 +13232,7 @@ return { [1]="local_flask_use_causes_monster_flee_chance_%" } }, - [679]={ + [687]={ [1]={ [1]={ limit={ @@ -12859,7 +13248,7 @@ return { [1]="local_smoke_ground_on_flask_use_radius" } }, - [680]={ + [688]={ [1]={ [1]={ limit={ @@ -12875,7 +13264,7 @@ return { [1]="local_flask_remove_curses_on_use" } }, - [681]={ + [689]={ [1]={ [1]={ limit={ @@ -12891,7 +13280,7 @@ return { [1]="local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life" } }, - [682]={ + [690]={ [1]={ [1]={ limit={ @@ -12907,7 +13296,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood" } }, - [683]={ + [691]={ [1]={ [1]={ limit={ @@ -12923,7 +13312,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s" } }, - [684]={ + [692]={ [1]={ [1]={ limit={ @@ -12939,7 +13328,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen" } }, - [685]={ + [693]={ [1]={ [1]={ limit={ @@ -12955,7 +13344,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s" } }, - [686]={ + [694]={ [1]={ [1]={ limit={ @@ -12971,7 +13360,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning" } }, - [687]={ + [695]={ [1]={ [1]={ limit={ @@ -12987,7 +13376,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning_s" } }, - [688]={ + [696]={ [1]={ [1]={ limit={ @@ -13003,7 +13392,7 @@ return { [1]="local_flask_immune_to_hinder_for_x_seconds_if_hindered" } }, - [689]={ + [697]={ [1]={ [1]={ limit={ @@ -13019,7 +13408,7 @@ return { [1]="local_flask_immune_to_maim_for_x_seconds_if_maimed" } }, - [690]={ + [698]={ [1]={ [1]={ limit={ @@ -13035,7 +13424,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned" } }, - [691]={ + [699]={ [1]={ [1]={ limit={ @@ -13051,7 +13440,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned_s" } }, - [692]={ + [700]={ [1]={ [1]={ limit={ @@ -13067,7 +13456,7 @@ return { [1]="local_flask_shock_immunity_if_shocked" } }, - [693]={ + [701]={ [1]={ [1]={ limit={ @@ -13083,7 +13472,7 @@ return { [1]="local_flask_shock_immunity_if_shocked_s" } }, - [694]={ + [702]={ [1]={ [1]={ limit={ @@ -13099,7 +13488,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life" } }, - [695]={ + [703]={ [1]={ [1]={ limit={ @@ -13115,7 +13504,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana" } }, - [696]={ + [704]={ [1]={ [1]={ limit={ @@ -13131,7 +13520,7 @@ return { [1]="local_flask_dispels_freeze_and_chill" } }, - [697]={ + [705]={ [1]={ [1]={ limit={ @@ -13147,23 +13536,7 @@ return { [1]="local_flask_dispels_burning_and_ignite_immunity_during_effect" } }, - [698]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Restores Ward on use" - } - }, - stats={ - [1]="local_flask_restore_ward" - } - }, - [699]={ + [706]={ [1]={ [1]={ limit={ @@ -13188,7 +13561,23 @@ return { [1]="local_number_of_bloodworms_to_spawn_on_flask_use" } }, - [700]={ + [707]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Used manually" + } + }, + stats={ + [1]="local_flask_cannot_be_used_manually" + } + }, + [708]={ [1]={ [1]={ limit={ @@ -13204,7 +13593,7 @@ return { [1]="local_charm_trigger_when_cursed" } }, - [701]={ + [709]={ [1]={ [1]={ limit={ @@ -13220,7 +13609,7 @@ return { [1]="local_flask_use_on_adjacent_flask_use" } }, - [702]={ + [710]={ [1]={ [1]={ limit={ @@ -13236,7 +13625,7 @@ return { [1]="local_flask_use_on_affected_by_bleed" } }, - [703]={ + [711]={ [1]={ [1]={ limit={ @@ -13252,7 +13641,7 @@ return { [1]="local_flask_use_on_affected_by_chill" } }, - [704]={ + [712]={ [1]={ [1]={ limit={ @@ -13268,7 +13657,7 @@ return { [1]="local_flask_use_on_affected_by_freeze" } }, - [705]={ + [713]={ [1]={ [1]={ limit={ @@ -13284,7 +13673,7 @@ return { [1]="local_flask_use_on_affected_by_ignite" } }, - [706]={ + [714]={ [1]={ [1]={ limit={ @@ -13300,7 +13689,7 @@ return { [1]="local_flask_use_on_affected_by_poison" } }, - [707]={ + [715]={ [1]={ [1]={ limit={ @@ -13316,7 +13705,7 @@ return { [1]="local_flask_use_on_affected_by_shock" } }, - [708]={ + [716]={ [1]={ [1]={ limit={ @@ -13332,7 +13721,7 @@ return { [1]="local_flask_use_on_affected_by_slow" } }, - [709]={ + [717]={ [1]={ [1]={ limit={ @@ -13348,7 +13737,7 @@ return { [1]="local_flask_use_on_chaos_damage_taken" } }, - [710]={ + [718]={ [1]={ [1]={ limit={ @@ -13364,7 +13753,7 @@ return { [1]="local_flask_use_on_cold_damage_taken" } }, - [711]={ + [719]={ [1]={ [1]={ limit={ @@ -13380,7 +13769,7 @@ return { [1]="local_flask_use_on_damage_blocked" } }, - [712]={ + [720]={ [1]={ [1]={ limit={ @@ -13396,7 +13785,7 @@ return { [1]="local_flask_use_on_fire_damage_taken" } }, - [713]={ + [721]={ [1]={ [1]={ limit={ @@ -13412,7 +13801,7 @@ return { [1]="local_flask_use_on_flask_effect_ended" } }, - [714]={ + [722]={ [1]={ [1]={ limit={ @@ -13428,7 +13817,7 @@ return { [1]="local_flask_use_on_full_charges" } }, - [715]={ + [723]={ [1]={ [1]={ limit={ @@ -13444,7 +13833,7 @@ return { [1]="local_flask_use_on_guard_skill_expired" } }, - [716]={ + [724]={ [1]={ [1]={ limit={ @@ -13460,7 +13849,7 @@ return { [1]="local_flask_use_on_guard_skill_used" } }, - [717]={ + [725]={ [1]={ [1]={ limit={ @@ -13476,7 +13865,7 @@ return { [1]="local_flask_use_on_hitting_rare_unique_enemy_while_inactive" } }, - [718]={ + [726]={ [1]={ [1]={ limit={ @@ -13492,7 +13881,7 @@ return { [1]="local_flask_use_on_killing_rare_or_unique_enemy" } }, - [719]={ + [727]={ [1]={ [1]={ limit={ @@ -13508,7 +13897,23 @@ return { [1]="local_flask_use_on_lightning_damage_taken" } }, - [720]={ + [728]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Used when you release a skill with Perfect Timing" + } + }, + stats={ + [1]="local_flask_use_on_perfect_timing" + } + }, + [729]={ [1]={ [1]={ limit={ @@ -13524,7 +13929,7 @@ return { [1]="local_flask_use_on_stunned" } }, - [721]={ + [730]={ [1]={ [1]={ limit={ @@ -13540,7 +13945,7 @@ return { [1]="local_flask_use_on_taking_savage_hit" } }, - [722]={ + [731]={ [1]={ [1]={ limit={ @@ -13556,7 +13961,7 @@ return { [1]="local_flask_use_on_travel_skill_used" } }, - [723]={ + [732]={ [1]={ [1]={ limit={ @@ -13572,7 +13977,7 @@ return { [1]="local_flask_use_on_using_a_life_flask" } }, - [724]={ + [733]={ [1]={ [1]={ limit={ @@ -13640,7 +14045,7 @@ return { [2]="local_flask_consume_flask_effect_+%_when_used" } }, - [725]={ + [734]={ [1]={ [1]={ limit={ @@ -13656,7 +14061,7 @@ return { [1]="local_flask_armour_+%_while_healing" } }, - [726]={ + [735]={ [1]={ [1]={ limit={ @@ -13672,7 +14077,7 @@ return { [1]="local_flask_evasion_+%_while_healing" } }, - [727]={ + [736]={ [1]={ [1]={ limit={ @@ -13688,52 +14093,7 @@ return { [1]="local_flask_energy_shield_+%_while_healing" } }, - [728]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Ward during Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Ward during Effect" - } - }, - stats={ - [1]="local_flask_ward_+%_during_effect" - } - }, - [729]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Ward does not Break during Effect" - } - }, - stats={ - [1]="local_flask_ward_does_not_break_during_effect" - } - }, - [730]={ + [737]={ [1]={ [1]={ limit={ @@ -13749,7 +14109,7 @@ return { [1]="local_flask_adaptations_apply_to_all_elements_during_effect" } }, - [731]={ + [738]={ [1]={ [1]={ limit={ @@ -13765,7 +14125,7 @@ return { [1]="local_flask_accuracy_rating_+%_during_effect" } }, - [732]={ + [739]={ [1]={ [1]={ limit={ @@ -13794,7 +14154,7 @@ return { [1]="local_flask_attack_speed_+%_while_healing" } }, - [733]={ + [740]={ [1]={ [1]={ limit={ @@ -13823,7 +14183,7 @@ return { [1]="local_flask_cast_speed_+%_while_healing" } }, - [734]={ + [741]={ [1]={ [1]={ limit={ @@ -13839,7 +14199,7 @@ return { [1]="local_flask_movement_speed_+%_while_healing" } }, - [735]={ + [742]={ [1]={ [1]={ limit={ @@ -13855,7 +14215,7 @@ return { [1]="local_flask_stun_recovery_+%_while_healing" } }, - [736]={ + [743]={ [1]={ [1]={ limit={ @@ -13871,7 +14231,7 @@ return { [1]="local_flask_resistances_+%_while_healing" } }, - [737]={ + [744]={ [1]={ [1]={ [1]={ @@ -13891,7 +14251,7 @@ return { [1]="local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing" } }, - [738]={ + [745]={ [1]={ [1]={ limit={ @@ -13907,7 +14267,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [739]={ + [746]={ [1]={ [1]={ [1]={ @@ -13927,7 +14287,7 @@ return { [1]="local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing" } }, - [740]={ + [747]={ [1]={ [1]={ limit={ @@ -13943,7 +14303,7 @@ return { [1]="local_flask_adds_knockback_while_healing" } }, - [741]={ + [748]={ [1]={ [1]={ limit={ @@ -13959,7 +14319,7 @@ return { [1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing" } }, - [742]={ + [749]={ [1]={ [1]={ limit={ @@ -13975,7 +14335,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing" } }, - [743]={ + [750]={ [1]={ [1]={ limit={ @@ -13991,7 +14351,7 @@ return { [1]="local_unique_flask_avoid_chill_%_while_healing" } }, - [744]={ + [751]={ [1]={ [1]={ limit={ @@ -14007,7 +14367,7 @@ return { [1]="local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect" } }, - [745]={ + [752]={ [1]={ [1]={ limit={ @@ -14023,7 +14383,7 @@ return { [1]="local_unique_flask_avoid_freeze_%_while_healing" } }, - [746]={ + [753]={ [1]={ [1]={ limit={ @@ -14039,7 +14399,7 @@ return { [1]="local_flask_life_gain_on_skill_use_%_mana_cost" } }, - [747]={ + [754]={ [1]={ [1]={ limit={ @@ -14055,7 +14415,7 @@ return { [1]="local_avoid_chill_%_during_flask_effect" } }, - [748]={ + [755]={ [1]={ [1]={ limit={ @@ -14071,7 +14431,7 @@ return { [1]="local_avoid_freeze_%_during_flask_effect" } }, - [749]={ + [756]={ [1]={ [1]={ limit={ @@ -14087,7 +14447,7 @@ return { [1]="local_avoid_ignite_%_during_flask_effect" } }, - [750]={ + [757]={ [1]={ [1]={ limit={ @@ -14103,7 +14463,7 @@ return { [1]="local_avoid_shock_%_during_flask_effect" } }, - [751]={ + [758]={ [1]={ [1]={ limit={ @@ -14119,7 +14479,7 @@ return { [1]="local_chance_to_poison_on_hit_%_during_flask_effect" } }, - [752]={ + [759]={ [1]={ [1]={ limit={ @@ -14135,7 +14495,7 @@ return { [1]="local_flask_additional_physical_damage_reduction_%" } }, - [753]={ + [760]={ [1]={ [1]={ limit={ @@ -14151,7 +14511,7 @@ return { [1]="local_flask_adds_knockback_during_flask_effect" } }, - [754]={ + [761]={ [1]={ [1]={ limit={ @@ -14167,7 +14527,7 @@ return { [1]="local_flask_area_of_effect_+%_during_flask_effect" } }, - [755]={ + [762]={ [1]={ [1]={ limit={ @@ -14183,7 +14543,7 @@ return { [1]="local_flask_avoid_stun_chance_%_during_flask_effect" } }, - [756]={ + [763]={ [1]={ [1]={ limit={ @@ -14199,7 +14559,7 @@ return { [1]="local_flask_cannot_be_stunned_during_flask_effect" } }, - [757]={ + [764]={ [1]={ [1]={ [1]={ @@ -14219,7 +14579,7 @@ return { [1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect" } }, - [758]={ + [765]={ [1]={ [1]={ limit={ @@ -14248,7 +14608,7 @@ return { [1]="local_flask_critical_strike_chance_+%_during_flask_effect" } }, - [759]={ + [766]={ [1]={ [1]={ limit={ @@ -14264,7 +14624,7 @@ return { [1]="local_flask_culling_strike_during_flask_effect" } }, - [760]={ + [767]={ [1]={ [1]={ limit={ @@ -14289,7 +14649,7 @@ return { [1]="local_flask_damage_taken_goes_to_life_over_4_seconds_%_during_effect" } }, - [761]={ + [768]={ [1]={ [1]={ limit={ @@ -14305,7 +14665,7 @@ return { [1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground" } }, - [762]={ + [769]={ [1]={ [1]={ limit={ @@ -14321,7 +14681,7 @@ return { [1]="local_flask_gain_endurance_charge_per_second_during_flask_effect" } }, - [763]={ + [770]={ [1]={ [1]={ limit={ @@ -14337,7 +14697,23 @@ return { [1]="local_flask_gain_x_rage_when_hit_during_effect" } }, - [764]={ + [771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills have {0}% longer Perfect Timing window during effect" + } + }, + stats={ + [1]="local_flask_grant_perfect_timing_window_+%_during_flask_effect" + } + }, + [772]={ [1]={ [1]={ limit={ @@ -14353,7 +14729,7 @@ return { [1]="local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect" } }, - [765]={ + [773]={ [1]={ [1]={ limit={ @@ -14369,7 +14745,7 @@ return { [1]="local_flask_immune_to_damage" } }, - [766]={ + [774]={ [1]={ [1]={ limit={ @@ -14385,7 +14761,7 @@ return { [1]="local_flask_immune_to_freeze_and_chill_during_flask_effect" } }, - [767]={ + [775]={ [1]={ [1]={ limit={ @@ -14401,7 +14777,7 @@ return { [1]="local_flask_immune_to_poison_during_flask_effect" } }, - [768]={ + [776]={ [1]={ [1]={ limit={ @@ -14417,7 +14793,7 @@ return { [1]="local_flask_immune_to_shock_during_flask_effect" } }, - [769]={ + [777]={ [1]={ [1]={ limit={ @@ -14433,7 +14809,7 @@ return { [1]="local_flask_is_petrified" } }, - [770]={ + [778]={ [1]={ [1]={ limit={ @@ -14462,7 +14838,7 @@ return { [1]="local_flask_item_found_rarity_+%_during_flask_effect" } }, - [771]={ + [779]={ [1]={ [1]={ limit={ @@ -14478,7 +14854,7 @@ return { [1]="local_flask_life_leech_is_instant_during_flask_effect" } }, - [772]={ + [780]={ [1]={ [1]={ [1]={ @@ -14498,7 +14874,7 @@ return { [1]="local_flask_life_regeneration_per_minute_%_during_flask_effect" } }, - [773]={ + [781]={ [1]={ [1]={ limit={ @@ -14514,7 +14890,7 @@ return { [1]="local_flask_no_inherent_rage_loss_during_effect" } }, - [774]={ + [782]={ [1]={ [1]={ limit={ @@ -14530,7 +14906,7 @@ return { [1]="local_flask_no_mana_recovery_during_effect" } }, - [775]={ + [783]={ [1]={ [1]={ limit={ @@ -14555,7 +14931,7 @@ return { [1]="local_flask_non_damaging_ailment_effect_+%_during_flask_effect" } }, - [776]={ + [784]={ [1]={ [1]={ limit={ @@ -14580,7 +14956,7 @@ return { [1]="local_flask_number_of_additional_projectiles_during_flask_effect" } }, - [777]={ + [785]={ [1]={ [1]={ limit={ @@ -14613,7 +14989,7 @@ return { [1]="local_flask_reflect_damage_taken_+%_during_flask_effect" } }, - [778]={ + [786]={ [1]={ [1]={ limit={ @@ -14642,7 +15018,7 @@ return { [1]="local_flask_skill_mana_cost_+%_during_flask_effect" } }, - [779]={ + [787]={ [1]={ [1]={ [1]={ @@ -14675,7 +15051,7 @@ return { [1]="local_flask_vaal_souls_gained_per_minute_during_effect" } }, - [780]={ + [788]={ [1]={ [1]={ limit={ @@ -14684,14 +15060,14 @@ return { [2]="#" } }, - text="Your Critical Hits do not deal extra Damage during Effect" + text="You have no Critical Damage Bonus during Effect" } }, stats={ [1]="local_no_critical_strike_multiplier_during_flask_effect" } }, - [781]={ + [789]={ [1]={ [1]={ limit={ @@ -14720,7 +15096,7 @@ return { [1]="local_poison_duration_+%_during_flask_effect" } }, - [782]={ + [790]={ [1]={ [1]={ limit={ @@ -14749,7 +15125,7 @@ return { [1]="local_self_bleed_duration_+%_during_flask_effect" } }, - [783]={ + [791]={ [1]={ [1]={ limit={ @@ -14782,7 +15158,7 @@ return { [1]="local_self_chill_effect_+%_during_flask_effect" } }, - [784]={ + [792]={ [1]={ [1]={ limit={ @@ -14815,7 +15191,7 @@ return { [1]="local_self_curse_effect_+%_during_flask_effect" } }, - [785]={ + [793]={ [1]={ [1]={ limit={ @@ -14844,7 +15220,7 @@ return { [1]="local_self_freeze_duration_+%_during_flask_effect" } }, - [786]={ + [794]={ [1]={ [1]={ limit={ @@ -14873,7 +15249,7 @@ return { [1]="local_self_ignite_duration_+%_during_flask_effect" } }, - [787]={ + [795]={ [1]={ [1]={ limit={ @@ -14902,7 +15278,7 @@ return { [1]="local_self_poison_duration_+%_during_flask_effect" } }, - [788]={ + [796]={ [1]={ [1]={ limit={ @@ -14931,36 +15307,7 @@ return { [1]="local_self_shock_effect_+%_during_flask_effect" } }, - [789]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more Ward during Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less Ward during Effect" - } - }, - stats={ - [1]="local_unique_expedition_flask_ward_+%_final_during_flask_effect" - } - }, - [790]={ + [797]={ [1]={ [1]={ limit={ @@ -14976,7 +15323,7 @@ return { [1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing" } }, - [791]={ + [798]={ [1]={ [1]={ limit={ @@ -14992,7 +15339,7 @@ return { [1]="local_unique_flask_block_%_while_healing" } }, - [792]={ + [799]={ [1]={ [1]={ limit={ @@ -15008,7 +15355,7 @@ return { [1]="local_unique_flask_cannot_recover_life_while_healing" } }, - [793]={ + [800]={ [1]={ [1]={ limit={ @@ -15024,7 +15371,7 @@ return { [1]="local_unique_flask_charges_gained_+%_during_flask_effect" } }, - [794]={ + [801]={ [1]={ [1]={ limit={ @@ -15053,7 +15400,7 @@ return { [1]="local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect" } }, - [795]={ + [802]={ [1]={ [1]={ limit={ @@ -15082,7 +15429,7 @@ return { [1]="local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect" } }, - [796]={ + [803]={ [1]={ [1]={ limit={ @@ -15111,7 +15458,7 @@ return { [1]="local_unique_flask_damage_over_time_+%_during_flask_effect" } }, - [797]={ + [804]={ [1]={ [1]={ limit={ @@ -15140,7 +15487,7 @@ return { [1]="local_unique_flask_damage_+%_vs_demons_while_healing" } }, - [798]={ + [805]={ [1]={ [1]={ limit={ @@ -15169,7 +15516,7 @@ return { [1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing" } }, - [799]={ + [806]={ [1]={ [1]={ limit={ @@ -15185,7 +15532,7 @@ return { [1]="local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing" } }, - [800]={ + [807]={ [1]={ [1]={ limit={ @@ -15201,7 +15548,7 @@ return { [1]="local_unique_flask_item_quantity_+%_while_healing" } }, - [801]={ + [808]={ [1]={ [1]={ limit={ @@ -15217,7 +15564,7 @@ return { [1]="local_unique_flask_item_rarity_+%_while_healing" } }, - [802]={ + [809]={ [1]={ [1]={ limit={ @@ -15233,7 +15580,7 @@ return { [1]="local_unique_flask_kiaras_determination" } }, - [803]={ + [810]={ [1]={ [1]={ limit={ @@ -15249,7 +15596,7 @@ return { [1]="local_unique_flask_light_radius_+%_while_healing" } }, - [804]={ + [811]={ [1]={ [1]={ limit={ @@ -15265,7 +15612,7 @@ return { [1]="local_unique_flask_no_mana_cost_while_healing" } }, - [805]={ + [812]={ [1]={ [1]={ limit={ @@ -15281,7 +15628,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing" } }, - [806]={ + [813]={ [1]={ [1]={ limit={ @@ -15297,7 +15644,7 @@ return { [1]="local_unique_flask_resist_all_elements_%_during_flask_effect" } }, - [807]={ + [814]={ [1]={ [1]={ limit={ @@ -15326,7 +15673,7 @@ return { [1]="local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect" } }, - [808]={ + [815]={ [1]={ [1]={ limit={ @@ -15355,7 +15702,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect" } }, - [809]={ + [816]={ [1]={ [1]={ limit={ @@ -15384,7 +15731,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect" } }, - [810]={ + [817]={ [1]={ [1]={ limit={ @@ -15400,7 +15747,7 @@ return { [1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect" } }, - [811]={ + [818]={ [1]={ [1]={ limit={ @@ -15433,7 +15780,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect" } }, - [812]={ + [819]={ [1]={ [1]={ limit={ @@ -15466,7 +15813,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect" } }, - [813]={ + [820]={ [1]={ [1]={ limit={ @@ -15482,7 +15829,7 @@ return { [1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect" } }, - [814]={ + [821]={ [1]={ [1]={ [1]={ @@ -15502,7 +15849,7 @@ return { [1]="local_chaos_damage_taken_per_minute_during_flask_effect" } }, - [815]={ + [822]={ [1]={ [1]={ limit={ @@ -15531,7 +15878,7 @@ return { [1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%" } }, - [816]={ + [823]={ [1]={ [1]={ limit={ @@ -15547,7 +15894,7 @@ return { [1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect" } }, - [817]={ + [824]={ [1]={ [1]={ limit={ @@ -15563,7 +15910,7 @@ return { [1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect" } }, - [818]={ + [825]={ [1]={ [1]={ limit={ @@ -15579,7 +15926,7 @@ return { [1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect" } }, - [819]={ + [826]={ [1]={ [1]={ limit={ @@ -15608,7 +15955,7 @@ return { [1]="local_attack_cast_movement_speed_+%_during_flask_effect" } }, - [820]={ + [827]={ [1]={ [1]={ limit={ @@ -15637,7 +15984,7 @@ return { [1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect" } }, - [821]={ + [828]={ [1]={ [1]={ limit={ @@ -15653,7 +16000,7 @@ return { [1]="local_flask_prevents_death_while_healing" } }, - [822]={ + [829]={ [1]={ [1]={ limit={ @@ -15686,7 +16033,7 @@ return { [1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type" } }, - [823]={ + [830]={ [1]={ [1]={ limit={ @@ -15702,7 +16049,7 @@ return { [1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type" } }, - [824]={ + [831]={ [1]={ [1]={ limit={ @@ -15718,7 +16065,7 @@ return { [1]="local_flask_cannot_gain_charges_during_flask_effect" } }, - [825]={ + [832]={ [1]={ [1]={ limit={ @@ -15734,7 +16081,7 @@ return { [1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [826]={ + [833]={ [1]={ [1]={ limit={ @@ -15750,7 +16097,7 @@ return { [1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [827]={ + [834]={ [1]={ [1]={ limit={ @@ -15766,7 +16113,7 @@ return { [1]="local_flask_zealots_oath" } }, - [828]={ + [835]={ [1]={ [1]={ limit={ @@ -15782,7 +16129,7 @@ return { [1]="local_grant_eldritch_battery_during_flask_effect" } }, - [829]={ + [836]={ [1]={ [1]={ limit={ @@ -15798,7 +16145,7 @@ return { [1]="map_item_level_override" } }, - [830]={ + [837]={ [1]={ [1]={ limit={ @@ -15814,7 +16161,7 @@ return { [1]="local_unique_jewel_nearby_disconnected_passives_can_be_allocated" } }, - [831]={ + [838]={ [1]={ [1]={ limit={ @@ -15830,7 +16177,7 @@ return { [1]="local_weapon_uses_both_hands" } }, - [832]={ + [839]={ [1]={ [1]={ limit={ @@ -15859,7 +16206,7 @@ return { [1]="local_bleeding_effect_+%" } }, - [833]={ + [840]={ [1]={ [1]={ limit={ @@ -15875,7 +16222,7 @@ return { [1]="local_cannot_be_used_with_chaos_innoculation" } }, - [834]={ + [841]={ [1]={ [1]={ limit={ @@ -15891,7 +16238,7 @@ return { [1]="local_dexterity_requirement_+" } }, - [835]={ + [842]={ [1]={ [1]={ limit={ @@ -15929,7 +16276,7 @@ return { [1]="local_dexterity_requirement_+%" } }, - [836]={ + [843]={ [1]={ [1]={ limit={ @@ -15945,7 +16292,7 @@ return { [1]="local_intelligence_requirement_+" } }, - [837]={ + [844]={ [1]={ [1]={ limit={ @@ -15983,7 +16330,7 @@ return { [1]="local_intelligence_requirement_+%" } }, - [838]={ + [845]={ [1]={ [1]={ limit={ @@ -15999,7 +16346,7 @@ return { [1]="local_level_requirement_-" } }, - [839]={ + [846]={ [1]={ [1]={ limit={ @@ -16015,7 +16362,7 @@ return { [1]="local_no_attribute_requirements" } }, - [840]={ + [847]={ [1]={ [1]={ limit={ @@ -16031,7 +16378,7 @@ return { [1]="local_no_energy_shield" } }, - [841]={ + [848]={ [1]={ [1]={ limit={ @@ -16060,7 +16407,7 @@ return { [1]="local_poison_effect_+%" } }, - [842]={ + [849]={ [1]={ [1]={ limit={ @@ -16076,7 +16423,7 @@ return { [1]="local_strength_and_intelligence_requirement_+" } }, - [843]={ + [850]={ [1]={ [1]={ limit={ @@ -16092,7 +16439,7 @@ return { [1]="local_strength_requirement_+" } }, - [844]={ + [851]={ [1]={ [1]={ limit={ @@ -16130,7 +16477,68 @@ return { [1]="local_strength_requirement_+%" } }, - [845]={ + [852]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + }, + [4]={ + [1]="#", + [2]="#" + }, + [5]={ + [1]=0, + [2]=0 + } + }, + text="Has {0} to {1} Physical damage, {2:+d} to {3:+d} per Boss's Face Broken" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + }, + [4]={ + [1]="#", + [2]="#" + }, + [5]={ + [1]=1, + [2]=1 + } + }, + text="Has {0} to {1} Fire damage, {2:+d} to {3:+d} per Boss's Face Broken" + } + }, + stats={ + [1]="local_unique_facebreaker_minimum_base_damage", + [2]="local_unique_facebreaker_maximum_base_damage", + [3]="local_unique_facebreaker_minimum_base_damage_per_broken_face", + [4]="local_unique_facebreaker_maximum_base_damage_per_broken_face", + [5]="local_unique_facebreaker_damage_is_fire" + } + }, + [853]={ [1]={ [1]={ limit={ @@ -16211,7 +16619,7 @@ return { [2]="local_weapon_no_physical_damage" } }, - [846]={ + [854]={ [1]={ [1]={ limit={ @@ -16232,7 +16640,7 @@ return { [2]="local_maximum_added_physical_damage" } }, - [847]={ + [855]={ [1]={ [1]={ limit={ @@ -16253,7 +16661,7 @@ return { [2]="local_maximum_added_fire_damage" } }, - [848]={ + [856]={ [1]={ [1]={ limit={ @@ -16274,7 +16682,7 @@ return { [2]="local_maximum_added_cold_damage" } }, - [849]={ + [857]={ [1]={ [1]={ limit={ @@ -16295,7 +16703,7 @@ return { [2]="local_maximum_added_lightning_damage" } }, - [850]={ + [858]={ [1]={ [1]={ limit={ @@ -16311,7 +16719,7 @@ return { [1]="local_accuracy_rating" } }, - [851]={ + [859]={ [1]={ [1]={ limit={ @@ -16340,7 +16748,7 @@ return { [1]="base_movement_velocity_+%" } }, - [852]={ + [860]={ [1]={ [1]={ limit={ @@ -16369,7 +16777,7 @@ return { [1]="skill_speed_+%" } }, - [853]={ + [861]={ [1]={ [1]={ limit={ @@ -16385,7 +16793,7 @@ return { [1]="local_additional_block_chance_%" } }, - [854]={ + [862]={ [1]={ [1]={ limit={ @@ -16414,7 +16822,7 @@ return { [1]="local_block_chance_+%" } }, - [855]={ + [863]={ [1]={ [1]={ limit={ @@ -16430,7 +16838,7 @@ return { [1]="local_base_physical_damage_reduction_rating" } }, - [856]={ + [864]={ [1]={ [1]={ limit={ @@ -16446,7 +16854,23 @@ return { [1]="local_base_evasion_rating" } }, - [857]={ + [865]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Has {0:+d} to Evasion Rating per player level" + } + }, + stats={ + [1]="local_hand_wraps_evasion_rating_per_level" + } + }, + [866]={ [1]={ [1]={ limit={ @@ -16462,7 +16886,39 @@ return { [1]="local_energy_shield" } }, - [858]={ + [867]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Has {0:+d} to maximum Energy Shield per player level" + } + }, + stats={ + [1]="local_hand_wraps_energy_shield_per_level" + } + }, + [868]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to maximum Runic Ward" + } + }, + stats={ + [1]="local_ward" + } + }, + [869]={ [1]={ [1]={ limit={ @@ -16491,7 +16947,23 @@ return { [1]="local_physical_damage_reduction_rating_+%" } }, - [859]={ + [870]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Has {0:+d} to maximum Runic Ward per player level" + } + }, + stats={ + [1]="local_hand_wraps_ward_per_level" + } + }, + [871]={ [1]={ [1]={ limit={ @@ -16520,7 +16992,7 @@ return { [1]="local_evasion_rating_+%" } }, - [860]={ + [872]={ [1]={ [1]={ limit={ @@ -16549,7 +17021,7 @@ return { [1]="local_energy_shield_+%" } }, - [861]={ + [873]={ [1]={ [1]={ limit={ @@ -16578,7 +17050,7 @@ return { [1]="local_armour_and_evasion_+%" } }, - [862]={ + [874]={ [1]={ [1]={ limit={ @@ -16607,7 +17079,7 @@ return { [1]="local_armour_and_energy_shield_+%" } }, - [863]={ + [875]={ [1]={ [1]={ limit={ @@ -16636,7 +17108,36 @@ return { [1]="local_evasion_and_energy_shield_+%" } }, - [864]={ + [876]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Global Evasion Rating and Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Global Evasion Rating and Energy Shield" + } + }, + stats={ + [1]="hand_wraps_evasion_rating_and_energy_shield_+%_final" + } + }, + [877]={ [1]={ [1]={ limit={ @@ -16665,7 +17166,36 @@ return { [1]="local_armour_and_evasion_and_energy_shield_+%" } }, - [865]={ + [878]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Runic Ward" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Runic Ward" + } + }, + stats={ + [1]="local_ward_+%" + } + }, + [879]={ [1]={ [1]={ limit={ @@ -16681,7 +17211,7 @@ return { [1]="local_spirit" } }, - [866]={ + [880]={ [1]={ [1]={ limit={ @@ -16710,7 +17240,7 @@ return { [1]="local_spirit_+%" } }, - [867]={ + [881]={ [1]={ [1]={ limit={ @@ -16731,7 +17261,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [868]={ + [882]={ [1]={ [1]={ limit={ @@ -16752,7 +17282,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [869]={ + [883]={ [1]={ [1]={ limit={ @@ -16773,7 +17303,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [870]={ + [884]={ [1]={ [1]={ limit={ @@ -16794,7 +17324,23 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [871]={ + [885]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Physical Damage" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_physical_with_attacks" + } + }, + [886]={ [1]={ [1]={ limit={ @@ -16810,7 +17356,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire" } }, - [872]={ + [887]={ [1]={ [1]={ limit={ @@ -16826,7 +17372,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_spells" } }, - [873]={ + [888]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Fire Damage" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" + } + }, + [889]={ [1]={ [1]={ limit={ @@ -16842,7 +17404,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold" } }, - [874]={ + [890]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Damage as Extra Cold Damage" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" + } + }, + [891]={ [1]={ [1]={ limit={ @@ -16858,7 +17436,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_spells" } }, - [875]={ + [892]={ [1]={ [1]={ limit={ @@ -16874,7 +17452,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning" } }, - [876]={ + [893]={ [1]={ [1]={ limit={ @@ -16890,7 +17468,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_spells" } }, - [877]={ + [894]={ [1]={ [1]={ limit={ @@ -16919,7 +17497,7 @@ return { [1]="spell_damage_+%" } }, - [878]={ + [895]={ [1]={ [1]={ limit={ @@ -16948,7 +17526,7 @@ return { [1]="trap_damage_+%" } }, - [879]={ + [896]={ [1]={ [1]={ limit={ @@ -16977,7 +17555,7 @@ return { [1]="fire_damage_+%" } }, - [880]={ + [897]={ [1]={ [1]={ limit={ @@ -17006,7 +17584,7 @@ return { [1]="cold_damage_+%" } }, - [881]={ + [898]={ [1]={ [1]={ limit={ @@ -17035,7 +17613,7 @@ return { [1]="lightning_damage_+%" } }, - [882]={ + [899]={ [1]={ [1]={ limit={ @@ -17064,7 +17642,7 @@ return { [1]="chaos_damage_+%" } }, - [883]={ + [900]={ [1]={ [1]={ limit={ @@ -17093,7 +17671,7 @@ return { [1]="elemental_damage_with_attack_skills_+%" } }, - [884]={ + [901]={ [1]={ [1]={ limit={ @@ -17122,7 +17700,7 @@ return { [1]="spell_physical_damage_+%" } }, - [885]={ + [902]={ [1]={ [1]={ limit={ @@ -17151,7 +17729,7 @@ return { [1]="damage_+%_with_bow_skills" } }, - [886]={ + [903]={ [1]={ [1]={ limit={ @@ -17167,7 +17745,7 @@ return { [1]="accuracy_rating" } }, - [887]={ + [904]={ [1]={ [1]={ limit={ @@ -17183,7 +17761,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [888]={ + [905]={ [1]={ [1]={ limit={ @@ -17212,7 +17790,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [889]={ + [906]={ [1]={ [1]={ limit={ @@ -17228,7 +17806,7 @@ return { [1]="base_evasion_rating" } }, - [890]={ + [907]={ [1]={ [1]={ limit={ @@ -17257,7 +17835,7 @@ return { [1]="evasion_rating_+%" } }, - [891]={ + [908]={ [1]={ [1]={ limit={ @@ -17273,7 +17851,7 @@ return { [1]="base_maximum_energy_shield" } }, - [892]={ + [909]={ [1]={ [1]={ limit={ @@ -17302,7 +17880,7 @@ return { [1]="maximum_energy_shield_+%" } }, - [893]={ + [910]={ [1]={ [1]={ limit={ @@ -17318,7 +17896,40 @@ return { [1]="base_maximum_life" } }, - [894]={ + [911]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage taken while on Low Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage taken while on Low Life" + } + }, + stats={ + [1]="hand_wraps_damage_taken_+%_final_on_low_life" + } + }, + [912]={ [1]={ [1]={ limit={ @@ -17347,7 +17958,52 @@ return { [1]="maximum_life_+%" } }, - [895]={ + [913]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to maximum Runic Ward" + } + }, + stats={ + [1]="base_maximum_ward" + } + }, + [914]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Runic Ward" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Runic Ward" + } + }, + stats={ + [1]="maximum_ward_+%" + } + }, + [915]={ [1]={ [1]={ limit={ @@ -17363,7 +18019,36 @@ return { [1]="base_maximum_mana" } }, - [896]={ + [916]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Attack damage while on Low Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Attack damage while on Low Mana" + } + }, + stats={ + [1]="hand_wraps_attack_damage_+%_final_on_low_mana" + } + }, + [917]={ [1]={ [1]={ limit={ @@ -17392,7 +18077,7 @@ return { [1]="maximum_mana_+%" } }, - [897]={ + [918]={ [1]={ [1]={ limit={ @@ -17408,7 +18093,7 @@ return { [1]="base_spirit" } }, - [898]={ + [919]={ [1]={ [1]={ limit={ @@ -17424,7 +18109,7 @@ return { [1]="base_spirit_from_equipment" } }, - [899]={ + [920]={ [1]={ [1]={ limit={ @@ -17453,7 +18138,7 @@ return { [1]="base_projectile_speed_+%" } }, - [900]={ + [921]={ [1]={ [1]={ limit={ @@ -17482,7 +18167,7 @@ return { [1]="flask_life_recovery_rate_+%" } }, - [901]={ + [922]={ [1]={ [1]={ limit={ @@ -17511,7 +18196,7 @@ return { [1]="flask_mana_recovery_rate_+%" } }, - [902]={ + [923]={ [1]={ [1]={ limit={ @@ -17540,7 +18225,23 @@ return { [1]="charm_duration_+%" } }, - [903]={ + [924]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Corrupted Charms effect duration" + } + }, + stats={ + [1]="corrupted_charms_have_+%_duration" + } + }, + [925]={ [1]={ [1]={ limit={ @@ -17569,7 +18270,39 @@ return { [1]="flask_duration_+%" } }, - [904]={ + [926]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Charges consumed by used Charms are granted to your Life Flasks" + } + }, + stats={ + [1]="charm_charges_used_%_granted_to_life_flasks" + } + }, + [927]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Charges consumed by used Life Flasks are granted to your Charms" + } + }, + stats={ + [1]="life_flask_charges_used_%_granted_to_charms" + } + }, + [928]={ [1]={ [1]={ limit={ @@ -17585,7 +18318,7 @@ return { [1]="physical_damage_to_return_to_melee_attacker" } }, - [905]={ + [929]={ [1]={ [1]={ limit={ @@ -17614,7 +18347,7 @@ return { [1]="allies_in_presence_damage_+%" } }, - [906]={ + [930]={ [1]={ [1]={ limit={ @@ -17635,7 +18368,7 @@ return { [2]="allies_in_presence_attack_maximum_added_physical_damage" } }, - [907]={ + [931]={ [1]={ [1]={ limit={ @@ -17656,7 +18389,7 @@ return { [2]="allies_in_presence_attack_maximum_added_fire_damage" } }, - [908]={ + [932]={ [1]={ [1]={ limit={ @@ -17677,7 +18410,7 @@ return { [2]="allies_in_presence_attack_maximum_added_cold_damage" } }, - [909]={ + [933]={ [1]={ [1]={ limit={ @@ -17698,7 +18431,7 @@ return { [2]="allies_in_presence_attack_maximum_added_lightning_damage" } }, - [910]={ + [934]={ [1]={ [1]={ limit={ @@ -17719,7 +18452,7 @@ return { [2]="allies_in_presence_attack_maximum_added_chaos_damage" } }, - [911]={ + [935]={ [1]={ [1]={ limit={ @@ -17748,7 +18481,7 @@ return { [1]="allies_in_presence_physical_damage_+%" } }, - [912]={ + [936]={ [1]={ [1]={ limit={ @@ -17777,7 +18510,7 @@ return { [1]="allies_in_presence_elemental_damage_+%" } }, - [913]={ + [937]={ [1]={ [1]={ limit={ @@ -17806,7 +18539,7 @@ return { [1]="allies_in_presence_chaos_damage_+%" } }, - [914]={ + [938]={ [1]={ [1]={ limit={ @@ -17822,7 +18555,7 @@ return { [1]="allies_in_presence_accuracy_rating" } }, - [915]={ + [939]={ [1]={ [1]={ limit={ @@ -17851,7 +18584,7 @@ return { [1]="allies_in_presence_critical_strike_chance_+%" } }, - [916]={ + [940]={ [1]={ [1]={ limit={ @@ -17880,7 +18613,7 @@ return { [1]="allies_in_presence_critical_strike_multiplier_+" } }, - [917]={ + [941]={ [1]={ [1]={ limit={ @@ -17909,7 +18642,7 @@ return { [1]="allies_in_presence_attack_speed_+%" } }, - [918]={ + [942]={ [1]={ [1]={ limit={ @@ -17938,7 +18671,7 @@ return { [1]="allies_in_presence_cast_speed_+%" } }, - [919]={ + [943]={ [1]={ [1]={ limit={ @@ -17954,7 +18687,7 @@ return { [1]="allies_in_presence_resist_all_elements_%" } }, - [920]={ + [944]={ [1]={ [1]={ [1]={ @@ -17974,7 +18707,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute" } }, - [921]={ + [945]={ [1]={ [1]={ [1]={ @@ -17994,7 +18727,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%" } }, - [922]={ + [946]={ [1]={ [1]={ [1]={ @@ -18014,7 +18747,7 @@ return { [1]="allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%" } }, - [923]={ + [947]={ [1]={ [1]={ limit={ @@ -18030,7 +18763,7 @@ return { [1]="total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence" } }, - [924]={ + [948]={ [1]={ [1]={ limit={ @@ -18046,7 +18779,7 @@ return { [1]="charm_gain_X_guard_for_duration" } }, - [925]={ + [949]={ [1]={ [1]={ limit={ @@ -18062,7 +18795,7 @@ return { [1]="charm_recover_X_life_when_used" } }, - [926]={ + [950]={ [1]={ [1]={ limit={ @@ -18078,7 +18811,7 @@ return { [1]="charm_recover_X_mana_when_used" } }, - [927]={ + [951]={ [1]={ [1]={ limit={ @@ -18107,7 +18840,7 @@ return { [1]="local_charm_duration_+%" } }, - [928]={ + [952]={ [1]={ [1]={ limit={ @@ -18123,7 +18856,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_mana" } }, - [929]={ + [953]={ [1]={ [1]={ limit={ @@ -18152,7 +18885,7 @@ return { [1]="local_flask_amount_to_recover_+%" } }, - [930]={ + [954]={ [1]={ [1]={ limit={ @@ -18168,7 +18901,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_life" } }, - [931]={ + [955]={ [1]={ [1]={ limit={ @@ -18236,7 +18969,7 @@ return { [2]="local_flask_consume_flask_duration_+%_when_used" } }, - [932]={ + [956]={ [1]={ [1]={ limit={ @@ -18265,7 +18998,7 @@ return { [1]="local_flask_life_to_recover_+%" } }, - [933]={ + [957]={ [1]={ [1]={ limit={ @@ -18294,7 +19027,7 @@ return { [1]="local_flask_mana_to_recover_+%" } }, - [934]={ + [958]={ [1]={ [1]={ limit={ @@ -18310,7 +19043,7 @@ return { [1]="local_flask_minion_heal_%" } }, - [935]={ + [959]={ [1]={ [1]={ limit={ @@ -18326,7 +19059,7 @@ return { [1]="local_flask_recovers_instantly" } }, - [936]={ + [960]={ [1]={ [1]={ limit={ @@ -18351,7 +19084,7 @@ return { [1]="local_flask_recovery_amount_%_to_recover_instantly" } }, - [937]={ + [961]={ [1]={ [1]={ limit={ @@ -18380,7 +19113,7 @@ return { [1]="local_flask_recovery_speed_+%" } }, - [938]={ + [962]={ [1]={ [1]={ limit={ @@ -18396,7 +19129,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_mana_on_use" } }, - [939]={ + [963]={ [1]={ [1]={ limit={ @@ -18412,7 +19145,7 @@ return { [1]="local_flask_removes_%_of_mana_recovery_from_life_on_use" } }, - [940]={ + [964]={ [1]={ [1]={ limit={ @@ -18441,7 +19174,65 @@ return { [1]="base_item_found_rarity_+%" } }, - [941]={ + [965]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply" + } + }, + stats={ + [1]="unique_body_armour_item_rarity_only_+%" + } + }, + [966]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply" + } + }, + stats={ + [1]="unique_gloves_item_rarity_only_+%" + } + }, + [967]={ [1]={ [1]={ [1]={ @@ -18461,7 +19252,7 @@ return { [1]="local_critical_strike_chance" } }, - [942]={ + [968]={ [1]={ [1]={ limit={ @@ -18477,7 +19268,7 @@ return { [1]="local_critical_strike_multiplier_+" } }, - [943]={ + [969]={ [1]={ [1]={ limit={ @@ -18506,7 +19297,7 @@ return { [1]="local_attack_speed_+%" } }, - [944]={ + [970]={ [1]={ [1]={ limit={ @@ -18535,7 +19326,7 @@ return { [1]="local_reload_speed_+%" } }, - [945]={ + [971]={ [1]={ [1]={ limit={ @@ -18564,7 +19355,23 @@ return { [1]="local_attribute_requirements_+%" } }, - [946]={ + [972]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Skills" + } + }, + stats={ + [1]="all_skill_gem_level_+" + } + }, + [973]={ [1]={ [1]={ limit={ @@ -18580,7 +19387,23 @@ return { [1]="spell_skill_gem_level_+" } }, - [947]={ + [974]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Corrupted Skill Gems" + } + }, + stats={ + [1]="corrupted_skill_gem_level_+" + } + }, + [975]={ [1]={ [1]={ limit={ @@ -18596,7 +19419,103 @@ return { [1]="corrupted_spell_skill_gem_level_+" } }, - [948]={ + [976]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Skills with a Strength requirement" + } + }, + stats={ + [1]="strength_skill_gem_level_+" + } + }, + [977]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Skills with a Dexterity requirement" + } + }, + stats={ + [1]="dexterity_skill_gem_level_+" + } + }, + [978]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Skills with an Intelligence requirement" + } + }, + stats={ + [1]="intelligence_skill_gem_level_+" + } + }, + [979]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Physical Skills" + } + }, + stats={ + [1]="physical_skill_gem_level_+" + } + }, + [980]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Elemental Skills" + } + }, + stats={ + [1]="elemental_skill_gem_level_+" + } + }, + [981]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Fire Skills" + } + }, + stats={ + [1]="fire_skill_gem_level_+" + } + }, + [982]={ [1]={ [1]={ limit={ @@ -18612,7 +19531,23 @@ return { [1]="fire_spell_skill_gem_level_+" } }, - [949]={ + [983]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Cold Skills" + } + }, + stats={ + [1]="cold_skill_gem_level_+" + } + }, + [984]={ [1]={ [1]={ limit={ @@ -18628,7 +19563,23 @@ return { [1]="cold_spell_skill_gem_level_+" } }, - [950]={ + [985]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Lightning Skills" + } + }, + stats={ + [1]="lightning_skill_gem_level_+" + } + }, + [986]={ [1]={ [1]={ limit={ @@ -18644,7 +19595,23 @@ return { [1]="lightning_spell_skill_gem_level_+" } }, - [951]={ + [987]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Chaos Skills" + } + }, + stats={ + [1]="chaos_skill_gem_level_+" + } + }, + [988]={ [1]={ [1]={ limit={ @@ -18660,7 +19627,7 @@ return { [1]="chaos_spell_skill_gem_level_+" } }, - [952]={ + [989]={ [1]={ [1]={ limit={ @@ -18676,7 +19643,7 @@ return { [1]="melee_skill_gem_level_+" } }, - [953]={ + [990]={ [1]={ [1]={ limit={ @@ -18692,7 +19659,7 @@ return { [1]="attack_skill_gem_level_+" } }, - [954]={ + [991]={ [1]={ [1]={ limit={ @@ -18708,7 +19675,55 @@ return { [1]="projectile_skill_gem_level_+" } }, - [955]={ + [992]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Bow Skill Gems" + } + }, + stats={ + [1]="bow_skill_gem_level_+" + } + }, + [993]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Crossbow Skill Gems" + } + }, + stats={ + [1]="crossbow_skill_gem_level_+" + } + }, + [994]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Curse Skills" + } + }, + stats={ + [1]="curse_skill_gem_level_+" + } + }, + [995]={ [1]={ [1]={ limit={ @@ -18724,7 +19739,23 @@ return { [1]="minion_skill_gem_level_+" } }, - [956]={ + [996]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Totem Skill Gems" + } + }, + stats={ + [1]="totem_skill_gem_level_+" + } + }, + [997]={ [1]={ [1]={ limit={ @@ -18740,7 +19771,23 @@ return { [1]="trap_skill_gem_level_+" } }, - [957]={ + [998]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Quality of all Skills" + } + }, + stats={ + [1]="all_skill_gem_quality_+" + } + }, + [999]={ [1]={ [1]={ limit={ @@ -18769,7 +19816,7 @@ return { [1]="critical_strike_chance_+%" } }, - [958]={ + [1000]={ [1]={ [1]={ limit={ @@ -18798,7 +19845,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [959]={ + [1001]={ [1]={ [1]={ limit={ @@ -18827,7 +19874,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [960]={ + [1002]={ [1]={ [1]={ limit={ @@ -18856,7 +19903,7 @@ return { [1]="trap_critical_strike_chance_+%" } }, - [961]={ + [1003]={ [1]={ [1]={ limit={ @@ -18885,7 +19932,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [962]={ + [1004]={ [1]={ [1]={ limit={ @@ -18901,7 +19948,7 @@ return { [1]="attack_critical_strike_multiplier_+" } }, - [963]={ + [1005]={ [1]={ [1]={ limit={ @@ -18930,7 +19977,36 @@ return { [1]="base_spell_critical_strike_multiplier_+" } }, - [964]={ + [1006]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" + } + }, + stats={ + [1]="spell_crit_bonus_+%_per_spell_crit_recently" + } + }, + [1007]={ [1]={ [1]={ limit={ @@ -18946,7 +20022,7 @@ return { [1]="trap_critical_strike_multiplier_+" } }, - [965]={ + [1008]={ [1]={ [1]={ limit={ @@ -18975,7 +20051,32 @@ return { [1]="attack_speed_+%" } }, - [966]={ + [1009]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Gain Onslaught for 4 seconds on Hit" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to gain Onslaught for 4 seconds on Hit" + } + }, + stats={ + [1]="base_onlsaught_on_hit_%_chance" + } + }, + [1010]={ [1]={ [1]={ limit={ @@ -19004,7 +20105,7 @@ return { [1]="base_cast_speed_+%" } }, - [967]={ + [1011]={ [1]={ [1]={ limit={ @@ -19038,7 +20139,7 @@ return { [2]="quality_display_base_number_of_crossbow_bolts_is_gem" } }, - [968]={ + [1012]={ [1]={ [1]={ limit={ @@ -19063,7 +20164,7 @@ return { [1]="local_additional_charm_slots" } }, - [969]={ + [1013]={ [1]={ [1]={ limit={ @@ -19092,7 +20193,7 @@ return { [1]="number_of_additional_arrows" } }, - [970]={ + [1014]={ [1]={ [1]={ limit={ @@ -19108,7 +20209,7 @@ return { [1]="additional_all_attributes" } }, - [971]={ + [1015]={ [1]={ [1]={ limit={ @@ -19124,7 +20225,7 @@ return { [1]="additional_strength" } }, - [972]={ + [1016]={ [1]={ [1]={ limit={ @@ -19140,7 +20241,7 @@ return { [1]="additional_dexterity" } }, - [973]={ + [1017]={ [1]={ [1]={ limit={ @@ -19156,7 +20257,258 @@ return { [1]="additional_intelligence" } }, - [974]={ + [1018]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Strength and Dexterity" + } + }, + stats={ + [1]="additional_strength_and_dexterity" + } + }, + [1019]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Strength and Intelligence" + } + }, + stats={ + [1]="additional_strength_and_intelligence" + } + }, + [1020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Dexterity and Intelligence" + } + }, + stats={ + [1]="additional_dexterity_and_intelligence" + } + }, + [1021]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attributes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attributes" + } + }, + stats={ + [1]="all_attributes_+%" + } + }, + [1022]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Strength" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Strength" + } + }, + stats={ + [1]="strength_+%" + } + }, + [1023]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Dexterity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Dexterity" + } + }, + stats={ + [1]="dexterity_+%" + } + }, + [1024]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Intelligence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Intelligence" + } + }, + stats={ + [1]="intelligence_+%" + } + }, + [1025]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Strength and Dexterity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Strength and Dexterity" + } + }, + stats={ + [1]="strength_and_dexterity_+%" + } + }, + [1026]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Strength and Intelligence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Strength and Intelligence" + } + }, + stats={ + [1]="strength_and_intelligence_+%" + } + }, + [1027]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Dexterity and Intelligence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Dexterity and Intelligence" + } + }, + stats={ + [1]="dexterity_and_intelligence_+%" + } + }, + [1028]={ [1]={ [1]={ limit={ @@ -19185,7 +20537,7 @@ return { [1]="base_self_critical_strike_multiplier_-%" } }, - [975]={ + [1029]={ [1]={ [1]={ limit={ @@ -19201,7 +20553,7 @@ return { [1]="base_additional_physical_damage_reduction_%" } }, - [976]={ + [1030]={ [1]={ [1]={ limit={ @@ -19217,7 +20569,23 @@ return { [1]="additional_maximum_all_elemental_resistances_%" } }, - [977]={ + [1031]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Maximum Resistances are {0}%" + } + }, + stats={ + [1]="override_maximum_damage_resistance_%" + } + }, + [1032]={ [1]={ [1]={ limit={ @@ -19233,7 +20601,7 @@ return { [1]="base_maximum_fire_damage_resistance_%" } }, - [978]={ + [1033]={ [1]={ [1]={ limit={ @@ -19249,7 +20617,7 @@ return { [1]="base_maximum_cold_damage_resistance_%" } }, - [979]={ + [1034]={ [1]={ [1]={ limit={ @@ -19265,7 +20633,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%" } }, - [980]={ + [1035]={ [1]={ [1]={ limit={ @@ -19281,7 +20649,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%" } }, - [981]={ + [1036]={ [1]={ [1]={ limit={ @@ -19297,7 +20665,7 @@ return { [1]="base_resist_all_elements_%" } }, - [982]={ + [1037]={ [1]={ [1]={ limit={ @@ -19313,7 +20681,100 @@ return { [1]="base_fire_damage_resistance_%" } }, - [983]={ + [1038]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% to Fire Resistance while on Low Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d}% to Fire Resistance while on Low Life" + } + }, + stats={ + [1]="fire_damage_resistance_%_when_on_low_life" + } + }, + [1039]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Fire and Cold Resistances" + } + }, + stats={ + [1]="fire_and_cold_damage_resistance_%" + } + }, + [1040]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" + } + }, + stats={ + [1]="fire_and_cold_resist_+_per_equipped_item_with_a_lightning_resistance_mod" + } + }, + [1041]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Fire and Lightning Resistances" + } + }, + stats={ + [1]="fire_and_lightning_damage_resistance_%" + } + }, + [1042]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" + } + }, + stats={ + [1]="fire_and_lightning_resist_+_per_equipped_item_with_a_cold_resistance_mod" + } + }, + [1043]={ [1]={ [1]={ limit={ @@ -19329,7 +20790,39 @@ return { [1]="base_cold_damage_resistance_%" } }, - [984]={ + [1044]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Cold and Lightning Resistances" + } + }, + stats={ + [1]="cold_and_lightning_damage_resistance_%" + } + }, + [1045]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" + } + }, + stats={ + [1]="cold_and_lightning_resist_+_per_equipped_item_with_a_fire_resistance_mod" + } + }, + [1046]={ [1]={ [1]={ limit={ @@ -19345,7 +20838,7 @@ return { [1]="base_lightning_damage_resistance_%" } }, - [985]={ + [1047]={ [1]={ [1]={ limit={ @@ -19361,7 +20854,23 @@ return { [1]="base_chaos_damage_resistance_%" } }, - [986]={ + [1048]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Chaos Resistance when on Low Life" + } + }, + stats={ + [1]="chaos_damage_resistance_%_when_on_low_life" + } + }, + [1049]={ [1]={ [1]={ limit={ @@ -19390,7 +20899,7 @@ return { [1]="minion_maximum_life_+%" } }, - [987]={ + [1050]={ [1]={ [1]={ limit={ @@ -19406,7 +20915,7 @@ return { [1]="armour_%_applies_to_fire_cold_lightning_damage" } }, - [988]={ + [1051]={ [1]={ [1]={ limit={ @@ -19422,7 +20931,7 @@ return { [1]="base_deflection_rating_%_of_evasion_rating" } }, - [989]={ + [1052]={ [1]={ [1]={ limit={ @@ -19438,7 +20947,39 @@ return { [1]="base_deflection_rating_%_of_armour" } }, - [990]={ + [1053]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to Deflect is Lucky" + } + }, + stats={ + [1]="base_deflect_chance_luck" + } + }, + [1054]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to Deflect is Lucky while on Low Life" + } + }, + stats={ + [1]="deflect_chance_is_lucky_while_on_low_life" + } + }, + [1055]={ [1]={ [1]={ limit={ @@ -19467,7 +21008,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [991]={ + [1056]={ [1]={ [1]={ limit={ @@ -19496,7 +21037,7 @@ return { [1]="energy_shield_delay_-%" } }, - [992]={ + [1057]={ [1]={ [1]={ [1]={ @@ -19516,7 +21057,27 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [993]={ + [1058]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Regenerate {0}% of maximum Life per second if you have been Hit Recently" + } + }, + stats={ + [1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently" + } + }, + [1059]={ [1]={ [1]={ limit={ @@ -19545,7 +21106,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [994]={ + [1060]={ [1]={ [1]={ limit={ @@ -19570,7 +21131,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%" } }, - [995]={ + [1061]={ [1]={ [1]={ [1]={ @@ -19590,7 +21151,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [996]={ + [1062]={ [1]={ [1]={ [1]={ @@ -19610,7 +21171,7 @@ return { [1]="local_life_leech_from_physical_damage_permyriad" } }, - [997]={ + [1063]={ [1]={ [1]={ limit={ @@ -19639,7 +21200,7 @@ return { [1]="base_life_gain_per_target" } }, - [998]={ + [1064]={ [1]={ [1]={ limit={ @@ -19668,7 +21229,7 @@ return { [1]="local_life_gain_per_target" } }, - [999]={ + [1065]={ [1]={ [1]={ limit={ @@ -19697,7 +21258,7 @@ return { [1]="base_life_gained_on_enemy_death" } }, - [1000]={ + [1066]={ [1]={ [1]={ limit={ @@ -19726,7 +21287,7 @@ return { [1]="mana_regeneration_rate_+%" } }, - [1001]={ + [1067]={ [1]={ [1]={ limit={ @@ -19751,7 +21312,7 @@ return { [1]="damage_taken_goes_to_mana_%" } }, - [1002]={ + [1068]={ [1]={ [1]={ [1]={ @@ -19771,7 +21332,7 @@ return { [1]="local_mana_leech_from_physical_damage_permyriad" } }, - [1003]={ + [1069]={ [1]={ [1]={ [1]={ @@ -19791,7 +21352,7 @@ return { [1]="base_mana_leech_from_physical_attack_damage_permyriad" } }, - [1004]={ + [1070]={ [1]={ [1]={ limit={ @@ -19820,7 +21381,7 @@ return { [1]="base_mana_gained_on_enemy_death" } }, - [1005]={ + [1071]={ [1]={ [1]={ limit={ @@ -19849,7 +21410,7 @@ return { [1]="charges_gained_+%" } }, - [1006]={ + [1072]={ [1]={ [1]={ limit={ @@ -19882,7 +21443,7 @@ return { [1]="flask_charges_used_+%" } }, - [1007]={ + [1073]={ [1]={ [1]={ limit={ @@ -19911,7 +21472,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [1008]={ + [1074]={ [1]={ [1]={ limit={ @@ -19940,7 +21501,7 @@ return { [1]="hit_damage_stun_multiplier_+%" } }, - [1009]={ + [1075]={ [1]={ [1]={ limit={ @@ -19969,7 +21530,7 @@ return { [1]="local_hit_damage_stun_multiplier_+%" } }, - [1010]={ + [1076]={ [1]={ [1]={ limit={ @@ -19998,7 +21559,7 @@ return { [1]="base_stun_duration_+%" } }, - [1011]={ + [1077]={ [1]={ [1]={ limit={ @@ -20027,7 +21588,7 @@ return { [1]="local_base_stun_duration_+%" } }, - [1012]={ + [1078]={ [1]={ [1]={ limit={ @@ -20056,7 +21617,7 @@ return { [1]="ignite_chance_+%" } }, - [1013]={ + [1079]={ [1]={ [1]={ limit={ @@ -20111,7 +21672,7 @@ return { [2]="always_freeze" } }, - [1014]={ + [1080]={ [1]={ [1]={ limit={ @@ -20140,7 +21701,7 @@ return { [1]="hit_damage_freeze_multiplier_+%" } }, - [1015]={ + [1081]={ [1]={ [1]={ limit={ @@ -20165,7 +21726,7 @@ return { [1]="base_chance_to_shock_%" } }, - [1016]={ + [1082]={ [1]={ [1]={ limit={ @@ -20194,7 +21755,7 @@ return { [1]="shock_chance_+%" } }, - [1017]={ + [1083]={ [1]={ [1]={ limit={ @@ -20223,7 +21784,7 @@ return { [1]="base_stun_recovery_+%" } }, - [1018]={ + [1084]={ [1]={ [1]={ limit={ @@ -20239,7 +21800,7 @@ return { [1]="stun_threshold_+" } }, - [1019]={ + [1085]={ [1]={ [1]={ limit={ @@ -20268,7 +21829,7 @@ return { [1]="self_bleed_duration_+%" } }, - [1020]={ + [1086]={ [1]={ [1]={ limit={ @@ -20297,7 +21858,7 @@ return { [1]="base_self_ignite_duration_-%" } }, - [1021]={ + [1087]={ [1]={ [1]={ limit={ @@ -20326,7 +21887,7 @@ return { [1]="base_self_chill_duration_-%" } }, - [1022]={ + [1088]={ [1]={ [1]={ limit={ @@ -20355,7 +21916,7 @@ return { [1]="base_self_freeze_duration_-%" } }, - [1023]={ + [1089]={ [1]={ [1]={ limit={ @@ -20384,7 +21945,7 @@ return { [1]="base_self_shock_duration_-%" } }, - [1024]={ + [1090]={ [1]={ [1]={ limit={ @@ -20413,7 +21974,7 @@ return { [1]="self_poison_duration_+%" } }, - [1025]={ + [1091]={ [1]={ [1]={ limit={ @@ -20429,7 +21990,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [1026]={ + [1092]={ [1]={ [1]={ limit={ @@ -20458,7 +22019,7 @@ return { [1]="presence_area_+%" } }, - [1027]={ + [1093]={ [1]={ [1]={ limit={ @@ -20487,7 +22048,7 @@ return { [1]="light_radius_+%" } }, - [1028]={ + [1094]={ [1]={ [1]={ limit={ @@ -20503,7 +22064,7 @@ return { [1]="local_%_chance_to_gain_flask_charge_on_kill" } }, - [1029]={ + [1095]={ [1]={ [1]={ [1]={ @@ -20536,7 +22097,7 @@ return { [1]="local_charges_added_+%" } }, - [1030]={ + [1096]={ [1]={ [1]={ limit={ @@ -20604,7 +22165,7 @@ return { [2]="local_flask_consume_charges_used_+%_when_used" } }, - [1031]={ + [1097]={ [1]={ [1]={ limit={ @@ -20638,7 +22199,7 @@ return { [2]="local_flask_consume_extra_max_charges_when_used" } }, - [1032]={ + [1098]={ [1]={ [1]={ limit={ @@ -20648,13 +22209,42 @@ return { } }, text="{0}% increased Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Charges" } }, stats={ [1]="local_max_charges_+%" } }, - [1033]={ + [1099]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignite you inflict deals Chaos Damage instead of Fire Damage" + } + }, + stats={ + [1]="base_ignite_deals_chaos_instead" + } + }, + [1100]={ [1]={ [1]={ limit={ @@ -20683,7 +22273,7 @@ return { [1]="base_ignite_effect_+%" } }, - [1034]={ + [1101]={ [1]={ [1]={ limit={ @@ -20712,7 +22302,7 @@ return { [1]="map_hellscape_blood_consumed_+%_final" } }, - [1035]={ + [1102]={ [1]={ [1]={ limit={ @@ -20728,7 +22318,7 @@ return { [1]="map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time" } }, - [1036]={ + [1103]={ [1]={ [1]={ [1]={ @@ -20748,7 +22338,7 @@ return { [1]="map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated" } }, - [1037]={ + [1104]={ [1]={ [1]={ limit={ @@ -20764,7 +22354,7 @@ return { [1]="map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource" } }, - [1038]={ + [1105]={ [1]={ [1]={ limit={ @@ -20780,7 +22370,7 @@ return { [1]="map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource" } }, - [1039]={ + [1106]={ [1]={ [1]={ limit={ @@ -20796,7 +22386,7 @@ return { [1]="map_hellscape_gimmick_shift_randomly" } }, - [1040]={ + [1107]={ [1]={ [1]={ limit={ @@ -20812,7 +22402,7 @@ return { [1]="map_hellscape_fire_damage_taken_when_switching" } }, - [1041]={ + [1108]={ [1]={ [1]={ limit={ @@ -20828,7 +22418,7 @@ return { [1]="map_hellscape_lightning_damage_taken_when_switching" } }, - [1042]={ + [1109]={ [1]={ [1]={ limit={ @@ -20857,7 +22447,7 @@ return { [1]="map_hellscape_monster_damage_+%_final" } }, - [1043]={ + [1110]={ [1]={ [1]={ limit={ @@ -20886,7 +22476,7 @@ return { [1]="map_hellscape_monster_damage_taken_+%_final" } }, - [1044]={ + [1111]={ [1]={ [1]={ limit={ @@ -20915,7 +22505,7 @@ return { [1]="map_hellscape_monster_life_+%_final" } }, - [1045]={ + [1112]={ [1]={ [1]={ [1]={ @@ -20935,7 +22525,7 @@ return { [1]="map_hellscape_monster_life_regeneration_rate_per_minute_%" } }, - [1046]={ + [1113]={ [1]={ [1]={ limit={ @@ -20951,7 +22541,7 @@ return { [1]="map_hellscape_physical_damage_taken_when_switching" } }, - [1047]={ + [1114]={ [1]={ [1]={ limit={ @@ -20976,7 +22566,7 @@ return { [1]="map_player_additional_physical_damage_reduction_%_in_hellscape" } }, - [1048]={ + [1115]={ [1]={ [1]={ limit={ @@ -20992,7 +22582,7 @@ return { [1]="map_player_block_chance_%_in_hellscape" } }, - [1049]={ + [1116]={ [1]={ [1]={ limit={ @@ -21008,7 +22598,7 @@ return { [1]="map_player_es_loss_per_second_in_hellscape" } }, - [1050]={ + [1117]={ [1]={ [1]={ limit={ @@ -21024,7 +22614,7 @@ return { [1]="map_player_life_loss_per_second_in_hellscape" } }, - [1051]={ + [1118]={ [1]={ [1]={ limit={ @@ -21053,7 +22643,7 @@ return { [1]="map_player_movement_speed_+%_final_in_hellscape" } }, - [1052]={ + [1119]={ [1]={ [1]={ limit={ @@ -21078,7 +22668,7 @@ return { [1]="map_hellscape_additional_boss" } }, - [1053]={ + [1120]={ [1]={ [1]={ limit={ @@ -21107,7 +22697,7 @@ return { [1]="map_hellscape_item_drop_quantity_+%" } }, - [1054]={ + [1121]={ [1]={ [1]={ limit={ @@ -21136,7 +22726,7 @@ return { [1]="map_hellscape_item_drop_rarity_+%" } }, - [1055]={ + [1122]={ [1]={ [1]={ limit={ @@ -21165,7 +22755,7 @@ return { [1]="map_hellscape_monster_slain_experience_+%_final" } }, - [1056]={ + [1123]={ [1]={ [1]={ limit={ @@ -21194,7 +22784,7 @@ return { [1]="map_hellscape_pack_size_+%" } }, - [1057]={ + [1124]={ [1]={ [1]={ limit={ @@ -21219,7 +22809,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_abyss_jewel" } }, - [1058]={ + [1125]={ [1]={ [1]={ limit={ @@ -21244,7 +22834,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_basic_currency_item" } }, - [1059]={ + [1126]={ [1]={ [1]={ limit={ @@ -21269,7 +22859,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_blight_oil" } }, - [1060]={ + [1127]={ [1]={ [1]={ limit={ @@ -21294,7 +22884,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_breach_splinters" } }, - [1061]={ + [1128]={ [1]={ [1]={ limit={ @@ -21319,7 +22909,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delirium_splinters" } }, - [1062]={ + [1129]={ [1]={ [1]={ limit={ @@ -21344,7 +22934,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delve_fossil" } }, - [1063]={ + [1130]={ [1]={ [1]={ limit={ @@ -21369,7 +22959,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_enchanted_item" } }, - [1064]={ + [1131]={ [1]={ [1]={ limit={ @@ -21394,7 +22984,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_essence" } }, - [1065]={ + [1132]={ [1]={ [1]={ limit={ @@ -21419,7 +23009,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_expedition_currency" } }, - [1066]={ + [1133]={ [1]={ [1]={ limit={ @@ -21444,7 +23034,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_fractured_item" } }, - [1067]={ + [1134]={ [1]={ [1]={ limit={ @@ -21469,7 +23059,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_gem" } }, - [1068]={ + [1135]={ [1]={ [1]={ limit={ @@ -21494,7 +23084,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_incubator" } }, - [1069]={ + [1136]={ [1]={ [1]={ limit={ @@ -21519,7 +23109,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_influence_item" } }, - [1070]={ + [1137]={ [1]={ [1]={ limit={ @@ -21544,7 +23134,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_legion_splinters" } }, - [1071]={ + [1138]={ [1]={ [1]={ limit={ @@ -21569,7 +23159,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_map_item" } }, - [1072]={ + [1139]={ [1]={ [1]={ limit={ @@ -21594,7 +23184,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_metamorph_catalyst" } }, - [1073]={ + [1140]={ [1]={ [1]={ limit={ @@ -21619,7 +23209,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scarab" } }, - [1074]={ + [1141]={ [1]={ [1]={ limit={ @@ -21644,7 +23234,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scourged_item" } }, - [1075]={ + [1142]={ [1]={ [1]={ limit={ @@ -21669,7 +23259,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_stacked_decks" } }, - [1076]={ + [1143]={ [1]={ [1]={ limit={ @@ -21694,7 +23284,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_tainted_currency" } }, - [1077]={ + [1144]={ [1]={ [1]={ limit={ @@ -21719,7 +23309,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_unique_item" } }, - [1078]={ + [1145]={ [1]={ [1]={ limit={ @@ -21744,7 +23334,23 @@ return { [1]="map_hellscape_rare_monster_drop_items_X_levels_higher" } }, - [1079]={ + [1146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Block chance" + } + }, + stats={ + [1]="additional_block_%" + } + }, + [1147]={ [1]={ [1]={ limit={ @@ -21760,7 +23366,7 @@ return { [1]="monster_base_block_%" } }, - [1080]={ + [1148]={ [1]={ [1]={ limit={ @@ -21776,7 +23382,7 @@ return { [1]="shield_block_%" } }, - [1081]={ + [1149]={ [1]={ [1]={ limit={ @@ -21792,7 +23398,7 @@ return { [1]="staff_block_%" } }, - [1082]={ + [1150]={ [1]={ [1]={ limit={ @@ -21808,7 +23414,7 @@ return { [1]="block_chance_%_per_50_strength" } }, - [1083]={ + [1151]={ [1]={ [1]={ limit={ @@ -21824,7 +23430,7 @@ return { [1]="additional_staff_block_%" } }, - [1084]={ + [1152]={ [1]={ [1]={ limit={ @@ -21840,7 +23446,7 @@ return { [1]="block_while_dual_wielding_%" } }, - [1085]={ + [1153]={ [1]={ [1]={ limit={ @@ -21856,7 +23462,7 @@ return { [1]="block_while_dual_wielding_claws_%" } }, - [1086]={ + [1154]={ [1]={ [1]={ limit={ @@ -21872,7 +23478,7 @@ return { [1]="block_chance_%_while_holding_shield" } }, - [1087]={ + [1155]={ [1]={ [1]={ limit={ @@ -21888,7 +23494,7 @@ return { [1]="dual_wield_or_shield_block_%" } }, - [1088]={ + [1156]={ [1]={ [1]={ [1]={ @@ -21921,7 +23527,23 @@ return { [1]="block_chance_+%" } }, - [1089]={ + [1157]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Block chance per 100 total Item Armour on Equipped Armour Items" + } + }, + stats={ + [1]="block_chance_+X%_per_100_base_armour_on_armours" + } + }, + [1158]={ [1]={ [1]={ limit={ @@ -21950,7 +23572,7 @@ return { [1]="block_recovery_+%" } }, - [1090]={ + [1159]={ [1]={ [1]={ limit={ @@ -21966,7 +23588,7 @@ return { [1]="local_always_heavy_stun_on_full_life" } }, - [1091]={ + [1160]={ [1]={ [1]={ limit={ @@ -21982,7 +23604,7 @@ return { [1]="melee_splash" } }, - [1092]={ + [1161]={ [1]={ [1]={ limit={ @@ -21998,7 +23620,7 @@ return { [1]="offerings_also_buff_you" } }, - [1093]={ + [1162]={ [1]={ [1]={ limit={ @@ -22027,7 +23649,7 @@ return { [1]="self_offering_effect_+%" } }, - [1094]={ + [1163]={ [1]={ [1]={ limit={ @@ -22056,7 +23678,7 @@ return { [1]="offering_spells_effect_+%" } }, - [1095]={ + [1164]={ [1]={ [1]={ limit={ @@ -22085,7 +23707,7 @@ return { [1]="bone_offering_effect_+%" } }, - [1096]={ + [1165]={ [1]={ [1]={ limit={ @@ -22114,7 +23736,7 @@ return { [1]="flesh_offering_effect_+%" } }, - [1097]={ + [1166]={ [1]={ [1]={ limit={ @@ -22143,7 +23765,7 @@ return { [1]="spirit_offering_effect_+%" } }, - [1098]={ + [1167]={ [1]={ [1]={ limit={ @@ -22172,55 +23794,7 @@ return { [1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash" } }, - [1099]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Strength and Dexterity" - } - }, - stats={ - [1]="additional_strength_and_dexterity" - } - }, - [1100]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Strength and Intelligence" - } - }, - stats={ - [1]="additional_strength_and_intelligence" - } - }, - [1101]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Dexterity and Intelligence" - } - }, - stats={ - [1]="additional_dexterity_and_intelligence" - } - }, - [1102]={ + [1168]={ [1]={ [1]={ limit={ @@ -22236,123 +23810,7 @@ return { [1]="base_all_attributes" } }, - [1103]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Attributes" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Attributes" - } - }, - stats={ - [1]="all_attributes_+%" - } - }, - [1104]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Strength" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Strength" - } - }, - stats={ - [1]="strength_+%" - } - }, - [1105]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Dexterity" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Dexterity" - } - }, - stats={ - [1]="dexterity_+%" - } - }, - [1106]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Intelligence" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Intelligence" - } - }, - stats={ - [1]="intelligence_+%" - } - }, - [1107]={ + [1169]={ [1]={ [1]={ limit={ @@ -22368,7 +23826,7 @@ return { [1]="modifiers_to_attributes_instead_apply_to_ascendance" } }, - [1108]={ + [1170]={ [1]={ [1]={ limit={ @@ -22384,7 +23842,7 @@ return { [1]="elemental_resistance_+%_per_15_ascendance" } }, - [1109]={ + [1171]={ [1]={ [1]={ limit={ @@ -22400,7 +23858,7 @@ return { [1]="penetrate_elemental_resistance_%_per_15_ascendance" } }, - [1110]={ + [1172]={ [1]={ [1]={ limit={ @@ -22416,7 +23874,7 @@ return { [1]="attribute_requirements_can_be_satisfied_by_%_of_ascendance" } }, - [1111]={ + [1173]={ [1]={ [1]={ limit={ @@ -22445,7 +23903,7 @@ return { [1]="damage_+%" } }, - [1112]={ + [1174]={ [1]={ [1]={ limit={ @@ -22474,7 +23932,7 @@ return { [1]="on_weapon_global_damage_+%" } }, - [1113]={ + [1175]={ [1]={ [1]={ limit={ @@ -22503,7 +23961,7 @@ return { [1]="totem_damage_+%" } }, - [1114]={ + [1176]={ [1]={ [1]={ limit={ @@ -22532,7 +23990,7 @@ return { [1]="trap_or_mine_damage_+%" } }, - [1115]={ + [1177]={ [1]={ [1]={ limit={ @@ -22561,7 +24019,7 @@ return { [1]="mine_damage_+%" } }, - [1116]={ + [1178]={ [1]={ [1]={ limit={ @@ -22594,7 +24052,7 @@ return { [1]="unique_mine_damage_+%_final" } }, - [1117]={ + [1179]={ [1]={ [1]={ limit={ @@ -22623,7 +24081,7 @@ return { [1]="attack_damage_+%" } }, - [1118]={ + [1180]={ [1]={ [1]={ limit={ @@ -22652,7 +24110,7 @@ return { [1]="unique_ryslathas_coil_maximum_physical_attack_damage_+%_final" } }, - [1119]={ + [1181]={ [1]={ [1]={ limit={ @@ -22685,7 +24143,7 @@ return { [1]="unique_ryslathas_coil_minimum_physical_attack_damage_+%_final" } }, - [1120]={ + [1182]={ [1]={ [1]={ limit={ @@ -22714,7 +24172,7 @@ return { [1]="cold_attack_damage_+%" } }, - [1121]={ + [1183]={ [1]={ [1]={ limit={ @@ -22743,7 +24201,7 @@ return { [1]="fire_attack_damage_+%" } }, - [1122]={ + [1184]={ [1]={ [1]={ limit={ @@ -22772,7 +24230,7 @@ return { [1]="physical_attack_damage_+%" } }, - [1123]={ + [1185]={ [1]={ [1]={ limit={ @@ -22801,7 +24259,7 @@ return { [1]="cold_attack_damage_+%_while_holding_a_shield" } }, - [1124]={ + [1186]={ [1]={ [1]={ limit={ @@ -22830,7 +24288,7 @@ return { [1]="fire_attack_damage_+%_while_holding_a_shield" } }, - [1125]={ + [1187]={ [1]={ [1]={ limit={ @@ -22859,7 +24317,7 @@ return { [1]="attack_damage_+%_while_holding_a_shield" } }, - [1126]={ + [1188]={ [1]={ [1]={ limit={ @@ -22888,7 +24346,7 @@ return { [1]="attack_skills_damage_+%_while_holding_shield" } }, - [1127]={ + [1189]={ [1]={ [1]={ limit={ @@ -22917,7 +24375,7 @@ return { [1]="physical_attack_damage_+%_while_holding_a_shield" } }, - [1128]={ + [1190]={ [1]={ [1]={ limit={ @@ -22946,7 +24404,7 @@ return { [1]="damage_over_time_+%" } }, - [1129]={ + [1191]={ [1]={ [1]={ limit={ @@ -22975,7 +24433,7 @@ return { [1]="physical_damage_over_time_+%" } }, - [1130]={ + [1192]={ [1]={ [1]={ limit={ @@ -23004,7 +24462,7 @@ return { [1]="fire_damage_over_time_+%" } }, - [1131]={ + [1193]={ [1]={ [1]={ limit={ @@ -23033,7 +24491,7 @@ return { [1]="cold_damage_over_time_+%" } }, - [1132]={ + [1194]={ [1]={ [1]={ limit={ @@ -23062,7 +24520,7 @@ return { [1]="chaos_damage_over_time_+%" } }, - [1133]={ + [1195]={ [1]={ [1]={ limit={ @@ -23091,7 +24549,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [1134]={ + [1196]={ [1]={ [1]={ limit={ @@ -23120,7 +24578,7 @@ return { [1]="damage_+%_per_active_curse_on_self" } }, - [1135]={ + [1197]={ [1]={ [1]={ limit={ @@ -23149,7 +24607,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [1136]={ + [1198]={ [1]={ [1]={ limit={ @@ -23178,7 +24636,7 @@ return { [1]="physical_damage_+%_while_life_leeching" } }, - [1137]={ + [1199]={ [1]={ [1]={ limit={ @@ -23207,7 +24665,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [1138]={ + [1200]={ [1]={ [1]={ limit={ @@ -23236,7 +24694,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [1139]={ + [1201]={ [1]={ [1]={ limit={ @@ -23265,7 +24723,7 @@ return { [1]="attack_speed_+%_when_on_full_life" } }, - [1140]={ + [1202]={ [1]={ [1]={ limit={ @@ -23294,7 +24752,7 @@ return { [1]="spell_fire_damage_+%" } }, - [1141]={ + [1203]={ [1]={ [1]={ limit={ @@ -23323,7 +24781,7 @@ return { [1]="spell_cold_damage_+%" } }, - [1142]={ + [1204]={ [1]={ [1]={ limit={ @@ -23352,7 +24810,7 @@ return { [1]="spell_staff_damage_+%" } }, - [1143]={ + [1205]={ [1]={ [1]={ limit={ @@ -23381,7 +24839,7 @@ return { [1]="spell_bow_damage_+%" } }, - [1144]={ + [1206]={ [1]={ [1]={ limit={ @@ -23410,7 +24868,7 @@ return { [1]="spell_damage_+%_while_holding_shield" } }, - [1145]={ + [1207]={ [1]={ [1]={ limit={ @@ -23439,7 +24897,7 @@ return { [1]="spell_damage_+%_while_dual_wielding" } }, - [1146]={ + [1208]={ [1]={ [1]={ limit={ @@ -23468,7 +24926,7 @@ return { [1]="physical_damage_+%" } }, - [1147]={ + [1209]={ [1]={ [1]={ limit={ @@ -23484,7 +24942,7 @@ return { [1]="local_weapon_enemy_phys_reduction_%_penalty" } }, - [1148]={ + [1210]={ [1]={ [1]={ limit={ @@ -23513,7 +24971,7 @@ return { [1]="melee_damage_+%" } }, - [1149]={ + [1211]={ [1]={ [1]={ limit={ @@ -23542,7 +25000,7 @@ return { [1]="melee_damage_+%_vs_frozen_enemies" } }, - [1150]={ + [1212]={ [1]={ [1]={ limit={ @@ -23571,7 +25029,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [1151]={ + [1213]={ [1]={ [1]={ limit={ @@ -23600,7 +25058,7 @@ return { [1]="melee_damage_+%_vs_shocked_enemies" } }, - [1152]={ + [1214]={ [1]={ [1]={ limit={ @@ -23629,7 +25087,7 @@ return { [1]="damage_vs_shocked_enemies_+%" } }, - [1153]={ + [1215]={ [1]={ [1]={ limit={ @@ -23658,7 +25116,7 @@ return { [1]="melee_damage_+%_vs_burning_enemies" } }, - [1154]={ + [1216]={ [1]={ [1]={ limit={ @@ -23687,7 +25145,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [1155]={ + [1217]={ [1]={ [1]={ limit={ @@ -23716,7 +25174,7 @@ return { [1]="damage_+%_vs_frozen_shocked_ignited_enemies" } }, - [1156]={ + [1218]={ [1]={ [1]={ limit={ @@ -23732,7 +25190,7 @@ return { [1]="dot_multiplier_+" } }, - [1157]={ + [1219]={ [1]={ [1]={ limit={ @@ -23748,7 +25206,7 @@ return { [1]="damage_over_time_multiplier_+_with_attacks" } }, - [1158]={ + [1220]={ [1]={ [1]={ limit={ @@ -23764,7 +25222,7 @@ return { [1]="physical_dot_multiplier_+" } }, - [1159]={ + [1221]={ [1]={ [1]={ limit={ @@ -23780,7 +25238,7 @@ return { [1]="physical_damage_over_time_multiplier_+_with_attacks" } }, - [1160]={ + [1222]={ [1]={ [1]={ limit={ @@ -23796,7 +25254,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [1161]={ + [1223]={ [1]={ [1]={ limit={ @@ -23812,7 +25270,7 @@ return { [1]="fire_damage_over_time_multiplier_+_with_attacks" } }, - [1162]={ + [1224]={ [1]={ [1]={ limit={ @@ -23828,7 +25286,7 @@ return { [1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1163]={ + [1225]={ [1]={ [1]={ limit={ @@ -23844,7 +25302,7 @@ return { [1]="cold_dot_multiplier_+" } }, - [1164]={ + [1226]={ [1]={ [1]={ limit={ @@ -23860,7 +25318,7 @@ return { [1]="lightning_dot_multiplier_+" } }, - [1165]={ + [1227]={ [1]={ [1]={ limit={ @@ -23876,7 +25334,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1166]={ + [1228]={ [1]={ [1]={ limit={ @@ -23892,7 +25350,7 @@ return { [1]="chaos_dot_multiplier_+" } }, - [1167]={ + [1229]={ [1]={ [1]={ limit={ @@ -23908,7 +25366,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_with_attacks" } }, - [1168]={ + [1230]={ [1]={ [1]={ limit={ @@ -23929,7 +25387,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [1169]={ + [1231]={ [1]={ [1]={ limit={ @@ -23950,7 +25408,7 @@ return { [2]="from_self_maximum_added_attack_physical_damage_taken" } }, - [1170]={ + [1232]={ [1]={ [1]={ limit={ @@ -23971,7 +25429,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [1171]={ + [1233]={ [1]={ [1]={ limit={ @@ -23992,7 +25450,7 @@ return { [2]="local_attack_maximum_added_physical_damage_per_3_levels" } }, - [1172]={ + [1234]={ [1]={ [1]={ limit={ @@ -24013,7 +25471,7 @@ return { [2]="maximum_added_physical_damage_vs_frozen_enemies" } }, - [1173]={ + [1235]={ [1]={ [1]={ limit={ @@ -24034,7 +25492,7 @@ return { [2]="maximum_added_fire_damage_vs_ignited_enemies" } }, - [1174]={ + [1236]={ [1]={ [1]={ limit={ @@ -24055,7 +25513,7 @@ return { [2]="maximum_added_fire_attack_damage_per_active_buff" } }, - [1175]={ + [1237]={ [1]={ [1]={ limit={ @@ -24076,7 +25534,7 @@ return { [2]="maximum_added_fire_spell_damage_per_active_buff" } }, - [1176]={ + [1238]={ [1]={ [1]={ limit={ @@ -24097,7 +25555,7 @@ return { [2]="maximum_added_fire_damage_per_active_buff" } }, - [1177]={ + [1239]={ [1]={ [1]={ limit={ @@ -24126,7 +25584,7 @@ return { [1]="attack_skills_damage_+%_while_dual_wielding" } }, - [1178]={ + [1240]={ [1]={ [1]={ limit={ @@ -24155,7 +25613,7 @@ return { [1]="damage_while_dual_wielding_+%" } }, - [1179]={ + [1241]={ [1]={ [1]={ limit={ @@ -24184,7 +25642,7 @@ return { [1]="physical_damage_while_dual_wielding_+%" } }, - [1180]={ + [1242]={ [1]={ [1]={ limit={ @@ -24213,7 +25671,7 @@ return { [1]="fire_damage_while_dual_wielding_+%" } }, - [1181]={ + [1243]={ [1]={ [1]={ limit={ @@ -24242,7 +25700,7 @@ return { [1]="cold_damage_while_dual_wielding_+%" } }, - [1182]={ + [1244]={ [1]={ [1]={ limit={ @@ -24271,7 +25729,7 @@ return { [1]="base_main_hand_damage_+%" } }, - [1183]={ + [1245]={ [1]={ [1]={ limit={ @@ -24300,7 +25758,7 @@ return { [1]="base_off_hand_damage_+%" } }, - [1184]={ + [1246]={ [1]={ [1]={ limit={ @@ -24329,7 +25787,7 @@ return { [1]="damage_+%_with_one_handed_melee_weapons" } }, - [1185]={ + [1247]={ [1]={ [1]={ limit={ @@ -24358,7 +25816,7 @@ return { [1]="damage_+%_with_melee_weapons" } }, - [1186]={ + [1248]={ [1]={ [1]={ limit={ @@ -24387,7 +25845,7 @@ return { [1]="one_handed_melee_physical_damage_+%" } }, - [1187]={ + [1249]={ [1]={ [1]={ limit={ @@ -24416,7 +25874,7 @@ return { [1]="one_handed_melee_fire_damage_+%" } }, - [1188]={ + [1250]={ [1]={ [1]={ limit={ @@ -24445,7 +25903,7 @@ return { [1]="one_handed_melee_cold_damage_+%" } }, - [1189]={ + [1251]={ [1]={ [1]={ limit={ @@ -24474,7 +25932,7 @@ return { [1]="two_handed_melee_physical_damage_+%" } }, - [1190]={ + [1252]={ [1]={ [1]={ limit={ @@ -24503,7 +25961,7 @@ return { [1]="damage_+%_with_two_handed_melee_weapons" } }, - [1191]={ + [1253]={ [1]={ [1]={ limit={ @@ -24532,7 +25990,7 @@ return { [1]="two_handed_melee_fire_damage_+%" } }, - [1192]={ + [1254]={ [1]={ [1]={ limit={ @@ -24561,7 +26019,7 @@ return { [1]="two_handed_melee_cold_damage_+%" } }, - [1193]={ + [1255]={ [1]={ [1]={ limit={ @@ -24590,7 +26048,7 @@ return { [1]="unarmed_melee_physical_damage_+%" } }, - [1194]={ + [1256]={ [1]={ [1]={ limit={ @@ -24619,7 +26077,7 @@ return { [1]="axe_damage_+%" } }, - [1195]={ + [1257]={ [1]={ [1]={ limit={ @@ -24648,7 +26106,7 @@ return { [1]="physical_axe_damage_+%" } }, - [1196]={ + [1258]={ [1]={ [1]={ limit={ @@ -24677,7 +26135,7 @@ return { [1]="fire_axe_damage_+%" } }, - [1197]={ + [1259]={ [1]={ [1]={ limit={ @@ -24706,7 +26164,7 @@ return { [1]="cold_axe_damage_+%" } }, - [1198]={ + [1260]={ [1]={ [1]={ limit={ @@ -24735,7 +26193,7 @@ return { [1]="physical_staff_damage_+%" } }, - [1199]={ + [1261]={ [1]={ [1]={ limit={ @@ -24764,7 +26222,7 @@ return { [1]="quarterstaff_damage_+%" } }, - [1200]={ + [1262]={ [1]={ [1]={ limit={ @@ -24793,7 +26251,7 @@ return { [1]="fire_staff_damage_+%" } }, - [1201]={ + [1263]={ [1]={ [1]={ limit={ @@ -24822,7 +26280,7 @@ return { [1]="cold_staff_damage_+%" } }, - [1202]={ + [1264]={ [1]={ [1]={ limit={ @@ -24851,7 +26309,7 @@ return { [1]="claw_damage_+%" } }, - [1203]={ + [1265]={ [1]={ [1]={ limit={ @@ -24880,7 +26338,7 @@ return { [1]="physical_claw_damage_+%" } }, - [1204]={ + [1266]={ [1]={ [1]={ limit={ @@ -24909,7 +26367,7 @@ return { [1]="fire_claw_damage_+%" } }, - [1205]={ + [1267]={ [1]={ [1]={ limit={ @@ -24938,7 +26396,7 @@ return { [1]="cold_claw_damage_+%" } }, - [1206]={ + [1268]={ [1]={ [1]={ limit={ @@ -24967,7 +26425,7 @@ return { [1]="dagger_damage_+%" } }, - [1207]={ + [1269]={ [1]={ [1]={ limit={ @@ -24996,7 +26454,7 @@ return { [1]="physical_dagger_damage_+%" } }, - [1208]={ + [1270]={ [1]={ [1]={ limit={ @@ -25025,7 +26483,7 @@ return { [1]="fire_dagger_damage_+%" } }, - [1209]={ + [1271]={ [1]={ [1]={ limit={ @@ -25054,7 +26512,7 @@ return { [1]="cold_dagger_damage_+%" } }, - [1210]={ + [1272]={ [1]={ [1]={ limit={ @@ -25083,7 +26541,7 @@ return { [1]="mace_damage_+%" } }, - [1211]={ + [1273]={ [1]={ [1]={ limit={ @@ -25112,7 +26570,7 @@ return { [1]="physical_mace_damage_+%" } }, - [1212]={ + [1274]={ [1]={ [1]={ limit={ @@ -25141,7 +26599,7 @@ return { [1]="fire_mace_damage_+%" } }, - [1213]={ + [1275]={ [1]={ [1]={ limit={ @@ -25170,7 +26628,7 @@ return { [1]="cold_mace_damage_+%" } }, - [1214]={ + [1276]={ [1]={ [1]={ limit={ @@ -25199,7 +26657,7 @@ return { [1]="bow_damage_+%" } }, - [1215]={ + [1277]={ [1]={ [1]={ limit={ @@ -25228,7 +26686,7 @@ return { [1]="physical_bow_damage_+%" } }, - [1216]={ + [1278]={ [1]={ [1]={ limit={ @@ -25257,7 +26715,7 @@ return { [1]="fire_bow_damage_+%" } }, - [1217]={ + [1279]={ [1]={ [1]={ limit={ @@ -25286,7 +26744,7 @@ return { [1]="cold_bow_damage_+%" } }, - [1218]={ + [1280]={ [1]={ [1]={ limit={ @@ -25315,7 +26773,7 @@ return { [1]="bow_elemental_damage_+%" } }, - [1219]={ + [1281]={ [1]={ [1]={ limit={ @@ -25344,7 +26802,7 @@ return { [1]="physical_sword_damage_+%" } }, - [1220]={ + [1282]={ [1]={ [1]={ limit={ @@ -25373,7 +26831,7 @@ return { [1]="sword_damage_+%" } }, - [1221]={ + [1283]={ [1]={ [1]={ limit={ @@ -25402,7 +26860,7 @@ return { [1]="fire_sword_damage_+%" } }, - [1222]={ + [1284]={ [1]={ [1]={ limit={ @@ -25431,7 +26889,7 @@ return { [1]="cold_sword_damage_+%" } }, - [1223]={ + [1285]={ [1]={ [1]={ limit={ @@ -25460,7 +26918,7 @@ return { [1]="damage_+%_while_wielding_wand" } }, - [1224]={ + [1286]={ [1]={ [1]={ limit={ @@ -25489,7 +26947,7 @@ return { [1]="physical_wand_damage_+%" } }, - [1225]={ + [1287]={ [1]={ [1]={ limit={ @@ -25518,7 +26976,7 @@ return { [1]="fire_wand_damage_+%" } }, - [1226]={ + [1288]={ [1]={ [1]={ limit={ @@ -25547,7 +27005,7 @@ return { [1]="cold_wand_damage_+%" } }, - [1227]={ + [1289]={ [1]={ [1]={ limit={ @@ -25576,7 +27034,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1228]={ + [1290]={ [1]={ [1]={ limit={ @@ -25605,7 +27063,7 @@ return { [1]="spear_damage_+%" } }, - [1229]={ + [1291]={ [1]={ [1]={ limit={ @@ -25626,7 +27084,7 @@ return { [2]="from_self_maximum_added_fire_damage_taken" } }, - [1230]={ + [1292]={ [1]={ [1]={ limit={ @@ -25647,7 +27105,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [1231]={ + [1293]={ [1]={ [1]={ limit={ @@ -25668,7 +27126,7 @@ return { [2]="from_self_maximum_added_attack_fire_damage_taken" } }, - [1232]={ + [1294]={ [1]={ [1]={ limit={ @@ -25689,7 +27147,7 @@ return { [2]="unique_local_maximum_added_fire_damage_when_in_main_hand" } }, - [1233]={ + [1295]={ [1]={ [1]={ limit={ @@ -25718,7 +27176,7 @@ return { [1]="damage_with_fire_skills_+%" } }, - [1234]={ + [1296]={ [1]={ [1]={ limit={ @@ -25747,7 +27205,7 @@ return { [1]="cast_speed_for_fire_skills_+%" } }, - [1235]={ + [1297]={ [1]={ [1]={ limit={ @@ -25768,7 +27226,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken" } }, - [1236]={ + [1298]={ [1]={ [1]={ limit={ @@ -25789,7 +27247,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [1237]={ + [1299]={ [1]={ [1]={ limit={ @@ -25810,7 +27268,7 @@ return { [2]="from_self_maximum_added_attack_cold_damage_taken" } }, - [1238]={ + [1300]={ [1]={ [1]={ limit={ @@ -25831,7 +27289,7 @@ return { [2]="unique_local_maximum_added_cold_damage_when_in_off_hand" } }, - [1239]={ + [1301]={ [1]={ [1]={ limit={ @@ -25852,7 +27310,7 @@ return { [2]="spell_and_attack_maximum_added_fire_damage" } }, - [1240]={ + [1302]={ [1]={ [1]={ limit={ @@ -25873,7 +27331,7 @@ return { [2]="spell_and_attack_maximum_added_cold_damage" } }, - [1241]={ + [1303]={ [1]={ [1]={ limit={ @@ -25902,7 +27360,7 @@ return { [1]="damage_with_cold_skills_+%" } }, - [1242]={ + [1304]={ [1]={ [1]={ limit={ @@ -25931,7 +27389,7 @@ return { [1]="cast_speed_for_cold_skills_+%" } }, - [1243]={ + [1305]={ [1]={ [1]={ limit={ @@ -25952,7 +27410,7 @@ return { [2]="from_self_maximum_added_lightning_damage_taken" } }, - [1244]={ + [1306]={ [1]={ [1]={ limit={ @@ -25973,7 +27431,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [1245]={ + [1307]={ [1]={ [1]={ limit={ @@ -25994,7 +27452,7 @@ return { [2]="from_self_maximum_added_attack_lightning_damage_taken" } }, - [1246]={ + [1308]={ [1]={ [1]={ limit={ @@ -26023,7 +27481,7 @@ return { [1]="damage_with_lightning_skills_+%" } }, - [1247]={ + [1309]={ [1]={ [1]={ limit={ @@ -26052,7 +27510,7 @@ return { [1]="cast_speed_for_lightning_skills_+%" } }, - [1248]={ + [1310]={ [1]={ [1]={ limit={ @@ -26073,7 +27531,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [1249]={ + [1311]={ [1]={ [1]={ limit={ @@ -26094,7 +27552,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [1250]={ + [1312]={ [1]={ [1]={ limit={ @@ -26115,7 +27573,23 @@ return { [2]="from_self_maximum_added_attack_chaos_damage_taken" } }, - [1251]={ + [1313]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks Gain {0}% of Physical Damage as extra Chaos Damage" + } + }, + stats={ + [1]="non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks" + } + }, + [1314]={ [1]={ [1]={ limit={ @@ -26136,7 +27610,7 @@ return { [2]="local_maximum_added_chaos_damage" } }, - [1252]={ + [1315]={ [1]={ [1]={ limit={ @@ -26157,7 +27631,7 @@ return { [2]="unique_local_maximum_added_chaos_damage_when_in_off_hand" } }, - [1253]={ + [1316]={ [1]={ [1]={ limit={ @@ -26186,7 +27660,7 @@ return { [1]="cast_speed_for_chaos_skills_+%" } }, - [1254]={ + [1317]={ [1]={ [1]={ limit={ @@ -26207,7 +27681,7 @@ return { [2]="spell_maximum_base_physical_damage" } }, - [1255]={ + [1318]={ [1]={ [1]={ limit={ @@ -26228,7 +27702,7 @@ return { [2]="spell_maximum_base_fire_damage" } }, - [1256]={ + [1319]={ [1]={ [1]={ limit={ @@ -26249,7 +27723,7 @@ return { [2]="spell_maximum_base_cold_damage" } }, - [1257]={ + [1320]={ [1]={ [1]={ limit={ @@ -26270,7 +27744,7 @@ return { [2]="spell_maximum_base_lightning_damage" } }, - [1258]={ + [1321]={ [1]={ [1]={ limit={ @@ -26291,7 +27765,7 @@ return { [2]="spell_maximum_base_chaos_damage" } }, - [1259]={ + [1322]={ [1]={ [1]={ limit={ @@ -26312,7 +27786,7 @@ return { [2]="secondary_maximum_base_physical_damage" } }, - [1260]={ + [1323]={ [1]={ [1]={ limit={ @@ -26333,7 +27807,7 @@ return { [2]="secondary_maximum_base_fire_damage" } }, - [1261]={ + [1324]={ [1]={ [1]={ limit={ @@ -26354,7 +27828,7 @@ return { [2]="secondary_maximum_base_cold_damage" } }, - [1262]={ + [1325]={ [1]={ [1]={ limit={ @@ -26375,7 +27849,7 @@ return { [2]="secondary_maximum_base_lightning_damage" } }, - [1263]={ + [1326]={ [1]={ [1]={ limit={ @@ -26396,7 +27870,7 @@ return { [2]="secondary_maximum_base_chaos_damage" } }, - [1264]={ + [1327]={ [1]={ [1]={ limit={ @@ -26417,7 +27891,7 @@ return { [2]="spell_maximum_added_physical_damage" } }, - [1265]={ + [1328]={ [1]={ [1]={ limit={ @@ -26438,7 +27912,7 @@ return { [2]="spell_maximum_added_fire_damage" } }, - [1266]={ + [1329]={ [1]={ [1]={ limit={ @@ -26459,7 +27933,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [1267]={ + [1330]={ [1]={ [1]={ limit={ @@ -26480,7 +27954,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [1268]={ + [1331]={ [1]={ [1]={ limit={ @@ -26501,7 +27975,7 @@ return { [2]="spell_maximum_added_chaos_damage" } }, - [1269]={ + [1332]={ [1]={ [1]={ limit={ @@ -26522,7 +27996,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [1270]={ + [1333]={ [1]={ [1]={ limit={ @@ -26543,7 +28017,7 @@ return { [2]="spell_and_attack_maximum_added_lightning_damage" } }, - [1271]={ + [1334]={ [1]={ [1]={ limit={ @@ -26572,7 +28046,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [1272]={ + [1335]={ [1]={ [1]={ limit={ @@ -26601,7 +28075,7 @@ return { [1]="flicker_strike_more_attack_speed_+%_final" } }, - [1273]={ + [1336]={ [1]={ [1]={ limit={ @@ -26630,7 +28104,7 @@ return { [1]="melee_attack_speed_+%" } }, - [1274]={ + [1337]={ [1]={ [1]={ limit={ @@ -26659,7 +28133,7 @@ return { [1]="attack_speed_while_dual_wielding_+%" } }, - [1275]={ + [1338]={ [1]={ [1]={ limit={ @@ -26675,7 +28149,7 @@ return { [1]="base_off_hand_attack_speed_+%" } }, - [1276]={ + [1339]={ [1]={ [1]={ limit={ @@ -26704,7 +28178,7 @@ return { [1]="attack_speed_+%_while_holding_shield" } }, - [1277]={ + [1340]={ [1]={ [1]={ limit={ @@ -26733,7 +28207,7 @@ return { [1]="two_handed_melee_attack_speed_+%" } }, - [1278]={ + [1341]={ [1]={ [1]={ limit={ @@ -26762,7 +28236,7 @@ return { [1]="one_handed_melee_attack_speed_+%" } }, - [1279]={ + [1342]={ [1]={ [1]={ limit={ @@ -26791,7 +28265,7 @@ return { [1]="axe_attack_speed_+%" } }, - [1280]={ + [1343]={ [1]={ [1]={ limit={ @@ -26820,7 +28294,7 @@ return { [1]="quarterstaff_attack_speed_+%" } }, - [1281]={ + [1344]={ [1]={ [1]={ limit={ @@ -26849,7 +28323,7 @@ return { [1]="claw_attack_speed_+%" } }, - [1282]={ + [1345]={ [1]={ [1]={ limit={ @@ -26878,7 +28352,7 @@ return { [1]="dagger_attack_speed_+%" } }, - [1283]={ + [1346]={ [1]={ [1]={ limit={ @@ -26907,7 +28381,7 @@ return { [1]="mace_attack_speed_+%" } }, - [1284]={ + [1347]={ [1]={ [1]={ limit={ @@ -26936,7 +28410,7 @@ return { [1]="bow_attack_speed_+%" } }, - [1285]={ + [1348]={ [1]={ [1]={ limit={ @@ -26965,7 +28439,7 @@ return { [1]="sword_attack_speed_+%" } }, - [1286]={ + [1349]={ [1]={ [1]={ limit={ @@ -26994,7 +28468,7 @@ return { [1]="wand_attack_speed_+%" } }, - [1287]={ + [1350]={ [1]={ [1]={ limit={ @@ -27023,7 +28497,7 @@ return { [1]="spear_attack_speed_+%" } }, - [1288]={ + [1351]={ [1]={ [1]={ limit={ @@ -27052,7 +28526,7 @@ return { [1]="shield_attack_speed_+%" } }, - [1289]={ + [1352]={ [1]={ [1]={ limit={ @@ -27081,7 +28555,7 @@ return { [1]="unarmed_melee_attack_speed_+%" } }, - [1290]={ + [1353]={ [1]={ [1]={ limit={ @@ -27110,7 +28584,7 @@ return { [1]="damage_+%_with_movement_skills" } }, - [1291]={ + [1354]={ [1]={ [1]={ limit={ @@ -27139,7 +28613,7 @@ return { [1]="attack_speed_+%_with_movement_skills" } }, - [1292]={ + [1355]={ [1]={ [1]={ limit={ @@ -27168,7 +28642,7 @@ return { [1]="accuracy_rating_+%" } }, - [1293]={ + [1356]={ [1]={ [1]={ limit={ @@ -27197,7 +28671,7 @@ return { [1]="accuracy_rating_while_dual_wielding_+%" } }, - [1294]={ + [1357]={ [1]={ [1]={ limit={ @@ -27226,7 +28700,7 @@ return { [1]="one_handed_melee_accuracy_rating_+%" } }, - [1295]={ + [1358]={ [1]={ [1]={ limit={ @@ -27255,7 +28729,7 @@ return { [1]="two_handed_melee_accuracy_rating_+%" } }, - [1296]={ + [1359]={ [1]={ [1]={ limit={ @@ -27284,7 +28758,7 @@ return { [1]="axe_accuracy_rating_+%" } }, - [1297]={ + [1360]={ [1]={ [1]={ limit={ @@ -27313,7 +28787,7 @@ return { [1]="quarterstaff_accuracy_rating_+%" } }, - [1298]={ + [1361]={ [1]={ [1]={ limit={ @@ -27342,7 +28816,7 @@ return { [1]="claw_accuracy_rating_+%" } }, - [1299]={ + [1362]={ [1]={ [1]={ limit={ @@ -27371,7 +28845,7 @@ return { [1]="dagger_accuracy_rating_+%" } }, - [1300]={ + [1363]={ [1]={ [1]={ limit={ @@ -27400,7 +28874,7 @@ return { [1]="mace_accuracy_rating_+%" } }, - [1301]={ + [1364]={ [1]={ [1]={ limit={ @@ -27429,7 +28903,7 @@ return { [1]="bow_accuracy_rating_+%" } }, - [1302]={ + [1365]={ [1]={ [1]={ limit={ @@ -27458,7 +28932,7 @@ return { [1]="sword_accuracy_rating_+%" } }, - [1303]={ + [1366]={ [1]={ [1]={ limit={ @@ -27487,7 +28961,7 @@ return { [1]="wand_accuracy_rating_+%" } }, - [1304]={ + [1367]={ [1]={ [1]={ limit={ @@ -27516,7 +28990,7 @@ return { [1]="spear_accuracy_rating_+%" } }, - [1305]={ + [1368]={ [1]={ [1]={ limit={ @@ -27545,7 +29019,7 @@ return { [1]="cast_speed_while_dual_wielding_+%" } }, - [1306]={ + [1369]={ [1]={ [1]={ limit={ @@ -27574,7 +29048,7 @@ return { [1]="cast_speed_+%_while_holding_shield" } }, - [1307]={ + [1370]={ [1]={ [1]={ limit={ @@ -27603,7 +29077,7 @@ return { [1]="cast_speed_+%_while_holding_staff" } }, - [1308]={ + [1371]={ [1]={ [1]={ limit={ @@ -27632,7 +29106,7 @@ return { [1]="cast_speed_+%_while_holding_bow" } }, - [1309]={ + [1372]={ [1]={ [1]={ limit={ @@ -27648,7 +29122,7 @@ return { [1]="cast_speed_+%_per_power_charge" } }, - [1310]={ + [1373]={ [1]={ [1]={ limit={ @@ -27664,7 +29138,7 @@ return { [1]="poison_on_critical_strike_with_dagger" } }, - [1311]={ + [1374]={ [1]={ [1]={ limit={ @@ -27689,7 +29163,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_bow_%" } }, - [1312]={ + [1375]={ [1]={ [1]={ limit={ @@ -27714,7 +29188,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_dagger_%" } }, - [1313]={ + [1376]={ [1]={ [1]={ limit={ @@ -27730,7 +29204,7 @@ return { [1]="poison_on_critical_strike_with_bow" } }, - [1314]={ + [1377]={ [1]={ [1]={ [1]={ @@ -27750,7 +29224,7 @@ return { [1]="base_spell_critical_strike_chance" } }, - [1315]={ + [1378]={ [1]={ [1]={ [1]={ @@ -27770,7 +29244,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [1316]={ + [1379]={ [1]={ [1]={ limit={ @@ -27786,7 +29260,7 @@ return { [1]="local_weapon_roll_crits_twice" } }, - [1317]={ + [1380]={ [1]={ [1]={ limit={ @@ -27802,7 +29276,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+30%" } }, - [1318]={ + [1381]={ [1]={ [1]={ limit={ @@ -27818,7 +29292,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+40%" } }, - [1319]={ + [1382]={ [1]={ [1]={ limit={ @@ -27834,7 +29308,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+50%" } }, - [1320]={ + [1383]={ [1]={ [1]={ limit={ @@ -27863,7 +29337,7 @@ return { [1]="local_critical_strike_chance_+%" } }, - [1321]={ + [1384]={ [1]={ [1]={ limit={ @@ -27892,7 +29366,7 @@ return { [1]="bow_critical_strike_chance_+%" } }, - [1322]={ + [1385]={ [1]={ [1]={ limit={ @@ -27921,7 +29395,7 @@ return { [1]="claw_critical_strike_chance_+%" } }, - [1323]={ + [1386]={ [1]={ [1]={ limit={ @@ -27950,7 +29424,7 @@ return { [1]="dagger_critical_strike_chance_+%" } }, - [1324]={ + [1387]={ [1]={ [1]={ limit={ @@ -27979,7 +29453,7 @@ return { [1]="sword_critical_strike_chance_+%" } }, - [1325]={ + [1388]={ [1]={ [1]={ limit={ @@ -28008,7 +29482,7 @@ return { [1]="mace_critical_strike_chance_+%" } }, - [1326]={ + [1389]={ [1]={ [1]={ limit={ @@ -28037,7 +29511,7 @@ return { [1]="quarterstaff_critical_strike_chance_+%" } }, - [1327]={ + [1390]={ [1]={ [1]={ limit={ @@ -28066,7 +29540,7 @@ return { [1]="wand_critical_strike_chance_+%" } }, - [1328]={ + [1391]={ [1]={ [1]={ limit={ @@ -28095,7 +29569,7 @@ return { [1]="axe_critical_strike_chance_+%" } }, - [1329]={ + [1392]={ [1]={ [1]={ limit={ @@ -28124,7 +29598,7 @@ return { [1]="spear_critical_strike_chance_+%" } }, - [1330]={ + [1393]={ [1]={ [1]={ limit={ @@ -28153,7 +29627,7 @@ return { [1]="critical_strike_chance_while_wielding_shield_+%" } }, - [1331]={ + [1394]={ [1]={ [1]={ limit={ @@ -28182,7 +29656,7 @@ return { [1]="mine_critical_strike_chance_+%" } }, - [1332]={ + [1395]={ [1]={ [1]={ limit={ @@ -28211,7 +29685,7 @@ return { [1]="two_handed_melee_critical_strike_chance_+%" } }, - [1333]={ + [1396]={ [1]={ [1]={ limit={ @@ -28227,7 +29701,7 @@ return { [1]="two_handed_melee_critical_strike_multiplier_+" } }, - [1334]={ + [1397]={ [1]={ [1]={ limit={ @@ -28256,7 +29730,7 @@ return { [1]="one_handed_melee_critical_strike_chance_+%" } }, - [1335]={ + [1398]={ [1]={ [1]={ limit={ @@ -28285,7 +29759,7 @@ return { [1]="melee_critical_strike_chance_+%" } }, - [1336]={ + [1399]={ [1]={ [1]={ limit={ @@ -28314,7 +29788,7 @@ return { [1]="critical_strike_chance_while_dual_wielding_+%" } }, - [1337]={ + [1400]={ [1]={ [1]={ limit={ @@ -28343,7 +29817,7 @@ return { [1]="fire_critical_strike_chance_+%" } }, - [1338]={ + [1401]={ [1]={ [1]={ limit={ @@ -28372,7 +29846,7 @@ return { [1]="lightning_critical_strike_chance_+%" } }, - [1339]={ + [1402]={ [1]={ [1]={ limit={ @@ -28401,7 +29875,7 @@ return { [1]="cold_critical_strike_chance_+%" } }, - [1340]={ + [1403]={ [1]={ [1]={ limit={ @@ -28430,7 +29904,7 @@ return { [1]="elemental_critical_strike_chance_+%" } }, - [1341]={ + [1404]={ [1]={ [1]={ limit={ @@ -28459,7 +29933,7 @@ return { [1]="chaos_critical_strike_chance_+%" } }, - [1342]={ + [1405]={ [1]={ [1]={ limit={ @@ -28488,7 +29962,7 @@ return { [1]="totem_critical_strike_chance_+%" } }, - [1343]={ + [1406]={ [1]={ [1]={ limit={ @@ -28517,7 +29991,23 @@ return { [1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem" } }, - [1344]={ + [1407]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits with this Weapon have no Critical Damage Bonus" + } + }, + stats={ + [1]="local_no_critical_strike_multiplier" + } + }, + [1408]={ [1]={ [1]={ limit={ @@ -28533,7 +30023,7 @@ return { [1]="critical_strike_multiplier_with_dagger_+" } }, - [1345]={ + [1409]={ [1]={ [1]={ limit={ @@ -28549,7 +30039,7 @@ return { [1]="mace_critical_strike_multiplier_+" } }, - [1346]={ + [1410]={ [1]={ [1]={ limit={ @@ -28565,7 +30055,7 @@ return { [1]="axe_critical_strike_multiplier_+" } }, - [1347]={ + [1411]={ [1]={ [1]={ limit={ @@ -28581,7 +30071,7 @@ return { [1]="bow_critical_strike_multiplier_+" } }, - [1348]={ + [1412]={ [1]={ [1]={ limit={ @@ -28597,7 +30087,7 @@ return { [1]="sword_critical_strike_multiplier_+" } }, - [1349]={ + [1413]={ [1]={ [1]={ limit={ @@ -28613,7 +30103,7 @@ return { [1]="wand_critical_strike_multiplier_+" } }, - [1350]={ + [1414]={ [1]={ [1]={ limit={ @@ -28629,7 +30119,7 @@ return { [1]="claw_critical_strike_multiplier_+" } }, - [1351]={ + [1415]={ [1]={ [1]={ limit={ @@ -28658,7 +30148,7 @@ return { [1]="quarterstaff_critical_strike_multiplier_+" } }, - [1352]={ + [1416]={ [1]={ [1]={ limit={ @@ -28674,7 +30164,7 @@ return { [1]="spear_critical_strike_multiplier_+" } }, - [1353]={ + [1417]={ [1]={ [1]={ limit={ @@ -28690,7 +30180,7 @@ return { [1]="one_handed_melee_critical_strike_multiplier_+" } }, - [1354]={ + [1418]={ [1]={ [1]={ limit={ @@ -28706,7 +30196,7 @@ return { [1]="melee_weapon_critical_strike_multiplier_+" } }, - [1355]={ + [1419]={ [1]={ [1]={ limit={ @@ -28722,7 +30212,7 @@ return { [1]="critical_strike_multiplier_while_dual_wielding_+" } }, - [1356]={ + [1420]={ [1]={ [1]={ limit={ @@ -28738,7 +30228,7 @@ return { [1]="melee_critical_strike_multiplier_+_while_wielding_shield" } }, - [1357]={ + [1421]={ [1]={ [1]={ limit={ @@ -28754,7 +30244,7 @@ return { [1]="mine_critical_strike_multiplier_+" } }, - [1358]={ + [1422]={ [1]={ [1]={ limit={ @@ -28770,7 +30260,7 @@ return { [1]="fire_critical_strike_multiplier_+" } }, - [1359]={ + [1423]={ [1]={ [1]={ limit={ @@ -28786,7 +30276,7 @@ return { [1]="lightning_critical_strike_multiplier_+" } }, - [1360]={ + [1424]={ [1]={ [1]={ limit={ @@ -28802,7 +30292,7 @@ return { [1]="cold_critical_strike_multiplier_+" } }, - [1361]={ + [1425]={ [1]={ [1]={ limit={ @@ -28818,7 +30308,7 @@ return { [1]="elemental_critical_strike_multiplier_+" } }, - [1362]={ + [1426]={ [1]={ [1]={ limit={ @@ -28834,7 +30324,7 @@ return { [1]="chaos_critical_strike_multiplier_+" } }, - [1363]={ + [1427]={ [1]={ [1]={ limit={ @@ -28863,7 +30353,7 @@ return { [1]="self_critical_strike_multiplier_-%_per_endurance_charge" } }, - [1364]={ + [1428]={ [1]={ [1]={ limit={ @@ -28872,14 +30362,14 @@ return { [2]="#" } }, - text="Your Critical Hits do not deal extra Damage" + text="You have no Critical Damage Bonus" } }, stats={ [1]="no_critical_strike_multiplier" } }, - [1365]={ + [1429]={ [1]={ [1]={ limit={ @@ -28895,7 +30385,7 @@ return { [1]="totem_critical_strike_multiplier_+" } }, - [1366]={ + [1430]={ [1]={ [1]={ limit={ @@ -28911,7 +30401,7 @@ return { [1]="while_using_mace_stun_threshold_reduction_+%" } }, - [1367]={ + [1431]={ [1]={ [1]={ limit={ @@ -28927,7 +30417,7 @@ return { [1]="bow_stun_threshold_reduction_+%" } }, - [1368]={ + [1432]={ [1]={ [1]={ limit={ @@ -28943,7 +30433,7 @@ return { [1]="global_knockback" } }, - [1369]={ + [1433]={ [1]={ [1]={ limit={ @@ -28959,7 +30449,7 @@ return { [1]="cannot_be_knocked_back" } }, - [1370]={ + [1434]={ [1]={ [1]={ limit={ @@ -28984,7 +30474,7 @@ return { [1]="avoid_knockback_%" } }, - [1371]={ + [1435]={ [1]={ [1]={ limit={ @@ -29000,7 +30490,7 @@ return { [1]="knockback_with_bow" } }, - [1372]={ + [1436]={ [1]={ [1]={ limit={ @@ -29016,7 +30506,7 @@ return { [1]="knockback_with_staff" } }, - [1373]={ + [1437]={ [1]={ [1]={ limit={ @@ -29032,7 +30522,7 @@ return { [1]="knockback_with_wand" } }, - [1374]={ + [1438]={ [1]={ [1]={ limit={ @@ -29048,7 +30538,7 @@ return { [1]="local_knockback" } }, - [1375]={ + [1439]={ [1]={ [1]={ limit={ @@ -29057,14 +30547,43 @@ return { [2]="#" } }, - text="{0:+d} to Ward" + text="Gain {0}% of maximum Life as Extra maximum Spirit" } }, stats={ - [1]="base_ward" + [1]="max_life_%_as_spirit" } }, - [1376]={ + [1440]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit" + } + }, + stats={ + [1]="spirit_+%" + } + }, + [1441]={ [1]={ [1]={ limit={ @@ -29073,14 +30592,14 @@ return { [2]="#" } }, - text="{0:+d} to Ward" + text="{0:+d} to maximum Adaptations" } }, stats={ - [1]="local_ward" + [1]="max_adaptations_+" } }, - [1377]={ + [1442]={ [1]={ [1]={ limit={ @@ -29089,7 +30608,7 @@ return { [2]="#" } }, - text="{0}% increased Ward" + text="{0}% increased Adaptation Duration" }, [2]={ [1]={ @@ -29102,14 +30621,30 @@ return { [2]=-1 } }, - text="{0}% reduced Ward" + text="{0}% reduced Adaptation Duration" } }, stats={ - [1]="ward_+%" + [1]="adaptation_duration_+%" } }, - [1378]={ + [1443]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to maximum Armour" + } + }, + stats={ + [1]="maximum_physical_damage_reduction_%" + } + }, + [1444]={ [1]={ [1]={ limit={ @@ -29118,7 +30653,7 @@ return { [2]="#" } }, - text="{0}% increased Ward" + text="{0}% increased Armour and Evasion Rating" }, [2]={ [1]={ @@ -29131,14 +30666,62 @@ return { [2]=-1 } }, - text="{0}% reduced Ward" + text="{0}% reduced Armour and Evasion Rating" } }, stats={ - [1]="local_ward_+%" + [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [1379]={ + [1445]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Evasion Rating while on Low Life" + } + }, + stats={ + [1]="evasion_rating_+_when_on_low_life" + } + }, + [1446]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Evasion Rating while on Full Life" + } + }, + stats={ + [1]="evasion_rating_+_when_on_full_life" + } + }, + [1447]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Evasion Rating per 1 Item Energy Shield on Equipped Helmet" + } + }, + stats={ + [1]="evasion_rating_+_per_1_helmet_energy_shield" + } + }, + [1448]={ [1]={ [1]={ limit={ @@ -29147,7 +30730,7 @@ return { [2]="#" } }, - text="{0}% faster Restoration of Ward" + text="{0}% increased Evasion Rating during Onslaught" }, [2]={ [1]={ @@ -29160,14 +30743,14 @@ return { [2]=-1 } }, - text="{0}% slower Restoration of Ward" + text="{0}% reduced Evasion Rating during Onslaught" } }, stats={ - [1]="ward_delay_recovery_+%" + [1]="evasion_rating_+%_while_onslaught_is_active" } }, - [1380]={ + [1449]={ [1]={ [1]={ limit={ @@ -29176,7 +30759,7 @@ return { [2]="#" } }, - text="{0}% increased Spirit" + text="{0}% increased Evasion Rating per Frenzy Charge" }, [2]={ [1]={ @@ -29189,14 +30772,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spirit" + text="{0}% reduced Evasion Rating per Frenzy Charge" } }, stats={ - [1]="spirit_+%" + [1]="evasion_rating_+%_per_frenzy_charge" } }, - [1381]={ + [1450]={ [1]={ [1]={ limit={ @@ -29205,43 +30788,30 @@ return { [2]="#" } }, - text="{0:+d} to maximum Adaptations" + text="Gain {0}% of maximum Life as Extra maximum Mana" } }, stats={ - [1]="max_adaptations_+" + [1]="max_life_%_as_mana" } }, - [1382]={ + [1451]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Adaptation Duration" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Adaptation Duration" + text="{0:+d} to maximum Energy Shield per 100 Reserved Life" } }, stats={ - [1]="adaptation_duration_+%" + [1]="maximum_energy_shield_+_per_100_life_reserved" } }, - [1383]={ + [1452]={ [1]={ [1]={ limit={ @@ -29250,43 +30820,30 @@ return { [2]="#" } }, - text="{0:+d}% to maximum Armour" + text="{0:+d} to maximum Energy Shield per 6 Item Evasion on Equipped Body Armour" } }, stats={ - [1]="maximum_physical_damage_reduction_%" + [1]="maximum_energy_shield_+_per_6_body_armour_evasion_rating" } }, - [1384]={ + [1453]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Armour and Evasion Rating" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Armour and Evasion Rating" + text="Gain {0}% of maximum Life as Extra maximum Runic Ward" } }, stats={ - [1]="evasion_and_physical_damage_reduction_rating_+%" + [1]="base_maximum_life_%_to_gain_as_maximum_ward" } }, - [1385]={ + [1454]={ [1]={ [1]={ limit={ @@ -29295,14 +30852,14 @@ return { [2]="#" } }, - text="{0:+d} to Evasion Rating while on Low Life" + text="Gain {0}% of maximum Mana as Extra maximum Energy Shield" } }, stats={ - [1]="evasion_rating_+_when_on_low_life" + [1]="mana_%_to_gain_as_energy_shield" } }, - [1386]={ + [1455]={ [1]={ [1]={ limit={ @@ -29311,14 +30868,14 @@ return { [2]="#" } }, - text="{0:+d} to Evasion Rating while on Full Life" + text="Gain {0}% of maximum Mana as Extra maximum Energy Shield while you have at least 150 Devotion" } }, stats={ - [1]="evasion_rating_+_when_on_full_life" + [1]="mana_%_to_gain_as_energy_shield_at_devotion_threshold" } }, - [1387]={ + [1456]={ [1]={ [1]={ limit={ @@ -29327,72 +30884,78 @@ return { [2]="#" } }, - text="{0:+d} to Evasion Rating per 1 Item Energy Shield on Equipped Helmet" + text="Convert {0}% of Maximum Life to Armour per 1% maximum Chaos Resistance" } }, stats={ - [1]="evasion_rating_+_per_1_helmet_energy_shield" + [1]="maximum_life_%_to_convert_to_armour_per_1%_chaos_resistance" } }, - [1388]={ + [1457]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased Evasion Rating during Onslaught" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Convert {0}% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%" + } + }, + stats={ + [1]="maximum_life_%_to_convert_to_twice_as_much_armour_per_1%_chaos_resistance" + } + }, + [1458]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Evasion Rating during Onslaught" + text="Gain {0}% of maximum Life as Extra maximum Energy Shield" } }, stats={ - [1]="evasion_rating_+%_while_onslaught_is_active" + [1]="maximum_life_%_to_gain_as_maximum_energy_shield" } }, - [1389]={ + [1459]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased Evasion Rating per Frenzy Charge" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Gain {0}% of maximum Mana as Extra maximum Energy Shield while affected by Clarity" + } + }, + stats={ + [1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity" + } + }, + [1460]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Evasion Rating per Frenzy Charge" + text="Minions gain {0}% of their maximum Life as Extra maximum Energy Shield" } }, stats={ - [1]="evasion_rating_+%_per_frenzy_charge" + [1]="minion_maximum_life_%_to_gain_as_maximum_energy_shield" } }, - [1390]={ + [1461]={ [1]={ [1]={ limit={ @@ -29408,7 +30971,7 @@ return { [1]="energy_shield_recharge_not_delayed_by_damage" } }, - [1391]={ + [1462]={ [1]={ [1]={ [1]={ @@ -29441,39 +31004,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_%" } }, - [1392]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to maximum Energy Shield per 100 Reserved Life" - } - }, - stats={ - [1]="maximum_energy_shield_+_per_100_life_reserved" - } - }, - [1393]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to maximum Energy Shield per 6 Item Evasion Rating on Equipped Body Armour" - } - }, - stats={ - [1]="maximum_energy_shield_+_per_6_body_armour_evasion_rating" - } - }, - [1394]={ + [1463]={ [1]={ [1]={ limit={ @@ -29502,36 +31033,7 @@ return { [1]="energy_shield_recovery_rate_+%" } }, - [1395]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased maximum Life, Mana and Energy Shield" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced maximum Life, Mana and Energy Shield" - } - }, - stats={ - [1]="maximum_life_mana_and_energy_shield_+%" - } - }, - [1396]={ + [1464]={ [1]={ [1]={ limit={ @@ -29560,7 +31062,7 @@ return { [1]="monster_life_+%_final_from_rarity" } }, - [1397]={ + [1465]={ [1]={ [1]={ limit={ @@ -29589,7 +31091,7 @@ return { [1]="monster_life_+%_final_from_map" } }, - [1398]={ + [1466]={ [1]={ [1]={ [1]={ @@ -29609,7 +31111,7 @@ return { [1]="life_degeneration_per_minute_not_in_grace" } }, - [1399]={ + [1467]={ [1]={ [1]={ [1]={ @@ -29629,7 +31131,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_endurance_charge" } }, - [1400]={ + [1468]={ [1]={ [1]={ limit={ @@ -29658,7 +31160,7 @@ return { [1]="life_recovery_rate_+%" } }, - [1401]={ + [1469]={ [1]={ [1]={ [1]={ @@ -29678,7 +31180,7 @@ return { [1]="mana_regeneration_rate_per_minute_%" } }, - [1402]={ + [1470]={ [1]={ [1]={ [1]={ @@ -29698,7 +31200,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [1403]={ + [1471]={ [1]={ [1]={ [1]={ @@ -29718,7 +31220,7 @@ return { [1]="mana_degeneration_per_minute_not_in_grace" } }, - [1404]={ + [1472]={ [1]={ [1]={ [1]={ @@ -29738,7 +31240,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_power_charge" } }, - [1405]={ + [1473]={ [1]={ [1]={ limit={ @@ -29767,7 +31269,7 @@ return { [1]="mana_recovery_rate_+%" } }, - [1406]={ + [1474]={ [1]={ [1]={ limit={ @@ -29796,7 +31298,7 @@ return { [1]="maximum_life_+%_and_fire_resistance_-%" } }, - [1407]={ + [1475]={ [1]={ [1]={ limit={ @@ -29825,7 +31327,7 @@ return { [1]="maximum_mana_+%_and_cold_resistance_-%" } }, - [1408]={ + [1476]={ [1]={ [1]={ limit={ @@ -29854,7 +31356,7 @@ return { [1]="maximum_energy_shield_+%_and_lightning_resistance_-%" } }, - [1409]={ + [1477]={ [1]={ [1]={ limit={ @@ -29870,7 +31372,32 @@ return { [1]="cannot_be_damaged" } }, - [1410]={ + [1478]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Physical Damage taken bypasses Energy Shield" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="{0}% of Physical Damage taken bypasses Energy Shield" + } + }, + stats={ + [1]="%_physical_damage_bypasses_energy_shield" + } + }, + [1479]={ [1]={ [1]={ limit={ @@ -29879,27 +31406,87 @@ return { [2]="#" } }, - text="{0}% increased Quantity of Items found" + text="{0}% of Damage taken bypasses Energy Shield" + } + }, + stats={ + [1]="base_all_damage_bypass_energy_shield_%" + } + }, + [1480]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Chaos Damage taken bypasses Energy Shield" + } + }, + stats={ + [1]="base_chaos_damage_bypass_energy_shield_%" + } + }, + [1481]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% of Elemental Damage taken from Hits bypasses Energy Shield" }, [2]={ - [1]={ - k="negate", - v=1 + limit={ + [1]={ + [1]=100, + [2]="#" + } }, + text="Elemental Damage taken from Hits bypasses Energy Shield" + } + }, + stats={ + [1]="base_elemental_hit_damage_bypass_energy_shield_%" + } + }, + [1482]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Quantity of Items found" + text="{0}% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" } }, stats={ - [1]="item_found_quantity_+%" + [1]="hit_damage_bypass_energy_shield_%_when_below_half_energy_shield" } }, - [1411]={ + [1483]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage cannot bypass Energy Shield" + } + }, + stats={ + [1]="unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield" + } + }, + [1484]={ [1]={ [1]={ limit={ @@ -29928,7 +31515,7 @@ return { [1]="base_item_found_quantity_+%" } }, - [1412]={ + [1485]={ [1]={ [1]={ limit={ @@ -29957,7 +31544,7 @@ return { [1]="item_found_quantity_+%_when_on_low_life" } }, - [1413]={ + [1486]={ [1]={ [1]={ limit={ @@ -29986,7 +31573,7 @@ return { [1]="chest_item_quantity_+%" } }, - [1414]={ + [1487]={ [1]={ [1]={ limit={ @@ -30015,7 +31602,7 @@ return { [1]="item_found_rarity_+%" } }, - [1415]={ + [1488]={ [1]={ [1]={ limit={ @@ -30044,7 +31631,7 @@ return { [1]="local_display_aura_allies_have_increased_item_rarity_+%" } }, - [1416]={ + [1489]={ [1]={ [1]={ limit={ @@ -30073,7 +31660,7 @@ return { [1]="local_display_item_found_rarity_+%_for_you_and_nearby_allies" } }, - [1417]={ + [1490]={ [1]={ [1]={ limit={ @@ -30102,7 +31689,7 @@ return { [1]="item_found_rarity_+%_when_on_low_life" } }, - [1418]={ + [1491]={ [1]={ [1]={ limit={ @@ -30131,7 +31718,7 @@ return { [1]="chest_item_rarity_+%" } }, - [1419]={ + [1492]={ [1]={ [1]={ limit={ @@ -30160,7 +31747,7 @@ return { [1]="item_found_quality_+%" } }, - [1420]={ + [1493]={ [1]={ [1]={ limit={ @@ -30189,7 +31776,7 @@ return { [1]="item_found_relevancy_+%" } }, - [1421]={ + [1494]={ [1]={ [1]={ limit={ @@ -30218,7 +31805,7 @@ return { [1]="experience_gain_+%" } }, - [1422]={ + [1495]={ [1]={ [1]={ limit={ @@ -30247,7 +31834,7 @@ return { [1]="experience_loss_on_death_-%" } }, - [1423]={ + [1496]={ [1]={ [1]={ limit={ @@ -30263,7 +31850,7 @@ return { [1]="local_ring_disable_other_ring" } }, - [1424]={ + [1497]={ [1]={ [1]={ limit={ @@ -30279,7 +31866,7 @@ return { [1]="base_fire_immunity" } }, - [1425]={ + [1498]={ [1]={ [1]={ limit={ @@ -30295,7 +31882,7 @@ return { [1]="totem_fire_immunity" } }, - [1426]={ + [1499]={ [1]={ [1]={ limit={ @@ -30311,7 +31898,7 @@ return { [1]="physical_spell_skill_gem_level_+" } }, - [1427]={ + [1500]={ [1]={ [1]={ limit={ @@ -30327,7 +31914,7 @@ return { [1]="raise_zombie_gem_level_+" } }, - [1428]={ + [1501]={ [1]={ [1]={ limit={ @@ -30343,7 +31930,7 @@ return { [1]="raise_spectre_gem_level_+" } }, - [1429]={ + [1502]={ [1]={ [1]={ limit={ @@ -30359,7 +31946,7 @@ return { [1]="summon_skeleton_gem_level_+" } }, - [1430]={ + [1503]={ [1]={ [1]={ limit={ @@ -30375,7 +31962,7 @@ return { [1]="resist_all_elements_%_per_endurance_charge" } }, - [1431]={ + [1504]={ [1]={ [1]={ limit={ @@ -30391,7 +31978,7 @@ return { [1]="resist_all_elements_%_per_power_charge" } }, - [1432]={ + [1505]={ [1]={ [1]={ limit={ @@ -30407,7 +31994,7 @@ return { [1]="resist_all_elements_+%_while_holding_shield" } }, - [1433]={ + [1506]={ [1]={ [1]={ limit={ @@ -30423,7 +32010,7 @@ return { [1]="elemental_resistance_%_when_on_low_life" } }, - [1434]={ + [1507]={ [1]={ [1]={ limit={ @@ -30439,7 +32026,7 @@ return { [1]="fire_damage_resistance_is_%" } }, - [1435]={ + [1508]={ [1]={ [1]={ limit={ @@ -30455,36 +32042,7 @@ return { [1]="unique_fire_damage_resistance_%_when_red_gem_socketed" } }, - [1436]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0:+d}% to Fire Resistance while on Low Life" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0:+d}% to Fire Resistance while on Low Life" - } - }, - stats={ - [1]="fire_damage_resistance_%_when_on_low_life" - } - }, - [1437]={ + [1509]={ [1]={ [1]={ limit={ @@ -30513,7 +32071,7 @@ return { [1]="fire_damage_resistance_+%" } }, - [1438]={ + [1510]={ [1]={ [1]={ limit={ @@ -30529,7 +32087,7 @@ return { [1]="cold_damage_resistance_is_%" } }, - [1439]={ + [1511]={ [1]={ [1]={ limit={ @@ -30545,7 +32103,7 @@ return { [1]="unique_cold_damage_resistance_%_when_green_gem_socketed" } }, - [1440]={ + [1512]={ [1]={ [1]={ limit={ @@ -30574,7 +32132,7 @@ return { [1]="cold_damage_resistance_+%" } }, - [1441]={ + [1513]={ [1]={ [1]={ limit={ @@ -30590,7 +32148,7 @@ return { [1]="lightning_damage_resistance_is_%" } }, - [1442]={ + [1514]={ [1]={ [1]={ limit={ @@ -30606,7 +32164,7 @@ return { [1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed" } }, - [1443]={ + [1515]={ [1]={ [1]={ limit={ @@ -30635,7 +32193,7 @@ return { [1]="lightning_damage_resistance_+%" } }, - [1444]={ + [1516]={ [1]={ [1]={ limit={ @@ -30651,7 +32209,7 @@ return { [1]="additional_maximum_all_resistances_%" } }, - [1445]={ + [1517]={ [1]={ [1]={ limit={ @@ -30684,7 +32242,7 @@ return { [1]="temporal_chains_effect_on_self_+%" } }, - [1446]={ + [1518]={ [1]={ [1]={ limit={ @@ -30717,7 +32275,7 @@ return { [1]="chill_effectiveness_on_self_+%" } }, - [1447]={ + [1519]={ [1]={ [1]={ limit={ @@ -30746,7 +32304,7 @@ return { [1]="trickster_damage_+%_final_per_different_mastery" } }, - [1448]={ + [1520]={ [1]={ [1]={ limit={ @@ -30762,7 +32320,7 @@ return { [1]="recover_%_life_on_kill_per_different_mastery" } }, - [1449]={ + [1521]={ [1]={ [1]={ limit={ @@ -30778,7 +32336,7 @@ return { [1]="recover_%_es_on_kill_per_different_mastery" } }, - [1450]={ + [1522]={ [1]={ [1]={ limit={ @@ -30794,7 +32352,7 @@ return { [1]="recover_%_mana_on_kill_per_different_mastery" } }, - [1451]={ + [1523]={ [1]={ [1]={ [1]={ @@ -30814,7 +32372,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies" } }, - [1452]={ + [1524]={ [1]={ [1]={ limit={ @@ -30843,7 +32401,7 @@ return { [1]="life_gain_per_target" } }, - [1453]={ + [1525]={ [1]={ [1]={ limit={ @@ -30872,7 +32430,7 @@ return { [1]="base_life_gained_on_spell_hit" } }, - [1454]={ + [1526]={ [1]={ [1]={ limit={ @@ -30901,7 +32459,7 @@ return { [1]="life_and_mana_gain_per_hit" } }, - [1455]={ + [1527]={ [1]={ [1]={ limit={ @@ -30930,7 +32488,7 @@ return { [1]="local_life_and_mana_gain_per_target" } }, - [1456]={ + [1528]={ [1]={ [1]={ limit={ @@ -30959,7 +32517,7 @@ return { [1]="life_gain_on_ignited_enemy_hit" } }, - [1457]={ + [1529]={ [1]={ [1]={ limit={ @@ -30988,7 +32546,7 @@ return { [1]="mana_gain_per_target" } }, - [1458]={ + [1530]={ [1]={ [1]={ limit={ @@ -31017,7 +32575,7 @@ return { [1]="local_mana_gain_per_target" } }, - [1459]={ + [1531]={ [1]={ [1]={ limit={ @@ -31046,7 +32604,7 @@ return { [1]="virtual_mana_gain_per_target" } }, - [1460]={ + [1532]={ [1]={ [1]={ limit={ @@ -31075,7 +32633,7 @@ return { [1]="energy_shield_gain_per_target" } }, - [1461]={ + [1533]={ [1]={ [1]={ limit={ @@ -31104,7 +32662,7 @@ return { [1]="recover_%_maximum_life_on_kill" } }, - [1462]={ + [1534]={ [1]={ [1]={ limit={ @@ -31133,7 +32691,7 @@ return { [1]="recover_energy_shield_%_on_kill" } }, - [1463]={ + [1535]={ [1]={ [1]={ limit={ @@ -31162,7 +32720,7 @@ return { [1]="recover_%_maximum_mana_on_kill" } }, - [1464]={ + [1536]={ [1]={ [1]={ limit={ @@ -31178,7 +32736,7 @@ return { [1]="recover_%_maximum_mana_on_killing_cursed_enemy" } }, - [1465]={ + [1537]={ [1]={ [1]={ limit={ @@ -31207,7 +32765,7 @@ return { [1]="life_gained_on_killing_ignited_enemies" } }, - [1466]={ + [1538]={ [1]={ [1]={ limit={ @@ -31223,7 +32781,7 @@ return { [1]="maximum_life_%_lost_on_kill" } }, - [1467]={ + [1539]={ [1]={ [1]={ limit={ @@ -31239,7 +32797,7 @@ return { [1]="maximum_mana_%_gained_on_kill" } }, - [1468]={ + [1540]={ [1]={ [1]={ limit={ @@ -31255,7 +32813,7 @@ return { [1]="maximum_energy_shield_%_lost_on_kill" } }, - [1469]={ + [1541]={ [1]={ [1]={ limit={ @@ -31284,7 +32842,7 @@ return { [1]="life_gained_on_block" } }, - [1470]={ + [1542]={ [1]={ [1]={ limit={ @@ -31313,7 +32871,7 @@ return { [1]="mana_gained_on_block" } }, - [1471]={ + [1543]={ [1]={ [1]={ limit={ @@ -31342,7 +32900,7 @@ return { [1]="energy_shield_gained_on_block" } }, - [1472]={ + [1544]={ [1]={ [1]={ limit={ @@ -31358,7 +32916,7 @@ return { [1]="recover_X_life_on_block" } }, - [1473]={ + [1545]={ [1]={ [1]={ limit={ @@ -31374,7 +32932,7 @@ return { [1]="minion_recover_X_life_on_block" } }, - [1474]={ + [1546]={ [1]={ [1]={ limit={ @@ -31403,7 +32961,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1475]={ + [1547]={ [1]={ [1]={ limit={ @@ -31432,7 +32990,7 @@ return { [1]="minion_life_recovery_rate_+%" } }, - [1476]={ + [1548]={ [1]={ [1]={ limit={ @@ -31461,7 +33019,7 @@ return { [1]="minion_maximum_mana_+%" } }, - [1477]={ + [1549]={ [1]={ [1]={ limit={ @@ -31490,7 +33048,7 @@ return { [1]="minion_maximum_energy_shield_+%" } }, - [1478]={ + [1550]={ [1]={ [1]={ limit={ @@ -31519,7 +33077,7 @@ return { [1]="minion_movement_speed_+%" } }, - [1479]={ + [1551]={ [1]={ [1]={ limit={ @@ -31548,7 +33106,7 @@ return { [1]="base_spectre_maximum_life_+%" } }, - [1480]={ + [1552]={ [1]={ [1]={ limit={ @@ -31577,7 +33135,7 @@ return { [1]="base_zombie_maximum_life_+%" } }, - [1481]={ + [1553]={ [1]={ [1]={ limit={ @@ -31606,7 +33164,7 @@ return { [1]="base_fire_elemental_maximum_life_+%" } }, - [1482]={ + [1554]={ [1]={ [1]={ limit={ @@ -31635,7 +33193,7 @@ return { [1]="base_raven_maximum_life_+%" } }, - [1483]={ + [1555]={ [1]={ [1]={ limit={ @@ -31664,7 +33222,7 @@ return { [1]="totem_life_+%" } }, - [1484]={ + [1556]={ [1]={ [1]={ limit={ @@ -31693,7 +33251,7 @@ return { [1]="totem_mana_+%" } }, - [1485]={ + [1557]={ [1]={ [1]={ limit={ @@ -31722,7 +33280,7 @@ return { [1]="totem_energy_shield_+%" } }, - [1486]={ + [1558]={ [1]={ [1]={ limit={ @@ -31751,7 +33309,7 @@ return { [1]="totem_range_+%" } }, - [1487]={ + [1559]={ [1]={ [1]={ limit={ @@ -31780,7 +33338,7 @@ return { [1]="totem_duration_+%" } }, - [1488]={ + [1560]={ [1]={ [1]={ limit={ @@ -31809,7 +33367,7 @@ return { [1]="skeleton_duration_+%" } }, - [1489]={ + [1561]={ [1]={ [1]={ limit={ @@ -31838,7 +33396,7 @@ return { [1]="buff_duration_+%" } }, - [1490]={ + [1562]={ [1]={ [1]={ limit={ @@ -31867,7 +33425,7 @@ return { [1]="base_curse_duration_+%" } }, - [1491]={ + [1563]={ [1]={ [1]={ limit={ @@ -31896,7 +33454,7 @@ return { [1]="taunt_duration_+%" } }, - [1492]={ + [1564]={ [1]={ [1]={ limit={ @@ -31912,7 +33470,7 @@ return { [1]="life_gained_on_taunting_enemy" } }, - [1493]={ + [1565]={ [1]={ [1]={ limit={ @@ -31941,7 +33499,7 @@ return { [1]="mana_gained_on_hitting_taunted_enemy" } }, - [1494]={ + [1566]={ [1]={ [1]={ limit={ @@ -31957,7 +33515,7 @@ return { [1]="buff_affects_party" } }, - [1495]={ + [1567]={ [1]={ [1]={ limit={ @@ -31986,7 +33544,7 @@ return { [1]="buff_party_effect_radius_+%" } }, - [1496]={ + [1568]={ [1]={ [1]={ limit={ @@ -32002,7 +33560,7 @@ return { [1]="do_not_chain" } }, - [1497]={ + [1569]={ [1]={ [1]={ limit={ @@ -32018,7 +33576,7 @@ return { [1]="arrow_chains_+" } }, - [1498]={ + [1570]={ [1]={ [1]={ limit={ @@ -32034,7 +33592,7 @@ return { [1]="number_of_chains" } }, - [1499]={ + [1571]={ [1]={ [1]={ limit={ @@ -32063,7 +33621,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [1500]={ + [1572]={ [1]={ [1]={ limit={ @@ -32088,7 +33646,7 @@ return { [1]="arrow_base_number_of_targets_to_pierce" } }, - [1501]={ + [1573]={ [1]={ [1]={ limit={ @@ -32122,23 +33680,7 @@ return { [2]="number_of_additional_projectiles" } }, - [1502]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Bow Attacks fire {0} additional Arrows if you haven't Cast Dash recently" - } - }, - stats={ - [1]="number_of_additional_arrows_if_havent_cast_dash_recently" - } - }, - [1503]={ + [1574]={ [1]={ [1]={ limit={ @@ -32167,7 +33709,7 @@ return { [1]="base_arrow_speed_+%" } }, - [1504]={ + [1575]={ [1]={ [1]={ limit={ @@ -32196,7 +33738,7 @@ return { [1]="projectile_speed_+%_with_crossbow_skills" } }, - [1505]={ + [1576]={ [1]={ [1]={ limit={ @@ -32225,7 +33767,7 @@ return { [1]="movement_velocity_+%_when_on_low_life" } }, - [1506]={ + [1577]={ [1]={ [1]={ limit={ @@ -32254,7 +33796,7 @@ return { [1]="movement_velocity_+%_when_on_full_life" } }, - [1507]={ + [1578]={ [1]={ [1]={ [1]={ @@ -32274,7 +33816,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life" } }, - [1508]={ + [1579]={ [1]={ [1]={ limit={ @@ -32290,7 +33832,7 @@ return { [1]="movement_velocity_+%_per_frenzy_charge" } }, - [1509]={ + [1580]={ [1]={ [1]={ limit={ @@ -32306,7 +33848,7 @@ return { [1]="base_minimum_endurance_charges" } }, - [1510]={ + [1581]={ [1]={ [1]={ limit={ @@ -32322,7 +33864,7 @@ return { [1]="max_endurance_charges" } }, - [1511]={ + [1582]={ [1]={ [1]={ limit={ @@ -32338,7 +33880,7 @@ return { [1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges" } }, - [1512]={ + [1583]={ [1]={ [1]={ limit={ @@ -32354,7 +33896,7 @@ return { [1]="modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges" } }, - [1513]={ + [1584]={ [1]={ [1]={ limit={ @@ -32370,7 +33912,7 @@ return { [1]="maximum_brutal_charges_is_equal_to_maximum_endurance_charges" } }, - [1514]={ + [1585]={ [1]={ [1]={ limit={ @@ -32386,7 +33928,7 @@ return { [1]="base_minimum_frenzy_charges" } }, - [1515]={ + [1586]={ [1]={ [1]={ limit={ @@ -32402,7 +33944,7 @@ return { [1]="max_frenzy_charges" } }, - [1516]={ + [1587]={ [1]={ [1]={ limit={ @@ -32418,7 +33960,7 @@ return { [1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges" } }, - [1517]={ + [1588]={ [1]={ [1]={ limit={ @@ -32434,7 +33976,7 @@ return { [1]="modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges" } }, - [1518]={ + [1589]={ [1]={ [1]={ limit={ @@ -32450,7 +33992,7 @@ return { [1]="maximum_affliction_charges_is_equal_to_maximum_frenzy_charges" } }, - [1519]={ + [1590]={ [1]={ [1]={ limit={ @@ -32466,7 +34008,7 @@ return { [1]="base_minimum_power_charges" } }, - [1520]={ + [1591]={ [1]={ [1]={ limit={ @@ -32482,7 +34024,7 @@ return { [1]="max_power_charges" } }, - [1521]={ + [1592]={ [1]={ [1]={ limit={ @@ -32498,7 +34040,7 @@ return { [1]="maximum_power_and_frenzy_charges_+" } }, - [1522]={ + [1593]={ [1]={ [1]={ limit={ @@ -32514,7 +34056,7 @@ return { [1]="modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges" } }, - [1523]={ + [1594]={ [1]={ [1]={ limit={ @@ -32530,7 +34072,7 @@ return { [1]="maximum_absorption_charges_is_equal_to_maximum_power_charges" } }, - [1524]={ + [1595]={ [1]={ [1]={ limit={ @@ -32546,7 +34088,7 @@ return { [1]="add_endurance_charge_on_critical_strike" } }, - [1525]={ + [1596]={ [1]={ [1]={ limit={ @@ -32571,7 +34113,7 @@ return { [1]="chance_to_gain_endurance_charge_on_crit_%" } }, - [1526]={ + [1597]={ [1]={ [1]={ limit={ @@ -32596,7 +34138,7 @@ return { [1]="chance_to_gain_endurance_charge_on_melee_crit_%" } }, - [1527]={ + [1598]={ [1]={ [1]={ limit={ @@ -32612,7 +34154,7 @@ return { [1]="gain_endurance_charge_%_chance_on_using_fire_skill" } }, - [1528]={ + [1599]={ [1]={ [1]={ limit={ @@ -32637,7 +34179,7 @@ return { [1]="chance_to_gain_endurance_charge_on_bow_crit_%" } }, - [1529]={ + [1600]={ [1]={ [1]={ limit={ @@ -32662,7 +34204,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [1530]={ + [1601]={ [1]={ [1]={ limit={ @@ -32687,7 +34229,7 @@ return { [1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%" } }, - [1531]={ + [1602]={ [1]={ [1]={ limit={ @@ -32734,7 +34276,7 @@ return { [2]="spell_maximum_added_cold_damage_per_power_charge" } }, - [1532]={ + [1603]={ [1]={ [1]={ limit={ @@ -32759,7 +34301,7 @@ return { [1]="num_of_additional_chains_at_max_frenzy_charges" } }, - [1533]={ + [1604]={ [1]={ [1]={ limit={ @@ -32784,7 +34326,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [1534]={ + [1605]={ [1]={ [1]={ limit={ @@ -32800,7 +34342,7 @@ return { [1]="add_frenzy_charge_on_critical_strike" } }, - [1535]={ + [1606]={ [1]={ [1]={ limit={ @@ -32816,7 +34358,7 @@ return { [1]="add_power_charge_on_critical_strike" } }, - [1536]={ + [1607]={ [1]={ [1]={ limit={ @@ -32841,7 +34383,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [1537]={ + [1608]={ [1]={ [1]={ limit={ @@ -32857,7 +34399,7 @@ return { [1]="add_power_charge_on_melee_critical_strike" } }, - [1538]={ + [1609]={ [1]={ [1]={ limit={ @@ -32873,7 +34415,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [1539]={ + [1610]={ [1]={ [1]={ limit={ @@ -32889,7 +34431,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [1540]={ + [1611]={ [1]={ [1]={ limit={ @@ -32905,7 +34447,7 @@ return { [1]="add_power_charge_on_skill_hit_%" } }, - [1541]={ + [1612]={ [1]={ [1]={ limit={ @@ -32921,7 +34463,7 @@ return { [1]="add_endurance_charge_on_enemy_critical_strike" } }, - [1542]={ + [1613]={ [1]={ [1]={ limit={ @@ -32937,7 +34479,7 @@ return { [1]="add_endurance_charge_on_status_ailment" } }, - [1543]={ + [1614]={ [1]={ [1]={ limit={ @@ -32953,7 +34495,7 @@ return { [1]="base_cannot_be_chilled" } }, - [1544]={ + [1615]={ [1]={ [1]={ limit={ @@ -32969,7 +34511,7 @@ return { [1]="base_cannot_be_chilled_or_frozen" } }, - [1545]={ + [1616]={ [1]={ [1]={ limit={ @@ -32985,7 +34527,7 @@ return { [1]="base_cannot_be_frozen" } }, - [1546]={ + [1617]={ [1]={ [1]={ limit={ @@ -33001,7 +34543,7 @@ return { [1]="base_cannot_be_ignited" } }, - [1547]={ + [1618]={ [1]={ [1]={ limit={ @@ -33017,7 +34559,7 @@ return { [1]="cannot_be_poisoned" } }, - [1548]={ + [1619]={ [1]={ [1]={ limit={ @@ -33033,7 +34575,7 @@ return { [1]="base_cannot_be_shocked" } }, - [1549]={ + [1620]={ [1]={ [1]={ limit={ @@ -33049,7 +34591,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [1550]={ + [1621]={ [1]={ [1]={ limit={ @@ -33065,7 +34607,7 @@ return { [1]="avoid_all_elemental_status_%" } }, - [1551]={ + [1622]={ [1]={ [1]={ limit={ @@ -33081,7 +34623,7 @@ return { [1]="base_avoid_chill_%" } }, - [1552]={ + [1623]={ [1]={ [1]={ limit={ @@ -33097,7 +34639,7 @@ return { [1]="base_avoid_freeze_%" } }, - [1553]={ + [1624]={ [1]={ [1]={ limit={ @@ -33113,7 +34655,7 @@ return { [1]="base_avoid_ignite_%" } }, - [1554]={ + [1625]={ [1]={ [1]={ limit={ @@ -33129,7 +34671,7 @@ return { [1]="avoid_ignite_%_when_on_low_life" } }, - [1555]={ + [1626]={ [1]={ [1]={ limit={ @@ -33145,7 +34687,7 @@ return { [1]="base_avoid_shock_%" } }, - [1556]={ + [1627]={ [1]={ [1]={ limit={ @@ -33161,7 +34703,7 @@ return { [1]="base_avoid_poison_%" } }, - [1557]={ + [1628]={ [1]={ [1]={ limit={ @@ -33177,7 +34719,7 @@ return { [1]="avoid_stun_%" } }, - [1558]={ + [1629]={ [1]={ [1]={ limit={ @@ -33193,7 +34735,7 @@ return { [1]="base_avoid_stun_%" } }, - [1559]={ + [1630]={ [1]={ [1]={ limit={ @@ -33209,7 +34751,7 @@ return { [1]="always_ignite" } }, - [1560]={ + [1631]={ [1]={ [1]={ limit={ @@ -33225,7 +34767,7 @@ return { [1]="always_shock" } }, - [1561]={ + [1632]={ [1]={ [1]={ limit={ @@ -33241,7 +34783,7 @@ return { [1]="always_stun" } }, - [1562]={ + [1633]={ [1]={ [1]={ limit={ @@ -33250,14 +34792,14 @@ return { [2]="#" } }, - text="Your Hits cannot Stun Enemies" + text="Your Hits cannot Stun enemies" } }, stats={ [1]="cannot_stun" } }, - [1563]={ + [1634]={ [1]={ [1]={ limit={ @@ -33286,7 +34828,7 @@ return { [1]="chill_duration_+%" } }, - [1564]={ + [1635]={ [1]={ [1]={ limit={ @@ -33315,7 +34857,7 @@ return { [1]="shock_duration_+%" } }, - [1565]={ + [1636]={ [1]={ [1]={ limit={ @@ -33344,7 +34886,7 @@ return { [1]="freeze_duration_+%" } }, - [1566]={ + [1637]={ [1]={ [1]={ limit={ @@ -33373,7 +34915,7 @@ return { [1]="ignite_duration_+%" } }, - [1567]={ + [1638]={ [1]={ [1]={ limit={ @@ -33402,7 +34944,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [1568]={ + [1639]={ [1]={ [1]={ limit={ @@ -33431,7 +34973,7 @@ return { [1]="base_elemental_status_ailment_duration_+%" } }, - [1569]={ + [1640]={ [1]={ [1]={ limit={ @@ -33447,7 +34989,7 @@ return { [1]="cannot_inflict_elemental_ailments" } }, - [1570]={ + [1641]={ [1]={ [1]={ limit={ @@ -33476,7 +35018,7 @@ return { [1]="two_handed_melee_stun_duration_+%" } }, - [1571]={ + [1642]={ [1]={ [1]={ limit={ @@ -33505,7 +35047,7 @@ return { [1]="bow_stun_duration_+%" } }, - [1572]={ + [1643]={ [1]={ [1]={ limit={ @@ -33534,7 +35076,7 @@ return { [1]="staff_stun_duration_+%" } }, - [1573]={ + [1644]={ [1]={ [1]={ limit={ @@ -33563,7 +35105,7 @@ return { [1]="self_elemental_status_duration_-%" } }, - [1574]={ + [1645]={ [1]={ [1]={ limit={ @@ -33592,7 +35134,7 @@ return { [1]="self_chill_duration_-%" } }, - [1575]={ + [1646]={ [1]={ [1]={ limit={ @@ -33621,7 +35163,7 @@ return { [1]="self_freeze_duration_-%" } }, - [1576]={ + [1647]={ [1]={ [1]={ limit={ @@ -33650,7 +35192,7 @@ return { [1]="self_ignite_duration_-%" } }, - [1577]={ + [1648]={ [1]={ [1]={ limit={ @@ -33679,7 +35221,7 @@ return { [1]="chance_per_second_of_fire_spreading_between_enemies_%" } }, - [1578]={ + [1649]={ [1]={ [1]={ limit={ @@ -33708,7 +35250,7 @@ return { [1]="burn_damage_+%" } }, - [1579]={ + [1650]={ [1]={ [1]={ limit={ @@ -33724,7 +35266,7 @@ return { [1]="active_skill_level_+" } }, - [1580]={ + [1651]={ [1]={ [1]={ limit={ @@ -33753,7 +35295,7 @@ return { [1]="gem_experience_gain_+%" } }, - [1581]={ + [1652]={ [1]={ [1]={ limit={ @@ -33782,7 +35324,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [1582]={ + [1653]={ [1]={ [1]={ limit={ @@ -33811,7 +35353,7 @@ return { [1]="base_cost_+%" } }, - [1583]={ + [1654]={ [1]={ [1]={ limit={ @@ -33840,7 +35382,7 @@ return { [1]="base_life_cost_+%" } }, - [1584]={ + [1655]={ [1]={ [1]={ limit={ @@ -33869,7 +35411,7 @@ return { [1]="base_mana_cost_-%" } }, - [1585]={ + [1656]={ [1]={ [1]={ limit={ @@ -33898,7 +35440,7 @@ return { [1]="base_rage_cost_+%" } }, - [1586]={ + [1657]={ [1]={ [1]={ limit={ @@ -33927,7 +35469,7 @@ return { [1]="mana_cost_+%_while_on_full_energy_shield" } }, - [1587]={ + [1658]={ [1]={ [1]={ limit={ @@ -33960,7 +35502,7 @@ return { [1]="mana_cost_+%_when_on_low_life" } }, - [1588]={ + [1659]={ [1]={ [1]={ limit={ @@ -33976,7 +35518,7 @@ return { [1]="base_es_cost_+" } }, - [1589]={ + [1660]={ [1]={ [1]={ limit={ @@ -33992,7 +35534,7 @@ return { [1]="base_life_cost_+" } }, - [1590]={ + [1661]={ [1]={ [1]={ limit={ @@ -34008,7 +35550,7 @@ return { [1]="base_mana_cost_+" } }, - [1591]={ + [1662]={ [1]={ [1]={ limit={ @@ -34024,7 +35566,7 @@ return { [1]="skill_life_cost_+" } }, - [1592]={ + [1663]={ [1]={ [1]={ limit={ @@ -34040,7 +35582,7 @@ return { [1]="skill_mana_cost_+" } }, - [1593]={ + [1664]={ [1]={ [1]={ limit={ @@ -34056,7 +35598,7 @@ return { [1]="attacks_do_not_cost_mana" } }, - [1594]={ + [1665]={ [1]={ [1]={ limit={ @@ -34065,7 +35607,7 @@ return { [2]=1 } }, - text="Skills Repeat an additional Time" + text="DNT-UNUSEDSkills hapenn an additional Time" }, [2]={ limit={ @@ -34074,14 +35616,14 @@ return { [2]="#" } }, - text="Skills Repeat an additional {0} Times" + text="DNT-UNUSEDSkills happen an additional {0} Times" } }, stats={ [1]="skill_repeat_count" } }, - [1595]={ + [1666]={ [1]={ [1]={ limit={ @@ -34090,7 +35632,7 @@ return { [2]=1 } }, - text="Spells Repeat an additional Time" + text="DNT-UNUSEDSpells happen an additional Time" }, [2]={ limit={ @@ -34099,14 +35641,14 @@ return { [2]="#" } }, - text="Spells Repeat an additional {0} Times" + text="DNT-UNUSEDSpells hapenn an additional {0} Times" } }, stats={ [1]="spell_repeat_count" } }, - [1596]={ + [1667]={ [1]={ [1]={ limit={ @@ -34135,7 +35677,7 @@ return { [1]="skill_effect_duration_+%" } }, - [1597]={ + [1668]={ [1]={ [1]={ limit={ @@ -34164,7 +35706,7 @@ return { [1]="chaos_skill_effect_duration_+%" } }, - [1598]={ + [1669]={ [1]={ [1]={ limit={ @@ -34193,7 +35735,7 @@ return { [1]="skill_cooldown_-%" } }, - [1599]={ + [1670]={ [1]={ [1]={ limit={ @@ -34218,7 +35760,7 @@ return { [1]="avoid_interruption_while_casting_%" } }, - [1600]={ + [1671]={ [1]={ [1]={ limit={ @@ -34227,7 +35769,7 @@ return { [2]=1 } }, - text="{0} additional target" + text="DNT-UNUSED{0} additional target" }, [2]={ limit={ @@ -34236,14 +35778,14 @@ return { [2]="#" } }, - text="{0} additional targets" + text="DNT-UNUSED{0} additional targets" } }, stats={ [1]="attack_repeat_count" } }, - [1601]={ + [1672]={ [1]={ [1]={ limit={ @@ -34272,7 +35814,7 @@ return { [1]="stun_recovery_+%_per_frenzy_charge" } }, - [1602]={ + [1673]={ [1]={ [1]={ limit={ @@ -34288,7 +35830,7 @@ return { [1]="prevent_monster_heal" } }, - [1603]={ + [1674]={ [1]={ [1]={ limit={ @@ -34317,7 +35859,7 @@ return { [1]="prevent_monster_heal_duration_+%" } }, - [1604]={ + [1675]={ [1]={ [1]={ limit={ @@ -34346,7 +35888,7 @@ return { [1]="chest_trap_defuse_%" } }, - [1605]={ + [1676]={ [1]={ [1]={ limit={ @@ -34362,7 +35904,7 @@ return { [1]="enemies_chill_as_unfrozen" } }, - [1606]={ + [1677]={ [1]={ [1]={ limit={ @@ -34378,55 +35920,7 @@ return { [1]="enemy_shock_on_kill" } }, - [1607]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Has maximum Quality" - } - }, - stats={ - [1]="local_is_max_quality" - } - }, - [1608]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Quality does not increase Damage" - } - }, - stats={ - [1]="local_quality_does_not_increase_damage" - } - }, - [1609]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Quality does not increase Defences" - } - }, - stats={ - [1]="local_quality_does_not_increase_defences" - } - }, - [1610]={ + [1678]={ [1]={ [1]={ limit={ @@ -34442,7 +35936,7 @@ return { [1]="local_extra_socket" } }, - [1611]={ + [1679]={ [1]={ [1]={ limit={ @@ -34458,7 +35952,7 @@ return { [1]="base_cannot_evade" } }, - [1612]={ + [1680]={ [1]={ [1]={ limit={ @@ -34474,7 +35968,7 @@ return { [1]="local_disable_gem_experience_gain" } }, - [1613]={ + [1681]={ [1]={ [1]={ limit={ @@ -34503,7 +35997,7 @@ return { [1]="local_gem_experience_gain_+%" } }, - [1614]={ + [1682]={ [1]={ [1]={ limit={ @@ -34532,7 +36026,7 @@ return { [1]="local_quantity_of_sockets_+%" } }, - [1615]={ + [1683]={ [1]={ [1]={ limit={ @@ -34561,7 +36055,7 @@ return { [1]="local_connectivity_of_sockets_+%" } }, - [1616]={ + [1684]={ [1]={ [1]={ limit={ @@ -34590,7 +36084,7 @@ return { [1]="trap_duration_+%" } }, - [1617]={ + [1685]={ [1]={ [1]={ limit={ @@ -34619,7 +36113,7 @@ return { [1]="mine_duration_+%" } }, - [1618]={ + [1686]={ [1]={ [1]={ limit={ @@ -34648,7 +36142,7 @@ return { [1]="hazard_duration_+%" } }, - [1619]={ + [1687]={ [1]={ [1]={ limit={ @@ -34677,7 +36171,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1620]={ + [1688]={ [1]={ [1]={ limit={ @@ -34706,7 +36200,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [1621]={ + [1689]={ [1]={ [1]={ limit={ @@ -34735,7 +36229,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1622]={ + [1690]={ [1]={ [1]={ limit={ @@ -34764,7 +36258,7 @@ return { [1]="mine_laying_speed_+%" } }, - [1623]={ + [1691]={ [1]={ [1]={ limit={ @@ -34793,7 +36287,7 @@ return { [1]="skill_internal_monster_responsiveness_+%" } }, - [1624]={ + [1692]={ [1]={ [1]={ limit={ @@ -34822,7 +36316,7 @@ return { [1]="skill_range_+%" } }, - [1625]={ + [1693]={ [1]={ [1]={ limit={ @@ -34838,7 +36332,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_physical" } }, - [1626]={ + [1694]={ [1]={ [1]={ limit={ @@ -34854,7 +36348,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [1627]={ + [1695]={ [1]={ [1]={ limit={ @@ -34870,7 +36364,7 @@ return { [1]="enemy_non_skill_physical_damage_%_as_extra_fire_vs_you" } }, - [1628]={ + [1696]={ [1]={ [1]={ limit={ @@ -34886,7 +36380,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_fire" } }, - [1629]={ + [1697]={ [1]={ [1]={ limit={ @@ -34902,7 +36396,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold" } }, - [1630]={ + [1698]={ [1]={ [1]={ limit={ @@ -34918,7 +36412,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning" } }, - [1631]={ + [1699]={ [1]={ [1]={ limit={ @@ -34934,7 +36428,23 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos" } }, - [1632]={ + [1700]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Lightning damage as Extra Physical damage" + } + }, + stats={ + [1]="non_skill_base_lightning_damage_%_to_gain_as_physical" + } + }, + [1701]={ [1]={ [1]={ limit={ @@ -34950,7 +36460,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_fire" } }, - [1633]={ + [1702]={ [1]={ [1]={ limit={ @@ -34959,14 +36469,14 @@ return { [2]="#" } }, - text="Gain {0}% of Lightning Damage as Extra Cold Damage" + text="Gain {0}% of Lightning damage as Extra Cold damage" } }, stats={ [1]="non_skill_base_lightning_damage_%_to_gain_as_cold" } }, - [1634]={ + [1703]={ [1]={ [1]={ limit={ @@ -34982,7 +36492,23 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_chaos" } }, - [1635]={ + [1704]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Cold damage as Extra Physical damage" + } + }, + stats={ + [1]="non_skill_base_cold_damage_%_to_gain_as_physical" + } + }, + [1705]={ [1]={ [1]={ limit={ @@ -34998,7 +36524,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_fire" } }, - [1636]={ + [1706]={ [1]={ [1]={ limit={ @@ -35014,7 +36540,39 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_chaos" } }, - [1637]={ + [1707]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Fire damage as Extra Lightning damage" + } + }, + stats={ + [1]="non_skill_base_fire_damage_%_to_gain_as_lightning" + } + }, + [1708]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Fire damage as Extra Physical damage" + } + }, + stats={ + [1]="non_skill_base_fire_damage_%_to_gain_as_physical" + } + }, + [1709]={ [1]={ [1]={ limit={ @@ -35030,7 +36588,7 @@ return { [1]="non_skill_base_fire_damage_%_to_gain_as_chaos" } }, - [1638]={ + [1710]={ [1]={ [1]={ limit={ @@ -35046,7 +36604,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_chaos" } }, - [1639]={ + [1711]={ [1]={ [1]={ limit={ @@ -35062,7 +36620,7 @@ return { [1]="non_skill_base_non_chaos_damage_%_to_gain_as_chaos" } }, - [1640]={ + [1712]={ [1]={ [1]={ [1]={ @@ -35082,7 +36640,7 @@ return { [1]="life_degeneration_%_per_minute_not_in_grace" } }, - [1641]={ + [1713]={ [1]={ [1]={ [1]={ @@ -35115,7 +36673,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [1642]={ + [1714]={ [1]={ [1]={ [1]={ @@ -35135,7 +36693,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_low_life" } }, - [1643]={ + [1715]={ [1]={ [1]={ [1]={ @@ -35155,7 +36713,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_taken_per_minute" } }, - [1644]={ + [1716]={ [1]={ [1]={ [1]={ @@ -35175,7 +36733,7 @@ return { [1]="base_chaos_damage_taken_per_minute" } }, - [1645]={ + [1717]={ [1]={ [1]={ limit={ @@ -35208,7 +36766,7 @@ return { [1]="chaos_damage_taken_over_time_+%" } }, - [1646]={ + [1718]={ [1]={ [1]={ limit={ @@ -35224,7 +36782,7 @@ return { [1]="display_mana_cost_reduction_%" } }, - [1647]={ + [1719]={ [1]={ [1]={ limit={ @@ -35240,7 +36798,7 @@ return { [1]="display_minion_maximum_life" } }, - [1648]={ + [1720]={ [1]={ [1]={ limit={ @@ -35256,7 +36814,7 @@ return { [1]="global_knockback_on_crit" } }, - [1649]={ + [1721]={ [1]={ [1]={ limit={ @@ -35272,7 +36830,7 @@ return { [1]="knockback_on_crit_with_bow" } }, - [1650]={ + [1722]={ [1]={ [1]={ limit={ @@ -35288,7 +36846,7 @@ return { [1]="knockback_on_crit_with_quarterstaff" } }, - [1651]={ + [1723]={ [1]={ [1]={ limit={ @@ -35304,7 +36862,7 @@ return { [1]="knockback_on_crit_with_wand" } }, - [1652]={ + [1724]={ [1]={ [1]={ limit={ @@ -35320,7 +36878,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire" } }, - [1653]={ + [1725]={ [1]={ [1]={ limit={ @@ -35336,7 +36894,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_with_bear_skills" } }, - [1654]={ + [1726]={ [1]={ [1]={ limit={ @@ -35352,7 +36910,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire" } }, - [1655]={ + [1727]={ [1]={ [1]={ limit={ @@ -35368,7 +36926,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold" } }, - [1656]={ + [1728]={ [1]={ [1]={ limit={ @@ -35384,7 +36942,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold" } }, - [1657]={ + [1729]={ [1]={ [1]={ limit={ @@ -35400,7 +36958,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [1658]={ + [1730]={ [1]={ [1]={ limit={ @@ -35416,7 +36974,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning" } }, - [1659]={ + [1731]={ [1]={ [1]={ limit={ @@ -35432,7 +36990,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [1660]={ + [1732]={ [1]={ [1]={ limit={ @@ -35448,7 +37006,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [1661]={ + [1733]={ [1]={ [1]={ limit={ @@ -35464,7 +37022,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos" } }, - [1662]={ + [1734]={ [1]={ [1]={ limit={ @@ -35480,7 +37038,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_fire" } }, - [1663]={ + [1735]={ [1]={ [1]={ limit={ @@ -35496,7 +37054,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_cold" } }, - [1664]={ + [1736]={ [1]={ [1]={ limit={ @@ -35512,7 +37070,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_convert_to_chaos" } }, - [1665]={ + [1737]={ [1]={ [1]={ limit={ @@ -35528,7 +37086,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_fire" } }, - [1666]={ + [1738]={ [1]={ [1]={ limit={ @@ -35544,7 +37102,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_lightning" } }, - [1667]={ + [1739]={ [1]={ [1]={ limit={ @@ -35560,7 +37118,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_chaos" } }, - [1668]={ + [1740]={ [1]={ [1]={ limit={ @@ -35576,7 +37134,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_chaos" } }, - [1669]={ + [1741]={ [1]={ [1]={ limit={ @@ -35605,7 +37163,7 @@ return { [1]="shield_maximum_energy_shield_+%" } }, - [1670]={ + [1742]={ [1]={ [1]={ limit={ @@ -35634,7 +37192,7 @@ return { [1]="minion_damage_+%" } }, - [1671]={ + [1743]={ [1]={ [1]={ limit={ @@ -35663,7 +37221,7 @@ return { [1]="minion_damage_+%_if_have_used_a_minion_skill_recently" } }, - [1672]={ + [1744]={ [1]={ [1]={ limit={ @@ -35692,7 +37250,7 @@ return { [1]="virtual_minion_damage_+%" } }, - [1673]={ + [1745]={ [1]={ [1]={ limit={ @@ -35721,7 +37279,36 @@ return { [1]="minion_damage_+%_per_5_dex" } }, - [1674]={ + [1746]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions deal {0}% increased damage to your Marked targets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Companions deal {0}% reduced damage to your Marked targets" + } + }, + stats={ + [1]="companions_you_control_gain_damage_+%_against_enemies_marked_by_you" + } + }, + [1747]={ [1]={ [1]={ limit={ @@ -35750,7 +37337,7 @@ return { [1]="mana_regeneration_rate_+%_per_power_charge" } }, - [1675]={ + [1748]={ [1]={ [1]={ limit={ @@ -35779,7 +37366,7 @@ return { [1]="elemental_damage_+%" } }, - [1676]={ + [1749]={ [1]={ [1]={ limit={ @@ -35808,7 +37395,7 @@ return { [1]="melee_physical_damage_+%" } }, - [1677]={ + [1750]={ [1]={ [1]={ limit={ @@ -35837,7 +37424,7 @@ return { [1]="melee_fire_damage_+%" } }, - [1678]={ + [1751]={ [1]={ [1]={ limit={ @@ -35866,7 +37453,7 @@ return { [1]="melee_cold_damage_+%" } }, - [1679]={ + [1752]={ [1]={ [1]={ limit={ @@ -35895,7 +37482,7 @@ return { [1]="melee_physical_damage_+%_while_holding_shield" } }, - [1680]={ + [1753]={ [1]={ [1]={ limit={ @@ -35924,7 +37511,7 @@ return { [1]="melee_fire_damage_+%_while_holding_shield" } }, - [1681]={ + [1754]={ [1]={ [1]={ limit={ @@ -35953,7 +37540,7 @@ return { [1]="melee_cold_damage_+%_while_holding_shield" } }, - [1682]={ + [1755]={ [1]={ [1]={ limit={ @@ -35982,7 +37569,7 @@ return { [1]="bow_physical_damage_+%_while_holding_shield" } }, - [1683]={ + [1756]={ [1]={ [1]={ limit={ @@ -35998,7 +37585,7 @@ return { [1]="additional_maximum_block_%" } }, - [1684]={ + [1757]={ [1]={ [1]={ limit={ @@ -36027,7 +37614,7 @@ return { [1]="shield_evasion_rating_+%" } }, - [1685]={ + [1758]={ [1]={ [1]={ limit={ @@ -36056,7 +37643,7 @@ return { [1]="shield_physical_damage_reduction_rating_+%" } }, - [1686]={ + [1759]={ [1]={ [1]={ limit={ @@ -36072,7 +37659,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [1687]={ + [1760]={ [1]={ [1]={ limit={ @@ -36101,7 +37688,7 @@ return { [1]="projectile_damage_+%" } }, - [1688]={ + [1761]={ [1]={ [1]={ limit={ @@ -36130,7 +37717,7 @@ return { [1]="projectile_attack_damage_+%" } }, - [1689]={ + [1762]={ [1]={ [1]={ limit={ @@ -36159,7 +37746,7 @@ return { [1]="ranged_weapon_physical_damage_+%" } }, - [1690]={ + [1763]={ [1]={ [1]={ limit={ @@ -36188,7 +37775,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [1691]={ + [1764]={ [1]={ [1]={ limit={ @@ -36217,7 +37804,7 @@ return { [1]="cast_speed_+%_when_on_full_life" } }, - [1692]={ + [1765]={ [1]={ [1]={ limit={ @@ -36246,7 +37833,7 @@ return { [1]="cast_speed_+%_per_frenzy_charge" } }, - [1693]={ + [1766]={ [1]={ [1]={ limit={ @@ -36275,7 +37862,7 @@ return { [1]="knockback_distance_+%" } }, - [1694]={ + [1767]={ [1]={ [1]={ limit={ @@ -36304,7 +37891,7 @@ return { [1]="stun_duration_+%" } }, - [1695]={ + [1768]={ [1]={ [1]={ limit={ @@ -36320,7 +37907,7 @@ return { [1]="sword_accuracy_rating" } }, - [1696]={ + [1769]={ [1]={ [1]={ limit={ @@ -36336,7 +37923,7 @@ return { [1]="bow_accuracy_rating" } }, - [1697]={ + [1770]={ [1]={ [1]={ limit={ @@ -36352,7 +37939,7 @@ return { [1]="dagger_accuracy_rating" } }, - [1698]={ + [1771]={ [1]={ [1]={ limit={ @@ -36368,7 +37955,7 @@ return { [1]="axe_accuracy_rating" } }, - [1699]={ + [1772]={ [1]={ [1]={ limit={ @@ -36384,7 +37971,7 @@ return { [1]="claw_accuracy_rating" } }, - [1700]={ + [1773]={ [1]={ [1]={ limit={ @@ -36400,7 +37987,7 @@ return { [1]="staff_accuracy_rating" } }, - [1701]={ + [1774]={ [1]={ [1]={ limit={ @@ -36416,7 +38003,7 @@ return { [1]="mace_accuracy_rating" } }, - [1702]={ + [1775]={ [1]={ [1]={ limit={ @@ -36432,7 +38019,7 @@ return { [1]="wand_accuracy_rating" } }, - [1703]={ + [1776]={ [1]={ [1]={ limit={ @@ -36448,7 +38035,7 @@ return { [1]="spear_accuracy_rating" } }, - [1704]={ + [1777]={ [1]={ [1]={ limit={ @@ -36477,7 +38064,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [1705]={ + [1778]={ [1]={ [1]={ limit={ @@ -36506,7 +38093,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [1706]={ + [1779]={ [1]={ [1]={ limit={ @@ -36522,7 +38109,7 @@ return { [1]="skill_effect_duration_+%_per_10_strength" } }, - [1707]={ + [1780]={ [1]={ [1]={ limit={ @@ -36538,7 +38125,7 @@ return { [1]="strength_inherently_grants_accuracy_instead_of_life" } }, - [1708]={ + [1781]={ [1]={ [1]={ limit={ @@ -36554,7 +38141,7 @@ return { [1]="dexterity_inherently_grants_mana_instead_of_accuracy" } }, - [1709]={ + [1782]={ [1]={ [1]={ limit={ @@ -36570,7 +38157,7 @@ return { [1]="intelligence_inherently_grants_life_instead_of_mana" } }, - [1710]={ + [1783]={ [1]={ [1]={ limit={ @@ -36586,7 +38173,7 @@ return { [1]="gain_no_inherent_bonus_from_dexterity" } }, - [1711]={ + [1784]={ [1]={ [1]={ limit={ @@ -36602,7 +38189,7 @@ return { [1]="gain_no_inherent_bonus_from_intelligence" } }, - [1712]={ + [1785]={ [1]={ [1]={ limit={ @@ -36618,7 +38205,7 @@ return { [1]="gain_no_inherent_bonus_from_strength" } }, - [1713]={ + [1786]={ [1]={ [1]={ limit={ @@ -36634,7 +38221,7 @@ return { [1]="X_accuracy_per_2_intelligence" } }, - [1714]={ + [1787]={ [1]={ [1]={ limit={ @@ -36650,7 +38237,7 @@ return { [1]="X_life_per_4_dexterity" } }, - [1715]={ + [1788]={ [1]={ [1]={ limit={ @@ -36666,7 +38253,7 @@ return { [1]="X_mana_per_4_strength" } }, - [1716]={ + [1789]={ [1]={ [1]={ limit={ @@ -36682,7 +38269,7 @@ return { [1]="x_to_maximum_life_per_2_intelligence" } }, - [1717]={ + [1790]={ [1]={ [1]={ limit={ @@ -36711,7 +38298,7 @@ return { [1]="local_accuracy_rating_+%" } }, - [1718]={ + [1791]={ [1]={ [1]={ limit={ @@ -36736,7 +38323,7 @@ return { [1]="chance_to_scorch_%" } }, - [1719]={ + [1792]={ [1]={ [1]={ limit={ @@ -36765,7 +38352,7 @@ return { [1]="chieftain_burning_damage_+%_final" } }, - [1720]={ + [1793]={ [1]={ [1]={ limit={ @@ -36790,7 +38377,7 @@ return { [1]="chance_to_inflict_frostburn_%" } }, - [1721]={ + [1794]={ [1]={ [1]={ limit={ @@ -36806,7 +38393,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [1722]={ + [1795]={ [1]={ [1]={ limit={ @@ -36831,7 +38418,7 @@ return { [1]="chance_to_inflict_sapped_%" } }, - [1723]={ + [1796]={ [1]={ [1]={ limit={ @@ -36860,7 +38447,7 @@ return { [1]="area_damage_+%" } }, - [1724]={ + [1797]={ [1]={ [1]={ limit={ @@ -36876,7 +38463,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [1725]={ + [1798]={ [1]={ [1]={ limit={ @@ -36892,7 +38479,7 @@ return { [1]="stuns_have_culling_strike" } }, - [1726]={ + [1799]={ [1]={ [1]={ limit={ @@ -36908,7 +38495,7 @@ return { [1]="local_hit_causes_monster_flee_%" } }, - [1727]={ + [1800]={ [1]={ [1]={ limit={ @@ -36924,7 +38511,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [1728]={ + [1801]={ [1]={ [1]={ limit={ @@ -36940,7 +38527,7 @@ return { [1]="local_always_hit" } }, - [1729]={ + [1802]={ [1]={ [1]={ limit={ @@ -36956,7 +38543,7 @@ return { [1]="global_always_hit" } }, - [1730]={ + [1803]={ [1]={ [1]={ limit={ @@ -36985,7 +38572,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [1731]={ + [1804]={ [1]={ [1]={ limit={ @@ -37014,7 +38601,7 @@ return { [1]="attack_speed_+%_per_frenzy_charge" } }, - [1732]={ + [1805]={ [1]={ [1]={ limit={ @@ -37047,7 +38634,7 @@ return { [1]="attack_and_cast_speed_+%_per_frenzy_charge" } }, - [1733]={ + [1806]={ [1]={ [1]={ limit={ @@ -37076,7 +38663,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [1734]={ + [1807]={ [1]={ [1]={ limit={ @@ -37105,7 +38692,7 @@ return { [1]="accuracy_rating_+%_per_frenzy_charge" } }, - [1735]={ + [1808]={ [1]={ [1]={ limit={ @@ -37138,7 +38725,7 @@ return { [1]="frenzy_charge_duration_+%_per_frenzy_charge" } }, - [1736]={ + [1809]={ [1]={ [1]={ limit={ @@ -37154,7 +38741,7 @@ return { [1]="attacks_poison_while_at_max_frenzy_charges" } }, - [1737]={ + [1810]={ [1]={ [1]={ limit={ @@ -37179,7 +38766,7 @@ return { [1]="attacks_chance_to_poison_%_on_max_frenzy_charges" } }, - [1738]={ + [1811]={ [1]={ [1]={ limit={ @@ -37195,7 +38782,7 @@ return { [1]="critical_strike_multiplier_+_while_have_any_frenzy_charges" } }, - [1739]={ + [1812]={ [1]={ [1]={ limit={ @@ -37211,7 +38798,7 @@ return { [1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges" } }, - [1740]={ + [1813]={ [1]={ [1]={ limit={ @@ -37240,7 +38827,7 @@ return { [1]="skill_area_of_effect_+%_while_no_frenzy_charges" } }, - [1741]={ + [1814]={ [1]={ [1]={ limit={ @@ -37269,7 +38856,7 @@ return { [1]="base_actor_scale_+%" } }, - [1742]={ + [1815]={ [1]={ [1]={ limit={ @@ -37285,7 +38872,7 @@ return { [1]="add_power_charge_on_minion_death" } }, - [1743]={ + [1816]={ [1]={ [1]={ limit={ @@ -37314,7 +38901,7 @@ return { [1]="flask_life_to_recover_+%" } }, - [1744]={ + [1817]={ [1]={ [1]={ limit={ @@ -37343,7 +38930,7 @@ return { [1]="flask_mana_to_recover_+%" } }, - [1745]={ + [1818]={ [1]={ [1]={ limit={ @@ -37359,7 +38946,7 @@ return { [1]="flask_recovery_speed_+%" } }, - [1746]={ + [1819]={ [1]={ [1]={ limit={ @@ -37427,7 +39014,7 @@ return { [2]="gain_flask_charge_when_crit_amount" } }, - [1747]={ + [1820]={ [1]={ [1]={ limit={ @@ -37456,7 +39043,7 @@ return { [1]="weapon_fire_damage_+%" } }, - [1748]={ + [1821]={ [1]={ [1]={ limit={ @@ -37485,7 +39072,7 @@ return { [1]="weapon_cold_damage_+%" } }, - [1749]={ + [1822]={ [1]={ [1]={ limit={ @@ -37514,7 +39101,7 @@ return { [1]="weapon_lightning_damage_+%" } }, - [1750]={ + [1823]={ [1]={ [1]={ limit={ @@ -37543,7 +39130,7 @@ return { [1]="weapon_chaos_damage_+%" } }, - [1751]={ + [1824]={ [1]={ [1]={ limit={ @@ -37559,23 +39146,7 @@ return { [1]="spell_elemental_damage_+%" } }, - [1752]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Gain Added Chaos Damage equal to {0}% of Ward" - } - }, - stats={ - [1]="global_added_chaos_damage_%_of_ward" - } - }, - [1753]={ + [1825]={ [1]={ [1]={ limit={ @@ -37596,7 +39167,7 @@ return { [2]="attack_maximum_added_physical_damage_with_axes" } }, - [1754]={ + [1826]={ [1]={ [1]={ limit={ @@ -37617,7 +39188,7 @@ return { [2]="attack_maximum_added_physical_damage_with_bow" } }, - [1755]={ + [1827]={ [1]={ [1]={ limit={ @@ -37638,7 +39209,7 @@ return { [2]="attack_maximum_added_physical_damage_with_claws" } }, - [1756]={ + [1828]={ [1]={ [1]={ limit={ @@ -37659,7 +39230,7 @@ return { [2]="attack_maximum_added_physical_damage_with_daggers" } }, - [1757]={ + [1829]={ [1]={ [1]={ limit={ @@ -37680,7 +39251,7 @@ return { [2]="attack_maximum_added_physical_damage_with_maces" } }, - [1758]={ + [1830]={ [1]={ [1]={ limit={ @@ -37701,7 +39272,7 @@ return { [2]="attack_maximum_added_physical_damage_with_staves" } }, - [1759]={ + [1831]={ [1]={ [1]={ limit={ @@ -37722,7 +39293,7 @@ return { [2]="attack_maximum_added_physical_damage_with_swords" } }, - [1760]={ + [1832]={ [1]={ [1]={ limit={ @@ -37743,7 +39314,7 @@ return { [2]="attack_maximum_added_physical_damage_with_wands" } }, - [1761]={ + [1833]={ [1]={ [1]={ limit={ @@ -37764,7 +39335,7 @@ return { [2]="attack_maximum_added_physical_damage_while_unarmed" } }, - [1762]={ + [1834]={ [1]={ [1]={ limit={ @@ -37785,7 +39356,7 @@ return { [2]="attack_maximum_added_physical_damage_while_holding_a_shield" } }, - [1763]={ + [1835]={ [1]={ [1]={ limit={ @@ -37806,7 +39377,7 @@ return { [2]="attack_maximum_added_fire_damage_with_axes" } }, - [1764]={ + [1836]={ [1]={ [1]={ limit={ @@ -37827,7 +39398,7 @@ return { [2]="attack_maximum_added_fire_damage_with_bow" } }, - [1765]={ + [1837]={ [1]={ [1]={ limit={ @@ -37848,7 +39419,7 @@ return { [2]="attack_maximum_added_fire_damage_with_claws" } }, - [1766]={ + [1838]={ [1]={ [1]={ limit={ @@ -37869,7 +39440,7 @@ return { [2]="attack_maximum_added_fire_damage_with_daggers" } }, - [1767]={ + [1839]={ [1]={ [1]={ limit={ @@ -37890,7 +39461,7 @@ return { [2]="attack_maximum_added_fire_damage_with_maces" } }, - [1768]={ + [1840]={ [1]={ [1]={ limit={ @@ -37911,7 +39482,7 @@ return { [2]="attack_maximum_added_fire_damage_with_staves" } }, - [1769]={ + [1841]={ [1]={ [1]={ limit={ @@ -37932,7 +39503,7 @@ return { [2]="attack_maximum_added_fire_damage_with_swords" } }, - [1770]={ + [1842]={ [1]={ [1]={ limit={ @@ -37953,7 +39524,28 @@ return { [2]="attack_maximum_added_fire_damage_with_wand" } }, - [1771]={ + [1843]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Added Attack Fire Damage per 25 Strength" + } + }, + stats={ + [1]="minimum_added_fire_damage_to_attacks_per_25_strength", + [2]="maximum_added_fire_damage_to_attacks_per_25_strength" + } + }, + [1844]={ [1]={ [1]={ limit={ @@ -37974,7 +39566,7 @@ return { [2]="attack_maximum_added_cold_damage_with_axes" } }, - [1772]={ + [1845]={ [1]={ [1]={ limit={ @@ -37995,7 +39587,7 @@ return { [2]="attack_maximum_added_cold_damage_with_bows" } }, - [1773]={ + [1846]={ [1]={ [1]={ limit={ @@ -38016,7 +39608,7 @@ return { [2]="attack_maximum_added_cold_damage_with_claws" } }, - [1774]={ + [1847]={ [1]={ [1]={ limit={ @@ -38037,7 +39629,7 @@ return { [2]="attack_maximum_added_cold_damage_with_daggers" } }, - [1775]={ + [1848]={ [1]={ [1]={ limit={ @@ -38058,7 +39650,7 @@ return { [2]="attack_maximum_added_cold_damage_with_maces" } }, - [1776]={ + [1849]={ [1]={ [1]={ limit={ @@ -38079,7 +39671,7 @@ return { [2]="attack_maximum_added_cold_damage_with_staves" } }, - [1777]={ + [1850]={ [1]={ [1]={ limit={ @@ -38100,7 +39692,7 @@ return { [2]="attack_maximum_added_cold_damage_with_swords" } }, - [1778]={ + [1851]={ [1]={ [1]={ limit={ @@ -38121,7 +39713,7 @@ return { [2]="attack_maximum_added_cold_damage_with_wand" } }, - [1779]={ + [1852]={ [1]={ [1]={ limit={ @@ -38142,7 +39734,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_axes" } }, - [1780]={ + [1853]={ [1]={ [1]={ limit={ @@ -38163,7 +39755,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_bows" } }, - [1781]={ + [1854]={ [1]={ [1]={ limit={ @@ -38184,7 +39776,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_claws" } }, - [1782]={ + [1855]={ [1]={ [1]={ limit={ @@ -38205,7 +39797,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_daggers" } }, - [1783]={ + [1856]={ [1]={ [1]={ limit={ @@ -38226,7 +39818,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_maces" } }, - [1784]={ + [1857]={ [1]={ [1]={ limit={ @@ -38247,7 +39839,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_staves" } }, - [1785]={ + [1858]={ [1]={ [1]={ limit={ @@ -38268,7 +39860,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_swords" } }, - [1786]={ + [1859]={ [1]={ [1]={ limit={ @@ -38289,7 +39881,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_wand" } }, - [1787]={ + [1860]={ [1]={ [1]={ limit={ @@ -38310,7 +39902,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_bows" } }, - [1788]={ + [1861]={ [1]={ [1]={ limit={ @@ -38331,7 +39923,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_claws" } }, - [1789]={ + [1862]={ [1]={ [1]={ limit={ @@ -38352,7 +39944,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_daggers" } }, - [1790]={ + [1863]={ [1]={ [1]={ limit={ @@ -38373,7 +39965,7 @@ return { [2]="attack_maximum_added_cold_damage_with_spears" } }, - [1791]={ + [1864]={ [1]={ [1]={ limit={ @@ -38394,7 +39986,7 @@ return { [2]="attack_maximum_added_fire_damage_with_spears" } }, - [1792]={ + [1865]={ [1]={ [1]={ limit={ @@ -38415,7 +40007,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_spears" } }, - [1793]={ + [1866]={ [1]={ [1]={ limit={ @@ -38436,7 +40028,7 @@ return { [2]="attack_maximum_added_physical_damage_with_spears" } }, - [1794]={ + [1867]={ [1]={ [1]={ limit={ @@ -38457,7 +40049,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_dual_wielding" } }, - [1795]={ + [1868]={ [1]={ [1]={ limit={ @@ -38478,7 +40070,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_holding_a_shield" } }, - [1796]={ + [1869]={ [1]={ [1]={ limit={ @@ -38499,7 +40091,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon" } }, - [1797]={ + [1870]={ [1]={ [1]={ limit={ @@ -38520,7 +40112,7 @@ return { [2]="spell_maximum_added_cold_damage_while_dual_wielding" } }, - [1798]={ + [1871]={ [1]={ [1]={ limit={ @@ -38541,7 +40133,7 @@ return { [2]="spell_maximum_added_cold_damage_while_holding_a_shield" } }, - [1799]={ + [1872]={ [1]={ [1]={ limit={ @@ -38562,7 +40154,7 @@ return { [2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon" } }, - [1800]={ + [1873]={ [1]={ [1]={ limit={ @@ -38583,7 +40175,7 @@ return { [2]="spell_maximum_added_fire_damage_while_dual_wielding" } }, - [1801]={ + [1874]={ [1]={ [1]={ limit={ @@ -38604,7 +40196,7 @@ return { [2]="spell_maximum_added_fire_damage_while_holding_a_shield" } }, - [1802]={ + [1875]={ [1]={ [1]={ limit={ @@ -38625,7 +40217,7 @@ return { [2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon" } }, - [1803]={ + [1876]={ [1]={ [1]={ limit={ @@ -38646,7 +40238,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_dual_wielding" } }, - [1804]={ + [1877]={ [1]={ [1]={ limit={ @@ -38667,7 +40259,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_holding_a_shield" } }, - [1805]={ + [1878]={ [1]={ [1]={ limit={ @@ -38688,7 +40280,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon" } }, - [1806]={ + [1879]={ [1]={ [1]={ limit={ @@ -38709,7 +40301,7 @@ return { [2]="spell_maximum_added_physical_damage_while_dual_wielding" } }, - [1807]={ + [1880]={ [1]={ [1]={ limit={ @@ -38730,7 +40322,7 @@ return { [2]="spell_maximum_added_physical_damage_while_holding_a_shield" } }, - [1808]={ + [1881]={ [1]={ [1]={ limit={ @@ -38751,7 +40343,7 @@ return { [2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon" } }, - [1809]={ + [1882]={ [1]={ [1]={ limit={ @@ -38780,7 +40372,7 @@ return { [1]="wand_elemental_damage_+%" } }, - [1810]={ + [1883]={ [1]={ [1]={ limit={ @@ -38809,7 +40401,7 @@ return { [1]="staff_elemental_damage_+%" } }, - [1811]={ + [1884]={ [1]={ [1]={ limit={ @@ -38838,7 +40430,7 @@ return { [1]="mace_elemental_damage_+%" } }, - [1812]={ + [1885]={ [1]={ [1]={ limit={ @@ -38863,7 +40455,7 @@ return { [1]="chance_to_gain_endurance_charge_on_block_%" } }, - [1813]={ + [1886]={ [1]={ [1]={ limit={ @@ -38892,7 +40484,7 @@ return { [1]="endurance_charge_duration_+%" } }, - [1814]={ + [1887]={ [1]={ [1]={ limit={ @@ -38908,7 +40500,7 @@ return { [1]="add_frenzy_charge_on_enemy_block" } }, - [1815]={ + [1888]={ [1]={ [1]={ limit={ @@ -38937,7 +40529,7 @@ return { [1]="base_frenzy_charge_duration_+%" } }, - [1816]={ + [1889]={ [1]={ [1]={ limit={ @@ -38962,7 +40554,7 @@ return { [1]="chance_to_gain_power_charge_when_block_%" } }, - [1817]={ + [1890]={ [1]={ [1]={ limit={ @@ -38978,7 +40570,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge" } }, - [1818]={ + [1891]={ [1]={ [1]={ limit={ @@ -38994,7 +40586,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge_up_to_50%" } }, - [1819]={ + [1892]={ [1]={ [1]={ limit={ @@ -39019,7 +40611,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1820]={ + [1893]={ [1]={ [1]={ limit={ @@ -39044,7 +40636,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1821]={ + [1894]={ [1]={ [1]={ limit={ @@ -39060,7 +40652,7 @@ return { [1]="damage_over_time_+%_per_frenzy_charge" } }, - [1822]={ + [1895]={ [1]={ [1]={ limit={ @@ -39076,7 +40668,7 @@ return { [1]="damage_over_time_+%_per_power_charge" } }, - [1823]={ + [1896]={ [1]={ [1]={ limit={ @@ -39092,7 +40684,7 @@ return { [1]="damage_over_time_+%_while_dual_wielding" } }, - [1824]={ + [1897]={ [1]={ [1]={ limit={ @@ -39108,7 +40700,7 @@ return { [1]="damage_over_time_+%_while_holding_a_shield" } }, - [1825]={ + [1898]={ [1]={ [1]={ limit={ @@ -39124,7 +40716,7 @@ return { [1]="damage_over_time_+%_while_wielding_two_handed_weapon" } }, - [1826]={ + [1899]={ [1]={ [1]={ limit={ @@ -39140,7 +40732,7 @@ return { [1]="elemental_damage_+%_per_frenzy_charge" } }, - [1827]={ + [1900]={ [1]={ [1]={ limit={ @@ -39169,7 +40761,7 @@ return { [1]="physical_damage_per_endurance_charge_+%" } }, - [1828]={ + [1901]={ [1]={ [1]={ limit={ @@ -39185,7 +40777,7 @@ return { [1]="spell_damage_+%_per_power_charge" } }, - [1829]={ + [1902]={ [1]={ [1]={ limit={ @@ -39201,7 +40793,7 @@ return { [1]="wand_damage_+%_per_power_charge" } }, - [1830]={ + [1903]={ [1]={ [1]={ limit={ @@ -39230,7 +40822,7 @@ return { [1]="power_charge_duration_+%" } }, - [1831]={ + [1904]={ [1]={ [1]={ limit={ @@ -39246,7 +40838,7 @@ return { [1]="add_power_charge_when_kill_shocked_enemy" } }, - [1832]={ + [1905]={ [1]={ [1]={ limit={ @@ -39262,7 +40854,7 @@ return { [1]="buff_effect_on_self_+%" } }, - [1833]={ + [1906]={ [1]={ [1]={ limit={ @@ -39291,7 +40883,7 @@ return { [1]="minions_have_non_curse_aura_effect_+%_from_parent_skills" } }, - [1834]={ + [1907]={ [1]={ [1]={ limit={ @@ -39307,7 +40899,7 @@ return { [1]="movement_velocity_+%_when_on_shocked_ground" } }, - [1835]={ + [1908]={ [1]={ [1]={ limit={ @@ -39323,7 +40915,7 @@ return { [1]="damage_+%_when_on_burning_ground" } }, - [1836]={ + [1909]={ [1]={ [1]={ [1]={ @@ -39343,7 +40935,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground" } }, - [1837]={ + [1910]={ [1]={ [1]={ limit={ @@ -39372,7 +40964,7 @@ return { [1]="desecrated_ground_effect_on_self_+%" } }, - [1838]={ + [1911]={ [1]={ [1]={ limit={ @@ -39388,7 +40980,7 @@ return { [1]="add_power_charge_when_interrupted_while_casting" } }, - [1839]={ + [1912]={ [1]={ [1]={ limit={ @@ -39404,7 +40996,7 @@ return { [1]="generate_endurance_charges_for_allies_in_your_presence" } }, - [1840]={ + [1913]={ [1]={ [1]={ limit={ @@ -39420,7 +41012,7 @@ return { [1]="generate_frenzy_charges_for_allies_in_your_presence" } }, - [1841]={ + [1914]={ [1]={ [1]={ limit={ @@ -39436,7 +41028,7 @@ return { [1]="generate_power_charges_for_allies_in_your_presence" } }, - [1842]={ + [1915]={ [1]={ [1]={ limit={ @@ -39465,7 +41057,7 @@ return { [1]="base_leech_amount_+%" } }, - [1843]={ + [1916]={ [1]={ [1]={ limit={ @@ -39494,7 +41086,7 @@ return { [1]="leech_rate_+%" } }, - [1844]={ + [1917]={ [1]={ [1]={ limit={ @@ -39523,7 +41115,7 @@ return { [1]="base_life_leech_amount_+%" } }, - [1845]={ + [1918]={ [1]={ [1]={ limit={ @@ -39552,7 +41144,7 @@ return { [1]="base_life_leech_rate_+%" } }, - [1846]={ + [1919]={ [1]={ [1]={ limit={ @@ -39581,7 +41173,7 @@ return { [1]="base_mana_leech_amount_+%" } }, - [1847]={ + [1920]={ [1]={ [1]={ limit={ @@ -39610,7 +41202,7 @@ return { [1]="base_mana_leech_rate_+%" } }, - [1848]={ + [1921]={ [1]={ [1]={ limit={ @@ -39639,7 +41231,7 @@ return { [1]="base_energy_shield_leech_rate_+%" } }, - [1849]={ + [1922]={ [1]={ [1]={ limit={ @@ -39655,7 +41247,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [1850]={ + [1923]={ [1]={ [1]={ limit={ @@ -39671,7 +41263,7 @@ return { [1]="base_number_of_skeletons_allowed" } }, - [1851]={ + [1924]={ [1]={ [1]={ limit={ @@ -39687,7 +41279,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [1852]={ + [1925]={ [1]={ [1]={ limit={ @@ -39703,7 +41295,7 @@ return { [1]="curses_never_expire" } }, - [1853]={ + [1926]={ [1]={ [1]={ limit={ @@ -39719,7 +41311,7 @@ return { [1]="no_physical_damage_reduction_rating" } }, - [1854]={ + [1927]={ [1]={ [1]={ limit={ @@ -39735,7 +41327,7 @@ return { [1]="no_energy_shield" } }, - [1855]={ + [1928]={ [1]={ [1]={ limit={ @@ -39751,7 +41343,23 @@ return { [1]="no_evasion_rating" } }, - [1856]={ + [1929]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your maximum Energy Shield is equal to {0}% of your Strength" + } + }, + stats={ + [1]="unique_body_armour_maximum_energy_shield_override_is_%_of_strength" + } + }, + [1930]={ [1]={ [1]={ limit={ @@ -39767,7 +41375,7 @@ return { [1]="chaos_immunity" } }, - [1857]={ + [1931]={ [1]={ [1]={ limit={ @@ -39805,7 +41413,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [1858]={ + [1932]={ [1]={ [1]={ limit={ @@ -39830,7 +41438,7 @@ return { [1]="number_of_additional_curses_allowed_on_self" } }, - [1859]={ + [1933]={ [1]={ [1]={ limit={ @@ -39863,7 +41471,7 @@ return { [1]="curse_effect_on_self_+%" } }, - [1860]={ + [1934]={ [1]={ [1]={ limit={ @@ -39892,7 +41500,7 @@ return { [1]="self_curse_duration_+%" } }, - [1861]={ + [1935]={ [1]={ [1]={ limit={ @@ -39908,7 +41516,7 @@ return { [1]="cannot_be_stunned" } }, - [1862]={ + [1936]={ [1]={ [1]={ limit={ @@ -39924,7 +41532,7 @@ return { [1]="base_cannot_be_stunned" } }, - [1863]={ + [1937]={ [1]={ [1]={ limit={ @@ -39940,23 +41548,7 @@ return { [1]="cannot_be_stunned_when_on_low_life" } }, - [1864]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% of maximum Mana as Extra maximum Energy Shield" - } - }, - stats={ - [1]="mana_%_to_gain_as_energy_shield" - } - }, - [1865]={ + [1938]={ [1]={ [1]={ limit={ @@ -39972,7 +41564,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies" } }, - [1866]={ + [1939]={ [1]={ [1]={ limit={ @@ -39988,7 +41580,7 @@ return { [1]="global_cannot_crit" } }, - [1867]={ + [1940]={ [1]={ [1]={ limit={ @@ -40004,7 +41596,7 @@ return { [1]="ignore_armour_movement_penalties" } }, - [1868]={ + [1941]={ [1]={ [1]={ limit={ @@ -40020,7 +41612,7 @@ return { [1]="minions_use_parents_flasks_on_summon" } }, - [1869]={ + [1942]={ [1]={ [1]={ limit={ @@ -40036,7 +41628,7 @@ return { [1]="your_life_flasks_also_apply_to_your_minions" } }, - [1870]={ + [1943]={ [1]={ [1]={ limit={ @@ -40052,7 +41644,7 @@ return { [1]="minions_cannot_die_while_affected_by_life_flask" } }, - [1871]={ + [1944]={ [1]={ [1]={ limit={ @@ -40085,7 +41677,7 @@ return { [1]="flask_mana_charges_used_+%" } }, - [1872]={ + [1945]={ [1]={ [1]={ limit={ @@ -40118,7 +41710,7 @@ return { [1]="minion_flask_charges_used_+%" } }, - [1873]={ + [1946]={ [1]={ [1]={ limit={ @@ -40147,7 +41739,7 @@ return { [1]="flask_duration_on_minions_+%" } }, - [1874]={ + [1947]={ [1]={ [1]={ limit={ @@ -40163,7 +41755,7 @@ return { [1]="cannot_resist_cold_damage" } }, - [1875]={ + [1948]={ [1]={ [1]={ limit={ @@ -40179,7 +41771,7 @@ return { [1]="minions_get_amulet_stats_instead_of_you" } }, - [1876]={ + [1949]={ [1]={ [1]={ limit={ @@ -40208,7 +41800,7 @@ return { [1]="chaos_inoculation_keystone_energy_shield_+%_final" } }, - [1877]={ + [1950]={ [1]={ [1]={ limit={ @@ -40237,7 +41829,7 @@ return { [1]="pain_attunement_keystone_critical_strike_multiplier_+%_final" } }, - [1878]={ + [1951]={ [1]={ [1]={ limit={ @@ -40271,7 +41863,7 @@ return { [2]="maximum_physical_damage_to_reflect_to_self_on_attack" } }, - [1879]={ + [1952]={ [1]={ [1]={ limit={ @@ -40292,7 +41884,7 @@ return { [2]="maximum_physical_damage_to_return_to_melee_attacker" } }, - [1880]={ + [1953]={ [1]={ [1]={ limit={ @@ -40313,7 +41905,7 @@ return { [2]="maximum_fire_damage_to_return_to_melee_attacker" } }, - [1881]={ + [1954]={ [1]={ [1]={ limit={ @@ -40334,7 +41926,7 @@ return { [2]="maximum_cold_damage_to_return_to_melee_attacker" } }, - [1882]={ + [1955]={ [1]={ [1]={ limit={ @@ -40355,7 +41947,7 @@ return { [2]="maximum_lightning_damage_to_return_to_melee_attacker" } }, - [1883]={ + [1956]={ [1]={ [1]={ limit={ @@ -40376,7 +41968,7 @@ return { [2]="maximum_chaos_damage_to_return_to_melee_attacker" } }, - [1884]={ + [1957]={ [1]={ [1]={ limit={ @@ -40392,7 +41984,7 @@ return { [1]="cold_damage_to_return_to_melee_attacker" } }, - [1885]={ + [1958]={ [1]={ [1]={ limit={ @@ -40408,7 +42000,7 @@ return { [1]="fire_damage_to_return_to_melee_attacker" } }, - [1886]={ + [1959]={ [1]={ [1]={ limit={ @@ -40424,7 +42016,7 @@ return { [1]="lightning_damage_to_return_to_melee_attacker" } }, - [1887]={ + [1960]={ [1]={ [1]={ limit={ @@ -40440,7 +42032,7 @@ return { [1]="chaos_damage_to_return_to_melee_attacker" } }, - [1888]={ + [1961]={ [1]={ [1]={ limit={ @@ -40456,7 +42048,7 @@ return { [1]="physical_damage_to_return_when_hit" } }, - [1889]={ + [1962]={ [1]={ [1]={ limit={ @@ -40472,7 +42064,7 @@ return { [1]="fire_damage_to_return_when_hit" } }, - [1890]={ + [1963]={ [1]={ [1]={ limit={ @@ -40488,7 +42080,7 @@ return { [1]="cold_damage_to_return_when_hit" } }, - [1891]={ + [1964]={ [1]={ [1]={ limit={ @@ -40504,7 +42096,7 @@ return { [1]="lightning_damage_to_return_when_hit" } }, - [1892]={ + [1965]={ [1]={ [1]={ limit={ @@ -40520,7 +42112,7 @@ return { [1]="chaos_damage_to_return_when_hit" } }, - [1893]={ + [1966]={ [1]={ [1]={ limit={ @@ -40549,7 +42141,7 @@ return { [1]="curse_cast_speed_+%" } }, - [1894]={ + [1967]={ [1]={ [1]={ limit={ @@ -40578,7 +42170,7 @@ return { [1]="hex_skill_cast_speed_+%" } }, - [1895]={ + [1968]={ [1]={ [1]={ limit={ @@ -40607,7 +42199,7 @@ return { [1]="mark_use_speed_+%" } }, - [1896]={ + [1969]={ [1]={ [1]={ limit={ @@ -40623,7 +42215,7 @@ return { [1]="ignite_proliferation_radius_15" } }, - [1897]={ + [1970]={ [1]={ [1]={ [1]={ @@ -40656,7 +42248,7 @@ return { [1]="passive_notable_ignite_proliferation_radius" } }, - [1898]={ + [1971]={ [1]={ [1]={ limit={ @@ -40685,7 +42277,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [1899]={ + [1972]={ [1]={ [1]={ limit={ @@ -40714,7 +42306,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [1900]={ + [1973]={ [1]={ [1]={ limit={ @@ -40743,7 +42335,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [1901]={ + [1974]={ [1]={ [1]={ limit={ @@ -40772,7 +42364,7 @@ return { [1]="base_life_reservation_+%" } }, - [1902]={ + [1975]={ [1]={ [1]={ limit={ @@ -40801,7 +42393,7 @@ return { [1]="base_mana_reservation_efficiency_+%" } }, - [1903]={ + [1976]={ [1]={ [1]={ limit={ @@ -40830,7 +42422,7 @@ return { [1]="base_mana_reservation_+%" } }, - [1904]={ + [1977]={ [1]={ [1]={ limit={ @@ -40859,7 +42451,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [1905]={ + [1978]={ [1]={ [1]={ limit={ @@ -40888,7 +42480,7 @@ return { [1]="base_reservation_+%" } }, - [1906]={ + [1979]={ [1]={ [1]={ [1]={ @@ -40925,7 +42517,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1" } }, - [1907]={ + [1980]={ [1]={ [1]={ [1]={ @@ -40962,7 +42554,7 @@ return { [1]="reservation_efficiency_-2%_per_1" } }, - [1908]={ + [1981]={ [1]={ [1]={ limit={ @@ -40978,7 +42570,7 @@ return { [1]="physical_attack_damage_taken_+" } }, - [1909]={ + [1982]={ [1]={ [1]={ limit={ @@ -40994,7 +42586,7 @@ return { [1]="physical_damage_taken_+" } }, - [1910]={ + [1983]={ [1]={ [1]={ limit={ @@ -41010,7 +42602,7 @@ return { [1]="physical_damage_taken_+_per_level" } }, - [1911]={ + [1984]={ [1]={ [1]={ limit={ @@ -41026,7 +42618,7 @@ return { [1]="fire_damage_taken_+" } }, - [1912]={ + [1985]={ [1]={ [1]={ limit={ @@ -41055,7 +42647,7 @@ return { [1]="base_damage_taken_+%" } }, - [1913]={ + [1986]={ [1]={ [1]={ limit={ @@ -41088,7 +42680,7 @@ return { [1]="area_damage_taken_from_hits_+%" } }, - [1914]={ + [1987]={ [1]={ [1]={ limit={ @@ -41117,7 +42709,7 @@ return { [1]="damage_taken_+%_from_hits" } }, - [1915]={ + [1988]={ [1]={ [1]={ limit={ @@ -41146,7 +42738,7 @@ return { [1]="physical_damage_taken_+%" } }, - [1916]={ + [1989]={ [1]={ [1]={ limit={ @@ -41175,7 +42767,7 @@ return { [1]="fire_damage_taken_+%" } }, - [1917]={ + [1990]={ [1]={ [1]={ limit={ @@ -41208,7 +42800,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [1918]={ + [1991]={ [1]={ [1]={ limit={ @@ -41237,7 +42829,7 @@ return { [1]="damage_taken_+%_while_es_full" } }, - [1919]={ + [1992]={ [1]={ [1]={ limit={ @@ -41270,7 +42862,7 @@ return { [1]="degen_effect_+%" } }, - [1920]={ + [1993]={ [1]={ [1]={ limit={ @@ -41286,7 +42878,7 @@ return { [1]="physical_ranged_attack_damage_taken_+" } }, - [1921]={ + [1994]={ [1]={ [1]={ limit={ @@ -41315,7 +42907,7 @@ return { [1]="damage_taken_+%_from_skeletons" } }, - [1922]={ + [1995]={ [1]={ [1]={ limit={ @@ -41344,7 +42936,7 @@ return { [1]="damage_taken_+%_from_ghosts" } }, - [1923]={ + [1996]={ [1]={ [1]={ limit={ @@ -41360,7 +42952,7 @@ return { [1]="deal_no_damage_yourself" } }, - [1924]={ + [1997]={ [1]={ [1]={ limit={ @@ -41376,7 +42968,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [1925]={ + [1998]={ [1]={ [1]={ limit={ @@ -41401,7 +42993,7 @@ return { [1]="base_number_of_traps_allowed" } }, - [1926]={ + [1999]={ [1]={ [1]={ limit={ @@ -41426,7 +43018,7 @@ return { [1]="base_number_of_remote_mines_allowed" } }, - [1927]={ + [2000]={ [1]={ [1]={ limit={ @@ -41442,7 +43034,7 @@ return { [1]="number_of_additional_totems_allowed" } }, - [1928]={ + [2001]={ [1]={ [1]={ limit={ @@ -41493,7 +43085,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [1929]={ + [2002]={ [1]={ [1]={ limit={ @@ -41544,7 +43136,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [1930]={ + [2003]={ [1]={ [1]={ limit={ @@ -41560,7 +43152,7 @@ return { [1]="additional_physical_damage_reduction_%_when_on_low_life" } }, - [1931]={ + [2004]={ [1]={ [1]={ limit={ @@ -41576,7 +43168,7 @@ return { [1]="despair_gem_level_+" } }, - [1932]={ + [2005]={ [1]={ [1]={ limit={ @@ -41592,7 +43184,7 @@ return { [1]="elemental_weakness_gem_level_+" } }, - [1933]={ + [2006]={ [1]={ [1]={ limit={ @@ -41608,7 +43200,7 @@ return { [1]="enfeeble_gem_level_+" } }, - [1934]={ + [2007]={ [1]={ [1]={ limit={ @@ -41633,7 +43225,7 @@ return { [1]="map_addtional_magic_chest_amount" } }, - [1935]={ + [2008]={ [1]={ [1]={ limit={ @@ -41658,7 +43250,7 @@ return { [1]="map_addtional_rare_chest_amount" } }, - [1936]={ + [2009]={ [1]={ [1]={ limit={ @@ -41674,7 +43266,7 @@ return { [1]="map_contains_buried_treasure" } }, - [1937]={ + [2010]={ [1]={ [1]={ limit={ @@ -41690,7 +43282,7 @@ return { [1]="map_contains_x_additional_packs_with_mirrored_rare_monsters" } }, - [1938]={ + [2011]={ [1]={ [1]={ limit={ @@ -41706,7 +43298,7 @@ return { [1]="map_all_items_drop_as_gold" } }, - [1939]={ + [2012]={ [1]={ [1]={ limit={ @@ -41722,7 +43314,7 @@ return { [1]="map_duplicate_all_rare_monsters" } }, - [1940]={ + [2013]={ [1]={ [1]={ limit={ @@ -41738,7 +43330,7 @@ return { [1]="map_experience_gain_+%" } }, - [1941]={ + [2014]={ [1]={ [1]={ limit={ @@ -41767,7 +43359,7 @@ return { [1]="map_extra_gold_piles_chance_%" } }, - [1942]={ + [2015]={ [1]={ [1]={ limit={ @@ -41796,7 +43388,7 @@ return { [1]="map_gold_+%" } }, - [1943]={ + [2016]={ [1]={ [1]={ limit={ @@ -41825,7 +43417,7 @@ return { [1]="map_magic_chest_amount_+%" } }, - [1944]={ + [2017]={ [1]={ [1]={ limit={ @@ -41854,7 +43446,7 @@ return { [1]="map_magic_pack_size_+%" } }, - [1945]={ + [2018]={ [1]={ [1]={ limit={ @@ -41870,7 +43462,7 @@ return { [1]="map_monster_additional_baron_packs" } }, - [1946]={ + [2019]={ [1]={ [1]={ limit={ @@ -41886,7 +43478,23 @@ return { [1]="map_monster_additional_beasts_packs" } }, - [1947]={ + [2020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains {0} additional packs of Rare Beasts" + } + }, + stats={ + [1]="map_monster_additional_beasts_packs_rare" + } + }, + [2021]={ [1]={ [1]={ limit={ @@ -41902,7 +43510,7 @@ return { [1]="map_monster_additional_bramble_packs" } }, - [1948]={ + [2022]={ [1]={ [1]={ limit={ @@ -41918,7 +43526,7 @@ return { [1]="map_monster_additional_doryani_packs" } }, - [1949]={ + [2023]={ [1]={ [1]={ limit={ @@ -41934,7 +43542,7 @@ return { [1]="map_monster_additional_ezomyte_packs" } }, - [1950]={ + [2024]={ [1]={ [1]={ limit={ @@ -41950,7 +43558,7 @@ return { [1]="map_monster_additional_faridun_packs" } }, - [1951]={ + [2025]={ [1]={ [1]={ limit={ @@ -41966,7 +43574,7 @@ return { [1]="map_monster_additional_perennial_packs" } }, - [1952]={ + [2026]={ [1]={ [1]={ limit={ @@ -41982,7 +43590,7 @@ return { [1]="map_monster_additional_undead_packs" } }, - [1953]={ + [2027]={ [1]={ [1]={ limit={ @@ -41998,7 +43606,7 @@ return { [1]="map_monster_additional_vaal_packs" } }, - [1954]={ + [2028]={ [1]={ [1]={ limit={ @@ -42027,7 +43635,7 @@ return { [1]="map_monster_tre_+%" } }, - [1955]={ + [2029]={ [1]={ [1]={ limit={ @@ -42056,7 +43664,7 @@ return { [1]="map_rare_chest_amount_+%" } }, - [1956]={ + [2030]={ [1]={ [1]={ limit={ @@ -42072,7 +43680,7 @@ return { [1]="temporal_chains_gem_level_+" } }, - [1957]={ + [2031]={ [1]={ [1]={ limit={ @@ -42088,7 +43696,7 @@ return { [1]="vulnerability_gem_level_+" } }, - [1958]={ + [2032]={ [1]={ [1]={ limit={ @@ -42104,7 +43712,7 @@ return { [1]="endurance_only_conduit" } }, - [1959]={ + [2033]={ [1]={ [1]={ limit={ @@ -42120,7 +43728,7 @@ return { [1]="frenzy_only_conduit" } }, - [1960]={ + [2034]={ [1]={ [1]={ limit={ @@ -42136,7 +43744,7 @@ return { [1]="power_only_conduit" } }, - [1961]={ + [2035]={ [1]={ [1]={ limit={ @@ -42152,7 +43760,7 @@ return { [1]="local_chance_to_blind_on_hit_%" } }, - [1962]={ + [2036]={ [1]={ [1]={ limit={ @@ -42177,7 +43785,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [1963]={ + [2037]={ [1]={ [1]={ limit={ @@ -42206,7 +43814,7 @@ return { [1]="fortify_duration_+%" } }, - [1964]={ + [2038]={ [1]={ [1]={ limit={ @@ -42222,7 +43830,7 @@ return { [1]="should_use_alternate_fortify" } }, - [1965]={ + [2039]={ [1]={ [1]={ limit={ @@ -42251,7 +43859,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_fortify" } }, - [1966]={ + [2040]={ [1]={ [1]={ limit={ @@ -42280,7 +43888,7 @@ return { [1]="melee_cold_damage_+%_while_fortify_is_active" } }, - [1967]={ + [2041]={ [1]={ [1]={ limit={ @@ -42309,7 +43917,7 @@ return { [1]="melee_physical_damage_+%_while_fortify_is_active" } }, - [1968]={ + [2042]={ [1]={ [1]={ limit={ @@ -42325,7 +43933,7 @@ return { [1]="no_life_regeneration" } }, - [1969]={ + [2043]={ [1]={ [1]={ limit={ @@ -42341,7 +43949,7 @@ return { [1]="no_mana_regeneration" } }, - [1970]={ + [2044]={ [1]={ [1]={ limit={ @@ -42357,7 +43965,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1971]={ + [2045]={ [1]={ [1]={ limit={ @@ -42373,7 +43981,7 @@ return { [1]="physical_damage_reduction_%_per_endurance_charge" } }, - [1972]={ + [2046]={ [1]={ [1]={ limit={ @@ -42389,7 +43997,7 @@ return { [1]="map_size_+%" } }, - [1973]={ + [2047]={ [1]={ [1]={ limit={ @@ -42405,7 +44013,7 @@ return { [1]="delve_biome_contains_delve_boss" } }, - [1974]={ + [2048]={ [1]={ [1]={ limit={ @@ -42421,7 +44029,7 @@ return { [1]="delve_biome_boss_drops_additional_unique_item" } }, - [1975]={ + [2049]={ [1]={ [1]={ limit={ @@ -42437,7 +44045,7 @@ return { [1]="delve_biome_boss_drops_extra_precursor_component_ring" } }, - [1976]={ + [2050]={ [1]={ [1]={ limit={ @@ -42453,7 +44061,7 @@ return { [1]="delve_biome_boss_drops_x_additional_fossils" } }, - [1977]={ + [2051]={ [1]={ [1]={ limit={ @@ -42469,7 +44077,7 @@ return { [1]="delve_biome_boss_hits_always_crit" } }, - [1978]={ + [2052]={ [1]={ [1]={ limit={ @@ -42485,7 +44093,7 @@ return { [1]="delve_biome_boss_life_+%_final" } }, - [1979]={ + [2053]={ [1]={ [1]={ limit={ @@ -42501,7 +44109,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_cold" } }, - [1980]={ + [2054]={ [1]={ [1]={ limit={ @@ -42517,7 +44125,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_fire" } }, - [1981]={ + [2055]={ [1]={ [1]={ limit={ @@ -42533,7 +44141,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_gain_as_lightning" } }, - [1982]={ + [2056]={ [1]={ [1]={ limit={ @@ -42549,7 +44157,7 @@ return { [1]="map_is_branchy" } }, - [1983]={ + [2057]={ [1]={ [1]={ limit={ @@ -42578,7 +44186,7 @@ return { [1]="delve_biome_azurite_collected_+%" } }, - [1984]={ + [2058]={ [1]={ [1]={ limit={ @@ -42607,7 +44215,7 @@ return { [1]="delve_biome_sulphite_cost_+%_final" } }, - [1985]={ + [2059]={ [1]={ [1]={ limit={ @@ -42623,7 +44231,7 @@ return { [1]="delve_biome_city_chambers_can_contain_special_delve_chest" } }, - [1986]={ + [2060]={ [1]={ [1]={ limit={ @@ -42639,7 +44247,7 @@ return { [1]="delve_biome_encounters_extra_reward_chest_%_chance" } }, - [1987]={ + [2061]={ [1]={ [1]={ limit={ @@ -42655,7 +44263,7 @@ return { [1]="delve_biome_monster_drop_fossil_chance_%" } }, - [1988]={ + [2062]={ [1]={ [1]={ limit={ @@ -42671,7 +44279,7 @@ return { [1]="map_display_area_contains_unbridged_gaps_to_cross" } }, - [1989]={ + [2063]={ [1]={ [1]={ limit={ @@ -42687,7 +44295,7 @@ return { [1]="delve_biome_node_tier_upgrade_+%" } }, - [1990]={ + [2064]={ [1]={ [1]={ limit={ @@ -42703,7 +44311,7 @@ return { [1]="map_additional_number_of_packs_to_choose" } }, - [1991]={ + [2065]={ [1]={ [1]={ limit={ @@ -42719,7 +44327,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_azurite" } }, - [1992]={ + [2066]={ [1]={ [1]={ limit={ @@ -42735,7 +44343,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_currency" } }, - [1993]={ + [2067]={ [1]={ [1]={ limit={ @@ -42751,7 +44359,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_fossils" } }, - [1994]={ + [2068]={ [1]={ [1]={ limit={ @@ -42767,7 +44375,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_resonators" } }, - [1995]={ + [2069]={ [1]={ [1]={ limit={ @@ -42783,7 +44391,7 @@ return { [1]="delve_biome_off_path_reward_chests_azurite_chance_+%_final" } }, - [1996]={ + [2070]={ [1]={ [1]={ limit={ @@ -42799,7 +44407,7 @@ return { [1]="delve_biome_off_path_reward_chests_currency_chance_+%_final" } }, - [1997]={ + [2071]={ [1]={ [1]={ limit={ @@ -42815,7 +44423,7 @@ return { [1]="delve_biome_off_path_reward_chests_fossil_chance_+%_final" } }, - [1998]={ + [2072]={ [1]={ [1]={ limit={ @@ -42831,7 +44439,7 @@ return { [1]="delve_biome_off_path_reward_chests_resonator_chance_+%_final" } }, - [1999]={ + [2073]={ [1]={ [1]={ limit={ @@ -42847,7 +44455,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_minute" } }, - [2000]={ + [2074]={ [1]={ [1]={ limit={ @@ -42863,7 +44471,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_10_seconds" } }, - [2001]={ + [2075]={ [1]={ [1]={ limit={ @@ -42879,7 +44487,7 @@ return { [1]="map_ground_ice" } }, - [2002]={ + [2076]={ [1]={ [1]={ limit={ @@ -42895,7 +44503,7 @@ return { [1]="map_ground_ice_base_magnitude" } }, - [2003]={ + [2077]={ [1]={ [1]={ limit={ @@ -42911,7 +44519,7 @@ return { [1]="map_ground_lightning" } }, - [2004]={ + [2078]={ [1]={ [1]={ limit={ @@ -42927,7 +44535,7 @@ return { [1]="map_ground_mana_siphoning" } }, - [2005]={ + [2079]={ [1]={ [1]={ limit={ @@ -42943,7 +44551,7 @@ return { [1]="map_ground_lightning_base_magnitude" } }, - [2006]={ + [2080]={ [1]={ [1]={ limit={ @@ -42959,7 +44567,7 @@ return { [1]="map_ground_tar_movement_speed_+%" } }, - [2007]={ + [2081]={ [1]={ [1]={ limit={ @@ -42975,7 +44583,7 @@ return { [1]="map_base_ground_desecration_damage_to_deal_per_minute" } }, - [2008]={ + [2082]={ [1]={ [1]={ limit={ @@ -42991,7 +44599,7 @@ return { [1]="map_tempest_base_ground_fire_damage_to_deal_per_minute" } }, - [2009]={ + [2083]={ [1]={ [1]={ limit={ @@ -43007,7 +44615,7 @@ return { [1]="map_tempest_ground_ice" } }, - [2010]={ + [2084]={ [1]={ [1]={ limit={ @@ -43023,7 +44631,7 @@ return { [1]="map_tempest_ground_lightning" } }, - [2011]={ + [2085]={ [1]={ [1]={ limit={ @@ -43039,7 +44647,7 @@ return { [1]="map_tempest_ground_tar_movement_speed_+%" } }, - [2012]={ + [2086]={ [1]={ [1]={ limit={ @@ -43055,7 +44663,7 @@ return { [1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute" } }, - [2013]={ + [2087]={ [1]={ [1]={ limit={ @@ -43071,7 +44679,7 @@ return { [1]="map_fixed_seed" } }, - [2014]={ + [2088]={ [1]={ [1]={ limit={ @@ -43087,7 +44695,7 @@ return { [1]="map_minimap_revealed" } }, - [2015]={ + [2089]={ [1]={ [1]={ limit={ @@ -43103,7 +44711,7 @@ return { [1]="map_no_refills_in_town" } }, - [2016]={ + [2090]={ [1]={ [1]={ limit={ @@ -43119,7 +44727,7 @@ return { [1]="map_packs_are_totems" } }, - [2017]={ + [2091]={ [1]={ [1]={ limit={ @@ -43135,7 +44743,7 @@ return { [1]="map_packs_are_str_mission_totems" } }, - [2018]={ + [2092]={ [1]={ [1]={ limit={ @@ -43151,7 +44759,7 @@ return { [1]="map_packs_are_skeletons" } }, - [2019]={ + [2093]={ [1]={ [1]={ limit={ @@ -43167,7 +44775,7 @@ return { [1]="map_packs_are_bandits" } }, - [2020]={ + [2094]={ [1]={ [1]={ limit={ @@ -43183,7 +44791,7 @@ return { [1]="map_packs_are_goatmen" } }, - [2021]={ + [2095]={ [1]={ [1]={ limit={ @@ -43199,7 +44807,7 @@ return { [1]="map_packs_are_animals" } }, - [2022]={ + [2096]={ [1]={ [1]={ limit={ @@ -43215,7 +44823,7 @@ return { [1]="map_packs_are_demons" } }, - [2023]={ + [2097]={ [1]={ [1]={ limit={ @@ -43231,7 +44839,7 @@ return { [1]="map_packs_are_humanoids" } }, - [2024]={ + [2098]={ [1]={ [1]={ limit={ @@ -43247,7 +44855,7 @@ return { [1]="map_packs_are_sea_witches_and_spawn" } }, - [2025]={ + [2099]={ [1]={ [1]={ limit={ @@ -43263,7 +44871,7 @@ return { [1]="map_packs_are_undead_and_necromancers" } }, - [2026]={ + [2100]={ [1]={ [1]={ limit={ @@ -43279,7 +44887,7 @@ return { [1]="map_packs_fire_projectiles" } }, - [2027]={ + [2101]={ [1]={ [1]={ limit={ @@ -43295,7 +44903,7 @@ return { [1]="display_map_inhabited_by_wild_beasts" } }, - [2028]={ + [2102]={ [1]={ [1]={ limit={ @@ -43320,7 +44928,7 @@ return { [1]="map_display_unique_boss_drops_X_maps" } }, - [2029]={ + [2103]={ [1]={ [1]={ limit={ @@ -43345,7 +44953,7 @@ return { [1]="map_spawn_extra_exiles" } }, - [2030]={ + [2104]={ [1]={ [1]={ limit={ @@ -43370,7 +44978,7 @@ return { [1]="map_spawn_extra_warbands" } }, - [2031]={ + [2105]={ [1]={ [1]={ limit={ @@ -43395,7 +45003,7 @@ return { [1]="map_num_extra_shrines" } }, - [2032]={ + [2106]={ [1]={ [1]={ limit={ @@ -43411,7 +45019,7 @@ return { [1]="map_shrines_are_darkshrines" } }, - [2033]={ + [2107]={ [1]={ [1]={ limit={ @@ -43427,7 +45035,7 @@ return { [1]="map_spawn_harbingers" } }, - [2034]={ + [2108]={ [1]={ [1]={ limit={ @@ -43443,7 +45051,7 @@ return { [1]="map_spawn_talismans" } }, - [2035]={ + [2109]={ [1]={ [1]={ limit={ @@ -43459,7 +45067,7 @@ return { [1]="map_spawn_perandus_chests" } }, - [2036]={ + [2110]={ [1]={ [1]={ limit={ @@ -43484,7 +45092,7 @@ return { [1]="map_spawn_extra_talismans" } }, - [2037]={ + [2111]={ [1]={ [1]={ limit={ @@ -43500,7 +45108,7 @@ return { [1]="map_force_stone_circle" } }, - [2038]={ + [2112]={ [1]={ [1]={ limit={ @@ -43525,7 +45133,7 @@ return { [1]="map_spawn_extra_torment_spirits" } }, - [2039]={ + [2113]={ [1]={ [1]={ limit={ @@ -43550,39 +45158,7 @@ return { [1]="map_num_extra_strongboxes" } }, - [2040]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased number of Magic Monsters" - } - }, - stats={ - [1]="map_number_of_magic_packs_+%" - } - }, - [2041]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased number of Rare Monsters" - } - }, - stats={ - [1]="map_number_of_rare_packs_+%" - } - }, - [2042]={ + [2114]={ [1]={ [1]={ limit={ @@ -43598,7 +45174,7 @@ return { [1]="map_non_unique_monsters_spawn_X_monsters_on_death" } }, - [2043]={ + [2115]={ [1]={ [1]={ [1]={ @@ -43618,7 +45194,7 @@ return { [1]="map_player_base_chaos_damage_taken_per_minute" } }, - [2044]={ + [2116]={ [1]={ [1]={ limit={ @@ -43634,7 +45210,7 @@ return { [1]="map_player_has_blood_magic_keystone" } }, - [2045]={ + [2117]={ [1]={ [1]={ limit={ @@ -43650,7 +45226,7 @@ return { [1]="map_player_cannot_expose" } }, - [2046]={ + [2118]={ [1]={ [1]={ limit={ @@ -43666,7 +45242,7 @@ return { [1]="map_player_has_chaos_inoculation_keystone" } }, - [2047]={ + [2119]={ [1]={ [1]={ limit={ @@ -43682,7 +45258,7 @@ return { [1]="map_player_has_level_X_vulnerability" } }, - [2048]={ + [2120]={ [1]={ [1]={ limit={ @@ -43698,7 +45274,7 @@ return { [1]="map_player_has_level_X_enfeeble" } }, - [2049]={ + [2121]={ [1]={ [1]={ limit={ @@ -43714,7 +45290,7 @@ return { [1]="map_enfeeble_curse_zones" } }, - [2050]={ + [2122]={ [1]={ [1]={ limit={ @@ -43730,7 +45306,7 @@ return { [1]="map_player_has_level_X_temporal_chains" } }, - [2051]={ + [2123]={ [1]={ [1]={ limit={ @@ -43746,7 +45322,7 @@ return { [1]="map_temporal_chains_curse_zones" } }, - [2052]={ + [2124]={ [1]={ [1]={ limit={ @@ -43762,7 +45338,7 @@ return { [1]="map_player_has_level_X_elemental_weakness" } }, - [2053]={ + [2125]={ [1]={ [1]={ limit={ @@ -43778,7 +45354,7 @@ return { [1]="map_elemental_weakness_curse_zones" } }, - [2054]={ + [2126]={ [1]={ [1]={ limit={ @@ -43794,7 +45370,7 @@ return { [1]="map_player_has_level_X_punishment" } }, - [2055]={ + [2127]={ [1]={ [1]={ limit={ @@ -43810,7 +45386,7 @@ return { [1]="map_player_has_level_X_flammability" } }, - [2056]={ + [2128]={ [1]={ [1]={ limit={ @@ -43826,7 +45402,7 @@ return { [1]="map_player_has_level_X_frostbite" } }, - [2057]={ + [2129]={ [1]={ [1]={ limit={ @@ -43842,7 +45418,7 @@ return { [1]="map_player_has_level_X_conductivity" } }, - [2058]={ + [2130]={ [1]={ [1]={ limit={ @@ -43858,7 +45434,7 @@ return { [1]="map_player_has_level_X_despair" } }, - [2059]={ + [2131]={ [1]={ [1]={ limit={ @@ -43874,7 +45450,7 @@ return { [1]="map_player_has_level_X_silence" } }, - [2060]={ + [2132]={ [1]={ [1]={ limit={ @@ -43890,7 +45466,7 @@ return { [1]="map_player_no_regeneration" } }, - [2061]={ + [2133]={ [1]={ [1]={ limit={ @@ -43906,7 +45482,7 @@ return { [1]="map_additional_player_maximum_resistances_%" } }, - [2062]={ + [2134]={ [1]={ [1]={ limit={ @@ -43935,7 +45511,7 @@ return { [1]="map_player_status_recovery_speed_+%" } }, - [2063]={ + [2135]={ [1]={ [1]={ limit={ @@ -43964,7 +45540,7 @@ return { [1]="map_player_projectile_damage_+%_final" } }, - [2064]={ + [2136]={ [1]={ [1]={ limit={ @@ -43993,7 +45569,7 @@ return { [1]="map_projectile_speed_+%" } }, - [2065]={ + [2137]={ [1]={ [1]={ limit={ @@ -44022,7 +45598,7 @@ return { [1]="map_monsters_life_+%" } }, - [2066]={ + [2138]={ [1]={ [1]={ limit={ @@ -44051,7 +45627,7 @@ return { [1]="map_monsters_area_of_effect_+%" } }, - [2067]={ + [2139]={ [1]={ [1]={ limit={ @@ -44067,7 +45643,7 @@ return { [1]="map_monsters_avoid_freeze_and_chill_%" } }, - [2068]={ + [2140]={ [1]={ [1]={ limit={ @@ -44083,7 +45659,7 @@ return { [1]="map_monsters_avoid_ignite_%" } }, - [2069]={ + [2141]={ [1]={ [1]={ limit={ @@ -44099,7 +45675,7 @@ return { [1]="map_monsters_avoid_shock_%" } }, - [2070]={ + [2142]={ [1]={ [1]={ limit={ @@ -44115,7 +45691,7 @@ return { [1]="map_monster_unaffected_by_shock" } }, - [2071]={ + [2143]={ [1]={ [1]={ limit={ @@ -44131,7 +45707,7 @@ return { [1]="map_monsters_avoid_ailments_%" } }, - [2072]={ + [2144]={ [1]={ [1]={ limit={ @@ -44147,7 +45723,7 @@ return { [1]="map_monsters_avoid_elemental_ailments_%" } }, - [2073]={ + [2145]={ [1]={ [1]={ limit={ @@ -44176,7 +45752,7 @@ return { [1]="map_monsters_critical_strike_chance_+%" } }, - [2074]={ + [2146]={ [1]={ [1]={ limit={ @@ -44185,14 +45761,14 @@ return { [2]="#" } }, - text="{0:+d}% to Monster Critical Damage Bonus" + text="Monsters have {0:+d}% Critical Damage Bonus" } }, stats={ [1]="map_monsters_critical_strike_multiplier_+" } }, - [2075]={ + [2147]={ [1]={ [1]={ [1]={ @@ -44212,7 +45788,7 @@ return { [1]="map_monsters_cannot_be_leeched_from" } }, - [2076]={ + [2148]={ [1]={ [1]={ limit={ @@ -44241,7 +45817,7 @@ return { [1]="map_monsters_life_leech_resistance_permyriad" } }, - [2077]={ + [2149]={ [1]={ [1]={ limit={ @@ -44266,7 +45842,7 @@ return { [1]="map_monsters_mana_leech_resistance_permyriad" } }, - [2078]={ + [2150]={ [1]={ [1]={ limit={ @@ -44282,7 +45858,7 @@ return { [1]="map_monsters_damage_+%" } }, - [2079]={ + [2151]={ [1]={ [1]={ limit={ @@ -44298,7 +45874,7 @@ return { [1]="map_monsters_have_onslaught" } }, - [2080]={ + [2152]={ [1]={ [1]={ limit={ @@ -44327,7 +45903,7 @@ return { [1]="map_monsters_movement_speed_+%" } }, - [2081]={ + [2153]={ [1]={ [1]={ limit={ @@ -44343,7 +45919,7 @@ return { [1]="map_monsters_attack_speed_+%" } }, - [2082]={ + [2154]={ [1]={ [1]={ limit={ @@ -44359,7 +45935,7 @@ return { [1]="map_monsters_cast_speed_+%" } }, - [2083]={ + [2155]={ [1]={ [1]={ limit={ @@ -44375,7 +45951,7 @@ return { [1]="map_monsters_reflect_%_physical_damage" } }, - [2084]={ + [2156]={ [1]={ [1]={ limit={ @@ -44391,7 +45967,7 @@ return { [1]="map_monsters_reflect_%_elemental_damage" } }, - [2085]={ + [2157]={ [1]={ [1]={ limit={ @@ -44438,7 +46014,7 @@ return { [2]="map_players_additional_number_of_projectiles" } }, - [2086]={ + [2158]={ [1]={ [1]={ limit={ @@ -44454,7 +46030,7 @@ return { [1]="map_monsters_additional_fire_resistance" } }, - [2087]={ + [2159]={ [1]={ [1]={ limit={ @@ -44470,7 +46046,7 @@ return { [1]="map_monsters_additional_cold_resistance" } }, - [2088]={ + [2160]={ [1]={ [1]={ limit={ @@ -44486,7 +46062,7 @@ return { [1]="map_monsters_additional_lightning_resistance" } }, - [2089]={ + [2161]={ [1]={ [1]={ limit={ @@ -44502,7 +46078,7 @@ return { [1]="map_monsters_additional_physical_damage_reduction" } }, - [2090]={ + [2162]={ [1]={ [1]={ limit={ @@ -44518,7 +46094,7 @@ return { [1]="map_monsters_cannot_be_stunned" } }, - [2091]={ + [2163]={ [1]={ [1]={ limit={ @@ -44534,7 +46110,7 @@ return { [1]="map_monsters_poison_on_hit" } }, - [2092]={ + [2164]={ [1]={ [1]={ limit={ @@ -44550,7 +46126,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_fire" } }, - [2093]={ + [2165]={ [1]={ [1]={ limit={ @@ -44566,7 +46142,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_cold" } }, - [2094]={ + [2166]={ [1]={ [1]={ limit={ @@ -44582,7 +46158,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_lightning" } }, - [2095]={ + [2167]={ [1]={ [1]={ limit={ @@ -44598,7 +46174,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_chaos" } }, - [2096]={ + [2168]={ [1]={ [1]={ limit={ @@ -44614,7 +46190,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_fire" } }, - [2097]={ + [2169]={ [1]={ [1]={ limit={ @@ -44630,7 +46206,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_fire" } }, - [2098]={ + [2170]={ [1]={ [1]={ limit={ @@ -44646,7 +46222,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_cold" } }, - [2099]={ + [2171]={ [1]={ [1]={ limit={ @@ -44662,7 +46238,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_cold" } }, - [2100]={ + [2172]={ [1]={ [1]={ limit={ @@ -44678,7 +46254,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_lightning" } }, - [2101]={ + [2173]={ [1]={ [1]={ limit={ @@ -44694,7 +46270,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_lightning" } }, - [2102]={ + [2174]={ [1]={ [1]={ limit={ @@ -44710,7 +46286,7 @@ return { [1]="map_monsters_%_all_damage_to_gain_as_chaos" } }, - [2103]={ + [2175]={ [1]={ [1]={ limit={ @@ -44726,7 +46302,7 @@ return { [1]="map_monsters_%_physical_damage_to_gain_as_chaos" } }, - [2104]={ + [2176]={ [1]={ [1]={ limit={ @@ -44742,7 +46318,7 @@ return { [1]="map_monsters_physical_damage_%_to_gain_as_random_element" } }, - [2105]={ + [2177]={ [1]={ [1]={ limit={ @@ -44767,7 +46343,7 @@ return { [1]="map_monsters_gain_x_frenzy_charges_every_20_seconds" } }, - [2106]={ + [2178]={ [1]={ [1]={ limit={ @@ -44792,7 +46368,7 @@ return { [1]="map_monsters_gain_x_endurance_charges_every_20_seconds" } }, - [2107]={ + [2179]={ [1]={ [1]={ limit={ @@ -44817,7 +46393,7 @@ return { [1]="map_monsters_gain_x_power_charges_every_20_seconds" } }, - [2108]={ + [2180]={ [1]={ [1]={ limit={ @@ -44833,7 +46409,7 @@ return { [1]="map_monsters_immune_to_a_random_status_ailment_or_stun" } }, - [2109]={ + [2181]={ [1]={ [1]={ limit={ @@ -44849,7 +46425,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses" } }, - [2110]={ + [2182]={ [1]={ [1]={ limit={ @@ -44874,7 +46450,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses_%_chance" } }, - [2111]={ + [2183]={ [1]={ [1]={ limit={ @@ -44890,7 +46466,7 @@ return { [1]="map_monsters_reflect_curses" } }, - [2112]={ + [2184]={ [1]={ [1]={ limit={ @@ -44906,7 +46482,7 @@ return { [1]="map_monster_skills_chain_X_additional_times" } }, - [2113]={ + [2185]={ [1]={ [1]={ limit={ @@ -44922,7 +46498,7 @@ return { [1]="map_monsters_drop_ground_fire_on_death_base_radius" } }, - [2114]={ + [2186]={ [1]={ [1]={ limit={ @@ -44938,7 +46514,7 @@ return { [1]="map_monsters_are_immune_to_curses" } }, - [2115]={ + [2187]={ [1]={ [1]={ limit={ @@ -44954,7 +46530,7 @@ return { [1]="map_monsters_are_hexproof" } }, - [2116]={ + [2188]={ [1]={ [1]={ limit={ @@ -44987,7 +46563,7 @@ return { [1]="map_monsters_curse_effect_+%" } }, - [2117]={ + [2189]={ [1]={ [1]={ limit={ @@ -45003,7 +46579,7 @@ return { [1]="map_monster_no_drops" } }, - [2118]={ + [2190]={ [1]={ [1]={ limit={ @@ -45019,7 +46595,7 @@ return { [1]="map_spawn_two_bosses" } }, - [2119]={ + [2191]={ [1]={ [1]={ limit={ @@ -45035,7 +46611,7 @@ return { [1]="map_boss_damage_+%" } }, - [2120]={ + [2192]={ [1]={ [1]={ limit={ @@ -45064,7 +46640,7 @@ return { [1]="map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2121]={ + [2193]={ [1]={ [1]={ limit={ @@ -45093,7 +46669,7 @@ return { [1]="map_boss_life_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2122]={ + [2194]={ [1]={ [1]={ limit={ @@ -45109,7 +46685,7 @@ return { [1]="map_boss_drops_additional_conqueror_map" } }, - [2123]={ + [2195]={ [1]={ [1]={ limit={ @@ -45125,7 +46701,7 @@ return { [1]="map_boss_drops_additional_elder_guardian_map" } }, - [2124]={ + [2196]={ [1]={ [1]={ limit={ @@ -45141,7 +46717,7 @@ return { [1]="map_boss_drops_additional_shaper_guardian_map" } }, - [2125]={ + [2197]={ [1]={ [1]={ limit={ @@ -45157,7 +46733,7 @@ return { [1]="map_boss_attack_and_cast_speed_+%" } }, - [2126]={ + [2198]={ [1]={ [1]={ limit={ @@ -45186,7 +46762,7 @@ return { [1]="map_boss_maximum_life_+%" } }, - [2127]={ + [2199]={ [1]={ [1]={ limit={ @@ -45215,7 +46791,7 @@ return { [1]="map_boss_area_of_effect_+%" } }, - [2128]={ + [2200]={ [1]={ [1]={ limit={ @@ -45244,7 +46820,7 @@ return { [1]="map_chest_item_quantity_+%" } }, - [2129]={ + [2201]={ [1]={ [1]={ limit={ @@ -45273,7 +46849,7 @@ return { [1]="map_chest_item_rarity_+%" } }, - [2130]={ + [2202]={ [1]={ [1]={ limit={ @@ -45289,7 +46865,7 @@ return { [1]="map_has_X_waves_of_monsters" } }, - [2131]={ + [2203]={ [1]={ [1]={ limit={ @@ -45305,7 +46881,7 @@ return { [1]="map_has_X_seconds_between_waves" } }, - [2132]={ + [2204]={ [1]={ [1]={ limit={ @@ -45321,7 +46897,87 @@ return { [1]="display_map_no_monsters" } }, - [2133]={ + [2205]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every second Slam Skill you use yourself is Ancestrally Boosted" + } + }, + stats={ + [1]="ancestral_slam_every_other_slam" + } + }, + [2206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted\nEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted" + } + }, + stats={ + [1]="ancestral_slam_strike_every_other_strike_or_slam_while_shapeshifted" + } + }, + [2207]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="The next Attack you use within {0} seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted" + } + }, + stats={ + [1]="next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy" + } + }, + [2208]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted" + } + }, + stats={ + [1]="passive_notable_kaomsblessing_fire_spells_ancestral_boosted_when_you_warcry" + } + }, + [2209]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Slam Skills you use yourself are Ancestrally Boosted" + } + }, + stats={ + [1]="slams_always_ancestral_slam" + } + }, + [2210]={ [1]={ [1]={ limit={ @@ -45330,7 +46986,7 @@ return { [2]="#" } }, - text="{0}% more Physical Damage with Unarmed Melee Attacks" + text="1% more Unarmed Damage per {0} Strength" }, [2]={ [1]={ @@ -45343,14 +46999,14 @@ return { [2]=-1 } }, - text="{0}% less Physical Damage with Unarmed Melee Attacks" + text="1% less Unarmed Damage per {0} Strength" } }, stats={ - [1]="unique_facebreaker_unarmed_melee_physical_damage_+%_final" + [1]="unique_facebreaker_unarmed_attack_damage_+1%_final_per_X_strength" } }, - [2134]={ + [2211]={ [1]={ [1]={ limit={ @@ -45371,7 +47027,7 @@ return { [2]="attack_maximum_added_melee_lightning_damage_while_unarmed" } }, - [2135]={ + [2212]={ [1]={ [1]={ limit={ @@ -45392,7 +47048,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_unarmed" } }, - [2136]={ + [2213]={ [1]={ [1]={ limit={ @@ -45405,10 +47061,10 @@ return { } }, stats={ - [1]="life_reserved_by_stat_%" + [1]="life_reserved_by_stat_only_for_midnight_bargain_and_infernalist_%" } }, - [2137]={ + [2214]={ [1]={ [1]={ limit={ @@ -45424,7 +47080,7 @@ return { [1]="cannot_have_life_leeched_from" } }, - [2138]={ + [2215]={ [1]={ [1]={ limit={ @@ -45440,7 +47096,7 @@ return { [1]="cannot_have_mana_leeched_from" } }, - [2139]={ + [2216]={ [1]={ [1]={ limit={ @@ -45456,7 +47112,7 @@ return { [1]="unique_chin_sol_close_range_bow_damage_+%_final" } }, - [2140]={ + [2217]={ [1]={ [1]={ limit={ @@ -45472,7 +47128,343 @@ return { [1]="unique_chin_sol_close_range_knockback" } }, - [2141]={ + [2218]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Non Chaos Damage is taken as Chaos damage" + } + }, + stats={ + [1]="all_damage_taken_%_as_chaos_damage" + } + }, + [2219]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Fire Damage" + } + }, + stats={ + [1]="physical_damage_taken_%_as_fire" + } + }, + [2220]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" + } + }, + stats={ + [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements" + } + }, + [2221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" + } + }, + stats={ + [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire" + } + }, + [2222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Fire Damage" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_fire" + } + }, + [2223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical damage from Hits taken as Lightning damage" + } + }, + stats={ + [1]="physical_damage_taken_%_as_lightning" + } + }, + [2224]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" + } + }, + stats={ + [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements" + } + }, + [2225]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" + } + }, + stats={ + [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning" + } + }, + [2226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Lightning Damage" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_lightning" + } + }, + [2227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Lightning while your Shield is raised" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking" + } + }, + [2228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Cold Damage" + } + }, + stats={ + [1]="physical_damage_taken_%_as_cold" + } + }, + [2229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" + } + }, + stats={ + [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements" + } + }, + [2230]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" + } + }, + stats={ + [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice" + } + }, + [2231]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Cold Damage" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_cold" + } + }, + [2232]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Volatility Physical Damage Taken as Cold Damage" + } + }, + stats={ + [1]="volatility_physical_damage_taken_%_as_cold" + } + }, + [2233]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Damage of a Random Element" + } + }, + stats={ + [1]="physical_damage_from_hits_%_taken_as_random_element" + } + }, + [2234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Physical Damage from Hits taken as Chaos Damage" + } + }, + stats={ + [1]="physical_damage_taken_%_as_chaos" + } + }, + [2235]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Physical Damage taken as Chaos Damage" + } + }, + stats={ + [1]="physical_hit_and_dot_damage_%_taken_as_chaos" + } + }, + [2236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Elemental damage from Hits taken as Physical damage" + } + }, + stats={ + [1]="elemental_hit_damage_taken_%_as_physical" + } + }, + [2237]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Elemental damage from Hits taken as Chaos damage" + } + }, + stats={ + [1]="elemental_damage_taken_%_as_chaos" + } + }, + [2238]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED {0}% of Fire damage taken also taken as Physical damage" + } + }, + stats={ + [1]="fire_damage_taken_%_causes_additional_physical_damage" + } + }, + [2239]={ [1]={ [1]={ limit={ @@ -45488,7 +47480,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical" } }, - [2142]={ + [2240]={ [1]={ [1]={ [1]={ @@ -45508,7 +47500,23 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical_value_negated" } }, - [2143]={ + [2241]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{}% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning" + } + }, + stats={ + [1]="fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning" + } + }, + [2242]={ [1]={ [1]={ limit={ @@ -45517,14 +47525,30 @@ return { [2]="#" } }, - text="{0}% of Physical Damage from Hits taken as Fire Damage" + text="{0}% of Fire Damage from Hits taken as Lightning Damage" } }, stats={ - [1]="physical_damage_taken_%_as_fire" + [1]="fire_damage_taken_%_as_lightning" } }, - [2144]={ + [2243]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Fire Damage taken as Lightning Damage" + } + }, + stats={ + [1]="fire_hit_and_dot_damage_%_taken_as_lightning" + } + }, + [2244]={ [1]={ [1]={ limit={ @@ -45533,14 +47557,46 @@ return { [2]="#" } }, - text="{0}% of Physical Damage from Hits taken as Cold Damage" + text="{}% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" } }, stats={ - [1]="physical_damage_taken_%_as_cold" + [1]="fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice" } }, - [2145]={ + [2245]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Fire Damage from Hits taken as Cold Damage" + } + }, + stats={ + [1]="fire_damage_taken_%_as_cold" + } + }, + [2246]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Fire damage taken as Cold damage" + } + }, + stats={ + [1]="fire_hit_and_dot_damage_%_taken_as_cold" + } + }, + [2247]={ [1]={ [1]={ limit={ @@ -45549,46 +47605,94 @@ return { [2]="#" } }, - text="{0}% of Physical damage from Hits taken as Lightning damage" + text="{}% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" } }, stats={ - [1]="physical_damage_taken_%_as_lightning" + [1]="cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire" } }, - [2146]={ + [2248]={ [1]={ [1]={ limit={ [1]={ - [1]="!", - [2]=0 + [1]=1, + [2]="#" } }, - text="You take Fire Damage instead of Physical Damage from Bleeding" + text="{0}% of Lightning Damage from Hits taken as Fire Damage" } }, stats={ - [1]="bleeding_damage_on_self_taken_as_fire_instead" + [1]="lightning_damage_taken_%_as_fire" } }, - [2147]={ + [2249]={ [1]={ [1]={ limit={ [1]={ - [1]="!", - [2]=0 + [1]="#", + [2]="#" } }, - text="You take Fire Damage instead of Physical Damage from Bleeding" + text="{0}% of Lightning Damage taken as Fire Damage" } }, stats={ - [1]="bleeding_damage_on_self_taken_as_fire_instead" + [1]="lightning_hit_and_dot_damage_%_taken_as_fire" } }, - [2148]={ + [2250]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Lightning Damage from Hits taken as Cold Damage" + } + }, + stats={ + [1]="lightning_damage_taken_%_as_cold" + } + }, + [2251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Lightning damage taken as Cold damage" + } + }, + stats={ + [1]="lightning_hit_and_dot_damage_%_taken_as_cold" + } + }, + [2252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Cold Damage from Hits taken as Fire Damage" + } + }, + stats={ + [1]="cold_damage_taken_%_as_fire" + } + }, + [2253]={ [1]={ [1]={ limit={ @@ -45597,14 +47701,46 @@ return { [2]="#" } }, - text="{0}% of Physical Damage from Hits taken as Chaos Damage" + text="{0}% of Cold Damage taken as Fire Damage" } }, stats={ - [1]="physical_damage_taken_%_as_chaos" + [1]="cold_hit_and_dot_damage_%_taken_as_fire" } }, - [2149]={ + [2254]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Cold Damage from Hits taken as Lightning Damage" + } + }, + stats={ + [1]="cold_damage_taken_%_as_lightning" + } + }, + [2255]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Cold Damage taken as Lightning Damage" + } + }, + stats={ + [1]="cold_hit_and_dot_damage_%_taken_as_lightning" + } + }, + [2256]={ [1]={ [1]={ limit={ @@ -45613,14 +47749,14 @@ return { [2]="#" } }, - text="You take Chaos Damage instead of Fire Damage from Ignite" + text="{}% of Chaos Damage taken as Fire Damage" } }, stats={ - [1]="take_chaos_damage_from_ignite_instead" + [1]="chaos_hit_and_dot_damage_%_taken_as_fire" } }, - [2150]={ + [2257]={ [1]={ [1]={ limit={ @@ -45629,14 +47765,14 @@ return { [2]="#" } }, - text="{0}% of Elemental damage from Hits taken as Chaos damage" + text="{}% of Chaos Damage taken as Lightning Damage" } }, stats={ - [1]="elemental_damage_taken_%_as_chaos" + [1]="chaos_hit_and_dot_damage_%_taken_as_lightning" } }, - [2151]={ + [2258]={ [1]={ [1]={ limit={ @@ -45645,14 +47781,62 @@ return { [2]="#" } }, - text="{0}% of Fire Damage taken causes extra Physical Damage" + text="{0}% of Chaos Damage from Hits taken as a Damage of a random Element" } }, stats={ - [1]="fire_damage_taken_%_causes_additional_physical_damage" + [1]="chaos_damage_from_hits_%_taken_as_random_element" } }, - [2152]={ + [2259]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="!", + [2]=0 + } + }, + text="You take Fire Damage instead of Physical Damage from Bleeding" + } + }, + stats={ + [1]="bleeding_damage_on_self_taken_as_fire_instead" + } + }, + [2260]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="!", + [2]=0 + } + }, + text="You take Fire Damage instead of Physical Damage from Bleeding" + } + }, + stats={ + [1]="bleeding_damage_on_self_taken_as_fire_instead" + } + }, + [2261]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You take Chaos Damage instead of Fire Damage from Ignite" + } + }, + stats={ + [1]="take_chaos_damage_from_ignite_instead" + } + }, + [2262]={ [1]={ [1]={ limit={ @@ -45681,7 +47865,7 @@ return { [1]="unique_quill_rain_damage_+%_final" } }, - [2153]={ + [2263]={ [1]={ [1]={ limit={ @@ -45697,23 +47881,7 @@ return { [1]="melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [2154]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Block chance" - } - }, - stats={ - [1]="additional_block_%" - } - }, - [2155]={ + [2264]={ [1]={ [1]={ limit={ @@ -45729,7 +47897,7 @@ return { [1]="additional_block_chance_%_for_1_second_every_5_seconds" } }, - [2156]={ + [2265]={ [1]={ [1]={ limit={ @@ -45745,7 +47913,7 @@ return { [1]="with_bow_additional_block_%" } }, - [2157]={ + [2266]={ [1]={ [1]={ limit={ @@ -45770,7 +47938,7 @@ return { [1]="frozen_monsters_take_increased_damage" } }, - [2158]={ + [2267]={ [1]={ [1]={ limit={ @@ -45786,7 +47954,7 @@ return { [1]="additional_block_chance_against_projectiles_%" } }, - [2159]={ + [2268]={ [1]={ [1]={ limit={ @@ -45802,7 +47970,7 @@ return { [1]="base_cannot_leech" } }, - [2160]={ + [2269]={ [1]={ [1]={ [1]={ @@ -45822,7 +47990,7 @@ return { [1]="unique_dewaths_hide_physical_attack_damage_dealt_-" } }, - [2161]={ + [2270]={ [1]={ [1]={ limit={ @@ -45838,7 +48006,7 @@ return { [1]="energy_shield_%_gained_on_block" } }, - [2162]={ + [2271]={ [1]={ [1]={ limit={ @@ -45854,7 +48022,7 @@ return { [1]="energy_shield_%_of_armour_rating_gained_on_block" } }, - [2163]={ + [2272]={ [1]={ [1]={ limit={ @@ -45870,7 +48038,7 @@ return { [1]="local_poison_on_hit" } }, - [2164]={ + [2273]={ [1]={ [1]={ limit={ @@ -45886,7 +48054,7 @@ return { [1]="local_all_damage_can_poison" } }, - [2165]={ + [2274]={ [1]={ [1]={ limit={ @@ -45915,7 +48083,7 @@ return { [1]="spell_damage_taken_+%_when_on_low_mana" } }, - [2166]={ + [2275]={ [1]={ [1]={ limit={ @@ -45944,7 +48112,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_staff" } }, - [2167]={ + [2276]={ [1]={ [1]={ limit={ @@ -45960,7 +48128,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_staff" } }, - [2168]={ + [2277]={ [1]={ [1]={ limit={ @@ -45989,7 +48157,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_bow" } }, - [2169]={ + [2278]={ [1]={ [1]={ limit={ @@ -46005,7 +48173,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_bow" } }, - [2170]={ + [2279]={ [1]={ [1]={ limit={ @@ -46021,7 +48189,7 @@ return { [1]="reflect_curses" } }, - [2171]={ + [2280]={ [1]={ [1]={ limit={ @@ -46037,7 +48205,7 @@ return { [1]="reflect_hexes_chance_%" } }, - [2172]={ + [2281]={ [1]={ [1]={ limit={ @@ -46053,7 +48221,7 @@ return { [1]="unaffected_by_curses" } }, - [2173]={ + [2282]={ [1]={ [1]={ limit={ @@ -46069,7 +48237,7 @@ return { [1]="attacks_deal_no_physical_damage" } }, - [2174]={ + [2283]={ [1]={ [1]={ limit={ @@ -46085,7 +48253,7 @@ return { [1]="local_bleed_on_hit" } }, - [2175]={ + [2284]={ [1]={ [1]={ limit={ @@ -46101,7 +48269,7 @@ return { [1]="local_chance_to_bleed_on_hit_25%" } }, - [2176]={ + [2285]={ [1]={ [1]={ limit={ @@ -46117,7 +48285,7 @@ return { [1]="local_chance_to_bleed_on_hit_50%" } }, - [2177]={ + [2286]={ [1]={ [1]={ limit={ @@ -46133,7 +48301,7 @@ return { [1]="local_chance_to_bleed_on_hit_%" } }, - [2178]={ + [2287]={ [1]={ [1]={ limit={ @@ -46149,7 +48317,7 @@ return { [1]="bleed_on_stun" } }, - [2179]={ + [2288]={ [1]={ [1]={ limit={ @@ -46165,7 +48333,7 @@ return { [1]="bleed_on_crit_%_with_attacks" } }, - [2180]={ + [2289]={ [1]={ [1]={ limit={ @@ -46190,7 +48358,7 @@ return { [1]="bleed_on_melee_crit_chance_%" } }, - [2181]={ + [2290]={ [1]={ [1]={ limit={ @@ -46215,7 +48383,7 @@ return { [1]="bleed_on_melee_attack_chance_%" } }, - [2182]={ + [2291]={ [1]={ [1]={ limit={ @@ -46240,7 +48408,7 @@ return { [1]="bleed_on_bow_attack_chance_%" } }, - [2183]={ + [2292]={ [1]={ [1]={ limit={ @@ -46321,7 +48489,7 @@ return { [3]="cannot_cause_bleeding" } }, - [2184]={ + [2293]={ [1]={ [1]={ limit={ @@ -46346,7 +48514,7 @@ return { [1]="minion_bleed_on_hit_with_attacks_%" } }, - [2185]={ + [2294]={ [1]={ [1]={ limit={ @@ -46375,7 +48543,7 @@ return { [1]="attack_damage_vs_bleeding_enemies_+%" } }, - [2186]={ + [2295]={ [1]={ [1]={ limit={ @@ -46404,7 +48572,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [2187]={ + [2296]={ [1]={ [1]={ limit={ @@ -46433,7 +48601,7 @@ return { [1]="enemies_you_bleed_grant_flask_charges_+%" } }, - [2188]={ + [2297]={ [1]={ [1]={ limit={ @@ -46454,7 +48622,7 @@ return { [2]="maximum_added_physical_damage_vs_bleeding_enemies" } }, - [2189]={ + [2298]={ [1]={ [1]={ limit={ @@ -46470,7 +48638,7 @@ return { [1]="display_golden_radiance" } }, - [2190]={ + [2299]={ [1]={ [1]={ limit={ @@ -46486,7 +48654,7 @@ return { [1]="disable_skill_if_melee_attack" } }, - [2191]={ + [2300]={ [1]={ [1]={ limit={ @@ -46515,7 +48683,7 @@ return { [1]="local_stun_threshold_reduction_+%" } }, - [2192]={ + [2301]={ [1]={ [1]={ limit={ @@ -46531,7 +48699,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_area_%_value" } }, - [2193]={ + [2302]={ [1]={ [1]={ limit={ @@ -46547,7 +48715,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_damage" } }, - [2194]={ + [2303]={ [1]={ [1]={ limit={ @@ -46576,7 +48744,7 @@ return { [1]="virtual_light_radius_+%" } }, - [2195]={ + [2304]={ [1]={ [1]={ limit={ @@ -46592,7 +48760,7 @@ return { [1]="gain_phasing_while_at_maximum_frenzy_charges" } }, - [2196]={ + [2305]={ [1]={ [1]={ limit={ @@ -46608,7 +48776,7 @@ return { [1]="gain_phasing_while_you_have_onslaught" } }, - [2197]={ + [2306]={ [1]={ [1]={ limit={ @@ -46624,7 +48792,7 @@ return { [1]="gain_phasing_for_4_seconds_on_begin_es_recharge" } }, - [2198]={ + [2307]={ [1]={ [1]={ limit={ @@ -46640,7 +48808,7 @@ return { [1]="evasion_rating_+%_while_phasing" } }, - [2199]={ + [2308]={ [1]={ [1]={ limit={ @@ -46656,7 +48824,7 @@ return { [1]="item_found_rarity_+%_while_phasing" } }, - [2200]={ + [2309]={ [1]={ [1]={ limit={ @@ -46685,7 +48853,7 @@ return { [1]="mana_regeneration_rate_+%_while_phasing" } }, - [2201]={ + [2310]={ [1]={ [1]={ limit={ @@ -46714,7 +48882,7 @@ return { [1]="mana_regeneration_rate_+%_while_shocked" } }, - [2202]={ + [2311]={ [1]={ [1]={ limit={ @@ -46743,7 +48911,7 @@ return { [1]="light_radius_+%_while_phased" } }, - [2203]={ + [2312]={ [1]={ [1]={ limit={ @@ -46759,7 +48927,7 @@ return { [1]="base_chaos_damage_does_not_damage_energy_shield_extra_hard" } }, - [2204]={ + [2313]={ [1]={ [1]={ limit={ @@ -46775,7 +48943,7 @@ return { [1]="ground_tar_on_take_crit_base_area_of_effect_radius" } }, - [2205]={ + [2314]={ [1]={ [1]={ limit={ @@ -46791,7 +48959,7 @@ return { [1]="random_curse_on_hit_%" } }, - [2206]={ + [2315]={ [1]={ [1]={ limit={ @@ -46816,7 +48984,7 @@ return { [1]="curse_on_hit_%_enfeeble" } }, - [2207]={ + [2316]={ [1]={ [1]={ limit={ @@ -46841,7 +49009,7 @@ return { [1]="curse_on_hit_%_conductivity" } }, - [2208]={ + [2317]={ [1]={ [1]={ limit={ @@ -46866,7 +49034,7 @@ return { [1]="curse_on_hit_%_despair" } }, - [2209]={ + [2318]={ [1]={ [1]={ limit={ @@ -46891,7 +49059,7 @@ return { [1]="curse_on_hit_%_elemental_weakness" } }, - [2210]={ + [2319]={ [1]={ [1]={ limit={ @@ -46916,7 +49084,7 @@ return { [1]="curse_on_hit_%_flammability" } }, - [2211]={ + [2320]={ [1]={ [1]={ limit={ @@ -46941,7 +49109,7 @@ return { [1]="curse_on_hit_%_frostbite" } }, - [2212]={ + [2321]={ [1]={ [1]={ limit={ @@ -46966,7 +49134,7 @@ return { [1]="curse_on_hit_%_temporal_chains" } }, - [2213]={ + [2322]={ [1]={ [1]={ limit={ @@ -46991,7 +49159,7 @@ return { [1]="curse_on_hit_%_vulnerability" } }, - [2214]={ + [2323]={ [1]={ [1]={ limit={ @@ -47016,7 +49184,7 @@ return { [1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies" } }, - [2215]={ + [2324]={ [1]={ [1]={ limit={ @@ -47032,7 +49200,7 @@ return { [1]="curse_on_hit_level_temporal_chains" } }, - [2216]={ + [2325]={ [1]={ [1]={ limit={ @@ -47048,7 +49216,7 @@ return { [1]="curse_on_hit_level_vulnerability" } }, - [2217]={ + [2326]={ [1]={ [1]={ limit={ @@ -47073,7 +49241,7 @@ return { [1]="curse_on_hit_level_10_vulnerability_%" } }, - [2218]={ + [2327]={ [1]={ [1]={ limit={ @@ -47089,7 +49257,7 @@ return { [1]="curse_on_hit_level_elemental_weakness" } }, - [2219]={ + [2328]={ [1]={ [1]={ limit={ @@ -47105,7 +49273,7 @@ return { [1]="curse_on_hit_level_cold_weakness" } }, - [2220]={ + [2329]={ [1]={ [1]={ limit={ @@ -47121,7 +49289,7 @@ return { [1]="curse_on_hit_level_conductivity" } }, - [2221]={ + [2330]={ [1]={ [1]={ limit={ @@ -47137,7 +49305,7 @@ return { [1]="curse_on_hit_level_despair" } }, - [2222]={ + [2331]={ [1]={ [1]={ limit={ @@ -47153,7 +49321,7 @@ return { [1]="curse_on_hit_level_enfeeble" } }, - [2223]={ + [2332]={ [1]={ [1]={ limit={ @@ -47169,7 +49337,7 @@ return { [1]="curse_on_hit_level_flammability" } }, - [2224]={ + [2333]={ [1]={ [1]={ limit={ @@ -47185,7 +49353,7 @@ return { [1]="curse_on_hit_level_frostbite" } }, - [2225]={ + [2334]={ [1]={ [1]={ limit={ @@ -47201,7 +49369,7 @@ return { [1]="spells_have_culling_strike" } }, - [2226]={ + [2335]={ [1]={ [1]={ limit={ @@ -47217,23 +49385,27 @@ return { [1]="local_display_aura_allies_have_culling_strike" } }, - [2227]={ + [2336]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range" + text="{0:+d} metres to Melee Strike Range" } }, stats={ [1]="melee_range_+" } }, - [2228]={ + [2337]={ [1]={ [1]={ limit={ @@ -47262,7 +49434,7 @@ return { [1]="evasion_rating_+%_when_on_low_life" } }, - [2229]={ + [2338]={ [1]={ [1]={ limit={ @@ -47278,7 +49450,7 @@ return { [1]="base_life_leech_is_instant" } }, - [2230]={ + [2339]={ [1]={ [1]={ limit={ @@ -47294,7 +49466,7 @@ return { [1]="base_mana_leech_is_instant" } }, - [2231]={ + [2340]={ [1]={ [1]={ limit={ @@ -47310,7 +49482,7 @@ return { [1]="local_life_leech_is_instant" } }, - [2232]={ + [2341]={ [1]={ [1]={ limit={ @@ -47326,7 +49498,7 @@ return { [1]="base_leech_is_instant_on_critical" } }, - [2233]={ + [2342]={ [1]={ [1]={ limit={ @@ -47342,7 +49514,7 @@ return { [1]="display_map_restless_dead" } }, - [2234]={ + [2343]={ [1]={ [1]={ limit={ @@ -47358,7 +49530,7 @@ return { [1]="display_map_larger_maze" } }, - [2235]={ + [2344]={ [1]={ [1]={ limit={ @@ -47374,7 +49546,7 @@ return { [1]="display_map_large_chest" } }, - [2236]={ + [2345]={ [1]={ [1]={ limit={ @@ -47403,7 +49575,7 @@ return { [1]="area_of_effect_+%_per_20_int" } }, - [2237]={ + [2346]={ [1]={ [1]={ limit={ @@ -47432,7 +49604,7 @@ return { [1]="attack_speed_+%_per_20_dex" } }, - [2238]={ + [2347]={ [1]={ [1]={ limit={ @@ -47461,7 +49633,7 @@ return { [1]="physical_weapon_damage_+%_per_10_str" } }, - [2239]={ + [2348]={ [1]={ [1]={ limit={ @@ -47477,7 +49649,7 @@ return { [1]="gain_power_charge_per_enemy_you_crit" } }, - [2240]={ + [2349]={ [1]={ [1]={ limit={ @@ -47506,7 +49678,7 @@ return { [1]="burning_damage_taken_+%" } }, - [2241]={ + [2350]={ [1]={ [1]={ limit={ @@ -47522,7 +49694,7 @@ return { [1]="cannot_increase_rarity_of_dropped_items" } }, - [2242]={ + [2351]={ [1]={ [1]={ limit={ @@ -47538,7 +49710,7 @@ return { [1]="cannot_increase_quantity_of_dropped_items" } }, - [2243]={ + [2352]={ [1]={ [1]={ limit={ @@ -47554,7 +49726,7 @@ return { [1]="randomly_cursed_when_totems_die_curse_level" } }, - [2244]={ + [2353]={ [1]={ [1]={ limit={ @@ -47583,7 +49755,7 @@ return { [1]="global_equipment_no_attribute_requirements" } }, - [2245]={ + [2354]={ [1]={ [1]={ limit={ @@ -47612,7 +49784,7 @@ return { [1]="global_skill_gems_no_attribute_requirements" } }, - [2246]={ + [2355]={ [1]={ [1]={ limit={ @@ -47641,7 +49813,7 @@ return { [1]="global_equipment_attribute_requirements_+%" } }, - [2247]={ + [2356]={ [1]={ [1]={ limit={ @@ -47670,7 +49842,7 @@ return { [1]="global_gem_attribute_requirements_+%" } }, - [2248]={ + [2357]={ [1]={ [1]={ limit={ @@ -47699,7 +49871,7 @@ return { [1]="global_item_attribute_requirements_+%" } }, - [2249]={ + [2358]={ [1]={ [1]={ limit={ @@ -47715,7 +49887,7 @@ return { [1]="enemy_hits_roll_low_damage" } }, - [2250]={ + [2359]={ [1]={ [1]={ limit={ @@ -47731,23 +49903,7 @@ return { [1]="unique_loris_lantern_golden_light" } }, - [2251]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Chaos Resistance when on Low Life" - } - }, - stats={ - [1]="chaos_damage_resistance_%_when_on_low_life" - } - }, - [2252]={ + [2360]={ [1]={ [1]={ limit={ @@ -47776,7 +49932,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_low_life" } }, - [2253]={ + [2361]={ [1]={ [1]={ limit={ @@ -47797,7 +49953,7 @@ return { [2]="base_maximum_lightning_damage_on_charge_expiry" } }, - [2254]={ + [2362]={ [1]={ [1]={ limit={ @@ -47813,7 +49969,7 @@ return { [1]="item_drops_on_death" } }, - [2255]={ + [2363]={ [1]={ [1]={ limit={ @@ -47829,7 +49985,7 @@ return { [1]="local_item_drops_on_death_if_equipped_by_animate_armour" } }, - [2256]={ + [2364]={ [1]={ [1]={ limit={ @@ -47845,7 +50001,7 @@ return { [1]="never_ignite" } }, - [2257]={ + [2365]={ [1]={ [1]={ limit={ @@ -47861,7 +50017,7 @@ return { [1]="never_freeze" } }, - [2258]={ + [2366]={ [1]={ [1]={ limit={ @@ -47877,7 +50033,7 @@ return { [1]="never_freeze_or_chill" } }, - [2259]={ + [2367]={ [1]={ [1]={ limit={ @@ -47893,7 +50049,7 @@ return { [1]="never_shock" } }, - [2260]={ + [2368]={ [1]={ [1]={ limit={ @@ -47909,7 +50065,7 @@ return { [1]="faster_burn_%" } }, - [2261]={ + [2369]={ [1]={ [1]={ limit={ @@ -47925,7 +50081,7 @@ return { [1]="ignite_slower_burn_%" } }, - [2262]={ + [2370]={ [1]={ [1]={ limit={ @@ -47941,7 +50097,7 @@ return { [1]="faster_burn_from_attacks_%" } }, - [2263]={ + [2371]={ [1]={ [1]={ limit={ @@ -47957,7 +50113,7 @@ return { [1]="base_cannot_leech_life" } }, - [2264]={ + [2372]={ [1]={ [1]={ limit={ @@ -47973,7 +50129,7 @@ return { [1]="base_cannot_leech_mana" } }, - [2265]={ + [2373]={ [1]={ [1]={ limit={ @@ -47989,7 +50145,7 @@ return { [1]="cannot_leech_or_regenerate_mana" } }, - [2266]={ + [2374]={ [1]={ [1]={ limit={ @@ -48005,7 +50161,7 @@ return { [1]="cannot_leech_when_on_low_life" } }, - [2267]={ + [2375]={ [1]={ [1]={ limit={ @@ -48030,7 +50186,7 @@ return { [1]="base_energy_shield_gained_on_enemy_death" } }, - [2268]={ + [2376]={ [1]={ [1]={ limit={ @@ -48046,7 +50202,7 @@ return { [1]="gain_X_energy_shield_on_killing_shocked_enemy" } }, - [2269]={ + [2377]={ [1]={ [1]={ limit={ @@ -48062,7 +50218,7 @@ return { [1]="consecrate_on_block_%_chance_to_create" } }, - [2270]={ + [2378]={ [1]={ [1]={ limit={ @@ -48078,7 +50234,7 @@ return { [1]="desecrate_on_block_%_chance_to_create" } }, - [2271]={ + [2379]={ [1]={ [1]={ limit={ @@ -48094,7 +50250,7 @@ return { [1]="avoid_blind_%" } }, - [2272]={ + [2380]={ [1]={ [1]={ limit={ @@ -48119,7 +50275,7 @@ return { [1]="ground_smoke_when_hit_%" } }, - [2273]={ + [2381]={ [1]={ [1]={ limit={ @@ -48144,7 +50300,7 @@ return { [1]="shocked_ground_when_hit_%" } }, - [2274]={ + [2382]={ [1]={ [1]={ limit={ @@ -48173,7 +50329,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [2275]={ + [2383]={ [1]={ [1]={ limit={ @@ -48189,7 +50345,7 @@ return { [1]="totem_skill_cast_speed_+%" } }, - [2276]={ + [2384]={ [1]={ [1]={ limit={ @@ -48205,7 +50361,7 @@ return { [1]="totem_skill_attack_speed_+%" } }, - [2277]={ + [2385]={ [1]={ [1]={ limit={ @@ -48221,7 +50377,7 @@ return { [1]="totem_skill_area_of_effect_+%" } }, - [2278]={ + [2386]={ [1]={ [1]={ limit={ @@ -48237,7 +50393,7 @@ return { [1]="disable_chest_slot" } }, - [2279]={ + [2387]={ [1]={ [1]={ limit={ @@ -48266,7 +50422,7 @@ return { [1]="physical_claw_damage_+%_when_on_low_life" } }, - [2280]={ + [2388]={ [1]={ [1]={ limit={ @@ -48295,7 +50451,7 @@ return { [1]="accuracy_rating_+%_when_on_low_life" } }, - [2281]={ + [2389]={ [1]={ [1]={ limit={ @@ -48333,7 +50489,7 @@ return { [2]="maximum_physical_damage_to_return_on_block" } }, - [2282]={ + [2390]={ [1]={ [1]={ limit={ @@ -48367,7 +50523,7 @@ return { [2]="maximum_lightning_damage_to_return_on_block" } }, - [2283]={ + [2391]={ [1]={ [1]={ limit={ @@ -48400,7 +50556,7 @@ return { [1]="number_of_zombies_allowed_+%" } }, - [2284]={ + [2392]={ [1]={ [1]={ limit={ @@ -48416,7 +50572,7 @@ return { [1]="zombie_maximum_life_+" } }, - [2285]={ + [2393]={ [1]={ [1]={ limit={ @@ -48432,7 +50588,7 @@ return { [1]="zombie_chaos_elemental_damage_resistance_%" } }, - [2286]={ + [2394]={ [1]={ [1]={ limit={ @@ -48448,7 +50604,7 @@ return { [1]="chill_and_freeze_duration_based_on_%_energy_shield" } }, - [2287]={ + [2395]={ [1]={ [1]={ limit={ @@ -48464,7 +50620,7 @@ return { [1]="intelligence_+%_per_equipped_unique" } }, - [2288]={ + [2396]={ [1]={ [1]={ limit={ @@ -48480,7 +50636,7 @@ return { [1]="ignited_enemies_explode_on_kill" } }, - [2289]={ + [2397]={ [1]={ [1]={ limit={ @@ -48496,7 +50652,7 @@ return { [1]="additional_scroll_of_wisdom_drop_chance_%" } }, - [2290]={ + [2398]={ [1]={ [1]={ limit={ @@ -48525,7 +50681,7 @@ return { [1]="curse_effect_+%" } }, - [2291]={ + [2399]={ [1]={ [1]={ limit={ @@ -48554,7 +50710,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [2292]={ + [2400]={ [1]={ [1]={ limit={ @@ -48583,7 +50739,7 @@ return { [1]="mark_effect_+%" } }, - [2293]={ + [2401]={ [1]={ [1]={ limit={ @@ -48599,7 +50755,7 @@ return { [1]="ignore_hexproof" } }, - [2294]={ + [2402]={ [1]={ [1]={ limit={ @@ -48615,7 +50771,7 @@ return { [1]="chaos_weakness_ignores_hexproof" } }, - [2295]={ + [2403]={ [1]={ [1]={ limit={ @@ -48631,7 +50787,7 @@ return { [1]="cold_weakness_ignores_hexproof" } }, - [2296]={ + [2404]={ [1]={ [1]={ limit={ @@ -48647,7 +50803,7 @@ return { [1]="elemental_weakness_ignores_hexproof" } }, - [2297]={ + [2405]={ [1]={ [1]={ limit={ @@ -48663,7 +50819,7 @@ return { [1]="enfeeble_ignores_hexproof" } }, - [2298]={ + [2406]={ [1]={ [1]={ limit={ @@ -48679,7 +50835,7 @@ return { [1]="fire_weakness_ignores_hexproof" } }, - [2299]={ + [2407]={ [1]={ [1]={ limit={ @@ -48695,7 +50851,7 @@ return { [1]="lightning_weakness_ignores_hexproof" } }, - [2300]={ + [2408]={ [1]={ [1]={ limit={ @@ -48711,7 +50867,7 @@ return { [1]="punishment_ignores_hexproof" } }, - [2301]={ + [2409]={ [1]={ [1]={ limit={ @@ -48727,7 +50883,7 @@ return { [1]="temporal_chains_ignores_hexproof" } }, - [2302]={ + [2410]={ [1]={ [1]={ limit={ @@ -48743,7 +50899,7 @@ return { [1]="vulnerability_ignores_hexproof" } }, - [2303]={ + [2411]={ [1]={ [1]={ limit={ @@ -48772,7 +50928,7 @@ return { [1]="movement_velocity_+%_while_phasing" } }, - [2304]={ + [2412]={ [1]={ [1]={ limit={ @@ -48788,7 +50944,7 @@ return { [1]="map_spawn_exile_per_area_%" } }, - [2305]={ + [2413]={ [1]={ [1]={ limit={ @@ -48804,7 +50960,7 @@ return { [1]="map_ambush_chests" } }, - [2306]={ + [2414]={ [1]={ [1]={ limit={ @@ -48820,7 +50976,7 @@ return { [1]="map_breach_rules" } }, - [2307]={ + [2415]={ [1]={ [1]={ limit={ @@ -48836,7 +50992,7 @@ return { [1]="map_spawn_betrayals" } }, - [2308]={ + [2416]={ [1]={ [1]={ limit={ @@ -48852,7 +51008,7 @@ return { [1]="map_invasion_monster_packs" } }, - [2309]={ + [2417]={ [1]={ [1]={ limit={ @@ -48877,7 +51033,7 @@ return { [1]="map_num_extra_invasion_bosses" } }, - [2310]={ + [2418]={ [1]={ [1]={ limit={ @@ -48893,7 +51049,7 @@ return { [1]="map_spawn_tormented_spirits" } }, - [2311]={ + [2419]={ [1]={ [1]={ limit={ @@ -48909,7 +51065,7 @@ return { [1]="map_always_has_weather" } }, - [2312]={ + [2420]={ [1]={ [1]={ limit={ @@ -48925,7 +51081,7 @@ return { [1]="map_allow_shrines" } }, - [2313]={ + [2421]={ [1]={ [1]={ limit={ @@ -48941,7 +51097,7 @@ return { [1]="map_players_gain_rampage_stacks" } }, - [2314]={ + [2422]={ [1]={ [1]={ limit={ @@ -48957,7 +51113,7 @@ return { [1]="map_beyond_rules" } }, - [2315]={ + [2423]={ [1]={ [1]={ limit={ @@ -48986,7 +51142,7 @@ return { [1]="movement_velocity_+%_while_cursed" } }, - [2316]={ + [2424]={ [1]={ [1]={ [1]={ @@ -49006,7 +51162,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_frenzy_charge" } }, - [2317]={ + [2425]={ [1]={ [1]={ limit={ @@ -49031,7 +51187,7 @@ return { [1]="endurance_charge_on_kill_%" } }, - [2318]={ + [2426]={ [1]={ [1]={ limit={ @@ -49056,7 +51212,7 @@ return { [1]="lose_endurance_charge_on_kill_%" } }, - [2319]={ + [2427]={ [1]={ [1]={ limit={ @@ -49081,7 +51237,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [2320]={ + [2428]={ [1]={ [1]={ limit={ @@ -49097,7 +51253,7 @@ return { [1]="lose_frenzy_charge_on_kill_%" } }, - [2321]={ + [2429]={ [1]={ [1]={ limit={ @@ -49122,7 +51278,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [2322]={ + [2430]={ [1]={ [1]={ limit={ @@ -49138,7 +51294,7 @@ return { [1]="lose_power_charge_on_kill_%" } }, - [2323]={ + [2431]={ [1]={ [1]={ limit={ @@ -49154,7 +51310,7 @@ return { [1]="gain_frenzy_and_power_charge_on_kill_%" } }, - [2324]={ + [2432]={ [1]={ [1]={ limit={ @@ -49170,7 +51326,7 @@ return { [1]="gain_endurance_charge_on_power_charge_expiry" } }, - [2325]={ + [2433]={ [1]={ [1]={ limit={ @@ -49186,7 +51342,7 @@ return { [1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge" } }, - [2326]={ + [2434]={ [1]={ [1]={ limit={ @@ -49215,7 +51371,7 @@ return { [1]="melee_damage_+%_when_on_full_life" } }, - [2327]={ + [2435]={ [1]={ [1]={ limit={ @@ -49240,7 +51396,7 @@ return { [1]="consecrate_on_crit_%_chance_to_create" } }, - [2328]={ + [2436]={ [1]={ [1]={ limit={ @@ -49256,7 +51412,7 @@ return { [1]="projectile_speed_+%_per_frenzy_charge" } }, - [2329]={ + [2437]={ [1]={ [1]={ limit={ @@ -49272,7 +51428,7 @@ return { [1]="projectile_damage_+%_per_power_charge" } }, - [2330]={ + [2438]={ [1]={ [1]={ limit={ @@ -49301,7 +51457,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_on_crit" } }, - [2331]={ + [2439]={ [1]={ [1]={ [1]={ @@ -49321,7 +51477,7 @@ return { [1]="onslaught_buff_duration_on_kill_ms" } }, - [2332]={ + [2440]={ [1]={ [1]={ [1]={ @@ -49341,7 +51497,7 @@ return { [1]="onslaught_buff_duration_on_killing_taunted_enemy_ms" } }, - [2333]={ + [2441]={ [1]={ [1]={ [1]={ @@ -49361,7 +51517,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute" } }, - [2334]={ + [2442]={ [1]={ [1]={ [1]={ @@ -49381,7 +51537,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute_%" } }, - [2335]={ + [2443]={ [1]={ [1]={ [1]={ @@ -49401,7 +51557,7 @@ return { [1]="energy_shield_degeneration_%_per_minute_not_in_grace" } }, - [2336]={ + [2444]={ [1]={ [1]={ limit={ @@ -49417,7 +51573,7 @@ return { [1]="local_right_ring_slot_no_mana_regeneration" } }, - [2337]={ + [2445]={ [1]={ [1]={ [1]={ @@ -49437,7 +51593,7 @@ return { [1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%" } }, - [2338]={ + [2446]={ [1]={ [1]={ limit={ @@ -49453,7 +51609,7 @@ return { [1]="local_right_ring_slot_maximum_mana" } }, - [2339]={ + [2447]={ [1]={ [1]={ limit={ @@ -49469,7 +51625,7 @@ return { [1]="local_right_ring_slot_energy_shield" } }, - [2340]={ + [2448]={ [1]={ [1]={ limit={ @@ -49485,7 +51641,7 @@ return { [1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration" } }, - [2341]={ + [2449]={ [1]={ [1]={ limit={ @@ -49514,7 +51670,7 @@ return { [1]="local_left_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2342]={ + [2450]={ [1]={ [1]={ limit={ @@ -49530,7 +51686,7 @@ return { [1]="local_left_ring_slot_cold_damage_taken_%_as_fire" } }, - [2343]={ + [2451]={ [1]={ [1]={ limit={ @@ -49559,7 +51715,7 @@ return { [1]="local_left_ring_slot_curse_effect_on_self_+%" } }, - [2344]={ + [2452]={ [1]={ [1]={ limit={ @@ -49575,7 +51731,7 @@ return { [1]="local_left_ring_slot_fire_damage_taken_%_as_lightning" } }, - [2345]={ + [2453]={ [1]={ [1]={ limit={ @@ -49591,7 +51747,7 @@ return { [1]="local_left_ring_slot_lightning_damage_taken_%_as_cold" } }, - [2346]={ + [2454]={ [1]={ [1]={ [1]={ @@ -49611,7 +51767,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_per_minute" } }, - [2347]={ + [2455]={ [1]={ [1]={ limit={ @@ -49627,7 +51783,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_+%" } }, - [2348]={ + [2456]={ [1]={ [1]={ limit={ @@ -49656,7 +51812,7 @@ return { [1]="local_left_ring_slot_minion_damage_taken_+%" } }, - [2349]={ + [2457]={ [1]={ [1]={ limit={ @@ -49685,7 +51841,7 @@ return { [1]="local_left_ring_slot_skill_effect_duration_+%" } }, - [2350]={ + [2458]={ [1]={ [1]={ limit={ @@ -49714,7 +51870,7 @@ return { [1]="local_right_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2351]={ + [2459]={ [1]={ [1]={ limit={ @@ -49730,7 +51886,7 @@ return { [1]="local_right_ring_slot_cold_damage_taken_%_as_lightning" } }, - [2352]={ + [2460]={ [1]={ [1]={ limit={ @@ -49759,7 +51915,7 @@ return { [1]="local_right_ring_slot_curse_effect_on_self_+%" } }, - [2353]={ + [2461]={ [1]={ [1]={ limit={ @@ -49775,7 +51931,7 @@ return { [1]="local_right_ring_slot_fire_damage_taken_%_as_cold" } }, - [2354]={ + [2462]={ [1]={ [1]={ limit={ @@ -49791,7 +51947,7 @@ return { [1]="local_right_ring_slot_lightning_damage_taken_%_as_fire" } }, - [2355]={ + [2463]={ [1]={ [1]={ limit={ @@ -49820,7 +51976,7 @@ return { [1]="local_right_ring_slot_minion_damage_taken_+%" } }, - [2356]={ + [2464]={ [1]={ [1]={ limit={ @@ -49849,7 +52005,7 @@ return { [1]="local_right_ring_slot_skill_effect_duration_+%" } }, - [2357]={ + [2465]={ [1]={ [1]={ limit={ @@ -49865,7 +52021,7 @@ return { [1]="local_left_ring_slot_maximum_mana" } }, - [2358]={ + [2466]={ [1]={ [1]={ limit={ @@ -49881,7 +52037,7 @@ return { [1]="local_left_ring_slot_energy_shield" } }, - [2359]={ + [2467]={ [1]={ [1]={ limit={ @@ -49897,7 +52053,7 @@ return { [1]="no_energy_shield_recharge_or_regeneration" } }, - [2360]={ + [2468]={ [1]={ [1]={ limit={ @@ -49922,7 +52078,7 @@ return { [1]="extra_critical_rolls" } }, - [2361]={ + [2469]={ [1]={ [1]={ limit={ @@ -49938,7 +52094,7 @@ return { [1]="movement_velocity_+1%_per_X_evasion_rating" } }, - [2362]={ + [2470]={ [1]={ [1]={ limit={ @@ -49954,7 +52110,7 @@ return { [1]="cannot_be_killed_by_elemental_reflect" } }, - [2363]={ + [2471]={ [1]={ [1]={ limit={ @@ -49970,7 +52126,7 @@ return { [1]="cannot_freeze_shock_ignite_on_critical" } }, - [2364]={ + [2472]={ [1]={ [1]={ [1]={ @@ -49990,7 +52146,7 @@ return { [1]="onslaught_on_crit_duration_ms" } }, - [2365]={ + [2473]={ [1]={ [1]={ limit={ @@ -50019,7 +52175,7 @@ return { [1]="zombie_scale_+%" } }, - [2366]={ + [2474]={ [1]={ [1]={ limit={ @@ -50048,7 +52204,7 @@ return { [1]="zombie_physical_damage_+%" } }, - [2367]={ + [2475]={ [1]={ [1]={ limit={ @@ -50064,7 +52220,7 @@ return { [1]="zombie_explode_on_kill_%_fire_damage_to_deal" } }, - [2368]={ + [2476]={ [1]={ [1]={ limit={ @@ -50093,7 +52249,7 @@ return { [1]="weapon_elemental_damage_+%_per_power_charge" } }, - [2369]={ + [2477]={ [1]={ [1]={ limit={ @@ -50109,7 +52265,7 @@ return { [1]="cannot_cast_curses" } }, - [2370]={ + [2478]={ [1]={ [1]={ limit={ @@ -50125,7 +52281,7 @@ return { [1]="melee_attacks_usable_without_mana_cost" } }, - [2371]={ + [2479]={ [1]={ [1]={ limit={ @@ -50141,7 +52297,7 @@ return { [1]="spell_damage_modifiers_apply_to_attack_damage" } }, - [2372]={ + [2480]={ [1]={ [1]={ limit={ @@ -50157,7 +52313,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage" } }, - [2373]={ + [2481]={ [1]={ [1]={ limit={ @@ -50173,7 +52329,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value" } }, - [2374]={ + [2482]={ [1]={ [1]={ limit={ @@ -50198,7 +52354,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand" } }, - [2375]={ + [2483]={ [1]={ [1]={ limit={ @@ -50214,7 +52370,7 @@ return { [1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills" } }, - [2376]={ + [2484]={ [1]={ [1]={ limit={ @@ -50230,7 +52386,7 @@ return { [1]="vaal_attack_rage_cost_instead_of_souls_per_use" } }, - [2377]={ + [2485]={ [1]={ [1]={ limit={ @@ -50246,7 +52402,7 @@ return { [1]="spell_damage_modifiers_apply_to_skill_dot" } }, - [2378]={ + [2486]={ [1]={ [1]={ limit={ @@ -50262,7 +52418,7 @@ return { [1]="projectile_damage_modifiers_apply_to_skill_dot" } }, - [2379]={ + [2487]={ [1]={ [1]={ [1]={ @@ -50282,7 +52438,7 @@ return { [1]="local_display_aura_base_chaos_damage_to_deal_per_minute" } }, - [2380]={ + [2488]={ [1]={ [1]={ [1]={ @@ -50311,7 +52467,7 @@ return { [2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute" } }, - [2381]={ + [2489]={ [1]={ [1]={ limit={ @@ -50340,7 +52496,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%_when_frozen" } }, - [2382]={ + [2490]={ [1]={ [1]={ limit={ @@ -50369,7 +52525,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked" } }, - [2383]={ + [2491]={ [1]={ [1]={ limit={ @@ -50398,7 +52554,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shocked" } }, - [2384]={ + [2492]={ [1]={ [1]={ limit={ @@ -50414,7 +52570,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen" } }, - [2385]={ + [2493]={ [1]={ [1]={ limit={ @@ -50430,7 +52586,7 @@ return { [1]="local_unique_counts_as_dual_wielding" } }, - [2386]={ + [2494]={ [1]={ [1]={ limit={ @@ -50446,7 +52602,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%" } }, - [2387]={ + [2495]={ [1]={ [1]={ limit={ @@ -50462,7 +52618,7 @@ return { [1]="local_display_aura_damage_+%" } }, - [2388]={ + [2496]={ [1]={ [1]={ limit={ @@ -50478,7 +52634,7 @@ return { [1]="local_display_aura_curse_effect_on_self_+%" } }, - [2389]={ + [2497]={ [1]={ [1]={ limit={ @@ -50503,7 +52659,7 @@ return { [1]="projectile_freeze_chance_%" } }, - [2390]={ + [2498]={ [1]={ [1]={ limit={ @@ -50528,7 +52684,7 @@ return { [1]="projectile_shock_chance_%" } }, - [2391]={ + [2499]={ [1]={ [1]={ limit={ @@ -50544,7 +52700,7 @@ return { [1]="explode_on_kill_%_fire_damage_to_deal" } }, - [2392]={ + [2500]={ [1]={ [1]={ limit={ @@ -50560,7 +52716,7 @@ return { [1]="melee_damage_taken_%_to_deal_to_attacker" } }, - [2393]={ + [2501]={ [1]={ [1]={ limit={ @@ -50576,7 +52732,7 @@ return { [1]="mana_gained_when_hit" } }, - [2394]={ + [2502]={ [1]={ [1]={ limit={ @@ -50609,7 +52765,7 @@ return { [1]="elemental_reflect_damage_taken_+%" } }, - [2395]={ + [2503]={ [1]={ [1]={ limit={ @@ -50642,7 +52798,7 @@ return { [1]="physical_reflect_damage_taken_+%" } }, - [2396]={ + [2504]={ [1]={ [1]={ limit={ @@ -50675,7 +52831,7 @@ return { [1]="local_left_ring_slot_elemental_reflect_damage_taken_+%" } }, - [2397]={ + [2505]={ [1]={ [1]={ limit={ @@ -50708,7 +52864,7 @@ return { [1]="local_right_ring_slot_physical_reflect_damage_taken_+%" } }, - [2398]={ + [2506]={ [1]={ [1]={ limit={ @@ -50724,7 +52880,7 @@ return { [1]="local_can_only_deal_damage_with_this_weapon" } }, - [2399]={ + [2507]={ [1]={ [1]={ limit={ @@ -50753,7 +52909,7 @@ return { [1]="non_critical_damage_multiplier_+%" } }, - [2400]={ + [2508]={ [1]={ [1]={ [1]={ @@ -50778,7 +52934,7 @@ return { [2]="unique_map_boss_class_of_rare_items_to_drop" } }, - [2401]={ + [2509]={ [1]={ [1]={ limit={ @@ -50794,7 +52950,7 @@ return { [1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem" } }, - [2402]={ + [2510]={ [1]={ [1]={ limit={ @@ -50810,7 +52966,7 @@ return { [1]="base_maximum_life_per_red_socket_on_item" } }, - [2403]={ + [2511]={ [1]={ [1]={ [1]={ @@ -50830,7 +52986,7 @@ return { [1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad" } }, - [2404]={ + [2512]={ [1]={ [1]={ limit={ @@ -50846,7 +53002,7 @@ return { [1]="global_weapon_physical_damage_+%_per_red_socket_on_item" } }, - [2405]={ + [2513]={ [1]={ [1]={ limit={ @@ -50862,7 +53018,7 @@ return { [1]="base_maximum_mana_per_green_socket_on_item" } }, - [2406]={ + [2514]={ [1]={ [1]={ limit={ @@ -50878,7 +53034,7 @@ return { [1]="global_attack_speed_+%_per_green_socket_on_item" } }, - [2407]={ + [2515]={ [1]={ [1]={ limit={ @@ -50894,7 +53050,7 @@ return { [1]="global_critical_strike_mulitplier_+_per_green_socket_on_item" } }, - [2408]={ + [2516]={ [1]={ [1]={ limit={ @@ -50910,7 +53066,7 @@ return { [1]="base_maximum_energy_shield_per_blue_socket_on_item" } }, - [2409]={ + [2517]={ [1]={ [1]={ [1]={ @@ -50930,84 +53086,7 @@ return { [1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item" } }, - [2410]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased Item Quantity per White Socket" - } - }, - stats={ - [1]="item_found_quantity_+%_per_white_socket_on_item" - } - }, - [2411]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased Item Rarity per White Socket" - } - }, - stats={ - [1]="item_found_rarity_+%_per_white_socket_on_item" - } - }, - [2412]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Global Defences per White Socket" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Global Defences per White Socket" - } - }, - stats={ - [1]="global_defences_+%_per_white_socket_on_item" - } - }, - [2413]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Melee Strike Range per White Socket" - } - }, - stats={ - [1]="global_melee_range_+_per_white_socket_on_item" - } - }, - [2414]={ + [2518]={ [1]={ [1]={ limit={ @@ -51023,7 +53102,7 @@ return { [1]="cannot_block_while_no_energy_shield" } }, - [2415]={ + [2519]={ [1]={ [1]={ limit={ @@ -51039,7 +53118,7 @@ return { [1]="damage_+%_when_currently_has_no_energy_shield" } }, - [2416]={ + [2520]={ [1]={ [1]={ limit={ @@ -51068,7 +53147,7 @@ return { [1]="armour_+%_while_no_energy_shield" } }, - [2417]={ + [2521]={ [1]={ [1]={ limit={ @@ -51084,7 +53163,7 @@ return { [1]="unholy_might_while_you_have_no_energy_shield" } }, - [2418]={ + [2522]={ [1]={ [1]={ limit={ @@ -51100,7 +53179,7 @@ return { [1]="spell_damage_+%_per_5%_block_chance" } }, - [2419]={ + [2523]={ [1]={ [1]={ limit={ @@ -51129,7 +53208,7 @@ return { [1]="spell_damage_+%_per_10_int" } }, - [2420]={ + [2524]={ [1]={ [1]={ limit={ @@ -51145,7 +53224,7 @@ return { [1]="energy_shield_%_to_lose_on_block" } }, - [2421]={ + [2525]={ [1]={ [1]={ limit={ @@ -51161,7 +53240,7 @@ return { [1]="light_radius_scales_with_energy_shield" } }, - [2422]={ + [2526]={ [1]={ [1]={ limit={ @@ -51190,7 +53269,7 @@ return { [1]="flask_effect_+%" } }, - [2423]={ + [2527]={ [1]={ [1]={ limit={ @@ -51219,7 +53298,7 @@ return { [1]="magic_charm_effect_+%" } }, - [2424]={ + [2528]={ [1]={ [1]={ limit={ @@ -51248,7 +53327,7 @@ return { [1]="non_unique_flask_effect_+%" } }, - [2425]={ + [2529]={ [1]={ [1]={ limit={ @@ -51264,7 +53343,7 @@ return { [1]="local_weapon_range_+" } }, - [2426]={ + [2530]={ [1]={ [1]={ limit={ @@ -51293,7 +53372,7 @@ return { [1]="weapon_physical_damage_+%" } }, - [2427]={ + [2531]={ [1]={ [1]={ [1]={ @@ -51313,7 +53392,7 @@ return { [1]="maximum_critical_strike_chance" } }, - [2428]={ + [2532]={ [1]={ [1]={ limit={ @@ -51342,7 +53421,7 @@ return { [1]="melee_damage_taken_+%" } }, - [2429]={ + [2533]={ [1]={ [1]={ limit={ @@ -51375,7 +53454,7 @@ return { [1]="projectile_damage_taken_+%" } }, - [2430]={ + [2534]={ [1]={ [1]={ [1]={ @@ -51395,7 +53474,7 @@ return { [1]="gain_onslaught_on_stun_duration_ms" } }, - [2431]={ + [2535]={ [1]={ [1]={ limit={ @@ -51420,7 +53499,7 @@ return { [1]="chance_to_gain_endurance_charge_when_hit_%" } }, - [2432]={ + [2536]={ [1]={ [1]={ limit={ @@ -51436,7 +53515,7 @@ return { [1]="lose_all_endurance_charges_when_reaching_maximum" } }, - [2433]={ + [2537]={ [1]={ [1]={ [1]={ @@ -51456,7 +53535,7 @@ return { [1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges" } }, - [2434]={ + [2538]={ [1]={ [1]={ limit={ @@ -51472,7 +53551,7 @@ return { [1]="cannot_gain_endurance_charges_while_have_onslaught" } }, - [2435]={ + [2539]={ [1]={ [1]={ limit={ @@ -51488,7 +53567,7 @@ return { [1]="flasks_dispel_burning" } }, - [2436]={ + [2540]={ [1]={ [1]={ limit={ @@ -51517,7 +53596,7 @@ return { [1]="item_rarity_+%_while_using_flask" } }, - [2437]={ + [2541]={ [1]={ [1]={ limit={ @@ -51546,7 +53625,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_while_using_flask" } }, - [2438]={ + [2542]={ [1]={ [1]={ limit={ @@ -51575,23 +53654,7 @@ return { [1]="weapon_elemental_damage_+%_while_using_flask" } }, - [2439]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Skill Gems" - } - }, - stats={ - [1]="supported_active_skill_gem_level_+" - } - }, - [2440]={ + [2543]={ [1]={ [1]={ limit={ @@ -51607,7 +53670,7 @@ return { [1]="physical_damage_reduction_rating_per_level" } }, - [2441]={ + [2544]={ [1]={ [1]={ limit={ @@ -51623,7 +53686,7 @@ return { [1]="maximum_life_per_10_levels" } }, - [2442]={ + [2545]={ [1]={ [1]={ limit={ @@ -51639,7 +53702,7 @@ return { [1]="resist_all_elements_%_per_10_levels" } }, - [2443]={ + [2546]={ [1]={ [1]={ limit={ @@ -51655,7 +53718,7 @@ return { [1]="chance_to_gain_random_curse_when_hit_%_per_10_levels" } }, - [2444]={ + [2547]={ [1]={ [1]={ limit={ @@ -51684,7 +53747,7 @@ return { [1]="damage_taken_+%_vs_demons" } }, - [2445]={ + [2548]={ [1]={ [1]={ limit={ @@ -51713,7 +53776,7 @@ return { [1]="damage_+%_vs_demons" } }, - [2446]={ + [2549]={ [1]={ [1]={ limit={ @@ -51729,7 +53792,7 @@ return { [1]="chilled_monsters_take_+%_burning_damage" } }, - [2447]={ + [2550]={ [1]={ [1]={ limit={ @@ -51758,7 +53821,7 @@ return { [1]="unique_chill_duration_+%_when_in_off_hand" } }, - [2448]={ + [2551]={ [1]={ [1]={ limit={ @@ -51805,7 +53868,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [2449]={ + [2552]={ [1]={ [1]={ limit={ @@ -51821,7 +53884,7 @@ return { [1]="chance_to_gain_power_charge_on_melee_stun_%" } }, - [2450]={ + [2553]={ [1]={ [1]={ limit={ @@ -51837,7 +53900,7 @@ return { [1]="chance_to_gain_power_charge_on_stun_%" } }, - [2451]={ + [2554]={ [1]={ [1]={ [1]={ @@ -51887,7 +53950,7 @@ return { [2]="movement_speed_+%_on_throwing_trap" } }, - [2452]={ + [2555]={ [1]={ [1]={ limit={ @@ -51912,7 +53975,7 @@ return { [1]="poison_on_melee_critical_strike_%" } }, - [2453]={ + [2556]={ [1]={ [1]={ limit={ @@ -51928,7 +53991,7 @@ return { [1]="shocks_reflected_to_self" } }, - [2454]={ + [2557]={ [1]={ [1]={ limit={ @@ -51957,7 +54020,7 @@ return { [1]="damage_+%_per_shock" } }, - [2455]={ + [2558]={ [1]={ [1]={ limit={ @@ -51973,7 +54036,7 @@ return { [1]="damage_+1%_per_X_strength_when_in_main_hand" } }, - [2456]={ + [2559]={ [1]={ [1]={ limit={ @@ -51989,7 +54052,7 @@ return { [1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand" } }, - [2457]={ + [2560]={ [1]={ [1]={ [1]={ @@ -52009,7 +54072,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [2458]={ + [2561]={ [1]={ [1]={ limit={ @@ -52025,7 +54088,7 @@ return { [1]="traps_do_not_explode_on_timeout" } }, - [2459]={ + [2562]={ [1]={ [1]={ limit={ @@ -52041,7 +54104,7 @@ return { [1]="traps_explode_on_timeout" } }, - [2460]={ + [2563]={ [1]={ [1]={ limit={ @@ -52057,7 +54120,7 @@ return { [1]="mine_detonation_is_instant" } }, - [2461]={ + [2564]={ [1]={ [1]={ limit={ @@ -52073,7 +54136,7 @@ return { [1]="trap_damage_penetrates_%_elemental_resistance" } }, - [2462]={ + [2565]={ [1]={ [1]={ limit={ @@ -52089,7 +54152,7 @@ return { [1]="mine_damage_penetrates_%_elemental_resistance" } }, - [2463]={ + [2566]={ [1]={ [1]={ limit={ @@ -52105,7 +54168,7 @@ return { [1]="trap_and_mine_damage_penetrates_%_elemental_resistance" } }, - [2464]={ + [2567]={ [1]={ [1]={ [1]={ @@ -52125,7 +54188,7 @@ return { [1]="traps_invulnerable_for_duration_ms" } }, - [2465]={ + [2568]={ [1]={ [1]={ [1]={ @@ -52145,7 +54208,7 @@ return { [1]="mines_invulnerable_for_duration_ms" } }, - [2466]={ + [2569]={ [1]={ [1]={ limit={ @@ -52161,7 +54224,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [2467]={ + [2570]={ [1]={ [1]={ limit={ @@ -52177,7 +54240,7 @@ return { [1]="slash_ancestor_totem_elemental_resistance_%" } }, - [2468]={ + [2571]={ [1]={ [1]={ limit={ @@ -52193,7 +54256,7 @@ return { [1]="totem_additional_physical_damage_reduction_%" } }, - [2469]={ + [2572]={ [1]={ [1]={ limit={ @@ -52209,7 +54272,7 @@ return { [1]="base_deal_no_physical_damage" } }, - [2470]={ + [2573]={ [1]={ [1]={ limit={ @@ -52225,7 +54288,7 @@ return { [1]="deal_no_non_physical_damage" } }, - [2471]={ + [2574]={ [1]={ [1]={ limit={ @@ -52241,7 +54304,7 @@ return { [1]="base_deal_no_cold_damage" } }, - [2472]={ + [2575]={ [1]={ [1]={ limit={ @@ -52257,7 +54320,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [2473]={ + [2576]={ [1]={ [1]={ limit={ @@ -52273,7 +54336,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [2474]={ + [2577]={ [1]={ [1]={ limit={ @@ -52289,7 +54352,7 @@ return { [1]="deal_no_non_cold_damage" } }, - [2475]={ + [2578]={ [1]={ [1]={ limit={ @@ -52322,7 +54385,7 @@ return { [1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final" } }, - [2476]={ + [2579]={ [1]={ [1]={ limit={ @@ -52351,7 +54414,7 @@ return { [1]="animate_weapon_duration_+%" } }, - [2477]={ + [2580]={ [1]={ [1]={ limit={ @@ -52376,55 +54439,7 @@ return { [1]="animate_weapon_number_of_additional_copies" } }, - [2478]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Fire and Cold Resistances" - } - }, - stats={ - [1]="fire_and_cold_damage_resistance_%" - } - }, - [2479]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Fire and Lightning Resistances" - } - }, - stats={ - [1]="fire_and_lightning_damage_resistance_%" - } - }, - [2480]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% to Cold and Lightning Resistances" - } - }, - stats={ - [1]="cold_and_lightning_damage_resistance_%" - } - }, - [2481]={ + [2581]={ [1]={ [1]={ limit={ @@ -52453,7 +54468,7 @@ return { [1]="damage_+%_while_ignited" } }, - [2482]={ + [2582]={ [1]={ [1]={ limit={ @@ -52469,7 +54484,7 @@ return { [1]="physical_damage_reduction_rating_while_frozen" } }, - [2483]={ + [2583]={ [1]={ [1]={ limit={ @@ -52498,7 +54513,7 @@ return { [1]="physical_damage_taken_+%_while_frozen" } }, - [2484]={ + [2584]={ [1]={ [1]={ limit={ @@ -52527,7 +54542,7 @@ return { [1]="movement_velocity_+%_while_ignited" } }, - [2485]={ + [2585]={ [1]={ [1]={ limit={ @@ -52556,7 +54571,7 @@ return { [1]="movement_velocity_+%_per_shock" } }, - [2486]={ + [2586]={ [1]={ [1]={ limit={ @@ -52585,7 +54600,7 @@ return { [1]="damage_+%_vs_rare_monsters" } }, - [2487]={ + [2587]={ [1]={ [1]={ limit={ @@ -52601,7 +54616,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [2488]={ + [2588]={ [1]={ [1]={ limit={ @@ -52617,7 +54632,7 @@ return { [1]="ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final" } }, - [2489]={ + [2589]={ [1]={ [1]={ limit={ @@ -52646,7 +54661,7 @@ return { [1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge" } }, - [2490]={ + [2590]={ [1]={ [1]={ limit={ @@ -52675,7 +54690,7 @@ return { [1]="damage_+%_vs_blinded_enemies" } }, - [2491]={ + [2591]={ [1]={ [1]={ limit={ @@ -52704,7 +54719,7 @@ return { [1]="shrine_buff_effect_on_self_+%" } }, - [2492]={ + [2592]={ [1]={ [1]={ limit={ @@ -52733,7 +54748,7 @@ return { [1]="shrine_effect_duration_+%" } }, - [2493]={ + [2593]={ [1]={ [1]={ [1]={ @@ -52753,7 +54768,7 @@ return { [1]="shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy" } }, - [2494]={ + [2594]={ [1]={ [1]={ limit={ @@ -52769,7 +54784,7 @@ return { [1]="gain_rare_monster_mods_on_kill_ms" } }, - [2495]={ + [2595]={ [1]={ [1]={ limit={ @@ -52798,7 +54813,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked" } }, - [2496]={ + [2596]={ [1]={ [1]={ limit={ @@ -52827,7 +54842,7 @@ return { [1]="aura_effect_+%" } }, - [2497]={ + [2597]={ [1]={ [1]={ limit={ @@ -52843,7 +54858,7 @@ return { [1]="supported_active_skill_gem_quality_%" } }, - [2498]={ + [2598]={ [1]={ [1]={ limit={ @@ -52859,7 +54874,7 @@ return { [1]="phase_through_objects" } }, - [2499]={ + [2599]={ [1]={ [1]={ limit={ @@ -52875,7 +54890,7 @@ return { [1]="local_support_gem_max_skill_level_requirement_to_support" } }, - [2500]={ + [2600]={ [1]={ [1]={ limit={ @@ -52922,7 +54937,7 @@ return { [2]="projectile_return_%_chance" } }, - [2501]={ + [2601]={ [1]={ [1]={ limit={ @@ -52938,7 +54953,7 @@ return { [1]="attack_projectiles_return" } }, - [2502]={ + [2602]={ [1]={ [1]={ limit={ @@ -52954,7 +54969,7 @@ return { [1]="attack_projectiles_return_after_piercing_X_times" } }, - [2503]={ + [2603]={ [1]={ [1]={ limit={ @@ -52987,7 +55002,7 @@ return { [1]="unique_critical_strike_chance_+%_final" } }, - [2504]={ + [2604]={ [1]={ [1]={ limit={ @@ -53003,7 +55018,7 @@ return { [1]="unique_lose_all_endurance_charges_when_hit" } }, - [2505]={ + [2605]={ [1]={ [1]={ [1]={ @@ -53023,7 +55038,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms" } }, - [2506]={ + [2606]={ [1]={ [1]={ limit={ @@ -53039,7 +55054,7 @@ return { [1]="add_endurance_charge_on_kill" } }, - [2507]={ + [2607]={ [1]={ [1]={ limit={ @@ -53055,7 +55070,7 @@ return { [1]="chance_to_counter_strike_when_hit_%" } }, - [2508]={ + [2608]={ [1]={ [1]={ limit={ @@ -53071,7 +55086,7 @@ return { [1]="regenerate_X_life_over_1_second_on_cast" } }, - [2509]={ + [2609]={ [1]={ [1]={ limit={ @@ -53087,7 +55102,7 @@ return { [1]="regenerate_%_armour_as_life_over_1_second_on_block" } }, - [2510]={ + [2610]={ [1]={ [1]={ limit={ @@ -53096,7 +55111,7 @@ return { [2]="#" } }, - text="{0}% increased Global Defences" + text="{0}% increased Global Armour, Evasion and Energy Shield" }, [2]={ [1]={ @@ -53109,14 +55124,14 @@ return { [2]=-1 } }, - text="{0}% reduced Global Defences" + text="{0}% reduced Global Armour, Evasion and Energy Shield" } }, stats={ - [1]="global_defences_+%" + [1]="global_armour_evasion_energy_shield_+%" } }, - [2511]={ + [2611]={ [1]={ [1]={ limit={ @@ -53125,7 +55140,7 @@ return { [2]="#" } }, - text="Monsters have {0}% increased Defences" + text="Monsters have {0}% increased Armour, Evasion and Energy Shield" }, [2]={ [1]={ @@ -53138,14 +55153,14 @@ return { [2]=-1 } }, - text="Monsters have {0}% reduced Defences" + text="Monsters have {0}% reduced Armour, Evasion and Energy Shield" } }, stats={ - [1]="map_monster_defences_+%" + [1]="map_monster_armour_evasion_energy_shield_+%" } }, - [2512]={ + [2612]={ [1]={ [1]={ limit={ @@ -53154,7 +55169,7 @@ return { [2]="#" } }, - text="Players have {0}% more Defences" + text="Players have {0}% more Armour, Evasion and Energy Shield" }, [2]={ [1]={ @@ -53167,14 +55182,14 @@ return { [2]=-1 } }, - text="Players have {0}% less Defences" + text="Players have {0}% less Armour, Evasion and Energy Shield" } }, stats={ - [1]="map_player_global_defences_+%_final_from_sanctum_boon" + [1]="map_player_global_armour_evasion_energy_shield_+%_final_from_sanctum_boon" } }, - [2513]={ + [2613]={ [1]={ [1]={ limit={ @@ -53190,7 +55205,7 @@ return { [1]="your_elemental_resistances_do_not_exist" } }, - [2514]={ + [2614]={ [1]={ [1]={ limit={ @@ -53206,7 +55221,7 @@ return { [1]="culling_strike_on_burning_enemies" } }, - [2515]={ + [2615]={ [1]={ [1]={ limit={ @@ -53222,7 +55237,7 @@ return { [1]="gain_frenzy_charge_if_attack_ignites" } }, - [2516]={ + [2616]={ [1]={ [1]={ limit={ @@ -53251,7 +55266,7 @@ return { [1]="damage_+%_per_10_levels" } }, - [2517]={ + [2617]={ [1]={ [1]={ limit={ @@ -53267,7 +55282,7 @@ return { [1]="chaos_damage_taken_+" } }, - [2518]={ + [2618]={ [1]={ [1]={ limit={ @@ -53283,7 +55298,7 @@ return { [1]="display_map_final_boss_drops_higher_level_gear" } }, - [2519]={ + [2619]={ [1]={ [1]={ limit={ @@ -53299,7 +55314,7 @@ return { [1]="display_map_boss_gives_experience_+%" } }, - [2520]={ + [2620]={ [1]={ [1]={ [1]={ @@ -53332,7 +55347,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge" } }, - [2521]={ + [2621]={ [1]={ [1]={ limit={ @@ -53361,7 +55376,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [2522]={ + [2622]={ [1]={ [1]={ limit={ @@ -53390,7 +55405,7 @@ return { [1]="fishing_line_strength_+%" } }, - [2523]={ + [2623]={ [1]={ [1]={ limit={ @@ -53423,7 +55438,7 @@ return { [1]="fishing_pool_consumption_+%" } }, - [2524]={ + [2624]={ [1]={ [1]={ limit={ @@ -53466,7 +55481,7 @@ return { [1]="fishing_lure_type" } }, - [2525]={ + [2625]={ [1]={ [1]={ limit={ @@ -53509,7 +55524,7 @@ return { [1]="fishing_hook_type" } }, - [2526]={ + [2626]={ [1]={ [1]={ limit={ @@ -53538,7 +55553,7 @@ return { [1]="fishing_range_+%" } }, - [2527]={ + [2627]={ [1]={ [1]={ limit={ @@ -53567,7 +55582,7 @@ return { [1]="fish_quantity_+%" } }, - [2528]={ + [2628]={ [1]={ [1]={ limit={ @@ -53596,7 +55611,7 @@ return { [1]="fish_rarity_+%" } }, - [2529]={ + [2629]={ [1]={ [1]={ limit={ @@ -53612,7 +55627,7 @@ return { [1]="local_ring_duplicate_other_ring" } }, - [2530]={ + [2630]={ [1]={ [1]={ limit={ @@ -53628,7 +55643,7 @@ return { [1]="can_catch_exotic_fish" } }, - [2531]={ + [2631]={ [1]={ [1]={ limit={ @@ -53644,7 +55659,7 @@ return { [1]="can_catch_corrupted_fish" } }, - [2532]={ + [2632]={ [1]={ [1]={ limit={ @@ -53660,7 +55675,7 @@ return { [1]="unique_fire_damage_shocks" } }, - [2533]={ + [2633]={ [1]={ [1]={ limit={ @@ -53676,7 +55691,7 @@ return { [1]="unique_cold_damage_ignites" } }, - [2534]={ + [2634]={ [1]={ [1]={ limit={ @@ -53692,7 +55707,7 @@ return { [1]="unique_lightning_damage_freezes" } }, - [2535]={ + [2635]={ [1]={ [1]={ limit={ @@ -53708,7 +55723,7 @@ return { [1]="all_damage_can_ignite" } }, - [2536]={ + [2636]={ [1]={ [1]={ limit={ @@ -53724,7 +55739,7 @@ return { [1]="all_damage_can_chill" } }, - [2537]={ + [2637]={ [1]={ [1]={ limit={ @@ -53740,7 +55755,7 @@ return { [1]="all_damage_can_freeze" } }, - [2538]={ + [2638]={ [1]={ [1]={ limit={ @@ -53756,7 +55771,7 @@ return { [1]="all_damage_can_shock" } }, - [2539]={ + [2639]={ [1]={ [1]={ limit={ @@ -53772,7 +55787,7 @@ return { [1]="base_all_damage_taken_can_chill" } }, - [2540]={ + [2640]={ [1]={ [1]={ limit={ @@ -53788,7 +55803,7 @@ return { [1]="base_cold_damage_can_poison" } }, - [2541]={ + [2641]={ [1]={ [1]={ limit={ @@ -53804,7 +55819,7 @@ return { [1]="base_fire_damage_can_poison" } }, - [2542]={ + [2642]={ [1]={ [1]={ limit={ @@ -53820,7 +55835,7 @@ return { [1]="base_lightning_damage_can_poison" } }, - [2543]={ + [2643]={ [1]={ [1]={ limit={ @@ -53836,7 +55851,7 @@ return { [1]="chaos_damage_can_chill" } }, - [2544]={ + [2644]={ [1]={ [1]={ limit={ @@ -53852,7 +55867,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [2545]={ + [2645]={ [1]={ [1]={ limit={ @@ -53868,7 +55883,7 @@ return { [1]="chaos_damage_can_shock" } }, - [2546]={ + [2646]={ [1]={ [1]={ limit={ @@ -53884,7 +55899,7 @@ return { [1]="cold_damage_can_ignite" } }, - [2547]={ + [2647]={ [1]={ [1]={ limit={ @@ -53900,7 +55915,71 @@ return { [1]="cold_damage_can_shock" } }, - [2548]={ + [2648]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance" + } + }, + stats={ + [1]="elemental_damage_also_contributes_to_flammability_ignite_chill_freeze_and_shock" + } + }, + [2649]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All Elemental Damage from Hits Contributes to Freeze Buildup" + } + }, + stats={ + [1]="elemental_damage_can_freeze" + } + }, + [2650]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All Elemental Damage from Hits Contributes to Flammability and Ignite Magnitudes" + } + }, + stats={ + [1]="elemental_damage_can_ignite" + } + }, + [2651]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Damage also Contributes to Bleeding Magnitude" + } + }, + stats={ + [1]="elemental_damage_can_inflict_bleeding" + } + }, + [2652]={ [1]={ [1]={ limit={ @@ -53916,7 +55995,7 @@ return { [1]="elemental_damage_can_shock" } }, - [2549]={ + [2653]={ [1]={ [1]={ limit={ @@ -53932,7 +56011,7 @@ return { [1]="fire_damage_can_chill" } }, - [2550]={ + [2654]={ [1]={ [1]={ limit={ @@ -53948,7 +56027,23 @@ return { [1]="fire_damage_can_freeze" } }, - [2551]={ + [2655]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire Damage also Contributes to Bleeding Magnitude" + } + }, + stats={ + [1]="fire_damage_can_inflict_bleeding" + } + }, + [2656]={ [1]={ [1]={ limit={ @@ -53964,7 +56059,7 @@ return { [1]="fire_damage_can_shock" } }, - [2552]={ + [2657]={ [1]={ [1]={ limit={ @@ -53980,7 +56075,7 @@ return { [1]="lightning_damage_can_chill" } }, - [2553]={ + [2658]={ [1]={ [1]={ limit={ @@ -53996,7 +56091,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [2554]={ + [2659]={ [1]={ [1]={ limit={ @@ -54012,7 +56107,7 @@ return { [1]="physical_damage_can_chill" } }, - [2555]={ + [2660]={ [1]={ [1]={ limit={ @@ -54028,7 +56123,23 @@ return { [1]="physical_damage_can_freeze" } }, - [2556]={ + [2661]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Physical damage from Hits Contributes to Flammability and\nIgnite Magnitudes, Freeze Buildup, and Shock Chance" + } + }, + stats={ + [1]="physical_damage_can_ignite_freeze_shock" + } + }, + [2662]={ [1]={ [1]={ limit={ @@ -54044,7 +56155,23 @@ return { [1]="physical_damage_can_shock" } }, - [2557]={ + [2663]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup" + } + }, + stats={ + [1]="physical_damage_from_hits_also_contributes_to_chill_and_freeze" + } + }, + [2664]={ [1]={ [1]={ limit={ @@ -54060,7 +56187,7 @@ return { [1]="lightning_damage_can_freeze" } }, - [2558]={ + [2665]={ [1]={ [1]={ limit={ @@ -54076,7 +56203,7 @@ return { [1]="fire_damage_cannot_ignite" } }, - [2559]={ + [2666]={ [1]={ [1]={ limit={ @@ -54092,7 +56219,7 @@ return { [1]="cold_damage_cannot_freeze" } }, - [2560]={ + [2667]={ [1]={ [1]={ limit={ @@ -54108,7 +56235,7 @@ return { [1]="cold_damage_cannot_chill" } }, - [2561]={ + [2668]={ [1]={ [1]={ limit={ @@ -54124,7 +56251,7 @@ return { [1]="chaos_damage_can_ignite_chill_and_shock" } }, - [2562]={ + [2669]={ [1]={ [1]={ limit={ @@ -54140,7 +56267,7 @@ return { [1]="chaos_damage_cannot_poison" } }, - [2563]={ + [2670]={ [1]={ [1]={ limit={ @@ -54156,7 +56283,7 @@ return { [1]="lightning_damage_cannot_shock" } }, - [2564]={ + [2671]={ [1]={ [1]={ limit={ @@ -54172,7 +56299,7 @@ return { [1]="physical_damage_cannot_poison" } }, - [2565]={ + [2672]={ [1]={ [1]={ limit={ @@ -54201,7 +56328,7 @@ return { [1]="supported_active_skill_gem_expereince_gained_+%" } }, - [2566]={ + [2673]={ [1]={ [1]={ [1]={ @@ -54234,7 +56361,7 @@ return { [1]="chill_prevention_ms_when_chilled" } }, - [2567]={ + [2674]={ [1]={ [1]={ limit={ @@ -54250,7 +56377,7 @@ return { [1]="base_immune_to_chill" } }, - [2568]={ + [2675]={ [1]={ [1]={ [1]={ @@ -54283,7 +56410,7 @@ return { [1]="freeze_prevention_ms_when_frozen" } }, - [2569]={ + [2676]={ [1]={ [1]={ [1]={ @@ -54316,7 +56443,7 @@ return { [1]="ignite_prevention_ms_when_ignited" } }, - [2570]={ + [2677]={ [1]={ [1]={ [1]={ @@ -54349,7 +56476,7 @@ return { [1]="shock_prevention_ms_when_shocked" } }, - [2571]={ + [2678]={ [1]={ [1]={ limit={ @@ -54365,7 +56492,7 @@ return { [1]="cannot_be_shocked_while_frozen" } }, - [2572]={ + [2679]={ [1]={ [1]={ limit={ @@ -54381,7 +56508,7 @@ return { [1]="grant_X_frenzy_charges_to_nearby_allies_on_death" } }, - [2573]={ + [2680]={ [1]={ [1]={ limit={ @@ -54397,7 +56524,7 @@ return { [1]="unique_gain_power_charge_on_non_crit" } }, - [2574]={ + [2681]={ [1]={ [1]={ limit={ @@ -54413,7 +56540,7 @@ return { [1]="unique_lose_all_power_charges_on_crit" } }, - [2575]={ + [2682]={ [1]={ [1]={ limit={ @@ -54429,7 +56556,7 @@ return { [1]="flask_minion_heal_%" } }, - [2576]={ + [2683]={ [1]={ [1]={ limit={ @@ -54445,7 +56572,7 @@ return { [1]="minion_block_%" } }, - [2577]={ + [2684]={ [1]={ [1]={ limit={ @@ -54461,7 +56588,7 @@ return { [1]="minion_physical_damage_reduction_rating" } }, - [2578]={ + [2685]={ [1]={ [1]={ limit={ @@ -54477,7 +56604,7 @@ return { [1]="local_display_aura_damage_+%_allies_only" } }, - [2579]={ + [2686]={ [1]={ [1]={ limit={ @@ -54506,7 +56633,7 @@ return { [1]="minion_attack_speed_+%" } }, - [2580]={ + [2687]={ [1]={ [1]={ limit={ @@ -54535,7 +56662,7 @@ return { [1]="minion_cast_speed_+%" } }, - [2581]={ + [2688]={ [1]={ [1]={ [1]={ @@ -54555,7 +56682,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [2582]={ + [2689]={ [1]={ [1]={ limit={ @@ -54571,7 +56698,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [2583]={ + [2690]={ [1]={ [1]={ limit={ @@ -54587,7 +56714,7 @@ return { [1]="minion_chaos_resistance_%" } }, - [2584]={ + [2691]={ [1]={ [1]={ [1]={ @@ -54607,7 +56734,7 @@ return { [1]="onslaught_on_vaal_skill_use_duration_ms" } }, - [2585]={ + [2692]={ [1]={ [1]={ [1]={ @@ -54627,7 +56754,7 @@ return { [1]="phase_on_vaal_skill_use_duration_ms" } }, - [2586]={ + [2693]={ [1]={ [1]={ limit={ @@ -54643,7 +56770,7 @@ return { [1]="chance_to_shock_%_while_using_flask" } }, - [2587]={ + [2694]={ [1]={ [1]={ limit={ @@ -54672,7 +56799,7 @@ return { [1]="unique_voltaxic_rift_shock_as_though_damage_+%_final" } }, - [2588]={ + [2695]={ [1]={ [1]={ limit={ @@ -54688,7 +56815,7 @@ return { [1]="spell_chance_to_shock_frozen_enemies_%" } }, - [2589]={ + [2696]={ [1]={ [1]={ limit={ @@ -54704,7 +56831,7 @@ return { [1]="stun_threshold_reduction_+%_while_using_flask" } }, - [2590]={ + [2697]={ [1]={ [1]={ limit={ @@ -54720,7 +56847,49 @@ return { [1]="physical_damage_taken_+_vs_beasts" } }, - [2591]={ + [2698]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Hits with this weapon have {0} to {1} Added Physical Damage per 1% Block Chance" + } + }, + stats={ + [1]="main_hand_attacks_with_this_weapon_minimum_added_physical_damage_per_1%_block_chance", + [2]="main_hand_attacks_with_this_weapon_maximum_added_physical_damage_per_1%_block_chance" + } + }, + [2699]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Adds {0} to {1} Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute" + } + }, + stats={ + [1]="attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute", + [2]="attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute" + } + }, + [2700]={ [1]={ [1]={ limit={ @@ -54749,7 +56918,36 @@ return { [1]="local_attacks_with_this_weapon_elemental_damage_+%" } }, - [2592]={ + [2701]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks with this Weapon have {0}% increased Physical Damage per 250 Evasion Rating" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Attacks with this Weapon have {0}% reduced Physical Damage per 250 Evasion Rating" + } + }, + stats={ + [1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion" + } + }, + [2702]={ [1]={ [1]={ limit={ @@ -54778,7 +56976,7 @@ return { [1]="damage_taken_+%_per_frenzy_charge" } }, - [2593]={ + [2703]={ [1]={ [1]={ limit={ @@ -54807,7 +57005,7 @@ return { [1]="lightning_damage_+%_per_frenzy_charge" } }, - [2594]={ + [2704]={ [1]={ [1]={ limit={ @@ -54823,7 +57021,7 @@ return { [1]="life_gained_on_enemy_death_per_frenzy_charge" } }, - [2595]={ + [2705]={ [1]={ [1]={ limit={ @@ -54839,23 +57037,23 @@ return { [1]="life_%_gained_on_kill_if_spent_life_recently" } }, - [2596]={ + [2706]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies" + text="Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" } }, stats={ [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [2597]={ + [2707]={ [1]={ [1]={ limit={ @@ -54871,7 +57069,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_random_element" } }, - [2598]={ + [2708]={ [1]={ [1]={ limit={ @@ -54896,7 +57094,7 @@ return { [1]="unique_add_power_charge_on_melee_knockback_%" } }, - [2599]={ + [2709]={ [1]={ [1]={ limit={ @@ -54921,7 +57119,7 @@ return { [1]="gain_power_charge_when_throwing_trap_%" } }, - [2600]={ + [2710]={ [1]={ [1]={ limit={ @@ -54937,7 +57135,7 @@ return { [1]="critical_strike_chance_+%_per_8_strength" } }, - [2601]={ + [2711]={ [1]={ [1]={ limit={ @@ -54966,7 +57164,7 @@ return { [1]="attack_speed_+%_while_ignited" } }, - [2602]={ + [2712]={ [1]={ [1]={ limit={ @@ -54995,7 +57193,7 @@ return { [1]="cast_speed_+%_while_ignited" } }, - [2603]={ + [2713]={ [1]={ [1]={ limit={ @@ -55024,36 +57222,7 @@ return { [1]="wand_damage_+%" } }, - [2604]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Attacks with this Weapon have {0}% increased Physical Damage per 250 Evasion Rating" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Attacks with this Weapon have {0}% reduced Physical Damage per 250 Evasion Rating" - } - }, - stats={ - [1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion" - } - }, - [2605]={ + [2714]={ [1]={ [1]={ limit={ @@ -55082,7 +57251,7 @@ return { [1]="attack_damage_+%_per_450_evasion" } }, - [2606]={ + [2715]={ [1]={ [1]={ limit={ @@ -55098,7 +57267,7 @@ return { [1]="chance_to_be_frozen_%" } }, - [2607]={ + [2716]={ [1]={ [1]={ limit={ @@ -55114,7 +57283,7 @@ return { [1]="chance_to_be_ignited_%" } }, - [2608]={ + [2717]={ [1]={ [1]={ limit={ @@ -55130,7 +57299,7 @@ return { [1]="chance_to_be_shocked_%" } }, - [2609]={ + [2718]={ [1]={ [1]={ limit={ @@ -55146,7 +57315,7 @@ return { [1]="chance_to_be_frozen_shocked_ignited_%" } }, - [2610]={ + [2719]={ [1]={ [1]={ limit={ @@ -55171,7 +57340,7 @@ return { [1]="claw_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2611]={ + [2720]={ [1]={ [1]={ limit={ @@ -55196,7 +57365,7 @@ return { [1]="bow_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2612]={ + [2721]={ [1]={ [1]={ limit={ @@ -55212,7 +57381,7 @@ return { [1]="recover_%_maximum_life_on_rampage_threshold" } }, - [2613]={ + [2722]={ [1]={ [1]={ limit={ @@ -55228,7 +57397,7 @@ return { [1]="dispel_status_ailments_on_rampage_threshold" } }, - [2614]={ + [2723]={ [1]={ [1]={ [1]={ @@ -55261,7 +57430,7 @@ return { [1]="gain_physical_damage_immunity_on_rampage_threshold_ms" } }, - [2615]={ + [2724]={ [1]={ [1]={ limit={ @@ -55277,7 +57446,7 @@ return { [1]="gain_X_vaal_souls_on_rampage_threshold" } }, - [2616]={ + [2725]={ [1]={ [1]={ limit={ @@ -55302,7 +57471,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [2617]={ + [2726]={ [1]={ [1]={ limit={ @@ -55331,7 +57500,7 @@ return { [1]="physical_damage_+%_vs_poisoned_enemies" } }, - [2618]={ + [2727]={ [1]={ [1]={ limit={ @@ -55347,7 +57516,7 @@ return { [1]="block_causes_monster_flee_%" } }, - [2619]={ + [2728]={ [1]={ [1]={ [1]={ @@ -55367,7 +57536,7 @@ return { [1]="life_regeneration_rate_per_minute_per_level" } }, - [2620]={ + [2729]={ [1]={ [1]={ limit={ @@ -55396,7 +57565,7 @@ return { [1]="critical_strike_chance_+%_per_level" } }, - [2621]={ + [2730]={ [1]={ [1]={ limit={ @@ -55425,7 +57594,7 @@ return { [1]="attack_damage_+%_per_level" } }, - [2622]={ + [2731]={ [1]={ [1]={ limit={ @@ -55454,7 +57623,7 @@ return { [1]="spell_damage_+%_per_level" } }, - [2623]={ + [2732]={ [1]={ [1]={ limit={ @@ -55479,7 +57648,7 @@ return { [1]="recharge_flasks_on_crit" } }, - [2624]={ + [2733]={ [1]={ [1]={ limit={ @@ -55508,7 +57677,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [2625]={ + [2734]={ [1]={ [1]={ limit={ @@ -55524,7 +57693,7 @@ return { [1]="ground_smoke_on_rampage_threshold_ms" } }, - [2626]={ + [2735]={ [1]={ [1]={ [1]={ @@ -55557,7 +57726,7 @@ return { [1]="phasing_on_rampage_threshold_ms" } }, - [2627]={ + [2736]={ [1]={ [1]={ limit={ @@ -55586,7 +57755,7 @@ return { [1]="movement_velocity_+%_on_full_energy_shield" } }, - [2628]={ + [2737]={ [1]={ [1]={ limit={ @@ -55629,7 +57798,7 @@ return { [3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack" } }, - [2629]={ + [2738]={ [1]={ [1]={ limit={ @@ -55645,7 +57814,7 @@ return { [1]="life_gained_on_enemy_death_per_level" } }, - [2630]={ + [2739]={ [1]={ [1]={ limit={ @@ -55661,7 +57830,7 @@ return { [1]="mana_gained_on_enemy_death_per_level" } }, - [2631]={ + [2740]={ [1]={ [1]={ limit={ @@ -55677,7 +57846,7 @@ return { [1]="energy_shield_gained_on_enemy_death_per_level" } }, - [2632]={ + [2741]={ [1]={ [1]={ limit={ @@ -55693,7 +57862,7 @@ return { [1]="cannot_be_blinded" } }, - [2633]={ + [2742]={ [1]={ [1]={ limit={ @@ -55722,7 +57891,7 @@ return { [1]="elemental_damage_+%_per_level" } }, - [2634]={ + [2743]={ [1]={ [1]={ limit={ @@ -55751,7 +57920,7 @@ return { [1]="chaos_damage_+%_per_level" } }, - [2635]={ + [2744]={ [1]={ [1]={ limit={ @@ -55767,7 +57936,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [2636]={ + [2745]={ [1]={ [1]={ limit={ @@ -55783,7 +57952,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [2637]={ + [2746]={ [1]={ [1]={ limit={ @@ -55812,7 +57981,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [2638]={ + [2747]={ [1]={ [1]={ limit={ @@ -55841,7 +58010,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [2639]={ + [2748]={ [1]={ [1]={ limit={ @@ -55870,7 +58039,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [2640]={ + [2749]={ [1]={ [1]={ limit={ @@ -55886,7 +58055,7 @@ return { [1]="display_map_has_oxygen" } }, - [2641]={ + [2750]={ [1]={ [1]={ [1]={ @@ -55906,7 +58075,7 @@ return { [1]="unique_nearby_allies_recover_permyriad_max_life_on_death" } }, - [2642]={ + [2751]={ [1]={ [1]={ limit={ @@ -55931,7 +58100,7 @@ return { [1]="base_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2643]={ + [2752]={ [1]={ [1]={ limit={ @@ -55999,7 +58168,7 @@ return { [2]="onslaught_time_granted_on_kill_ms" } }, - [2644]={ + [2753]={ [1]={ [1]={ [1]={ @@ -56019,7 +58188,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [2645]={ + [2754]={ [1]={ [1]={ limit={ @@ -56035,7 +58204,7 @@ return { [1]="penetrate_elemental_resistance_per_frenzy_charge_%" } }, - [2646]={ + [2755]={ [1]={ [1]={ limit={ @@ -56064,7 +58233,7 @@ return { [1]="damage_vs_enemies_on_full_life_per_power_charge_+%" } }, - [2647]={ + [2756]={ [1]={ [1]={ limit={ @@ -56093,7 +58262,7 @@ return { [1]="damage_vs_enemies_on_low_life_per_power_charge_+%" } }, - [2648]={ + [2757]={ [1]={ [1]={ limit={ @@ -56109,7 +58278,7 @@ return { [1]="local_display_nearby_enemies_all_resistances_%" } }, - [2649]={ + [2758]={ [1]={ [1]={ [1]={ @@ -56129,7 +58298,7 @@ return { [1]="shapers_seed_unique_aura_life_regeneration_rate_per_minute_%" } }, - [2650]={ + [2759]={ [1]={ [1]={ limit={ @@ -56145,7 +58314,7 @@ return { [1]="dominance_additional_block_%_on_nearby_allies_per_100_strength" } }, - [2651]={ + [2760]={ [1]={ [1]={ limit={ @@ -56154,7 +58323,7 @@ return { [2]="#" } }, - text="Nearby Allies have {0}% increased Defences per 100 Strength you have" + text="Nearby Allies have {0}% increased Armour, Evasion and Energy Shield per 100 Strength you have" }, [2]={ [1]={ @@ -56167,14 +58336,14 @@ return { [2]=-1 } }, - text="Nearby Allies have {0}% reduced Defences per 100 Strength you have" + text="Nearby Allies have {0}% reduced Armour, Evasion and Energy Shield per 100 Strength you have" } }, stats={ - [1]="dominance_defences_+%_on_nearby_allies_per_100_strength" + [1]="dominance_armour_evasion_energy_shield_+%_on_nearby_allies_per_100_strength" } }, - [2652]={ + [2761]={ [1]={ [1]={ limit={ @@ -56190,7 +58359,7 @@ return { [1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity" } }, - [2653]={ + [2762]={ [1]={ [1]={ limit={ @@ -56219,7 +58388,7 @@ return { [1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence" } }, - [2654]={ + [2763]={ [1]={ [1]={ limit={ @@ -56235,7 +58404,7 @@ return { [1]="shapers_seed_unique_aura_mana_regeneration_rate_+%" } }, - [2655]={ + [2764]={ [1]={ [1]={ limit={ @@ -56256,7 +58425,7 @@ return { [2]="local_grants_aura_maximum_added_fire_damage_per_red_socket" } }, - [2656]={ + [2765]={ [1]={ [1]={ limit={ @@ -56277,7 +58446,7 @@ return { [2]="local_grants_aura_maximum_added_cold_damage_per_green_socket" } }, - [2657]={ + [2766]={ [1]={ [1]={ limit={ @@ -56298,28 +58467,7 @@ return { [2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket" } }, - [2658]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - }, - [2]={ - [1]="#", - [2]="#" - } - }, - text="You and Nearby Allies have {0} to {1} added Chaos Damage per White Socket" - } - }, - stats={ - [1]="local_grants_aura_minimum_added_chaos_damage_per_white_socket", - [2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket" - } - }, - [2659]={ + [2767]={ [1]={ [1]={ [1]={ @@ -56339,7 +58487,7 @@ return { [1]="life_regen_per_minute_per_endurance_charge" } }, - [2660]={ + [2768]={ [1]={ [1]={ limit={ @@ -56355,7 +58503,7 @@ return { [1]="cannot_knockback" } }, - [2661]={ + [2769]={ [1]={ [1]={ limit={ @@ -56371,7 +58519,7 @@ return { [1]="attack_damage_that_stuns_also_chills" } }, - [2662]={ + [2770]={ [1]={ [1]={ limit={ @@ -56387,7 +58535,7 @@ return { [1]="gain_x_life_when_endurance_charge_expires_or_consumed" } }, - [2663]={ + [2771]={ [1]={ [1]={ limit={ @@ -56416,7 +58564,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [2664]={ + [2772]={ [1]={ [1]={ limit={ @@ -56432,7 +58580,7 @@ return { [1]="cannot_gain_power_charges" } }, - [2665]={ + [2773]={ [1]={ [1]={ limit={ @@ -56448,7 +58596,7 @@ return { [1]="no_maximum_power_charges" } }, - [2666]={ + [2774]={ [1]={ [1]={ limit={ @@ -56464,7 +58612,7 @@ return { [1]="enemy_knockback_direction_is_reversed" } }, - [2667]={ + [2775]={ [1]={ [1]={ limit={ @@ -56480,7 +58628,7 @@ return { [1]="immune_to_ally_buff_auras" } }, - [2668]={ + [2776]={ [1]={ [1]={ limit={ @@ -56496,7 +58644,7 @@ return { [1]="allow_2_active_banners" } }, - [2669]={ + [2777]={ [1]={ [1]={ limit={ @@ -56512,7 +58660,7 @@ return { [1]="buff_auras_dont_affect_allies" } }, - [2670]={ + [2778]={ [1]={ [1]={ limit={ @@ -56528,7 +58676,7 @@ return { [1]="hits_can_only_kill_frozen_enemies" } }, - [2671]={ + [2779]={ [1]={ [1]={ limit={ @@ -56544,7 +58692,7 @@ return { [1]="maximum_life_taken_as_physical_damage_on_minion_death_%" } }, - [2672]={ + [2780]={ [1]={ [1]={ limit={ @@ -56560,7 +58708,7 @@ return { [1]="maximum_es_taken_as_physical_damage_on_minion_death_%" } }, - [2673]={ + [2781]={ [1]={ [1]={ limit={ @@ -56589,7 +58737,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [2674]={ + [2782]={ [1]={ [1]={ [1]={ @@ -56609,7 +58757,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_while_shocked" } }, - [2675]={ + [2783]={ [1]={ [1]={ limit={ @@ -56638,7 +58786,7 @@ return { [1]="charge_duration_+%" } }, - [2676]={ + [2784]={ [1]={ [1]={ limit={ @@ -56654,7 +58802,7 @@ return { [1]="physical_damage_taken_on_minion_death" } }, - [2677]={ + [2785]={ [1]={ [1]={ [1]={ @@ -56674,7 +58822,7 @@ return { [1]="onslaught_buff_duration_on_culling_strike_ms" } }, - [2678]={ + [2786]={ [1]={ [1]={ limit={ @@ -56703,7 +58851,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [2679]={ + [2787]={ [1]={ [1]={ limit={ @@ -56719,7 +58867,7 @@ return { [1]="base_avoid_chill_%_while_have_onslaught" } }, - [2680]={ + [2788]={ [1]={ [1]={ limit={ @@ -56744,7 +58892,7 @@ return { [1]="mine_extra_uses" } }, - [2681]={ + [2789]={ [1]={ [1]={ limit={ @@ -56760,7 +58908,7 @@ return { [1]="base_fire_damage_heals" } }, - [2682]={ + [2790]={ [1]={ [1]={ limit={ @@ -56776,7 +58924,7 @@ return { [1]="base_cold_damage_heals" } }, - [2683]={ + [2791]={ [1]={ [1]={ limit={ @@ -56792,7 +58940,7 @@ return { [1]="base_lightning_damage_heals" } }, - [2684]={ + [2792]={ [1]={ [1]={ limit={ @@ -56808,7 +58956,7 @@ return { [1]="base_elemental_damage_heals" } }, - [2685]={ + [2793]={ [1]={ [1]={ limit={ @@ -56824,7 +58972,7 @@ return { [1]="avoid_freeze_chill_ignite_%_while_have_onslaught" } }, - [2686]={ + [2794]={ [1]={ [1]={ limit={ @@ -56840,7 +58988,7 @@ return { [1]="ignites_reflected_to_self" } }, - [2687]={ + [2795]={ [1]={ [1]={ [1]={ @@ -56873,7 +59021,7 @@ return { [1]="gain_onslaught_when_ignited_ms" } }, - [2688]={ + [2796]={ [1]={ [1]={ limit={ @@ -56898,7 +59046,7 @@ return { [1]="blind_nearby_enemies_when_ignited_%" } }, - [2689]={ + [2797]={ [1]={ [1]={ limit={ @@ -56914,7 +59062,7 @@ return { [1]="map_non_unique_equipment_drops_as_sell_price" } }, - [2690]={ + [2798]={ [1]={ [1]={ limit={ @@ -56930,7 +59078,7 @@ return { [1]="map_items_drop_corrupted" } }, - [2691]={ + [2799]={ [1]={ [1]={ limit={ @@ -56946,7 +59094,7 @@ return { [1]="map_items_drop_corrupted_%" } }, - [2692]={ + [2800]={ [1]={ [1]={ limit={ @@ -56962,7 +59110,7 @@ return { [1]="map_weapons_drop_animated" } }, - [2693]={ + [2801]={ [1]={ [1]={ limit={ @@ -57009,7 +59157,7 @@ return { [2]="allies_in_presence_have_unholy_might_while_you_not_on_low_mana" } }, - [2694]={ + [2802]={ [1]={ [1]={ [1]={ @@ -57042,7 +59190,7 @@ return { [1]="gain_unholy_might_on_block_ms" } }, - [2695]={ + [2803]={ [1]={ [1]={ limit={ @@ -57058,7 +59206,7 @@ return { [1]="local_jewel_nearby_passives_str_to_dex" } }, - [2696]={ + [2804]={ [1]={ [1]={ limit={ @@ -57074,7 +59222,7 @@ return { [1]="local_jewel_nearby_passives_str_to_int" } }, - [2697]={ + [2805]={ [1]={ [1]={ limit={ @@ -57090,7 +59238,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_str" } }, - [2698]={ + [2806]={ [1]={ [1]={ limit={ @@ -57106,7 +59254,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_int" } }, - [2699]={ + [2807]={ [1]={ [1]={ limit={ @@ -57122,7 +59270,7 @@ return { [1]="local_jewel_nearby_passives_int_to_str" } }, - [2700]={ + [2808]={ [1]={ [1]={ limit={ @@ -57138,7 +59286,7 @@ return { [1]="local_jewel_nearby_passives_int_to_dex" } }, - [2701]={ + [2809]={ [1]={ [1]={ limit={ @@ -57167,7 +59315,7 @@ return { [1]="skill_area_of_effect_when_unarmed_+%" } }, - [2702]={ + [2810]={ [1]={ [1]={ limit={ @@ -57183,7 +59331,7 @@ return { [1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed" } }, - [2703]={ + [2811]={ [1]={ [1]={ limit={ @@ -57212,7 +59360,7 @@ return { [1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius" } }, - [2704]={ + [2812]={ [1]={ [1]={ limit={ @@ -57228,7 +59376,7 @@ return { [1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill" } }, - [2705]={ + [2813]={ [1]={ [1]={ limit={ @@ -57244,7 +59392,7 @@ return { [1]="gain_X_random_rare_monster_mods_on_kill" } }, - [2706]={ + [2814]={ [1]={ [1]={ limit={ @@ -57273,7 +59421,7 @@ return { [1]="recover_%_of_maximum_life_on_block" } }, - [2707]={ + [2815]={ [1]={ [1]={ limit={ @@ -57289,7 +59437,7 @@ return { [1]="minion_recover_%_of_maximum_life_on_block" } }, - [2708]={ + [2816]={ [1]={ [1]={ limit={ @@ -57305,7 +59453,7 @@ return { [1]="totems_cannot_be_stunned" } }, - [2709]={ + [2817]={ [1]={ [1]={ limit={ @@ -57334,7 +59482,7 @@ return { [1]="damage_+%_while_leeching" } }, - [2710]={ + [2818]={ [1]={ [1]={ limit={ @@ -57350,7 +59498,7 @@ return { [1]="display_bow_range_+" } }, - [2711]={ + [2819]={ [1]={ [1]={ limit={ @@ -57366,7 +59514,7 @@ return { [1]="local_unique_jewel_melee_applies_to_bow" } }, - [2712]={ + [2820]={ [1]={ [1]={ limit={ @@ -57382,7 +59530,7 @@ return { [1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius" } }, - [2713]={ + [2821]={ [1]={ [1]={ limit={ @@ -57398,7 +59546,7 @@ return { [1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius" } }, - [2714]={ + [2822]={ [1]={ [1]={ limit={ @@ -57414,7 +59562,7 @@ return { [1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius" } }, - [2715]={ + [2823]={ [1]={ [1]={ limit={ @@ -57443,7 +59591,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius" } }, - [2716]={ + [2824]={ [1]={ [1]={ limit={ @@ -57459,7 +59607,7 @@ return { [1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead" } }, - [2717]={ + [2825]={ [1]={ [1]={ limit={ @@ -57475,7 +59623,7 @@ return { [1]="passive_applies_to_minions" } }, - [2718]={ + [2826]={ [1]={ [1]={ limit={ @@ -57491,7 +59639,7 @@ return { [1]="life_gained_on_hit_per_enemy_status_ailment" } }, - [2719]={ + [2827]={ [1]={ [1]={ limit={ @@ -57520,7 +59668,7 @@ return { [1]="life_gained_on_spell_hit_per_enemy_status_ailment" } }, - [2720]={ + [2828]={ [1]={ [1]={ limit={ @@ -57549,7 +59697,7 @@ return { [1]="life_regeneration_rate_+%_while_es_full" } }, - [2721]={ + [2829]={ [1]={ [1]={ limit={ @@ -57565,23 +59713,27 @@ return { [1]="local_unique_jewel_with_x_int_in_radius_+1_curse" } }, - [2722]={ + [2830]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range while Unarmed" + text="{0:+d} metres to Melee Strike Range while Unarmed" } }, stats={ [1]="melee_range_+_while_unarmed" } }, - [2723]={ + [2831]={ [1]={ [1]={ limit={ @@ -57610,7 +59762,7 @@ return { [1]="damage_+%_per_equipped_magic_item" } }, - [2724]={ + [2832]={ [1]={ [1]={ limit={ @@ -57639,7 +59791,7 @@ return { [1]="spell_damage_+%_while_es_full" } }, - [2725]={ + [2833]={ [1]={ [1]={ limit={ @@ -57664,7 +59816,7 @@ return { [1]="totem_number_of_additional_projectiles" } }, - [2726]={ + [2834]={ [1]={ [1]={ limit={ @@ -57693,7 +59845,7 @@ return { [1]="spell_damage_+%_while_no_mana_reserved" } }, - [2727]={ + [2835]={ [1]={ [1]={ limit={ @@ -57722,7 +59874,7 @@ return { [1]="spell_damage_+%_while_not_low_mana" } }, - [2728]={ + [2836]={ [1]={ [1]={ limit={ @@ -57751,7 +59903,7 @@ return { [1]="mana_cost_+%_while_not_low_mana" } }, - [2729]={ + [2837]={ [1]={ [1]={ limit={ @@ -57780,7 +59932,7 @@ return { [1]="all_attributes_+%_per_assigned_keystone" } }, - [2730]={ + [2838]={ [1]={ [1]={ limit={ @@ -57805,7 +59957,7 @@ return { [1]="number_of_additional_clones" } }, - [2731]={ + [2839]={ [1]={ [1]={ limit={ @@ -57834,7 +59986,7 @@ return { [1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge" } }, - [2732]={ + [2840]={ [1]={ [1]={ [1]={ @@ -57854,7 +60006,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [2733]={ + [2841]={ [1]={ [1]={ limit={ @@ -57870,7 +60022,7 @@ return { [1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius" } }, - [2734]={ + [2842]={ [1]={ [1]={ limit={ @@ -57886,7 +60038,7 @@ return { [1]="local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%" } }, - [2735]={ + [2843]={ [1]={ [1]={ limit={ @@ -57902,7 +60054,7 @@ return { [1]="local_unique_jewel_with_70_str_life_recovery_speed_+%" } }, - [2736]={ + [2844]={ [1]={ [1]={ limit={ @@ -57918,7 +60070,7 @@ return { [1]="cannot_be_cursed_with_silence" } }, - [2737]={ + [2845]={ [1]={ [1]={ limit={ @@ -57947,7 +60099,7 @@ return { [1]="vaal_skill_damage_+%" } }, - [2738]={ + [2846]={ [1]={ [1]={ limit={ @@ -57976,7 +60128,7 @@ return { [1]="damage_+%_while_dead" } }, - [2739]={ + [2847]={ [1]={ [1]={ limit={ @@ -58005,7 +60157,7 @@ return { [1]="maximum_life_+%_per_equipped_corrupted_item" } }, - [2740]={ + [2848]={ [1]={ [1]={ limit={ @@ -58034,7 +60186,7 @@ return { [1]="maximum_es_+%_per_equipped_corrupted_item" } }, - [2741]={ + [2849]={ [1]={ [1]={ limit={ @@ -58063,7 +60215,7 @@ return { [1]="chaos_damage_+%_per_equipped_corrupted_item" } }, - [2742]={ + [2850]={ [1]={ [1]={ limit={ @@ -58092,7 +60244,7 @@ return { [1]="life_leech_rate_+%_per_equipped_corrupted_item" } }, - [2743]={ + [2851]={ [1]={ [1]={ [1]={ @@ -58112,7 +60264,7 @@ return { [1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item" } }, - [2744]={ + [2852]={ [1]={ [1]={ limit={ @@ -58141,7 +60293,7 @@ return { [1]="mana_leech_rate_+%_per_equipped_corrupted_item" } }, - [2745]={ + [2853]={ [1]={ [1]={ limit={ @@ -58157,7 +60309,7 @@ return { [1]="all_resistances_%_per_equipped_corrupted_item" } }, - [2746]={ + [2854]={ [1]={ [1]={ limit={ @@ -58173,7 +60325,7 @@ return { [1]="chance_to_gain_vaal_soul_on_kill_%" } }, - [2747]={ + [2855]={ [1]={ [1]={ limit={ @@ -58202,7 +60354,7 @@ return { [1]="vaal_skill_effect_duration_+%" } }, - [2748]={ + [2856]={ [1]={ [1]={ limit={ @@ -58231,7 +60383,7 @@ return { [1]="vaal_skill_soul_gain_preventation_duration_+%" } }, - [2749]={ + [2857]={ [1]={ [1]={ limit={ @@ -58260,7 +60412,7 @@ return { [1]="vaal_skill_critical_strike_chance_+%" } }, - [2750]={ + [2858]={ [1]={ [1]={ limit={ @@ -58276,7 +60428,7 @@ return { [1]="vaal_skill_critical_strike_multiplier_+" } }, - [2751]={ + [2859]={ [1]={ [1]={ limit={ @@ -58292,7 +60444,7 @@ return { [1]="chance_to_gain_vaal_soul_on_enemy_shatter_%" } }, - [2752]={ + [2860]={ [1]={ [1]={ limit={ @@ -58325,7 +60477,7 @@ return { [1]="mana_cost_+%_on_totemified_aura_skills" } }, - [2753]={ + [2861]={ [1]={ [1]={ limit={ @@ -58354,7 +60506,7 @@ return { [1]="corrupted_gem_experience_gain_+%" } }, - [2754]={ + [2862]={ [1]={ [1]={ [1]={ @@ -58374,7 +60526,7 @@ return { [1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms" } }, - [2755]={ + [2863]={ [1]={ [1]={ limit={ @@ -58390,7 +60542,7 @@ return { [1]="spend_energy_shield_for_costs_before_mana" } }, - [2756]={ + [2864]={ [1]={ [1]={ limit={ @@ -58406,7 +60558,7 @@ return { [1]="energy_shield_protects_mana" } }, - [2757]={ + [2865]={ [1]={ [1]={ limit={ @@ -58435,7 +60587,7 @@ return { [1]="enemy_extra_damage_rolls_while_affected_by_vulnerability" } }, - [2758]={ + [2866]={ [1]={ [1]={ limit={ @@ -58451,7 +60603,7 @@ return { [1]="cannot_have_current_energy_shield" } }, - [2759]={ + [2867]={ [1]={ [1]={ limit={ @@ -58467,7 +60619,7 @@ return { [1]="base_no_energy_shield_recovery" } }, - [2760]={ + [2868]={ [1]={ [1]={ limit={ @@ -58483,7 +60635,7 @@ return { [1]="you_count_as_full_life_while_affected_by_vulnerability" } }, - [2761]={ + [2869]={ [1]={ [1]={ limit={ @@ -58499,7 +60651,7 @@ return { [1]="you_count_as_low_life_while_affected_by_vulnerability" } }, - [2762]={ + [2870]={ [1]={ [1]={ limit={ @@ -58524,7 +60676,7 @@ return { [1]="chance_to_curse_self_with_punishment_on_kill_%" } }, - [2763]={ + [2871]={ [1]={ [1]={ limit={ @@ -58540,7 +60692,7 @@ return { [1]="self_cursed_with_level_x_vulnerability" } }, - [2764]={ + [2872]={ [1]={ [1]={ limit={ @@ -58556,7 +60708,7 @@ return { [1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius" } }, - [2765]={ + [2873]={ [1]={ [1]={ limit={ @@ -58572,7 +60724,7 @@ return { [1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius" } }, - [2766]={ + [2874]={ [1]={ [1]={ limit={ @@ -58588,7 +60740,7 @@ return { [1]="local_unique_jewel_damage_increases_applies_to_fire_damage" } }, - [2767]={ + [2875]={ [1]={ [1]={ limit={ @@ -58604,7 +60756,7 @@ return { [1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage" } }, - [2768]={ + [2876]={ [1]={ [1]={ limit={ @@ -58620,7 +60772,7 @@ return { [1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage" } }, - [2769]={ + [2877]={ [1]={ [1]={ limit={ @@ -58636,7 +60788,7 @@ return { [1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled" } }, - [2770]={ + [2878]={ [1]={ [1]={ limit={ @@ -58652,7 +60804,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_energy_shield" } }, - [2771]={ + [2879]={ [1]={ [1]={ limit={ @@ -58681,7 +60833,7 @@ return { [1]="base_enemy_critical_strike_chance_+%_against_self" } }, - [2772]={ + [2880]={ [1]={ [1]={ [1]={ @@ -58701,7 +60853,7 @@ return { [1]="enemy_additional_critical_strike_chance_permyriad_against_self" } }, - [2773]={ + [2881]={ [1]={ [1]={ [1]={ @@ -58738,7 +60890,7 @@ return { [1]="enemy_critical_strike_chance_+%_against_self_20_times_value" } }, - [2774]={ + [2882]={ [1]={ [1]={ limit={ @@ -58754,7 +60906,7 @@ return { [1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex" } }, - [2775]={ + [2883]={ [1]={ [1]={ limit={ @@ -58770,7 +60922,7 @@ return { [1]="local_unique_jewel_additional_life_per_X_int_in_radius" } }, - [2776]={ + [2884]={ [1]={ [1]={ limit={ @@ -58786,7 +60938,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius" } }, - [2777]={ + [2885]={ [1]={ [1]={ limit={ @@ -58802,7 +60954,7 @@ return { [1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius" } }, - [2778]={ + [2886]={ [1]={ [1]={ limit={ @@ -58818,7 +60970,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_mana_doubled" } }, - [2779]={ + [2887]={ [1]={ [1]={ limit={ @@ -58834,7 +60986,7 @@ return { [1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius" } }, - [2780]={ + [2888]={ [1]={ [1]={ limit={ @@ -58863,7 +61015,7 @@ return { [1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius" } }, - [2781]={ + [2889]={ [1]={ [1]={ [1]={ @@ -58896,7 +61048,7 @@ return { [1]="chill_enemy_when_hit_duration_ms" } }, - [2782]={ + [2890]={ [1]={ [1]={ limit={ @@ -58925,7 +61077,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [2783]={ + [2891]={ [1]={ [1]={ limit={ @@ -58954,7 +61106,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [2784]={ + [2892]={ [1]={ [1]={ limit={ @@ -58983,7 +61135,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [2785]={ + [2893]={ [1]={ [1]={ [1]={ @@ -59008,7 +61160,7 @@ return { [2]="local_unique_regen_es_from_removed_life_duration_ms" } }, - [2786]={ + [2894]={ [1]={ [1]={ limit={ @@ -59024,7 +61176,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius" } }, - [2787]={ + [2895]={ [1]={ [1]={ limit={ @@ -59040,7 +61192,7 @@ return { [1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius" } }, - [2788]={ + [2896]={ [1]={ [1]={ limit={ @@ -59056,7 +61208,7 @@ return { [1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius" } }, - [2789]={ + [2897]={ [1]={ [1]={ limit={ @@ -59072,7 +61224,7 @@ return { [1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius" } }, - [2790]={ + [2898]={ [1]={ [1]={ limit={ @@ -59088,7 +61240,7 @@ return { [1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius" } }, - [2791]={ + [2899]={ [1]={ [1]={ limit={ @@ -59104,7 +61256,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius" } }, - [2792]={ + [2900]={ [1]={ [1]={ limit={ @@ -59120,7 +61272,7 @@ return { [1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius" } }, - [2793]={ + [2901]={ [1]={ [1]={ [1]={ @@ -59140,7 +61292,7 @@ return { [1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius" } }, - [2794]={ + [2902]={ [1]={ [1]={ limit={ @@ -59169,7 +61321,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius" } }, - [2795]={ + [2903]={ [1]={ [1]={ limit={ @@ -59185,7 +61337,7 @@ return { [1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius" } }, - [2796]={ + [2904]={ [1]={ [1]={ limit={ @@ -59201,7 +61353,7 @@ return { [1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius" } }, - [2797]={ + [2905]={ [1]={ [1]={ limit={ @@ -59217,7 +61369,7 @@ return { [1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius" } }, - [2798]={ + [2906]={ [1]={ [1]={ limit={ @@ -59233,7 +61385,7 @@ return { [1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius" } }, - [2799]={ + [2907]={ [1]={ [1]={ limit={ @@ -59249,7 +61401,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius" } }, - [2800]={ + [2908]={ [1]={ [1]={ limit={ @@ -59265,7 +61417,7 @@ return { [1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius" } }, - [2801]={ + [2909]={ [1]={ [1]={ limit={ @@ -59281,7 +61433,7 @@ return { [1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius" } }, - [2802]={ + [2910]={ [1]={ [1]={ limit={ @@ -59306,7 +61458,7 @@ return { [1]="split_arrow_number_of_additional_arrows" } }, - [2803]={ + [2911]={ [1]={ [1]={ limit={ @@ -59322,7 +61474,7 @@ return { [1]="animate_weapon_can_animate_bows" } }, - [2804]={ + [2912]={ [1]={ [1]={ limit={ @@ -59338,7 +61490,7 @@ return { [1]="animate_weapon_can_animate_wands" } }, - [2805]={ + [2913]={ [1]={ [1]={ [1]={ @@ -59358,7 +61510,7 @@ return { [1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute" } }, - [2806]={ + [2914]={ [1]={ [1]={ limit={ @@ -59374,7 +61526,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_power_charge" } }, - [2807]={ + [2915]={ [1]={ [1]={ limit={ @@ -59407,7 +61559,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [2808]={ + [2916]={ [1]={ [1]={ [1]={ @@ -59427,7 +61579,7 @@ return { [1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit" } }, - [2809]={ + [2917]={ [1]={ [1]={ limit={ @@ -59456,7 +61608,7 @@ return { [1]="ball_lightning_damage_+%" } }, - [2810]={ + [2918]={ [1]={ [1]={ limit={ @@ -59485,7 +61637,7 @@ return { [1]="base_poison_duration_+%" } }, - [2811]={ + [2919]={ [1]={ [1]={ limit={ @@ -59518,7 +61670,7 @@ return { [1]="unique_volkuurs_clutch_poison_duration_+%_final" } }, - [2812]={ + [2920]={ [1]={ [1]={ limit={ @@ -59534,7 +61686,7 @@ return { [1]="global_poison_on_hit" } }, - [2813]={ + [2921]={ [1]={ [1]={ limit={ @@ -59559,7 +61711,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [2814]={ + [2922]={ [1]={ [1]={ limit={ @@ -59584,128 +61736,48 @@ return { [1]="minions_chance_to_poison_on_hit_%" } }, - [2815]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% chance to Poison on Hit with Attacks" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Always Poison on Hit with Attacks" - } - }, - stats={ - [1]="chance_to_poison_on_hit_with_attacks_%" - } - }, - [2816]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Fire Damage from Hits taken as Cold Damage" - } - }, - stats={ - [1]="fire_damage_taken_%_as_cold" - } - }, - [2817]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Fire Damage from Hits taken as Lightning Damage" - } - }, - stats={ - [1]="fire_damage_taken_%_as_lightning" - } - }, - [2818]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Cold Damage from Hits taken as Fire Damage" - } - }, - stats={ - [1]="cold_damage_taken_%_as_fire" - } - }, - [2819]={ + [2923]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% of Cold Damage from Hits taken as Lightning Damage" + text="Minions have {0}% chance to inflict Gruelling Madness on Hit" } }, stats={ - [1]="cold_damage_taken_%_as_lightning" + [1]="minion_chance_to_apply_gruelling_madness_on_hit_%" } }, - [2820]={ + [2924]={ [1]={ [1]={ limit={ [1]={ [1]=1, - [2]="#" + [2]=99 } }, - text="{0}% of Lightning Damage from Hits taken as Fire Damage" - } - }, - stats={ - [1]="lightning_damage_taken_%_as_fire" - } - }, - [2821]={ - [1]={ - [1]={ + text="{0}% chance to Poison on Hit with Attacks" + }, + [2]={ limit={ [1]={ - [1]=1, + [1]=100, [2]="#" } }, - text="{0}% of Lightning Damage from Hits taken as Cold Damage" + text="Always Poison on Hit with Attacks" } }, stats={ - [1]="lightning_damage_taken_%_as_cold" + [1]="chance_to_poison_on_hit_with_attacks_%" } }, - [2822]={ + [2925]={ [1]={ [1]={ limit={ @@ -59734,7 +61806,7 @@ return { [1]="flask_charges_gained_+%_during_flask_effect" } }, - [2823]={ + [2926]={ [1]={ [1]={ limit={ @@ -59763,7 +61835,7 @@ return { [1]="mana_regeneration_rate_+%_during_flask_effect" } }, - [2824]={ + [2927]={ [1]={ [1]={ limit={ @@ -59792,7 +61864,7 @@ return { [1]="movement_speed_+%_during_flask_effect" } }, - [2825]={ + [2928]={ [1]={ [1]={ limit={ @@ -59808,7 +61880,7 @@ return { [1]="critical_strike_multiplier_+_vs_bleeding_enemies" } }, - [2826]={ + [2929]={ [1]={ [1]={ limit={ @@ -59824,7 +61896,7 @@ return { [1]="critical_strike_multiplier_+_vs_burning_enemies" } }, - [2827]={ + [2930]={ [1]={ [1]={ limit={ @@ -59840,7 +61912,7 @@ return { [1]="critical_strike_multiplier_+_per_1%_block_chance" } }, - [2828]={ + [2931]={ [1]={ [1]={ limit={ @@ -59869,7 +61941,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [2829]={ + [2932]={ [1]={ [1]={ limit={ @@ -59885,7 +61957,7 @@ return { [1]="minion_no_extra_bleeding_damage_while_moving" } }, - [2830]={ + [2933]={ [1]={ [1]={ limit={ @@ -59901,7 +61973,7 @@ return { [1]="no_extra_bleeding_damage_while_moving" } }, - [2831]={ + [2934]={ [1]={ [1]={ limit={ @@ -59917,7 +61989,7 @@ return { [1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack" } }, - [2832]={ + [2935]={ [1]={ [1]={ limit={ @@ -59933,7 +62005,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base" } }, - [2833]={ + [2936]={ [1]={ [1]={ limit={ @@ -59949,7 +62021,7 @@ return { [1]="movement_speed_cannot_be_reduced_below_base" } }, - [2834]={ + [2937]={ [1]={ [1]={ limit={ @@ -59978,7 +62050,7 @@ return { [1]="damage_+%_while_fortified" } }, - [2835]={ + [2938]={ [1]={ [1]={ [1]={ @@ -59998,7 +62070,7 @@ return { [1]="life_regeneration_per_minute_%_while_fortified" } }, - [2836]={ + [2939]={ [1]={ [1]={ limit={ @@ -60027,7 +62099,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [2837]={ + [2940]={ [1]={ [1]={ limit={ @@ -60043,7 +62115,7 @@ return { [1]="restore_life_and_mana_on_warcry_%" } }, - [2838]={ + [2941]={ [1]={ [1]={ limit={ @@ -60059,7 +62131,7 @@ return { [1]="restore_life_on_warcry_%" } }, - [2839]={ + [2942]={ [1]={ [1]={ limit={ @@ -60088,7 +62160,7 @@ return { [1]="warcry_duration_+%" } }, - [2840]={ + [2943]={ [1]={ [1]={ limit={ @@ -60117,7 +62189,7 @@ return { [1]="attack_speed_+%_when_hit" } }, - [2841]={ + [2944]={ [1]={ [1]={ limit={ @@ -60146,7 +62218,7 @@ return { [1]="damage_+%_when_not_on_low_life" } }, - [2842]={ + [2945]={ [1]={ [1]={ limit={ @@ -60175,7 +62247,7 @@ return { [1]="damage_+%_while_totem_active" } }, - [2843]={ + [2946]={ [1]={ [1]={ limit={ @@ -60191,7 +62263,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_on_kill" } }, - [2844]={ + [2947]={ [1]={ [1]={ limit={ @@ -60220,7 +62292,7 @@ return { [1]="attack_and_cast_speed_+%_on_placing_totem" } }, - [2845]={ + [2948]={ [1]={ [1]={ limit={ @@ -60249,7 +62321,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies" } }, - [2846]={ + [2949]={ [1]={ [1]={ limit={ @@ -60278,7 +62350,7 @@ return { [1]="attack_speed_+%_while_leeching" } }, - [2847]={ + [2950]={ [1]={ [1]={ limit={ @@ -60294,7 +62366,7 @@ return { [1]="base_life_leech_does_not_stop_at_full_life" } }, - [2848]={ + [2951]={ [1]={ [1]={ limit={ @@ -60310,7 +62382,7 @@ return { [1]="cannot_be_stunned_while_leeching" } }, - [2849]={ + [2952]={ [1]={ [1]={ limit={ @@ -60339,7 +62411,7 @@ return { [1]="armour_and_evasion_on_low_life_+%" } }, - [2850]={ + [2953]={ [1]={ [1]={ limit={ @@ -60368,7 +62440,7 @@ return { [1]="taunted_enemies_chance_to_be_stunned_+%" } }, - [2851]={ + [2954]={ [1]={ [1]={ limit={ @@ -60397,7 +62469,7 @@ return { [1]="taunted_enemies_damage_taken_+%" } }, - [2852]={ + [2955]={ [1]={ [1]={ limit={ @@ -60426,7 +62498,7 @@ return { [1]="attack_speed_while_fortified_+%" } }, - [2853]={ + [2956]={ [1]={ [1]={ limit={ @@ -60442,7 +62514,7 @@ return { [1]="block_chance_on_damage_taken_%" } }, - [2854]={ + [2957]={ [1]={ [1]={ limit={ @@ -60471,7 +62543,7 @@ return { [1]="damage_while_no_damage_taken_+%" } }, - [2855]={ + [2958]={ [1]={ [1]={ limit={ @@ -60500,7 +62572,7 @@ return { [1]="physical_damage_on_block_+%" } }, - [2856]={ + [2959]={ [1]={ [1]={ limit={ @@ -60529,7 +62601,7 @@ return { [1]="attack_and_cast_speed_when_hit_+%" } }, - [2857]={ + [2960]={ [1]={ [1]={ limit={ @@ -60558,7 +62630,7 @@ return { [1]="fire_damage_+%_to_blinded_enemies" } }, - [2858]={ + [2961]={ [1]={ [1]={ limit={ @@ -60591,7 +62663,7 @@ return { [1]="spell_damage_taken_+%_from_blinded_enemies" } }, - [2859]={ + [2962]={ [1]={ [1]={ limit={ @@ -60620,7 +62692,7 @@ return { [1]="movement_velocity_while_not_hit_+%" } }, - [2860]={ + [2963]={ [1]={ [1]={ limit={ @@ -60636,7 +62708,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [2861]={ + [2964]={ [1]={ [1]={ limit={ @@ -60652,7 +62724,7 @@ return { [1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius" } }, - [2862]={ + [2965]={ [1]={ [1]={ limit={ @@ -60668,7 +62740,7 @@ return { [1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius" } }, - [2863]={ + [2966]={ [1]={ [1]={ limit={ @@ -60684,7 +62756,7 @@ return { [1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius" } }, - [2864]={ + [2967]={ [1]={ [1]={ limit={ @@ -60700,7 +62772,7 @@ return { [1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius" } }, - [2865]={ + [2968]={ [1]={ [1]={ limit={ @@ -60716,7 +62788,7 @@ return { [1]="glacial_hammer_item_rarity_on_shattering_enemy_+%" } }, - [2866]={ + [2969]={ [1]={ [1]={ limit={ @@ -60732,7 +62804,7 @@ return { [1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%" } }, - [2867]={ + [2970]={ [1]={ [1]={ limit={ @@ -60748,7 +62820,7 @@ return { [1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%" } }, - [2868]={ + [2971]={ [1]={ [1]={ limit={ @@ -60764,7 +62836,7 @@ return { [1]="heavy_strike_chance_to_deal_double_damage_%" } }, - [2869]={ + [2972]={ [1]={ [1]={ limit={ @@ -60797,7 +62869,7 @@ return { [1]="enchantment_boots_mana_costs_when_hit_+%" } }, - [2870]={ + [2973]={ [1]={ [1]={ limit={ @@ -60813,7 +62885,7 @@ return { [1]="enchantment_boots_stun_avoid_%_on_kill" } }, - [2871]={ + [2974]={ [1]={ [1]={ limit={ @@ -60829,7 +62901,7 @@ return { [1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill" } }, - [2872]={ + [2975]={ [1]={ [1]={ limit={ @@ -60850,7 +62922,7 @@ return { [2]="enchantment_boots_added_cold_damage_when_hit_maximum" } }, - [2873]={ + [2976]={ [1]={ [1]={ limit={ @@ -60871,7 +62943,7 @@ return { [2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds" } }, - [2874]={ + [2977]={ [1]={ [1]={ limit={ @@ -60892,7 +62964,7 @@ return { [2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s" } }, - [2875]={ + [2978]={ [1]={ [1]={ limit={ @@ -60921,7 +62993,7 @@ return { [1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds" } }, - [2876]={ + [2979]={ [1]={ [1]={ limit={ @@ -60937,7 +63009,7 @@ return { [1]="extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently" } }, - [2877]={ + [2980]={ [1]={ [1]={ limit={ @@ -60953,7 +63025,7 @@ return { [1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons" } }, - [2878]={ + [2981]={ [1]={ [1]={ limit={ @@ -60969,7 +63041,7 @@ return { [1]="number_of_melee_skeletons_to_summon_as_mage_skeletons" } }, - [2879]={ + [2982]={ [1]={ [1]={ limit={ @@ -60985,7 +63057,7 @@ return { [1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius" } }, - [2880]={ + [2983]={ [1]={ [1]={ limit={ @@ -61001,7 +63073,7 @@ return { [1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds" } }, - [2881]={ + [2984]={ [1]={ [1]={ limit={ @@ -61030,7 +63102,7 @@ return { [1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius" } }, - [2882]={ + [2985]={ [1]={ [1]={ limit={ @@ -61046,7 +63118,7 @@ return { [1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius" } }, - [2883]={ + [2986]={ [1]={ [1]={ limit={ @@ -61075,7 +63147,7 @@ return { [1]="fireball_radius_up_to_+%_at_longer_ranges" } }, - [2884]={ + [2987]={ [1]={ [1]={ limit={ @@ -61091,7 +63163,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [2885]={ + [2988]={ [1]={ [1]={ limit={ @@ -61107,7 +63179,7 @@ return { [1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius" } }, - [2886]={ + [2989]={ [1]={ [1]={ limit={ @@ -61123,7 +63195,7 @@ return { [1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons" } }, - [2887]={ + [2990]={ [1]={ [1]={ limit={ @@ -61148,7 +63220,7 @@ return { [1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius" } }, - [2888]={ + [2991]={ [1]={ [1]={ limit={ @@ -61177,7 +63249,7 @@ return { [1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius" } }, - [2889]={ + [2992]={ [1]={ [1]={ limit={ @@ -61206,7 +63278,7 @@ return { [1]="ground_slam_angle_+%" } }, - [2890]={ + [2993]={ [1]={ [1]={ limit={ @@ -61222,7 +63294,7 @@ return { [1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius" } }, - [2891]={ + [2994]={ [1]={ [1]={ limit={ @@ -61238,7 +63310,7 @@ return { [1]="cold_snap_gain_power_charge_on_kill_%" } }, - [2892]={ + [2995]={ [1]={ [1]={ limit={ @@ -61254,7 +63326,7 @@ return { [1]="local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius" } }, - [2893]={ + [2996]={ [1]={ [1]={ limit={ @@ -61270,7 +63342,7 @@ return { [1]="warcry_damage_taken_goes_to_mana_%" } }, - [2894]={ + [2997]={ [1]={ [1]={ limit={ @@ -61295,7 +63367,7 @@ return { [1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius" } }, - [2895]={ + [2998]={ [1]={ [1]={ limit={ @@ -61320,7 +63392,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [2896]={ + [2999]={ [1]={ [1]={ limit={ @@ -61336,7 +63408,7 @@ return { [1]="cannot_block" } }, - [2897]={ + [3000]={ [1]={ [1]={ limit={ @@ -61352,7 +63424,7 @@ return { [1]="mana_cost_-%_per_endurance_charge" } }, - [2898]={ + [3001]={ [1]={ [1]={ limit={ @@ -61368,7 +63440,7 @@ return { [1]="gain_rampage_while_at_maximum_endurance_charges" } }, - [2899]={ + [3002]={ [1]={ [1]={ limit={ @@ -61384,7 +63456,7 @@ return { [1]="lose_endurance_charges_on_rampage_end" } }, - [2900]={ + [3003]={ [1]={ [1]={ limit={ @@ -61400,7 +63472,7 @@ return { [1]="virtual_number_of_ranged_animated_weapons_allowed" } }, - [2901]={ + [3004]={ [1]={ [1]={ limit={ @@ -61416,7 +63488,7 @@ return { [1]="stun_threshold_based_on_%_mana_instead_of_life" } }, - [2902]={ + [3005]={ [1]={ [1]={ limit={ @@ -61445,7 +63517,7 @@ return { [1]="stun_threshold_+%" } }, - [2903]={ + [3006]={ [1]={ [1]={ limit={ @@ -61474,7 +63546,7 @@ return { [1]="freeze_threshold_+%" } }, - [2904]={ + [3007]={ [1]={ [1]={ limit={ @@ -61503,7 +63575,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_active_skeleton" } }, - [2905]={ + [3008]={ [1]={ [1]={ limit={ @@ -61532,7 +63604,7 @@ return { [1]="minion_duration_+%_per_active_zombie" } }, - [2906]={ + [3009]={ [1]={ [1]={ limit={ @@ -61561,7 +63633,7 @@ return { [1]="minion_damage_+%_per_active_spectre" } }, - [2907]={ + [3010]={ [1]={ [1]={ [1]={ @@ -61581,7 +63653,7 @@ return { [1]="minion_life_regeneration_per_minute_per_active_raging_spirit" } }, - [2908]={ + [3011]={ [1]={ [1]={ limit={ @@ -61610,7 +63682,7 @@ return { [1]="warcry_speed_+%" } }, - [2909]={ + [3012]={ [1]={ [1]={ limit={ @@ -61639,7 +63711,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [2910]={ + [3013]={ [1]={ [1]={ limit={ @@ -61664,7 +63736,7 @@ return { [1]="apply_poison_on_hit_vs_bleeding_enemies_%" } }, - [2911]={ + [3014]={ [1]={ [1]={ limit={ @@ -61693,7 +63765,7 @@ return { [1]="damage_taken_+%_from_blinded_enemies" } }, - [2912]={ + [3015]={ [1]={ [1]={ limit={ @@ -61722,7 +63794,7 @@ return { [1]="attack_damage_+%_per_frenzy_charge" } }, - [2913]={ + [3016]={ [1]={ [1]={ limit={ @@ -61751,7 +63823,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [2914]={ + [3017]={ [1]={ [1]={ limit={ @@ -61780,7 +63852,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%" } }, - [2915]={ + [3018]={ [1]={ [1]={ limit={ @@ -61809,7 +63881,7 @@ return { [1]="arcane_surge_effect_on_self_+%" } }, - [2916]={ + [3019]={ [1]={ [1]={ limit={ @@ -61838,7 +63910,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%" } }, - [2917]={ + [3020]={ [1]={ [1]={ limit={ @@ -61867,7 +63939,7 @@ return { [1]="onslaught_effect_+%" } }, - [2918]={ + [3021]={ [1]={ [1]={ limit={ @@ -61896,7 +63968,7 @@ return { [1]="attack_damage_+%_while_onslaught_active" } }, - [2919]={ + [3022]={ [1]={ [1]={ limit={ @@ -61925,7 +63997,7 @@ return { [1]="critical_strike_chance_+%_vs_poisoned_enemies" } }, - [2920]={ + [3023]={ [1]={ [1]={ limit={ @@ -61954,7 +64026,7 @@ return { [1]="elemental_damage_taken_+%" } }, - [2921]={ + [3024]={ [1]={ [1]={ limit={ @@ -61983,7 +64055,7 @@ return { [1]="damage_taken_from_traps_and_mines_+%" } }, - [2922]={ + [3025]={ [1]={ [1]={ limit={ @@ -62008,7 +64080,7 @@ return { [1]="maim_on_hit_%_vs_poisoned_enemies" } }, - [2923]={ + [3026]={ [1]={ [1]={ limit={ @@ -62024,7 +64096,7 @@ return { [1]="dispel_status_ailments_on_flask_use" } }, - [2924]={ + [3027]={ [1]={ [1]={ limit={ @@ -62040,7 +64112,23 @@ return { [1]="avoid_status_ailments_%_during_flask_effect" } }, - [2925]={ + [3028]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills from Corrupted Gems have {0}% increased Cost Efficiency during any Flask Effect" + } + }, + stats={ + [1]="corrupted_skills_have_+%_increased_skill_cost_efficiency_during_flask_effect" + } + }, + [3029]={ [1]={ [1]={ limit={ @@ -62069,7 +64157,7 @@ return { [1]="attack_speed_+%_during_flask_effect" } }, - [2926]={ + [3030]={ [1]={ [1]={ limit={ @@ -62085,7 +64173,7 @@ return { [1]="chaos_resistance_+_while_using_flask" } }, - [2927]={ + [3031]={ [1]={ [1]={ limit={ @@ -62110,7 +64198,7 @@ return { [1]="poison_on_hit_during_flask_effect_%" } }, - [2928]={ + [3032]={ [1]={ [1]={ limit={ @@ -62126,7 +64214,7 @@ return { [1]="explode_on_kill_%_chaos_damage_to_deal" } }, - [2929]={ + [3033]={ [1]={ [1]={ limit={ @@ -62142,7 +64230,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%" } }, - [2930]={ + [3034]={ [1]={ [1]={ limit={ @@ -62158,7 +64246,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [2931]={ + [3035]={ [1]={ [1]={ limit={ @@ -62205,7 +64293,7 @@ return { [2]="allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [2932]={ + [3036]={ [1]={ [1]={ limit={ @@ -62221,7 +64309,7 @@ return { [1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds" } }, - [2933]={ + [3037]={ [1]={ [1]={ limit={ @@ -62237,7 +64325,7 @@ return { [1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds" } }, - [2934]={ + [3038]={ [1]={ [1]={ limit={ @@ -62258,7 +64346,7 @@ return { [2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s" } }, - [2935]={ + [3039]={ [1]={ [1]={ limit={ @@ -62274,7 +64362,7 @@ return { [1]="movement_speed_+%_while_not_affected_by_status_ailments" } }, - [2936]={ + [3040]={ [1]={ [1]={ limit={ @@ -62290,7 +64378,7 @@ return { [1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds" } }, - [2937]={ + [3041]={ [1]={ [1]={ limit={ @@ -62306,7 +64394,7 @@ return { [1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life" } }, - [2938]={ + [3042]={ [1]={ [1]={ limit={ @@ -62322,7 +64410,7 @@ return { [1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%" } }, - [2939]={ + [3043]={ [1]={ [1]={ limit={ @@ -62347,7 +64435,7 @@ return { [1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff" } }, - [2940]={ + [3044]={ [1]={ [1]={ limit={ @@ -62376,7 +64464,7 @@ return { [1]="damage_taken_+%_from_bleeding_enemies" } }, - [2941]={ + [3045]={ [1]={ [1]={ limit={ @@ -62401,7 +64489,7 @@ return { [1]="maim_bleeding_enemies_on_hit_%" } }, - [2942]={ + [3046]={ [1]={ [1]={ limit={ @@ -62430,7 +64518,7 @@ return { [1]="one_handed_attack_speed_+%" } }, - [2943]={ + [3047]={ [1]={ [1]={ limit={ @@ -62459,7 +64547,7 @@ return { [1]="movement_speed_+%_for_4_seconds_on_block" } }, - [2944]={ + [3048]={ [1]={ [1]={ limit={ @@ -62488,7 +64576,7 @@ return { [1]="movement_speed_+%_while_fortified" } }, - [2945]={ + [3049]={ [1]={ [1]={ limit={ @@ -62517,7 +64605,7 @@ return { [1]="elemental_damage_taken_+%_at_maximum_endurance_charges" } }, - [2946]={ + [3050]={ [1]={ [1]={ limit={ @@ -62533,7 +64621,7 @@ return { [1]="status_ailments_removed_at_low_life" } }, - [2947]={ + [3051]={ [1]={ [1]={ limit={ @@ -62558,7 +64646,7 @@ return { [1]="gain_frenzy_charge_on_main_hand_kill_%" } }, - [2948]={ + [3052]={ [1]={ [1]={ limit={ @@ -62583,7 +64671,7 @@ return { [1]="gain_endurance_charge_on_main_hand_kill_%" } }, - [2949]={ + [3053]={ [1]={ [1]={ limit={ @@ -62612,7 +64700,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_kill" } }, - [2950]={ + [3054]={ [1]={ [1]={ limit={ @@ -62628,7 +64716,7 @@ return { [1]="avoid_stun_%_for_4_seconds_on_kill" } }, - [2951]={ + [3055]={ [1]={ [1]={ limit={ @@ -62653,7 +64741,7 @@ return { [1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%" } }, - [2952]={ + [3056]={ [1]={ [1]={ limit={ @@ -62678,7 +64766,7 @@ return { [1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%" } }, - [2953]={ + [3057]={ [1]={ [1]={ limit={ @@ -62707,7 +64795,7 @@ return { [1]="warcry_cooldown_speed_+%" } }, - [2954]={ + [3058]={ [1]={ [1]={ limit={ @@ -62736,7 +64824,7 @@ return { [1]="golem_skill_cooldown_recovery_+%" } }, - [2955]={ + [3059]={ [1]={ [1]={ limit={ @@ -62765,7 +64853,7 @@ return { [1]="golem_cooldown_recovery_+%" } }, - [2956]={ + [3060]={ [1]={ [1]={ limit={ @@ -62781,7 +64869,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [2957]={ + [3061]={ [1]={ [1]={ limit={ @@ -62810,7 +64898,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [2958]={ + [3062]={ [1]={ [1]={ limit={ @@ -62839,7 +64927,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_low_life" } }, - [2959]={ + [3063]={ [1]={ [1]={ limit={ @@ -62868,7 +64956,7 @@ return { [1]="damage_+%_with_one_handed_weapons" } }, - [2960]={ + [3064]={ [1]={ [1]={ limit={ @@ -62897,7 +64985,7 @@ return { [1]="damage_+%_with_two_handed_weapons" } }, - [2961]={ + [3065]={ [1]={ [1]={ limit={ @@ -62913,7 +65001,7 @@ return { [1]="damage_reduction_rating_from_body_armour_doubled" } }, - [2962]={ + [3066]={ [1]={ [1]={ limit={ @@ -62929,7 +65017,7 @@ return { [1]="damage_reduction_rating_%_with_active_totem" } }, - [2963]={ + [3067]={ [1]={ [1]={ limit={ @@ -62945,7 +65033,7 @@ return { [1]="local_display_cast_level_x_manifest_dancing_dervish" } }, - [2964]={ + [3068]={ [1]={ [1]={ limit={ @@ -62961,7 +65049,7 @@ return { [1]="local_display_manifest_dancing_dervish_disables_weapons" } }, - [2965]={ + [3069]={ [1]={ [1]={ limit={ @@ -62977,7 +65065,7 @@ return { [1]="local_display_manifest_dancing_dervish_destroy_on_end_rampage" } }, - [2966]={ + [3070]={ [1]={ [1]={ limit={ @@ -62993,7 +65081,7 @@ return { [1]="local_display_minions_grant_onslaught" } }, - [2967]={ + [3071]={ [1]={ [1]={ limit={ @@ -63022,7 +65110,7 @@ return { [1]="physical_damage_+%_while_frozen" } }, - [2968]={ + [3072]={ [1]={ [1]={ limit={ @@ -63038,7 +65126,7 @@ return { [1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius" } }, - [2969]={ + [3073]={ [1]={ [1]={ limit={ @@ -63054,7 +65142,7 @@ return { [1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius" } }, - [2970]={ + [3074]={ [1]={ [1]={ limit={ @@ -63079,7 +65167,7 @@ return { [1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius" } }, - [2971]={ + [3075]={ [1]={ [1]={ limit={ @@ -63095,7 +65183,7 @@ return { [1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius" } }, - [2972]={ + [3076]={ [1]={ [1]={ limit={ @@ -63111,7 +65199,7 @@ return { [1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius" } }, - [2973]={ + [3077]={ [1]={ [1]={ limit={ @@ -63127,7 +65215,7 @@ return { [1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius" } }, - [2974]={ + [3078]={ [1]={ [1]={ limit={ @@ -63152,7 +65240,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius" } }, - [2975]={ + [3079]={ [1]={ [1]={ limit={ @@ -63177,7 +65265,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius" } }, - [2976]={ + [3080]={ [1]={ [1]={ limit={ @@ -63202,7 +65290,7 @@ return { [1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius" } }, - [2977]={ + [3081]={ [1]={ [1]={ limit={ @@ -63231,7 +65319,7 @@ return { [1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius" } }, - [2978]={ + [3082]={ [1]={ [1]={ limit={ @@ -63260,7 +65348,7 @@ return { [1]="anger_aura_effect_+%" } }, - [2979]={ + [3083]={ [1]={ [1]={ limit={ @@ -63289,7 +65377,7 @@ return { [1]="purity_of_elements_aura_effect_+%" } }, - [2980]={ + [3084]={ [1]={ [1]={ limit={ @@ -63318,7 +65406,7 @@ return { [1]="purity_of_fire_aura_effect_+%" } }, - [2981]={ + [3085]={ [1]={ [1]={ limit={ @@ -63347,7 +65435,7 @@ return { [1]="purity_of_ice_aura_effect_+%" } }, - [2982]={ + [3086]={ [1]={ [1]={ limit={ @@ -63376,7 +65464,7 @@ return { [1]="purity_of_lightning_aura_effect_+%" } }, - [2983]={ + [3087]={ [1]={ [1]={ limit={ @@ -63405,7 +65493,7 @@ return { [1]="wrath_aura_effect_+%" } }, - [2984]={ + [3088]={ [1]={ [1]={ limit={ @@ -63434,7 +65522,7 @@ return { [1]="banner_aura_effect_+%" } }, - [2985]={ + [3089]={ [1]={ [1]={ limit={ @@ -63463,7 +65551,7 @@ return { [1]="grace_aura_effect_+%" } }, - [2986]={ + [3090]={ [1]={ [1]={ limit={ @@ -63492,7 +65580,7 @@ return { [1]="haste_aura_effect_+%" } }, - [2987]={ + [3091]={ [1]={ [1]={ limit={ @@ -63521,7 +65609,7 @@ return { [1]="precision_aura_effect_+%" } }, - [2988]={ + [3092]={ [1]={ [1]={ limit={ @@ -63550,7 +65638,7 @@ return { [1]="hatred_aura_effect_+%" } }, - [2989]={ + [3093]={ [1]={ [1]={ limit={ @@ -63579,7 +65667,7 @@ return { [1]="determination_aura_effect_+%" } }, - [2990]={ + [3094]={ [1]={ [1]={ limit={ @@ -63608,7 +65696,7 @@ return { [1]="discipline_aura_effect_+%" } }, - [2991]={ + [3095]={ [1]={ [1]={ limit={ @@ -63624,7 +65712,7 @@ return { [1]="cannot_be_poisoned" } }, - [2992]={ + [3096]={ [1]={ [1]={ limit={ @@ -63640,7 +65728,7 @@ return { [1]="chance_to_be_poisoned_%" } }, - [2993]={ + [3097]={ [1]={ [1]={ limit={ @@ -63665,7 +65753,7 @@ return { [1]="avoid_physical_damage_%" } }, - [2994]={ + [3098]={ [1]={ [1]={ limit={ @@ -63690,7 +65778,7 @@ return { [1]="avoid_elemental_damage_%_per_frenzy_charge" } }, - [2995]={ + [3099]={ [1]={ [1]={ limit={ @@ -63715,7 +65803,7 @@ return { [1]="avoid_fire_damage_%" } }, - [2996]={ + [3100]={ [1]={ [1]={ limit={ @@ -63740,7 +65828,7 @@ return { [1]="avoid_cold_damage_%" } }, - [2997]={ + [3101]={ [1]={ [1]={ limit={ @@ -63765,7 +65853,7 @@ return { [1]="avoid_lightning_damage_%" } }, - [2998]={ + [3102]={ [1]={ [1]={ limit={ @@ -63790,7 +65878,7 @@ return { [1]="avoid_chaos_damage_%" } }, - [2999]={ + [3103]={ [1]={ [1]={ limit={ @@ -63815,7 +65903,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3000]={ + [3104]={ [1]={ [1]={ limit={ @@ -63840,7 +65928,7 @@ return { [1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3001]={ + [3105]={ [1]={ [1]={ limit={ @@ -63865,7 +65953,7 @@ return { [1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%" } }, - [3002]={ + [3106]={ [1]={ [1]={ limit={ @@ -63890,7 +65978,7 @@ return { [1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%" } }, - [3003]={ + [3107]={ [1]={ [1]={ limit={ @@ -63915,7 +66003,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" } }, - [3004]={ + [3108]={ [1]={ [1]={ limit={ @@ -63931,7 +66019,7 @@ return { [1]="remove_bleed_on_flask_use" } }, - [3005]={ + [3109]={ [1]={ [1]={ limit={ @@ -63947,7 +66035,7 @@ return { [1]="remove_corrupted_blood_when_you_use_a_flask" } }, - [3006]={ + [3110]={ [1]={ [1]={ limit={ @@ -63980,7 +66068,7 @@ return { [1]="lightning_damage_taken_+%" } }, - [3007]={ + [3111]={ [1]={ [1]={ limit={ @@ -64013,7 +66101,7 @@ return { [1]="cold_damage_taken_+%" } }, - [3008]={ + [3112]={ [1]={ [1]={ [1]={ @@ -64033,7 +66121,7 @@ return { [1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy" } }, - [3009]={ + [3113]={ [1]={ [1]={ limit={ @@ -64058,7 +66146,7 @@ return { [1]="gain_flask_chance_on_crit_%" } }, - [3010]={ + [3114]={ [1]={ [1]={ limit={ @@ -64074,7 +66162,7 @@ return { [1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies" } }, - [3011]={ + [3115]={ [1]={ [1]={ limit={ @@ -64095,7 +66183,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_dexterity" } }, - [3012]={ + [3116]={ [1]={ [1]={ limit={ @@ -64111,7 +66199,7 @@ return { [1]="local_display_nearby_enemies_are_blinded" } }, - [3013]={ + [3117]={ [1]={ [1]={ limit={ @@ -64127,7 +66215,7 @@ return { [1]="local_display_nearby_enemies_are_crushed" } }, - [3014]={ + [3118]={ [1]={ [1]={ limit={ @@ -64143,7 +66231,7 @@ return { [1]="local_display_nearby_enemies_have_malediction" } }, - [3015]={ + [3119]={ [1]={ [1]={ limit={ @@ -64159,7 +66247,7 @@ return { [1]="local_display_nearby_enemies_scorched" } }, - [3016]={ + [3120]={ [1]={ [1]={ limit={ @@ -64175,7 +66263,7 @@ return { [1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%" } }, - [3017]={ + [3121]={ [1]={ [1]={ limit={ @@ -64204,7 +66292,7 @@ return { [1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self" } }, - [3018]={ + [3122]={ [1]={ [1]={ limit={ @@ -64233,7 +66321,7 @@ return { [1]="local_display_nearby_enemies_flask_charges_granted_+%" } }, - [3019]={ + [3123]={ [1]={ [1]={ limit={ @@ -64266,7 +66354,7 @@ return { [1]="local_display_nearby_enemies_movement_speed_+%" } }, - [3020]={ + [3124]={ [1]={ [1]={ limit={ @@ -64299,7 +66387,7 @@ return { [1]="local_display_nearby_enemies_stun_and_block_recovery_+%" } }, - [3021]={ + [3125]={ [1]={ [1]={ limit={ @@ -64324,7 +66412,7 @@ return { [1]="gain_power_charge_on_non_critical_strike_%" } }, - [3022]={ + [3126]={ [1]={ [1]={ limit={ @@ -64353,7 +66441,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [3023]={ + [3127]={ [1]={ [1]={ limit={ @@ -64378,7 +66466,7 @@ return { [1]="chilled_ground_on_freeze_%_chance_for_3_seconds" } }, - [3024]={ + [3128]={ [1]={ [1]={ limit={ @@ -64403,7 +66491,7 @@ return { [1]="consecrate_ground_on_kill_%_for_3_seconds" } }, - [3025]={ + [3129]={ [1]={ [1]={ limit={ @@ -64432,7 +66520,7 @@ return { [1]="frost_blades_damage_+%" } }, - [3026]={ + [3130]={ [1]={ [1]={ limit={ @@ -64461,7 +66549,7 @@ return { [1]="frost_blades_projectile_speed_+%" } }, - [3027]={ + [3131]={ [1]={ [1]={ limit={ @@ -64486,7 +66574,7 @@ return { [1]="frost_blades_number_of_additional_projectiles_in_chain" } }, - [3028]={ + [3132]={ [1]={ [1]={ limit={ @@ -64515,7 +66603,7 @@ return { [1]="summoned_raging_spirit_duration_+%" } }, - [3029]={ + [3133]={ [1]={ [1]={ limit={ @@ -64540,7 +66628,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [3030]={ + [3134]={ [1]={ [1]={ limit={ @@ -64569,7 +66657,7 @@ return { [1]="discharge_damage_+%" } }, - [3031]={ + [3135]={ [1]={ [1]={ limit={ @@ -64598,7 +66686,7 @@ return { [1]="discharge_radius_+%" } }, - [3032]={ + [3136]={ [1]={ [1]={ limit={ @@ -64623,7 +66711,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [3033]={ + [3137]={ [1]={ [1]={ limit={ @@ -64656,7 +66744,7 @@ return { [1]="anger_mana_reservation_+%" } }, - [3034]={ + [3138]={ [1]={ [1]={ limit={ @@ -64685,7 +66773,7 @@ return { [1]="lightning_trap_damage_+%" } }, - [3035]={ + [3139]={ [1]={ [1]={ limit={ @@ -64710,7 +66798,7 @@ return { [1]="lightning_trap_number_of_additional_projectiles" } }, - [3036]={ + [3140]={ [1]={ [1]={ limit={ @@ -64739,7 +66827,7 @@ return { [1]="lightning_trap_cooldown_speed_+%" } }, - [3037]={ + [3141]={ [1]={ [1]={ limit={ @@ -64755,7 +66843,7 @@ return { [1]="piercing_attacks_cause_bleeding" } }, - [3038]={ + [3142]={ [1]={ [1]={ limit={ @@ -64771,7 +66859,7 @@ return { [1]="energy_shield_recharges_on_block_%" } }, - [3039]={ + [3143]={ [1]={ [1]={ [1]={ @@ -64791,7 +66879,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_ms" } }, - [3040]={ + [3144]={ [1]={ [1]={ [1]={ @@ -64811,7 +66899,7 @@ return { [1]="soul_eater_on_rare_kill_ms" } }, - [3041]={ + [3145]={ [1]={ [1]={ [1]={ @@ -64831,7 +66919,7 @@ return { [1]="map_players_gain_soul_eater_on_rare_kill_ms" } }, - [3042]={ + [3146]={ [1]={ [1]={ limit={ @@ -64847,7 +66935,7 @@ return { [1]="gain_soul_eater_during_flask_effect" } }, - [3043]={ + [3147]={ [1]={ [1]={ limit={ @@ -64863,7 +66951,7 @@ return { [1]="lose_soul_eater_souls_on_flask_use" } }, - [3044]={ + [3148]={ [1]={ [1]={ limit={ @@ -64879,7 +66967,7 @@ return { [1]="totemified_skills_taunt_on_hit_%" } }, - [3045]={ + [3149]={ [1]={ [1]={ limit={ @@ -64895,7 +66983,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [3046]={ + [3150]={ [1]={ [1]={ limit={ @@ -64920,7 +67008,7 @@ return { [1]="minion_attacks_chance_to_taunt_on_hit_%" } }, - [3047]={ + [3151]={ [1]={ [1]={ limit={ @@ -64949,7 +67037,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy" } }, - [3048]={ + [3152]={ [1]={ [1]={ limit={ @@ -64965,7 +67053,7 @@ return { [1]="critical_strike_multiplier_vs_enemies_on_full_life_+" } }, - [3049]={ + [3153]={ [1]={ [1]={ limit={ @@ -64994,7 +67082,7 @@ return { [1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [3050]={ + [3154]={ [1]={ [1]={ limit={ @@ -65023,7 +67111,7 @@ return { [1]="blind_duration_+%" } }, - [3051]={ + [3155]={ [1]={ [1]={ limit={ @@ -65052,7 +67140,7 @@ return { [1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final" } }, - [3052]={ + [3156]={ [1]={ [1]={ limit={ @@ -65068,7 +67156,7 @@ return { [1]="crits_have_culling_strike" } }, - [3053]={ + [3157]={ [1]={ [1]={ [1]={ @@ -65088,7 +67176,7 @@ return { [1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3054]={ + [3158]={ [1]={ [1]={ [1]={ @@ -65108,7 +67196,7 @@ return { [1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3055]={ + [3159]={ [1]={ [1]={ limit={ @@ -65124,7 +67212,7 @@ return { [1]="storm_cloud_charge_count" } }, - [3056]={ + [3160]={ [1]={ [1]={ limit={ @@ -65140,7 +67228,7 @@ return { [1]="storm_cloud_charged_damage_+%_final" } }, - [3057]={ + [3161]={ [1]={ [1]={ limit={ @@ -65156,7 +67244,7 @@ return { [1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit" } }, - [3058]={ + [3162]={ [1]={ [1]={ limit={ @@ -65172,7 +67260,7 @@ return { [1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3059]={ + [3163]={ [1]={ [1]={ limit={ @@ -65201,7 +67289,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [3060]={ + [3164]={ [1]={ [1]={ limit={ @@ -65226,7 +67314,7 @@ return { [1]="endurance_charge_on_off_hand_kill_%" } }, - [3061]={ + [3165]={ [1]={ [1]={ limit={ @@ -65242,7 +67330,7 @@ return { [1]="aura_melee_physical_damage_+%_per_10_strength" } }, - [3062]={ + [3166]={ [1]={ [1]={ limit={ @@ -65258,7 +67346,7 @@ return { [1]="critical_strikes_ignore_elemental_resistances" } }, - [3063]={ + [3167]={ [1]={ [1]={ limit={ @@ -65287,7 +67375,7 @@ return { [1]="damage_+%_for_4_seconds_on_crit" } }, - [3064]={ + [3168]={ [1]={ [1]={ limit={ @@ -65303,7 +67391,7 @@ return { [1]="critical_strike_chance_+%_for_4_seconds_on_kill" } }, - [3065]={ + [3169]={ [1]={ [1]={ limit={ @@ -65319,7 +67407,7 @@ return { [1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse" } }, - [3066]={ + [3170]={ [1]={ [1]={ limit={ @@ -65335,7 +67423,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie" } }, - [3067]={ + [3171]={ [1]={ [1]={ limit={ @@ -65364,7 +67452,7 @@ return { [1]="spectre_damage_+%" } }, - [3068]={ + [3172]={ [1]={ [1]={ limit={ @@ -65393,7 +67481,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [3069]={ + [3173]={ [1]={ [1]={ limit={ @@ -65409,7 +67497,7 @@ return { [1]="damage_+%_vs_enemies_affected_by_status_ailments" } }, - [3070]={ + [3174]={ [1]={ [1]={ limit={ @@ -65425,7 +67513,7 @@ return { [1]="warcries_are_instant" } }, - [3071]={ + [3175]={ [1]={ [1]={ limit={ @@ -65441,7 +67529,7 @@ return { [1]="aura_grant_shield_defences_to_nearby_allies" } }, - [3072]={ + [3176]={ [1]={ [1]={ limit={ @@ -65466,7 +67554,7 @@ return { [1]="phasing_for_4_seconds_on_kill_%" } }, - [3073]={ + [3177]={ [1]={ [1]={ limit={ @@ -65482,7 +67570,7 @@ return { [1]="damage_+%_per_active_trap" } }, - [3074]={ + [3178]={ [1]={ [1]={ limit={ @@ -65498,7 +67586,7 @@ return { [1]="skill_area_of_effect_+%_per_active_mine" } }, - [3075]={ + [3179]={ [1]={ [1]={ limit={ @@ -65514,7 +67602,7 @@ return { [1]="immune_to_status_ailments_while_phased" } }, - [3076]={ + [3180]={ [1]={ [1]={ [1]={ @@ -65534,7 +67622,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [3077]={ + [3181]={ [1]={ [1]={ [1]={ @@ -65554,7 +67642,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges" } }, - [3078]={ + [3182]={ [1]={ [1]={ limit={ @@ -65570,7 +67658,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges" } }, - [3079]={ + [3183]={ [1]={ [1]={ limit={ @@ -65586,7 +67674,7 @@ return { [1]="movement_skills_cost_no_mana" } }, - [3080]={ + [3184]={ [1]={ [1]={ limit={ @@ -65615,7 +67703,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use" } }, - [3081]={ + [3185]={ [1]={ [1]={ limit={ @@ -65631,7 +67719,7 @@ return { [1]="lose_10%_of_maximum_mana_on_skill_use_%_chance" } }, - [3082]={ + [3186]={ [1]={ [1]={ limit={ @@ -65647,7 +67735,7 @@ return { [1]="recover_10%_of_maximum_mana_on_skill_use_%" } }, - [3083]={ + [3187]={ [1]={ [1]={ limit={ @@ -65663,7 +67751,7 @@ return { [1]="mine_laying_speed_+%_for_4_seconds_on_detonation" } }, - [3084]={ + [3188]={ [1]={ [1]={ limit={ @@ -65679,7 +67767,7 @@ return { [1]="damage_+%_for_4_seconds_on_detonation" } }, - [3085]={ + [3189]={ [1]={ [1]={ limit={ @@ -65708,7 +67796,7 @@ return { [1]="flask_charges_recovered_per_3_seconds" } }, - [3086]={ + [3190]={ [1]={ [1]={ limit={ @@ -65737,7 +67825,7 @@ return { [1]="trap_skill_area_of_effect_+%" } }, - [3087]={ + [3191]={ [1]={ [1]={ limit={ @@ -65753,7 +67841,7 @@ return { [1]="bleeding_enemies_explode_for_%_life_as_physical_damage" } }, - [3088]={ + [3192]={ [1]={ [1]={ limit={ @@ -65769,7 +67857,7 @@ return { [1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap" } }, - [3089]={ + [3193]={ [1]={ [1]={ limit={ @@ -65794,7 +67882,7 @@ return { [1]="display_cast_word_of_blades_on_hit_%" } }, - [3090]={ + [3194]={ [1]={ [1]={ limit={ @@ -65819,7 +67907,7 @@ return { [1]="display_cast_edict_of_blades_on_hit_%_" } }, - [3091]={ + [3195]={ [1]={ [1]={ limit={ @@ -65844,7 +67932,7 @@ return { [1]="display_cast_decree_of_blades_on_hit_%__" } }, - [3092]={ + [3196]={ [1]={ [1]={ limit={ @@ -65869,7 +67957,7 @@ return { [1]="display_cast_commandment_of_blades_on_hit_%_" } }, - [3093]={ + [3197]={ [1]={ [1]={ limit={ @@ -65894,7 +67982,7 @@ return { [1]="display_cast_word_of_winter_when_hit_%" } }, - [3094]={ + [3198]={ [1]={ [1]={ limit={ @@ -65919,7 +68007,7 @@ return { [1]="display_cast_edict_of_winter_when_hit_%" } }, - [3095]={ + [3199]={ [1]={ [1]={ limit={ @@ -65944,7 +68032,7 @@ return { [1]="display_cast_decree_of_winter_when_hit_%" } }, - [3096]={ + [3200]={ [1]={ [1]={ limit={ @@ -65969,7 +68057,7 @@ return { [1]="display_cast_commandment_of_winter_when_hit_%" } }, - [3097]={ + [3201]={ [1]={ [1]={ limit={ @@ -65994,7 +68082,7 @@ return { [1]="display_cast_word_of_inferno_on_kill_%" } }, - [3098]={ + [3202]={ [1]={ [1]={ limit={ @@ -66019,7 +68107,7 @@ return { [1]="display_cast_edict_of_inferno_on_kill_%" } }, - [3099]={ + [3203]={ [1]={ [1]={ limit={ @@ -66044,7 +68132,7 @@ return { [1]="display_cast_decree_of_inferno_on_kill_%" } }, - [3100]={ + [3204]={ [1]={ [1]={ limit={ @@ -66069,7 +68157,7 @@ return { [1]="display_cast_commandment_of_inferno_on_kill_%" } }, - [3101]={ + [3205]={ [1]={ [1]={ limit={ @@ -66094,7 +68182,7 @@ return { [1]="display_cast_word_of_tempest_on_hit_%" } }, - [3102]={ + [3206]={ [1]={ [1]={ limit={ @@ -66119,7 +68207,7 @@ return { [1]="display_cast_edict_of_tempest_on_hit_%" } }, - [3103]={ + [3207]={ [1]={ [1]={ limit={ @@ -66144,7 +68232,7 @@ return { [1]="display_cast_decree_of_tempest_on_hit_%" } }, - [3104]={ + [3208]={ [1]={ [1]={ limit={ @@ -66169,7 +68257,7 @@ return { [1]="display_cast_commandment_of_tempest_on_hit_%" } }, - [3105]={ + [3209]={ [1]={ [1]={ limit={ @@ -66194,7 +68282,7 @@ return { [1]="display_cast_word_of_the_grave_on_kill_%" } }, - [3106]={ + [3210]={ [1]={ [1]={ limit={ @@ -66219,7 +68307,7 @@ return { [1]="display_cast_edict_of_the_grave_on_kill_%" } }, - [3107]={ + [3211]={ [1]={ [1]={ limit={ @@ -66244,7 +68332,7 @@ return { [1]="display_cast_decree_of_the_grave_on_kill_%" } }, - [3108]={ + [3212]={ [1]={ [1]={ limit={ @@ -66269,7 +68357,7 @@ return { [1]="display_cast_commandment_of_the_grave_on_kill_%" } }, - [3109]={ + [3213]={ [1]={ [1]={ limit={ @@ -66294,7 +68382,7 @@ return { [1]="display_cast_word_of_reflection_when_hit_%" } }, - [3110]={ + [3214]={ [1]={ [1]={ limit={ @@ -66319,7 +68407,7 @@ return { [1]="display_cast_edict_of_reflection_when_hit_%" } }, - [3111]={ + [3215]={ [1]={ [1]={ limit={ @@ -66344,7 +68432,7 @@ return { [1]="display_cast_decree_of_reflection_when_hit_%" } }, - [3112]={ + [3216]={ [1]={ [1]={ limit={ @@ -66369,7 +68457,7 @@ return { [1]="display_cast_commandment_of_reflection_when_hit_%" } }, - [3113]={ + [3217]={ [1]={ [1]={ limit={ @@ -66394,7 +68482,7 @@ return { [1]="display_attack_with_word_of_force_on_hit_%" } }, - [3114]={ + [3218]={ [1]={ [1]={ limit={ @@ -66419,7 +68507,7 @@ return { [1]="display_attack_with_edict_of_force_on_hit_%" } }, - [3115]={ + [3219]={ [1]={ [1]={ limit={ @@ -66444,7 +68532,7 @@ return { [1]="display_attack_with_decree_of_force_on_hit_%" } }, - [3116]={ + [3220]={ [1]={ [1]={ limit={ @@ -66469,7 +68557,7 @@ return { [1]="display_attack_with_commandment_of_force_on_hit_%" } }, - [3117]={ + [3221]={ [1]={ [1]={ limit={ @@ -66494,7 +68582,7 @@ return { [1]="display_attack_with_word_of_light_when_critically_hit_%" } }, - [3118]={ + [3222]={ [1]={ [1]={ limit={ @@ -66519,7 +68607,7 @@ return { [1]="display_attack_with_edict_of_light_when_critically_hit_%" } }, - [3119]={ + [3223]={ [1]={ [1]={ limit={ @@ -66544,7 +68632,7 @@ return { [1]="display_attack_with_decree_of_light_when_critically_hit_%" } }, - [3120]={ + [3224]={ [1]={ [1]={ limit={ @@ -66569,7 +68657,7 @@ return { [1]="display_attack_with_commandment_of_light_when_critically_hit_%" } }, - [3121]={ + [3225]={ [1]={ [1]={ limit={ @@ -66594,7 +68682,7 @@ return { [1]="display_cast_word_of_war_on_kill_%" } }, - [3122]={ + [3226]={ [1]={ [1]={ limit={ @@ -66619,7 +68707,7 @@ return { [1]="display_cast_edict_of_war_on_kill_%" } }, - [3123]={ + [3227]={ [1]={ [1]={ limit={ @@ -66644,7 +68732,7 @@ return { [1]="display_cast_decree_of_war_on_kill_%" } }, - [3124]={ + [3228]={ [1]={ [1]={ limit={ @@ -66669,7 +68757,7 @@ return { [1]="display_cast_commandment_of_war_on_kill_%" } }, - [3125]={ + [3229]={ [1]={ [1]={ limit={ @@ -66694,7 +68782,7 @@ return { [1]="display_attack_with_word_of_fury_on_hit_%" } }, - [3126]={ + [3230]={ [1]={ [1]={ limit={ @@ -66719,7 +68807,7 @@ return { [1]="display_attack_with_edict_of_fury_on_hit_%" } }, - [3127]={ + [3231]={ [1]={ [1]={ limit={ @@ -66744,7 +68832,7 @@ return { [1]="display_attack_with_decree_of_fury_on_hit_%" } }, - [3128]={ + [3232]={ [1]={ [1]={ limit={ @@ -66769,7 +68857,7 @@ return { [1]="display_attack_with_commandment_of_fury_on_hit_%" } }, - [3129]={ + [3233]={ [1]={ [1]={ limit={ @@ -66794,7 +68882,7 @@ return { [1]="display_attack_with_word_of_spite_when_hit_%" } }, - [3130]={ + [3234]={ [1]={ [1]={ limit={ @@ -66819,7 +68907,7 @@ return { [1]="display_attack_with_edict_of_spite_when_hit_%" } }, - [3131]={ + [3235]={ [1]={ [1]={ limit={ @@ -66844,7 +68932,7 @@ return { [1]="display_attack_with_decree_of_spite_when_hit_%" } }, - [3132]={ + [3236]={ [1]={ [1]={ limit={ @@ -66869,7 +68957,7 @@ return { [1]="display_attack_with_commandment_of_spite_when_hit_%" } }, - [3133]={ + [3237]={ [1]={ [1]={ limit={ @@ -66898,7 +68986,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge" } }, - [3134]={ + [3238]={ [1]={ [1]={ limit={ @@ -66927,7 +69015,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments" } }, - [3135]={ + [3239]={ [1]={ [1]={ limit={ @@ -66956,7 +69044,7 @@ return { [1]="spell_damage_+%_for_4_seconds_on_cast" } }, - [3136]={ + [3240]={ [1]={ [1]={ limit={ @@ -66985,7 +69073,7 @@ return { [1]="attack_damage_+%_for_4_seconds_on_cast" } }, - [3137]={ + [3241]={ [1]={ [1]={ limit={ @@ -67014,7 +69102,7 @@ return { [1]="attack_speed_+%_for_4_seconds_on_attack" } }, - [3138]={ + [3242]={ [1]={ [1]={ limit={ @@ -67043,7 +69131,7 @@ return { [1]="cast_speed_+%_for_4_seconds_on_attack" } }, - [3139]={ + [3243]={ [1]={ [1]={ limit={ @@ -67068,7 +69156,7 @@ return { [1]="display_cast_word_of_flames_on_hit_%" } }, - [3140]={ + [3244]={ [1]={ [1]={ limit={ @@ -67093,7 +69181,7 @@ return { [1]="display_cast_edict_of_flames_on_hit_%" } }, - [3141]={ + [3245]={ [1]={ [1]={ limit={ @@ -67118,7 +69206,7 @@ return { [1]="display_cast_decree_of_flames_on_hit_%" } }, - [3142]={ + [3246]={ [1]={ [1]={ limit={ @@ -67143,7 +69231,7 @@ return { [1]="display_cast_commandment_of_flames_on_hit_%" } }, - [3143]={ + [3247]={ [1]={ [1]={ limit={ @@ -67168,7 +69256,7 @@ return { [1]="display_cast_word_of_frost_on_kill_%" } }, - [3144]={ + [3248]={ [1]={ [1]={ limit={ @@ -67193,7 +69281,7 @@ return { [1]="display_cast_edict_of_frost_on_kill_%" } }, - [3145]={ + [3249]={ [1]={ [1]={ limit={ @@ -67218,7 +69306,7 @@ return { [1]="display_cast_decree_of_frost_on_kill_%" } }, - [3146]={ + [3250]={ [1]={ [1]={ limit={ @@ -67243,7 +69331,7 @@ return { [1]="display_cast_commandment_of_frost_on_kill_%" } }, - [3147]={ + [3251]={ [1]={ [1]={ limit={ @@ -67268,7 +69356,7 @@ return { [1]="display_cast_word_of_thunder_on_kill_%" } }, - [3148]={ + [3252]={ [1]={ [1]={ limit={ @@ -67293,7 +69381,7 @@ return { [1]="display_cast_edict_of_thunder_on_kill_%" } }, - [3149]={ + [3253]={ [1]={ [1]={ limit={ @@ -67318,7 +69406,7 @@ return { [1]="display_cast_decree_of_thunder_on_kill_%" } }, - [3150]={ + [3254]={ [1]={ [1]={ limit={ @@ -67343,7 +69431,7 @@ return { [1]="display_cast_commandment_of_thunder_on_kill_%" } }, - [3151]={ + [3255]={ [1]={ [1]={ limit={ @@ -67359,7 +69447,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [3152]={ + [3256]={ [1]={ [1]={ limit={ @@ -67384,7 +69472,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [3153]={ + [3257]={ [1]={ [1]={ limit={ @@ -67400,7 +69488,7 @@ return { [1]="hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos" } }, - [3154]={ + [3258]={ [1]={ [1]={ limit={ @@ -67429,7 +69517,7 @@ return { [1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds" } }, - [3155]={ + [3259]={ [1]={ [1]={ limit={ @@ -67458,7 +69546,7 @@ return { [1]="damage_+%_on_consecrated_ground" } }, - [3156]={ + [3260]={ [1]={ [1]={ limit={ @@ -67483,7 +69571,7 @@ return { [1]="consecrate_ground_for_3_seconds_when_hit_%" } }, - [3157]={ + [3261]={ [1]={ [1]={ limit={ @@ -67512,7 +69600,7 @@ return { [1]="mana_cost_+%_on_consecrated_ground" } }, - [3158]={ + [3262]={ [1]={ [1]={ limit={ @@ -67528,7 +69616,7 @@ return { [1]="avoid_ailments_%_on_consecrated_ground" } }, - [3159]={ + [3263]={ [1]={ [1]={ limit={ @@ -67544,7 +69632,7 @@ return { [1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment" } }, - [3160]={ + [3264]={ [1]={ [1]={ limit={ @@ -67560,7 +69648,7 @@ return { [1]="non_critical_strikes_penetrate_elemental_resistances_%" } }, - [3161]={ + [3265]={ [1]={ [1]={ limit={ @@ -67576,7 +69664,7 @@ return { [1]="base_attack_damage_penetrates_elemental_resist_%" } }, - [3162]={ + [3266]={ [1]={ [1]={ limit={ @@ -67592,7 +69680,7 @@ return { [1]="base_penetrate_elemental_resistances_%" } }, - [3163]={ + [3267]={ [1]={ [1]={ limit={ @@ -67608,7 +69696,7 @@ return { [1]="base_attack_damage_penetrates_fire_resist_%" } }, - [3164]={ + [3268]={ [1]={ [1]={ limit={ @@ -67624,7 +69712,7 @@ return { [1]="base_attack_damage_penetrates_cold_resist_%" } }, - [3165]={ + [3269]={ [1]={ [1]={ limit={ @@ -67640,7 +69728,7 @@ return { [1]="base_attack_damage_penetrates_lightning_resist_%" } }, - [3166]={ + [3270]={ [1]={ [1]={ limit={ @@ -67656,7 +69744,7 @@ return { [1]="base_attack_damage_penetrates_chaos_resist_%" } }, - [3167]={ + [3271]={ [1]={ [1]={ limit={ @@ -67672,7 +69760,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [3168]={ + [3272]={ [1]={ [1]={ limit={ @@ -67701,7 +69789,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [3169]={ + [3273]={ [1]={ [1]={ limit={ @@ -67730,7 +69818,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [3170]={ + [3274]={ [1]={ [1]={ limit={ @@ -67759,7 +69847,7 @@ return { [1]="unarmed_damage_+%_vs_bleeding_enemies" } }, - [3171]={ + [3275]={ [1]={ [1]={ limit={ @@ -67788,7 +69876,7 @@ return { [1]="aura_effect_on_self_from_your_skills_+%" } }, - [3172]={ + [3276]={ [1]={ [1]={ limit={ @@ -67813,7 +69901,7 @@ return { [1]="life_gained_on_bleeding_enemy_hit" } }, - [3173]={ + [3277]={ [1]={ [1]={ [1]={ @@ -67833,7 +69921,7 @@ return { [1]="base_melee_critical_strike_chance_while_unarmed_%" } }, - [3174]={ + [3278]={ [1]={ [1]={ limit={ @@ -67849,7 +69937,7 @@ return { [1]="modifiers_to_claw_damage_also_affect_unarmed_melee_damage" } }, - [3175]={ + [3279]={ [1]={ [1]={ limit={ @@ -67865,7 +69953,7 @@ return { [1]="modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed" } }, - [3176]={ + [3280]={ [1]={ [1]={ limit={ @@ -67881,7 +69969,7 @@ return { [1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance" } }, - [3177]={ + [3281]={ [1]={ [1]={ limit={ @@ -67907,10 +69995,10 @@ return { } }, stats={ - [1]="damage_+%_while_unarmed" + [1]="unarmed_damage_+%" } }, - [3178]={ + [3282]={ [1]={ [1]={ limit={ @@ -67939,7 +70027,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shattered" } }, - [3179]={ + [3283]={ [1]={ [1]={ limit={ @@ -67972,7 +70060,7 @@ return { [1]="energy_shield_delay_during_flask_effect_-%" } }, - [3180]={ + [3284]={ [1]={ [1]={ limit={ @@ -68001,7 +70089,7 @@ return { [1]="virtual_energy_shield_delay_-%" } }, - [3181]={ + [3285]={ [1]={ [1]={ limit={ @@ -68030,7 +70118,7 @@ return { [1]="energy_shield_recharge_rate_during_flask_effect_+%" } }, - [3182]={ + [3286]={ [1]={ [1]={ limit={ @@ -68059,7 +70147,7 @@ return { [1]="virtual_energy_shield_recharge_rate_+%" } }, - [3183]={ + [3287]={ [1]={ [1]={ limit={ @@ -68075,7 +70163,7 @@ return { [1]="arrows_fork" } }, - [3184]={ + [3288]={ [1]={ [1]={ limit={ @@ -68091,7 +70179,7 @@ return { [1]="projectiles_fork" } }, - [3185]={ + [3289]={ [1]={ [1]={ limit={ @@ -68107,7 +70195,7 @@ return { [1]="fishing_bite_sensitivity_+%" } }, - [3186]={ + [3290]={ [1]={ [1]={ limit={ @@ -68136,7 +70224,7 @@ return { [1]="cold_damage_+%_per_1%_block_chance" } }, - [3187]={ + [3291]={ [1]={ [1]={ limit={ @@ -68165,7 +70253,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen" } }, - [3188]={ + [3292]={ [1]={ [1]={ limit={ @@ -68181,7 +70269,7 @@ return { [1]="reduce_enemy_cold_resistance_with_weapons_%" } }, - [3189]={ + [3293]={ [1]={ [1]={ limit={ @@ -68197,7 +70285,7 @@ return { [1]="reduce_enemy_fire_resistance_with_weapons_%" } }, - [3190]={ + [3294]={ [1]={ [1]={ limit={ @@ -68213,7 +70301,7 @@ return { [1]="reduce_enemy_lightning_resistance_with_weapons_%" } }, - [3191]={ + [3295]={ [1]={ [1]={ limit={ @@ -68229,7 +70317,7 @@ return { [1]="reduce_enemy_chaos_resistance_with_weapons_%" } }, - [3192]={ + [3296]={ [1]={ [1]={ limit={ @@ -68258,7 +70346,7 @@ return { [1]="inquisitor_aura_elemental_damage_+%_final" } }, - [3193]={ + [3297]={ [1]={ [1]={ limit={ @@ -68287,7 +70375,7 @@ return { [1]="support_gem_elemental_damage_+%_final" } }, - [3194]={ + [3298]={ [1]={ [1]={ limit={ @@ -68312,7 +70400,7 @@ return { [1]="map_monster_drop_higher_level_gear" } }, - [3195]={ + [3299]={ [1]={ [1]={ limit={ @@ -68328,7 +70416,7 @@ return { [1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity" } }, - [3196]={ + [3300]={ [1]={ [1]={ limit={ @@ -68344,7 +70432,7 @@ return { [1]="base_should_have_onslaught_from_stat" } }, - [3197]={ + [3301]={ [1]={ [1]={ limit={ @@ -68360,7 +70448,7 @@ return { [1]="silver_flask_display_onslaught" } }, - [3198]={ + [3302]={ [1]={ [1]={ limit={ @@ -68376,7 +70464,7 @@ return { [1]="reduce_enemy_elemental_resistance_with_weapons_%" } }, - [3199]={ + [3303]={ [1]={ [1]={ limit={ @@ -68401,7 +70489,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [3200]={ + [3304]={ [1]={ [1]={ limit={ @@ -68426,7 +70514,7 @@ return { [1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy" } }, - [3201]={ + [3305]={ [1]={ [1]={ limit={ @@ -68442,7 +70530,7 @@ return { [1]="add_power_charge_on_hit_%" } }, - [3202]={ + [3306]={ [1]={ [1]={ limit={ @@ -68458,7 +70546,7 @@ return { [1]="lose_all_power_charges_on_reaching_maximum_power_charges" } }, - [3203]={ + [3307]={ [1]={ [1]={ limit={ @@ -68474,7 +70562,7 @@ return { [1]="shocked_for_4_seconds_on_reaching_maximum_power_charges" } }, - [3204]={ + [3308]={ [1]={ [1]={ limit={ @@ -68490,7 +70578,7 @@ return { [1]="gain_frenzy_charge_on_reaching_maximum_power_charges" } }, - [3205]={ + [3309]={ [1]={ [1]={ limit={ @@ -68506,7 +70594,7 @@ return { [1]="is_petrified" } }, - [3206]={ + [3310]={ [1]={ [1]={ limit={ @@ -68522,7 +70610,7 @@ return { [1]="add_endurance_charge_on_gain_power_charge_%" } }, - [3207]={ + [3311]={ [1]={ [1]={ limit={ @@ -68551,7 +70639,7 @@ return { [1]="stacking_damage_+%_on_kill_for_4_seconds" } }, - [3208]={ + [3312]={ [1]={ [1]={ limit={ @@ -68580,7 +70668,7 @@ return { [1]="attack_and_cast_speed_+%_while_totem_active" } }, - [3209]={ + [3313]={ [1]={ [1]={ limit={ @@ -68596,7 +70684,7 @@ return { [1]="number_of_additional_totems_allowed_on_kill_for_8_seconds" } }, - [3210]={ + [3314]={ [1]={ [1]={ limit={ @@ -68625,7 +70713,7 @@ return { [1]="map_monsters_base_self_critical_strike_multiplier_-%" } }, - [3211]={ + [3315]={ [1]={ [1]={ limit={ @@ -68650,7 +70738,7 @@ return { [1]="power_frenzy_or_endurance_charge_on_kill_%" } }, - [3212]={ + [3316]={ [1]={ [1]={ limit={ @@ -68666,7 +70754,7 @@ return { [1]="immune_to_poison" } }, - [3213]={ + [3317]={ [1]={ [1]={ limit={ @@ -68695,7 +70783,7 @@ return { [1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element" } }, - [3214]={ + [3318]={ [1]={ [1]={ limit={ @@ -68724,7 +70812,7 @@ return { [1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element" } }, - [3215]={ + [3319]={ [1]={ [1]={ limit={ @@ -68753,7 +70841,7 @@ return { [1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds" } }, - [3216]={ + [3320]={ [1]={ [1]={ limit={ @@ -68769,7 +70857,7 @@ return { [1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill" } }, - [3217]={ + [3321]={ [1]={ [1]={ limit={ @@ -68785,7 +70873,7 @@ return { [1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill" } }, - [3218]={ + [3322]={ [1]={ [1]={ limit={ @@ -68801,7 +70889,7 @@ return { [1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill" } }, - [3219]={ + [3323]={ [1]={ [1]={ limit={ @@ -68817,7 +70905,7 @@ return { [1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%" } }, - [3220]={ + [3324]={ [1]={ [1]={ limit={ @@ -68833,7 +70921,7 @@ return { [1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%" } }, - [3221]={ + [3325]={ [1]={ [1]={ limit={ @@ -68849,7 +70937,7 @@ return { [1]="knockback_on_counterattack_%" } }, - [3222]={ + [3326]={ [1]={ [1]={ limit={ @@ -68878,7 +70966,7 @@ return { [1]="melee_ancestor_totem_damage_+%" } }, - [3223]={ + [3327]={ [1]={ [1]={ limit={ @@ -68907,7 +70995,7 @@ return { [1]="animate_weapon_damage_+%" } }, - [3224]={ + [3328]={ [1]={ [1]={ limit={ @@ -68936,7 +71024,7 @@ return { [1]="burning_arrow_damage_+%" } }, - [3225]={ + [3329]={ [1]={ [1]={ limit={ @@ -68965,7 +71053,7 @@ return { [1]="cleave_damage_+%" } }, - [3226]={ + [3330]={ [1]={ [1]={ limit={ @@ -68994,7 +71082,7 @@ return { [1]="double_strike_damage_+%" } }, - [3227]={ + [3331]={ [1]={ [1]={ limit={ @@ -69023,7 +71111,7 @@ return { [1]="dual_strike_damage_+%" } }, - [3228]={ + [3332]={ [1]={ [1]={ limit={ @@ -69052,7 +71140,7 @@ return { [1]="fire_trap_damage_+%" } }, - [3229]={ + [3333]={ [1]={ [1]={ limit={ @@ -69081,7 +71169,7 @@ return { [1]="fireball_damage_+%" } }, - [3230]={ + [3334]={ [1]={ [1]={ limit={ @@ -69110,7 +71198,7 @@ return { [1]="freezing_pulse_damage_+%" } }, - [3231]={ + [3335]={ [1]={ [1]={ limit={ @@ -69139,7 +71227,7 @@ return { [1]="glacial_hammer_damage_+%" } }, - [3232]={ + [3336]={ [1]={ [1]={ limit={ @@ -69168,7 +71256,7 @@ return { [1]="ground_slam_damage_+%" } }, - [3233]={ + [3337]={ [1]={ [1]={ limit={ @@ -69197,7 +71285,7 @@ return { [1]="heavy_strike_damage_+%" } }, - [3234]={ + [3338]={ [1]={ [1]={ limit={ @@ -69226,7 +71314,7 @@ return { [1]="infernal_blow_damage_+%" } }, - [3235]={ + [3339]={ [1]={ [1]={ limit={ @@ -69255,7 +71343,7 @@ return { [1]="lightning_strike_damage_+%" } }, - [3236]={ + [3340]={ [1]={ [1]={ limit={ @@ -69284,7 +71372,7 @@ return { [1]="lightning_tendrils_damage_+%" } }, - [3237]={ + [3341]={ [1]={ [1]={ limit={ @@ -69313,7 +71401,7 @@ return { [1]="magma_orb_damage_+%" } }, - [3238]={ + [3342]={ [1]={ [1]={ limit={ @@ -69342,7 +71430,7 @@ return { [1]="molten_strike_damage_+%" } }, - [3239]={ + [3343]={ [1]={ [1]={ limit={ @@ -69371,7 +71459,7 @@ return { [1]="zombie_damage_+%" } }, - [3240]={ + [3344]={ [1]={ [1]={ limit={ @@ -69400,7 +71488,7 @@ return { [1]="reave_damage_+%" } }, - [3241]={ + [3345]={ [1]={ [1]={ limit={ @@ -69429,7 +71517,7 @@ return { [1]="spark_damage_+%" } }, - [3242]={ + [3346]={ [1]={ [1]={ limit={ @@ -69458,7 +71546,7 @@ return { [1]="spectral_throw_damage_+%" } }, - [3243]={ + [3347]={ [1]={ [1]={ limit={ @@ -69487,7 +71575,7 @@ return { [1]="split_arrow_damage_+%" } }, - [3244]={ + [3348]={ [1]={ [1]={ limit={ @@ -69516,7 +71604,7 @@ return { [1]="ethereal_knives_damage_+%" } }, - [3245]={ + [3349]={ [1]={ [1]={ limit={ @@ -69545,7 +71633,7 @@ return { [1]="ice_shot_damage_+%" } }, - [3246]={ + [3350]={ [1]={ [1]={ limit={ @@ -69574,7 +71662,7 @@ return { [1]="rain_of_arrows_damage_+%" } }, - [3247]={ + [3351]={ [1]={ [1]={ limit={ @@ -69603,7 +71691,7 @@ return { [1]="raging_spirit_damage_+%" } }, - [3248]={ + [3352]={ [1]={ [1]={ limit={ @@ -69632,7 +71720,7 @@ return { [1]="viper_strike_damage_+%" } }, - [3249]={ + [3353]={ [1]={ [1]={ limit={ @@ -69661,7 +71749,7 @@ return { [1]="flicker_strike_damage_+%" } }, - [3250]={ + [3354]={ [1]={ [1]={ limit={ @@ -69690,7 +71778,7 @@ return { [1]="leap_slam_damage_+%" } }, - [3251]={ + [3355]={ [1]={ [1]={ limit={ @@ -69719,7 +71807,7 @@ return { [1]="lightning_arrow_damage_+%" } }, - [3252]={ + [3356]={ [1]={ [1]={ limit={ @@ -69748,7 +71836,7 @@ return { [1]="lightning_warp_damage_+%" } }, - [3253]={ + [3357]={ [1]={ [1]={ limit={ @@ -69777,7 +71865,7 @@ return { [1]="puncture_damage_+%" } }, - [3254]={ + [3358]={ [1]={ [1]={ limit={ @@ -69806,7 +71894,7 @@ return { [1]="shield_charge_damage_+%" } }, - [3255]={ + [3359]={ [1]={ [1]={ limit={ @@ -69835,7 +71923,7 @@ return { [1]="skeletons_damage_+%" } }, - [3256]={ + [3360]={ [1]={ [1]={ limit={ @@ -69864,7 +71952,7 @@ return { [1]="arc_damage_+%" } }, - [3257]={ + [3361]={ [1]={ [1]={ limit={ @@ -69893,7 +71981,7 @@ return { [1]="barrage_damage_+%" } }, - [3258]={ + [3362]={ [1]={ [1]={ limit={ @@ -69922,7 +72010,7 @@ return { [1]="fire_nova_mine_damage_+%" } }, - [3259]={ + [3363]={ [1]={ [1]={ limit={ @@ -69951,7 +72039,7 @@ return { [1]="fire_storm_damage_+%" } }, - [3260]={ + [3364]={ [1]={ [1]={ limit={ @@ -69980,7 +72068,7 @@ return { [1]="flame_surge_damage_+%" } }, - [3261]={ + [3365]={ [1]={ [1]={ limit={ @@ -70009,7 +72097,7 @@ return { [1]="ice_nova_damage_+%" } }, - [3262]={ + [3366]={ [1]={ [1]={ limit={ @@ -70038,7 +72126,7 @@ return { [1]="ice_spear_damage_+%" } }, - [3263]={ + [3367]={ [1]={ [1]={ limit={ @@ -70067,7 +72155,7 @@ return { [1]="incinerate_damage_+%" } }, - [3264]={ + [3368]={ [1]={ [1]={ limit={ @@ -70096,7 +72184,7 @@ return { [1]="power_siphon_damage_+%" } }, - [3265]={ + [3369]={ [1]={ [1]={ limit={ @@ -70125,7 +72213,7 @@ return { [1]="searing_bond_damage_+%" } }, - [3266]={ + [3370]={ [1]={ [1]={ limit={ @@ -70154,7 +72242,7 @@ return { [1]="static_strike_damage_+%" } }, - [3267]={ + [3371]={ [1]={ [1]={ limit={ @@ -70183,7 +72271,7 @@ return { [1]="storm_call_damage_+%" } }, - [3268]={ + [3372]={ [1]={ [1]={ limit={ @@ -70212,7 +72300,7 @@ return { [1]="sweep_damage_+%" } }, - [3269]={ + [3373]={ [1]={ [1]={ limit={ @@ -70241,7 +72329,7 @@ return { [1]="frenzy_damage_+%" } }, - [3270]={ + [3374]={ [1]={ [1]={ limit={ @@ -70270,7 +72358,7 @@ return { [1]="righteous_fire_damage_+%" } }, - [3271]={ + [3375]={ [1]={ [1]={ limit={ @@ -70299,7 +72387,7 @@ return { [1]="elemental_hit_damage_+%" } }, - [3272]={ + [3376]={ [1]={ [1]={ limit={ @@ -70328,7 +72416,7 @@ return { [1]="cyclone_damage_+%" } }, - [3273]={ + [3377]={ [1]={ [1]={ limit={ @@ -70357,7 +72445,7 @@ return { [1]="tornado_shot_damage_+%" } }, - [3274]={ + [3378]={ [1]={ [1]={ limit={ @@ -70386,7 +72474,7 @@ return { [1]="arctic_breath_damage_+%" } }, - [3275]={ + [3379]={ [1]={ [1]={ limit={ @@ -70415,7 +72503,7 @@ return { [1]="explosive_arrow_damage_+%" } }, - [3276]={ + [3380]={ [1]={ [1]={ limit={ @@ -70444,7 +72532,7 @@ return { [1]="flameblast_damage_+%" } }, - [3277]={ + [3381]={ [1]={ [1]={ limit={ @@ -70473,7 +72561,7 @@ return { [1]="glacial_cascade_damage_+%" } }, - [3278]={ + [3382]={ [1]={ [1]={ limit={ @@ -70502,7 +72590,7 @@ return { [1]="ice_crash_damage_+%" } }, - [3279]={ + [3383]={ [1]={ [1]={ limit={ @@ -70531,7 +72619,7 @@ return { [1]="kinetic_blast_damage_+%" } }, - [3280]={ + [3384]={ [1]={ [1]={ limit={ @@ -70560,7 +72648,7 @@ return { [1]="shock_nova_damage_+%" } }, - [3281]={ + [3385]={ [1]={ [1]={ limit={ @@ -70589,7 +72677,7 @@ return { [1]="shockwave_totem_damage_+%" } }, - [3282]={ + [3386]={ [1]={ [1]={ limit={ @@ -70618,7 +72706,7 @@ return { [1]="wild_strike_damage_+%" } }, - [3283]={ + [3387]={ [1]={ [1]={ limit={ @@ -70647,7 +72735,7 @@ return { [1]="detonate_dead_damage_+%" } }, - [3284]={ + [3388]={ [1]={ [1]={ limit={ @@ -70676,7 +72764,7 @@ return { [1]="caustic_arrow_damage_+%" } }, - [3285]={ + [3389]={ [1]={ [1]={ [1]={ @@ -70752,7 +72840,7 @@ return { [2]="caustic_arrow_withered_base_duration_ms" } }, - [3286]={ + [3390]={ [1]={ [1]={ limit={ @@ -70768,7 +72856,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [3287]={ + [3391]={ [1]={ [1]={ limit={ @@ -70784,7 +72872,7 @@ return { [1]="you_cannot_have_non_golem_minions" } }, - [3288]={ + [3392]={ [1]={ [1]={ limit={ @@ -70817,7 +72905,7 @@ return { [1]="golem_scale_+%" } }, - [3289]={ + [3393]={ [1]={ [1]={ limit={ @@ -70846,7 +72934,7 @@ return { [1]="stone_golem_damage_+%" } }, - [3290]={ + [3394]={ [1]={ [1]={ limit={ @@ -70875,7 +72963,7 @@ return { [1]="flame_golem_damage_+%" } }, - [3291]={ + [3395]={ [1]={ [1]={ limit={ @@ -70904,7 +72992,7 @@ return { [1]="ice_golem_damage_+%" } }, - [3292]={ + [3396]={ [1]={ [1]={ limit={ @@ -70933,7 +73021,7 @@ return { [1]="lightning_golem_damage_+%" } }, - [3293]={ + [3397]={ [1]={ [1]={ limit={ @@ -70962,7 +73050,7 @@ return { [1]="chaos_golem_damage_+%" } }, - [3294]={ + [3398]={ [1]={ [1]={ limit={ @@ -70991,7 +73079,7 @@ return { [1]="damage_+%_if_golem_summoned_in_past_8_seconds" } }, - [3295]={ + [3399]={ [1]={ [1]={ limit={ @@ -71020,7 +73108,7 @@ return { [1]="golem_damage_+%_if_summoned_in_past_8_seconds" } }, - [3296]={ + [3400]={ [1]={ [1]={ limit={ @@ -71053,7 +73141,7 @@ return { [1]="unique_primordial_tether_golem_damage_+%_final" } }, - [3297]={ + [3401]={ [1]={ [1]={ limit={ @@ -71082,7 +73170,7 @@ return { [1]="dominating_blow_minion_damage_+%" } }, - [3298]={ + [3402]={ [1]={ [1]={ limit={ @@ -71111,7 +73199,7 @@ return { [1]="dominating_blow_skill_attack_damage_+%" } }, - [3299]={ + [3403]={ [1]={ [1]={ limit={ @@ -71140,7 +73228,7 @@ return { [1]="cold_snap_damage_+%" } }, - [3300]={ + [3404]={ [1]={ [1]={ limit={ @@ -71169,7 +73257,7 @@ return { [1]="flame_totem_damage_+%" } }, - [3301]={ + [3405]={ [1]={ [1]={ limit={ @@ -71198,7 +73286,7 @@ return { [1]="animate_guardian_damage_+%" } }, - [3302]={ + [3406]={ [1]={ [1]={ limit={ @@ -71227,7 +73315,7 @@ return { [1]="bear_trap_damage_+%" } }, - [3303]={ + [3407]={ [1]={ [1]={ limit={ @@ -71256,7 +73344,7 @@ return { [1]="frost_wall_damage_+%" } }, - [3304]={ + [3408]={ [1]={ [1]={ limit={ @@ -71285,7 +73373,7 @@ return { [1]="molten_shell_damage_+%" } }, - [3305]={ + [3409]={ [1]={ [1]={ limit={ @@ -71314,7 +73402,7 @@ return { [1]="reckoning_damage_+%" } }, - [3306]={ + [3410]={ [1]={ [1]={ limit={ @@ -71343,7 +73431,7 @@ return { [1]="vigilant_strike_damage_+%" } }, - [3307]={ + [3411]={ [1]={ [1]={ limit={ @@ -71372,7 +73460,7 @@ return { [1]="whirling_blades_damage_+%" } }, - [3308]={ + [3412]={ [1]={ [1]={ limit={ @@ -71401,7 +73489,7 @@ return { [1]="flame_dash_damage_+%" } }, - [3309]={ + [3413]={ [1]={ [1]={ limit={ @@ -71430,7 +73518,7 @@ return { [1]="freeze_mine_damage_+%" } }, - [3310]={ + [3414]={ [1]={ [1]={ limit={ @@ -71459,7 +73547,7 @@ return { [1]="herald_of_ash_damage_+%" } }, - [3311]={ + [3415]={ [1]={ [1]={ limit={ @@ -71488,7 +73576,7 @@ return { [1]="herald_of_ice_damage_+%" } }, - [3312]={ + [3416]={ [1]={ [1]={ limit={ @@ -71517,7 +73605,7 @@ return { [1]="herald_of_thunder_damage_+%" } }, - [3313]={ + [3417]={ [1]={ [1]={ limit={ @@ -71546,7 +73634,7 @@ return { [1]="tempest_shield_damage_+%" } }, - [3314]={ + [3418]={ [1]={ [1]={ limit={ @@ -71575,7 +73663,7 @@ return { [1]="desecrate_damage_+%" } }, - [3315]={ + [3419]={ [1]={ [1]={ limit={ @@ -71604,7 +73692,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_damage_+%" } }, - [3316]={ + [3420]={ [1]={ [1]={ limit={ @@ -71633,7 +73721,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_damage_+%" } }, - [3317]={ + [3421]={ [1]={ [1]={ limit={ @@ -71662,7 +73750,7 @@ return { [1]="riposte_damage_+%" } }, - [3318]={ + [3422]={ [1]={ [1]={ limit={ @@ -71691,7 +73779,7 @@ return { [1]="vengeance_damage_+%" } }, - [3319]={ + [3423]={ [1]={ [1]={ limit={ @@ -71720,7 +73808,7 @@ return { [1]="converted_enemies_damage_+%" } }, - [3320]={ + [3424]={ [1]={ [1]={ limit={ @@ -71749,7 +73837,7 @@ return { [1]="abyssal_cry_damage_+%" } }, - [3321]={ + [3425]={ [1]={ [1]={ limit={ @@ -71778,7 +73866,7 @@ return { [1]="shrapnel_shot_damage_+%" } }, - [3322]={ + [3426]={ [1]={ [1]={ limit={ @@ -71807,7 +73895,7 @@ return { [1]="blast_rain_damage_+%" } }, - [3323]={ + [3427]={ [1]={ [1]={ limit={ @@ -71836,7 +73924,7 @@ return { [1]="essence_drain_damage_+%" } }, - [3324]={ + [3428]={ [1]={ [1]={ limit={ @@ -71865,7 +73953,7 @@ return { [1]="contagion_damage_+%" } }, - [3325]={ + [3429]={ [1]={ [1]={ limit={ @@ -71894,7 +73982,7 @@ return { [1]="blade_vortex_damage_+%" } }, - [3326]={ + [3430]={ [1]={ [1]={ limit={ @@ -71923,7 +74011,7 @@ return { [1]="bladefall_damage_+%" } }, - [3327]={ + [3431]={ [1]={ [1]={ limit={ @@ -71952,7 +74040,7 @@ return { [1]="ice_trap_damage_+%" } }, - [3328]={ + [3432]={ [1]={ [1]={ limit={ @@ -71981,7 +74069,7 @@ return { [1]="charged_dash_damage_+%" } }, - [3329]={ + [3433]={ [1]={ [1]={ limit={ @@ -72010,7 +74098,7 @@ return { [1]="earthquake_damage_+%" } }, - [3330]={ + [3434]={ [1]={ [1]={ limit={ @@ -72039,7 +74127,7 @@ return { [1]="skeletal_chains_damage_+%" } }, - [3331]={ + [3435]={ [1]={ [1]={ limit={ @@ -72068,7 +74156,7 @@ return { [1]="storm_burst_damage_+%" } }, - [3332]={ + [3436]={ [1]={ [1]={ limit={ @@ -72097,7 +74185,7 @@ return { [1]="frost_bomb_damage_+%" } }, - [3333]={ + [3437]={ [1]={ [1]={ limit={ @@ -72126,7 +74214,7 @@ return { [1]="orb_of_storms_damage_+%" } }, - [3334]={ + [3438]={ [1]={ [1]={ limit={ @@ -72155,7 +74243,7 @@ return { [1]="siege_ballista_damage_+%" } }, - [3335]={ + [3439]={ [1]={ [1]={ limit={ @@ -72184,7 +74272,7 @@ return { [1]="blight_damage_+%" } }, - [3336]={ + [3440]={ [1]={ [1]={ limit={ @@ -72213,7 +74301,7 @@ return { [1]="shockwave_slam_damage_+%" } }, - [3337]={ + [3441]={ [1]={ [1]={ [1]={ @@ -72233,7 +74321,7 @@ return { [1]="life_regeneration_per_minute_%_while_frozen" } }, - [3338]={ + [3442]={ [1]={ [1]={ [1]={ @@ -72253,7 +74341,7 @@ return { [1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds" } }, - [3339]={ + [3443]={ [1]={ [1]={ limit={ @@ -72269,7 +74357,7 @@ return { [1]="occultist_immune_to_stun_while_has_energy_shield" } }, - [3340]={ + [3444]={ [1]={ [1]={ limit={ @@ -72285,7 +74373,7 @@ return { [1]="energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently" } }, - [3341]={ + [3445]={ [1]={ [1]={ limit={ @@ -72314,7 +74402,7 @@ return { [1]="hierophant_passive_damage_+%_final_per_totem" } }, - [3342]={ + [3446]={ [1]={ [1]={ limit={ @@ -72343,7 +74431,7 @@ return { [1]="totem_damage_+%_final_per_active_totem" } }, - [3343]={ + [3447]={ [1]={ [1]={ limit={ @@ -72359,7 +74447,7 @@ return { [1]="cannot_be_affected_by_flasks" } }, - [3344]={ + [3448]={ [1]={ [1]={ limit={ @@ -72375,7 +74463,7 @@ return { [1]="flasks_apply_to_your_zombies_and_spectres" } }, - [3345]={ + [3449]={ [1]={ [1]={ limit={ @@ -72391,7 +74479,7 @@ return { [1]="modifiers_to_minion_damage_also_affect_you" } }, - [3346]={ + [3450]={ [1]={ [1]={ limit={ @@ -72407,7 +74495,7 @@ return { [1]="additive_modifiers_to_minion_attack_speed_also_affect_you" } }, - [3347]={ + [3451]={ [1]={ [1]={ limit={ @@ -72423,7 +74511,7 @@ return { [1]="modifiers_to_minion_cast_speed_also_affect_you" } }, - [3348]={ + [3452]={ [1]={ [1]={ limit={ @@ -72439,7 +74527,7 @@ return { [1]="modifiers_to_minion_life_regeneration_also_affect_you" } }, - [3349]={ + [3453]={ [1]={ [1]={ limit={ @@ -72455,7 +74543,7 @@ return { [1]="modifiers_to_minion_movement_speed_also_affect_you" } }, - [3350]={ + [3454]={ [1]={ [1]={ limit={ @@ -72471,7 +74559,7 @@ return { [1]="non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds" } }, - [3351]={ + [3455]={ [1]={ [1]={ limit={ @@ -72487,7 +74575,7 @@ return { [1]="enemies_damage_taken_+%_while_cursed" } }, - [3352]={ + [3456]={ [1]={ [1]={ limit={ @@ -72503,7 +74591,7 @@ return { [1]="enemies_you_curse_have_malediction" } }, - [3353]={ + [3457]={ [1]={ [1]={ limit={ @@ -72519,7 +74607,7 @@ return { [1]="local_double_damage_to_chilled_enemies" } }, - [3354]={ + [3458]={ [1]={ [1]={ limit={ @@ -72535,7 +74623,7 @@ return { [1]="local_elemental_penetration_%" } }, - [3355]={ + [3459]={ [1]={ [1]={ limit={ @@ -72551,7 +74639,7 @@ return { [1]="local_fire_penetration_%" } }, - [3356]={ + [3460]={ [1]={ [1]={ limit={ @@ -72567,7 +74655,7 @@ return { [1]="local_cold_penetration_%" } }, - [3357]={ + [3461]={ [1]={ [1]={ limit={ @@ -72583,7 +74671,7 @@ return { [1]="local_lightning_penetration_%" } }, - [3358]={ + [3462]={ [1]={ [1]={ limit={ @@ -72612,7 +74700,7 @@ return { [1]="damage_while_no_frenzy_charges_+%" } }, - [3359]={ + [3463]={ [1]={ [1]={ limit={ @@ -72641,7 +74729,7 @@ return { [1]="critical_strike_chance_against_enemies_on_full_life_+%" } }, - [3360]={ + [3464]={ [1]={ [1]={ limit={ @@ -72662,7 +74750,7 @@ return { [2]="minion_attack_maximum_added_physical_damage" } }, - [3361]={ + [3465]={ [1]={ [1]={ limit={ @@ -72683,7 +74771,7 @@ return { [2]="minion_global_maximum_added_chaos_damage" } }, - [3362]={ + [3466]={ [1]={ [1]={ limit={ @@ -72704,7 +74792,7 @@ return { [2]="minion_global_maximum_added_cold_damage" } }, - [3363]={ + [3467]={ [1]={ [1]={ limit={ @@ -72725,7 +74813,7 @@ return { [2]="minion_global_maximum_added_fire_damage" } }, - [3364]={ + [3468]={ [1]={ [1]={ limit={ @@ -72746,7 +74834,7 @@ return { [2]="minion_global_maximum_added_lightning_damage" } }, - [3365]={ + [3469]={ [1]={ [1]={ limit={ @@ -72767,7 +74855,7 @@ return { [2]="minion_global_maximum_added_physical_damage" } }, - [3366]={ + [3470]={ [1]={ [1]={ limit={ @@ -72783,7 +74871,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_with_attacks" } }, - [3367]={ + [3471]={ [1]={ [1]={ limit={ @@ -72799,7 +74887,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_cold_with_attacks" } }, - [3368]={ + [3472]={ [1]={ [1]={ limit={ @@ -72815,7 +74903,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_lightning_with_attacks" } }, - [3369]={ + [3473]={ [1]={ [1]={ limit={ @@ -72831,7 +74919,7 @@ return { [1]="maximum_energy_shield_+_per_5_strength" } }, - [3370]={ + [3474]={ [1]={ [1]={ limit={ @@ -72847,7 +74935,7 @@ return { [1]="attack_always_crit" } }, - [3371]={ + [3475]={ [1]={ [1]={ limit={ @@ -72863,7 +74951,7 @@ return { [1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types" } }, - [3372]={ + [3476]={ [1]={ [1]={ limit={ @@ -72879,7 +74967,7 @@ return { [1]="guardian_nearby_enemies_cannot_gain_charges" } }, - [3373]={ + [3477]={ [1]={ [1]={ limit={ @@ -72895,7 +74983,7 @@ return { [1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%" } }, - [3374]={ + [3478]={ [1]={ [1]={ limit={ @@ -72911,7 +74999,7 @@ return { [1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield" } }, - [3375]={ + [3479]={ [1]={ [1]={ limit={ @@ -72927,7 +75015,7 @@ return { [1]="guardian_remove_curses_and_status_ailments_every_10_seconds" } }, - [3376]={ + [3480]={ [1]={ [1]={ [1]={ @@ -72947,7 +75035,7 @@ return { [1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds" } }, - [3377]={ + [3481]={ [1]={ [1]={ limit={ @@ -72963,7 +75051,7 @@ return { [1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3378]={ + [3482]={ [1]={ [1]={ limit={ @@ -72979,7 +75067,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3379]={ + [3483]={ [1]={ [1]={ limit={ @@ -72995,7 +75083,7 @@ return { [1]="active_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [3380]={ + [3484]={ [1]={ [1]={ limit={ @@ -73024,7 +75112,7 @@ return { [1]="totem_aura_enemy_damage_+%_final" } }, - [3381]={ + [3485]={ [1]={ [1]={ limit={ @@ -73053,7 +75141,7 @@ return { [1]="totem_aura_enemy_fire_and_physical_damage_taken_+%" } }, - [3382]={ + [3486]={ [1]={ [1]={ limit={ @@ -73082,7 +75170,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_when_first_set" } }, - [3383]={ + [3487]={ [1]={ [1]={ limit={ @@ -73111,7 +75199,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_after_4_seconds" } }, - [3384]={ + [3488]={ [1]={ [1]={ [1]={ @@ -73131,7 +75219,7 @@ return { [1]="local_weapon_base_crit_chance_permyriad_override" } }, - [3385]={ + [3489]={ [1]={ [1]={ limit={ @@ -73152,7 +75240,7 @@ return { [2]="trap_and_mine_maximum_added_physical_damage" } }, - [3386]={ + [3490]={ [1]={ [1]={ limit={ @@ -73177,7 +75265,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [3387]={ + [3491]={ [1]={ [1]={ limit={ @@ -73206,7 +75294,7 @@ return { [1]="physical_damage_over_time_per_10_dexterity_+%" } }, - [3388]={ + [3492]={ [1]={ [1]={ limit={ @@ -73235,7 +75323,7 @@ return { [1]="bleed_duration_per_12_intelligence_+%" } }, - [3389]={ + [3493]={ [1]={ [1]={ limit={ @@ -73251,7 +75339,7 @@ return { [1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit" } }, - [3390]={ + [3494]={ [1]={ [1]={ limit={ @@ -73280,7 +75368,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [3391]={ + [3495]={ [1]={ [1]={ limit={ @@ -73296,7 +75384,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [3392]={ + [3496]={ [1]={ [1]={ limit={ @@ -73325,7 +75413,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [3393]={ + [3497]={ [1]={ [1]={ limit={ @@ -73341,7 +75429,7 @@ return { [1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius" } }, - [3394]={ + [3498]={ [1]={ [1]={ limit={ @@ -73370,7 +75458,7 @@ return { [1]="cleave_radius_+%" } }, - [3395]={ + [3499]={ [1]={ [1]={ limit={ @@ -73399,7 +75487,7 @@ return { [1]="ground_slam_radius_+%" } }, - [3396]={ + [3500]={ [1]={ [1]={ limit={ @@ -73428,7 +75516,7 @@ return { [1]="infernal_blow_radius_+%" } }, - [3397]={ + [3501]={ [1]={ [1]={ limit={ @@ -73457,7 +75545,7 @@ return { [1]="lightning_tendrils_radius_+%" } }, - [3398]={ + [3502]={ [1]={ [1]={ limit={ @@ -73486,7 +75574,7 @@ return { [1]="magma_orb_radius_+%" } }, - [3399]={ + [3503]={ [1]={ [1]={ limit={ @@ -73515,7 +75603,7 @@ return { [1]="reave_radius_+%" } }, - [3400]={ + [3504]={ [1]={ [1]={ limit={ @@ -73544,7 +75632,7 @@ return { [1]="molten_strike_radius_+%" } }, - [3401]={ + [3505]={ [1]={ [1]={ limit={ @@ -73573,7 +75661,7 @@ return { [1]="ice_shot_radius_+%" } }, - [3402]={ + [3506]={ [1]={ [1]={ limit={ @@ -73602,7 +75690,7 @@ return { [1]="rain_of_arrows_radius_+%" } }, - [3403]={ + [3507]={ [1]={ [1]={ limit={ @@ -73631,7 +75719,7 @@ return { [1]="leap_slam_radius_+%" } }, - [3404]={ + [3508]={ [1]={ [1]={ limit={ @@ -73660,7 +75748,7 @@ return { [1]="lightning_arrow_radius_+%" } }, - [3405]={ + [3509]={ [1]={ [1]={ limit={ @@ -73689,7 +75777,7 @@ return { [1]="ice_nova_radius_+%" } }, - [3406]={ + [3510]={ [1]={ [1]={ limit={ @@ -73718,7 +75806,7 @@ return { [1]="static_strike_radius_+%" } }, - [3407]={ + [3511]={ [1]={ [1]={ limit={ @@ -73747,7 +75835,7 @@ return { [1]="storm_call_radius_+%" } }, - [3408]={ + [3512]={ [1]={ [1]={ limit={ @@ -73772,7 +75860,7 @@ return { [1]="sweep_add_endurance_charge_on_hit_%" } }, - [3409]={ + [3513]={ [1]={ [1]={ limit={ @@ -73801,7 +75889,7 @@ return { [1]="sweep_radius_+%" } }, - [3410]={ + [3514]={ [1]={ [1]={ limit={ @@ -73830,7 +75918,7 @@ return { [1]="righteous_fire_radius_+%" } }, - [3411]={ + [3515]={ [1]={ [1]={ limit={ @@ -73859,7 +75947,7 @@ return { [1]="arctic_breath_radius_+%" } }, - [3412]={ + [3516]={ [1]={ [1]={ limit={ @@ -73888,7 +75976,7 @@ return { [1]="ball_lightning_radius_+%" } }, - [3413]={ + [3517]={ [1]={ [1]={ limit={ @@ -73917,7 +76005,7 @@ return { [1]="explosive_arrow_radius_+%" } }, - [3414]={ + [3518]={ [1]={ [1]={ limit={ @@ -73946,7 +76034,7 @@ return { [1]="flameblast_radius_+%" } }, - [3415]={ + [3519]={ [1]={ [1]={ limit={ @@ -73975,7 +76063,7 @@ return { [1]="glacial_cascade_radius_+%" } }, - [3416]={ + [3520]={ [1]={ [1]={ limit={ @@ -74004,7 +76092,7 @@ return { [1]="wild_strike_radius_+%" } }, - [3417]={ + [3521]={ [1]={ [1]={ limit={ @@ -74033,7 +76121,7 @@ return { [1]="detonate_dead_radius_+%" } }, - [3418]={ + [3522]={ [1]={ [1]={ limit={ @@ -74062,7 +76150,7 @@ return { [1]="ice_crash_radius_+%" } }, - [3419]={ + [3523]={ [1]={ [1]={ limit={ @@ -74091,7 +76179,7 @@ return { [1]="kinetic_blast_radius_+%" } }, - [3420]={ + [3524]={ [1]={ [1]={ limit={ @@ -74120,7 +76208,7 @@ return { [1]="caustic_arrow_radius_+%" } }, - [3421]={ + [3525]={ [1]={ [1]={ limit={ @@ -74149,7 +76237,7 @@ return { [1]="cold_snap_radius_+%" } }, - [3422]={ + [3526]={ [1]={ [1]={ limit={ @@ -74178,7 +76266,7 @@ return { [1]="decoy_totem_radius_+%" } }, - [3423]={ + [3527]={ [1]={ [1]={ limit={ @@ -74207,7 +76295,7 @@ return { [1]="shock_nova_radius_+%" } }, - [3424]={ + [3528]={ [1]={ [1]={ limit={ @@ -74236,7 +76324,7 @@ return { [1]="freeze_mine_radius_+%" } }, - [3425]={ + [3529]={ [1]={ [1]={ limit={ @@ -74265,7 +76353,7 @@ return { [1]="shrapnel_shot_radius_+%" } }, - [3426]={ + [3530]={ [1]={ [1]={ limit={ @@ -74294,7 +76382,7 @@ return { [1]="blast_rain_radius_+%" } }, - [3427]={ + [3531]={ [1]={ [1]={ limit={ @@ -74323,7 +76411,7 @@ return { [1]="contagion_radius_+%" } }, - [3428]={ + [3532]={ [1]={ [1]={ limit={ @@ -74352,7 +76440,7 @@ return { [1]="wither_radius_+%" } }, - [3429]={ + [3533]={ [1]={ [1]={ limit={ @@ -74381,7 +76469,7 @@ return { [1]="blade_vortex_radius_+%" } }, - [3430]={ + [3534]={ [1]={ [1]={ limit={ @@ -74410,7 +76498,7 @@ return { [1]="bladefall_radius_+%" } }, - [3431]={ + [3535]={ [1]={ [1]={ limit={ @@ -74439,7 +76527,7 @@ return { [1]="ice_trap_radius_+%" } }, - [3432]={ + [3536]={ [1]={ [1]={ limit={ @@ -74468,7 +76556,7 @@ return { [1]="earthquake_radius_+%" } }, - [3433]={ + [3537]={ [1]={ [1]={ limit={ @@ -74497,7 +76585,7 @@ return { [1]="frost_bomb_radius_+%" } }, - [3434]={ + [3538]={ [1]={ [1]={ limit={ @@ -74526,7 +76614,7 @@ return { [1]="storm_cloud_radius_+%" } }, - [3435]={ + [3539]={ [1]={ [1]={ limit={ @@ -74555,7 +76643,7 @@ return { [1]="blight_radius_+%" } }, - [3436]={ + [3540]={ [1]={ [1]={ limit={ @@ -74584,7 +76672,7 @@ return { [1]="shockwave_slam_radius_+%" } }, - [3437]={ + [3541]={ [1]={ [1]={ limit={ @@ -74613,7 +76701,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [3438]={ + [3542]={ [1]={ [1]={ limit={ @@ -74642,7 +76730,7 @@ return { [1]="shockwave_totem_radius_+%" } }, - [3439]={ + [3543]={ [1]={ [1]={ limit={ @@ -74658,7 +76746,7 @@ return { [1]="charged_dash_area_of_effect_radius_+_of_final_explosion" } }, - [3440]={ + [3544]={ [1]={ [1]={ limit={ @@ -74687,7 +76775,7 @@ return { [1]="cleave_attack_speed_+%" } }, - [3441]={ + [3545]={ [1]={ [1]={ limit={ @@ -74716,7 +76804,7 @@ return { [1]="double_strike_attack_speed_+%" } }, - [3442]={ + [3546]={ [1]={ [1]={ limit={ @@ -74745,7 +76833,7 @@ return { [1]="dual_strike_attack_speed_+%" } }, - [3443]={ + [3547]={ [1]={ [1]={ limit={ @@ -74774,7 +76862,7 @@ return { [1]="heavy_strike_attack_speed_+%" } }, - [3444]={ + [3548]={ [1]={ [1]={ limit={ @@ -74803,7 +76891,7 @@ return { [1]="zombie_attack_speed_+%" } }, - [3445]={ + [3549]={ [1]={ [1]={ limit={ @@ -74832,7 +76920,7 @@ return { [1]="rain_of_arrows_attack_speed_+%" } }, - [3446]={ + [3550]={ [1]={ [1]={ limit={ @@ -74861,7 +76949,7 @@ return { [1]="leap_slam_attack_speed_+%" } }, - [3447]={ + [3551]={ [1]={ [1]={ limit={ @@ -74890,7 +76978,7 @@ return { [1]="shield_charge_attack_speed_+%" } }, - [3448]={ + [3552]={ [1]={ [1]={ limit={ @@ -74919,7 +77007,7 @@ return { [1]="barrage_attack_speed_+%" } }, - [3449]={ + [3553]={ [1]={ [1]={ limit={ @@ -74948,7 +77036,7 @@ return { [1]="elemental_hit_attack_speed_+%" } }, - [3450]={ + [3554]={ [1]={ [1]={ limit={ @@ -74977,7 +77065,7 @@ return { [1]="cyclone_attack_speed_+%" } }, - [3451]={ + [3555]={ [1]={ [1]={ limit={ @@ -75006,7 +77094,7 @@ return { [1]="power_siphon_attack_speed_+%" } }, - [3452]={ + [3556]={ [1]={ [1]={ limit={ @@ -75035,7 +77123,7 @@ return { [1]="siege_ballista_attack_speed_+%" } }, - [3453]={ + [3557]={ [1]={ [1]={ limit={ @@ -75064,7 +77152,7 @@ return { [1]="shockwave_slam_attack_speed_+%" } }, - [3454]={ + [3558]={ [1]={ [1]={ limit={ @@ -75093,7 +77181,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%" } }, - [3455]={ + [3559]={ [1]={ [1]={ limit={ @@ -75122,7 +77210,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%" } }, - [3456]={ + [3560]={ [1]={ [1]={ limit={ @@ -75151,7 +77239,7 @@ return { [1]="whirling_blades_attack_speed_+%" } }, - [3457]={ + [3561]={ [1]={ [1]={ limit={ @@ -75180,7 +77268,7 @@ return { [1]="spectre_attack_and_cast_speed_+%" } }, - [3458]={ + [3562]={ [1]={ [1]={ limit={ @@ -75209,7 +77297,7 @@ return { [1]="freezing_pulse_cast_speed_+%" } }, - [3459]={ + [3563]={ [1]={ [1]={ limit={ @@ -75238,7 +77326,7 @@ return { [1]="fireball_cast_speed_+%" } }, - [3460]={ + [3564]={ [1]={ [1]={ limit={ @@ -75267,7 +77355,7 @@ return { [1]="fire_nova_mine_cast_speed_+%" } }, - [3461]={ + [3565]={ [1]={ [1]={ limit={ @@ -75296,7 +77384,7 @@ return { [1]="lightning_warp_cast_speed_+%" } }, - [3462]={ + [3566]={ [1]={ [1]={ limit={ @@ -75325,7 +77413,7 @@ return { [1]="fire_trap_cooldown_speed_+%" } }, - [3463]={ + [3567]={ [1]={ [1]={ limit={ @@ -75354,7 +77442,7 @@ return { [1]="flicker_strike_cooldown_speed_+%" } }, - [3464]={ + [3568]={ [1]={ [1]={ limit={ @@ -75383,7 +77471,7 @@ return { [1]="cold_snap_cooldown_speed_+%" } }, - [3465]={ + [3569]={ [1]={ [1]={ limit={ @@ -75412,7 +77500,7 @@ return { [1]="convocation_cooldown_speed_+%" } }, - [3466]={ + [3570]={ [1]={ [1]={ limit={ @@ -75441,7 +77529,7 @@ return { [1]="bear_trap_cooldown_speed_+%" } }, - [3467]={ + [3571]={ [1]={ [1]={ limit={ @@ -75470,7 +77558,7 @@ return { [1]="frost_wall_cooldown_speed_+%" } }, - [3468]={ + [3572]={ [1]={ [1]={ limit={ @@ -75499,7 +77587,7 @@ return { [1]="reckoning_cooldown_speed_+%" } }, - [3469]={ + [3573]={ [1]={ [1]={ limit={ @@ -75528,7 +77616,7 @@ return { [1]="flame_dash_cooldown_speed_+%" } }, - [3470]={ + [3574]={ [1]={ [1]={ limit={ @@ -75557,7 +77645,7 @@ return { [1]="desecrate_cooldown_speed_+%" } }, - [3471]={ + [3575]={ [1]={ [1]={ limit={ @@ -75586,7 +77674,7 @@ return { [1]="blink_arrow_cooldown_speed_+%" } }, - [3472]={ + [3576]={ [1]={ [1]={ limit={ @@ -75615,7 +77703,7 @@ return { [1]="mirror_arrow_cooldown_speed_+%" } }, - [3473]={ + [3577]={ [1]={ [1]={ limit={ @@ -75644,7 +77732,7 @@ return { [1]="riposte_cooldown_speed_+%" } }, - [3474]={ + [3578]={ [1]={ [1]={ limit={ @@ -75673,7 +77761,7 @@ return { [1]="vengeance_cooldown_speed_+%" } }, - [3475]={ + [3579]={ [1]={ [1]={ limit={ @@ -75702,7 +77790,7 @@ return { [1]="enduring_cry_cooldown_speed_+%" } }, - [3476]={ + [3580]={ [1]={ [1]={ limit={ @@ -75731,7 +77819,7 @@ return { [1]="frost_bomb_cooldown_speed_+%" } }, - [3477]={ + [3581]={ [1]={ [1]={ limit={ @@ -75760,7 +77848,7 @@ return { [1]="conversion_trap_cooldown_speed_+%" } }, - [3478]={ + [3582]={ [1]={ [1]={ limit={ @@ -75789,7 +77877,7 @@ return { [1]="ice_trap_cooldown_speed_+%" } }, - [3479]={ + [3583]={ [1]={ [1]={ limit={ @@ -75822,7 +77910,7 @@ return { [1]="ball_lightning_projectile_speed_+%" } }, - [3480]={ + [3584]={ [1]={ [1]={ limit={ @@ -75851,7 +77939,7 @@ return { [1]="freezing_pulse_projectile_speed_+%" } }, - [3481]={ + [3585]={ [1]={ [1]={ limit={ @@ -75880,7 +77968,7 @@ return { [1]="spark_projectile_speed_+%" } }, - [3482]={ + [3586]={ [1]={ [1]={ limit={ @@ -75909,7 +77997,7 @@ return { [1]="spectral_throw_projectile_speed_+%" } }, - [3483]={ + [3587]={ [1]={ [1]={ limit={ @@ -75938,7 +78026,7 @@ return { [1]="ethereal_knives_projectile_speed_+%" } }, - [3484]={ + [3588]={ [1]={ [1]={ limit={ @@ -75967,7 +78055,7 @@ return { [1]="flame_totem_projectile_speed_+%" } }, - [3485]={ + [3589]={ [1]={ [1]={ limit={ @@ -75996,7 +78084,7 @@ return { [1]="incinerate_projectile_speed_+%" } }, - [3486]={ + [3590]={ [1]={ [1]={ limit={ @@ -76025,7 +78113,7 @@ return { [1]="dominating_blow_duration_+%" } }, - [3487]={ + [3591]={ [1]={ [1]={ limit={ @@ -76054,7 +78142,7 @@ return { [1]="puncture_duration_+%" } }, - [3488]={ + [3592]={ [1]={ [1]={ limit={ @@ -76083,7 +78171,7 @@ return { [1]="immortal_call_duration_+%" } }, - [3489]={ + [3593]={ [1]={ [1]={ limit={ @@ -76112,7 +78200,7 @@ return { [1]="bone_offering_duration_+%" } }, - [3490]={ + [3594]={ [1]={ [1]={ limit={ @@ -76141,7 +78229,7 @@ return { [1]="flesh_offering_duration_+%" } }, - [3491]={ + [3595]={ [1]={ [1]={ limit={ @@ -76170,7 +78258,7 @@ return { [1]="spirit_offering_duration_+%" } }, - [3492]={ + [3596]={ [1]={ [1]={ limit={ @@ -76199,7 +78287,7 @@ return { [1]="smoke_mine_duration_+%" } }, - [3493]={ + [3597]={ [1]={ [1]={ limit={ @@ -76228,7 +78316,7 @@ return { [1]="frost_wall_duration_+%" } }, - [3494]={ + [3598]={ [1]={ [1]={ limit={ @@ -76257,36 +78345,7 @@ return { [1]="vigilant_strike_fortify_duration_+%" } }, - [3495]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Poacher's Mark Duration" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Poacher's Mark Duration" - } - }, - stats={ - [1]="poachers_mark_duration_+%" - } - }, - [3496]={ + [3599]={ [1]={ [1]={ limit={ @@ -76315,7 +78374,7 @@ return { [1]="projectile_weakness_duration_+%" } }, - [3497]={ + [3600]={ [1]={ [1]={ limit={ @@ -76344,36 +78403,7 @@ return { [1]="temporal_chains_duration_+%" } }, - [3498]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Warlord's Mark Duration" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Warlord's Mark Duration" - } - }, - stats={ - [1]="warlords_mark_duration_+%" - } - }, - [3499]={ + [3601]={ [1]={ [1]={ limit={ @@ -76402,7 +78432,7 @@ return { [1]="vulnerability_duration_+%" } }, - [3500]={ + [3602]={ [1]={ [1]={ limit={ @@ -76431,7 +78461,7 @@ return { [1]="punishment_duration_+%" } }, - [3501]={ + [3603]={ [1]={ [1]={ limit={ @@ -76460,7 +78490,7 @@ return { [1]="frostbite_duration_+%" } }, - [3502]={ + [3604]={ [1]={ [1]={ limit={ @@ -76489,7 +78519,7 @@ return { [1]="flammability_duration_+%" } }, - [3503]={ + [3605]={ [1]={ [1]={ limit={ @@ -76518,7 +78548,7 @@ return { [1]="enfeeble_duration_+%" } }, - [3504]={ + [3606]={ [1]={ [1]={ limit={ @@ -76547,7 +78577,7 @@ return { [1]="elemental_weakness_duration_+%" } }, - [3505]={ + [3607]={ [1]={ [1]={ limit={ @@ -76576,36 +78606,7 @@ return { [1]="conductivity_duration_+%" } }, - [3506]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Assassin's Mark Duration" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Assassin's Mark Duration" - } - }, - stats={ - [1]="assassins_mark_duration_+%" - } - }, - [3507]={ + [3608]={ [1]={ [1]={ limit={ @@ -76634,7 +78635,7 @@ return { [1]="desecrate_duration_+%" } }, - [3508]={ + [3609]={ [1]={ [1]={ limit={ @@ -76663,7 +78664,7 @@ return { [1]="rallying_cry_duration_+%" } }, - [3509]={ + [3610]={ [1]={ [1]={ limit={ @@ -76692,7 +78693,7 @@ return { [1]="abyssal_cry_duration_+%" } }, - [3510]={ + [3611]={ [1]={ [1]={ limit={ @@ -76721,7 +78722,7 @@ return { [1]="contagion_duration_+%" } }, - [3511]={ + [3612]={ [1]={ [1]={ limit={ @@ -76750,7 +78751,7 @@ return { [1]="siphon_duration_+%" } }, - [3512]={ + [3613]={ [1]={ [1]={ limit={ @@ -76779,7 +78780,7 @@ return { [1]="wither_duration_+%" } }, - [3513]={ + [3614]={ [1]={ [1]={ limit={ @@ -76808,7 +78809,7 @@ return { [1]="blade_vortex_duration_+%" } }, - [3514]={ + [3615]={ [1]={ [1]={ limit={ @@ -76841,7 +78842,7 @@ return { [1]="earthquake_duration_+%" } }, - [3515]={ + [3616]={ [1]={ [1]={ limit={ @@ -76870,7 +78871,7 @@ return { [1]="blight_duration_+%" } }, - [3516]={ + [3617]={ [1]={ [1]={ limit={ @@ -76899,7 +78900,7 @@ return { [1]="viper_strike_poison_duration_+%" } }, - [3517]={ + [3618]={ [1]={ [1]={ limit={ @@ -76928,7 +78929,7 @@ return { [1]="firestorm_duration_+%" } }, - [3518]={ + [3619]={ [1]={ [1]={ limit={ @@ -76957,7 +78958,7 @@ return { [1]="static_strike_duration_+%" } }, - [3519]={ + [3620]={ [1]={ [1]={ limit={ @@ -76990,7 +78991,7 @@ return { [1]="storm_call_duration_+%" } }, - [3520]={ + [3621]={ [1]={ [1]={ limit={ @@ -77019,7 +79020,7 @@ return { [1]="arctic_breath_duration_+%" } }, - [3521]={ + [3622]={ [1]={ [1]={ limit={ @@ -77052,7 +79053,7 @@ return { [1]="lightning_warp_duration_+%" } }, - [3522]={ + [3623]={ [1]={ [1]={ limit={ @@ -77081,7 +79082,7 @@ return { [1]="ice_shot_duration_+%" } }, - [3523]={ + [3624]={ [1]={ [1]={ limit={ @@ -77110,7 +79111,7 @@ return { [1]="caustic_arrow_duration_+%" } }, - [3524]={ + [3625]={ [1]={ [1]={ limit={ @@ -77139,7 +79140,7 @@ return { [1]="double_strike_critical_strike_chance_+%" } }, - [3525]={ + [3626]={ [1]={ [1]={ limit={ @@ -77168,7 +79169,7 @@ return { [1]="dual_strike_critical_strike_chance_+%" } }, - [3526]={ + [3627]={ [1]={ [1]={ limit={ @@ -77197,7 +79198,7 @@ return { [1]="split_arrow_critical_strike_chance_+%" } }, - [3527]={ + [3628]={ [1]={ [1]={ limit={ @@ -77226,7 +79227,7 @@ return { [1]="viper_strike_critical_strike_chance_+%" } }, - [3528]={ + [3629]={ [1]={ [1]={ limit={ @@ -77255,7 +79256,7 @@ return { [1]="flameblast_critical_strike_chance_+%" } }, - [3529]={ + [3630]={ [1]={ [1]={ limit={ @@ -77284,7 +79285,7 @@ return { [1]="flame_surge_critical_strike_chance_+%" } }, - [3530]={ + [3631]={ [1]={ [1]={ limit={ @@ -77313,7 +79314,7 @@ return { [1]="tornado_shot_critical_strike_chance_+%" } }, - [3531]={ + [3632]={ [1]={ [1]={ limit={ @@ -77342,7 +79343,7 @@ return { [1]="storm_cloud_critical_strike_chance_+%" } }, - [3532]={ + [3633]={ [1]={ [1]={ limit={ @@ -77371,7 +79372,7 @@ return { [1]="bladefall_critical_strike_chance_+%" } }, - [3533]={ + [3634]={ [1]={ [1]={ limit={ @@ -77396,7 +79397,7 @@ return { [1]="lightning_strike_num_of_additional_projectiles" } }, - [3534]={ + [3635]={ [1]={ [1]={ limit={ @@ -77421,7 +79422,7 @@ return { [1]="molten_strike_num_of_additional_projectiles" } }, - [3535]={ + [3636]={ [1]={ [1]={ limit={ @@ -77446,7 +79447,7 @@ return { [1]="spark_num_of_additional_projectiles" } }, - [3536]={ + [3637]={ [1]={ [1]={ limit={ @@ -77471,7 +79472,7 @@ return { [1]="split_arrow_num_of_additional_projectiles" } }, - [3537]={ + [3638]={ [1]={ [1]={ limit={ @@ -77496,7 +79497,7 @@ return { [1]="barrage_num_of_additional_projectiles" } }, - [3538]={ + [3639]={ [1]={ [1]={ limit={ @@ -77521,7 +79522,7 @@ return { [1]="tornado_shot_num_of_secondary_projectiles" } }, - [3539]={ + [3640]={ [1]={ [1]={ limit={ @@ -77546,7 +79547,7 @@ return { [1]="magma_orb_num_of_additional_projectiles_in_chain" } }, - [3540]={ + [3641]={ [1]={ [1]={ limit={ @@ -77571,7 +79572,7 @@ return { [1]="arc_num_of_additional_projectiles_in_chain" } }, - [3541]={ + [3642]={ [1]={ [1]={ limit={ @@ -77596,7 +79597,7 @@ return { [1]="flame_totem_num_of_additional_projectiles" } }, - [3542]={ + [3643]={ [1]={ [1]={ limit={ @@ -77621,7 +79622,7 @@ return { [1]="lightning_strike_additional_pierce" } }, - [3543]={ + [3644]={ [1]={ [1]={ limit={ @@ -77646,7 +79647,7 @@ return { [1]="lightning_trap_additional_pierce" } }, - [3544]={ + [3645]={ [1]={ [1]={ limit={ @@ -77662,7 +79663,7 @@ return { [1]="burning_arrow_physical_damage_%_to_gain_as_fire_damage" } }, - [3545]={ + [3646]={ [1]={ [1]={ limit={ @@ -77678,7 +79679,7 @@ return { [1]="infernal_blow_physical_damage_%_to_gain_as_fire_damage" } }, - [3546]={ + [3647]={ [1]={ [1]={ limit={ @@ -77707,7 +79708,7 @@ return { [1]="fire_trap_burning_damage_+%" } }, - [3547]={ + [3648]={ [1]={ [1]={ limit={ @@ -77736,7 +79737,7 @@ return { [1]="glacial_hammer_freeze_chance_%" } }, - [3548]={ + [3649]={ [1]={ [1]={ limit={ @@ -77761,7 +79762,7 @@ return { [1]="ice_nova_freeze_chance_%" } }, - [3549]={ + [3650]={ [1]={ [1]={ limit={ @@ -77790,7 +79791,7 @@ return { [1]="reave_attack_speed_per_reave_stack_+%" } }, - [3550]={ + [3651]={ [1]={ [1]={ limit={ @@ -77823,7 +79824,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [3551]={ + [3652]={ [1]={ [1]={ limit={ @@ -77852,7 +79853,7 @@ return { [1]="flicker_strike_damage_+%_per_frenzy_charge" } }, - [3552]={ + [3653]={ [1]={ [1]={ limit={ @@ -77868,7 +79869,7 @@ return { [1]="puncture_maim_on_hit_%_chance" } }, - [3553]={ + [3654]={ [1]={ [1]={ limit={ @@ -77897,23 +79898,7 @@ return { [1]="arc_shock_chance_%" } }, - [3554]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Fire Nova Mine repeats an additional {0} times" - } - }, - stats={ - [1]="fire_nova_mine_num_of_additional_repeats" - } - }, - [3555]={ + [3655]={ [1]={ [1]={ limit={ @@ -77942,7 +79927,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [3556]={ + [3656]={ [1]={ [1]={ limit={ @@ -77971,7 +79956,7 @@ return { [1]="flame_surge_damage_+%_vs_burning_enemies" } }, - [3557]={ + [3657]={ [1]={ [1]={ limit={ @@ -77987,7 +79972,7 @@ return { [1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike" } }, - [3558]={ + [3658]={ [1]={ [1]={ limit={ @@ -78003,7 +79988,7 @@ return { [1]="power_siphon_%_chance_to_gain_power_charge_on_kill" } }, - [3559]={ + [3659]={ [1]={ [1]={ limit={ @@ -78032,7 +80017,7 @@ return { [1]="melee_ancestor_totem_placement_speed_+%" } }, - [3560]={ + [3660]={ [1]={ [1]={ limit={ @@ -78061,7 +80046,7 @@ return { [1]="searing_bond_totem_placement_speed_+%" } }, - [3561]={ + [3661]={ [1]={ [1]={ limit={ @@ -78077,7 +80062,7 @@ return { [1]="sweep_knockback_chance_%" } }, - [3562]={ + [3662]={ [1]={ [1]={ limit={ @@ -78106,7 +80091,7 @@ return { [1]="frenzy_damage_+%_per_frenzy_charge" } }, - [3563]={ + [3663]={ [1]={ [1]={ limit={ @@ -78122,7 +80107,7 @@ return { [1]="frenzy_%_chance_to_gain_additional_frenzy_charge" } }, - [3564]={ + [3664]={ [1]={ [1]={ limit={ @@ -78138,7 +80123,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_gain_as_cold_damage" } }, - [3565]={ + [3665]={ [1]={ [1]={ limit={ @@ -78154,7 +80139,7 @@ return { [1]="ice_crash_physical_damage_%_to_gain_as_cold_damage" } }, - [3566]={ + [3666]={ [1]={ [1]={ limit={ @@ -78170,7 +80155,7 @@ return { [1]="spectre_elemental_resistances_%" } }, - [3567]={ + [3667]={ [1]={ [1]={ limit={ @@ -78186,7 +80171,7 @@ return { [1]="zombie_elemental_resistances_%" } }, - [3568]={ + [3668]={ [1]={ [1]={ limit={ @@ -78202,7 +80187,7 @@ return { [1]="stone_golem_elemental_resistances_%" } }, - [3569]={ + [3669]={ [1]={ [1]={ limit={ @@ -78218,7 +80203,7 @@ return { [1]="flame_golem_elemental_resistances_%" } }, - [3570]={ + [3670]={ [1]={ [1]={ limit={ @@ -78234,7 +80219,7 @@ return { [1]="ice_golem_elemental_resistances_%" } }, - [3571]={ + [3671]={ [1]={ [1]={ limit={ @@ -78250,7 +80235,7 @@ return { [1]="lightning_golem_elemental_resistances_%" } }, - [3572]={ + [3672]={ [1]={ [1]={ limit={ @@ -78266,7 +80251,7 @@ return { [1]="chaos_golem_elemental_resistances_%" } }, - [3573]={ + [3673]={ [1]={ [1]={ limit={ @@ -78282,7 +80267,7 @@ return { [1]="animate_guardian_elemental_resistances_%" } }, - [3574]={ + [3674]={ [1]={ [1]={ limit={ @@ -78311,7 +80296,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [3575]={ + [3675]={ [1]={ [1]={ limit={ @@ -78336,7 +80321,7 @@ return { [1]="blast_rain_number_of_blasts" } }, - [3576]={ + [3676]={ [1]={ [1]={ limit={ @@ -78352,7 +80337,7 @@ return { [1]="blast_rain_single_additional_projectile" } }, - [3577]={ + [3677]={ [1]={ [1]={ limit={ @@ -78368,7 +80353,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [3578]={ + [3678]={ [1]={ [1]={ limit={ @@ -78384,7 +80369,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [3579]={ + [3679]={ [1]={ [1]={ limit={ @@ -78413,7 +80398,7 @@ return { [1]="decoy_totem_life_+%" } }, - [3580]={ + [3680]={ [1]={ [1]={ limit={ @@ -78429,7 +80414,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [3581]={ + [3681]={ [1]={ [1]={ limit={ @@ -78458,7 +80443,7 @@ return { [1]="rejuvenation_totem_aura_effect_+%" } }, - [3582]={ + [3682]={ [1]={ [1]={ limit={ @@ -78483,7 +80468,7 @@ return { [1]="wild_strike_num_of_additional_projectiles_in_chain" } }, - [3583]={ + [3683]={ [1]={ [1]={ limit={ @@ -78508,7 +80493,7 @@ return { [1]="summon_skeletons_num_additional_warrior_skeletons" } }, - [3584]={ + [3684]={ [1]={ [1]={ limit={ @@ -78537,7 +80522,7 @@ return { [1]="shockwave_totem_cast_speed_+%" } }, - [3585]={ + [3685]={ [1]={ [1]={ limit={ @@ -78566,7 +80551,7 @@ return { [1]="devouring_totem_%_chance_to_consume_additional_corpse" } }, - [3586]={ + [3686]={ [1]={ [1]={ limit={ @@ -78595,7 +80580,7 @@ return { [1]="siege_ballista_totem_placement_speed_+%" } }, - [3587]={ + [3687]={ [1]={ [1]={ limit={ @@ -78624,36 +80609,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [3588]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Poacher's Mark Curse Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Poacher's Mark Curse Effect" - } - }, - stats={ - [1]="poachers_mark_curse_effect_+%" - } - }, - [3589]={ + [3688]={ [1]={ [1]={ limit={ @@ -78682,7 +80638,7 @@ return { [1]="projectile_weakness_curse_effect_+%" } }, - [3590]={ + [3689]={ [1]={ [1]={ limit={ @@ -78711,36 +80667,7 @@ return { [1]="temporal_chains_curse_effect_+%" } }, - [3591]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Assassin's Mark Curse Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Assassin's Mark Curse Effect" - } - }, - stats={ - [1]="assassins_mark_curse_effect_+%" - } - }, - [3592]={ + [3690]={ [1]={ [1]={ limit={ @@ -78769,7 +80696,7 @@ return { [1]="conductivity_curse_effect_+%" } }, - [3593]={ + [3691]={ [1]={ [1]={ limit={ @@ -78798,7 +80725,7 @@ return { [1]="elemental_weakness_curse_effect_+%" } }, - [3594]={ + [3692]={ [1]={ [1]={ limit={ @@ -78827,7 +80754,7 @@ return { [1]="enfeeble_curse_effect_+%" } }, - [3595]={ + [3693]={ [1]={ [1]={ limit={ @@ -78856,7 +80783,7 @@ return { [1]="flammability_curse_effect_+%" } }, - [3596]={ + [3694]={ [1]={ [1]={ limit={ @@ -78885,7 +80812,7 @@ return { [1]="frostbite_curse_effect_+%" } }, - [3597]={ + [3695]={ [1]={ [1]={ limit={ @@ -78914,7 +80841,7 @@ return { [1]="punishment_curse_effect_+%" } }, - [3598]={ + [3696]={ [1]={ [1]={ limit={ @@ -78943,36 +80870,7 @@ return { [1]="vulnerability_curse_effect_+%" } }, - [3599]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Warlord's Mark Curse Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Warlord's Mark Curse Effect" - } - }, - stats={ - [1]="warlords_mark_curse_effect_+%" - } - }, - [3600]={ + [3697]={ [1]={ [1]={ limit={ @@ -78997,7 +80895,7 @@ return { [1]="display_attack_with_word_of_ire_when_hit_%" } }, - [3601]={ + [3698]={ [1]={ [1]={ limit={ @@ -79022,7 +80920,7 @@ return { [1]="display_attack_with_edict_of_ire_when_hit_%" } }, - [3602]={ + [3699]={ [1]={ [1]={ limit={ @@ -79047,7 +80945,7 @@ return { [1]="display_attack_with_decree_of_ire_when_hit_%" } }, - [3603]={ + [3700]={ [1]={ [1]={ limit={ @@ -79072,7 +80970,7 @@ return { [1]="display_attack_with_commandment_of_ire_when_hit_%" } }, - [3604]={ + [3701]={ [1]={ [1]={ limit={ @@ -79101,7 +80999,7 @@ return { [1]="arctic_armour_buff_effect_+%" } }, - [3605]={ + [3702]={ [1]={ [1]={ limit={ @@ -79130,7 +81028,7 @@ return { [1]="convocation_buff_effect_+%" } }, - [3606]={ + [3703]={ [1]={ [1]={ limit={ @@ -79159,7 +81057,7 @@ return { [1]="molten_shell_buff_effect_+%" } }, - [3607]={ + [3704]={ [1]={ [1]={ limit={ @@ -79184,7 +81082,7 @@ return { [1]="immortal_call_%_chance_to_not_consume_endurance_charges" } }, - [3608]={ + [3705]={ [1]={ [1]={ limit={ @@ -79209,7 +81107,7 @@ return { [1]="phase_run_%_chance_to_not_consume_frenzy_charges" } }, - [3609]={ + [3706]={ [1]={ [1]={ limit={ @@ -79225,7 +81123,7 @@ return { [1]="shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage" } }, - [3610]={ + [3707]={ [1]={ [1]={ limit={ @@ -79250,7 +81148,7 @@ return { [1]="tempest_shield_num_of_additional_projectiles_in_chain" } }, - [3611]={ + [3708]={ [1]={ [1]={ limit={ @@ -79283,7 +81181,7 @@ return { [1]="arctic_armour_mana_reservation_+%" } }, - [3612]={ + [3709]={ [1]={ [1]={ limit={ @@ -79316,7 +81214,7 @@ return { [1]="herald_of_ash_mana_reservation_+%" } }, - [3613]={ + [3710]={ [1]={ [1]={ limit={ @@ -79349,7 +81247,7 @@ return { [1]="herald_of_ice_mana_reservation_+%" } }, - [3614]={ + [3711]={ [1]={ [1]={ limit={ @@ -79382,7 +81280,7 @@ return { [1]="herald_of_thunder_mana_reservation_+%" } }, - [3615]={ + [3712]={ [1]={ [1]={ limit={ @@ -79415,7 +81313,7 @@ return { [1]="clarity_mana_reservation_+%" } }, - [3616]={ + [3713]={ [1]={ [1]={ limit={ @@ -79448,7 +81346,7 @@ return { [1]="hatred_mana_reservation_+%" } }, - [3617]={ + [3714]={ [1]={ [1]={ limit={ @@ -79481,7 +81379,7 @@ return { [1]="purity_of_ice_mana_reservation_+%" } }, - [3618]={ + [3715]={ [1]={ [1]={ limit={ @@ -79514,7 +81412,7 @@ return { [1]="determination_mana_reservation_+%" } }, - [3619]={ + [3716]={ [1]={ [1]={ limit={ @@ -79547,7 +81445,7 @@ return { [1]="discipline_mana_reservation_+%" } }, - [3620]={ + [3717]={ [1]={ [1]={ limit={ @@ -79580,7 +81478,7 @@ return { [1]="purity_of_elements_mana_reservation_+%" } }, - [3621]={ + [3718]={ [1]={ [1]={ limit={ @@ -79613,7 +81511,7 @@ return { [1]="purity_of_fire_mana_reservation_+%" } }, - [3622]={ + [3719]={ [1]={ [1]={ limit={ @@ -79646,7 +81544,7 @@ return { [1]="purity_of_lightning_mana_reservation_+%" } }, - [3623]={ + [3720]={ [1]={ [1]={ limit={ @@ -79679,7 +81577,7 @@ return { [1]="vitality_mana_reservation_+%" } }, - [3624]={ + [3721]={ [1]={ [1]={ limit={ @@ -79712,7 +81610,7 @@ return { [1]="wrath_mana_reservation_+%" } }, - [3625]={ + [3722]={ [1]={ [1]={ limit={ @@ -79745,7 +81643,7 @@ return { [1]="grace_mana_reservation_+%" } }, - [3626]={ + [3723]={ [1]={ [1]={ limit={ @@ -79778,7 +81676,7 @@ return { [1]="haste_mana_reservation_+%" } }, - [3627]={ + [3724]={ [1]={ [1]={ limit={ @@ -79811,7 +81709,7 @@ return { [1]="chaos_weakness_mana_reservation_+%" } }, - [3628]={ + [3725]={ [1]={ [1]={ limit={ @@ -79844,7 +81742,7 @@ return { [1]="conductivity_mana_reservation_+%" } }, - [3629]={ + [3726]={ [1]={ [1]={ limit={ @@ -79877,7 +81775,7 @@ return { [1]="flammability_mana_reservation_+%" } }, - [3630]={ + [3727]={ [1]={ [1]={ limit={ @@ -79910,7 +81808,7 @@ return { [1]="frostbite_mana_reservation_+%" } }, - [3631]={ + [3728]={ [1]={ [1]={ limit={ @@ -79943,7 +81841,7 @@ return { [1]="temporal_chains_mana_reservation_+%" } }, - [3632]={ + [3729]={ [1]={ [1]={ limit={ @@ -79976,7 +81874,7 @@ return { [1]="vulnerability_mana_reservation_+%" } }, - [3633]={ + [3730]={ [1]={ [1]={ limit={ @@ -79992,7 +81890,7 @@ return { [1]="cannot_be_stunned_while_at_max_endurance_charges" } }, - [3634]={ + [3731]={ [1]={ [1]={ limit={ @@ -80021,7 +81919,7 @@ return { [1]="life_regenerate_rate_per_second_%_while_totem_active" } }, - [3635]={ + [3732]={ [1]={ [1]={ limit={ @@ -80050,7 +81948,7 @@ return { [1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3636]={ + [3733]={ [1]={ [1]={ limit={ @@ -80079,7 +81977,7 @@ return { [1]="berserker_damage_+%_final" } }, - [3637]={ + [3734]={ [1]={ [1]={ limit={ @@ -80108,7 +82006,7 @@ return { [1]="elemental_damage_taken_+%_while_on_consecrated_ground" } }, - [3638]={ + [3735]={ [1]={ [1]={ limit={ @@ -80137,7 +82035,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments" } }, - [3639]={ + [3736]={ [1]={ [1]={ limit={ @@ -80153,7 +82051,7 @@ return { [1]="%_chance_to_gain_power_charge_on_placing_a_totem" } }, - [3640]={ + [3737]={ [1]={ [1]={ [1]={ @@ -80173,7 +82071,7 @@ return { [1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy" } }, - [3641]={ + [3738]={ [1]={ [1]={ limit={ @@ -80189,7 +82087,7 @@ return { [1]="enemies_chaos_resistance_%_while_cursed" } }, - [3642]={ + [3739]={ [1]={ [1]={ limit={ @@ -80218,7 +82116,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy" } }, - [3643]={ + [3740]={ [1]={ [1]={ limit={ @@ -80234,7 +82132,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%" } }, - [3644]={ + [3741]={ [1]={ [1]={ limit={ @@ -80263,7 +82161,7 @@ return { [1]="offering_spells_effect_+%" } }, - [3645]={ + [3742]={ [1]={ [1]={ limit={ @@ -80279,7 +82177,7 @@ return { [1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras" } }, - [3646]={ + [3743]={ [1]={ [1]={ limit={ @@ -80295,7 +82193,7 @@ return { [1]="additional_elemental_damage_reduction_as_half_of_chaos_resistance" } }, - [3647]={ + [3744]={ [1]={ [1]={ limit={ @@ -80324,7 +82222,7 @@ return { [1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3648]={ + [3745]={ [1]={ [1]={ limit={ @@ -80353,7 +82251,7 @@ return { [1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3649]={ + [3746]={ [1]={ [1]={ limit={ @@ -80369,7 +82267,7 @@ return { [1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras" } }, - [3650]={ + [3747]={ [1]={ [1]={ limit={ @@ -80398,7 +82296,7 @@ return { [1]="damage_+%_for_you_and_allies_affected_by_your_auras" } }, - [3651]={ + [3748]={ [1]={ [1]={ limit={ @@ -80427,7 +82325,7 @@ return { [1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras" } }, - [3652]={ + [3749]={ [1]={ [1]={ limit={ @@ -80456,7 +82354,7 @@ return { [1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed" } }, - [3653]={ + [3750]={ [1]={ [1]={ limit={ @@ -80472,7 +82370,7 @@ return { [1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life" } }, - [3654]={ + [3751]={ [1]={ [1]={ limit={ @@ -80488,7 +82386,7 @@ return { [1]="cause_maim_on_critical_strike_attack" } }, - [3655]={ + [3752]={ [1]={ [1]={ limit={ @@ -80504,7 +82402,7 @@ return { [1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation" } }, - [3656]={ + [3753]={ [1]={ [1]={ limit={ @@ -80533,7 +82431,7 @@ return { [1]="damage_+%_for_each_trap_and_mine_active" } }, - [3657]={ + [3754]={ [1]={ [1]={ limit={ @@ -80562,7 +82460,7 @@ return { [1]="evasion_rating_while_es_full_+%_final" } }, - [3658]={ + [3755]={ [1]={ [1]={ limit={ @@ -80591,7 +82489,7 @@ return { [1]="damage_+%_while_es_not_full" } }, - [3659]={ + [3756]={ [1]={ [1]={ limit={ @@ -80620,7 +82518,7 @@ return { [1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use" } }, - [3660]={ + [3757]={ [1]={ [1]={ limit={ @@ -80636,7 +82534,7 @@ return { [1]="gain_onslaught_while_frenzy_charges_full" } }, - [3661]={ + [3758]={ [1]={ [1]={ limit={ @@ -80652,7 +82550,7 @@ return { [1]="projectile_damage_+%_max_as_distance_travelled_increases" } }, - [3662]={ + [3759]={ [1]={ [1]={ limit={ @@ -80681,7 +82579,7 @@ return { [1]="damage_+%_during_flask_effect" } }, - [3663]={ + [3760]={ [1]={ [1]={ limit={ @@ -80697,7 +82595,7 @@ return { [1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect" } }, - [3664]={ + [3761]={ [1]={ [1]={ limit={ @@ -80726,7 +82624,7 @@ return { [1]="elemental_damage_taken_+%_during_flask_effect" } }, - [3665]={ + [3762]={ [1]={ [1]={ limit={ @@ -80755,7 +82653,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy" } }, - [3666]={ + [3763]={ [1]={ [1]={ limit={ @@ -80784,7 +82682,7 @@ return { [1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify" } }, - [3667]={ + [3764]={ [1]={ [1]={ limit={ @@ -80813,7 +82711,7 @@ return { [1]="damage_taken_+%_from_taunted_enemies" } }, - [3668]={ + [3765]={ [1]={ [1]={ limit={ @@ -80842,7 +82740,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching" } }, - [3669]={ + [3766]={ [1]={ [1]={ limit={ @@ -80871,7 +82769,7 @@ return { [1]="shield_charge_damage_per_target_hit_+%" } }, - [3670]={ + [3767]={ [1]={ [1]={ limit={ @@ -80896,7 +82794,7 @@ return { [1]="traps_and_mines_%_chance_to_poison" } }, - [3671]={ + [3768]={ [1]={ [1]={ limit={ @@ -80912,7 +82810,7 @@ return { [1]="damage_+%_of_each_type_that_you_have_an_active_golem_of" } }, - [3672]={ + [3769]={ [1]={ [1]={ limit={ @@ -80928,7 +82826,7 @@ return { [1]="elemental_golem_immunity_to_elemental_damage" } }, - [3673]={ + [3770]={ [1]={ [1]={ limit={ @@ -80944,7 +82842,7 @@ return { [1]="golem_immunity_to_elemental_damage" } }, - [3674]={ + [3771]={ [1]={ [1]={ limit={ @@ -80977,7 +82875,7 @@ return { [1]="unique_primordial_tether_golem_life_+%_final" } }, - [3675]={ + [3772]={ [1]={ [1]={ limit={ @@ -81006,7 +82904,7 @@ return { [1]="elemental_golem_granted_buff_effect_+%" } }, - [3676]={ + [3773]={ [1]={ [1]={ limit={ @@ -81035,7 +82933,7 @@ return { [1]="base_stone_golem_granted_buff_effect_+%" } }, - [3677]={ + [3774]={ [1]={ [1]={ limit={ @@ -81064,7 +82962,7 @@ return { [1]="base_fire_golem_granted_buff_effect_+%" } }, - [3678]={ + [3775]={ [1]={ [1]={ limit={ @@ -81093,7 +82991,7 @@ return { [1]="base_ice_golem_granted_buff_effect_+%" } }, - [3679]={ + [3776]={ [1]={ [1]={ limit={ @@ -81122,7 +83020,7 @@ return { [1]="base_lightning_golem_granted_buff_effect_+%" } }, - [3680]={ + [3777]={ [1]={ [1]={ limit={ @@ -81151,7 +83049,7 @@ return { [1]="base_chaos_golem_granted_buff_effect_+%" } }, - [3681]={ + [3778]={ [1]={ [1]={ limit={ @@ -81167,7 +83065,7 @@ return { [1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation" } }, - [3682]={ + [3779]={ [1]={ [1]={ limit={ @@ -81183,7 +83081,7 @@ return { [1]="base_cold_immunity" } }, - [3683]={ + [3780]={ [1]={ [1]={ limit={ @@ -81199,7 +83097,7 @@ return { [1]="base_lightning_immunity" } }, - [3684]={ + [3781]={ [1]={ [1]={ limit={ @@ -81228,7 +83126,7 @@ return { [1]="blood_rage_grants_additional_attack_speed_+%" } }, - [3685]={ + [3782]={ [1]={ [1]={ limit={ @@ -81244,7 +83142,7 @@ return { [1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill" } }, - [3686]={ + [3783]={ [1]={ [1]={ limit={ @@ -81260,7 +83158,7 @@ return { [1]="is_hindered" } }, - [3687]={ + [3784]={ [1]={ [1]={ limit={ @@ -81289,7 +83187,7 @@ return { [1]="damage_+%_vs_hindered_enemies" } }, - [3688]={ + [3785]={ [1]={ [1]={ limit={ @@ -81314,7 +83212,7 @@ return { [1]="blast_rain_%_chance_for_additional_blast" } }, - [3689]={ + [3786]={ [1]={ [1]={ limit={ @@ -81343,7 +83241,7 @@ return { [1]="smoke_mine_base_movement_velocity_+%" } }, - [3690]={ + [3787]={ [1]={ [1]={ limit={ @@ -81372,7 +83270,7 @@ return { [1]="enduring_cry_buff_effect_+%" } }, - [3691]={ + [3788]={ [1]={ [1]={ limit={ @@ -81397,7 +83295,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [3692]={ + [3789]={ [1]={ [1]={ limit={ @@ -81426,7 +83324,7 @@ return { [1]="lightning_tendrils_critical_strike_chance_+%" } }, - [3693]={ + [3790]={ [1]={ [1]={ limit={ @@ -81455,7 +83353,7 @@ return { [1]="righteous_fire_spell_damage_+%" } }, - [3694]={ + [3791]={ [1]={ [1]={ limit={ @@ -81484,7 +83382,7 @@ return { [1]="rallying_cry_buff_effect_+%" } }, - [3695]={ + [3792]={ [1]={ [1]={ limit={ @@ -81500,7 +83398,7 @@ return { [1]="melee_ancestor_totem_elemental_resistance_%" } }, - [3696]={ + [3793]={ [1]={ [1]={ limit={ @@ -81525,7 +83423,7 @@ return { [1]="kinetic_blast_%_chance_for_additional_blast" } }, - [3697]={ + [3794]={ [1]={ [1]={ limit={ @@ -81541,7 +83439,7 @@ return { [1]="guardian_nearby_allies_share_charges" } }, - [3698]={ + [3795]={ [1]={ [1]={ limit={ @@ -81570,7 +83468,7 @@ return { [1]="phase_run_skill_effect_duration_+%" } }, - [3699]={ + [3796]={ [1]={ [1]={ limit={ @@ -81599,7 +83497,7 @@ return { [1]="searing_totem_elemental_resistance_+%" } }, - [3700]={ + [3797]={ [1]={ [1]={ limit={ @@ -81615,7 +83513,7 @@ return { [1]="bone_offering_block_chance_+%" } }, - [3701]={ + [3798]={ [1]={ [1]={ limit={ @@ -81640,7 +83538,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [3702]={ + [3799]={ [1]={ [1]={ limit={ @@ -81669,7 +83567,7 @@ return { [1]="flesh_offering_attack_speed_+%" } }, - [3703]={ + [3800]={ [1]={ [1]={ limit={ @@ -81698,7 +83596,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [3704]={ + [3801]={ [1]={ [1]={ limit={ @@ -81714,7 +83612,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [3705]={ + [3802]={ [1]={ [1]={ limit={ @@ -81743,7 +83641,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [3706]={ + [3803]={ [1]={ [1]={ limit={ @@ -81768,7 +83666,7 @@ return { [1]="consecrate_ground_on_shatter_%_chance_for_3_seconds" } }, - [3707]={ + [3804]={ [1]={ [1]={ limit={ @@ -81784,7 +83682,7 @@ return { [1]="glows_in_area_with_unique_fish" } }, - [3708]={ + [3805]={ [1]={ [1]={ limit={ @@ -81809,7 +83707,7 @@ return { [1]="attacks_num_of_additional_chains" } }, - [3709]={ + [3806]={ [1]={ [1]={ limit={ @@ -81838,7 +83736,7 @@ return { [1]="explosive_arrow_attack_speed_+%" } }, - [3710]={ + [3807]={ [1]={ [1]={ limit={ @@ -81867,7 +83765,7 @@ return { [1]="lightning_damage_+%_per_10_intelligence" } }, - [3711]={ + [3808]={ [1]={ [1]={ limit={ @@ -81883,7 +83781,7 @@ return { [1]="local_maim_on_hit" } }, - [3712]={ + [3809]={ [1]={ [1]={ limit={ @@ -81899,7 +83797,7 @@ return { [1]="warcries_cost_no_mana" } }, - [3713]={ + [3810]={ [1]={ [1]={ limit={ @@ -81915,7 +83813,7 @@ return { [1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance" } }, - [3714]={ + [3811]={ [1]={ [1]={ limit={ @@ -81931,7 +83829,7 @@ return { [1]="always_crit_shocked_enemies" } }, - [3715]={ + [3812]={ [1]={ [1]={ limit={ @@ -81947,7 +83845,7 @@ return { [1]="cannot_crit_non_shocked_enemies" } }, - [3716]={ + [3813]={ [1]={ [1]={ limit={ @@ -81976,7 +83874,7 @@ return { [1]="frost_bolt_damage_+%" } }, - [3717]={ + [3814]={ [1]={ [1]={ limit={ @@ -82005,7 +83903,7 @@ return { [1]="frost_bolt_nova_damage_+%" } }, - [3718]={ + [3815]={ [1]={ [1]={ limit={ @@ -82034,7 +83932,7 @@ return { [1]="double_slash_damage_+%" } }, - [3719]={ + [3816]={ [1]={ [1]={ limit={ @@ -82063,7 +83961,7 @@ return { [1]="charged_attack_damage_+%" } }, - [3720]={ + [3817]={ [1]={ [1]={ limit={ @@ -82092,7 +83990,7 @@ return { [1]="slam_ancestor_totem_damage_+%" } }, - [3721]={ + [3818]={ [1]={ [1]={ limit={ @@ -82121,7 +84019,7 @@ return { [1]="slash_ancestor_totem_damage_+%" } }, - [3722]={ + [3819]={ [1]={ [1]={ limit={ @@ -82150,7 +84048,7 @@ return { [1]="slash_ancestor_totem_radius_+%" } }, - [3723]={ + [3820]={ [1]={ [1]={ limit={ @@ -82179,7 +84077,7 @@ return { [1]="slam_ancestor_totem_radius_+%" } }, - [3724]={ + [3821]={ [1]={ [1]={ limit={ @@ -82208,7 +84106,7 @@ return { [1]="frost_bolt_nova_radius_+%" } }, - [3725]={ + [3822]={ [1]={ [1]={ limit={ @@ -82237,7 +84135,7 @@ return { [1]="double_slash_critical_strike_chance_+%" } }, - [3726]={ + [3823]={ [1]={ [1]={ limit={ @@ -82266,7 +84164,7 @@ return { [1]="charged_attack_radius_+%" } }, - [3727]={ + [3824]={ [1]={ [1]={ limit={ @@ -82295,7 +84193,7 @@ return { [1]="double_slash_radius_+%" } }, - [3728]={ + [3825]={ [1]={ [1]={ limit={ @@ -82324,7 +84222,7 @@ return { [1]="charged_attack_damage_per_stack_+%_final" } }, - [3729]={ + [3826]={ [1]={ [1]={ limit={ @@ -82353,7 +84251,7 @@ return { [1]="frost_bolt_cast_speed_+%" } }, - [3730]={ + [3827]={ [1]={ [1]={ limit={ @@ -82382,7 +84280,7 @@ return { [1]="frost_bolt_freeze_chance_%" } }, - [3731]={ + [3828]={ [1]={ [1]={ limit={ @@ -82411,7 +84309,7 @@ return { [1]="frost_bolt_nova_duration_+%" } }, - [3732]={ + [3829]={ [1]={ [1]={ limit={ @@ -82427,7 +84325,7 @@ return { [1]="minions_cannot_be_blinded" } }, - [3733]={ + [3830]={ [1]={ [1]={ limit={ @@ -82443,7 +84341,7 @@ return { [1]="minions_%_chance_to_blind_on_hit" } }, - [3734]={ + [3831]={ [1]={ [1]={ limit={ @@ -82459,7 +84357,7 @@ return { [1]="magic_items_drop_identified" } }, - [3735]={ + [3832]={ [1]={ [1]={ limit={ @@ -82475,7 +84373,7 @@ return { [1]="X_mana_per_stackable_unique_jewel" } }, - [3736]={ + [3833]={ [1]={ [1]={ limit={ @@ -82491,7 +84389,7 @@ return { [1]="X_armour_per_stackable_unique_jewel" } }, - [3737]={ + [3834]={ [1]={ [1]={ limit={ @@ -82507,7 +84405,7 @@ return { [1]="avoid_all_elemental_status_%_per_stackable_unique_jewel" } }, - [3738]={ + [3835]={ [1]={ [1]={ limit={ @@ -82523,7 +84421,7 @@ return { [1]="critical_strike_chance_+%_per_stackable_unique_jewel" } }, - [3739]={ + [3836]={ [1]={ [1]={ limit={ @@ -82539,7 +84437,7 @@ return { [1]="elemental_damage_+%_per_stackable_unique_jewel" } }, - [3740]={ + [3837]={ [1]={ [1]={ limit={ @@ -82555,7 +84453,7 @@ return { [1]="elemental_resistance_%_per_stackable_unique_jewel" } }, - [3741]={ + [3838]={ [1]={ [1]={ limit={ @@ -82584,7 +84482,7 @@ return { [1]="maximum_life_+%_per_stackable_unique_jewel" } }, - [3742]={ + [3839]={ [1]={ [1]={ limit={ @@ -82600,7 +84498,7 @@ return { [1]="minimum_endurance_charges_per_stackable_unique_jewel" } }, - [3743]={ + [3840]={ [1]={ [1]={ limit={ @@ -82616,7 +84514,7 @@ return { [1]="minimum_frenzy_charges_per_stackable_unique_jewel" } }, - [3744]={ + [3841]={ [1]={ [1]={ limit={ @@ -82632,7 +84530,7 @@ return { [1]="minimum_power_charges_per_stackable_unique_jewel" } }, - [3745]={ + [3842]={ [1]={ [1]={ limit={ @@ -82648,7 +84546,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_stackable_unique_jewel" } }, - [3746]={ + [3843]={ [1]={ [1]={ limit={ @@ -82677,7 +84575,7 @@ return { [1]="damage_+%_per_abyss_jewel_type" } }, - [3747]={ + [3844]={ [1]={ [1]={ limit={ @@ -82693,7 +84591,7 @@ return { [1]="lightning_damage_%_taken_from_mana_before_life" } }, - [3748]={ + [3845]={ [1]={ [1]={ limit={ @@ -82709,7 +84607,7 @@ return { [1]="physical_damage_%_taken_from_mana_before_life" } }, - [3749]={ + [3846]={ [1]={ [1]={ limit={ @@ -82734,7 +84632,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_shocked" } }, - [3750]={ + [3847]={ [1]={ [1]={ limit={ @@ -82763,7 +84661,7 @@ return { [1]="quantity_of_items_dropped_by_maimed_enemies_+%" } }, - [3751]={ + [3848]={ [1]={ [1]={ limit={ @@ -82792,7 +84690,7 @@ return { [1]="rarity_of_items_dropped_by_maimed_enemies_+%" } }, - [3752]={ + [3849]={ [1]={ [1]={ limit={ @@ -82821,7 +84719,7 @@ return { [1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently" } }, - [3753]={ + [3850]={ [1]={ [1]={ limit={ @@ -82850,7 +84748,7 @@ return { [1]="stun_duration_on_self_+%" } }, - [3754]={ + [3851]={ [1]={ [1]={ limit={ @@ -82879,7 +84777,7 @@ return { [1]="melee_damage_+%_per_endurance_charge" } }, - [3755]={ + [3852]={ [1]={ [1]={ limit={ @@ -82895,7 +84793,7 @@ return { [1]="totems_resist_all_elements_+%_per_active_totem" } }, - [3756]={ + [3853]={ [1]={ [1]={ limit={ @@ -82911,7 +84809,7 @@ return { [1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit" } }, - [3757]={ + [3854]={ [1]={ [1]={ limit={ @@ -82927,7 +84825,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_endurance_charges" } }, - [3758]={ + [3855]={ [1]={ [1]={ limit={ @@ -82943,7 +84841,7 @@ return { [1]="movement_speed_+%_if_used_a_warcry_recently" } }, - [3759]={ + [3856]={ [1]={ [1]={ limit={ @@ -82972,7 +84870,7 @@ return { [1]="totems_spells_cast_speed_+%_per_active_totem" } }, - [3760]={ + [3857]={ [1]={ [1]={ limit={ @@ -83001,7 +84899,7 @@ return { [1]="movement_skills_mana_cost_+%" } }, - [3761]={ + [3858]={ [1]={ [1]={ limit={ @@ -83017,7 +84915,7 @@ return { [1]="critical_strike_chance_+%_when_in_main_hand" } }, - [3762]={ + [3859]={ [1]={ [1]={ limit={ @@ -83033,7 +84931,7 @@ return { [1]="additional_block_chance_%_when_in_off_hand" } }, - [3763]={ + [3860]={ [1]={ [1]={ limit={ @@ -83049,7 +84947,7 @@ return { [1]="spirit_offering_physical_damage_%_to_gain_as_chaos" } }, - [3764]={ + [3861]={ [1]={ [1]={ limit={ @@ -83082,7 +84980,7 @@ return { [1]="damage_taken_+%_if_not_hit_recently_final" } }, - [3765]={ + [3862]={ [1]={ [1]={ limit={ @@ -83111,7 +85009,7 @@ return { [1]="evasion_+%_if_hit_recently" } }, - [3766]={ + [3863]={ [1]={ [1]={ limit={ @@ -83127,7 +85025,7 @@ return { [1]="minion_cold_damage_resistance_%" } }, - [3767]={ + [3864]={ [1]={ [1]={ limit={ @@ -83143,7 +85041,7 @@ return { [1]="minion_lightning_damage_resistance_%" } }, - [3768]={ + [3865]={ [1]={ [1]={ limit={ @@ -83159,7 +85057,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_cold" } }, - [3769]={ + [3866]={ [1]={ [1]={ limit={ @@ -83188,7 +85086,7 @@ return { [1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently" } }, - [3770]={ + [3867]={ [1]={ [1]={ limit={ @@ -83217,7 +85115,7 @@ return { [1]="damage_+%_for_each_level_the_enemy_is_higher_than_you" } }, - [3771]={ + [3868]={ [1]={ [1]={ limit={ @@ -83246,7 +85144,7 @@ return { [1]="totems_attack_speed_+%_per_active_totem" } }, - [3772]={ + [3869]={ [1]={ [1]={ limit={ @@ -83271,7 +85169,7 @@ return { [1]="attacks_num_of_additional_chains_when_in_main_hand" } }, - [3773]={ + [3870]={ [1]={ [1]={ limit={ @@ -83296,7 +85194,7 @@ return { [1]="attacks_number_of_additional_projectiles" } }, - [3774]={ + [3871]={ [1]={ [1]={ limit={ @@ -83321,7 +85219,7 @@ return { [1]="melee_attacks_number_of_additional_projectiles" } }, - [3775]={ + [3872]={ [1]={ [1]={ limit={ @@ -83346,7 +85244,7 @@ return { [1]="attacks_number_of_additional_projectiles_when_in_off_hand" } }, - [3776]={ + [3873]={ [1]={ [1]={ limit={ @@ -83367,7 +85265,7 @@ return { [2]="counter_attacks_maximum_added_physical_damage" } }, - [3777]={ + [3874]={ [1]={ [1]={ limit={ @@ -83396,7 +85294,7 @@ return { [1]="golem_damage_+%_per_active_golem_type" } }, - [3778]={ + [3875]={ [1]={ [1]={ limit={ @@ -83425,7 +85323,7 @@ return { [1]="golem_damage_+%_per_active_golem" } }, - [3779]={ + [3876]={ [1]={ [1]={ limit={ @@ -83441,7 +85339,7 @@ return { [1]="life_+%_with_no_corrupted_equipped_items" } }, - [3780]={ + [3877]={ [1]={ [1]={ [1]={ @@ -83461,7 +85359,7 @@ return { [1]="life_regeneration_per_minute_with_no_corrupted_equipped_items" } }, - [3781]={ + [3878]={ [1]={ [1]={ [1]={ @@ -83481,7 +85379,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [3782]={ + [3879]={ [1]={ [1]={ limit={ @@ -83497,7 +85395,7 @@ return { [1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute" } }, - [3783]={ + [3880]={ [1]={ [1]={ limit={ @@ -83518,7 +85416,7 @@ return { [2]="counter_attacks_maximum_added_cold_damage" } }, - [3784]={ + [3881]={ [1]={ [1]={ limit={ @@ -83547,7 +85445,7 @@ return { [1]="movement_speed_+%_if_pierced_recently" } }, - [3785]={ + [3882]={ [1]={ [1]={ limit={ @@ -83563,7 +85461,7 @@ return { [1]="poison_cursed_enemies_on_hit" } }, - [3786]={ + [3883]={ [1]={ [1]={ limit={ @@ -83588,7 +85486,7 @@ return { [1]="chance_to_poison_%_vs_cursed_enemies" } }, - [3787]={ + [3884]={ [1]={ [1]={ limit={ @@ -83617,7 +85515,7 @@ return { [1]="item_found_rarity_+%_if_wearing_a_normal_item" } }, - [3788]={ + [3885]={ [1]={ [1]={ limit={ @@ -83646,7 +85544,7 @@ return { [1]="item_found_quantity_+%_if_wearing_a_magic_item" } }, - [3789]={ + [3886]={ [1]={ [1]={ [1]={ @@ -83666,7 +85564,7 @@ return { [1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster" } }, - [3790]={ + [3887]={ [1]={ [1]={ limit={ @@ -83682,7 +85580,7 @@ return { [1]="kill_enemy_on_hit_if_under_15%_life" } }, - [3791]={ + [3888]={ [1]={ [1]={ limit={ @@ -83698,7 +85596,7 @@ return { [1]="kill_enemy_on_hit_if_under_20%_life" } }, - [3792]={ + [3889]={ [1]={ [1]={ limit={ @@ -83714,7 +85612,7 @@ return { [1]="immune_to_bleeding" } }, - [3793]={ + [3890]={ [1]={ [1]={ limit={ @@ -83730,7 +85628,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [3794]={ + [3891]={ [1]={ [1]={ limit={ @@ -83746,7 +85644,7 @@ return { [1]="base_avoid_bleed_%" } }, - [3795]={ + [3892]={ [1]={ [1]={ limit={ @@ -83775,7 +85673,7 @@ return { [1]="damage_+%_if_enemy_killed_recently_final" } }, - [3796]={ + [3893]={ [1]={ [1]={ limit={ @@ -83804,7 +85702,7 @@ return { [1]="skill_area_of_effect_+%_if_enemy_killed_recently" } }, - [3797]={ + [3894]={ [1]={ [1]={ limit={ @@ -83829,7 +85727,7 @@ return { [1]="max_charged_attack_stacks" } }, - [3798]={ + [3895]={ [1]={ [1]={ limit={ @@ -83858,7 +85756,7 @@ return { [1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently" } }, - [3799]={ + [3896]={ [1]={ [1]={ limit={ @@ -83887,7 +85785,7 @@ return { [1]="damage_taken_+%_if_taunted_an_enemy_recently" } }, - [3800]={ + [3897]={ [1]={ [1]={ [1]={ @@ -83907,7 +85805,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently" } }, - [3801]={ + [3898]={ [1]={ [1]={ limit={ @@ -83923,7 +85821,7 @@ return { [1]="immune_to_elemental_status_ailments_during_flask_effect" } }, - [3802]={ + [3899]={ [1]={ [1]={ limit={ @@ -83952,7 +85850,7 @@ return { [1]="elemental_damage_+%_during_flask_effect" } }, - [3803]={ + [3900]={ [1]={ [1]={ [1]={ @@ -83972,7 +85870,7 @@ return { [1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground" } }, - [3804]={ + [3901]={ [1]={ [1]={ limit={ @@ -84001,7 +85899,7 @@ return { [1]="attack_and_cast_speed_+%_while_on_consecrated_ground" } }, - [3805]={ + [3902]={ [1]={ [1]={ limit={ @@ -84030,7 +85928,7 @@ return { [1]="mine_arming_speed_+%" } }, - [3806]={ + [3903]={ [1]={ [1]={ limit={ @@ -84046,7 +85944,7 @@ return { [1]="flasks_%_chance_to_not_consume_charges" } }, - [3807]={ + [3904]={ [1]={ [1]={ limit={ @@ -84075,7 +85973,7 @@ return { [1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit" } }, - [3808]={ + [3905]={ [1]={ [1]={ limit={ @@ -84091,7 +85989,7 @@ return { [1]="your_consecrated_ground_grants_damage_+%" } }, - [3809]={ + [3906]={ [1]={ [1]={ limit={ @@ -84120,7 +86018,7 @@ return { [1]="attack_speed_+%_if_enemy_not_killed_recently" } }, - [3810]={ + [3907]={ [1]={ [1]={ limit={ @@ -84149,7 +86047,7 @@ return { [1]="physical_damage_+%_while_at_maximum_frenzy_charges_final" } }, - [3811]={ + [3908]={ [1]={ [1]={ limit={ @@ -84178,7 +86076,7 @@ return { [1]="physical_damage_taken_+%_while_at_maximum_endurance_charges" } }, - [3812]={ + [3909]={ [1]={ [1]={ limit={ @@ -84207,7 +86105,7 @@ return { [1]="attack_speed_+%_per_200_accuracy_rating" } }, - [3813]={ + [3910]={ [1]={ [1]={ limit={ @@ -84223,7 +86121,7 @@ return { [1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance" } }, - [3814]={ + [3911]={ [1]={ [1]={ limit={ @@ -84252,7 +86150,7 @@ return { [1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds" } }, - [3815]={ + [3912]={ [1]={ [1]={ limit={ @@ -84268,7 +86166,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies" } }, - [3816]={ + [3913]={ [1]={ [1]={ limit={ @@ -84344,7 +86242,7 @@ return { [2]="phasing_on_trap_triggered_by_an_enemy_ms" } }, - [3817]={ + [3914]={ [1]={ [1]={ limit={ @@ -84360,7 +86258,7 @@ return { [1]="gain_x_life_on_trap_triggered_by_an_enemy" } }, - [3818]={ + [3915]={ [1]={ [1]={ limit={ @@ -84376,7 +86274,7 @@ return { [1]="gain_x_es_on_trap_triggered_by_an_enemy" } }, - [3819]={ + [3916]={ [1]={ [1]={ limit={ @@ -84392,7 +86290,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [3820]={ + [3917]={ [1]={ [1]={ limit={ @@ -84408,7 +86306,7 @@ return { [1]="attack_skills_additional_totems_allowed" } }, - [3821]={ + [3918]={ [1]={ [1]={ limit={ @@ -84437,7 +86335,7 @@ return { [1]="ascendancy_assasin_critical_hit_poison_effect_+%_final" } }, - [3822]={ + [3919]={ [1]={ [1]={ limit={ @@ -84466,7 +86364,7 @@ return { [1]="flask_charges_+%_from_enemies_with_status_ailments" } }, - [3823]={ + [3920]={ [1]={ [1]={ limit={ @@ -84495,7 +86393,7 @@ return { [1]="armour_and_evasion_+%_while_fortified" } }, - [3824]={ + [3921]={ [1]={ [1]={ limit={ @@ -84524,7 +86422,7 @@ return { [1]="melee_damage_+%_while_fortified" } }, - [3825]={ + [3922]={ [1]={ [1]={ limit={ @@ -84549,7 +86447,7 @@ return { [1]="desecrate_creates_X_additional_corpses" } }, - [3826]={ + [3923]={ [1]={ [1]={ limit={ @@ -84578,7 +86476,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [3827]={ + [3924]={ [1]={ [1]={ limit={ @@ -84607,7 +86505,7 @@ return { [1]="attack_and_cast_speed_+%_per_corpse_consumed_recently" } }, - [3828]={ + [3925]={ [1]={ [1]={ limit={ @@ -84623,7 +86521,7 @@ return { [1]="permanently_intimidate_enemies_you_hit_on_full_life" } }, - [3829]={ + [3926]={ [1]={ [1]={ limit={ @@ -84652,7 +86550,7 @@ return { [1]="taunted_enemies_damage_+%_final_vs_non_taunt_target" } }, - [3830]={ + [3927]={ [1]={ [1]={ limit={ @@ -84668,7 +86566,7 @@ return { [1]="poison_on_melee_hit" } }, - [3831]={ + [3928]={ [1]={ [1]={ limit={ @@ -84693,7 +86591,7 @@ return { [1]="chance_to_poison_on_melee_hit_%" } }, - [3832]={ + [3929]={ [1]={ [1]={ limit={ @@ -84722,7 +86620,7 @@ return { [1]="movement_speed_+%_if_enemy_killed_recently" } }, - [3833]={ + [3930]={ [1]={ [1]={ limit={ @@ -84738,7 +86636,7 @@ return { [1]="local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon" } }, - [3834]={ + [3931]={ [1]={ [1]={ limit={ @@ -84754,7 +86652,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems" } }, - [3835]={ + [3932]={ [1]={ [1]={ limit={ @@ -84770,7 +86668,7 @@ return { [1]="global_critical_strike_multiplier_while_dual_wielding_+" } }, - [3836]={ + [3933]={ [1]={ [1]={ limit={ @@ -84799,7 +86697,7 @@ return { [1]="global_critical_strike_chance_while_dual_wielding_+%" } }, - [3837]={ + [3934]={ [1]={ [1]={ limit={ @@ -84815,7 +86713,7 @@ return { [1]="elemental_penetration_%_during_flask_effect" } }, - [3838]={ + [3935]={ [1]={ [1]={ limit={ @@ -84831,7 +86729,7 @@ return { [1]="additional_physical_damage_reduction_%_during_flask_effect" } }, - [3839]={ + [3936]={ [1]={ [1]={ limit={ @@ -84864,7 +86762,7 @@ return { [1]="reflect_damage_taken_+%" } }, - [3840]={ + [3937]={ [1]={ [1]={ limit={ @@ -84880,7 +86778,7 @@ return { [1]="power_charge_on_block_%_chance" } }, - [3841]={ + [3938]={ [1]={ [1]={ [1]={ @@ -84913,7 +86811,7 @@ return { [1]="nearby_enemies_chilled_on_block" } }, - [3842]={ + [3939]={ [1]={ [1]={ limit={ @@ -84934,7 +86832,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken_per_frenzy_charge" } }, - [3843]={ + [3940]={ [1]={ [1]={ limit={ @@ -84955,7 +86853,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [3844]={ + [3941]={ [1]={ [1]={ limit={ @@ -84984,7 +86882,7 @@ return { [1]="attack_and_cast_speed_+%_during_flask_effect" } }, - [3845]={ + [3942]={ [1]={ [1]={ limit={ @@ -85005,7 +86903,7 @@ return { [2]="maximum_added_fire_damage_if_blocked_recently" } }, - [3846]={ + [3943]={ [1]={ [1]={ limit={ @@ -85021,7 +86919,7 @@ return { [1]="stun_threshold_based_on_energy_shield_instead_of_life" } }, - [3847]={ + [3944]={ [1]={ [1]={ limit={ @@ -85037,7 +86935,7 @@ return { [1]="cannot_leech_life_from_critical_strikes" } }, - [3848]={ + [3945]={ [1]={ [1]={ limit={ @@ -85053,7 +86951,7 @@ return { [1]="%_chance_to_blind_on_critical_strike" } }, - [3849]={ + [3946]={ [1]={ [1]={ limit={ @@ -85069,7 +86967,7 @@ return { [1]="bleed_on_melee_critical_strike" } }, - [3850]={ + [3947]={ [1]={ [1]={ limit={ @@ -85094,7 +86992,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [3851]={ + [3948]={ [1]={ [1]={ limit={ @@ -85119,7 +87017,7 @@ return { [1]="gain_elusive_on_kill_chance_%" } }, - [3852]={ + [3949]={ [1]={ [1]={ limit={ @@ -85135,7 +87033,7 @@ return { [1]="map_packs_have_pop_up_traps" } }, - [3853]={ + [3950]={ [1]={ [1]={ [1]={ @@ -85155,7 +87053,7 @@ return { [1]="gain_defiance_when_lose_life_to_hit_once_per_x_ms" } }, - [3854]={ + [3951]={ [1]={ [1]={ limit={ @@ -85184,7 +87082,7 @@ return { [1]="armour_+%_per_defiance" } }, - [3855]={ + [3952]={ [1]={ [1]={ limit={ @@ -85200,7 +87098,7 @@ return { [1]="lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance" } }, - [3856]={ + [3953]={ [1]={ [1]={ limit={ @@ -85216,7 +87114,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes" } }, - [3857]={ + [3954]={ [1]={ [1]={ limit={ @@ -85249,7 +87147,7 @@ return { [1]="enemies_you_shock_cast_speed_+%" } }, - [3858]={ + [3955]={ [1]={ [1]={ limit={ @@ -85282,7 +87180,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [3859]={ + [3956]={ [1]={ [1]={ [1]={ @@ -85302,7 +87200,7 @@ return { [1]="map_normal_monster_life_regeneration_rate_per_minute_%" } }, - [3860]={ + [3957]={ [1]={ [1]={ [1]={ @@ -85322,7 +87220,7 @@ return { [1]="map_magic_monster_life_regeneration_rate_per_minute_%" } }, - [3861]={ + [3958]={ [1]={ [1]={ [1]={ @@ -85342,7 +87240,7 @@ return { [1]="map_rare_monster_life_regeneration_rate_per_minute_%" } }, - [3862]={ + [3959]={ [1]={ [1]={ limit={ @@ -85371,7 +87269,7 @@ return { [1]="flail_damage_+%" } }, - [3863]={ + [3960]={ [1]={ [1]={ limit={ @@ -85400,7 +87298,7 @@ return { [1]="flail_elemental_damage_+%" } }, - [3864]={ + [3961]={ [1]={ [1]={ limit={ @@ -85416,7 +87314,7 @@ return { [1]="flail_accuracy_rating" } }, - [3865]={ + [3962]={ [1]={ [1]={ limit={ @@ -85445,7 +87343,7 @@ return { [1]="flail_accuracy_rating_+%" } }, - [3866]={ + [3963]={ [1]={ [1]={ limit={ @@ -85474,7 +87372,7 @@ return { [1]="flail_attack_speed_+%" } }, - [3867]={ + [3964]={ [1]={ [1]={ limit={ @@ -85503,7 +87401,7 @@ return { [1]="flail_critical_strike_chance_+%" } }, - [3868]={ + [3965]={ [1]={ [1]={ limit={ @@ -85519,7 +87417,7 @@ return { [1]="flail_critical_strike_multiplier_+" } }, - [3869]={ + [3966]={ [1]={ [1]={ limit={ @@ -85540,7 +87438,7 @@ return { [2]="attack_maximum_added_cold_damage_with_flails" } }, - [3870]={ + [3967]={ [1]={ [1]={ limit={ @@ -85561,7 +87459,7 @@ return { [2]="attack_maximum_added_fire_damage_with_flails" } }, - [3871]={ + [3968]={ [1]={ [1]={ limit={ @@ -85582,7 +87480,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_flails" } }, - [3872]={ + [3969]={ [1]={ [1]={ limit={ @@ -85603,7 +87501,7 @@ return { [2]="attack_maximum_added_physical_damage_with_flails" } }, - [3873]={ + [3970]={ [1]={ [1]={ limit={ @@ -85632,7 +87530,7 @@ return { [1]="crossbow_damage_+%" } }, - [3874]={ + [3971]={ [1]={ [1]={ limit={ @@ -85661,7 +87559,7 @@ return { [1]="crossbow_elemental_damage_+%" } }, - [3875]={ + [3972]={ [1]={ [1]={ limit={ @@ -85677,7 +87575,7 @@ return { [1]="crossbow_accuracy_rating" } }, - [3876]={ + [3973]={ [1]={ [1]={ limit={ @@ -85706,7 +87604,7 @@ return { [1]="crossbow_accuracy_rating_+%" } }, - [3877]={ + [3974]={ [1]={ [1]={ limit={ @@ -85735,7 +87633,7 @@ return { [1]="crossbow_attack_speed_+%" } }, - [3878]={ + [3975]={ [1]={ [1]={ limit={ @@ -85764,7 +87662,7 @@ return { [1]="crossbow_critical_strike_chance_+%" } }, - [3879]={ + [3976]={ [1]={ [1]={ limit={ @@ -85780,7 +87678,7 @@ return { [1]="crossbow_critical_strike_multiplier_+" } }, - [3880]={ + [3977]={ [1]={ [1]={ limit={ @@ -85809,7 +87707,7 @@ return { [1]="crossbow_physical_damage_+%" } }, - [3881]={ + [3978]={ [1]={ [1]={ limit={ @@ -85830,7 +87728,7 @@ return { [2]="attack_maximum_added_cold_damage_with_crossbows" } }, - [3882]={ + [3979]={ [1]={ [1]={ limit={ @@ -85851,7 +87749,7 @@ return { [2]="attack_maximum_added_fire_damage_with_crossbows" } }, - [3883]={ + [3980]={ [1]={ [1]={ limit={ @@ -85872,7 +87770,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_crossbows" } }, - [3884]={ + [3981]={ [1]={ [1]={ limit={ @@ -85893,7 +87791,36 @@ return { [2]="attack_maximum_added_physical_damage_with_crossbows" } }, - [3885]={ + [3982]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Life, Mana and Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Life, Mana and Energy Shield" + } + }, + stats={ + [1]="maximum_life_mana_and_energy_shield_+%" + } + }, + [3983]={ [1]={ [1]={ limit={ @@ -85922,7 +87849,7 @@ return { [1]="siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem" } }, - [3886]={ + [3984]={ [1]={ [1]={ limit={ @@ -85947,7 +87874,7 @@ return { [1]="memory_line_number_of_shrines" } }, - [3887]={ + [3985]={ [1]={ [1]={ limit={ @@ -85972,7 +87899,7 @@ return { [1]="memory_line_number_of_pantheon_shrines" } }, - [3888]={ + [3986]={ [1]={ [1]={ limit={ @@ -86001,7 +87928,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [3889]={ + [3987]={ [1]={ [1]={ limit={ @@ -86030,7 +87957,60 @@ return { [1]="map_monsters_energy_shield_leech_resistance_permyriad" } }, - [3890]={ + [3988]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Adds {0} to {1} Cold Damage to Unarmed Melee Hits" + } + }, + stats={ + [1]="attack_minimum_added_melee_cold_damage_while_unarmed", + [2]="attack_maximum_added_melee_cold_damage_while_unarmed" + } + }, + [3989]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mana Leech from Critical Hits is instant" + } + }, + stats={ + [1]="mana_leech_is_instant_on_critical" + } + }, + [3990]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to inflict 1 Faerie Fire on Hit" + } + }, + stats={ + [1]="%_chance_to_apply_hounded_by_wisps_on_hit" + } + }, + [3991]={ [1]={ [1]={ limit={ @@ -86059,7 +88039,7 @@ return { [1]="burning_damage_+%_if_ignited_an_enemy_recently" } }, - [3891]={ + [3992]={ [1]={ [1]={ limit={ @@ -86075,7 +88055,7 @@ return { [1]="recover_%_maximum_life_on_enemy_ignited" } }, - [3892]={ + [3993]={ [1]={ [1]={ limit={ @@ -86104,7 +88084,7 @@ return { [1]="melee_physical_damage_+%_vs_ignited_enemies" } }, - [3893]={ + [3994]={ [1]={ [1]={ limit={ @@ -86133,7 +88113,7 @@ return { [1]="critical_strike_chance_+%_for_forking_arrows" } }, - [3894]={ + [3995]={ [1]={ [1]={ limit={ @@ -86149,7 +88129,7 @@ return { [1]="arrows_that_pierce_cause_bleeding" } }, - [3895]={ + [3996]={ [1]={ [1]={ limit={ @@ -86165,7 +88145,7 @@ return { [1]="arrows_that_pierce_chance_to_bleed_25%" } }, - [3896]={ + [3997]={ [1]={ [1]={ limit={ @@ -86181,7 +88161,7 @@ return { [1]="arrows_always_pierce_after_chaining" } }, - [3897]={ + [3998]={ [1]={ [1]={ limit={ @@ -86206,7 +88186,7 @@ return { [1]="spells_number_of_additional_projectiles" } }, - [3898]={ + [3999]={ [1]={ [1]={ limit={ @@ -86222,7 +88202,7 @@ return { [1]="minion_damage_increases_and_reductions_also_affects_you" } }, - [3899]={ + [4000]={ [1]={ [1]={ limit={ @@ -86251,7 +88231,7 @@ return { [1]="projectile_attack_damage_+%_per_200_accuracy" } }, - [3900]={ + [4001]={ [1]={ [1]={ [1]={ @@ -86293,7 +88273,7 @@ return { [2]="essence_buff_ground_fire_duration_ms" } }, - [3901]={ + [4002]={ [1]={ [1]={ limit={ @@ -86309,7 +88289,7 @@ return { [1]="unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life" } }, - [3902]={ + [4003]={ [1]={ [1]={ limit={ @@ -86325,7 +88305,7 @@ return { [1]="unique_boots_secondary_ground_shock_while_moving" } }, - [3903]={ + [4004]={ [1]={ [1]={ limit={ @@ -86358,7 +88338,7 @@ return { [1]="essence_display_elemental_damage_taken_while_not_moving_+%" } }, - [3904]={ + [4005]={ [1]={ [1]={ limit={ @@ -86383,7 +88363,7 @@ return { [1]="physical_damage_reduction_rating_%_while_not_moving" } }, - [3905]={ + [4006]={ [1]={ [1]={ limit={ @@ -86399,7 +88379,7 @@ return { [1]="armour_while_stationary" } }, - [3906]={ + [4007]={ [1]={ [1]={ limit={ @@ -86428,7 +88408,7 @@ return { [1]="physical_damage_taken_+%_while_moving" } }, - [3907]={ + [4008]={ [1]={ [1]={ limit={ @@ -86457,7 +88437,7 @@ return { [1]="mana_regeneration_rate_+%_while_stationary" } }, - [3908]={ + [4009]={ [1]={ [1]={ limit={ @@ -86486,7 +88466,7 @@ return { [1]="projectile_attack_skill_critical_strike_chance_+%" } }, - [3909]={ + [4010]={ [1]={ [1]={ limit={ @@ -86502,7 +88482,7 @@ return { [1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion" } }, - [3910]={ + [4011]={ [1]={ [1]={ limit={ @@ -86518,7 +88498,7 @@ return { [1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion" } }, - [3911]={ + [4012]={ [1]={ [1]={ limit={ @@ -86534,7 +88514,7 @@ return { [1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion" } }, - [3912]={ + [4013]={ [1]={ [1]={ limit={ @@ -86555,7 +88535,7 @@ return { [2]="attack_maximum_added_physical_damage_if_you_have_beast_minion" } }, - [3913]={ + [4014]={ [1]={ [1]={ limit={ @@ -86576,7 +88556,7 @@ return { [2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion" } }, - [3914]={ + [4015]={ [1]={ [1]={ limit={ @@ -86592,7 +88572,7 @@ return { [1]="attack_and_movement_speed_+%_if_you_have_beast_minion" } }, - [3915]={ + [4016]={ [1]={ [1]={ limit={ @@ -86621,7 +88601,7 @@ return { [1]="attack_damage_+%_if_other_ring_is_shaper_item" } }, - [3916]={ + [4017]={ [1]={ [1]={ limit={ @@ -86650,7 +88630,7 @@ return { [1]="spell_damage_+%_if_other_ring_is_elder_item" } }, - [3917]={ + [4018]={ [1]={ [1]={ limit={ @@ -86666,7 +88646,7 @@ return { [1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item" } }, - [3918]={ + [4019]={ [1]={ [1]={ limit={ @@ -86682,7 +88662,7 @@ return { [1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item" } }, - [3919]={ + [4020]={ [1]={ [1]={ limit={ @@ -86698,7 +88678,7 @@ return { [1]="maximum_life_per_equipped_elder_item" } }, - [3920]={ + [4021]={ [1]={ [1]={ limit={ @@ -86727,7 +88707,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge" } }, - [3921]={ + [4022]={ [1]={ [1]={ limit={ @@ -86743,7 +88723,7 @@ return { [1]="skill_mana_cost_+_for_each_equipped_corrupted_item" } }, - [3922]={ + [4023]={ [1]={ [1]={ limit={ @@ -86759,7 +88739,7 @@ return { [1]="non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped" } }, - [3923]={ + [4024]={ [1]={ [1]={ limit={ @@ -86775,7 +88755,7 @@ return { [1]="recover_%_maximum_life_on_flask_use" } }, - [3924]={ + [4025]={ [1]={ [1]={ limit={ @@ -86791,7 +88771,7 @@ return { [1]="recover_%_maximum_life_on_mana_flask_use" } }, - [3925]={ + [4026]={ [1]={ [1]={ limit={ @@ -86807,7 +88787,7 @@ return { [1]="non_instant_mana_recovery_from_flasks_also_recovers_life" } }, - [3926]={ + [4027]={ [1]={ [1]={ limit={ @@ -86836,7 +88816,7 @@ return { [1]="mana_cost_+%_per_200_mana_spent_recently" } }, - [3927]={ + [4028]={ [1]={ [1]={ limit={ @@ -86865,7 +88845,7 @@ return { [1]="spell_damage_+%_per_200_mana_spent_recently" } }, - [3928]={ + [4029]={ [1]={ [1]={ limit={ @@ -86881,7 +88861,7 @@ return { [1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges" } }, - [3929]={ + [4030]={ [1]={ [1]={ limit={ @@ -86897,7 +88877,7 @@ return { [1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently" } }, - [3930]={ + [4031]={ [1]={ [1]={ limit={ @@ -86913,7 +88893,7 @@ return { [1]="crab_aspect_crab_barrier_max_+" } }, - [3931]={ + [4032]={ [1]={ [1]={ limit={ @@ -86929,7 +88909,7 @@ return { [1]="damage_+%_per_crab_charge" } }, - [3932]={ + [4033]={ [1]={ [1]={ limit={ @@ -86945,7 +88925,7 @@ return { [1]="number_of_crab_charges_lost_when_hit" } }, - [3933]={ + [4034]={ [1]={ [1]={ limit={ @@ -86961,7 +88941,7 @@ return { [1]="additional_block_%_while_you_have_at_least_5_crab_charges" } }, - [3934]={ + [4035]={ [1]={ [1]={ limit={ @@ -86977,7 +88957,7 @@ return { [1]="additional_block_%_while_you_have_at_least_10_crab_charges" } }, - [3935]={ + [4036]={ [1]={ [1]={ limit={ @@ -86993,7 +88973,7 @@ return { [1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%" } }, - [3936]={ + [4037]={ [1]={ [1]={ limit={ @@ -87009,7 +88989,7 @@ return { [1]="maximum_blood_scythe_charges" } }, - [3937]={ + [4038]={ [1]={ [1]={ limit={ @@ -87025,7 +89005,7 @@ return { [1]="maximum_void_arrows" } }, - [3938]={ + [4039]={ [1]={ [1]={ limit={ @@ -87041,7 +89021,7 @@ return { [1]="hit_%_chance_to_gain_25%_damage_as_chaos" } }, - [3939]={ + [4040]={ [1]={ [1]={ limit={ @@ -87057,7 +89037,7 @@ return { [1]="hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos" } }, - [3940]={ + [4041]={ [1]={ [1]={ limit={ @@ -87073,7 +89053,7 @@ return { [1]="hit_%_chance_to_gain_50%_damage_as_chaos" } }, - [3941]={ + [4042]={ [1]={ [1]={ limit={ @@ -87089,7 +89069,7 @@ return { [1]="hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos" } }, - [3942]={ + [4043]={ [1]={ [1]={ limit={ @@ -87105,7 +89085,7 @@ return { [1]="hit_%_chance_to_gain_100%_damage_as_chaos" } }, - [3943]={ + [4044]={ [1]={ [1]={ limit={ @@ -87121,7 +89101,7 @@ return { [1]="hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos" } }, - [3944]={ + [4045]={ [1]={ [1]={ [1]={ @@ -87141,7 +89121,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect" } }, - [3945]={ + [4046]={ [1]={ [1]={ limit={ @@ -87157,7 +89137,7 @@ return { [1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth" } }, - [3946]={ + [4047]={ [1]={ [1]={ limit={ @@ -87173,7 +89153,7 @@ return { [1]="resist_all_elements_%_with_200_or_more_strength" } }, - [3947]={ + [4048]={ [1]={ [1]={ limit={ @@ -87202,7 +89182,7 @@ return { [1]="projectile_attack_damage_+%_with_at_least_200_dex" } }, - [3948]={ + [4049]={ [1]={ [1]={ limit={ @@ -87231,7 +89211,7 @@ return { [1]="critical_strike_chance_+%_with_at_least_200_int" } }, - [3949]={ + [4050]={ [1]={ [1]={ limit={ @@ -87247,7 +89227,7 @@ return { [1]="local_physical_damage_%_to_convert_to_a_random_element" } }, - [3950]={ + [4051]={ [1]={ [1]={ limit={ @@ -87263,7 +89243,7 @@ return { [1]="local_hits_always_inflict_elemental_ailments" } }, - [3951]={ + [4052]={ [1]={ [1]={ limit={ @@ -87292,7 +89272,7 @@ return { [1]="local_hit_damage_+%_vs_ignited_enemies" } }, - [3952]={ + [4053]={ [1]={ [1]={ limit={ @@ -87321,7 +89301,7 @@ return { [1]="local_hit_damage_+%_vs_frozen_enemies" } }, - [3953]={ + [4054]={ [1]={ [1]={ limit={ @@ -87350,7 +89330,7 @@ return { [1]="local_hit_damage_+%_vs_shocked_enemies" } }, - [3954]={ + [4055]={ [1]={ [1]={ [1]={ @@ -87370,7 +89350,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield" } }, - [3955]={ + [4056]={ [1]={ [1]={ [1]={ @@ -87390,7 +89370,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield" } }, - [3956]={ + [4057]={ [1]={ [1]={ [1]={ @@ -87410,7 +89390,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield" } }, - [3957]={ + [4058]={ [1]={ [1]={ limit={ @@ -87439,7 +89419,7 @@ return { [1]="area_of_effect_+%_per_25_rampage_stacks" } }, - [3958]={ + [4059]={ [1]={ [1]={ limit={ @@ -87455,7 +89435,7 @@ return { [1]="add_frenzy_charge_every_50_rampage_stacks" } }, - [3959]={ + [4060]={ [1]={ [1]={ limit={ @@ -87471,7 +89451,7 @@ return { [1]="maximum_energy_shield_+_per_5_armour_on_shield" } }, - [3960]={ + [4061]={ [1]={ [1]={ limit={ @@ -87487,7 +89467,7 @@ return { [1]="physical_damage_reduction_rating_per_5_evasion_on_shield" } }, - [3961]={ + [4062]={ [1]={ [1]={ limit={ @@ -87503,7 +89483,7 @@ return { [1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield" } }, - [3962]={ + [4063]={ [1]={ [1]={ limit={ @@ -87519,7 +89499,7 @@ return { [1]="maximum_spirit_charges_per_abyss_jewel_equipped" } }, - [3963]={ + [4064]={ [1]={ [1]={ limit={ @@ -87548,7 +89528,7 @@ return { [1]="travel_skill_cooldown_speed_+%" } }, - [3964]={ + [4065]={ [1]={ [1]={ limit={ @@ -87577,7 +89557,7 @@ return { [1]="gain_spirit_charge_every_x_ms" } }, - [3965]={ + [4066]={ [1]={ [1]={ limit={ @@ -87602,7 +89582,7 @@ return { [1]="gain_spirit_charge_on_kill_%_chance" } }, - [3966]={ + [4067]={ [1]={ [1]={ limit={ @@ -87618,7 +89598,7 @@ return { [1]="lose_spirit_charges_on_savage_hit_taken" } }, - [3967]={ + [4068]={ [1]={ [1]={ limit={ @@ -87634,7 +89614,7 @@ return { [1]="gain_%_life_when_spirit_charge_expires_or_consumed" } }, - [3968]={ + [4069]={ [1]={ [1]={ limit={ @@ -87650,7 +89630,7 @@ return { [1]="gain_%_es_when_spirit_charge_expires_or_consumed" } }, - [3969]={ + [4070]={ [1]={ [1]={ limit={ @@ -87666,7 +89646,7 @@ return { [1]="maximum_divine_charges" } }, - [3970]={ + [4071]={ [1]={ [1]={ limit={ @@ -87691,7 +89671,7 @@ return { [1]="gain_divine_charge_on_hit_%" } }, - [3971]={ + [4072]={ [1]={ [1]={ limit={ @@ -87720,7 +89700,7 @@ return { [1]="elemental_damage_+%_per_divine_charge" } }, - [3972]={ + [4073]={ [1]={ [1]={ [1]={ @@ -87740,7 +89720,7 @@ return { [1]="gain_divinity_ms_when_reaching_maximum_divine_charges" } }, - [3973]={ + [4074]={ [1]={ [1]={ limit={ @@ -87769,7 +89749,7 @@ return { [1]="travel_skills_cooldown_speed_+%_per_frenzy_charge" } }, - [3974]={ + [4075]={ [1]={ [1]={ limit={ @@ -87798,7 +89778,7 @@ return { [1]="elusive_effect_on_self_+%_per_power_charge" } }, - [3975]={ + [4076]={ [1]={ [1]={ limit={ @@ -87823,7 +89803,7 @@ return { [1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance" } }, - [3976]={ + [4077]={ [1]={ [1]={ limit={ @@ -87848,7 +89828,7 @@ return { [1]="lose_a_power_charge_when_you_gain_elusive_%_chance" } }, - [3977]={ + [4078]={ [1]={ [1]={ limit={ @@ -87873,7 +89853,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [3978]={ + [4079]={ [1]={ [1]={ limit={ @@ -87902,7 +89882,7 @@ return { [1]="enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits" } }, - [3979]={ + [4080]={ [1]={ [1]={ limit={ @@ -87918,7 +89898,7 @@ return { [1]="local_display_gain_fragile_growth_each_second" } }, - [3980]={ + [4081]={ [1]={ [1]={ limit={ @@ -87934,7 +89914,7 @@ return { [1]="base_maximum_fragile_regrowth" } }, - [3981]={ + [4082]={ [1]={ [1]={ [1]={ @@ -87954,7 +89934,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_fragile_regrowth" } }, - [3982]={ + [4083]={ [1]={ [1]={ limit={ @@ -87983,7 +89963,7 @@ return { [1]="mana_regeneration_rate_+%_per_fragile_regrowth" } }, - [3983]={ + [4084]={ [1]={ [1]={ limit={ @@ -87999,7 +89979,7 @@ return { [1]="lose_all_fragile_regrowth_when_hit" } }, - [3984]={ + [4085]={ [1]={ [1]={ limit={ @@ -88015,7 +89995,7 @@ return { [1]="minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance" } }, - [3985]={ + [4086]={ [1]={ [1]={ limit={ @@ -88031,7 +90011,7 @@ return { [1]="chaos_damage_does_not_damage_minions_energy_shield_extra_hard" } }, - [3986]={ + [4087]={ [1]={ [1]={ limit={ @@ -88060,7 +90040,7 @@ return { [1]="minion_energy_shield_delay_-%" } }, - [3987]={ + [4088]={ [1]={ [1]={ limit={ @@ -88076,7 +90056,7 @@ return { [1]="minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield" } }, - [3988]={ + [4089]={ [1]={ [1]={ limit={ @@ -88092,7 +90072,7 @@ return { [1]="arrows_from_first_firing_point_always_pierce" } }, - [3989]={ + [4090]={ [1]={ [1]={ limit={ @@ -88108,7 +90088,7 @@ return { [1]="arrows_from_second_firing_point_fork" } }, - [3990]={ + [4091]={ [1]={ [1]={ limit={ @@ -88124,7 +90104,7 @@ return { [1]="arrows_from_third_firing_point_return" } }, - [3991]={ + [4092]={ [1]={ [1]={ limit={ @@ -88149,7 +90129,7 @@ return { [1]="arrows_from_fourth_firing_point_additional_chains" } }, - [3992]={ + [4093]={ [1]={ [1]={ limit={ @@ -88174,7 +90154,7 @@ return { [1]="local_withered_on_hit_for_2_seconds_%_chance" } }, - [3993]={ + [4094]={ [1]={ [1]={ limit={ @@ -88190,7 +90170,7 @@ return { [1]="summoned_skeleton_warriors_get_weapon_stats_in_main_hand" } }, - [3994]={ + [4095]={ [1]={ [1]={ limit={ @@ -88206,7 +90186,7 @@ return { [1]="local_grant_skeleton_warriors_triple_damage_on_hit" } }, - [3995]={ + [4096]={ [1]={ [1]={ limit={ @@ -88222,7 +90202,7 @@ return { [1]="mirage_archers_do_not_attach" } }, - [3996]={ + [4097]={ [1]={ [1]={ limit={ @@ -88238,7 +90218,7 @@ return { [1]="additional_max_mirage_archers" } }, - [3997]={ + [4098]={ [1]={ [1]={ limit={ @@ -88254,7 +90234,7 @@ return { [1]="cannot_summon_mirage_archer_if_near_mirage_archer_radius" } }, - [3998]={ + [4099]={ [1]={ [1]={ limit={ @@ -88283,7 +90263,7 @@ return { [1]="damage_+%_per_fire_adaptation" } }, - [3999]={ + [4100]={ [1]={ [1]={ limit={ @@ -88312,7 +90292,7 @@ return { [1]="attack_and_cast_speed_+%_per_cold_adaptation" } }, - [4000]={ + [4101]={ [1]={ [1]={ limit={ @@ -88341,7 +90321,7 @@ return { [1]="critical_strike_chance_+%_per_lightning_adaptation" } }, - [4001]={ + [4102]={ [1]={ [1]={ limit={ @@ -88366,7 +90346,7 @@ return { [1]="gain_x_grasping_vines_when_you_take_a_critical_strike" } }, - [4002]={ + [4103]={ [1]={ [1]={ limit={ @@ -88395,7 +90375,7 @@ return { [1]="local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms" } }, - [4003]={ + [4104]={ [1]={ [1]={ limit={ @@ -88420,7 +90400,7 @@ return { [1]="unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines" } }, - [4004]={ + [4105]={ [1]={ [1]={ limit={ @@ -88449,7 +90429,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_cursed_enemy" } }, - [4005]={ + [4106]={ [1]={ [1]={ limit={ @@ -88478,7 +90458,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_poisoned_enemy" } }, - [4006]={ + [4107]={ [1]={ [1]={ limit={ @@ -88503,7 +90483,7 @@ return { [1]="pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask" } }, - [4007]={ + [4108]={ [1]={ [1]={ limit={ @@ -88532,7 +90512,7 @@ return { [1]="pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask" } }, - [4008]={ + [4109]={ [1]={ [1]={ limit={ @@ -88548,7 +90528,7 @@ return { [1]="pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask" } }, - [4009]={ + [4110]={ [1]={ [1]={ limit={ @@ -88564,7 +90544,7 @@ return { [1]="pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask" } }, - [4010]={ + [4111]={ [1]={ [1]={ limit={ @@ -88580,7 +90560,7 @@ return { [1]="display_ailment_bearer_charge_interval" } }, - [4011]={ + [4112]={ [1]={ [1]={ [1]={ @@ -88626,7 +90606,7 @@ return { [1]="dodge_roll_travel_distance_+_if_not_dodge_rolled_recently" } }, - [4012]={ + [4113]={ [1]={ [1]={ [1]={ @@ -88672,7 +90652,7 @@ return { [1]="dodge_roll_travel_distance_+_if_dodge_rolled_recently" } }, - [4013]={ + [4114]={ [1]={ [1]={ limit={ @@ -88681,7 +90661,7 @@ return { [2]=1 } }, - text="Barrageable Attacks with this Bow Repeat {0:+d} time if no enemies are in your Presence" + text="Repeatable Attacks with this Bow Repeat {0:+d} time if no enemies are in your Presence" }, [2]={ limit={ @@ -88690,14 +90670,14 @@ return { [2]="#" } }, - text="Barrageable Attacks with this Bow Repeat {0:+d} times if no enemies are in your Presence" + text="Repeatable Attacks with this Bow Repeat {0:+d} times if no enemies are in your Presence" } }, stats={ [1]="unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence" } }, - [4014]={ + [4115]={ [1]={ [1]={ limit={ @@ -88713,7 +90693,139 @@ return { [1]="wither_never_expires" } }, - [4015]={ + [4116]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="When you gain Combo, gain an additional Combo" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="When you gain Combo, gain {0} additional Combo" + } + }, + stats={ + [1]="additional_combo_gain_on_hit" + } + }, + [4117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Withered you inflict also increases Fire Damage taken" + } + }, + stats={ + [1]="wither_inflicted_also_does_fire" + } + }, + [4118]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=-1000, + [2]=-1000 + } + }, + text="{0:+d} second to current Energy Shield Recharge delay per Combo expended when using Skills" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d} seconds to current Energy Shield Recharge delay per Combo expended when using Skills" + } + }, + stats={ + [1]="add_X_ms_to_energy_shield_recharge_delay_per_combo_spent" + } + }, + [4119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3\nExpend an Owl Feather when you Dodge to trigger Primal Bounty" + }, + [2]={ + [1]={ + k="add_one", + v=1 + }, + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Dodging can expend up to {0} Owl Feathers, granting Primal Bounty 100% more\nEmpowerment effect per additional Feather expended" + } + }, + stats={ + [1]="owl_feather_max_bonus_to_stack" + } + }, + [4120]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain Owl Feathers {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Gain Owl Feathers {0}% slower" + } + }, + stats={ + [1]="owl_feather_gain_frequency_+%" + } + }, + [4121]={ [1]={ [1]={ limit={ @@ -88729,7 +90841,7 @@ return { [1]="chill_minimum_slow_%" } }, - [4016]={ + [4122]={ [1]={ [1]={ limit={ @@ -88745,7 +90857,7 @@ return { [1]="shock_minimum_damage_taken_increase_%" } }, - [4017]={ + [4123]={ [1]={ [1]={ limit={ @@ -88761,7 +90873,7 @@ return { [1]="gain_convergence_on_hitting_unique_enemy" } }, - [4018]={ + [4124]={ [1]={ [1]={ limit={ @@ -88790,7 +90902,7 @@ return { [1]="area_of_effect_+%_while_you_do_not_have_convergence" } }, - [4019]={ + [4125]={ [1]={ [1]={ limit={ @@ -88806,7 +90918,7 @@ return { [1]="X_armour_if_you_have_blocked_recently" } }, - [4020]={ + [4126]={ [1]={ [1]={ limit={ @@ -88822,7 +90934,7 @@ return { [1]="X_armour_per_active_totem" } }, - [4021]={ + [4127]={ [1]={ [1]={ limit={ @@ -88838,7 +90950,7 @@ return { [1]="X_to_armour_per_2_strength" } }, - [4022]={ + [4128]={ [1]={ [1]={ limit={ @@ -88867,7 +90979,7 @@ return { [1]="local_jewel_expansion_passive_node_count" } }, - [4023]={ + [4129]={ [1]={ [1]={ limit={ @@ -88883,7 +90995,36 @@ return { [1]="skill_glory_gain_per_2_seconds" } }, - [4024]={ + [4130]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more maximum Runic Ward" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less maximum Runic Ward" + } + }, + stats={ + [1]="ward_rune_maximum_ward_+%_final" + } + }, + [4131]={ [1]={ [1]={ limit={ @@ -88912,7 +91053,7 @@ return { [1]="absolution_cast_speed_+%" } }, - [4025]={ + [4132]={ [1]={ [1]={ limit={ @@ -88941,7 +91082,7 @@ return { [1]="absolution_duration_+%" } }, - [4026]={ + [4133]={ [1]={ [1]={ limit={ @@ -88970,7 +91111,7 @@ return { [1]="absolution_minion_area_of_effect_+%" } }, - [4027]={ + [4134]={ [1]={ [1]={ limit={ @@ -88995,7 +91136,7 @@ return { [1]="abyssal_wasting_cold_resistance_%" } }, - [4028]={ + [4135]={ [1]={ [1]={ limit={ @@ -89024,7 +91165,7 @@ return { [1]="abyssal_wasting_effect_+%" } }, - [4029]={ + [4136]={ [1]={ [1]={ limit={ @@ -89049,7 +91190,7 @@ return { [1]="abyssal_wasting_fire_resistance_%" } }, - [4030]={ + [4137]={ [1]={ [1]={ limit={ @@ -89065,7 +91206,7 @@ return { [1]="abyssal_wasting_infinite_duration" } }, - [4031]={ + [4138]={ [1]={ [1]={ limit={ @@ -89081,7 +91222,7 @@ return { [1]="abyssal_wasting_instant_life_leech_%" } }, - [4032]={ + [4139]={ [1]={ [1]={ limit={ @@ -89097,7 +91238,7 @@ return { [1]="abyssal_wasting_instant_mana_leech_%" } }, - [4033]={ + [4140]={ [1]={ [1]={ limit={ @@ -89122,7 +91263,7 @@ return { [1]="abyssal_wasting_lightning_resistance_%" } }, - [4034]={ + [4141]={ [1]={ [1]={ limit={ @@ -89138,7 +91279,7 @@ return { [1]="abyssal_wasting_on_hit" } }, - [4035]={ + [4142]={ [1]={ [1]={ limit={ @@ -89163,7 +91304,7 @@ return { [1]="accuracy_rating_+%_equal_to_%_attack_critical_strike_chance" } }, - [4036]={ + [4143]={ [1]={ [1]={ limit={ @@ -89179,7 +91320,7 @@ return { [1]="accuracy_rating_+%_final_at_max_distance_scaled" } }, - [4037]={ + [4144]={ [1]={ [1]={ limit={ @@ -89208,7 +91349,7 @@ return { [1]="accuracy_rating_+%_per_10_tribute" } }, - [4038]={ + [4145]={ [1]={ [1]={ limit={ @@ -89237,7 +91378,7 @@ return { [1]="accuracy_rating_+%_per_25_tribute" } }, - [4039]={ + [4146]={ [1]={ [1]={ limit={ @@ -89266,7 +91407,7 @@ return { [1]="accuracy_rating_+%_vs_abyssal_wasting_afflicted" } }, - [4040]={ + [4147]={ [1]={ [1]={ limit={ @@ -89295,7 +91436,7 @@ return { [1]="accuracy_rating_+%_vs_enemies_in_close_range" } }, - [4041]={ + [4148]={ [1]={ [1]={ limit={ @@ -89324,7 +91465,7 @@ return { [1]="accuracy_rating_+%_vs_rare_or_unique_enemy" } }, - [4042]={ + [4149]={ [1]={ [1]={ limit={ @@ -89353,7 +91494,7 @@ return { [1]="accuracy_rating_+%_vs_unique_enemies" } }, - [4043]={ + [4150]={ [1]={ [1]={ limit={ @@ -89382,7 +91523,7 @@ return { [1]="accuracy_rating_+%_while_moving" } }, - [4044]={ + [4151]={ [1]={ [1]={ limit={ @@ -89411,7 +91552,7 @@ return { [1]="accuracy_rating_+%_while_shapeshifted" } }, - [4045]={ + [4152]={ [1]={ [1]={ limit={ @@ -89440,7 +91581,7 @@ return { [1]="accuracy_rating_+%_while_surrounded" } }, - [4046]={ + [4153]={ [1]={ [1]={ limit={ @@ -89456,7 +91597,7 @@ return { [1]="accuracy_rating_+_per_evasion_rating_on_helmet" } }, - [4047]={ + [4154]={ [1]={ [1]={ limit={ @@ -89485,7 +91626,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%" } }, - [4048]={ + [4155]={ [1]={ [1]={ limit={ @@ -89501,7 +91642,7 @@ return { [1]="accuracy_rating_is_doubled" } }, - [4049]={ + [4156]={ [1]={ [1]={ limit={ @@ -89517,7 +91658,7 @@ return { [1]="accuracy_rating_per_level" } }, - [4050]={ + [4157]={ [1]={ [1]={ limit={ @@ -89533,7 +91674,7 @@ return { [1]="accuracy_rating_+_per_frenzy_charge" } }, - [4051]={ + [4158]={ [1]={ [1]={ limit={ @@ -89549,7 +91690,7 @@ return { [1]="accuracy_rating_+_per_green_socket_on_bow" } }, - [4052]={ + [4159]={ [1]={ [1]={ limit={ @@ -89578,7 +91719,7 @@ return { [1]="accuracy_rating_+%_during_onslaught" } }, - [4053]={ + [4160]={ [1]={ [1]={ limit={ @@ -89607,7 +91748,7 @@ return { [1]="accuracy_rating_+%_if_enemy_not_killed_recently" } }, - [4054]={ + [4161]={ [1]={ [1]={ limit={ @@ -89636,7 +91777,7 @@ return { [1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds" } }, - [4055]={ + [4162]={ [1]={ [1]={ limit={ @@ -89652,7 +91793,7 @@ return { [1]="accuracy_rating_vs_bleeding_enemies" } }, - [4056]={ + [4163]={ [1]={ [1]={ limit={ @@ -89668,7 +91809,7 @@ return { [1]="accuracy_rating_while_at_maximum_frenzy_charges" } }, - [4057]={ + [4164]={ [1]={ [1]={ limit={ @@ -89684,7 +91825,7 @@ return { [1]="action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds" } }, - [4058]={ + [4165]={ [1]={ [1]={ limit={ @@ -89717,7 +91858,7 @@ return { [1]="action_speed_-%" } }, - [4059]={ + [4166]={ [1]={ [1]={ limit={ @@ -89746,7 +91887,7 @@ return { [1]="active_block_maximum_distance_+%" } }, - [4060]={ + [4167]={ [1]={ [1]={ limit={ @@ -89762,7 +91903,7 @@ return { [1]="active_skill_generates_mp_%_glory_per_armour_break" } }, - [4061]={ + [4168]={ [1]={ [1]={ limit={ @@ -89778,7 +91919,7 @@ return { [1]="active_skill_generates_mp_%_glory_per_attack_hit" } }, - [4062]={ + [4169]={ [1]={ [1]={ limit={ @@ -89794,7 +91935,7 @@ return { [1]="active_skill_generates_mp_%_glory_per_heavy_stun" } }, - [4063]={ + [4170]={ [1]={ [1]={ limit={ @@ -89810,7 +91951,7 @@ return { [1]="active_skill_generates_mp_%_glory_per_ignite" } }, - [4064]={ + [4171]={ [1]={ [1]={ limit={ @@ -89839,7 +91980,7 @@ return { [1]="active_skill_impale_magnitude_+%_final" } }, - [4065]={ + [4172]={ [1]={ [1]={ limit={ @@ -89855,7 +91996,7 @@ return { [1]="active_skill_life_gained_on_cull" } }, - [4066]={ + [4173]={ [1]={ [1]={ limit={ @@ -89871,7 +92012,23 @@ return { [1]="active_skill_mana_gained_on_cull" } }, - [4067]={ + [4174]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions from this skill have 1% increased Attack Speed\nper {0} of your Dexterity" + } + }, + stats={ + [1]="active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity" + } + }, + [4175]={ [1]={ [1]={ limit={ @@ -89900,7 +92057,7 @@ return { [1]="active_skill_poison_effect_+%_final" } }, - [4068]={ + [4176]={ [1]={ [1]={ limit={ @@ -89916,7 +92073,7 @@ return { [1]="add_%_base_armour_on_equipment_to_stun_threshold" } }, - [4069]={ + [4177]={ [1]={ [1]={ limit={ @@ -89932,66 +92089,7 @@ return { [1]="add_X_guard_on_trigger_per_100_ms_total_use_time_of_triggered_skill_up_to_maximum_mana" } }, - [4070]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="DNT-UNUSED Expending Combo adds {0} second to remaining Energy Shield Recharge delay per Combo" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="DNT-UNUSED Expending Combo adds {0} seconds to remaining Energy Shield Recharge delay per Combo" - }, - [3]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=-1000, - [2]=-1000 - } - }, - text="DNT-UNUSED Expending Combo removes {0} second from remaining Energy Shield Recharge delay per Combo" - }, - [4]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="DNT-UNUSED Expending Combo removes {0} seconds from remaining Energy Shield Recharge delay per Combo" - } - }, - stats={ - [1]="add_X_ms_to_energy_shield_recharge_delay_per_combo_spent" - } - }, - [4071]={ + [4178]={ [1]={ [1]={ limit={ @@ -90007,7 +92105,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance_while_dual_wielding" } }, - [4072]={ + [4179]={ [1]={ [1]={ limit={ @@ -90023,7 +92121,7 @@ return { [1]="add_frenzy_charge_when_hit_%" } }, - [4073]={ + [4180]={ [1]={ [1]={ limit={ @@ -90048,7 +92146,7 @@ return { [1]="add_power_charge_on_hit_while_poisoned_%" } }, - [4074]={ + [4181]={ [1]={ [1]={ limit={ @@ -90073,7 +92171,7 @@ return { [1]="add_x_grasping_vines_on_hit" } }, - [4075]={ + [4182]={ [1]={ [1]={ limit={ @@ -90098,7 +92196,7 @@ return { [1]="added_cooldown_count_if_not_instant_and_you_have_at_least_100_tribute" } }, - [4076]={ + [4183]={ [1]={ [1]={ limit={ @@ -90114,7 +92212,7 @@ return { [1]="added_thorns_cold_base_damage_%_of_maximum_mana" } }, - [4077]={ + [4184]={ [1]={ [1]={ limit={ @@ -90130,7 +92228,7 @@ return { [1]="additional_attack_block_%_if_used_shield_skill_recently" } }, - [4078]={ + [4185]={ [1]={ [1]={ limit={ @@ -90146,7 +92244,7 @@ return { [1]="additional_attack_block_%_per_endurance_charge" } }, - [4079]={ + [4186]={ [1]={ [1]={ limit={ @@ -90162,7 +92260,7 @@ return { [1]="additional_attack_block_%_per_frenzy_charge" } }, - [4080]={ + [4187]={ [1]={ [1]={ limit={ @@ -90178,7 +92276,7 @@ return { [1]="additional_attack_block_%_per_power_charge" } }, - [4081]={ + [4188]={ [1]={ [1]={ limit={ @@ -90194,7 +92292,7 @@ return { [1]="additional_attack_block_%_per_summoned_skeleton" } }, - [4082]={ + [4189]={ [1]={ [1]={ limit={ @@ -90210,7 +92308,7 @@ return { [1]="additional_ballista_totems_allowed" } }, - [4083]={ + [4190]={ [1]={ [1]={ limit={ @@ -90235,7 +92333,7 @@ return { [1]="additional_beam_only_chains" } }, - [4084]={ + [4191]={ [1]={ [1]={ limit={ @@ -90251,7 +92349,7 @@ return { [1]="additional_block_chance_%_while_holding_focus" } }, - [4085]={ + [4192]={ [1]={ [1]={ limit={ @@ -90280,7 +92378,7 @@ return { [1]="additional_block_%_against_frontal_attacks" } }, - [4086]={ + [4193]={ [1]={ [1]={ limit={ @@ -90296,7 +92394,7 @@ return { [1]="additional_block_%_if_you_have_crit_recently" } }, - [4087]={ + [4194]={ [1]={ [1]={ limit={ @@ -90312,7 +92410,7 @@ return { [1]="additional_block_%_per_endurance_charge" } }, - [4088]={ + [4195]={ [1]={ [1]={ limit={ @@ -90328,7 +92426,7 @@ return { [1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds" } }, - [4089]={ + [4196]={ [1]={ [1]={ limit={ @@ -90344,7 +92442,7 @@ return { [1]="additional_block_%_while_not_cursed" } }, - [4090]={ + [4197]={ [1]={ [1]={ limit={ @@ -90360,7 +92458,7 @@ return { [1]="additional_block_%_while_on_consecrated_ground" } }, - [4091]={ + [4198]={ [1]={ [1]={ limit={ @@ -90376,7 +92474,7 @@ return { [1]="additional_block_%_with_5_or_more_nearby_enemies" } }, - [4092]={ + [4199]={ [1]={ [1]={ limit={ @@ -90401,23 +92499,7 @@ return { [1]="additional_combo_gain_chance_%" } }, - [4093]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="DNT-UNUSED Gain {0} additional Combo whenever you gain Combo" - } - }, - stats={ - [1]="additional_combo_gain_on_hit" - } - }, - [4094]={ + [4200]={ [1]={ [1]={ [1]={ @@ -90437,7 +92519,7 @@ return { [1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad" } }, - [4095]={ + [4201]={ [1]={ [1]={ [1]={ @@ -90457,7 +92539,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [4096]={ + [4202]={ [1]={ [1]={ [1]={ @@ -90477,7 +92559,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%" } }, - [4097]={ + [4203]={ [1]={ [1]={ [1]={ @@ -90497,7 +92579,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred" } }, - [4098]={ + [4204]={ [1]={ [1]={ [1]={ @@ -90517,7 +92599,7 @@ return { [1]="additional_critical_strike_chance_permyriad_with_herald_skills" } }, - [4099]={ + [4205]={ [1]={ [1]={ limit={ @@ -90533,7 +92615,7 @@ return { [1]="additional_deflection_rating" } }, - [4100]={ + [4206]={ [1]={ [1]={ limit={ @@ -90549,7 +92631,7 @@ return { [1]="additional_dexterity_per_allocated_mastery" } }, - [4101]={ + [4207]={ [1]={ [1]={ limit={ @@ -90574,7 +92656,7 @@ return { [1]="additional_infusion_gain_chance_%" } }, - [4102]={ + [4208]={ [1]={ [1]={ limit={ @@ -90590,7 +92672,7 @@ return { [1]="additional_intelligence_per_allocated_mastery" } }, - [4103]={ + [4209]={ [1]={ [1]={ limit={ @@ -90615,7 +92697,7 @@ return { [1]="additional_max_number_of_dominated_magic_monsters" } }, - [4104]={ + [4210]={ [1]={ [1]={ limit={ @@ -90640,7 +92722,7 @@ return { [1]="additional_max_number_of_dominated_rare_monsters" } }, - [4105]={ + [4211]={ [1]={ [1]={ limit={ @@ -90656,7 +92738,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_at_least_5_red_green_blue_supports_socketed" } }, - [4106]={ + [4212]={ [1]={ [1]={ limit={ @@ -90672,7 +92754,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently" } }, - [4107]={ + [4213]={ [1]={ [1]={ limit={ @@ -90688,7 +92770,23 @@ return { [1]="additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements" } }, - [4108]={ + [4214]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to all Maximum Elemental Resistances while on full Runic Ward" + } + }, + stats={ + [1]="additional_maximum_all_elemental_resistances_%_while_on_full_ward" + } + }, + [4215]={ [1]={ [1]={ limit={ @@ -90704,7 +92802,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana" } }, - [4109]={ + [4216]={ [1]={ [1]={ limit={ @@ -90720,7 +92818,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour" } }, - [4110]={ + [4217]={ [1]={ [1]={ limit={ @@ -90736,7 +92834,7 @@ return { [1]="additional_maximum_all_resistances_%_if_you_have_at_least_100_tribute" } }, - [4111]={ + [4218]={ [1]={ [1]={ limit={ @@ -90752,7 +92850,7 @@ return { [1]="additional_maximum_all_resistances_%_while_poisoned" } }, - [4112]={ + [4219]={ [1]={ [1]={ limit={ @@ -90768,7 +92866,7 @@ return { [1]="additional_maximum_all_resistances_%_at_devotion_threshold" } }, - [4113]={ + [4220]={ [1]={ [1]={ limit={ @@ -90784,7 +92882,23 @@ return { [1]="additional_maximum_all_resistances_%_with_no_endurance_charges" } }, - [4114]={ + [4221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to maximum Block chance if you've Blocked with a raised Shield Recently" + } + }, + stats={ + [1]="additional_maximum_block_%_if_blocked_with_active_block_recently" + } + }, + [4222]={ [1]={ [1]={ limit={ @@ -90809,7 +92923,7 @@ return { [1]="additional_number_of_brands_to_create" } }, - [4115]={ + [4223]={ [1]={ [1]={ [1]={ @@ -90829,7 +92943,7 @@ return { [1]="additional_off_hand_critical_strike_chance_permyriad" } }, - [4116]={ + [4224]={ [1]={ [1]={ [1]={ @@ -90849,7 +92963,7 @@ return { [1]="additional_off_hand_critical_strike_chance_while_dual_wielding" } }, - [4117]={ + [4225]={ [1]={ [1]={ limit={ @@ -90865,7 +92979,7 @@ return { [1]="additional_physical_damage_reduction_if_warcried_in_past_8_seconds" } }, - [4118]={ + [4226]={ [1]={ [1]={ limit={ @@ -90881,7 +92995,7 @@ return { [1]="additional_physical_damage_reduction_%_during_focus" } }, - [4119]={ + [4227]={ [1]={ [1]={ limit={ @@ -90897,7 +93011,7 @@ return { [1]="additional_physical_damage_reduction_%_during_life_or_mana_flask_effect" } }, - [4120]={ + [4228]={ [1]={ [1]={ limit={ @@ -90913,7 +93027,7 @@ return { [1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently" } }, - [4121]={ + [4229]={ [1]={ [1]={ limit={ @@ -90929,7 +93043,7 @@ return { [1]="additional_physical_damage_reduction_%_per_keystone" } }, - [4122]={ + [4230]={ [1]={ [1]={ limit={ @@ -90945,7 +93059,7 @@ return { [1]="additional_physical_damage_reduction_%_per_minion_up_to_10%" } }, - [4123]={ + [4231]={ [1]={ [1]={ limit={ @@ -90961,7 +93075,7 @@ return { [1]="additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity" } }, - [4124]={ + [4232]={ [1]={ [1]={ limit={ @@ -90977,7 +93091,7 @@ return { [1]="additional_physical_damage_reduction_%_vs_abyssal_monsters" } }, - [4125]={ + [4233]={ [1]={ [1]={ limit={ @@ -90993,7 +93107,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_determination" } }, - [4126]={ + [4234]={ [1]={ [1]={ limit={ @@ -91009,7 +93123,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill" } }, - [4127]={ + [4235]={ [1]={ [1]={ limit={ @@ -91025,7 +93139,7 @@ return { [1]="additional_physical_damage_reduction_%_while_bleeding" } }, - [4128]={ + [4236]={ [1]={ [1]={ limit={ @@ -91041,7 +93155,7 @@ return { [1]="additional_physical_damage_reduction_%_while_channelling" } }, - [4129]={ + [4237]={ [1]={ [1]={ limit={ @@ -91057,7 +93171,7 @@ return { [1]="additional_physical_damage_reduction_%_while_frozen" } }, - [4130]={ + [4238]={ [1]={ [1]={ limit={ @@ -91073,7 +93187,7 @@ return { [1]="additional_physical_damage_reduction_%_while_moving" } }, - [4131]={ + [4239]={ [1]={ [1]={ limit={ @@ -91089,7 +93203,7 @@ return { [1]="additional_strength_per_allocated_mastery" } }, - [4132]={ + [4240]={ [1]={ [1]={ [1]={ @@ -91109,7 +93223,7 @@ return { [1]="additional_thorns_critical_strike_chance_permyriad_per_50_tribute" } }, - [4133]={ + [4241]={ [1]={ [1]={ limit={ @@ -91125,7 +93239,7 @@ return { [1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed" } }, - [4134]={ + [4242]={ [1]={ [1]={ limit={ @@ -91141,7 +93255,7 @@ return { [1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value" } }, - [4135]={ + [4243]={ [1]={ [1]={ limit={ @@ -91157,7 +93271,7 @@ return { [1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value" } }, - [4136]={ + [4244]={ [1]={ [1]={ limit={ @@ -91173,7 +93287,7 @@ return { [1]="additive_mana_modifiers_apply_to_damage_at_30%_value" } }, - [4137]={ + [4245]={ [1]={ [1]={ limit={ @@ -91189,7 +93303,7 @@ return { [1]="additive_mana_modifiers_apply_to_shock_effect_at_30%_value" } }, - [4138]={ + [4246]={ [1]={ [1]={ limit={ @@ -91205,7 +93319,7 @@ return { [1]="additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [4139]={ + [4247]={ [1]={ [1]={ limit={ @@ -91221,7 +93335,7 @@ return { [1]="additive_modifiers_to_life_regeneration_also_apply_to_mana_regeneration_rate" } }, - [4140]={ + [4248]={ [1]={ [1]={ limit={ @@ -91237,7 +93351,7 @@ return { [1]="additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate" } }, - [4141]={ + [4249]={ [1]={ [1]={ limit={ @@ -91253,7 +93367,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_while_shapeshifted" } }, - [4142]={ + [4250]={ [1]={ [1]={ limit={ @@ -91282,7 +93396,23 @@ return { [1]="aftershock_area_of_effect_+%" } }, - [4143]={ + [4251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated" + } + }, + stats={ + [1]="aggravate_bleeding_inflicted_vs_shocked_enemy" + } + }, + [4252]={ [1]={ [1]={ [1]={ @@ -91315,7 +93445,7 @@ return { [1]="aggravate_bleeding_older_than_ms_on_hit" } }, - [4144]={ + [4253]={ [1]={ [1]={ limit={ @@ -91340,7 +93470,7 @@ return { [1]="aggravate_bleeding_on_attack_crit_chance_%" } }, - [4145]={ + [4254]={ [1]={ [1]={ limit={ @@ -91356,7 +93486,7 @@ return { [1]="base_aggravate_bleeding_on_attack_hit_chance_%" } }, - [4146]={ + [4255]={ [1]={ [1]={ limit={ @@ -91372,7 +93502,7 @@ return { [1]="aggravate_bleeding_on_attack_knockback_chance_%" } }, - [4147]={ + [4256]={ [1]={ [1]={ limit={ @@ -91388,7 +93518,7 @@ return { [1]="aggravate_bleeding_on_enemies_when_they_enter_your_presence" } }, - [4148]={ + [4257]={ [1]={ [1]={ limit={ @@ -91404,7 +93534,7 @@ return { [1]="aggravate_bleeding_on_exerted_attack_hit_chance_%" } }, - [4149]={ + [4258]={ [1]={ [1]={ limit={ @@ -91420,7 +93550,7 @@ return { [1]="aggravate_bleeding_when_inflicted_vs_cursed_enemy" } }, - [4150]={ + [4259]={ [1]={ [1]={ limit={ @@ -91436,7 +93566,7 @@ return { [1]="aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%" } }, - [4151]={ + [4260]={ [1]={ [1]={ limit={ @@ -91452,7 +93582,7 @@ return { [1]="aggravate_bleeding_when_inflicted_vs_pinned_enemy" } }, - [4152]={ + [4261]={ [1]={ [1]={ limit={ @@ -91468,7 +93598,7 @@ return { [1]="aggravate_inflicted_bleeding" } }, - [4153]={ + [4262]={ [1]={ [1]={ limit={ @@ -91484,7 +93614,7 @@ return { [1]="local_aggravating_bleeds_also_causes_you_to_aggravate_ignites" } }, - [4154]={ + [4263]={ [1]={ [1]={ limit={ @@ -91513,7 +93643,7 @@ return { [1]="agony_crawler_damage_+%" } }, - [4155]={ + [4264]={ [1]={ [1]={ limit={ @@ -91529,7 +93659,7 @@ return { [1]="ailment_bearer_always_freeze_shock_ignite" } }, - [4156]={ + [4265]={ [1]={ [1]={ limit={ @@ -91558,7 +93688,7 @@ return { [1]="ailment_bearer_elemental_damage_+%_final" } }, - [4157]={ + [4266]={ [1]={ [1]={ limit={ @@ -91587,7 +93717,7 @@ return { [1]="ailment_chance_+%_vs_abyssal_wasting_afflicted" } }, - [4158]={ + [4267]={ [1]={ [1]={ limit={ @@ -91616,7 +93746,7 @@ return { [1]="ailment_chance_+%_vs_exposed" } }, - [4159]={ + [4268]={ [1]={ [1]={ limit={ @@ -91645,7 +93775,7 @@ return { [1]="ailment_chance_+%_vs_rare_or_unique_enemy" } }, - [4160]={ + [4269]={ [1]={ [1]={ limit={ @@ -91674,7 +93804,7 @@ return { [1]="ailment_chance_+%" } }, - [4161]={ + [4270]={ [1]={ [1]={ limit={ @@ -91703,7 +93833,7 @@ return { [1]="ailment_duration_+%_vs_beasts" } }, - [4162]={ + [4271]={ [1]={ [1]={ limit={ @@ -91732,7 +93862,7 @@ return { [1]="ailment_duration_+%_vs_cursed_enemy" } }, - [4163]={ + [4272]={ [1]={ [1]={ limit={ @@ -91761,7 +93891,7 @@ return { [1]="ailment_duration_+%_vs_exposed" } }, - [4164]={ + [4273]={ [1]={ [1]={ limit={ @@ -91790,7 +93920,7 @@ return { [1]="ailment_effect_+%" } }, - [4165]={ + [4274]={ [1]={ [1]={ limit={ @@ -91819,7 +93949,7 @@ return { [1]="ailment_magnitude_+%_vs_marked_enemies" } }, - [4166]={ + [4275]={ [1]={ [1]={ limit={ @@ -91835,7 +93965,7 @@ return { [1]="ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour" } }, - [4167]={ + [4276]={ [1]={ [1]={ limit={ @@ -91851,7 +93981,7 @@ return { [1]="ailment_threshold_+_per_dexterity" } }, - [4168]={ + [4277]={ [1]={ [1]={ limit={ @@ -91867,7 +93997,7 @@ return { [1]="ailment_threshold_increased_by_uncapped_chaos_resistance" } }, - [4169]={ + [4278]={ [1]={ [1]={ limit={ @@ -91883,7 +94013,7 @@ return { [1]="ailment_threshold_+" } }, - [4170]={ + [4279]={ [1]={ [1]={ limit={ @@ -91899,7 +94029,7 @@ return { [1]="ailment_threshold_+_from_%_maximum_energy_shield" } }, - [4171]={ + [4280]={ [1]={ [1]={ limit={ @@ -91928,7 +94058,7 @@ return { [1]="ailment_threshold_+%" } }, - [4172]={ + [4281]={ [1]={ [1]={ limit={ @@ -91937,27 +94067,14 @@ return { [2]="#" } }, - text="{0}% increased Alchemist's Mark Curse Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Alchemist's Mark Curse Effect" + text="All damage with Attacks Contributes to Electrocution Buildup" } }, stats={ - [1]="alchemists_mark_curse_effect_+%" + [1]="all_attack_damage_can_electrocute" } }, - [4173]={ + [4282]={ [1]={ [1]={ limit={ @@ -91973,7 +94090,7 @@ return { [1]="all_attacks_count_as_exerted" } }, - [4174]={ + [4283]={ [1]={ [1]={ limit={ @@ -91989,7 +94106,7 @@ return { [1]="all_damage_can_electrocute" } }, - [4175]={ + [4284]={ [1]={ [1]={ limit={ @@ -92005,7 +94122,7 @@ return { [1]="all_damage_can_freeze" } }, - [4176]={ + [4285]={ [1]={ [1]={ limit={ @@ -92021,7 +94138,7 @@ return { [1]="all_damage_can_ignite" } }, - [4177]={ + [4286]={ [1]={ [1]={ limit={ @@ -92037,7 +94154,7 @@ return { [1]="all_damage_can_poison" } }, - [4178]={ + [4287]={ [1]={ [1]={ limit={ @@ -92053,7 +94170,7 @@ return { [1]="all_damage_can_shock" } }, - [4179]={ + [4288]={ [1]={ [1]={ limit={ @@ -92069,23 +94186,7 @@ return { [1]="all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame" } }, - [4180]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Non Chaos Damage is taken as Chaos damage" - } - }, - stats={ - [1]="all_damage_taken_%_as_chaos_damage" - } - }, - [4181]={ + [4289]={ [1]={ [1]={ limit={ @@ -92101,7 +94202,7 @@ return { [1]="all_damage_taken_can_ignite" } }, - [4182]={ + [4290]={ [1]={ [1]={ limit={ @@ -92117,7 +94218,7 @@ return { [1]="all_damage_taken_can_sap" } }, - [4183]={ + [4291]={ [1]={ [1]={ limit={ @@ -92133,7 +94234,7 @@ return { [1]="all_damage_taken_can_scorch" } }, - [4184]={ + [4292]={ [1]={ [1]={ limit={ @@ -92149,7 +94250,7 @@ return { [1]="all_damage_taken_chills_you_while_bleeding" } }, - [4185]={ + [4293]={ [1]={ [1]={ limit={ @@ -92165,7 +94266,7 @@ return { [1]="all_damage_taken_chills_you_while_poisoned" } }, - [4186]={ + [4294]={ [1]={ [1]={ limit={ @@ -92181,7 +94282,7 @@ return { [1]="all_damage_to_bleeding_enemies_contributes_to_chill" } }, - [4187]={ + [4295]={ [1]={ [1]={ limit={ @@ -92197,7 +94298,7 @@ return { [1]="all_damage_to_poisoned_enemies_contributes_to_chill" } }, - [4188]={ + [4296]={ [1]={ [1]={ limit={ @@ -92222,39 +94323,39 @@ return { [1]="all_exposure_on_hit_magnitude" } }, - [4189]={ + [4297]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Projectile Damage builds Pin" + text="DNT-UNUSED Lightning Damage from Hits against Bleeding enemies Contributes to Electrocute buildup" } }, stats={ - [1]="all_projectile_damage_can_pin" + [1]="all_lightning_damage_to_bleeding_enemies_can_electrocute" } }, - [4190]={ + [4298]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d} to Level of all Skills" + text="Projectile Damage builds Pin" } }, stats={ - [1]="all_skill_gem_level_+" + [1]="all_projectile_damage_can_pin" } }, - [4191]={ + [4299]={ [1]={ [1]={ limit={ @@ -92263,14 +94364,14 @@ return { [2]="#" } }, - text="{0:+d}% to Quality of all Skills" + text="Allies in your Presence Gain {0}% of Damage as Extra Fire Damage" } }, stats={ - [1]="all_skill_gem_quality_+" + [1]="allies_in_presence_damage_%_to_gain_as_fire" } }, - [4192]={ + [4300]={ [1]={ [1]={ limit={ @@ -92279,14 +94380,14 @@ return { [2]="#" } }, - text="Allies in your Presence Gain {0}% of Damage as Extra Fire Damage" + text="Allies in your Presence have {0}% increased Glory generation" } }, stats={ - [1]="allies_in_presence_damage_%_to_gain_as_fire" + [1]="allies_in_presence_glory_generation_+%" } }, - [4193]={ + [4301]={ [1]={ [1]={ limit={ @@ -92295,14 +94396,14 @@ return { [2]="#" } }, - text="Allies in your Presence have {0}% increased Glory generation" + text="Allies in your Presence have {0}% increased Movement Speed" } }, stats={ - [1]="allies_in_presence_glory_generation_+%" + [1]="allies_in_presence_movement_speed_+%" } }, - [4194]={ + [4302]={ [1]={ [1]={ limit={ @@ -92318,7 +94419,7 @@ return { [1]="allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [4195]={ + [4303]={ [1]={ [1]={ [1]={ @@ -92338,7 +94439,23 @@ return { [1]="allies_in_presence_regenerate_X_rage_per_minute_if_you_gained_rage_recently" } }, - [4196]={ + [4304]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Allies in your Presence share Charges with you" + } + }, + stats={ + [1]="allies_in_your_presence_share_charges_with_you" + } + }, + [4305]={ [1]={ [1]={ limit={ @@ -92354,7 +94471,7 @@ return { [1]="allow_hellscaping_unique_items" } }, - [4197]={ + [4306]={ [1]={ [1]={ limit={ @@ -92370,7 +94487,7 @@ return { [1]="allow_multiple_offerings" } }, - [4198]={ + [4307]={ [1]={ [1]={ limit={ @@ -92386,7 +94503,7 @@ return { [1]="always_frostburn_while_affected_by_hatred" } }, - [4199]={ + [4308]={ [1]={ [1]={ limit={ @@ -92402,7 +94519,7 @@ return { [1]="always_ignite_while_burning" } }, - [4200]={ + [4309]={ [1]={ [1]={ limit={ @@ -92418,7 +94535,7 @@ return { [1]="always_pierce" } }, - [4201]={ + [4310]={ [1]={ [1]={ limit={ @@ -92434,7 +94551,7 @@ return { [1]="always_pierce_burning_enemies" } }, - [4202]={ + [4311]={ [1]={ [1]={ limit={ @@ -92450,7 +94567,7 @@ return { [1]="always_sap_while_affected_by_wrath" } }, - [4203]={ + [4312]={ [1]={ [1]={ limit={ @@ -92466,7 +94583,7 @@ return { [1]="always_scorch_while_affected_by_anger" } }, - [4204]={ + [4313]={ [1]={ [1]={ limit={ @@ -92482,7 +94599,7 @@ return { [1]="ambush_buff_critical_strike_multiplier_+" } }, - [4205]={ + [4314]={ [1]={ [1]={ limit={ @@ -92511,7 +94628,7 @@ return { [1]="ambush_cooldown_speed_+%" } }, - [4206]={ + [4315]={ [1]={ [1]={ limit={ @@ -92540,7 +94657,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [4207]={ + [4316]={ [1]={ [1]={ [1]={ @@ -92573,7 +94690,7 @@ return { [1]="ancestor_totem_buff_linger_time_ms" } }, - [4208]={ + [4317]={ [1]={ [1]={ limit={ @@ -92602,7 +94719,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [4209]={ + [4318]={ [1]={ [1]={ limit={ @@ -92618,7 +94735,7 @@ return { [1]="ancestral_boosted_area_of_effect_+%" } }, - [4210]={ + [4319]={ [1]={ [1]={ limit={ @@ -92634,7 +94751,7 @@ return { [1]="ancestral_boosted_attack_damage_+%" } }, - [4211]={ + [4320]={ [1]={ [1]={ limit={ @@ -92650,7 +94767,7 @@ return { [1]="ancestral_boosted_attack_hit_damage_stun_multiplier_+%" } }, - [4212]={ + [4321]={ [1]={ [1]={ limit={ @@ -92675,7 +94792,7 @@ return { [1]="ancestral_cry_attacks_exerted_+" } }, - [4213]={ + [4322]={ [1]={ [1]={ limit={ @@ -92691,7 +94808,7 @@ return { [1]="ancestral_cry_exerted_attack_damage_+%" } }, - [4214]={ + [4323]={ [1]={ [1]={ limit={ @@ -92707,39 +94824,7 @@ return { [1]="ancestral_cry_minimum_power" } }, - [4215]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Every second Slam Skill you use yourself is Ancestrally Boosted" - } - }, - stats={ - [1]="ancestral_slam_every_other_slam" - } - }, - [4216]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted\nEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted" - } - }, - stats={ - [1]="ancestral_slam_strike_every_other_strike_or_slam_while_shapeshifted" - } - }, - [4217]={ + [4324]={ [1]={ [1]={ [1]={ @@ -92776,7 +94861,7 @@ return { [1]="anger_mana_reservation_efficiency_-2%_per_1" } }, - [4218]={ + [4325]={ [1]={ [1]={ limit={ @@ -92805,7 +94890,7 @@ return { [1]="anger_mana_reservation_efficiency_+%" } }, - [4219]={ + [4326]={ [1]={ [1]={ limit={ @@ -92821,7 +94906,7 @@ return { [1]="anger_reserves_no_mana" } }, - [4220]={ + [4327]={ [1]={ [1]={ limit={ @@ -92850,7 +94935,7 @@ return { [1]="animate_guardian_damage_+%_per_animated_weapon" } }, - [4221]={ + [4328]={ [1]={ [1]={ [1]={ @@ -92870,7 +94955,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [4222]={ + [4329]={ [1]={ [1]={ limit={ @@ -92899,7 +94984,7 @@ return { [1]="animated_guardian_damage_taken_+%_final" } }, - [4223]={ + [4330]={ [1]={ [1]={ limit={ @@ -92915,7 +95000,7 @@ return { [1]="animated_minions_melee_splash" } }, - [4224]={ + [4331]={ [1]={ [1]={ limit={ @@ -92944,7 +95029,7 @@ return { [1]="aoe_+%_per_second_while_stationary_up_to_50" } }, - [4225]={ + [4332]={ [1]={ [1]={ limit={ @@ -92960,7 +95045,23 @@ return { [1]="apply_X_armour_break_on_hit" } }, - [4226]={ + [4333]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Apply {0} Critical Weakness to Enemies when Consuming a Mark on them" + } + }, + stats={ + [1]="apply_X_critical_weakness_on_consuming_mark" + } + }, + [4334]={ [1]={ [1]={ limit={ @@ -92985,7 +95086,7 @@ return { [1]="apply_X_incision_on_thorns_hit" } }, - [4227]={ + [4335]={ [1]={ [1]={ limit={ @@ -93010,7 +95111,7 @@ return { [1]="apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells" } }, - [4228]={ + [4336]={ [1]={ [1]={ limit={ @@ -93035,7 +95136,7 @@ return { [1]="apply_X_stacks_of_critical_weakness_on_hit" } }, - [4229]={ + [4337]={ [1]={ [1]={ limit={ @@ -93060,7 +95161,39 @@ return { [1]="apply_X_stacks_of_critical_weakness_on_parry" } }, - [4230]={ + [4338]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflict Anaemia on Hit\nAnaemia allows {0:+d} Corrupted Blood debuffs to be inflicted on enemies" + } + }, + stats={ + [1]="apply_anaemia_magnitude_on_hit" + } + }, + [4339]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" + } + }, + stats={ + [1]="apply_blind_on_hit_while_ruby_sapphire_socketed" + } + }, + [4340]={ [1]={ [1]={ limit={ @@ -93085,7 +95218,7 @@ return { [1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy" } }, - [4231]={ + [4341]={ [1]={ [1]={ limit={ @@ -93110,7 +95243,39 @@ return { [1]="apply_covered_in_ash_to_attacker_when_hit_%" } }, - [4232]={ + [4342]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" + } + }, + stats={ + [1]="apply_debilitate_on_hit_while_emerald_sapphire_socketed" + } + }, + [4343]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" + } + }, + stats={ + [1]="apply_exposure_on_hit_while_ruby_emerald_socketed" + } + }, + [4344]={ [1]={ [1]={ limit={ @@ -93126,7 +95291,7 @@ return { [1]="apply_maximum_wither_stacks_%_chance_when_you_apply_withered" } }, - [4233]={ + [4345]={ [1]={ [1]={ limit={ @@ -93142,7 +95307,7 @@ return { [1]="arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable" } }, - [4234]={ + [4346]={ [1]={ [1]={ limit={ @@ -93171,7 +95336,7 @@ return { [1]="arc_and_crackling_lance_base_cost_+%" } }, - [4235]={ + [4347]={ [1]={ [1]={ limit={ @@ -93187,7 +95352,7 @@ return { [1]="arc_damage_+%_per_chain" } }, - [4236]={ + [4348]={ [1]={ [1]={ limit={ @@ -93203,7 +95368,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [4237]={ + [4349]={ [1]={ [1]={ [1]={ @@ -93223,7 +95388,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [4238]={ + [4350]={ [1]={ [1]={ limit={ @@ -93239,7 +95404,7 @@ return { [1]="arcane_surge_effect_+1%_per_X_maximum_mana" } }, - [4239]={ + [4351]={ [1]={ [1]={ limit={ @@ -93268,7 +95433,7 @@ return { [1]="arcane_surge_effect_on_self_+%_while_affected_by_clarity" } }, - [4240]={ + [4352]={ [1]={ [1]={ limit={ @@ -93284,7 +95449,7 @@ return { [1]="arcane_surge_mana_regen_modifier_on_you_applies_to_life_regen_instead" } }, - [4241]={ + [4353]={ [1]={ [1]={ limit={ @@ -93313,7 +95478,7 @@ return { [1]="arcane_surge_on_you_spell_damage_+%_final_from_hierophant" } }, - [4242]={ + [4354]={ [1]={ [1]={ limit={ @@ -93329,7 +95494,7 @@ return { [1]="arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%" } }, - [4243]={ + [4355]={ [1]={ [1]={ limit={ @@ -93358,7 +95523,7 @@ return { [1]="arcanist_brand_cast_speed_+%" } }, - [4244]={ + [4356]={ [1]={ [1]={ limit={ @@ -93374,7 +95539,7 @@ return { [1]="arcanist_brand_unnerve_on_hit" } }, - [4245]={ + [4357]={ [1]={ [1]={ limit={ @@ -93403,7 +95568,7 @@ return { [1]="archon_delay_expires_x%_faster" } }, - [4246]={ + [4358]={ [1]={ [1]={ limit={ @@ -93432,7 +95597,7 @@ return { [1]="archon_duration_+%" } }, - [4247]={ + [4359]={ [1]={ [1]={ limit={ @@ -93444,6 +95609,10 @@ return { text="{0}% increased effect of Archon Buffs on you" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", @@ -93457,7 +95626,7 @@ return { [1]="archon_effect_on_you_+%" } }, - [4248]={ + [4360]={ [1]={ [1]={ limit={ @@ -93473,7 +95642,7 @@ return { [1]="archon_grants_all_elemental_resistance_+%" } }, - [4249]={ + [4361]={ [1]={ [1]={ limit={ @@ -93489,7 +95658,7 @@ return { [1]="archon_grants_base_critical_strike_multiplier_+" } }, - [4250]={ + [4362]={ [1]={ [1]={ limit={ @@ -93505,7 +95674,7 @@ return { [1]="archon_grants_critical_strike_chance_+%" } }, - [4251]={ + [4363]={ [1]={ [1]={ limit={ @@ -93521,7 +95690,23 @@ return { [1]="archon_grants_movement_speed_+%" } }, - [4252]={ + [4364]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Archon Buffs have no recovery period after you lose one" + } + }, + stats={ + [1]="archon_no_recovery_period" + } + }, + [4365]={ [1]={ [1]={ [1]={ @@ -93554,7 +95739,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [4253]={ + [4366]={ [1]={ [1]={ [1]={ @@ -93591,7 +95776,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_-2%_per_1" } }, - [4254]={ + [4367]={ [1]={ [1]={ limit={ @@ -93620,7 +95805,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_+%" } }, - [4255]={ + [4368]={ [1]={ [1]={ limit={ @@ -93641,7 +95826,7 @@ return { [2]="arctic_armour_maximum_added_cold_damage_per_stack" } }, - [4256]={ + [4369]={ [1]={ [1]={ limit={ @@ -93657,7 +95842,7 @@ return { [1]="arctic_armour_no_reservation" } }, - [4257]={ + [4370]={ [1]={ [1]={ limit={ @@ -93686,7 +95871,7 @@ return { [1]="arctic_breath_chilling_area_movement_velocity_+%" } }, - [4258]={ + [4371]={ [1]={ [1]={ limit={ @@ -93715,7 +95900,7 @@ return { [1]="area_damage_+%_per_10_devotion" } }, - [4259]={ + [4372]={ [1]={ [1]={ limit={ @@ -93744,7 +95929,7 @@ return { [1]="area_damage_+%_per_12_strength" } }, - [4260]={ + [4373]={ [1]={ [1]={ limit={ @@ -93773,7 +95958,7 @@ return { [1]="area_of_effect_+%_if_below_100_intelligence" } }, - [4261]={ + [4374]={ [1]={ [1]={ limit={ @@ -93802,7 +95987,7 @@ return { [1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently" } }, - [4262]={ + [4375]={ [1]={ [1]={ limit={ @@ -93831,7 +96016,7 @@ return { [1]="area_of_effect_+%_if_culled_recently" } }, - [4263]={ + [4376]={ [1]={ [1]={ limit={ @@ -93860,7 +96045,7 @@ return { [1]="area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently" } }, - [4264]={ + [4377]={ [1]={ [1]={ limit={ @@ -93889,7 +96074,7 @@ return { [1]="area_of_effect_+%_if_have_crit_recently" } }, - [4265]={ + [4378]={ [1]={ [1]={ limit={ @@ -93918,7 +96103,7 @@ return { [1]="area_of_effect_+%_if_have_stunned_an_enemy_recently" } }, - [4266]={ + [4379]={ [1]={ [1]={ limit={ @@ -93947,7 +96132,7 @@ return { [1]="area_of_effect_+%_if_killed_at_least_5_enemies_recently" } }, - [4267]={ + [4380]={ [1]={ [1]={ limit={ @@ -93976,7 +96161,7 @@ return { [1]="area_of_effect_+%_if_you_have_blocked_recently" } }, - [4268]={ + [4381]={ [1]={ [1]={ limit={ @@ -94005,7 +96190,7 @@ return { [1]="area_of_effect_+%_per_50_strength" } }, - [4269]={ + [4382]={ [1]={ [1]={ limit={ @@ -94034,7 +96219,7 @@ return { [1]="area_of_effect_+%_per_active_herald_of_light_minion" } }, - [4270]={ + [4383]={ [1]={ [1]={ limit={ @@ -94063,7 +96248,7 @@ return { [1]="area_of_effect_+%_per_endurance_charge" } }, - [4271]={ + [4384]={ [1]={ [1]={ limit={ @@ -94072,7 +96257,7 @@ return { [2]="#" } }, - text="{0}% increased Area of Effect per Enemy killed recently, up to 50%" + text="{0}% increased Area of Effect per Enemy killed Recently, up to 50%" }, [2]={ [1]={ @@ -94085,14 +96270,14 @@ return { [2]=-1 } }, - text="{0}% reduced Area of Effect per Enemy killed recently" + text="{0}% reduced Area of Effect per Enemy killed Recently" } }, stats={ [1]="area_of_effect_+%_per_enemy_killed_recently" } }, - [4272]={ + [4385]={ [1]={ [1]={ limit={ @@ -94121,7 +96306,7 @@ return { [1]="area_of_effect_+%_while_fortified" } }, - [4273]={ + [4386]={ [1]={ [1]={ limit={ @@ -94150,7 +96335,7 @@ return { [1]="area_of_effect_+%_while_totem_active" } }, - [4274]={ + [4387]={ [1]={ [1]={ limit={ @@ -94179,7 +96364,7 @@ return { [1]="area_of_effect_+%_while_wielding_bow" } }, - [4275]={ + [4388]={ [1]={ [1]={ limit={ @@ -94208,7 +96393,7 @@ return { [1]="area_of_effect_+%_while_wielding_staff" } }, - [4276]={ + [4389]={ [1]={ [1]={ limit={ @@ -94237,7 +96422,7 @@ return { [1]="area_of_effect_+%_while_you_have_arcane_surge" } }, - [4277]={ + [4390]={ [1]={ [1]={ limit={ @@ -94266,7 +96451,7 @@ return { [1]="area_of_effect_+%_with_500_or_more_strength" } }, - [4278]={ + [4391]={ [1]={ [1]={ limit={ @@ -94295,7 +96480,7 @@ return { [1]="area_of_effect_+%_with_bow_skills" } }, - [4279]={ + [4392]={ [1]={ [1]={ limit={ @@ -94324,7 +96509,7 @@ return { [1]="area_of_effect_+%_with_herald_skills" } }, - [4280]={ + [4393]={ [1]={ [1]={ limit={ @@ -94353,7 +96538,7 @@ return { [1]="area_skill_accuracy_rating_+%" } }, - [4281]={ + [4394]={ [1]={ [1]={ limit={ @@ -94369,7 +96554,7 @@ return { [1]="area_skill_knockback_chance_%" } }, - [4282]={ + [4395]={ [1]={ [1]={ limit={ @@ -94385,7 +96570,7 @@ return { [1]="armageddon_brand_attached_target_fire_penetration_%" } }, - [4283]={ + [4396]={ [1]={ [1]={ limit={ @@ -94414,7 +96599,7 @@ return { [1]="armageddon_brand_damage_+%" } }, - [4284]={ + [4397]={ [1]={ [1]={ limit={ @@ -94443,7 +96628,7 @@ return { [1]="armageddon_brand_repeat_frequency_+%" } }, - [4285]={ + [4398]={ [1]={ [1]={ limit={ @@ -94459,7 +96644,7 @@ return { [1]="armour_%_also_applies_to_chaos_damage_while_at_full_es" } }, - [4286]={ + [4399]={ [1]={ [1]={ limit={ @@ -94475,7 +96660,7 @@ return { [1]="armour_%_applies_to_fire_cold_lightning_damage_if_you_have_at_least_100_tribute" } }, - [4287]={ + [4400]={ [1]={ [1]={ limit={ @@ -94491,7 +96676,7 @@ return { [1]="armour_%_to_gain_as_stun_threshold" } }, - [4288]={ + [4401]={ [1]={ [1]={ limit={ @@ -94520,7 +96705,7 @@ return { [1]="armour_+%_if_consumed_endurance_charge_recently" } }, - [4289]={ + [4402]={ [1]={ [1]={ limit={ @@ -94549,7 +96734,7 @@ return { [1]="armour_+%_if_have_been_hit_recently" } }, - [4290]={ + [4403]={ [1]={ [1]={ limit={ @@ -94578,7 +96763,7 @@ return { [1]="armour_+%_if_hit_enemy_with_melee_attack_recently" } }, - [4291]={ + [4404]={ [1]={ [1]={ limit={ @@ -94607,7 +96792,7 @@ return { [1]="armour_+%_if_not_dodge_rolled_recently" } }, - [4292]={ + [4405]={ [1]={ [1]={ limit={ @@ -94636,7 +96821,7 @@ return { [1]="armour_+%_if_you_havent_been_hit_recently" } }, - [4293]={ + [4406]={ [1]={ [1]={ limit={ @@ -94652,7 +96837,7 @@ return { [1]="armour_+%_while_ignited" } }, - [4294]={ + [4407]={ [1]={ [1]={ limit={ @@ -94681,7 +96866,7 @@ return { [1]="armour_+%_while_shapeshifted" } }, - [4295]={ + [4408]={ [1]={ [1]={ limit={ @@ -94710,7 +96895,7 @@ return { [1]="armour_+%_while_surrounded" } }, - [4296]={ + [4409]={ [1]={ [1]={ limit={ @@ -94719,14 +96904,14 @@ return { [2]="#" } }, - text="{0}% of Strength Requirements from Boots, Gloves and Helmets also added to Armour" + text="Gain Armour equal to {0}% of total Strength Requirements of Equipped Boots, Gloves and Helmet" } }, stats={ [1]="armour_+_from_%_strength_requirements_from_boots_gloves_helmets" } }, - [4297]={ + [4410]={ [1]={ [1]={ limit={ @@ -94742,7 +96927,7 @@ return { [1]="armour_+_per_10_unreserved_max_mana" } }, - [4298]={ + [4411]={ [1]={ [1]={ limit={ @@ -94758,7 +96943,7 @@ return { [1]="armour_+_per_1_boots_energy_shield" } }, - [4299]={ + [4412]={ [1]={ [1]={ limit={ @@ -94774,7 +96959,7 @@ return { [1]="armour_+_per_1_spirit" } }, - [4300]={ + [4413]={ [1]={ [1]={ limit={ @@ -94803,7 +96988,7 @@ return { [1]="armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield" } }, - [4301]={ + [4414]={ [1]={ [1]={ limit={ @@ -94832,7 +97017,7 @@ return { [1]="armour_and_evasion_+%_during_onslaught" } }, - [4302]={ + [4415]={ [1]={ [1]={ limit={ @@ -94857,7 +97042,36 @@ return { [1]="armour_and_evasion_rating_+%_per_active_totem_in_presence" } }, - [4303]={ + [4416]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour and Evasion Rating while on Low Runic Ward" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour and Evasion Rating while on Low Runic Ward" + } + }, + stats={ + [1]="armour_and_evasion_rating_+%_while_on_low_ward" + } + }, + [4417]={ [1]={ [1]={ limit={ @@ -94873,7 +97087,7 @@ return { [1]="armour_and_evasion_rating_+_per_1%_attack_block_chance" } }, - [4304]={ + [4418]={ [1]={ [1]={ limit={ @@ -94889,7 +97103,7 @@ return { [1]="armour_and_evasion_rating_+_while_fortified" } }, - [4305]={ + [4419]={ [1]={ [1]={ limit={ @@ -94905,7 +97119,7 @@ return { [1]="armour_break_%_of_armour_on_critical_strike_with_spells" } }, - [4306]={ + [4420]={ [1]={ [1]={ limit={ @@ -94921,7 +97135,7 @@ return { [1]="armour_break_%_of_armour_on_heavy_stunning" } }, - [4307]={ + [4421]={ [1]={ [1]={ limit={ @@ -94950,7 +97164,7 @@ return { [1]="armour_break_amount_+%" } }, - [4308]={ + [4422]={ [1]={ [1]={ limit={ @@ -94979,7 +97193,7 @@ return { [1]="armour_break_amount_+%_vs_enemies_affected_by_ailments" } }, - [4309]={ + [4423]={ [1]={ [1]={ limit={ @@ -95008,7 +97222,7 @@ return { [1]="armour_break_and_sundered_armour_duration_+%" } }, - [4310]={ + [4424]={ [1]={ [1]={ limit={ @@ -95024,7 +97238,7 @@ return { [1]="armour_break_damage_%_dealt_as_armour_break" } }, - [4311]={ + [4425]={ [1]={ [1]={ limit={ @@ -95040,7 +97254,7 @@ return { [1]="armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells" } }, - [4312]={ + [4426]={ [1]={ [1]={ limit={ @@ -95056,7 +97270,7 @@ return { [1]="armour_break_equal_to_%_physical_damage_dealt_spells" } }, - [4313]={ + [4427]={ [1]={ [1]={ limit={ @@ -95072,7 +97286,7 @@ return { [1]="armour_break_fire_damage_%_dealt_as_armour_break" } }, - [4314]={ + [4428]={ [1]={ [1]={ limit={ @@ -95088,7 +97302,40 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [4315]={ + [4429]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour Break taken" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour Break taken" + } + }, + stats={ + [1]="armour_break_taken_+%" + } + }, + [4430]={ [1]={ [1]={ limit={ @@ -95117,7 +97364,7 @@ return { [1]="armour_evasion_+%_while_leeching" } }, - [4316]={ + [4431]={ [1]={ [1]={ limit={ @@ -95146,7 +97393,7 @@ return { [1]="armour_from_gloves_and_boots_+%" } }, - [4317]={ + [4432]={ [1]={ [1]={ limit={ @@ -95175,7 +97422,7 @@ return { [1]="armour_from_helmet_and_gloves_+%" } }, - [4318]={ + [4433]={ [1]={ [1]={ limit={ @@ -95191,7 +97438,7 @@ return { [1]="armour_increased_by_uncapped_fire_resistance" } }, - [4319]={ + [4434]={ [1]={ [1]={ limit={ @@ -95207,7 +97454,7 @@ return { [1]="armour_+_per_1_helmet_maximum_energy_shield" } }, - [4320]={ + [4435]={ [1]={ [1]={ limit={ @@ -95223,7 +97470,7 @@ return { [1]="armour_+_while_affected_by_determination" } }, - [4321]={ + [4436]={ [1]={ [1]={ limit={ @@ -95239,7 +97486,7 @@ return { [1]="armour_+_while_affected_by_guard_skill" } }, - [4322]={ + [4437]={ [1]={ [1]={ limit={ @@ -95255,7 +97502,7 @@ return { [1]="armour_+_while_you_have_fortify" } }, - [4323]={ + [4438]={ [1]={ [1]={ limit={ @@ -95271,7 +97518,7 @@ return { [1]="armour_+%_final_vs_hits_per_1%_current_energy_shield" } }, - [4324]={ + [4439]={ [1]={ [1]={ limit={ @@ -95300,7 +97547,7 @@ return { [1]="armour_+%_if_enemy_not_killed_recently" } }, - [4325]={ + [4440]={ [1]={ [1]={ limit={ @@ -95329,7 +97576,7 @@ return { [1]="armour_+%_per_50_str" } }, - [4326]={ + [4441]={ [1]={ [1]={ limit={ @@ -95345,7 +97592,7 @@ return { [1]="armour_+%_per_rage" } }, - [4327]={ + [4442]={ [1]={ [1]={ limit={ @@ -95374,7 +97621,7 @@ return { [1]="armour_+%_per_red_socket_on_main_hand_weapon" } }, - [4328]={ + [4443]={ [1]={ [1]={ limit={ @@ -95403,7 +97650,7 @@ return { [1]="armour_+%_per_second_while_stationary_up_to_100" } }, - [4329]={ + [4444]={ [1]={ [1]={ limit={ @@ -95419,7 +97666,7 @@ return { [1]="armour_+%_while_bleeding" } }, - [4330]={ + [4445]={ [1]={ [1]={ limit={ @@ -95448,7 +97695,7 @@ return { [1]="armour_+%_while_stationary" } }, - [4331]={ + [4446]={ [1]={ [1]={ limit={ @@ -95464,7 +97711,7 @@ return { [1]="arrow_critical_strike_chance_+%_max_as_distance_travelled_increases" } }, - [4332]={ + [4447]={ [1]={ [1]={ limit={ @@ -95493,7 +97740,7 @@ return { [1]="arrow_damage_+%_vs_pierced_targets" } }, - [4333]={ + [4448]={ [1]={ [1]={ limit={ @@ -95509,7 +97756,7 @@ return { [1]="arrow_damage_+50%_vs_pierced_targets" } }, - [4334]={ + [4449]={ [1]={ [1]={ limit={ @@ -95525,7 +97772,7 @@ return { [1]="arrow_damage_+%_max_as_distance_travelled_increases" } }, - [4335]={ + [4450]={ [1]={ [1]={ limit={ @@ -95546,7 +97793,23 @@ return { [2]="maximum_arrow_fire_damage_added_for_each_pierce" } }, - [4336]={ + [4451]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Arrows Return if they have Pierced a target which had Fully Broken Armour" + } + }, + stats={ + [1]="arrow_projectiles_return_if_they_have_pierced_a_fully_armour_broken_target" + } + }, + [4452]={ [1]={ [1]={ limit={ @@ -95562,7 +97825,7 @@ return { [1]="arrow_speed_additive_modifiers_also_apply_to_bow_damage" } }, - [4337]={ + [4453]={ [1]={ [1]={ limit={ @@ -95578,7 +97841,7 @@ return { [1]="arrows_always_pierce_after_forking" } }, - [4338]={ + [4454]={ [1]={ [1]={ limit={ @@ -95594,7 +97857,7 @@ return { [1]="arrows_pierce_additional_target" } }, - [4339]={ + [4455]={ [1]={ [1]={ limit={ @@ -95610,7 +97873,7 @@ return { [1]="arrows_that_pierce_also_return" } }, - [4340]={ + [4456]={ [1]={ [1]={ limit={ @@ -95626,7 +97889,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [4341]={ + [4457]={ [1]={ [1]={ limit={ @@ -95642,7 +97905,7 @@ return { [1]="artillery_ballista_fire_pen_+%" } }, - [4342]={ + [4458]={ [1]={ [1]={ limit={ @@ -95667,7 +97930,23 @@ return { [1]="artillery_ballista_num_additional_arrows" } }, - [4343]={ + [4459]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bear Spirit gains Embrace of the Wild" + } + }, + stats={ + [1]="ascendancy_bear_companion_life_regeneration_rate_per_minute_%" + } + }, + [4460]={ [1]={ [1]={ limit={ @@ -95683,7 +97962,7 @@ return { [1]="ascendancy_beidats_gaze_mana_+_per_X_maximum_life" } }, - [4344]={ + [4461]={ [1]={ [1]={ limit={ @@ -95699,7 +97978,7 @@ return { [1]="ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life" } }, - [4345]={ + [4462]={ [1]={ [1]={ limit={ @@ -95715,7 +97994,23 @@ return { [1]="ascendancy_beidats_will_spirit_+_per_X_maximum_life" } }, - [4346]={ + [4463]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and\ntheir Explicit Modifiers are transformed into more powerful related Modifiers" + } + }, + stats={ + [1]="ascendancy_hand_wraps" + } + }, + [4464]={ [1]={ [1]={ limit={ @@ -95744,7 +98039,7 @@ return { [1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final" } }, - [4347]={ + [4465]={ [1]={ [1]={ limit={ @@ -95773,7 +98068,7 @@ return { [1]="ascendancy_pathfinder_flask_charges_gained_+%_final" } }, - [4348]={ + [4466]={ [1]={ [1]={ limit={ @@ -95789,7 +98084,7 @@ return { [1]="ascendancy_shaman_gain_additional_socketable_mods" } }, - [4349]={ + [4467]={ [1]={ [1]={ limit={ @@ -95818,7 +98113,7 @@ return { [1]="ascendancy_shaman_reactive_growth_elemental_damage_taken_+%_final" } }, - [4350]={ + [4468]={ [1]={ [1]={ limit={ @@ -95847,7 +98142,48 @@ return { [1]="ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final" } }, - [4351]={ + [4469]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Gain a Vivid Wisp when Vivid Stampede ends" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Vivid Wisps when Vivid Stampede ends" + } + }, + stats={ + [1]="ascendancy_vivid_stag_gain_wisps_on_end" + } + }, + [4470]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Vivid Stags leap towards enemies" + } + }, + stats={ + [1]="ascendancy_vivid_stag_home_in_on_enemies_within_X_angle_in_front" + } + }, + [4471]={ [1]={ [1]={ limit={ @@ -95876,7 +98212,7 @@ return { [1]="ascendancy_warbringer_block_chance_+%_final" } }, - [4352]={ + [4472]={ [1]={ [1]={ limit={ @@ -95905,7 +98241,7 @@ return { [1]="ascendency_tactician_totem_skill_speed_+%_final" } }, - [4353]={ + [4473]={ [1]={ [1]={ limit={ @@ -95934,7 +98270,7 @@ return { [1]="aspect_of_the_avian_buff_effect_+%" } }, - [4354]={ + [4474]={ [1]={ [1]={ limit={ @@ -95950,7 +98286,7 @@ return { [1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies" } }, - [4355]={ + [4475]={ [1]={ [1]={ [1]={ @@ -95970,7 +98306,7 @@ return { [1]="aspect_of_the_cat_base_secondary_duration" } }, - [4356]={ + [4476]={ [1]={ [1]={ limit={ @@ -95995,7 +98331,7 @@ return { [1]="aspect_of_the_spider_web_count_+" } }, - [4357]={ + [4477]={ [1]={ [1]={ limit={ @@ -96011,7 +98347,7 @@ return { [1]="attack_added_chaos_damage_%_of_maximum_life" } }, - [4358]={ + [4478]={ [1]={ [1]={ limit={ @@ -96027,7 +98363,7 @@ return { [1]="attack_added_physical_damage_%_of_maximum_life" } }, - [4359]={ + [4479]={ [1]={ [1]={ [1]={ @@ -96047,7 +98383,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad" } }, - [4360]={ + [4480]={ [1]={ [1]={ [1]={ @@ -96067,7 +98403,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad_vs_parried_enemies_if_you_have_at_least_100_tribute" } }, - [4361]={ + [4481]={ [1]={ [1]={ limit={ @@ -96096,7 +98432,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask" } }, - [4362]={ + [4482]={ [1]={ [1]={ limit={ @@ -96125,7 +98461,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_elusive" } }, - [4363]={ + [4483]={ [1]={ [1]={ limit={ @@ -96154,7 +98490,7 @@ return { [1]="attack_and_cast_speed_per_ghost_dance_stack_+%" } }, - [4364]={ + [4484]={ [1]={ [1]={ limit={ @@ -96170,7 +98506,7 @@ return { [1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds" } }, - [4365]={ + [4485]={ [1]={ [1]={ limit={ @@ -96199,7 +98535,7 @@ return { [1]="attack_and_cast_speed_+%_if_enemy_hit_recently" } }, - [4366]={ + [4486]={ [1]={ [1]={ limit={ @@ -96228,7 +98564,7 @@ return { [1]="attack_and_cast_speed_+%_if_havent_been_hit_recently" } }, - [4367]={ + [4487]={ [1]={ [1]={ limit={ @@ -96257,7 +98593,7 @@ return { [1]="attack_and_cast_speed_+%_per_endurance_charge" } }, - [4368]={ + [4488]={ [1]={ [1]={ limit={ @@ -96286,7 +98622,7 @@ return { [1]="attack_and_cast_speed_+%_per_power_charge" } }, - [4369]={ + [4489]={ [1]={ [1]={ limit={ @@ -96315,7 +98651,7 @@ return { [1]="attack_and_cast_speed_+%_per_summoned_raging_spirit" } }, - [4370]={ + [4490]={ [1]={ [1]={ limit={ @@ -96344,7 +98680,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [4371]={ + [4491]={ [1]={ [1]={ limit={ @@ -96373,7 +98709,7 @@ return { [1]="attack_and_cast_speed_+%_while_channelling" } }, - [4372]={ + [4492]={ [1]={ [1]={ limit={ @@ -96402,7 +98738,7 @@ return { [1]="attack_and_cast_speed_+%_while_focused" } }, - [4373]={ + [4493]={ [1]={ [1]={ limit={ @@ -96431,7 +98767,7 @@ return { [1]="attack_and_cast_speed_+%_while_using_flask" } }, - [4374]={ + [4494]={ [1]={ [1]={ limit={ @@ -96460,7 +98796,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis" } }, - [4375]={ + [4495]={ [1]={ [1]={ limit={ @@ -96489,7 +98825,7 @@ return { [1]="attack_and_cast_speed_+%_with_channelling_skills" } }, - [4376]={ + [4496]={ [1]={ [1]={ limit={ @@ -96518,7 +98854,7 @@ return { [1]="attack_and_cast_speed_+%_with_chaos_skills" } }, - [4377]={ + [4497]={ [1]={ [1]={ limit={ @@ -96547,7 +98883,7 @@ return { [1]="attack_and_cast_speed_+%_with_cold_skills" } }, - [4378]={ + [4498]={ [1]={ [1]={ limit={ @@ -96576,7 +98912,7 @@ return { [1]="attack_and_cast_speed_+%_with_elemental_skills" } }, - [4379]={ + [4499]={ [1]={ [1]={ limit={ @@ -96605,7 +98941,7 @@ return { [1]="attack_and_cast_speed_+%_with_fire_skills" } }, - [4380]={ + [4500]={ [1]={ [1]={ limit={ @@ -96634,7 +98970,7 @@ return { [1]="attack_and_cast_speed_+%_with_lightning_skills" } }, - [4381]={ + [4501]={ [1]={ [1]={ limit={ @@ -96663,7 +98999,7 @@ return { [1]="attack_and_cast_speed_+%_with_physical_skills" } }, - [4382]={ + [4502]={ [1]={ [1]={ limit={ @@ -96692,7 +99028,7 @@ return { [1]="attack_and_cast_speed_+%_with_shield_skills" } }, - [4383]={ + [4503]={ [1]={ [1]={ limit={ @@ -96708,7 +99044,7 @@ return { [1]="attack_and_movement_speed_+%_final_per_challenger_charge" } }, - [4384]={ + [4504]={ [1]={ [1]={ limit={ @@ -96737,7 +99073,7 @@ return { [1]="attack_area_damage_+%" } }, - [4385]={ + [4505]={ [1]={ [1]={ limit={ @@ -96766,7 +99102,7 @@ return { [1]="attack_area_of_effect_+%_per_enemy_ignited_last_8_seconds" } }, - [4386]={ + [4506]={ [1]={ [1]={ limit={ @@ -96795,7 +99131,7 @@ return { [1]="attack_area_of_effect_+%_while_wielding_quarterstaff" } }, - [4387]={ + [4507]={ [1]={ [1]={ limit={ @@ -96824,7 +99160,7 @@ return { [1]="attack_area_of_effect_+%" } }, - [4388]={ + [4508]={ [1]={ [1]={ limit={ @@ -96853,7 +99189,7 @@ return { [1]="attack_area_of_effect_+%_per_10_int" } }, - [4389]={ + [4509]={ [1]={ [1]={ limit={ @@ -96869,7 +99205,7 @@ return { [1]="attack_block_%_per_200_fire_hit_damage_taken_recently" } }, - [4390]={ + [4510]={ [1]={ [1]={ limit={ @@ -96885,7 +99221,7 @@ return { [1]="attack_block_%_while_at_max_endurance_charges" } }, - [4391]={ + [4511]={ [1]={ [1]={ limit={ @@ -96914,7 +99250,7 @@ return { [1]="attack_cast_and_movement_speed_+%_during_onslaught" } }, - [4392]={ + [4512]={ [1]={ [1]={ limit={ @@ -96943,7 +99279,7 @@ return { [1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently" } }, - [4393]={ + [4513]={ [1]={ [1]={ limit={ @@ -96959,7 +99295,7 @@ return { [1]="attack_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [4394]={ + [4514]={ [1]={ [1]={ limit={ @@ -96975,7 +99311,7 @@ return { [1]="attack_chance_to_maim_on_hit_%_vs_blinded_enemies" } }, - [4395]={ + [4515]={ [1]={ [1]={ limit={ @@ -96991,7 +99327,23 @@ return { [1]="attack_consume_endurance_charge_to_always_crit" } }, - [4396]={ + [4516]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Critical Hit chance for Attacks is {0}%" + } + }, + stats={ + [1]="attack_crit_chance_override_%" + } + }, + [4517]={ [1]={ [1]={ limit={ @@ -97020,7 +99372,7 @@ return { [1]="attack_critical_strike_chance_+%_per_10_tribute" } }, - [4397]={ + [4518]={ [1]={ [1]={ limit={ @@ -97036,7 +99388,7 @@ return { [1]="attack_critical_strikes_ignore_elemental_resistances" } }, - [4398]={ + [4519]={ [1]={ [1]={ limit={ @@ -97052,7 +99404,7 @@ return { [1]="attack_damage_+%_for_each_different_non_instant_spell_youve_cast_in_the_past_8_seconds" } }, - [4399]={ + [4520]={ [1]={ [1]={ limit={ @@ -97081,7 +99433,7 @@ return { [1]="attack_damage_+%_if_been_heavy_stunned_recently" } }, - [4400]={ + [4521]={ [1]={ [1]={ limit={ @@ -97110,7 +99462,7 @@ return { [1]="attack_damage_+%_if_youve_shapeshifted_to_animal_recently" } }, - [4401]={ + [4522]={ [1]={ [1]={ limit={ @@ -97139,7 +99491,7 @@ return { [1]="attack_damage_+%_per_10_tribute" } }, - [4402]={ + [4523]={ [1]={ [1]={ limit={ @@ -97168,7 +99520,7 @@ return { [1]="attack_damage_+%_per_5%_block_chance" } }, - [4403]={ + [4524]={ [1]={ [1]={ limit={ @@ -97197,7 +99549,7 @@ return { [1]="attack_damage_+%_per_500_maximum_mana" } }, - [4404]={ + [4525]={ [1]={ [1]={ limit={ @@ -97222,7 +99574,7 @@ return { [1]="attack_damage_+%_per_active_totem_in_presence" } }, - [4405]={ + [4526]={ [1]={ [1]={ limit={ @@ -97238,7 +99590,23 @@ return { [1]="attack_damage_+%_per_explicit_map_mod_affecting_area" } }, - [4406]={ + [4527]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Attack damage per Power of target" + } + }, + stats={ + [1]="attack_damage_+%_per_target_power" + } + }, + [4528]={ [1]={ [1]={ limit={ @@ -97267,7 +99635,7 @@ return { [1]="attack_damage_+%_vs_rare_or_unique_enemy" } }, - [4407]={ + [4529]={ [1]={ [1]={ limit={ @@ -97296,7 +99664,7 @@ return { [1]="attack_damage_+%_when_no_remaining_life_flask_uses" } }, - [4408]={ + [4530]={ [1]={ [1]={ limit={ @@ -97325,7 +99693,7 @@ return { [1]="attack_damage_+%_while_ally_in_presence" } }, - [4409]={ + [4531]={ [1]={ [1]={ limit={ @@ -97354,7 +99722,7 @@ return { [1]="attack_damage_+%_while_in_blood_stance" } }, - [4410]={ + [4532]={ [1]={ [1]={ limit={ @@ -97383,7 +99751,7 @@ return { [1]="attack_damage_+%_while_moving" } }, - [4411]={ + [4533]={ [1]={ [1]={ limit={ @@ -97412,7 +99780,7 @@ return { [1]="attack_damage_+%_while_shapeshifted" } }, - [4412]={ + [4534]={ [1]={ [1]={ limit={ @@ -97441,7 +99809,7 @@ return { [1]="attack_damage_+%_while_surrounded" } }, - [4413]={ + [4535]={ [1]={ [1]={ limit={ @@ -97470,7 +99838,23 @@ return { [1]="attack_damage_+%_while_you_have_at_least_20_fortification" } }, - [4414]={ + [4536]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attack Damage with Hits is Lucky while you are Surrounded" + } + }, + stats={ + [1]="attack_damage_is_lucky_if_surrounded" + } + }, + [4537]={ [1]={ [1]={ limit={ @@ -97486,7 +99870,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds" } }, - [4415]={ + [4538]={ [1]={ [1]={ limit={ @@ -97502,7 +99886,7 @@ return { [1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion" } }, - [4416]={ + [4539]={ [1]={ [1]={ limit={ @@ -97531,7 +99915,7 @@ return { [1]="attack_damage_+%_per_16_strength" } }, - [4417]={ + [4540]={ [1]={ [1]={ limit={ @@ -97547,7 +99931,7 @@ return { [1]="attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [4418]={ + [4541]={ [1]={ [1]={ limit={ @@ -97556,7 +99940,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield" + text="{0}% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield" }, [2]={ [1]={ @@ -97569,14 +99953,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield" + text="{0}% reduced Attack Damage per 75 Item Armour and Evasion on Equipped Shield" } }, stats={ [1]="attack_damage_+%_per_75_armour_or_evasion_on_shield" } }, - [4419]={ + [4542]={ [1]={ [1]={ limit={ @@ -97605,7 +99989,7 @@ return { [1]="attack_damage_+%_vs_maimed_enemies" } }, - [4420]={ + [4543]={ [1]={ [1]={ limit={ @@ -97634,7 +100018,7 @@ return { [1]="attack_damage_+%_when_on_full_life" } }, - [4421]={ + [4544]={ [1]={ [1]={ limit={ @@ -97663,7 +100047,7 @@ return { [1]="attack_damage_+%_when_on_low_life" } }, - [4422]={ + [4545]={ [1]={ [1]={ limit={ @@ -97692,7 +100076,7 @@ return { [1]="attack_damage_+%_while_affected_by_precision" } }, - [4423]={ + [4546]={ [1]={ [1]={ limit={ @@ -97721,7 +100105,7 @@ return { [1]="attack_damage_+%_while_channelling" } }, - [4424]={ + [4547]={ [1]={ [1]={ limit={ @@ -97750,7 +100134,7 @@ return { [1]="attack_damage_+%_while_leeching" } }, - [4425]={ + [4548]={ [1]={ [1]={ limit={ @@ -97779,7 +100163,7 @@ return { [1]="attack_damage_+%_while_not_on_low_mana" } }, - [4426]={ + [4549]={ [1]={ [1]={ limit={ @@ -97808,7 +100192,7 @@ return { [1]="attack_damage_+%_while_you_have_fortify" } }, - [4427]={ + [4550]={ [1]={ [1]={ limit={ @@ -97837,7 +100221,7 @@ return { [1]="attack_damage_+%_with_channelling_skills" } }, - [4428]={ + [4551]={ [1]={ [1]={ limit={ @@ -97853,7 +100237,7 @@ return { [1]="attack_mana_cost_efficiency_+%_during_mana_flask" } }, - [4429]={ + [4552]={ [1]={ [1]={ limit={ @@ -97886,7 +100270,7 @@ return { [1]="attack_mana_cost_+%" } }, - [4430]={ + [4553]={ [1]={ [1]={ limit={ @@ -97907,7 +100291,7 @@ return { [2]="attack_maximum_added_fire_damage_per_10_strength" } }, - [4431]={ + [4554]={ [1]={ [1]={ limit={ @@ -97928,7 +100312,7 @@ return { [2]="local_maximum_added_fire_damage_vs_bleeding_enemies" } }, - [4432]={ + [4555]={ [1]={ [1]={ limit={ @@ -97949,7 +100333,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_dex" } }, - [4433]={ + [4556]={ [1]={ [1]={ limit={ @@ -97970,7 +100354,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_int" } }, - [4434]={ + [4557]={ [1]={ [1]={ limit={ @@ -97991,7 +100375,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_200_accuracy_rating" } }, - [4435]={ + [4558]={ [1]={ [1]={ limit={ @@ -98012,7 +100396,7 @@ return { [2]="attack_maximum_added_physical_damage_if_have_crit_recently" } }, - [4436]={ + [4559]={ [1]={ [1]={ limit={ @@ -98025,7 +100409,7 @@ return { [2]="#" } }, - text="Adds {0} to {1} Physical Damage to Attacks per 25 Strength" + text="{0} to {1} Added Attack Physical Damage per 25 Strength" } }, stats={ @@ -98033,7 +100417,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_strength" } }, - [4437]={ + [4560]={ [1]={ [1]={ limit={ @@ -98054,7 +100438,7 @@ return { [2]="attack_maximum_added_physical_damage_per_level" } }, - [4438]={ + [4561]={ [1]={ [1]={ limit={ @@ -98075,7 +100459,7 @@ return { [2]="local_maximum_added_physical_damage_vs_ignited_enemies" } }, - [4439]={ + [4562]={ [1]={ [1]={ limit={ @@ -98091,7 +100475,7 @@ return { [1]="attack_projectiles_fork" } }, - [4440]={ + [4563]={ [1]={ [1]={ limit={ @@ -98116,7 +100500,7 @@ return { [1]="attack_projectiles_fork_additional_times" } }, - [4441]={ + [4564]={ [1]={ [1]={ limit={ @@ -98132,7 +100516,36 @@ return { [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [4442]={ + [4565]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Speed if you haven't been Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Speed if you haven't been Hit Recently" + } + }, + stats={ + [1]="attack_speed_+%_if_not_been_hit_recently" + } + }, + [4566]={ [1]={ [1]={ limit={ @@ -98161,7 +100574,7 @@ return { [1]="attack_speed_+%_if_you_have_not_attacked_recently" } }, - [4443]={ + [4567]={ [1]={ [1]={ limit={ @@ -98190,7 +100603,7 @@ return { [1]="attack_speed_+%_per_20_spirit" } }, - [4444]={ + [4568]={ [1]={ [1]={ limit={ @@ -98219,7 +100632,7 @@ return { [1]="attack_speed_+%_per_enemy_in_close_range" } }, - [4445]={ + [4569]={ [1]={ [1]={ limit={ @@ -98235,7 +100648,7 @@ return { [1]="attack_speed_+%_per_explicit_map_mod_affecting_area" } }, - [4446]={ + [4570]={ [1]={ [1]={ limit={ @@ -98264,7 +100677,7 @@ return { [1]="attack_speed_+%_while_in_presence_of_companion" } }, - [4447]={ + [4571]={ [1]={ [1]={ limit={ @@ -98293,7 +100706,7 @@ return { [1]="attack_speed_+%_while_in_sand_stance" } }, - [4448]={ + [4572]={ [1]={ [1]={ limit={ @@ -98302,7 +100715,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed while on Full Mana" + text="{0}% increased Attack Speed while missing Runic Ward" }, [2]={ [1]={ @@ -98315,14 +100728,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed while on Full Mana" + text="{0}% reduced Attack Speed while missing Runic Ward" } }, stats={ - [1]="attack_speed_+%_while_on_full_mana" + [1]="attack_speed_+%_while_missing_ward" } }, - [4449]={ + [4573]={ [1]={ [1]={ limit={ @@ -98331,7 +100744,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed while Surrounded" + text="{0}% increased Attack Speed while on Full Mana" }, [2]={ [1]={ @@ -98344,14 +100757,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed while Surrounded" + text="{0}% reduced Attack Speed while on Full Mana" } }, stats={ - [1]="attack_speed_+%_while_surrounded" + [1]="attack_speed_+%_while_on_full_mana" } }, - [4450]={ + [4574]={ [1]={ [1]={ limit={ @@ -98360,7 +100773,7 @@ return { [2]="#" } }, - text="{0}% more Attack Speed per Blitz Charge" + text="{0}% increased Attack Speed while Surrounded" }, [2]={ [1]={ @@ -98373,14 +100786,14 @@ return { [2]=-1 } }, - text="{0}% less Attack Speed per Blitz Charge" + text="{0}% reduced Attack Speed while Surrounded" } }, stats={ - [1]="attack_speed_+%_final_per_blitz_charge" + [1]="attack_speed_+%_while_surrounded" } }, - [4451]={ + [4575]={ [1]={ [1]={ limit={ @@ -98389,7 +100802,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've Hit with your Main Hand Weapon Recently" + text="{0}% more Attack Speed per Blitz Charge" }, [2]={ [1]={ @@ -98402,14 +100815,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently" + text="{0}% less Attack Speed per Blitz Charge" } }, stats={ - [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" + [1]="attack_speed_+%_final_per_blitz_charge" } }, - [4452]={ + [4576]={ [1]={ [1]={ limit={ @@ -98418,7 +100831,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've killed Recently" + text="{0}% increased Attack Speed if you've Hit with your Main Hand Weapon Recently" }, [2]={ [1]={ @@ -98431,14 +100844,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've killed Recently" + text="{0}% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently" } }, stats={ - [1]="attack_speed_+%_if_enemy_killed_recently" + [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" } }, - [4453]={ + [4577]={ [1]={ [1]={ limit={ @@ -98447,7 +100860,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've been Hit Recently" + text="{0}% increased Attack Speed if you've killed Recently" }, [2]={ [1]={ @@ -98460,14 +100873,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've been Hit Recently" + text="{0}% reduced Attack Speed if you've killed Recently" } }, stats={ - [1]="attack_speed_+%_if_have_been_hit_recently" + [1]="attack_speed_+%_if_enemy_killed_recently" } }, - [4454]={ + [4578]={ [1]={ [1]={ limit={ @@ -98476,7 +100889,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you have Blocked Recently" + text="{0}% increased Attack Speed if you've been Hit Recently" }, [2]={ [1]={ @@ -98489,14 +100902,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you have Blocked Recently" + text="{0}% reduced Attack Speed if you've been Hit Recently" } }, stats={ - [1]="attack_speed_+%_if_have_blocked_recently" + [1]="attack_speed_+%_if_have_been_hit_recently" } }, - [4455]={ + [4579]={ [1]={ [1]={ limit={ @@ -98505,7 +100918,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you've dealt a Critical Hit Recently" + text="{0}% increased Attack Speed if you have Blocked Recently" }, [2]={ [1]={ @@ -98518,14 +100931,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you've dealt a Critical Hit Recently" + text="{0}% reduced Attack Speed if you have Blocked Recently" } }, stats={ - [1]="attack_speed_+%_if_have_crit_recently" + [1]="attack_speed_+%_if_have_blocked_recently" } }, - [4456]={ + [4580]={ [1]={ [1]={ limit={ @@ -98534,7 +100947,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Speed if you haven't Cast Dash recently" + text="{0}% increased Attack Speed if you've dealt a Critical Hit Recently" }, [2]={ [1]={ @@ -98547,14 +100960,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Speed if you haven't Cast Dash recently" + text="{0}% reduced Attack Speed if you've dealt a Critical Hit Recently" } }, stats={ - [1]="attack_speed_+%_if_havent_cast_dash_recently" + [1]="attack_speed_+%_if_have_crit_recently" } }, - [4457]={ + [4581]={ [1]={ [1]={ limit={ @@ -98583,7 +100996,7 @@ return { [1]="attack_speed_+%_if_not_gained_frenzy_charge_recently" } }, - [4458]={ + [4582]={ [1]={ [1]={ limit={ @@ -98612,7 +101025,7 @@ return { [1]="attack_speed_+%_if_rare_or_unique_enemy_nearby" } }, - [4459]={ + [4583]={ [1]={ [1]={ limit={ @@ -98641,7 +101054,7 @@ return { [1]="attack_speed_+%_if_used_a_mark_recently" } }, - [4460]={ + [4584]={ [1]={ [1]={ limit={ @@ -98670,7 +101083,7 @@ return { [1]="attack_speed_+%_if_you_have_at_least_600_strength" } }, - [4461]={ + [4585]={ [1]={ [1]={ limit={ @@ -98699,7 +101112,7 @@ return { [1]="attack_speed_+%_if_you_have_used_a_life_flask_recently" } }, - [4462]={ + [4586]={ [1]={ [1]={ limit={ @@ -98728,7 +101141,7 @@ return { [1]="attack_speed_+%_per_1%_overcapped_block_chance" } }, - [4463]={ + [4587]={ [1]={ [1]={ limit={ @@ -98757,7 +101170,7 @@ return { [1]="attack_speed_+%_per_10_dex" } }, - [4464]={ + [4588]={ [1]={ [1]={ limit={ @@ -98773,7 +101186,7 @@ return { [1]="attack_speed_+%_per_25_dex" } }, - [4465]={ + [4589]={ [1]={ [1]={ limit={ @@ -98802,7 +101215,7 @@ return { [1]="attack_speed_+%_while_affected_by_precision" } }, - [4466]={ + [4590]={ [1]={ [1]={ limit={ @@ -98831,7 +101244,7 @@ return { [1]="attack_speed_+%_while_chilled" } }, - [4467]={ + [4591]={ [1]={ [1]={ limit={ @@ -98860,7 +101273,7 @@ return { [1]="attack_speed_+%_while_not_on_low_mana" } }, - [4468]={ + [4592]={ [1]={ [1]={ limit={ @@ -98889,7 +101302,7 @@ return { [1]="attack_speed_+%_while_phasing" } }, - [4469]={ + [4593]={ [1]={ [1]={ limit={ @@ -98918,7 +101331,23 @@ return { [1]="attack_speed_+%_with_channelling_skills" } }, - [4470]={ + [4594]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attacks spend {0}% of your maximum Runic Ward if possible to gain that much added Physical damage" + } + }, + stats={ + [1]="attack_spend_x%_maximum_ward_for_added_physical_damage" + } + }, + [4595]={ [1]={ [1]={ limit={ @@ -98943,7 +101372,7 @@ return { [1]="steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles" } }, - [4471]={ + [4596]={ [1]={ [1]={ limit={ @@ -98959,7 +101388,7 @@ return { [1]="attacks_base_mana_cost_+_%_of_maximum_mana" } }, - [4472]={ + [4597]={ [1]={ [1]={ limit={ @@ -98975,7 +101404,7 @@ return { [1]="attacks_bleed_on_hit_while_you_have_cat_stealth" } }, - [4473]={ + [4598]={ [1]={ [1]={ limit={ @@ -98991,7 +101420,7 @@ return { [1]="attacks_cause_bleeding_vs_cursed_enemies" } }, - [4474]={ + [4599]={ [1]={ [1]={ limit={ @@ -99007,7 +101436,7 @@ return { [1]="local_chance_bleed_on_hit_%_vs_ignited_enemies" } }, - [4475]={ + [4600]={ [1]={ [1]={ limit={ @@ -99023,7 +101452,7 @@ return { [1]="attacks_chance_to_bleed_25%_vs_cursed_enemies" } }, - [4476]={ + [4601]={ [1]={ [1]={ limit={ @@ -99039,7 +101468,7 @@ return { [1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies" } }, - [4477]={ + [4602]={ [1]={ [1]={ limit={ @@ -99064,7 +101493,7 @@ return { [1]="attacks_chance_to_blind_on_hit_%" } }, - [4478]={ + [4603]={ [1]={ [1]={ limit={ @@ -99089,7 +101518,7 @@ return { [1]="attacks_chance_to_taunt_on_hit_%" } }, - [4479]={ + [4604]={ [1]={ [1]={ limit={ @@ -99114,7 +101543,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [4480]={ + [4605]={ [1]={ [1]={ limit={ @@ -99130,7 +101559,7 @@ return { [1]="attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike" } }, - [4481]={ + [4606]={ [1]={ [1]={ limit={ @@ -99155,28 +101584,7 @@ return { [1]="attacks_intimidate_on_hit_%" } }, - [4482]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - }, - [2]={ - [1]=1, - [2]="#" - } - }, - text="Adds {0} to {1} Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute" - } - }, - stats={ - [1]="attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute", - [2]="attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute" - } - }, - [4483]={ + [4607]={ [1]={ [1]={ limit={ @@ -99197,7 +101605,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity" } }, - [4484]={ + [4608]={ [1]={ [1]={ limit={ @@ -99213,7 +101621,7 @@ return { [1]="attacks_with_two_handed_weapons_impale_on_hit_%_chance" } }, - [4485]={ + [4609]={ [1]={ [1]={ limit={ @@ -99242,7 +101650,7 @@ return { [1]="aura_effect_+%_if_you_have_at_least_100_tribute" } }, - [4486]={ + [4610]={ [1]={ [1]={ limit={ @@ -99271,7 +101679,7 @@ return { [1]="aura_effect_on_self_from_skills_+%_per_herald_effecting_you" } }, - [4487]={ + [4611]={ [1]={ [1]={ limit={ @@ -99280,14 +101688,14 @@ return { [2]="#" } }, - text="Allies in your Presence gain added Attack Damage equal\nto {0}% of your main hand Weapon's Damage" + text="Allies in your Presence gain added Attack Damage equal\nto {0}% of your main hand Weapon's damage" } }, stats={ [1]="aura_grant_%_base_main_hand_attack_damage_to_nearby_allies" } }, - [4488]={ + [4612]={ [1]={ [1]={ [1]={ @@ -99307,7 +101715,7 @@ return { [1]="avians_flight_duration_ms_+" } }, - [4489]={ + [4613]={ [1]={ [1]={ [1]={ @@ -99327,7 +101735,7 @@ return { [1]="avians_might_duration_ms_+" } }, - [4490]={ + [4614]={ [1]={ [1]={ limit={ @@ -99343,7 +101751,7 @@ return { [1]="avoid_ailments_%_from_crit" } }, - [4491]={ + [4615]={ [1]={ [1]={ limit={ @@ -99359,7 +101767,7 @@ return { [1]="avoid_ailments_%_while_holding_shield" } }, - [4492]={ + [4616]={ [1]={ [1]={ limit={ @@ -99375,7 +101783,7 @@ return { [1]="avoid_all_elemental_ailment_%_per_summoned_golem" } }, - [4493]={ + [4617]={ [1]={ [1]={ limit={ @@ -99400,7 +101808,7 @@ return { [1]="avoid_chained_projectile_%_chance" } }, - [4494]={ + [4618]={ [1]={ [1]={ limit={ @@ -99416,7 +101824,7 @@ return { [1]="avoid_chill_freeze_while_casting_%" } }, - [4495]={ + [4619]={ [1]={ [1]={ limit={ @@ -99432,7 +101840,7 @@ return { [1]="avoid_corrupted_blood_%_chance" } }, - [4496]={ + [4620]={ [1]={ [1]={ limit={ @@ -99448,7 +101856,7 @@ return { [1]="avoid_elemental_ailments_%_while_affected_by_elusive" } }, - [4497]={ + [4621]={ [1]={ [1]={ limit={ @@ -99464,7 +101872,7 @@ return { [1]="avoid_elemental_ailments_%_while_phasing" } }, - [4498]={ + [4622]={ [1]={ [1]={ limit={ @@ -99480,7 +101888,7 @@ return { [1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention" } }, - [4499]={ + [4623]={ [1]={ [1]={ limit={ @@ -99496,7 +101904,7 @@ return { [1]="avoid_elemental_damage_while_phasing_%" } }, - [4500]={ + [4624]={ [1]={ [1]={ limit={ @@ -99512,7 +101920,7 @@ return { [1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently" } }, - [4501]={ + [4625]={ [1]={ [1]={ limit={ @@ -99537,7 +101945,7 @@ return { [1]="avoid_impale_%" } }, - [4502]={ + [4626]={ [1]={ [1]={ limit={ @@ -99566,7 +101974,7 @@ return { [1]="avoid_maim_%_chance" } }, - [4503]={ + [4627]={ [1]={ [1]={ limit={ @@ -99582,7 +101990,7 @@ return { [1]="avoid_physical_damage_%_while_phasing" } }, - [4504]={ + [4628]={ [1]={ [1]={ limit={ @@ -99598,7 +102006,7 @@ return { [1]="avoid_projectiles_%_chance_if_taken_projectile_damage_recently" } }, - [4505]={ + [4629]={ [1]={ [1]={ limit={ @@ -99614,7 +102022,7 @@ return { [1]="avoid_projectiles_while_phasing_%_chance" } }, - [4506]={ + [4630]={ [1]={ [1]={ limit={ @@ -99630,7 +102038,7 @@ return { [1]="avoid_shock_%_while_chilled" } }, - [4507]={ + [4631]={ [1]={ [1]={ limit={ @@ -99646,7 +102054,7 @@ return { [1]="avoid_stun_35%_per_active_herald" } }, - [4508]={ + [4632]={ [1]={ [1]={ limit={ @@ -99662,7 +102070,7 @@ return { [1]="avoid_stun_%_while_channeling_snipe" } }, - [4509]={ + [4633]={ [1]={ [1]={ limit={ @@ -99678,7 +102086,7 @@ return { [1]="avoid_stun_%_while_channelling" } }, - [4510]={ + [4634]={ [1]={ [1]={ limit={ @@ -99694,7 +102102,7 @@ return { [1]="avoid_stun_%_while_holding_shield" } }, - [4511]={ + [4635]={ [1]={ [1]={ limit={ @@ -99719,7 +102127,7 @@ return { [1]="ball_lightning_number_of_additional_projectiles" } }, - [4512]={ + [4636]={ [1]={ [1]={ limit={ @@ -99748,7 +102156,7 @@ return { [1]="ballista_attack_speed_+%" } }, - [4513]={ + [4637]={ [1]={ [1]={ limit={ @@ -99777,7 +102185,7 @@ return { [1]="ballista_critical_damage_+%" } }, - [4514]={ + [4638]={ [1]={ [1]={ limit={ @@ -99806,7 +102214,7 @@ return { [1]="ballista_critical_hit_chance_+%" } }, - [4515]={ + [4639]={ [1]={ [1]={ limit={ @@ -99835,7 +102243,7 @@ return { [1]="ballista_damage_+%" } }, - [4516]={ + [4640]={ [1]={ [1]={ limit={ @@ -99864,7 +102272,7 @@ return { [1]="ballista_hit_damage_immobilisation_multiplier_+%" } }, - [4517]={ + [4641]={ [1]={ [1]={ limit={ @@ -99880,7 +102288,7 @@ return { [1]="add_1_stage_to_banners_on_melee_hit_up_to_5_per_second" } }, - [4518]={ + [4642]={ [1]={ [1]={ limit={ @@ -99909,7 +102317,7 @@ return { [1]="banner_adrenaline_duration_+%" } }, - [4519]={ + [4643]={ [1]={ [1]={ limit={ @@ -99938,7 +102346,7 @@ return { [1]="banner_area_of_effect_+%" } }, - [4520]={ + [4644]={ [1]={ [1]={ limit={ @@ -99954,7 +102362,7 @@ return { [1]="banner_buff_lingers_for_X_seconds_after_leaving_area" } }, - [4521]={ + [4645]={ [1]={ [1]={ limit={ @@ -99983,7 +102391,7 @@ return { [1]="banner_duration_+%" } }, - [4522]={ + [4646]={ [1]={ [1]={ limit={ @@ -100012,7 +102420,7 @@ return { [1]="banner_fortify_duration_+%" } }, - [4523]={ + [4647]={ [1]={ [1]={ limit={ @@ -100041,7 +102449,7 @@ return { [1]="banner_mana_reservation_+%" } }, - [4524]={ + [4648]={ [1]={ [1]={ limit={ @@ -100057,7 +102465,7 @@ return { [1]="banner_resource_maximum_+" } }, - [4525]={ + [4649]={ [1]={ [1]={ [1]={ @@ -100094,7 +102502,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_-2%_per_1" } }, - [4526]={ + [4650]={ [1]={ [1]={ limit={ @@ -100123,7 +102531,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_+%" } }, - [4527]={ + [4651]={ [1]={ [1]={ limit={ @@ -100139,7 +102547,7 @@ return { [1]="banner_skills_reserve_no_mana" } }, - [4528]={ + [4652]={ [1]={ [1]={ limit={ @@ -100168,7 +102576,7 @@ return { [1]="banner_taunt_duration_+%" } }, - [4529]={ + [4653]={ [1]={ [1]={ limit={ @@ -100184,7 +102592,7 @@ return { [1]="banners_always_have_max_valour" } }, - [4530]={ + [4654]={ [1]={ [1]={ limit={ @@ -100200,7 +102608,7 @@ return { [1]="banners_gain_X_glory_per_second" } }, - [4531]={ + [4655]={ [1]={ [1]={ limit={ @@ -100229,7 +102637,7 @@ return { [1]="barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge" } }, - [4532]={ + [4656]={ [1]={ [1]={ limit={ @@ -100258,7 +102666,7 @@ return { [1]="basalt_flask_armour_+%_final" } }, - [4533]={ + [4657]={ [1]={ [1]={ limit={ @@ -100287,23 +102695,7 @@ return { [1]="base_all_ailment_duration_on_self_+%" } }, - [4534]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Damage taken bypasses Energy Shield" - } - }, - stats={ - [1]="base_all_damage_bypass_energy_shield_%" - } - }, - [4535]={ + [4658]={ [1]={ [1]={ limit={ @@ -100319,7 +102711,7 @@ return { [1]="base_armour_%_applies_to_chaos_damage" } }, - [4536]={ + [4659]={ [1]={ [1]={ limit={ @@ -100335,7 +102727,7 @@ return { [1]="base_armour_%_applies_to_cold_damage" } }, - [4537]={ + [4660]={ [1]={ [1]={ limit={ @@ -100351,7 +102743,7 @@ return { [1]="base_armour_%_applies_to_fire_damage" } }, - [4538]={ + [4661]={ [1]={ [1]={ limit={ @@ -100367,7 +102759,7 @@ return { [1]="base_armour_%_applies_to_lightning_damage" } }, - [4539]={ + [4662]={ [1]={ [1]={ limit={ @@ -100383,7 +102775,7 @@ return { [1]="base_armour_applies_to_chaos_damage" } }, - [4540]={ + [4663]={ [1]={ [1]={ limit={ @@ -100399,7 +102791,7 @@ return { [1]="base_armour_applies_to_lightning_damage" } }, - [4541]={ + [4664]={ [1]={ [1]={ limit={ @@ -100415,7 +102807,7 @@ return { [1]="base_arrows_always_pierce" } }, - [4542]={ + [4665]={ [1]={ [1]={ [1]={ @@ -100435,7 +102827,7 @@ return { [1]="base_attack_critical_strike_chance_permyriad_+_per_1_percent_enemy_missing_life" } }, - [4543]={ + [4666]={ [1]={ [1]={ limit={ @@ -100464,7 +102856,7 @@ return { [1]="base_attack_skill_cost_efficiency_+%" } }, - [4544]={ + [4667]={ [1]={ [1]={ limit={ @@ -100489,7 +102881,59 @@ return { [1]="base_avoid_projectiles_%_chance" } }, - [4545]={ + [4668]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Banners also grant {0:+d}% of Armour also applies to Elemental Damage to you and Allies" + } + }, + stats={ + [1]="base_banner_armour_%_applies_to_fire_cold_lightning_to_apply" + } + }, + [4669]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Banners also grant Gain Deflection Rating equal to {0}% of Evasion Rating to you and Allies" + } + }, + stats={ + [1]="base_banner_evasion_%_as_deflection_to_apply" + } + }, + [4670]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Banners also grant {0}% of Life Regenerated per second to affected targets" + } + }, + stats={ + [1]="base_banner_life_regeneration_rate_per_minute_%_to_apply" + } + }, + [4671]={ [1]={ [1]={ limit={ @@ -100498,14 +102942,30 @@ return { [2]="#" } }, - text="Banners also grant {0:+d}% to all Elemental Resistances to you and Allies" + text="Banners also grant {0:+d}% to all Elemental Resistances affected targets" } }, stats={ [1]="base_banner_resist_all_elements_%_to_apply" } }, - [4546]={ + [4672]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to inflict Bleeding is calculated from your base chance to Poison instead" + } + }, + stats={ + [1]="base_bleed_chance_is_poison_chance_instead" + } + }, + [4673]={ [1]={ [1]={ limit={ @@ -100534,7 +102994,7 @@ return { [1]="base_bleed_duration_+%" } }, - [4547]={ + [4674]={ [1]={ [1]={ limit={ @@ -100563,7 +103023,7 @@ return { [1]="base_bleeding_magnitude_+%_on_self" } }, - [4548]={ + [4675]={ [1]={ [1]={ limit={ @@ -100588,7 +103048,7 @@ return { [1]="base_block_chance_luck" } }, - [4549]={ + [4676]={ [1]={ [1]={ limit={ @@ -100604,7 +103064,7 @@ return { [1]="base_block_%_damage_taken" } }, - [4550]={ + [4677]={ [1]={ [1]={ [1]={ @@ -100624,7 +103084,7 @@ return { [1]="base_body_armour_permyriad_to_gain_as_physical_thorns_damage" } }, - [4551]={ + [4678]={ [1]={ [1]={ limit={ @@ -100653,7 +103113,23 @@ return { [1]="base_bone_golem_granted_buff_effect_+%" } }, - [4552]={ + [4679]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot be Electrocuted" + } + }, + stats={ + [1]="base_cannot_be_electrocuted" + } + }, + [4680]={ [1]={ [1]={ limit={ @@ -100669,7 +103145,7 @@ return { [1]="base_cannot_gain_endurance_charges" } }, - [4553]={ + [4681]={ [1]={ [1]={ limit={ @@ -100685,7 +103161,7 @@ return { [1]="base_cannot_leech_energy_shield" } }, - [4554]={ + [4682]={ [1]={ [1]={ limit={ @@ -100710,7 +103186,7 @@ return { [1]="base_chance_to_daze_%" } }, - [4555]={ + [4683]={ [1]={ [1]={ limit={ @@ -100735,7 +103211,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [4556]={ + [4684]={ [1]={ [1]={ limit={ @@ -100760,7 +103236,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [4557]={ + [4685]={ [1]={ [1]={ limit={ @@ -100789,23 +103265,7 @@ return { [1]="base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies" } }, - [4558]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Chaos Damage taken bypasses Energy Shield" - } - }, - stats={ - [1]="base_chaos_damage_bypass_energy_shield_%" - } - }, - [4559]={ + [4686]={ [1]={ [1]={ limit={ @@ -100821,7 +103281,7 @@ return { [1]="base_chaos_damage_can_electrocute" } }, - [4560]={ + [4687]={ [1]={ [1]={ limit={ @@ -100837,7 +103297,7 @@ return { [1]="base_chaos_damage_can_ignite" } }, - [4561]={ + [4688]={ [1]={ [1]={ limit={ @@ -100866,7 +103326,7 @@ return { [1]="base_charge_duration_+%" } }, - [4562]={ + [4689]={ [1]={ [1]={ limit={ @@ -100895,7 +103355,7 @@ return { [1]="base_cooldown_speed_+%_per_10_tribute" } }, - [4563]={ + [4690]={ [1]={ [1]={ limit={ @@ -100924,23 +103384,32 @@ return { [1]="base_cooldown_speed_+%" } }, - [4564]={ + [4691]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0}% of Damage taken bypasses Ward" + text="Prevent {0:+d}% of Damage from Deflected Hits" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d}% to amount of Damage Prevented by Deflection" } }, stats={ - [1]="base_damage_bypass_ward_%" + [1]="base_damage_%_deflected" } }, - [4565]={ + [4692]={ [1]={ [1]={ limit={ @@ -100949,7 +103418,7 @@ return { [2]="#" } }, - text="Prevent {0:+d}% of Damage from Deflected Hits" + text="Prevent {0:+d}% of Damage from Deflected Hits if you've\nDeflected no Hits Recently" }, [2]={ limit={ @@ -100958,14 +103427,14 @@ return { [2]=-1 } }, - text="{0:+d}% to amount of Damage Prevented by Deflection" + text="{0:+d}% to amount of Damage Prevented by Deflection if you haven't Deflected a Hit Recently" } }, stats={ - [1]="base_damage_%_deflected" + [1]="base_damage_%_deflected_if_you_have_not_deflected_recently" } }, - [4566]={ + [4693]={ [1]={ [1]={ limit={ @@ -100990,7 +103459,7 @@ return { [1]="base_damage_%_deflected_vs_crit" } }, - [4567]={ + [4694]={ [1]={ [1]={ limit={ @@ -101006,7 +103475,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%_when_not_on_low_mana" } }, - [4568]={ + [4695]={ [1]={ [1]={ limit={ @@ -101035,7 +103504,7 @@ return { [1]="base_damage_taken_+%_per_10_tribute" } }, - [4569]={ + [4696]={ [1]={ [1]={ limit={ @@ -101064,7 +103533,7 @@ return { [1]="base_damaging_ailment_effect_+%_per_10_tribute" } }, - [4570]={ + [4697]={ [1]={ [1]={ limit={ @@ -101080,7 +103549,7 @@ return { [1]="base_darkness" } }, - [4571]={ + [4698]={ [1]={ [1]={ [1]={ @@ -101100,7 +103569,7 @@ return { [1]="base_darkness_refresh_rate_ms" } }, - [4572]={ + [4699]={ [1]={ [1]={ limit={ @@ -101116,7 +103585,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [4573]={ + [4700]={ [1]={ [1]={ limit={ @@ -101132,7 +103601,7 @@ return { [1]="base_deal_no_fire_damage" } }, - [4574]={ + [4701]={ [1]={ [1]={ limit={ @@ -101148,7 +103617,7 @@ return { [1]="base_deal_no_lightning_damage" } }, - [4575]={ + [4702]={ [1]={ [1]={ limit={ @@ -101164,7 +103633,7 @@ return { [1]="base_deal_no_thorns_damage" } }, - [4576]={ + [4703]={ [1]={ [1]={ limit={ @@ -101193,39 +103662,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [4577]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Chance to Deflect is Lucky" - } - }, - stats={ - [1]="base_deflect_chance_luck" - } - }, - [4578]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Chance to Deflect Damage is Lucky" - } - }, - stats={ - [1]="base_deflect_chance_luck" - } - }, - [4579]={ + [4704]={ [1]={ [1]={ limit={ @@ -101241,7 +103678,7 @@ return { [1]="base_deflection_rating_%_of_evasion_rating_per_25_tribute" } }, - [4580]={ + [4705]={ [1]={ [1]={ limit={ @@ -101257,32 +103694,7 @@ return { [1]="base_dexterity_per_25_tribute" } }, - [4581]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=99 - } - }, - text="{0}% of Elemental Damage taken from Hits bypasses Energy Shield" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]="#" - } - }, - text="Elemental Damage taken from Hits bypasses Energy Shield" - } - }, - stats={ - [1]="base_elemental_hit_damage_bypass_energy_shield_%" - } - }, - [4582]={ + [4706]={ [1]={ [1]={ limit={ @@ -101298,7 +103710,7 @@ return { [1]="base_endurance_charge_skip_consume_chance_%" } }, - [4583]={ + [4707]={ [1]={ [1]={ limit={ @@ -101314,7 +103726,7 @@ return { [1]="base_enemies_in_your_presence_are_hindered" } }, - [4584]={ + [4708]={ [1]={ [1]={ limit={ @@ -101339,7 +103751,7 @@ return { [1]="base_extra_damage_rolls" } }, - [4585]={ + [4709]={ [1]={ [1]={ limit={ @@ -101355,7 +103767,7 @@ return { [1]="base_frenzy_charge_skip_consume_chance_%" } }, - [4586]={ + [4710]={ [1]={ [1]={ limit={ @@ -101384,7 +103796,7 @@ return { [1]="base_frozen_effect_on_self_+%" } }, - [4587]={ + [4711]={ [1]={ [1]={ limit={ @@ -101400,7 +103812,7 @@ return { [1]="base_gain_x_rage_on_hit" } }, - [4588]={ + [4712]={ [1]={ [1]={ limit={ @@ -101416,7 +103828,7 @@ return { [1]="base_immune_to_cold_ailments" } }, - [4589]={ + [4713]={ [1]={ [1]={ limit={ @@ -101432,7 +103844,7 @@ return { [1]="base_immune_to_freeze" } }, - [4590]={ + [4714]={ [1]={ [1]={ limit={ @@ -101448,7 +103860,7 @@ return { [1]="base_immune_to_ignite" } }, - [4591]={ + [4715]={ [1]={ [1]={ limit={ @@ -101464,7 +103876,7 @@ return { [1]="base_immune_to_shock" } }, - [4592]={ + [4716]={ [1]={ [1]={ limit={ @@ -101489,7 +103901,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [4593]={ + [4717]={ [1]={ [1]={ limit={ @@ -101514,7 +103926,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [4594]={ + [4718]={ [1]={ [1]={ limit={ @@ -101539,7 +103951,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [4595]={ + [4719]={ [1]={ [1]={ limit={ @@ -101555,7 +103967,7 @@ return { [1]="base_intelligence_per_25_tribute" } }, - [4596]={ + [4720]={ [1]={ [1]={ limit={ @@ -101584,7 +103996,7 @@ return { [1]="base_life_cost_efficiency_+%" } }, - [4597]={ + [4721]={ [1]={ [1]={ limit={ @@ -101600,7 +104012,7 @@ return { [1]="base_life_cost_+_with_non_channelling_spells_%_maximum_life" } }, - [4598]={ + [4722]={ [1]={ [1]={ limit={ @@ -101609,14 +104021,14 @@ return { [2]="#" } }, - text="Life Flasks do not recover Life" + text="Flasks do not recover Life" } }, stats={ [1]="base_life_flasks_do_not_recover_life" } }, - [4599]={ + [4723]={ [1]={ [1]={ [1]={ @@ -101636,7 +104048,7 @@ return { [1]="base_life_leech_from_all_spell_damage_permyriad" } }, - [4600]={ + [4724]={ [1]={ [1]={ [1]={ @@ -101656,7 +104068,7 @@ return { [1]="base_life_leech_from_all_thorns_damage_permyriad" } }, - [4601]={ + [4725]={ [1]={ [1]={ limit={ @@ -101672,7 +104084,7 @@ return { [1]="base_life_recharges_like_energy_shield" } }, - [4602]={ + [4726]={ [1]={ [1]={ limit={ @@ -101688,7 +104100,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [4603]={ + [4727]={ [1]={ [1]={ limit={ @@ -101704,7 +104116,7 @@ return { [1]="base_limit_+" } }, - [4604]={ + [4728]={ [1]={ [1]={ limit={ @@ -101720,7 +104132,7 @@ return { [1]="base_main_hand_maim_on_hit_%" } }, - [4605]={ + [4729]={ [1]={ [1]={ limit={ @@ -101736,7 +104148,7 @@ return { [1]="base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%" } }, - [4606]={ + [4730]={ [1]={ [1]={ limit={ @@ -101765,7 +104177,36 @@ return { [1]="base_mana_cost_efficiency_+%" } }, - [4607]={ + [4731]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Command Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Command Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_command_skills" + } + }, + [4732]={ [1]={ [1]={ limit={ @@ -101794,7 +104235,7 @@ return { [1]="base_mana_cost_efficiency_+%_of_curse_skills" } }, - [4608]={ + [4733]={ [1]={ [1]={ limit={ @@ -101823,7 +104264,7 @@ return { [1]="base_mana_cost_efficiency_+%_of_mark_skills" } }, - [4609]={ + [4734]={ [1]={ [1]={ limit={ @@ -101852,7 +104293,7 @@ return { [1]="base_mana_cost_efficiency_+%_per_10_tribute" } }, - [4610]={ + [4735]={ [1]={ [1]={ limit={ @@ -101881,7 +104322,7 @@ return { [1]="base_mana_cost_efficiency_+%_while_on_low_mana" } }, - [4611]={ + [4736]={ [1]={ [1]={ limit={ @@ -101897,7 +104338,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana" } }, - [4612]={ + [4737]={ [1]={ [1]={ limit={ @@ -101913,7 +104354,7 @@ return { [1]="base_max_fortification" } }, - [4613]={ + [4738]={ [1]={ [1]={ limit={ @@ -101929,7 +104370,23 @@ return { [1]="base_maximum_fire_damage_resistance_%_while_ignited" } }, - [4614]={ + [4739]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sealed Skills have {0:+d} to maximum Seals" + } + }, + stats={ + [1]="base_maximum_seals_for_skill" + } + }, + [4740]={ [1]={ [1]={ limit={ @@ -101958,7 +104415,7 @@ return { [1]="base_minion_duration_+%" } }, - [4615]={ + [4741]={ [1]={ [1]={ limit={ @@ -101974,7 +104431,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [4616]={ + [4742]={ [1]={ [1]={ limit={ @@ -101999,7 +104456,7 @@ return { [1]="base_number_of_herald_scorpions_allowed" } }, - [4617]={ + [4743]={ [1]={ [1]={ limit={ @@ -102015,7 +104472,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [4618]={ + [4744]={ [1]={ [1]={ limit={ @@ -102040,7 +104497,7 @@ return { [1]="base_number_of_sigils_allowed_per_target" } }, - [4619]={ + [4745]={ [1]={ [1]={ limit={ @@ -102056,7 +104513,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [4620]={ + [4746]={ [1]={ [1]={ limit={ @@ -102072,32 +104529,7 @@ return { [1]="base_off_hand_chance_to_blind_on_hit_%" } }, - [4621]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } - }, - text="Gain Onslaught for 4 seconds on Hit" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance to gain Onslaught for 4 seconds on Hit" - } - }, - stats={ - [1]="base_onlsaught_on_hit_%_chance" - } - }, - [4622]={ + [4747]={ [1]={ [1]={ limit={ @@ -102113,7 +104545,7 @@ return { [1]="base_physical_damage_can_pin" } }, - [4623]={ + [4748]={ [1]={ [1]={ limit={ @@ -102146,7 +104578,23 @@ return { [1]="base_physical_damage_over_time_taken_+%" } }, - [4624]={ + [4749]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chance to Poison is calculated from your base chance to inflict Bleeding instead" + } + }, + stats={ + [1]="base_poison_chance_is_bleed_chance_instead" + } + }, + [4750]={ [1]={ [1]={ limit={ @@ -102171,7 +104619,7 @@ return { [1]="base_poison_effect_+%_while_poisoned" } }, - [4625]={ + [4751]={ [1]={ [1]={ limit={ @@ -102187,7 +104635,36 @@ return { [1]="base_power_charge_skip_consume_chance_%" } }, - [4626]={ + [4752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Rage Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Rage Cost Efficiency" + } + }, + stats={ + [1]="base_rage_cost_efficiency_+%" + } + }, + [4753]={ [1]={ [1]={ [1]={ @@ -102207,7 +104684,7 @@ return { [1]="base_rage_regeneration_per_minute" } }, - [4627]={ + [4754]={ [1]={ [1]={ limit={ @@ -102223,7 +104700,7 @@ return { [1]="base_should_have_arcane_surge_from_stat" } }, - [4628]={ + [4755]={ [1]={ [1]={ limit={ @@ -102252,7 +104729,7 @@ return { [1]="base_skill_cost_efficiency_+%" } }, - [4629]={ + [4756]={ [1]={ [1]={ limit={ @@ -102277,7 +104754,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [4630]={ + [4757]={ [1]={ [1]={ [1]={ @@ -102310,7 +104787,7 @@ return { [1]="base_skill_detonation_time" } }, - [4631]={ + [4758]={ [1]={ [1]={ limit={ @@ -102319,14 +104796,14 @@ return { [2]="#" } }, - text="Skills gain a Base Life Cost equal to {0}% of Base Mana Cost" + text="Skills Gain {0}% of Mana Cost as Extra Life Cost" } }, stats={ [1]="base_skill_gain_life_cost_%_of_mana_cost" } }, - [4632]={ + [4759]={ [1]={ [1]={ limit={ @@ -102355,7 +104832,7 @@ return { [1]="base_slow_potency_+%" } }, - [4633]={ + [4760]={ [1]={ [1]={ limit={ @@ -102384,7 +104861,7 @@ return { [1]="base_spell_cooldown_speed_+%" } }, - [4634]={ + [4761]={ [1]={ [1]={ limit={ @@ -102400,7 +104877,7 @@ return { [1]="base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon" } }, - [4635]={ + [4762]={ [1]={ [1]={ [1]={ @@ -102420,7 +104897,36 @@ return { [1]="base_spell_critical_strike_chance_override_permyriad" } }, - [4636]={ + [4763]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Spells" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Spells" + } + }, + stats={ + [1]="base_spell_mana_cost_efficiency_+%" + } + }, + [4764]={ [1]={ [1]={ limit={ @@ -102436,7 +104942,7 @@ return { [1]="base_spell_projectile_block_%" } }, - [4637]={ + [4765]={ [1]={ [1]={ limit={ @@ -102445,9 +104951,64 @@ return { [2]="#" } }, - text="{0}% increased Spirit Reservation Efficiency of Skills" + text="{0}% increased Cost Efficiency of Spells" }, [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Spells" + } + }, + stats={ + [1]="base_spell_skill_cost_efficiency_+%" + } + }, + [4766]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Spirit per Idol socketed in your Equipment" + } + }, + stats={ + [1]="base_spirit_per_socketed_idol" + } + }, + [4767]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency of Skills" + }, + [3]={ [1]={ k="negate", v=1 @@ -102465,7 +105026,7 @@ return { [1]="base_spirit_reservation_efficiency_+%" } }, - [4638]={ + [4768]={ [1]={ [1]={ limit={ @@ -102494,7 +105055,7 @@ return { [1]="base_spirit_reservation_efficiency_+%_per_20_tribute" } }, - [4639]={ + [4769]={ [1]={ [1]={ limit={ @@ -102510,7 +105071,7 @@ return { [1]="base_strength_per_25_tribute" } }, - [4640]={ + [4770]={ [1]={ [1]={ [1]={ @@ -102530,7 +105091,7 @@ return { [1]="base_thorns_critical_strike_chance" } }, - [4641]={ + [4771]={ [1]={ [1]={ limit={ @@ -102559,7 +105120,7 @@ return { [1]="base_thorns_critical_strike_multiplier_+" } }, - [4642]={ + [4772]={ [1]={ [1]={ limit={ @@ -102584,7 +105145,7 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [4643]={ + [4773]={ [1]={ [1]={ limit={ @@ -102600,7 +105161,7 @@ return { [1]="base_unaffected_by_poison" } }, - [4644]={ + [4774]={ [1]={ [1]={ limit={ @@ -102629,7 +105190,56 @@ return { [1]="base_unholy_might_granted_magnitude_+%" } }, - [4645]={ + [4775]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Runic Ward Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Runic Ward Cost Efficiency" + } + }, + stats={ + [1]="base_ward_cost_efficiency_+%" + } + }, + [4776]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Regenerate {0} Runic Ward per second" + } + }, + stats={ + [1]="base_ward_regeneration_per_minute" + } + }, + [4777]={ [1]={ [1]={ limit={ @@ -102658,7 +105268,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [4646]={ + [4778]={ [1]={ [1]={ [1]={ @@ -102678,7 +105288,7 @@ return { [1]="base_weapon_trap_total_rotation_%" } }, - [4647]={ + [4779]={ [1]={ [1]={ limit={ @@ -102707,7 +105317,7 @@ return { [1]="battlemages_cry_buff_effect_+%" } }, - [4648]={ + [4780]={ [1]={ [1]={ limit={ @@ -102732,7 +105342,7 @@ return { [1]="battlemages_cry_exerts_x_additional_attacks" } }, - [4649]={ + [4781]={ [1]={ [1]={ limit={ @@ -102748,7 +105358,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [4650]={ + [4782]={ [1]={ [1]={ limit={ @@ -102777,7 +105387,7 @@ return { [1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines" } }, - [4651]={ + [4783]={ [1]={ [1]={ limit={ @@ -102806,7 +105416,7 @@ return { [1]="bear_trap_damage_taken_+%_from_traps_and_mines" } }, - [4652]={ + [4784]={ [1]={ [1]={ limit={ @@ -102835,7 +105445,23 @@ return { [1]="bear_trap_movement_speed_+%_final" } }, - [4653]={ + [4785]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Tempest Bells are destroyed after an additional {0} Hits" + } + }, + stats={ + [1]="bell_hit_limit" + } + }, + [4786]={ [1]={ [1]={ limit={ @@ -102864,7 +105490,7 @@ return { [1]="belt_enchant_enemies_you_taunt_have_area_damage_+%_final" } }, - [4654]={ + [4787]={ [1]={ [1]={ limit={ @@ -102889,7 +105515,7 @@ return { [1]="local_charm_slots" } }, - [4655]={ + [4788]={ [1]={ [1]={ limit={ @@ -102918,7 +105544,7 @@ return { [1]="berserk_buff_effect_+%" } }, - [4656]={ + [4789]={ [1]={ [1]={ limit={ @@ -102951,7 +105577,7 @@ return { [1]="berserk_rage_loss_+%" } }, - [4657]={ + [4790]={ [1]={ [1]={ [1]={ @@ -102971,7 +105597,7 @@ return { [1]="berserker_gain_rage_on_attack_hit_cooldown_ms" } }, - [4658]={ + [4791]={ [1]={ [1]={ limit={ @@ -102987,7 +105613,7 @@ return { [1]="berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage" } }, - [4659]={ + [4792]={ [1]={ [1]={ limit={ @@ -103003,7 +105629,7 @@ return { [1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies" } }, - [4660]={ + [4793]={ [1]={ [1]={ limit={ @@ -103019,7 +105645,7 @@ return { [1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies" } }, - [4661]={ + [4794]={ [1]={ [1]={ limit={ @@ -103044,7 +105670,7 @@ return { [1]="berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final" } }, - [4662]={ + [4795]={ [1]={ [1]={ limit={ @@ -103073,7 +105699,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [4663]={ + [4796]={ [1]={ [1]={ limit={ @@ -103102,7 +105728,7 @@ return { [1]="blackhole_pulse_frequency_+%" } }, - [4664]={ + [4797]={ [1]={ [1]={ limit={ @@ -103131,7 +105757,7 @@ return { [1]="blackstar_moonlight_cold_damage_taken_+%_final" } }, - [4665]={ + [4798]={ [1]={ [1]={ limit={ @@ -103160,7 +105786,7 @@ return { [1]="blackstar_moonlight_fire_damage_taken_+%_final" } }, - [4666]={ + [4799]={ [1]={ [1]={ limit={ @@ -103189,7 +105815,7 @@ return { [1]="blackstar_sunlight_cold_damage_taken_+%_final" } }, - [4667]={ + [4800]={ [1]={ [1]={ limit={ @@ -103218,7 +105844,7 @@ return { [1]="blackstar_sunlight_fire_damage_taken_+%_final" } }, - [4668]={ + [4801]={ [1]={ [1]={ limit={ @@ -103247,7 +105873,7 @@ return { [1]="blade_blase_damage_+%" } }, - [4669]={ + [4802]={ [1]={ [1]={ limit={ @@ -103276,7 +105902,7 @@ return { [1]="blade_blast_skill_area_of_effect_+%" } }, - [4670]={ + [4803]={ [1]={ [1]={ limit={ @@ -103305,7 +105931,7 @@ return { [1]="blade_blast_trigger_detonation_area_of_effect_+%" } }, - [4671]={ + [4804]={ [1]={ [1]={ limit={ @@ -103334,7 +105960,7 @@ return { [1]="blade_trap_damage_+%" } }, - [4672]={ + [4805]={ [1]={ [1]={ limit={ @@ -103363,7 +105989,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%" } }, - [4673]={ + [4806]={ [1]={ [1]={ limit={ @@ -103388,7 +106014,7 @@ return { [1]="blade_vortex_blade_blast_impale_on_hit_%_chance" } }, - [4674]={ + [4807]={ [1]={ [1]={ limit={ @@ -103404,7 +106030,7 @@ return { [1]="blade_vortex_blade_deal_no_non_physical_damage" } }, - [4675]={ + [4808]={ [1]={ [1]={ limit={ @@ -103420,7 +106046,7 @@ return { [1]="blade_vortex_critical_strike_multiplier_+_per_blade" } }, - [4676]={ + [4809]={ [1]={ [1]={ limit={ @@ -103445,7 +106071,7 @@ return { [1]="bladefall_number_of_volleys" } }, - [4677]={ + [4810]={ [1]={ [1]={ limit={ @@ -103461,7 +106087,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [4678]={ + [4811]={ [1]={ [1]={ limit={ @@ -103490,7 +106116,7 @@ return { [1]="bladestorm_damage_+%" } }, - [4679]={ + [4812]={ [1]={ [1]={ limit={ @@ -103506,7 +106132,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [4680]={ + [4813]={ [1]={ [1]={ limit={ @@ -103535,7 +106161,23 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [4681]={ + [4814]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Blasphemy has no Reservation" + } + }, + stats={ + [1]="blasphemy_no_reservation" + } + }, + [4815]={ [1]={ [1]={ limit={ @@ -103564,7 +106206,7 @@ return { [1]="blazing_salvo_damage_+%" } }, - [4682]={ + [4816]={ [1]={ [1]={ limit={ @@ -103589,7 +106231,7 @@ return { [1]="blazing_salvo_number_of_additional_projectiles" } }, - [4683]={ + [4817]={ [1]={ [1]={ limit={ @@ -103605,7 +106247,7 @@ return { [1]="blazing_salvo_projectiles_fork_when_passing_a_flame_wall" } }, - [4684]={ + [4818]={ [1]={ [1]={ limit={ @@ -103634,7 +106276,23 @@ return { [1]="bleed_chance_+%" } }, - [4685]={ + [4819]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bleeding you inflict deals Fire Damage instead of Physical Damage" + } + }, + stats={ + [1]="bleed_damage_applies_as_fire_instead_of_physical" + } + }, + [4820]={ [1]={ [1]={ limit={ @@ -103650,7 +106308,7 @@ return { [1]="bleed_on_crit_%" } }, - [4686]={ + [4821]={ [1]={ [1]={ limit={ @@ -103679,7 +106337,7 @@ return { [1]="base_bleeding_effect_+%" } }, - [4687]={ + [4822]={ [1]={ [1]={ limit={ @@ -103708,7 +106366,7 @@ return { [1]="bleeding_effect_+%_per_endurance_charge" } }, - [4688]={ + [4823]={ [1]={ [1]={ limit={ @@ -103737,7 +106395,7 @@ return { [1]="bleeding_effect_+%_per_frenzy_charge" } }, - [4689]={ + [4824]={ [1]={ [1]={ limit={ @@ -103766,7 +106424,7 @@ return { [1]="bleeding_effect_+%_per_impale_on_enemy" } }, - [4690]={ + [4825]={ [1]={ [1]={ limit={ @@ -103795,7 +106453,7 @@ return { [1]="bleeding_effect_+%_per_rage_if_equipped_axe" } }, - [4691]={ + [4826]={ [1]={ [1]={ limit={ @@ -103824,7 +106482,7 @@ return { [1]="bleeding_effect_+%_vs_poisoned_enemies" } }, - [4692]={ + [4827]={ [1]={ [1]={ limit={ @@ -103853,7 +106511,7 @@ return { [1]="bleeding_effect_+%_when_consuming_incision" } }, - [4693]={ + [4828]={ [1]={ [1]={ limit={ @@ -103869,7 +106527,7 @@ return { [1]="bleeding_enemies_cannot_regenerate_life" } }, - [4694]={ + [4829]={ [1]={ [1]={ limit={ @@ -103885,7 +106543,7 @@ return { [1]="bleeding_magnitude_+%_against_pinned_enemies" } }, - [4695]={ + [4830]={ [1]={ [1]={ limit={ @@ -103901,7 +106559,7 @@ return { [1]="bleeding_no_extra_damage_while_target_is_moving" } }, - [4696]={ + [4831]={ [1]={ [1]={ limit={ @@ -103930,7 +106588,7 @@ return { [1]="bleeding_on_self_expire_speed_+%_while_moving" } }, - [4697]={ + [4832]={ [1]={ [1]={ limit={ @@ -103946,7 +106604,7 @@ return { [1]="bleeding_reflected_to_self" } }, - [4698]={ + [4833]={ [1]={ [1]={ limit={ @@ -103962,7 +106620,7 @@ return { [1]="bleeding_stacks_up_to_x_times" } }, - [4699]={ + [4834]={ [1]={ [1]={ limit={ @@ -103978,7 +106636,7 @@ return { [1]="blight_arc_tower_additional_chains" } }, - [4700]={ + [4835]={ [1]={ [1]={ limit={ @@ -103994,7 +106652,7 @@ return { [1]="blight_arc_tower_additional_repeats" } }, - [4701]={ + [4836]={ [1]={ [1]={ limit={ @@ -104010,7 +106668,7 @@ return { [1]="blight_arc_tower_chance_to_sap_%" } }, - [4702]={ + [4837]={ [1]={ [1]={ limit={ @@ -104039,7 +106697,7 @@ return { [1]="blight_arc_tower_damage_+%" } }, - [4703]={ + [4838]={ [1]={ [1]={ limit={ @@ -104068,7 +106726,7 @@ return { [1]="blight_arc_tower_range_+%" } }, - [4704]={ + [4839]={ [1]={ [1]={ limit={ @@ -104084,7 +106742,7 @@ return { [1]="blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [4705]={ + [4840]={ [1]={ [1]={ limit={ @@ -104113,7 +106771,7 @@ return { [1]="blight_cast_speed_+%" } }, - [4706]={ + [4841]={ [1]={ [1]={ limit={ @@ -104142,7 +106800,7 @@ return { [1]="blight_chilling_tower_chill_effect_+%" } }, - [4707]={ + [4842]={ [1]={ [1]={ limit={ @@ -104171,7 +106829,7 @@ return { [1]="blight_chilling_tower_damage_+%" } }, - [4708]={ + [4843]={ [1]={ [1]={ limit={ @@ -104200,7 +106858,7 @@ return { [1]="blight_chilling_tower_duration_+%" } }, - [4709]={ + [4844]={ [1]={ [1]={ limit={ @@ -104229,7 +106887,7 @@ return { [1]="blight_chilling_tower_range_+%" } }, - [4710]={ + [4845]={ [1]={ [1]={ limit={ @@ -104258,7 +106916,7 @@ return { [1]="blight_empowering_tower_buff_effect_+%" } }, - [4711]={ + [4846]={ [1]={ [1]={ limit={ @@ -104287,7 +106945,7 @@ return { [1]="blight_empowering_tower_grant_cast_speed_+%" } }, - [4712]={ + [4847]={ [1]={ [1]={ limit={ @@ -104316,7 +106974,7 @@ return { [1]="blight_empowering_tower_grant_damage_+%" } }, - [4713]={ + [4848]={ [1]={ [1]={ limit={ @@ -104341,7 +106999,7 @@ return { [1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage" } }, - [4714]={ + [4849]={ [1]={ [1]={ limit={ @@ -104370,7 +107028,7 @@ return { [1]="blight_empowering_tower_range_+%" } }, - [4715]={ + [4850]={ [1]={ [1]={ limit={ @@ -104395,7 +107053,7 @@ return { [1]="blight_fireball_tower_additional_projectiles_+" } }, - [4716]={ + [4851]={ [1]={ [1]={ limit={ @@ -104424,7 +107082,7 @@ return { [1]="blight_fireball_tower_cast_speed_+%" } }, - [4717]={ + [4852]={ [1]={ [1]={ limit={ @@ -104453,7 +107111,7 @@ return { [1]="blight_fireball_tower_damage_+%" } }, - [4718]={ + [4853]={ [1]={ [1]={ limit={ @@ -104469,7 +107127,7 @@ return { [1]="blight_fireball_tower_projectiles_nova" } }, - [4719]={ + [4854]={ [1]={ [1]={ limit={ @@ -104498,7 +107156,7 @@ return { [1]="blight_fireball_tower_range_+%" } }, - [4720]={ + [4855]={ [1]={ [1]={ limit={ @@ -104527,7 +107185,7 @@ return { [1]="blight_flamethrower_tower_cast_speed_+%" } }, - [4721]={ + [4856]={ [1]={ [1]={ limit={ @@ -104543,7 +107201,7 @@ return { [1]="blight_flamethrower_tower_chance_to_scorch_%" } }, - [4722]={ + [4857]={ [1]={ [1]={ limit={ @@ -104572,7 +107230,7 @@ return { [1]="blight_flamethrower_tower_damage_+%" } }, - [4723]={ + [4858]={ [1]={ [1]={ limit={ @@ -104588,7 +107246,7 @@ return { [1]="blight_flamethrower_tower_full_damage_fire_enemies" } }, - [4724]={ + [4859]={ [1]={ [1]={ limit={ @@ -104617,7 +107275,7 @@ return { [1]="blight_flamethrower_tower_range_+%" } }, - [4725]={ + [4860]={ [1]={ [1]={ limit={ @@ -104633,7 +107291,7 @@ return { [1]="blight_freezebolt_tower_chance_to_brittle_%" } }, - [4726]={ + [4861]={ [1]={ [1]={ limit={ @@ -104662,7 +107320,7 @@ return { [1]="blight_freezebolt_tower_damage_+%" } }, - [4727]={ + [4862]={ [1]={ [1]={ limit={ @@ -104678,7 +107336,7 @@ return { [1]="blight_freezebolt_tower_full_damage_cold_enemies" } }, - [4728]={ + [4863]={ [1]={ [1]={ limit={ @@ -104703,7 +107361,7 @@ return { [1]="blight_freezebolt_tower_projectiles_+" } }, - [4729]={ + [4864]={ [1]={ [1]={ limit={ @@ -104732,7 +107390,7 @@ return { [1]="blight_freezebolt_tower_range_+%" } }, - [4730]={ + [4865]={ [1]={ [1]={ limit={ @@ -104748,7 +107406,7 @@ return { [1]="blight_glacialcage_tower_area_of_effect_+%" } }, - [4731]={ + [4866]={ [1]={ [1]={ limit={ @@ -104777,7 +107435,7 @@ return { [1]="blight_glacialcage_tower_cooldown_recovery_+%" } }, - [4732]={ + [4867]={ [1]={ [1]={ limit={ @@ -104806,7 +107464,7 @@ return { [1]="blight_glacialcage_tower_duration_+%" } }, - [4733]={ + [4868]={ [1]={ [1]={ limit={ @@ -104835,7 +107493,7 @@ return { [1]="blight_glacialcage_tower_enemy_damage_taken_+%" } }, - [4734]={ + [4869]={ [1]={ [1]={ limit={ @@ -104864,7 +107522,7 @@ return { [1]="blight_glacialcage_tower_range_+%" } }, - [4735]={ + [4870]={ [1]={ [1]={ limit={ @@ -104880,7 +107538,7 @@ return { [1]="blight_hinder_enemy_chaos_damage_taken_+%" } }, - [4736]={ + [4871]={ [1]={ [1]={ limit={ @@ -104909,7 +107567,7 @@ return { [1]="blight_imbuing_tower_buff_effect_+%" } }, - [4737]={ + [4872]={ [1]={ [1]={ limit={ @@ -104938,7 +107596,7 @@ return { [1]="blight_imbuing_tower_grant_critical_strike_+%" } }, - [4738]={ + [4873]={ [1]={ [1]={ limit={ @@ -104967,7 +107625,7 @@ return { [1]="blight_imbuing_tower_grant_damage_+%" } }, - [4739]={ + [4874]={ [1]={ [1]={ limit={ @@ -104983,7 +107641,7 @@ return { [1]="blight_imbuing_tower_grants_onslaught" } }, - [4740]={ + [4875]={ [1]={ [1]={ limit={ @@ -105012,7 +107670,7 @@ return { [1]="blight_imbuing_tower_range_+%" } }, - [4741]={ + [4876]={ [1]={ [1]={ limit={ @@ -105041,7 +107699,7 @@ return { [1]="blight_lightningstorm_tower_area_of_effect_+%" } }, - [4742]={ + [4877]={ [1]={ [1]={ limit={ @@ -105070,7 +107728,7 @@ return { [1]="blight_lightningstorm_tower_damage_+%" } }, - [4743]={ + [4878]={ [1]={ [1]={ limit={ @@ -105099,7 +107757,7 @@ return { [1]="blight_lightningstorm_tower_delay_+%" } }, - [4744]={ + [4879]={ [1]={ [1]={ limit={ @@ -105128,7 +107786,7 @@ return { [1]="blight_lightningstorm_tower_range_+%" } }, - [4745]={ + [4880]={ [1]={ [1]={ limit={ @@ -105144,7 +107802,7 @@ return { [1]="blight_lightningstorm_tower_storms_on_enemies" } }, - [4746]={ + [4881]={ [1]={ [1]={ limit={ @@ -105169,7 +107827,7 @@ return { [1]="blight_meteor_tower_additional_meteor_+" } }, - [4747]={ + [4882]={ [1]={ [1]={ limit={ @@ -105185,7 +107843,7 @@ return { [1]="blight_meteor_tower_always_stun" } }, - [4748]={ + [4883]={ [1]={ [1]={ [1]={ @@ -105205,7 +107863,7 @@ return { [1]="blight_meteor_tower_creates_burning_ground_ms" } }, - [4749]={ + [4884]={ [1]={ [1]={ limit={ @@ -105234,7 +107892,7 @@ return { [1]="blight_meteor_tower_damage_+%" } }, - [4750]={ + [4885]={ [1]={ [1]={ limit={ @@ -105263,7 +107921,7 @@ return { [1]="blight_meteor_tower_range_+%" } }, - [4751]={ + [4886]={ [1]={ [1]={ limit={ @@ -105301,7 +107959,7 @@ return { [1]="blight_scout_tower_additional_minions_+" } }, - [4752]={ + [4887]={ [1]={ [1]={ limit={ @@ -105330,7 +107988,7 @@ return { [1]="blight_scout_tower_minion_damage_+%" } }, - [4753]={ + [4888]={ [1]={ [1]={ limit={ @@ -105359,7 +108017,7 @@ return { [1]="blight_scout_tower_minion_life_+%" } }, - [4754]={ + [4889]={ [1]={ [1]={ limit={ @@ -105388,7 +108046,7 @@ return { [1]="blight_scout_tower_minion_movement_speed_+%" } }, - [4755]={ + [4890]={ [1]={ [1]={ limit={ @@ -105404,7 +108062,7 @@ return { [1]="blight_scout_tower_minions_inflict_malediction" } }, - [4756]={ + [4891]={ [1]={ [1]={ limit={ @@ -105433,7 +108091,7 @@ return { [1]="blight_scout_tower_range_+%" } }, - [4757]={ + [4892]={ [1]={ [1]={ limit={ @@ -105462,7 +108120,7 @@ return { [1]="blight_secondary_skill_effect_duration_+%" } }, - [4758]={ + [4893]={ [1]={ [1]={ limit={ @@ -105487,7 +108145,7 @@ return { [1]="blight_seismic_tower_additional_cascades_+" } }, - [4759]={ + [4894]={ [1]={ [1]={ limit={ @@ -105516,7 +108174,7 @@ return { [1]="blight_seismic_tower_cascade_range_+%" } }, - [4760]={ + [4895]={ [1]={ [1]={ limit={ @@ -105545,7 +108203,7 @@ return { [1]="blight_seismic_tower_damage_+%" } }, - [4761]={ + [4896]={ [1]={ [1]={ limit={ @@ -105574,7 +108232,7 @@ return { [1]="blight_seismic_tower_range_+%" } }, - [4762]={ + [4897]={ [1]={ [1]={ limit={ @@ -105603,7 +108261,7 @@ return { [1]="blight_seismic_tower_stun_duration_+%" } }, - [4763]={ + [4898]={ [1]={ [1]={ limit={ @@ -105632,7 +108290,7 @@ return { [1]="blight_sentinel_tower_minion_damage_+%" } }, - [4764]={ + [4899]={ [1]={ [1]={ limit={ @@ -105661,7 +108319,7 @@ return { [1]="blight_sentinel_tower_minion_life_+%" } }, - [4765]={ + [4900]={ [1]={ [1]={ limit={ @@ -105690,7 +108348,7 @@ return { [1]="blight_sentinel_tower_minion_movement_speed_+%" } }, - [4766]={ + [4901]={ [1]={ [1]={ limit={ @@ -105719,7 +108377,7 @@ return { [1]="blight_sentinel_tower_range_+%" } }, - [4767]={ + [4902]={ [1]={ [1]={ limit={ @@ -105748,7 +108406,7 @@ return { [1]="blight_shocking_tower_damage_+%" } }, - [4768]={ + [4903]={ [1]={ [1]={ limit={ @@ -105777,7 +108435,7 @@ return { [1]="blight_shocking_tower_range_+%" } }, - [4769]={ + [4904]={ [1]={ [1]={ limit={ @@ -105793,7 +108451,7 @@ return { [1]="blight_shocknova_tower_full_damage_lightning_enemies" } }, - [4770]={ + [4905]={ [1]={ [1]={ limit={ @@ -105809,7 +108467,7 @@ return { [1]="blight_shocknova_tower_shock_additional_repeats" } }, - [4771]={ + [4906]={ [1]={ [1]={ limit={ @@ -105838,7 +108496,7 @@ return { [1]="blight_shocknova_tower_shock_effect_+%" } }, - [4772]={ + [4907]={ [1]={ [1]={ limit={ @@ -105867,7 +108525,7 @@ return { [1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%" } }, - [4773]={ + [4908]={ [1]={ [1]={ limit={ @@ -105896,7 +108554,7 @@ return { [1]="blight_skill_area_of_effect_+%_after_1_second_channelling" } }, - [4774]={ + [4909]={ [1]={ [1]={ limit={ @@ -105925,7 +108583,7 @@ return { [1]="blight_smothering_tower_buff_effect_+%" } }, - [4775]={ + [4910]={ [1]={ [1]={ limit={ @@ -105941,7 +108599,7 @@ return { [1]="blight_smothering_tower_freeze_shock_ignite_%" } }, - [4776]={ + [4911]={ [1]={ [1]={ limit={ @@ -105970,7 +108628,7 @@ return { [1]="blight_smothering_tower_grant_damage_+%" } }, - [4777]={ + [4912]={ [1]={ [1]={ limit={ @@ -105999,7 +108657,7 @@ return { [1]="blight_smothering_tower_grant_movement_speed_+%" } }, - [4778]={ + [4913]={ [1]={ [1]={ limit={ @@ -106028,7 +108686,7 @@ return { [1]="blight_smothering_tower_range_+%" } }, - [4779]={ + [4914]={ [1]={ [1]={ limit={ @@ -106057,7 +108715,7 @@ return { [1]="blight_stonegaze_tower_cooldown_recovery_+%" } }, - [4780]={ + [4915]={ [1]={ [1]={ limit={ @@ -106086,7 +108744,7 @@ return { [1]="blight_stonegaze_tower_duration_+%" } }, - [4781]={ + [4916]={ [1]={ [1]={ limit={ @@ -106102,7 +108760,7 @@ return { [1]="blight_stonegaze_tower_petrified_enemies_take_damage_+%" } }, - [4782]={ + [4917]={ [1]={ [1]={ limit={ @@ -106131,7 +108789,7 @@ return { [1]="blight_stonegaze_tower_petrify_tick_speed_+%" } }, - [4783]={ + [4918]={ [1]={ [1]={ limit={ @@ -106160,7 +108818,7 @@ return { [1]="blight_stonegaze_tower_range_+%" } }, - [4784]={ + [4919]={ [1]={ [1]={ limit={ @@ -106189,7 +108847,7 @@ return { [1]="blight_summoning_tower_minion_damage_+%" } }, - [4785]={ + [4920]={ [1]={ [1]={ limit={ @@ -106218,7 +108876,7 @@ return { [1]="blight_summoning_tower_minion_life_+%" } }, - [4786]={ + [4921]={ [1]={ [1]={ limit={ @@ -106247,7 +108905,7 @@ return { [1]="blight_summoning_tower_minion_movement_speed_+%" } }, - [4787]={ + [4922]={ [1]={ [1]={ limit={ @@ -106263,7 +108921,7 @@ return { [1]="blight_summoning_tower_minions_summoned_+" } }, - [4788]={ + [4923]={ [1]={ [1]={ limit={ @@ -106292,7 +108950,7 @@ return { [1]="blight_summoning_tower_range_+%" } }, - [4789]={ + [4924]={ [1]={ [1]={ limit={ @@ -106321,7 +108979,7 @@ return { [1]="blight_temporal_tower_buff_effect_+%" } }, - [4790]={ + [4925]={ [1]={ [1]={ limit={ @@ -106350,7 +109008,7 @@ return { [1]="blight_temporal_tower_grant_you_action_speed_-%" } }, - [4791]={ + [4926]={ [1]={ [1]={ limit={ @@ -106366,7 +109024,7 @@ return { [1]="blight_temporal_tower_grants_stun_immunity" } }, - [4792]={ + [4927]={ [1]={ [1]={ limit={ @@ -106395,7 +109053,7 @@ return { [1]="blight_temporal_tower_range_+%" } }, - [4793]={ + [4928]={ [1]={ [1]={ limit={ @@ -106424,7 +109082,7 @@ return { [1]="blight_temporal_tower_tick_speed_+%" } }, - [4794]={ + [4929]={ [1]={ [1]={ [1]={ @@ -106444,7 +109102,7 @@ return { [1]="blight_tertiary_skill_effect_duration" } }, - [4795]={ + [4930]={ [1]={ [1]={ limit={ @@ -106473,7 +109131,7 @@ return { [1]="blight_tower_arc_damage_+%" } }, - [4796]={ + [4931]={ [1]={ [1]={ limit={ @@ -106502,7 +109160,7 @@ return { [1]="blight_tower_chilling_cost_+%" } }, - [4797]={ + [4932]={ [1]={ [1]={ limit={ @@ -106518,7 +109176,7 @@ return { [1]="blight_tower_damage_per_tower_type_+%" } }, - [4798]={ + [4933]={ [1]={ [1]={ limit={ @@ -106543,7 +109201,7 @@ return { [1]="blight_tower_fireball_additional_projectile" } }, - [4799]={ + [4934]={ [1]={ [1]={ limit={ @@ -106559,7 +109217,7 @@ return { [1]="blighted_map_chest_reward_lucky_count" } }, - [4800]={ + [4935]={ [1]={ [1]={ limit={ @@ -106588,7 +109246,7 @@ return { [1]="blighted_map_tower_damage_+%_final" } }, - [4801]={ + [4936]={ [1]={ [1]={ limit={ @@ -106617,7 +109275,7 @@ return { [1]="blind_chance_+%" } }, - [4802]={ + [4937]={ [1]={ [1]={ limit={ @@ -106642,7 +109300,7 @@ return { [1]="blind_chilled_enemies_on_hit_%" } }, - [4803]={ + [4938]={ [1]={ [1]={ limit={ @@ -106658,7 +109316,7 @@ return { [1]="blind_does_not_affect_chance_to_hit" } }, - [4804]={ + [4939]={ [1]={ [1]={ limit={ @@ -106674,7 +109332,7 @@ return { [1]="blind_does_not_affect_light_radius" } }, - [4805]={ + [4940]={ [1]={ [1]={ limit={ @@ -106703,7 +109361,7 @@ return { [1]="blind_effect_+%" } }, - [4806]={ + [4941]={ [1]={ [1]={ limit={ @@ -106719,7 +109377,7 @@ return { [1]="blind_enemies_when_hit_%_chance" } }, - [4807]={ + [4942]={ [1]={ [1]={ limit={ @@ -106744,7 +109402,7 @@ return { [1]="blind_enemies_when_hit_while_affected_by_grace_%_chance" } }, - [4808]={ + [4943]={ [1]={ [1]={ limit={ @@ -106760,7 +109418,7 @@ return { [1]="blind_enemies_when_they_stun_you" } }, - [4809]={ + [4944]={ [1]={ [1]={ limit={ @@ -106776,7 +109434,7 @@ return { [1]="blind_on_poison_inflicted" } }, - [4810]={ + [4945]={ [1]={ [1]={ limit={ @@ -106792,7 +109450,7 @@ return { [1]="blind_reflected_to_self" } }, - [4811]={ + [4946]={ [1]={ [1]={ limit={ @@ -106821,7 +109479,7 @@ return { [1]="blink_and_mirror_arrow_cooldown_speed_+%" } }, - [4812]={ + [4947]={ [1]={ [1]={ limit={ @@ -106850,7 +109508,7 @@ return { [1]="block_and_stun_+%_recovery_per_fortification" } }, - [4813]={ + [4948]={ [1]={ [1]={ limit={ @@ -106866,7 +109524,7 @@ return { [1]="block_chance_+%_against_projectiles" } }, - [4814]={ + [4949]={ [1]={ [1]={ limit={ @@ -106895,7 +109553,7 @@ return { [1]="block_chance_+%_if_blocked_with_active_block_recently" } }, - [4815]={ + [4950]={ [1]={ [1]={ limit={ @@ -106920,7 +109578,40 @@ return { [1]="block_chance_+%_if_you_have_at_least_100_tribute" } }, - [4816]={ + [4951]={ + [1]={ + [1]={ + [1]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Block chance while your Companion is in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Block chance while your Companion is in your Presence" + } + }, + stats={ + [1]="block_chance_+%_while_companion_in_presence" + } + }, + [4952]={ [1]={ [1]={ limit={ @@ -106945,7 +109636,7 @@ return { [1]="block_chance_+%_while_surrounded" } }, - [4817]={ + [4953]={ [1]={ [1]={ limit={ @@ -106961,7 +109652,7 @@ return { [1]="block_chance_from_equipped_shield_is_%" } }, - [4818]={ + [4954]={ [1]={ [1]={ limit={ @@ -106977,7 +109668,7 @@ return { [1]="block_%_damage_taken_from_elemental" } }, - [4819]={ + [4955]={ [1]={ [1]={ limit={ @@ -106993,7 +109684,7 @@ return { [1]="block_%_damage_taken_while_active_blocking" } }, - [4820]={ + [4956]={ [1]={ [1]={ limit={ @@ -107009,7 +109700,7 @@ return { [1]="block_%_if_blocked_an_attack_recently" } }, - [4821]={ + [4957]={ [1]={ [1]={ limit={ @@ -107025,7 +109716,7 @@ return { [1]="block_%_while_affected_by_determination" } }, - [4822]={ + [4958]={ [1]={ [1]={ limit={ @@ -107054,7 +109745,7 @@ return { [1]="blood_mage_flask_life_to_recover_+%_final" } }, - [4823]={ + [4959]={ [1]={ [1]={ limit={ @@ -107087,7 +109778,7 @@ return { [1]="blood_sand_armour_mana_reservation_+%" } }, - [4824]={ + [4960]={ [1]={ [1]={ [1]={ @@ -107124,7 +109815,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_-2%_per_1" } }, - [4825]={ + [4961]={ [1]={ [1]={ limit={ @@ -107153,7 +109844,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_+%" } }, - [4826]={ + [4962]={ [1]={ [1]={ limit={ @@ -107182,7 +109873,7 @@ return { [1]="blood_sand_stance_buff_effect_+%" } }, - [4827]={ + [4963]={ [1]={ [1]={ limit={ @@ -107211,7 +109902,7 @@ return { [1]="blood_spears_area_of_effect_+%" } }, - [4828]={ + [4964]={ [1]={ [1]={ limit={ @@ -107236,7 +109927,7 @@ return { [1]="blood_spears_base_number_of_spears" } }, - [4829]={ + [4965]={ [1]={ [1]={ limit={ @@ -107265,7 +109956,7 @@ return { [1]="blood_spears_damage_+%" } }, - [4830]={ + [4966]={ [1]={ [1]={ limit={ @@ -107281,7 +109972,7 @@ return { [1]="bloodlust_zone_%_of_max_health" } }, - [4831]={ + [4967]={ [1]={ [1]={ limit={ @@ -107310,7 +110001,7 @@ return { [1]="bloodreap_damage_+%" } }, - [4832]={ + [4968]={ [1]={ [1]={ limit={ @@ -107339,7 +110030,7 @@ return { [1]="bloodreap_skill_area_of_effect_+%" } }, - [4833]={ + [4969]={ [1]={ [1]={ limit={ @@ -107368,7 +110059,7 @@ return { [1]="body_armour_+%" } }, - [4834]={ + [4970]={ [1]={ [1]={ limit={ @@ -107397,7 +110088,7 @@ return { [1]="body_armour_evasion_rating_+%" } }, - [4835]={ + [4971]={ [1]={ [1]={ limit={ @@ -107413,7 +110104,7 @@ return { [1]="body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage" } }, - [4836]={ + [4972]={ [1]={ [1]={ limit={ @@ -107429,7 +110120,7 @@ return { [1]="body_armour_grants_base_armour_applies_to_chaos_damage" } }, - [4837]={ + [4973]={ [1]={ [1]={ limit={ @@ -107458,7 +110149,7 @@ return { [1]="body_armour_grants_glory_generation_+%" } }, - [4838]={ + [4974]={ [1]={ [1]={ limit={ @@ -107487,7 +110178,7 @@ return { [1]="body_armour_grants_spirit_+%" } }, - [4839]={ + [4975]={ [1]={ [1]={ limit={ @@ -107516,7 +110207,7 @@ return { [1]="body_armour_grants_thorns_damage_+%" } }, - [4840]={ + [4976]={ [1]={ [1]={ limit={ @@ -107532,7 +110223,7 @@ return { [1]="body_armour_grants_unaffected_by_damaging_ailments" } }, - [4841]={ + [4977]={ [1]={ [1]={ limit={ @@ -107548,7 +110239,7 @@ return { [1]="body_armour_grants_unaffected_by_ignite" } }, - [4842]={ + [4978]={ [1]={ [1]={ limit={ @@ -107564,7 +110255,7 @@ return { [1]="body_armour_grants_x_base_cold_damage_resistance_%" } }, - [4843]={ + [4979]={ [1]={ [1]={ limit={ @@ -107580,7 +110271,7 @@ return { [1]="body_armour_grants_x_base_fire_damage_resistance_%" } }, - [4844]={ + [4980]={ [1]={ [1]={ limit={ @@ -107596,7 +110287,7 @@ return { [1]="body_armour_grants_x_base_lightning_damage_resistance_%" } }, - [4845]={ + [4981]={ [1]={ [1]={ limit={ @@ -107612,7 +110303,7 @@ return { [1]="body_armour_grants_x_base_maximum_fire_damage_resistance_%" } }, - [4846]={ + [4982]={ [1]={ [1]={ limit={ @@ -107641,7 +110332,7 @@ return { [1]="body_armour_grants_x_base_self_critical_strike_multiplier_-%" } }, - [4847]={ + [4983]={ [1]={ [1]={ [1]={ @@ -107661,7 +110352,7 @@ return { [1]="body_armour_grants_x_life_regeneration_rate_per_minute_%" } }, - [4848]={ + [4984]={ [1]={ [1]={ limit={ @@ -107690,7 +110381,7 @@ return { [1]="body_armour_grants_x_maximum_life_+%" } }, - [4849]={ + [4985]={ [1]={ [1]={ limit={ @@ -107706,7 +110397,7 @@ return { [1]="body_armour_grants_x_physical_damage_taken_%_as_fire" } }, - [4850]={ + [4986]={ [1]={ [1]={ limit={ @@ -107735,7 +110426,7 @@ return { [1]="body_armour_grants_x_strength_+%" } }, - [4851]={ + [4987]={ [1]={ [1]={ limit={ @@ -107764,7 +110455,7 @@ return { [1]="body_armour_grants_x_stun_threshold_+%" } }, - [4852]={ + [4988]={ [1]={ [1]={ limit={ @@ -107780,7 +110471,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_dexterity" } }, - [4853]={ + [4989]={ [1]={ [1]={ limit={ @@ -107796,7 +110487,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_intelligence" } }, - [4854]={ + [4990]={ [1]={ [1]={ limit={ @@ -107812,7 +110503,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_strength" } }, - [4855]={ + [4991]={ [1]={ [1]={ [1]={ @@ -107832,7 +110523,7 @@ return { [1]="body_armour_implicit_gain_endurance_charge_every_x_ms" } }, - [4856]={ + [4992]={ [1]={ [1]={ [1]={ @@ -107852,7 +110543,7 @@ return { [1]="body_armour_implicit_gain_frenzy_charge_every_x_ms" } }, - [4857]={ + [4993]={ [1]={ [1]={ [1]={ @@ -107872,7 +110563,7 @@ return { [1]="body_armour_implicit_gain_power_charge_every_x_ms" } }, - [4858]={ + [4994]={ [1]={ [1]={ limit={ @@ -107901,7 +110592,7 @@ return { [1]="bone_golem_damage_+%" } }, - [4859]={ + [4995]={ [1]={ [1]={ limit={ @@ -107917,7 +110608,7 @@ return { [1]="bone_golem_elemental_resistances_%" } }, - [4860]={ + [4996]={ [1]={ [1]={ limit={ @@ -107946,7 +110637,7 @@ return { [1]="bone_lance_cast_speed_+%" } }, - [4861]={ + [4997]={ [1]={ [1]={ limit={ @@ -107975,7 +110666,7 @@ return { [1]="bone_lance_damage_+%" } }, - [4862]={ + [4998]={ [1]={ [1]={ limit={ @@ -107991,7 +110682,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [4863]={ + [4999]={ [1]={ [1]={ limit={ @@ -108020,7 +110711,7 @@ return { [1]="boneshatter_damage_+%_final_if_created_from_unique" } }, - [4864]={ + [5000]={ [1]={ [1]={ limit={ @@ -108049,7 +110740,7 @@ return { [1]="boneshatter_damage_+%" } }, - [4865]={ + [5001]={ [1]={ [1]={ limit={ @@ -108078,7 +110769,7 @@ return { [1]="boneshatter_stun_duration_+%" } }, - [4866]={ + [5002]={ [1]={ [1]={ limit={ @@ -108107,7 +110798,7 @@ return { [1]="boots_implicit_accuracy_rating_+%_final" } }, - [4867]={ + [5003]={ [1]={ [1]={ limit={ @@ -108136,7 +110827,7 @@ return { [1]="boss_maximum_life_+%_final" } }, - [4868]={ + [5004]={ [1]={ [1]={ limit={ @@ -108152,23 +110843,7 @@ return { [1]="bow_attacks_have_culling_strike" } }, - [4869]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Bow Skill Gems" - } - }, - stats={ - [1]="bow_skill_gem_level_+" - } - }, - [4870]={ + [5005]={ [1]={ [1]={ limit={ @@ -108184,7 +110859,7 @@ return { [1]="brand_activation_rate_+%_final_during_first_20%_of_active_duration" } }, - [4871]={ + [5006]={ [1]={ [1]={ limit={ @@ -108200,7 +110875,7 @@ return { [1]="brand_activation_rate_+%_final_during_last_20%_of_active_duration" } }, - [4872]={ + [5007]={ [1]={ [1]={ limit={ @@ -108216,7 +110891,7 @@ return { [1]="brand_area_of_effect_+%_if_50%_attached_duration_expired" } }, - [4873]={ + [5008]={ [1]={ [1]={ limit={ @@ -108232,7 +110907,7 @@ return { [1]="brands_reattach_on_activation" } }, - [4874]={ + [5009]={ [1]={ [1]={ limit={ @@ -108248,7 +110923,7 @@ return { [1]="breach_flame_effects_doubled" } }, - [4875]={ + [5010]={ [1]={ [1]={ limit={ @@ -108264,7 +110939,7 @@ return { [1]="breachstone_commanders_%_drop_additional_fragments" } }, - [4876]={ + [5011]={ [1]={ [1]={ limit={ @@ -108280,7 +110955,7 @@ return { [1]="breachstone_commanders_%_drop_additional_maps" } }, - [4877]={ + [5012]={ [1]={ [1]={ limit={ @@ -108296,7 +110971,7 @@ return { [1]="breachstone_commanders_%_drop_additional_scarabs" } }, - [4878]={ + [5013]={ [1]={ [1]={ limit={ @@ -108312,7 +110987,7 @@ return { [1]="breachstone_commanders_%_drop_additional_unique_items" } }, - [4879]={ + [5014]={ [1]={ [1]={ limit={ @@ -108337,7 +111012,7 @@ return { [1]="breachstone_commanders_drop_additional_catalysts" } }, - [4880]={ + [5015]={ [1]={ [1]={ limit={ @@ -108353,7 +111028,7 @@ return { [1]="breachstone_commanders_drop_additional_currency_items" } }, - [4881]={ + [5016]={ [1]={ [1]={ limit={ @@ -108369,7 +111044,7 @@ return { [1]="breachstone_commanders_drop_additional_delirium_items" } }, - [4882]={ + [5017]={ [1]={ [1]={ limit={ @@ -108394,7 +111069,7 @@ return { [1]="breachstone_commanders_drop_additional_divination_cards" } }, - [4883]={ + [5018]={ [1]={ [1]={ limit={ @@ -108419,7 +111094,7 @@ return { [1]="breachstone_commanders_drop_additional_enchanted_items" } }, - [4884]={ + [5019]={ [1]={ [1]={ limit={ @@ -108444,7 +111119,7 @@ return { [1]="breachstone_commanders_drop_additional_essences" } }, - [4885]={ + [5020]={ [1]={ [1]={ limit={ @@ -108469,7 +111144,7 @@ return { [1]="breachstone_commanders_drop_additional_fossils" } }, - [4886]={ + [5021]={ [1]={ [1]={ limit={ @@ -108494,7 +111169,7 @@ return { [1]="breachstone_commanders_drop_additional_gem_items" } }, - [4887]={ + [5022]={ [1]={ [1]={ limit={ @@ -108519,7 +111194,7 @@ return { [1]="breachstone_commanders_drop_additional_harbinger_shards" } }, - [4888]={ + [5023]={ [1]={ [1]={ limit={ @@ -108544,7 +111219,7 @@ return { [1]="breachstone_commanders_drop_additional_incubators" } }, - [4889]={ + [5024]={ [1]={ [1]={ limit={ @@ -108569,7 +111244,7 @@ return { [1]="breachstone_commanders_drop_additional_legion_splinters" } }, - [4890]={ + [5025]={ [1]={ [1]={ limit={ @@ -108594,7 +111269,7 @@ return { [1]="breachstone_commanders_drop_additional_oils" } }, - [4891]={ + [5026]={ [1]={ [1]={ limit={ @@ -108610,7 +111285,7 @@ return { [1]="break_%_armour_on_pin" } }, - [4892]={ + [5027]={ [1]={ [1]={ limit={ @@ -108619,14 +111294,14 @@ return { [2]="#" } }, - text="{0}% increased effect of Fully Broken Armour" + text="Attacks Break Armour equal to {0}% of maximum Runic Ward" } }, stats={ - [1]="broken_armour_and_sundered_armour_debuff_effect_+%" + [1]="break_armour_on_attack_hit_%_of_max_ward" } }, - [4893]={ + [5028]={ [1]={ [1]={ limit={ @@ -108635,43 +111310,226 @@ return { [2]="#" } }, - text="Enemies you Fully Armour Break cannot Regenerate Life" + text="{0}% chance for Birthed Items to be" } }, stats={ - [1]="broken_armour_enemies_cannot_regenerate_life" + [1]="brequel_display_base_type_chance_%" } }, - [4894]={ + [5029]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased Buff Effect on Low Energy Shield" + text="Birthed Items are always Greater or Perfect" + } + }, + stats={ + [1]="brequel_display_birthed_items_always_greater_or_perfect" + } + }, + [5030]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Modifiers of type" + } + }, + stats={ + [1]="brequel_display_cannot_have_modifiers_of_type" + } + }, + [5031]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Items to have a Crafted Modifier" + } + }, + stats={ + [1]="brequel_display_crafted_modifier_chance_%" + } + }, + [5032]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an empty Modifier of type" + } + }, + stats={ + [1]="brequel_display_empty_modifier" + } + }, + [5033]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have a Modifier of type" + } + }, + stats={ + [1]="brequel_display_has_modifier_of_type" + } + }, + [5034]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be" + } + }, + stats={ + [1]="brequel_display_item_cannot_be_base_type" + } + }, + [5035]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Birth 10 additional items of the same type when Birthing Exalted Orbs" }, [2]={ - [1]={ - k="negate", - v=1 + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth 10 additional items of the same type when Birthing Exalted Orbs" + } + }, + stats={ + [1]="brequel_reward_10_additional_exalted_orb_chance_%" + } + }, + [5036]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } }, + text="Birth an 16 to 24 additional Breach Splinters when Birthing Breach Splinters" + }, + [2]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced Buff Effect on Low Energy Shield" + text="{0}% chance to Birth an 16 to 24 additional Breach Splinters when Birthing Breach Splinters" } }, stats={ - [1]="buff_effect_+%_on_low_energy_shield" + [1]="brequel_reward_16_to_24_additional_splinters_chance_%" } }, - [4895]={ + [5037]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Birth an additional item of the same type when Birthing Quality Currency" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth an item of the same type when Birthing Quality Currency" + } + }, + stats={ + [1]="brequel_reward_2_additional_quality_currency_same_type_chance_%" + } + }, + [5038]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Birth an additional 3 to 7 items of the same type when Birthing Vaal Orbs or Chaos Orbs" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth an additional 3 to 7 items of the same type when\nBirthing Vaal Orbs or Chaos Orbs" + } + }, + stats={ + [1]="brequel_reward_3_to_7_additional_chaos_or_vaal_chance_%" + } + }, + [5039]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth 5 additional Items of the same type" + } + }, + stats={ + [1]="brequel_reward_5_additional_items_same_type_chance_%" + } + }, + [5040]={ [1]={ [1]={ limit={ @@ -108680,7 +111538,7 @@ return { [2]="#" } }, - text="{0}% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" + text="Birthed Items have {0}% increased chance to be Absent Amulets" }, [2]={ [1]={ @@ -108693,52 +111551,383 @@ return { [2]=-1 } }, - text="{0}% reduced Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" + text="Birthed Items have {0}% reduced chance to be Absent Amulets" } }, stats={ - [1]="buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life" + [1]="brequel_reward_absent_amulet_chance_+%" } }, - [4896]={ + [5041]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]=100, + [2]=100 + } + }, + text="Birth an additional item of the same type when Birthing Orbs of Alchemy" + }, + [2]={ + limit={ + [1]={ + [1]="#", [2]="#" } }, - text="Buffs on you expire {0}% faster" + text="{0}% chance to Birth an additional item of the same type when Birthing Orbs of Alchemy" + } + }, + stats={ + [1]="brequel_reward_additional_alchemy_orb_chance_%" + } + }, + [5042]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Surpassing chance to Birth an additional Catalyst of a different type when Birthing Catalysts" + } + }, + stats={ + [1]="brequel_reward_additional_catalyst_different_type_chance_%" + } + }, + [5043]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Surpassing chance to Birth an additional Catalyst of the same type\nwhen Birthing Catalysts" + } + }, + stats={ + [1]="brequel_reward_additional_catalyst_same_type_chance_%" + } + }, + [5044]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Birth an additional item of the same type when Birthing Exalted Orbs" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth an additional item of the same type when Birthing Exalted Orbs" + } + }, + stats={ + [1]="brequel_reward_additional_exalted_orb_chance_%" + } + }, + [5045]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Surpassing chance to Birth an additional Item" + } + }, + stats={ + [1]="brequel_reward_additional_item_chance_%" + } + }, + [5046]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Surpassing chance to Birth an additional Item of the same type" + } + }, + stats={ + [1]="brequel_reward_additional_item_same_type_chance_%" + } + }, + [5047]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Birth an additional item of the same type when Birthing Regal Orbs" }, [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Birth an additional item of the same type when Birthing Regal Orbs" + } + }, + stats={ + [1]="brequel_reward_additional_regal_orb_chance_%" + } + }, + [5048]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Esh''" + } + }, + stats={ + [1]="brequel_reward_additional_seal_crafted_modifier_chance_%" + } + }, + [5049]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Uul-Netol's''" + } + }, + stats={ + [1]="brequel_reward_anaemia_crafted_modifier_chance_%" + } + }, + [5050]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Exertion''" + } + }, + stats={ + [1]="brequel_reward_archon_duration_crafted_%" + } + }, + [5051]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Unshackling''" + } + }, + stats={ + [1]="brequel_reward_archon_effect_crafted_%" + } + }, + [5052]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to have a ''of Unending''" + } + }, + stats={ + [1]="brequel_reward_archon_undeath_on_offering_use_crafted_%" + } + }, + [5053]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Biostatic Rings" + } + }, + stats={ + [1]="brequel_reward_biostatic_ring_chance_%" + } + }, + [5054]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Breach Rings have {0}% chance to instead Birth as a Refined Breach Ring" + } + }, + stats={ + [1]="brequel_reward_breach_ring_additional_quality" + } + }, + [5055]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Breach Rings" + } + }, + stats={ + [1]="brequel_reward_breach_ring_chance_%" + } + }, + [5056]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Currency to be a stack of Breach Splinters" + } + }, + stats={ + [1]="brequel_reward_breach_splinters_chance_%" + } + }, + [5057]={ + [1]={ + [1]={ [1]={ - k="negate", + k="divide_by_one_hundred_1dp", v=1 }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Buffs on you expire {0}% slower" + text="{0}% chance for Birthed Currency to be a Breachlord Sac" } }, stats={ - [1]="buff_time_passed_+%_only_buff_category" + [1]="brequel_reward_breachlord_sac_chance_%" } }, - [4897]={ + [5058]={ [1]={ [1]={ limit={ [1]={ [1]=1, + [2]=1 + } + }, + text="Caster Modifiers on Birthed Items roll their values an additional time, keeping the highest value" + }, + [2]={ + limit={ + [1]={ + [1]=2, [2]="#" } }, - text="Buffs on you expire {0}% faster" + text="Caster Modifiers on Birthed Items roll their values an additional {0} times,\nkeeping the highest value" + } + }, + stats={ + [1]="brequel_reward_caster_modifier_value_lucky_rolls_+" + } + }, + [5059]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Currency to be a Catalyst" + } + }, + stats={ + [1]="brequel_reward_catalyst_chance_%" + } + }, + [5060]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Reverberation''" + } + }, + stats={ + [1]="brequel_reward_chance_to_not_consume_infusion_if_lost_archon_past_6_seconds_crafted_%" + } + }, + [5061]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Chaos Orbs" }, [2]={ [1]={ @@ -108751,47 +111940,235 @@ return { [2]=-1 } }, - text="Buffs on you expire {0}% slower" + text="{0}% reduced chance to Birth Chaos Orbs" } }, stats={ - [1]="buff_time_passed_+%" + [1]="brequel_reward_chaos_orb_chance_+%" } }, - [4898]={ + [5062]={ [1]={ [1]={ - [1]={ - k="milliseconds_to_seconds", - v=1 + limit={ + [1]={ + [1]="#", + [2]="#" + } }, + text="Birthed Items have {0}% chance to be crafted with ''Tul's''" + } + }, + stats={ + [1]="brequel_reward_cold_as_phys_crafted_modifier_chance_%" + } + }, + [5063]={ + [1]={ + [1]={ limit={ [1]={ - [1]=1000, - [2]=1000 + [1]="#", + [2]="#" } }, - text="Gain a stack of Jade every second" + text="Birthed Items have {0}% chance to be crafted with ''Glacial''" + } + }, + stats={ + [1]="brequel_reward_cold_damage_+%_cold_infusion_collected_last_8_seconds_crafted_%" + } + }, + [5064]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of Invigoration''" + } + }, + stats={ + [1]="brequel_reward_minion_cooldown_recovery_crafted_chance_%" + } + }, + [5065]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthing to not consume Hiveblood" + } + }, + stats={ + [1]="brequel_reward_consume_no_resource_chance_%" + } + }, + [5066]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="All Birthed items are converted to Gold" + } + }, + stats={ + [1]="brequel_reward_convert_items_to_gold" + } + }, + [5067]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Corona Amulets" + } + }, + stats={ + [1]="brequel_reward_corona_amulet_chance_%" + } + }, + [5068]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Underling's''" + } + }, + stats={ + [1]="brequel_reward_damage_removed_from_spectres_crafted_%" + } + }, + [5069]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Burdensome''" + } + }, + stats={ + [1]="brequel_reward_damage_taken_from_mana_before_life_crafted_%" + } + }, + [5070]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Currency to be an Altered Collarbone" + } + }, + stats={ + [1]="brequel_reward_desecration_chance_%" + } + }, + [5071]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Orbs of Augmentation are always Greater or Perfect" + } + }, + stats={ + [1]="brequel_reward_disable_base_augmentation_orb" + } + }, + [5072]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Orbs of Transmutation are always Greater or Perfect" + } + }, + stats={ + [1]="brequel_reward_disable_base_transmutation_orb" + } + }, + [5073]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Divine Orbs" }, [2]={ [1]={ - k="milliseconds_to_seconds", + k="negate", v=1 }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Divine Orbs" + } + }, + stats={ + [1]="brequel_reward_divine_orb_chance_+%" + } + }, + [5074]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Gain a stack of Jade every {0} seconds" + text="Birthed Items can roll additional Caster-related Modifiers" } }, stats={ - [1]="buildup_jade_every_x_ms" + [1]="brequel_reward_enable_caster_modifiers" } }, - [4899]={ + [5075]={ [1]={ [1]={ limit={ @@ -108800,14 +112177,30 @@ return { [2]="#" } }, - text="Killing Blows with Burning Arrow or Explosive Arrow Shatter enemies as though Frozen" + text="Birthed Items can roll additional Minion-related Modifiers" } }, stats={ - [1]="burning_and_explosive_arrow_shatter_on_killing_blow" + [1]="brequel_reward_enable_minion_modifiers" } }, - [4900]={ + [5076]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Currency to be an Essence of the Breach" + } + }, + stats={ + [1]="brequel_reward_essence_chance_%" + } + }, + [5077]={ [1]={ [1]={ limit={ @@ -108816,7 +112209,7 @@ return { [2]="#" } }, - text="Burning Arrow has {0}% increased Debuff Effect" + text="{0}% increased chance to Birth Exalted Orbs" }, [2]={ [1]={ @@ -108829,14 +112222,3179 @@ return { [2]=-1 } }, - text="Burning Arrow has {0}% reduced Debuff Effect" + text="{0}% reduced chance to Birth Exalted Orbs" } }, stats={ - [1]="burning_arrow_debuff_effect_+%" + [1]="brequel_reward_exalted_orb_chance_+%" } }, - [4901]={ + [5078]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Drenching''" + } + }, + stats={ + [1]="brequel_reward_exposure_effect_crafted_%" + } + }, + [5079]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Erupting''" + } + }, + stats={ + [1]="brequel_reward_fire_damage_+%_if_fire_infusion_collected_last_8_seconds_crafted_%" + } + }, + [5080]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Xoph''" + } + }, + stats={ + [1]="brequel_reward_fire_spell_crit_crafted_modifier_chance_%" + } + }, + [5081]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Forking Belts" + } + }, + stats={ + [1]="brequel_reward_forking_belt_chance_%" + } + }, + [5082]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Grasping Rings" + } + }, + stats={ + [1]="brequel_reward_grasping_ring_chance_%" + } + }, + [5083]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Armour Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_armour_modifier" + } + }, + [5084]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Attribute Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_attribute_modifier" + } + }, + [5085]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Cold Resistance Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_cold_resistance_modifier" + } + }, + [5086]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Armour, Evasion or Energy Shield Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_defence_modifier" + } + }, + [5087]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Dexterity Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_dexterity_modifier" + } + }, + [5088]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Energy Shield Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_energy_shield_modifier" + } + }, + [5089]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Evasion Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_evasion_modifier" + } + }, + [5090]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Fire Resistance Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_fire_resistance_modifier" + } + }, + [5091]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an Intelligence Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_intelligence_modifier" + } + }, + [5092]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Life Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_life_modifier" + } + }, + [5093]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Lightning Resistance Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_lightning_resistance_modifier" + } + }, + [5094]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Mana Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_mana_modifier" + } + }, + [5095]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an empty Prefix Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_open_prefix" + } + }, + [5096]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have an empty Suffix Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_open_suffix" + } + }, + [5097]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Resistance Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_resistance_modifier" + } + }, + [5098]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Life or Mana Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_resource_modifier" + } + }, + [5099]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have a Strength Modifier" + } + }, + stats={ + [1]="brequel_reward_guarantee_strength_modifier" + } + }, + [5100]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Birthed Items always have a Caster Modifier" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have two Caster Modifiers" + } + }, + stats={ + [1]="brequel_reward_guarantee_x_caster_modifier", + [2]="brequel_reward_guarantee_two_caster_modifiers" + } + }, + [5101]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Birthed Items always have a Minion Modifier" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items always have two Minion Modifiers" + } + }, + stats={ + [1]="brequel_reward_guarantee_x_minion_modifiers", + [2]="brequel_reward_guarantee_two_minion_modifiers" + } + }, + [5102]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Invoking Belts" + } + }, + stats={ + [1]="brequel_reward_invoking_belt_chance_%" + } + }, + [5103]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Jeweller's Orbs" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Jeweller's Orbs" + } + }, + stats={ + [1]="brequel_reward_jewellers_orb_chance_+%" + } + }, + [5104]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Kinetic Rings" + } + }, + stats={ + [1]="brequel_reward_kinetic_ring_chance_%" + } + }, + [5105]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Items have {0}% increased chance to be Lament Amulets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Items have {0}% reduced chance to be Lament Amulets" + } + }, + stats={ + [1]="brequel_reward_lament_amulet_chance_+%" + } + }, + [5106]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Energising''" + } + }, + stats={ + [1]="brequel_reward_lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds_crafted_%" + } + }, + [5107]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of Amplification''" + } + }, + stats={ + [1]="brequel_reward_max_infusions_crafted_modifier_chance_%" + } + }, + [5108]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Vastness''" + } + }, + stats={ + [1]="brequel_reward_maximum_invocation_energy_crafted_%" + } + }, + [5109]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Armour Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_armour_modifier_level" + } + }, + [5110]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attribute Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_attribute_modifier_level" + } + }, + [5111]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Critical Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_crit_modifier_levela" + } + }, + [5112]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Critical Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_crit_modifier_levelb" + } + }, + [5113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_modifier_levela" + } + }, + [5114]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_modifier_levelb" + } + }, + [5115]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_prefix_modifier_levela" + } + }, + [5116]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_prefix_modifier_levelb" + } + }, + [5117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_prefix_modifier_levelc" + } + }, + [5118]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster speed Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_speed_modifier_levela" + } + }, + [5119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster speed Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_speed_modifier_levelb" + } + }, + [5120]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_suffix_modifier_levela" + } + }, + [5121]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Caster Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_caster_suffix_modifier_levelb" + } + }, + [5122]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_chaos_resistance_modifier_levela" + } + }, + [5123]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_chaos_resistance_modifier_levelb" + } + }, + [5124]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Charm Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_charm_modifier_level" + } + }, + [5125]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cold Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_cold_resistance_modifier_level" + } + }, + [5126]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_damage_modifier_level" + } + }, + [5127]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Armour, Evasion and Energy Shield Modifiers on Birthed Items\nhave Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_defence_modifier_levela" + } + }, + [5128]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Armour, Evasion and Energy Shield Modifiers on Birthed Items\nhave Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_defence_modifier_levelb" + } + }, + [5129]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Dexterity Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_dexterity_modifier_level" + } + }, + [5130]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_elemental_resistance_modifier_level" + } + }, + [5131]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Energy Shield Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_energy_shield_modifier_level" + } + }, + [5132]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Evasion Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_evasion_modifier_level" + } + }, + [5133]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_fire_resistance_modifier_level" + } + }, + [5134]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Flask Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_flask_modifier_level" + } + }, + [5135]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Intelligence Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_intelligence_modifier_level" + } + }, + [5136]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_life_modifier_level" + } + }, + [5137]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lightning Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_lightning_resistance_modifier_level" + } + }, + [5138]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mana Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_mana_modifier_levela" + } + }, + [5139]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mana Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_mana_modifier_levelb" + } + }, + [5140]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion damage Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_damage_modifier_levela" + } + }, + [5141]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion damage Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_damage_modifier_levelb" + } + }, + [5142]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_modifier_level" + } + }, + [5143]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_modifier_levelb" + } + }, + [5144]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_prefix_modifier_levela" + } + }, + [5145]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_prefix_modifier_levelb" + } + }, + [5146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_prefix_modifier_levelc" + } + }, + [5147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_resistance_modifier_levela" + } + }, + [5148]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_resistance_modifier_levelb" + } + }, + [5149]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion speed Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_speed_modifier_levela" + } + }, + [5150]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion speed Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_speed_modifier_levelb" + } + }, + [5151]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_suffix_modifier_levela" + } + }, + [5152]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_suffix_modifier_levelb" + } + }, + [5153]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minion Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_minion_suffix_modifier_levelc" + } + }, + [5154]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_modifier_level" + } + }, + [5155]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_modifier_levelb" + } + }, + [5156]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Prefix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_prefix_modifier_level" + } + }, + [5157]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Resistance Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_resistance_modifier_level" + } + }, + [5158]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life and Mana Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_resource_modifier_levela" + } + }, + [5159]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life and Mana Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_resource_modifier_levelb" + } + }, + [5160]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Strength Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_strength_modifier_level" + } + }, + [5161]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Suffix Modifiers on Birthed Items have Minimum Modifier Level {0}" + } + }, + stats={ + [1]="brequel_reward_minimum_suffix_modifier_level" + } + }, + [5162]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Scattering''" + } + }, + stats={ + [1]="brequel_reward_minion_additional_projectile_chance_crafted_%" + } + }, + [5163]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''Contaminating''" + } + }, + stats={ + [1]="brequel_reward_minion_ailment_magnitude_crafted_chance_%" + } + }, + [5164]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''Scratching''" + } + }, + stats={ + [1]="brequel_reward_minion_armour_break_crafted_chance_%" + } + }, + [5165]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of Punctuality''" + } + }, + stats={ + [1]="brequel_reward_command_skill_speed_crafted_chance_%" + } + }, + [5166]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Instructor's''" + } + }, + stats={ + [1]="brequel_reward_minion_damage_per_different_command_skill_used_last_15_seconds_crafted_%" + } + }, + [5167]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Binding''" + } + }, + stats={ + [1]="brequel_reward_minion_duration_crafted_%" + } + }, + [5168]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Ravaging''" + } + }, + stats={ + [1]="brequel_reward_minion_melee_splash_crafted_%" + } + }, + [5169]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Minion Modifiers on Birthed Items roll their values an additional time, keeping the highest value" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Minion Modifiers on Birthed Items roll their values an additional {0} times,\nkeeping the highest value" + } + }, + stats={ + [1]="brequel_reward_minion_modifier_value_lucky_rolls_+" + } + }, + [5170]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of the Cabal''" + } + }, + stats={ + [1]="brequel_reward_minion_puppet_master_crafted_chance_%" + } + }, + [5171]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Coherence''" + } + }, + stats={ + [1]="brequel_reward_minion_reservation_efficiency_crafted_%" + } + }, + [5172]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Monstrous''" + } + }, + stats={ + [1]="brequel_reward_minions_gigantic_revived_recently_crafted_%" + } + }, + [5173]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Mnemonic Rings" + } + }, + stats={ + [1]="brequel_reward_mnemonic_ring_chance_%" + } + }, + [5174]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Modifiers on Birthed Items roll their values an additional time, keeping the highest value" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Modifiers on Birthed Items roll their values an additional {0} times, keeping the highest value" + } + }, + stats={ + [1]="brequel_reward_modifier_value_lucky_rolls_+" + } + }, + [5175]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Amber Amulets" + } + }, + stats={ + [1]="brequel_reward_no_amber_amulets" + } + }, + [5176]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Reaver Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_attack_catalysts" + } + }, + [5177]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Attack Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_attack_modifiers" + } + }, + [5178]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Adaptive Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_attribute_catalysts" + } + }, + [5179]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Azure Amulets" + } + }, + stats={ + [1]="brequel_reward_no_azure_amulets" + } + }, + [5180]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Bloodstone Amulets" + } + }, + stats={ + [1]="brequel_reward_no_bloodstone_amulets" + } + }, + [5181]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Sibilant Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_caster_catalysts" + } + }, + [5182]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Caster Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_caster_modifiers" + } + }, + [5183]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Orbs of Chance" + } + }, + stats={ + [1]="brequel_reward_no_chance_orbs" + } + }, + [5184]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Chayula's Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_chaos_catalysts" + } + }, + [5185]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Chaos Orbs" + } + }, + stats={ + [1]="brequel_reward_no_chaos_orbs" + } + }, + [5186]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Charm Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_charm_modifiers" + } + }, + [5187]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Tul's Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_cold_catalysts" + } + }, + [5188]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Cold Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_cold_modifiers" + } + }, + [5189]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Crimson Amulets" + } + }, + stats={ + [1]="brequel_reward_no_crimson_amulets" + } + }, + [5190]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Critical Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_critical_modifiers" + } + }, + [5191]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Carapace Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_defences_catalysts" + } + }, + [5192]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Dexterity Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_dexterity_modifiers" + } + }, + [5193]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Divine Orbs" + } + }, + stats={ + [1]="brequel_reward_no_divine_orbs" + } + }, + [5194]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Xoph's Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_fire_catalysts" + } + }, + [5195]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Fire Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_fire_modifiers" + } + }, + [5196]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Flask Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_flask_modifiers" + } + }, + [5197]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Gemcutter's Prisms" + } + }, + stats={ + [1]="brequel_reward_no_gem_cutters_prisms" + } + }, + [5198]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Gold Amulets" + } + }, + stats={ + [1]="brequel_reward_no_gold_amulets" + } + }, + [5199]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Intelligence Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_intelligence_modifiers" + } + }, + [5200]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Jade Amulets" + } + }, + stats={ + [1]="brequel_reward_no_jade_amulets" + } + }, + [5201]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Lapis Amulets" + } + }, + stats={ + [1]="brequel_reward_no_lapis_amulets" + } + }, + [5202]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Flesh Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_life_catalysts" + } + }, + [5203]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Life Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_life_modifiers" + } + }, + [5204]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Esh's Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_lightning_catalysts" + } + }, + [5205]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Lightning Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_lightning_modifiers" + } + }, + [5206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Lunar Amulets" + } + }, + stats={ + [1]="brequel_reward_no_lunar_amulets" + } + }, + [5207]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Neural Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_mana_catalysts" + } + }, + [5208]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Mana Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_mana_modifiers" + } + }, + [5209]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Orbs of Annulment" + } + }, + stats={ + [1]="brequel_reward_no_orbs_of_annulment" + } + }, + [5210]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Orbs of Augmentation" + } + }, + stats={ + [1]="brequel_reward_no_orbs_of_augmentation" + } + }, + [5211]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Orbs of Transmutation" + } + }, + stats={ + [1]="brequel_reward_no_orbs_of_transmutation" + } + }, + [5212]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Perfect Jeweller's Orbs" + } + }, + stats={ + [1]="brequel_reward_no_perfect_jewellers_orbs" + } + }, + [5213]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Uul-Netol's Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_physical_catalysts" + } + }, + [5214]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Solar Amulets" + } + }, + stats={ + [1]="brequel_reward_no_solar_amulets" + } + }, + [5215]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Skittering Catalysts" + } + }, + stats={ + [1]="brequel_reward_no_speed_catalysts" + } + }, + [5216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot be Stellar Amulets" + } + }, + stats={ + [1]="brequel_reward_no_stellar_amulets" + } + }, + [5217]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items cannot have Strength Modifiers" + } + }, + stats={ + [1]="brequel_reward_no_strength_modifiers" + } + }, + [5218]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Birth Vaal Orbs" + } + }, + stats={ + [1]="brequel_reward_no_vaal_orbs" + } + }, + [5219]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''Sacrificial''" + } + }, + stats={ + [1]="brequel_reward_offering_effect_crafted_chance_%" + } + }, + [5220]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Oneiric Rings" + } + }, + stats={ + [1]="brequel_reward_oneiric_ring_chance_%" + } + }, + [5221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can only Birth Catalysts" + } + }, + stats={ + [1]="brequel_reward_only_catalysts" + } + }, + [5222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Orbs of Alchemy" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Orbs of Alchemy" + } + }, + stats={ + [1]="brequel_reward_orb_of_alchemy_chance_+%" + } + }, + [5223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Orbs of Annulment" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Orbs of Annulment" + } + }, + stats={ + [1]="brequel_reward_orb_of_anunulment_chance_+%" + } + }, + [5224]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Orbs of Augmentation" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Orbs of Augmentation" + } + }, + stats={ + [1]="brequel_reward_orb_of_augmentation_chance_+%" + } + }, + [5225]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Orbs of Transmutation" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Orbs of Transmutation" + } + }, + stats={ + [1]="brequel_reward_orb_of_transmutation_chance_+%" + } + }, + [5226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Items have {0}% increased chance to be Portent Amulets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Items have {0}% reduced chance to be Portent Amulets" + } + }, + stats={ + [1]="brequel_reward_portent_amulet_chance_+%" + } + }, + [5227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Prefix Modifiers on Birthed Items roll their values an additional time, keeping the highest value" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Prefix Modifiers on Birthed Items roll their values an additional {0} times,\nkeeping the highest value" + } + }, + stats={ + [1]="brequel_reward_prefix_modifier_value_lucky_rolls_+" + } + }, + [5228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Prefix Modifiers on Birthed Items have maximum values" + } + }, + stats={ + [1]="brequel_reward_prefix_modifier_values_always_max" + } + }, + [5229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Quality Currency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Quality Currency" + } + }, + stats={ + [1]="brequel_reward_quality_currency_chance_+%" + } + }, + [5230]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Regal Orbs" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Regal Orbs" + } + }, + stats={ + [1]="brequel_reward_regal_orb_chance_+%" + } + }, + [5231]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Lament, Portent or Absent Amulets" + } + }, + stats={ + [1]="brequel_reward_reservation_amulet_chance_%" + } + }, + [5232]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthing consumes {0}% increased Hiveblood" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthing consumes {0}% reduced Hiveblood" + } + }, + stats={ + [1]="brequel_reward_resource_cost_+%" + } + }, + [5233]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of Expectation''" + } + }, + stats={ + [1]="brequel_reward_seal_gain_frequency_crafted_modifier_chance_%" + } + }, + [5234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Sinew Belts" + } + }, + stats={ + [1]="brequel_reward_sinew_belt_chance_%" + } + }, + [5235]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Birthed Catalysts to be Jewel Catalysts" + } + }, + stats={ + [1]="brequel_reward_special_catalyst_chance_%" + } + }, + [5236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Soul Stealer's''" + } + }, + stats={ + [1]="brequel_reward_spell_damage_as_extra_chaos_crafted_%" + } + }, + [5237]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Tempest Rider's''" + } + }, + stats={ + [1]="brequel_reward_spell_damage_as_extra_cold_crafted_%" + } + }, + [5238]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Fire Breather's''" + } + }, + stats={ + [1]="brequel_reward_spell_damage_as_extra_fire_crafted_%" + } + }, + [5239]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''Storm Chaser's''" + } + }, + stats={ + [1]="brequel_reward_spell_damage_as_extra_lightning_crafted_%" + } + }, + [5240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Imbuing''" + } + }, + stats={ + [1]="brequel_reward_spell_elemental_ailment_magnitude_crafted_%" + } + }, + [5241]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be crafted with ''of Lancing''" + } + }, + stats={ + [1]="brequel_reward_spell_impale_effect_crafted_%" + } + }, + [5242]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Stalking Belts" + } + }, + stats={ + [1]="brequel_reward_stalking_belt_chance_%" + } + }, + [5243]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Suffix Modifiers on Birthed Items roll their values an additional time, keeping the highest value" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Suffix Modifiers on Birthed Items roll their values an additional {0} times,\nkeeping the highest value" + } + }, + stats={ + [1]="brequel_reward_suffix_modifier_value_lucky_rolls_+" + } + }, + [5244]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Suffix Modifiers on Birthed Items have maximum values" + } + }, + stats={ + [1]="brequel_reward_suffix_modifier_values_always_max" + } + }, + [5245]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have an {0}% chance to be crafted with ''of Multitudes''" + } + }, + stats={ + [1]="brequel_reward_temporary_minion_limit_crafted_chance_%" + } + }, + [5246]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance to Birth Vaal Orbs" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance to Birth Vaal Orbs" + } + }, + stats={ + [1]="brequel_reward_vaal_orb_chance_+%" + } + }, + [5247]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Items have {0}% chance to be Vitalic Rings" + } + }, + stats={ + [1]="brequel_reward_vitalic_ring_chance_%" + } + }, + [5248]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased effect of Fully Broken Armour" + } + }, + stats={ + [1]="broken_armour_and_sundered_armour_debuff_effect_+%" + } + }, + [5249]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies you Fully Armour Break cannot Regenerate Life" + } + }, + stats={ + [1]="broken_armour_enemies_cannot_regenerate_life" + } + }, + [5250]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Buff Effect on Low Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Buff Effect on Low Energy Shield" + } + }, + stats={ + [1]="buff_effect_+%_on_low_energy_shield" + } + }, + [5251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" + } + }, + stats={ + [1]="buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life" + } + }, + [5252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buffs on you expire {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buffs on you expire {0}% slower" + } + }, + stats={ + [1]="buff_time_passed_+%_only_buff_category" + } + }, + [5253]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buffs on you expire {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buffs on you expire {0}% slower" + } + }, + stats={ + [1]="buff_time_passed_+%" + } + }, + [5254]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain a stack of Jade every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain a stack of Jade every {0} seconds" + } + }, + stats={ + [1]="buildup_jade_every_x_ms" + } + }, + [5255]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Killing Blows with Burning Arrow or Explosive Arrow Shatter enemies as though Frozen" + } + }, + stats={ + [1]="burning_and_explosive_arrow_shatter_on_killing_blow" + } + }, + [5256]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Burning Arrow has {0}% increased Debuff Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Burning Arrow has {0}% reduced Debuff Effect" + } + }, + stats={ + [1]="burning_arrow_debuff_effect_+%" + } + }, + [5257]={ [1]={ [1]={ limit={ @@ -108865,7 +115423,7 @@ return { [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" } }, - [4902]={ + [5258]={ [1]={ [1]={ limit={ @@ -108881,7 +115439,7 @@ return { [1]="can_apply_additional_chill" } }, - [4903]={ + [5259]={ [1]={ [1]={ limit={ @@ -108897,7 +115455,7 @@ return { [1]="can_apply_additional_shock" } }, - [4904]={ + [5260]={ [1]={ [1]={ limit={ @@ -108913,7 +115471,7 @@ return { [1]="can_block_from_all_directions" } }, - [4905]={ + [5261]={ [1]={ [1]={ limit={ @@ -108929,23 +115487,23 @@ return { [1]="can_catch_scourged_fish" } }, - [4906]={ + [5262]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You can have two Companions of different types" + text="Gain Combo from all Attack Hits" } }, stats={ - [1]="can_have_2_companions" + [1]="can_gain_combo_from_any_attack_hit" } }, - [4907]={ + [5263]={ [1]={ [1]={ limit={ @@ -108961,7 +115519,7 @@ return { [1]="can_only_have_one_ancestor_totem_buff" } }, - [4908]={ + [5264]={ [1]={ [1]={ limit={ @@ -108977,39 +115535,7 @@ return { [1]="can_place_multiple_banners" } }, - [4909]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can use One Hand Mace skills while Unarmed" - } - }, - stats={ - [1]="can_use_one_hand_mace_skills_while_unarmed" - } - }, - [4910]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can use Quarterstaff skills while Unarmed" - } - }, - stats={ - [1]="can_use_quarterstaff_skills_while_unarmed" - } - }, - [4911]={ + [5265]={ [1]={ [1]={ limit={ @@ -109025,7 +115551,7 @@ return { [1]="can_wield_2h_axe_sword_mace_in_one_hand" } }, - [4912]={ + [5266]={ [1]={ [1]={ limit={ @@ -109041,7 +115567,7 @@ return { [1]="cannot_adapt_to_cold" } }, - [4913]={ + [5267]={ [1]={ [1]={ limit={ @@ -109057,7 +115583,7 @@ return { [1]="cannot_adapt_to_fire" } }, - [4914]={ + [5268]={ [1]={ [1]={ limit={ @@ -109073,7 +115599,7 @@ return { [1]="cannot_adapt_to_lightning" } }, - [4915]={ + [5269]={ [1]={ [1]={ limit={ @@ -109089,7 +115615,7 @@ return { [1]="cannot_be_blinded_while_affected_by_precision" } }, - [4916]={ + [5270]={ [1]={ [1]={ limit={ @@ -109105,7 +115631,7 @@ return { [1]="cannot_be_blinded_while_on_full_life" } }, - [4917]={ + [5271]={ [1]={ [1]={ limit={ @@ -109121,7 +115647,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" } }, - [4918]={ + [5272]={ [1]={ [1]={ limit={ @@ -109137,7 +115663,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_moving" } }, - [4919]={ + [5273]={ [1]={ [1]={ limit={ @@ -109153,7 +115679,7 @@ return { [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" } }, - [4920]={ + [5274]={ [1]={ [1]={ limit={ @@ -109169,7 +115695,7 @@ return { [1]="cannot_be_chilled_while_burning" } }, - [4921]={ + [5275]={ [1]={ [1]={ limit={ @@ -109185,7 +115711,7 @@ return { [1]="cannot_be_crit_if_you_have_been_stunned_recently" } }, - [4922]={ + [5276]={ [1]={ [1]={ limit={ @@ -109201,7 +115727,7 @@ return { [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" } }, - [4923]={ + [5277]={ [1]={ [1]={ limit={ @@ -109217,7 +115743,7 @@ return { [1]="cannot_be_frozen_if_you_have_been_frozen_recently" } }, - [4924]={ + [5278]={ [1]={ [1]={ limit={ @@ -109233,7 +115759,7 @@ return { [1]="cannot_be_frozen_with_dex_higher_than_int" } }, - [4925]={ + [5279]={ [1]={ [1]={ limit={ @@ -109249,7 +115775,7 @@ return { [1]="cannot_be_heavy_stunned_while_sprinting" } }, - [4926]={ + [5280]={ [1]={ [1]={ limit={ @@ -109265,7 +115791,7 @@ return { [1]="cannot_be_ignited_if_you_have_been_ignited_recently" } }, - [4927]={ + [5281]={ [1]={ [1]={ limit={ @@ -109281,7 +115807,7 @@ return { [1]="cannot_be_ignited_while_at_maximum_endurance_charges" } }, - [4928]={ + [5282]={ [1]={ [1]={ limit={ @@ -109297,7 +115823,7 @@ return { [1]="cannot_be_ignited_while_flame_golem_summoned" } }, - [4929]={ + [5283]={ [1]={ [1]={ limit={ @@ -109313,7 +115839,7 @@ return { [1]="cannot_be_ignited_with_strength_higher_than_dex" } }, - [4930]={ + [5284]={ [1]={ [1]={ limit={ @@ -109329,7 +115855,7 @@ return { [1]="cannot_be_inflicted_by_corrupted_blood" } }, - [4931]={ + [5285]={ [1]={ [1]={ limit={ @@ -109345,7 +115871,7 @@ return { [1]="cannot_be_light_stunned" } }, - [4932]={ + [5286]={ [1]={ [1]={ limit={ @@ -109361,7 +115887,7 @@ return { [1]="cannot_be_light_stunned_by_deflected_hits" } }, - [4933]={ + [5287]={ [1]={ [1]={ limit={ @@ -109377,7 +115903,7 @@ return { [1]="cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds" } }, - [4934]={ + [5288]={ [1]={ [1]={ limit={ @@ -109393,7 +115919,7 @@ return { [1]="cannot_be_light_stunned_if_have_not_been_hit_recently" } }, - [4935]={ + [5289]={ [1]={ [1]={ limit={ @@ -109409,7 +115935,7 @@ return { [1]="cannot_be_light_stunned_if_you_have_been_stunned_recently" } }, - [4936]={ + [5290]={ [1]={ [1]={ limit={ @@ -109434,7 +115960,7 @@ return { [1]="cannot_be_poisoned_if_x_poisons_on_you" } }, - [4937]={ + [5291]={ [1]={ [1]={ limit={ @@ -109450,7 +115976,7 @@ return { [1]="cannot_be_poisoned_while_bleeding" } }, - [4938]={ + [5292]={ [1]={ [1]={ limit={ @@ -109466,7 +115992,7 @@ return { [1]="cannot_be_shocked_if_you_have_been_shocked_recently" } }, - [4939]={ + [5293]={ [1]={ [1]={ limit={ @@ -109482,7 +116008,7 @@ return { [1]="cannot_be_shocked_or_ignited_while_moving" } }, - [4940]={ + [5294]={ [1]={ [1]={ limit={ @@ -109498,7 +116024,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_power_charges" } }, - [4941]={ + [5295]={ [1]={ [1]={ limit={ @@ -109514,7 +116040,7 @@ return { [1]="cannot_be_shocked_while_lightning_golem_summoned" } }, - [4942]={ + [5296]={ [1]={ [1]={ limit={ @@ -109530,7 +116056,7 @@ return { [1]="cannot_be_shocked_with_int_higher_than_strength" } }, - [4943]={ + [5297]={ [1]={ [1]={ limit={ @@ -109546,7 +116072,7 @@ return { [1]="cannot_be_stunned_by_blocked_hits" } }, - [4944]={ + [5298]={ [1]={ [1]={ limit={ @@ -109562,7 +116088,7 @@ return { [1]="cannot_be_stunned_by_hits_of_only_physical_damage" } }, - [4945]={ + [5299]={ [1]={ [1]={ limit={ @@ -109578,7 +116104,7 @@ return { [1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently" } }, - [4946]={ + [5300]={ [1]={ [1]={ limit={ @@ -109594,7 +116120,7 @@ return { [1]="cannot_be_stunned_if_you_have_ghost_dance" } }, - [4947]={ + [5301]={ [1]={ [1]={ limit={ @@ -109610,7 +116136,7 @@ return { [1]="cannot_be_stunned_while_bleeding" } }, - [4948]={ + [5302]={ [1]={ [1]={ limit={ @@ -109626,7 +116152,7 @@ return { [1]="cannot_be_stunned_while_fortified" } }, - [4949]={ + [5303]={ [1]={ [1]={ limit={ @@ -109642,7 +116168,7 @@ return { [1]="cannot_be_stunned_while_using_chaos_skill" } }, - [4950]={ + [5304]={ [1]={ [1]={ limit={ @@ -109658,7 +116184,7 @@ return { [1]="cannot_cast_spells" } }, - [4951]={ + [5305]={ [1]={ [1]={ limit={ @@ -109674,7 +116200,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [4952]={ + [5306]={ [1]={ [1]={ limit={ @@ -109690,7 +116216,7 @@ return { [1]="cannot_critical_strike_with_attacks" } }, - [4953]={ + [5307]={ [1]={ [1]={ limit={ @@ -109706,7 +116232,7 @@ return { [1]="cannot_fish_from_water" } }, - [4954]={ + [5308]={ [1]={ [1]={ limit={ @@ -109722,7 +116248,7 @@ return { [1]="cannot_gain_charges" } }, - [4955]={ + [5309]={ [1]={ [1]={ limit={ @@ -109738,7 +116264,7 @@ return { [1]="cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks" } }, - [4956]={ + [5310]={ [1]={ [1]={ limit={ @@ -109754,7 +116280,7 @@ return { [1]="cannot_gain_rage_during_soul_gain_prevention" } }, - [4957]={ + [5311]={ [1]={ [1]={ limit={ @@ -109770,7 +116296,7 @@ return { [1]="cannot_gain_spirit_from_equipment" } }, - [4958]={ + [5312]={ [1]={ [1]={ limit={ @@ -109786,7 +116312,7 @@ return { [1]="cannot_have_energy_shield_leeched_from" } }, - [4959]={ + [5313]={ [1]={ [1]={ limit={ @@ -109802,7 +116328,7 @@ return { [1]="cannot_have_more_than_1_damaging_ailment" } }, - [4960]={ + [5314]={ [1]={ [1]={ limit={ @@ -109818,7 +116344,7 @@ return { [1]="cannot_have_more_than_1_non_damaging_ailment" } }, - [4961]={ + [5315]={ [1]={ [1]={ limit={ @@ -109834,7 +116360,7 @@ return { [1]="cannot_immobilise_enemies" } }, - [4962]={ + [5316]={ [1]={ [1]={ limit={ @@ -109850,7 +116376,23 @@ return { [1]="cannot_kill_enemies_with_hits" } }, - [4963]={ + [5317]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies which are on Full Life cannot Evade your Hits" + } + }, + stats={ + [1]="cannot_miss_against_full_life_enemies" + } + }, + [5318]={ [1]={ [1]={ limit={ @@ -109866,7 +116408,7 @@ return { [1]="cannot_penetrate_or_ignore_elemental_resistances" } }, - [4964]={ + [5319]={ [1]={ [1]={ limit={ @@ -109882,7 +116424,7 @@ return { [1]="cannot_pierce" } }, - [4965]={ + [5320]={ [1]={ [1]={ limit={ @@ -109898,7 +116440,7 @@ return { [1]="cannot_pin" } }, - [4966]={ + [5321]={ [1]={ [1]={ limit={ @@ -109914,7 +116456,7 @@ return { [1]="cannot_receive_elemental_ailments_from_cursed_enemies" } }, - [4967]={ + [5322]={ [1]={ [1]={ limit={ @@ -109930,7 +116472,7 @@ return { [1]="cannot_recharge_energy_shield" } }, - [4968]={ + [5323]={ [1]={ [1]={ limit={ @@ -109946,7 +116488,7 @@ return { [1]="cannot_recover_above_low_life_except_flasks" } }, - [4969]={ + [5324]={ [1]={ [1]={ limit={ @@ -109962,7 +116504,7 @@ return { [1]="cannot_recover_life_or_energy_shield_above_%" } }, - [4970]={ + [5325]={ [1]={ [1]={ limit={ @@ -109978,7 +116520,7 @@ return { [1]="cannot_recover_mana_except_regeneration" } }, - [4971]={ + [5326]={ [1]={ [1]={ limit={ @@ -109994,7 +116536,7 @@ return { [1]="cannot_regenerate_energy_shield" } }, - [4972]={ + [5327]={ [1]={ [1]={ limit={ @@ -110010,7 +116552,7 @@ return { [1]="cannot_sprint" } }, - [4973]={ + [5328]={ [1]={ [1]={ limit={ @@ -110026,7 +116568,7 @@ return { [1]="cannot_take_reflected_elemental_damage" } }, - [4974]={ + [5329]={ [1]={ [1]={ limit={ @@ -110042,7 +116584,7 @@ return { [1]="cannot_take_reflected_physical_damage" } }, - [4975]={ + [5330]={ [1]={ [1]={ limit={ @@ -110058,7 +116600,7 @@ return { [1]="cannot_taunt_enemies" } }, - [4976]={ + [5331]={ [1]={ [1]={ limit={ @@ -110074,7 +116616,7 @@ return { [1]="cannot_use_flask_in_fifth_slot" } }, - [4977]={ + [5332]={ [1]={ [1]={ limit={ @@ -110090,7 +116632,7 @@ return { [1]="cannot_use_non_normal_body_armour" } }, - [4978]={ + [5333]={ [1]={ [1]={ limit={ @@ -110106,7 +116648,7 @@ return { [1]="cannot_use_warcries" } }, - [4979]={ + [5334]={ [1]={ [1]={ limit={ @@ -110122,7 +116664,23 @@ return { [1]="carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems" } }, - [4980]={ + [5335]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis" + } + }, + stats={ + [1]="cascadable_spells_final_echo_also_cascades_to_sides" + } + }, + [5336]={ [1]={ [1]={ limit={ @@ -110138,7 +116696,7 @@ return { [1]="cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash" } }, - [4981]={ + [5337]={ [1]={ [1]={ limit={ @@ -110154,7 +116712,7 @@ return { [1]="cast_blink_arrow_on_attack_with_mirror_arrow" } }, - [4982]={ + [5338]={ [1]={ [1]={ limit={ @@ -110170,7 +116728,7 @@ return { [1]="cast_body_swap_on_detonate_dead_cast" } }, - [4983]={ + [5339]={ [1]={ [1]={ limit={ @@ -110186,7 +116744,7 @@ return { [1]="cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter" } }, - [4984]={ + [5340]={ [1]={ [1]={ limit={ @@ -110202,7 +116760,7 @@ return { [1]="cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire" } }, - [4985]={ + [5341]={ [1]={ [1]={ limit={ @@ -110218,7 +116776,7 @@ return { [1]="cast_hydrosphere_while_channeling_winter_orb" } }, - [4986]={ + [5342]={ [1]={ [1]={ limit={ @@ -110234,7 +116792,7 @@ return { [1]="cast_ice_nova_on_final_burst_of_glacial_cascade" } }, - [4987]={ + [5343]={ [1]={ [1]={ limit={ @@ -110250,7 +116808,23 @@ return { [1]="cast_mirror_arrow_on_attack_with_blink_arrow" } }, - [4988]={ + [5344]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed during any Flask Effect" + } + }, + stats={ + [1]="cast_speed_+%_during_mana_flask_effect" + } + }, + [5345]={ [1]={ [1]={ limit={ @@ -110279,7 +116853,36 @@ return { [1]="cast_speed_+%_per_20_spirit" } }, - [4989]={ + [5346]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed for each different Spell you've Cast in the last eight seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cast Speed for each different Spell you've Cast in the last eight seconds" + } + }, + stats={ + [1]="cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds" + } + }, + [5347]={ [1]={ [1]={ limit={ @@ -110308,7 +116911,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [4990]={ + [5348]={ [1]={ [1]={ limit={ @@ -110337,7 +116940,7 @@ return { [1]="cast_speed_for_brand_skills_+%" } }, - [4991]={ + [5349]={ [1]={ [1]={ limit={ @@ -110366,7 +116969,7 @@ return { [1]="cast_speed_for_elemental_skills_+%" } }, - [4992]={ + [5350]={ [1]={ [1]={ limit={ @@ -110395,7 +116998,7 @@ return { [1]="cast_speed_+%_during_flask_effect" } }, - [4993]={ + [5351]={ [1]={ [1]={ limit={ @@ -110424,7 +117027,7 @@ return { [1]="cast_speed_+%_if_enemy_killed_recently" } }, - [4994]={ + [5352]={ [1]={ [1]={ limit={ @@ -110453,7 +117056,7 @@ return { [1]="cast_speed_+%_if_have_crit_recently" } }, - [4995]={ + [5353]={ [1]={ [1]={ limit={ @@ -110482,7 +117085,7 @@ return { [1]="cast_speed_+%_if_player_minion_has_been_killed_recently" } }, - [4996]={ + [5354]={ [1]={ [1]={ limit={ @@ -110511,7 +117114,7 @@ return { [1]="cast_speed_+%_if_you_have_used_a_mana_flask_recently" } }, - [4997]={ + [5355]={ [1]={ [1]={ limit={ @@ -110540,7 +117143,7 @@ return { [1]="cast_speed_+%_per_corpse_consumed_recently" } }, - [4998]={ + [5356]={ [1]={ [1]={ limit={ @@ -110569,7 +117172,7 @@ return { [1]="cast_speed_+%_while_affected_by_zealotry" } }, - [4999]={ + [5357]={ [1]={ [1]={ limit={ @@ -110598,7 +117201,7 @@ return { [1]="cast_speed_+%_while_chilled" } }, - [5000]={ + [5358]={ [1]={ [1]={ limit={ @@ -110627,7 +117230,7 @@ return { [1]="cast_speed_+%_while_on_full_mana" } }, - [5001]={ + [5359]={ [1]={ [1]={ limit={ @@ -110643,7 +117246,7 @@ return { [1]="cast_stance_change_on_attack_from_perforate_or_lacerate" } }, - [5002]={ + [5360]={ [1]={ [1]={ limit={ @@ -110659,7 +117262,7 @@ return { [1]="cast_summon_spectral_wolf_on_crit_with_cleave_or_reave" } }, - [5003]={ + [5361]={ [1]={ [1]={ limit={ @@ -110675,7 +117278,7 @@ return { [1]="cast_tornado_on_attack_with_split_arrow_or_tornado_shot" } }, - [5004]={ + [5362]={ [1]={ [1]={ limit={ @@ -110691,7 +117294,7 @@ return { [1]="cat_aspect_reserves_no_mana" } }, - [5005]={ + [5363]={ [1]={ [1]={ [1]={ @@ -110711,7 +117314,7 @@ return { [1]="cats_stealth_duration_ms_+" } }, - [5006]={ + [5364]={ [1]={ [1]={ [1]={ @@ -110740,7 +117343,7 @@ return { [1]="caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill" } }, - [5007]={ + [5365]={ [1]={ [1]={ limit={ @@ -110756,7 +117359,7 @@ return { [1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground" } }, - [5008]={ + [5366]={ [1]={ [1]={ limit={ @@ -110785,7 +117388,7 @@ return { [1]="caustic_arrow_damage_over_time_+%" } }, - [5009]={ + [5367]={ [1]={ [1]={ limit={ @@ -110814,7 +117417,7 @@ return { [1]="caustic_arrow_hit_damage_+%" } }, - [5010]={ + [5368]={ [1]={ [1]={ limit={ @@ -110843,7 +117446,7 @@ return { [1]="chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks" } }, - [5011]={ + [5369]={ [1]={ [1]={ limit={ @@ -110859,7 +117462,7 @@ return { [1]="chain_strike_cone_radius_+_per_12_rage" } }, - [5012]={ + [5370]={ [1]={ [1]={ limit={ @@ -110875,7 +117478,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [5013]={ + [5371]={ [1]={ [1]={ limit={ @@ -110904,7 +117507,7 @@ return { [1]="chain_strike_damage_+%" } }, - [5014]={ + [5372]={ [1]={ [1]={ limit={ @@ -110920,7 +117523,7 @@ return { [1]="chain_strike_gain_rage_on_hit_%_chance" } }, - [5015]={ + [5373]={ [1]={ [1]={ limit={ @@ -110949,7 +117552,7 @@ return { [1]="chaining_range_+%" } }, - [5016]={ + [5374]={ [1]={ [1]={ limit={ @@ -110965,7 +117568,7 @@ return { [1]="champion_ascendancy_nearby_allies_fortification_is_equal_to_yours" } }, - [5017]={ + [5375]={ [1]={ [1]={ limit={ @@ -110981,7 +117584,23 @@ return { [1]="chance_%_for_other_flasks_to_gain_charge_on_charge_gain" } }, - [5018]={ + [5376]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Plants have a {0}% chance to immediately Overgrow when they enter your Presence for the first time" + } + }, + stats={ + [1]="chance_%_for_plants_to_overgrow_when_entering_your_presence" + } + }, + [5377]={ [1]={ [1]={ limit={ @@ -111006,7 +117625,7 @@ return { [1]="chance_%_to_create_shocking_ground_on_shock" } }, - [5019]={ + [5378]={ [1]={ [1]={ limit={ @@ -111031,7 +117650,7 @@ return { [1]="chance_%_to_double_effect_of_removing_frenzy_charges" } }, - [5020]={ + [5379]={ [1]={ [1]={ [1]={ @@ -111051,7 +117670,7 @@ return { [1]="chance_%_to_drop_additional_awakened_sextant" } }, - [5021]={ + [5380]={ [1]={ [1]={ [1]={ @@ -111071,7 +117690,7 @@ return { [1]="chance_%_to_drop_additional_blessed_orb" } }, - [5022]={ + [5381]={ [1]={ [1]={ [1]={ @@ -111091,7 +117710,7 @@ return { [1]="chance_%_to_drop_additional_cartographers_chisel" } }, - [5023]={ + [5382]={ [1]={ [1]={ [1]={ @@ -111111,7 +117730,7 @@ return { [1]="chance_%_to_drop_additional_chaos_orb" } }, - [5024]={ + [5383]={ [1]={ [1]={ [1]={ @@ -111131,7 +117750,7 @@ return { [1]="chance_%_to_drop_additional_chromatic_orb" } }, - [5025]={ + [5384]={ [1]={ [1]={ [1]={ @@ -111151,7 +117770,7 @@ return { [1]="chance_%_to_drop_additional_divine_orb" } }, - [5026]={ + [5385]={ [1]={ [1]={ [1]={ @@ -111171,7 +117790,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_chaos_orb" } }, - [5027]={ + [5386]={ [1]={ [1]={ [1]={ @@ -111191,7 +117810,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_exalted_orb" } }, - [5028]={ + [5387]={ [1]={ [1]={ [1]={ @@ -111211,7 +117830,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_orb_of_annulment" } }, - [5029]={ + [5388]={ [1]={ [1]={ [1]={ @@ -111231,7 +117850,7 @@ return { [1]="chance_%_to_drop_additional_enkindling_orb" } }, - [5030]={ + [5389]={ [1]={ [1]={ [1]={ @@ -111251,7 +117870,7 @@ return { [1]="chance_%_to_drop_additional_exalted_orb" } }, - [5031]={ + [5390]={ [1]={ [1]={ [1]={ @@ -111271,7 +117890,7 @@ return { [1]="chance_%_to_drop_additional_fusing_orb" } }, - [5032]={ + [5391]={ [1]={ [1]={ [1]={ @@ -111291,7 +117910,7 @@ return { [1]="chance_%_to_drop_additional_gemcutters_prism" } }, - [5033]={ + [5392]={ [1]={ [1]={ [1]={ @@ -111311,7 +117930,7 @@ return { [1]="chance_%_to_drop_additional_glassblowers_bauble" } }, - [5034]={ + [5393]={ [1]={ [1]={ [1]={ @@ -111331,7 +117950,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ember" } }, - [5035]={ + [5394]={ [1]={ [1]={ [1]={ @@ -111351,7 +117970,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ichor" } }, - [5036]={ + [5395]={ [1]={ [1]={ [1]={ @@ -111371,7 +117990,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ember" } }, - [5037]={ + [5396]={ [1]={ [1]={ [1]={ @@ -111391,7 +118010,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ichor" } }, - [5038]={ + [5397]={ [1]={ [1]={ [1]={ @@ -111411,7 +118030,7 @@ return { [1]="chance_%_to_drop_additional_instilling_orb" } }, - [5039]={ + [5398]={ [1]={ [1]={ [1]={ @@ -111431,7 +118050,7 @@ return { [1]="chance_%_to_drop_additional_jewellers_orb" } }, - [5040]={ + [5399]={ [1]={ [1]={ [1]={ @@ -111451,7 +118070,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ember" } }, - [5041]={ + [5400]={ [1]={ [1]={ [1]={ @@ -111471,7 +118090,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ichor" } }, - [5042]={ + [5401]={ [1]={ [1]={ [1]={ @@ -111491,7 +118110,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_alteration" } }, - [5043]={ + [5402]={ [1]={ [1]={ [1]={ @@ -111511,7 +118130,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_annulment" } }, - [5044]={ + [5403]={ [1]={ [1]={ [1]={ @@ -111531,7 +118150,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_binding" } }, - [5045]={ + [5404]={ [1]={ [1]={ [1]={ @@ -111551,7 +118170,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_horizons" } }, - [5046]={ + [5405]={ [1]={ [1]={ [1]={ @@ -111571,7 +118190,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_regret" } }, - [5047]={ + [5406]={ [1]={ [1]={ [1]={ @@ -111591,7 +118210,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_scouring" } }, - [5048]={ + [5407]={ [1]={ [1]={ [1]={ @@ -111611,7 +118230,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_unmaking" } }, - [5049]={ + [5408]={ [1]={ [1]={ [1]={ @@ -111631,7 +118250,7 @@ return { [1]="chance_%_to_drop_additional_regal_orb" } }, - [5050]={ + [5409]={ [1]={ [1]={ [1]={ @@ -111651,7 +118270,89 @@ return { [1]="chance_%_to_drop_additional_vaal_orb" } }, - [5051]={ + [5410]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to gain Nature's Archon when your Plants Overgrow" + } + }, + stats={ + [1]="chance_%_to_gain_archon_of_nature_on_overgrowing_plant" + } + }, + [5411]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to gain Archon of Undeath when you use a Command skill" + } + }, + stats={ + [1]="chance_%_to_gain_archon_of_undeath_on_using_command_skill" + } + }, + [5412]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% to gain Archon of Undeath when you create an Offering" + } + }, + stats={ + [1]="chance_%_to_gain_archon_of_undeath_when_you_create_an_offering" + } + }, + [5413]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="{0}% Surpassing chance per enemy Power to gain\nMountain's Teachings on Immobilising an enemy if\nyou have the Way of the Mountain Ascendancy Passive Skill" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of {1}\nLose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings" + } + }, + stats={ + [1]="chance_%_to_gain_one_stone_skin_stack_on_immobilising", + [2]="stone_skin_maximum_stacks" + } + }, + [5414]={ [1]={ [1]={ limit={ @@ -111676,7 +118377,7 @@ return { [1]="chance_for_double_items_from_heist_chests_%" } }, - [5052]={ + [5415]={ [1]={ [1]={ limit={ @@ -111692,7 +118393,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [5053]={ + [5416]={ [1]={ [1]={ limit={ @@ -111708,7 +118409,7 @@ return { [1]="chance_for_extra_damage_roll_with_lightning_damage_%" } }, - [5054]={ + [5417]={ [1]={ [1]={ limit={ @@ -111724,7 +118425,7 @@ return { [1]="chance_for_plants_to_be_overgrown_%" } }, - [5055]={ + [5418]={ [1]={ [1]={ limit={ @@ -111740,7 +118441,7 @@ return { [1]="chance_for_skills_to_avoid_cooldown_%" } }, - [5056]={ + [5419]={ [1]={ [1]={ limit={ @@ -111756,7 +118457,7 @@ return { [1]="chance_for_spells_to_not_pay_costs_%" } }, - [5057]={ + [5420]={ [1]={ [1]={ limit={ @@ -111772,7 +118473,7 @@ return { [1]="chance_%_to_create_additional_remnant" } }, - [5058]={ + [5421]={ [1]={ [1]={ [1]={ @@ -111792,7 +118493,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_currency" } }, - [5059]={ + [5422]={ [1]={ [1]={ [1]={ @@ -111812,7 +118513,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_influenced_item" } }, - [5060]={ + [5423]={ [1]={ [1]={ [1]={ @@ -111832,7 +118533,7 @@ return { [1]="chance_%_to_drop_additional_currency" } }, - [5061]={ + [5424]={ [1]={ [1]={ [1]={ @@ -111852,7 +118553,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards" } }, - [5062]={ + [5425]={ [1]={ [1]={ [1]={ @@ -111872,7 +118573,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_corrupted" } }, - [5063]={ + [5426]={ [1]={ [1]={ [1]={ @@ -111892,7 +118593,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency" } }, - [5064]={ + [5427]={ [1]={ [1]={ [1]={ @@ -111912,7 +118613,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_basic" } }, - [5065]={ + [5428]={ [1]={ [1]={ [1]={ @@ -111932,7 +118633,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_exotic" } }, - [5066]={ + [5429]={ [1]={ [1]={ [1]={ @@ -111952,7 +118653,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_league" } }, - [5067]={ + [5430]={ [1]={ [1]={ [1]={ @@ -111972,7 +118673,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems" } }, - [5068]={ + [5431]={ [1]={ [1]={ [1]={ @@ -111992,7 +118693,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_levelled" } }, - [5069]={ + [5432]={ [1]={ [1]={ [1]={ @@ -112012,7 +118713,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_quality" } }, - [5070]={ + [5433]={ [1]={ [1]={ [1]={ @@ -112032,7 +118733,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gives_other_divination_cards" } }, - [5071]={ + [5434]={ [1]={ [1]={ [1]={ @@ -112052,7 +118753,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map" } }, - [5072]={ + [5435]={ [1]={ [1]={ [1]={ @@ -112072,7 +118773,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map_unique" } }, - [5073]={ + [5436]={ [1]={ [1]={ [1]={ @@ -112092,7 +118793,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique" } }, - [5074]={ + [5437]={ [1]={ [1]={ [1]={ @@ -112112,7 +118813,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_armour" } }, - [5075]={ + [5438]={ [1]={ [1]={ [1]={ @@ -112132,7 +118833,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_corrupted" } }, - [5076]={ + [5439]={ [1]={ [1]={ [1]={ @@ -112152,7 +118853,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_jewellery" } }, - [5077]={ + [5440]={ [1]={ [1]={ [1]={ @@ -112172,7 +118873,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_weapon" } }, - [5078]={ + [5441]={ [1]={ [1]={ [1]={ @@ -112192,7 +118893,7 @@ return { [1]="chance_%_to_drop_additional_gem" } }, - [5079]={ + [5442]={ [1]={ [1]={ [1]={ @@ -112212,7 +118913,7 @@ return { [1]="chance_%_to_drop_additional_maps" } }, - [5080]={ + [5443]={ [1]={ [1]={ [1]={ @@ -112232,7 +118933,7 @@ return { [1]="chance_%_to_drop_additional_map_currency" } }, - [5081]={ + [5444]={ [1]={ [1]={ [1]={ @@ -112252,7 +118953,7 @@ return { [1]="chance_%_to_drop_additional_scarab" } }, - [5082]={ + [5445]={ [1]={ [1]={ [1]={ @@ -112272,7 +118973,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_gilded" } }, - [5083]={ + [5446]={ [1]={ [1]={ [1]={ @@ -112292,7 +118993,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_polished" } }, - [5084]={ + [5447]={ [1]={ [1]={ [1]={ @@ -112312,7 +119013,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_rusted" } }, - [5085]={ + [5448]={ [1]={ [1]={ [1]={ @@ -112332,7 +119033,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_gilded" } }, - [5086]={ + [5449]={ [1]={ [1]={ [1]={ @@ -112352,7 +119053,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_polished" } }, - [5087]={ + [5450]={ [1]={ [1]={ [1]={ @@ -112372,7 +119073,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_rusted" } }, - [5088]={ + [5451]={ [1]={ [1]={ [1]={ @@ -112392,7 +119093,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_gilded" } }, - [5089]={ + [5452]={ [1]={ [1]={ [1]={ @@ -112412,7 +119113,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_polished" } }, - [5090]={ + [5453]={ [1]={ [1]={ [1]={ @@ -112432,7 +119133,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_rusted" } }, - [5091]={ + [5454]={ [1]={ [1]={ [1]={ @@ -112452,7 +119153,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_gilded" } }, - [5092]={ + [5455]={ [1]={ [1]={ [1]={ @@ -112472,7 +119173,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_polished" } }, - [5093]={ + [5456]={ [1]={ [1]={ [1]={ @@ -112492,7 +119193,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_rusted" } }, - [5094]={ + [5457]={ [1]={ [1]={ [1]={ @@ -112512,7 +119213,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_gilded" } }, - [5095]={ + [5458]={ [1]={ [1]={ [1]={ @@ -112532,7 +119233,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_polished" } }, - [5096]={ + [5459]={ [1]={ [1]={ [1]={ @@ -112552,7 +119253,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_rusted" } }, - [5097]={ + [5460]={ [1]={ [1]={ [1]={ @@ -112572,7 +119273,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_gilded" } }, - [5098]={ + [5461]={ [1]={ [1]={ [1]={ @@ -112592,7 +119293,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_polished" } }, - [5099]={ + [5462]={ [1]={ [1]={ [1]={ @@ -112612,7 +119313,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_rusted" } }, - [5100]={ + [5463]={ [1]={ [1]={ [1]={ @@ -112632,7 +119333,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_gilded" } }, - [5101]={ + [5464]={ [1]={ [1]={ [1]={ @@ -112652,7 +119353,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_polished" } }, - [5102]={ + [5465]={ [1]={ [1]={ [1]={ @@ -112672,7 +119373,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_rusted" } }, - [5103]={ + [5466]={ [1]={ [1]={ [1]={ @@ -112692,7 +119393,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_gilded" } }, - [5104]={ + [5467]={ [1]={ [1]={ [1]={ @@ -112712,7 +119413,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_polished" } }, - [5105]={ + [5468]={ [1]={ [1]={ [1]={ @@ -112732,7 +119433,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_rusted" } }, - [5106]={ + [5469]={ [1]={ [1]={ [1]={ @@ -112752,7 +119453,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_gilded" } }, - [5107]={ + [5470]={ [1]={ [1]={ [1]={ @@ -112772,7 +119473,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_polished" } }, - [5108]={ + [5471]={ [1]={ [1]={ [1]={ @@ -112792,7 +119493,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_rusted" } }, - [5109]={ + [5472]={ [1]={ [1]={ [1]={ @@ -112812,7 +119513,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_gilded" } }, - [5110]={ + [5473]={ [1]={ [1]={ [1]={ @@ -112832,7 +119533,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_polished" } }, - [5111]={ + [5474]={ [1]={ [1]={ [1]={ @@ -112852,7 +119553,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_rusted" } }, - [5112]={ + [5475]={ [1]={ [1]={ [1]={ @@ -112872,7 +119573,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_gilded" } }, - [5113]={ + [5476]={ [1]={ [1]={ [1]={ @@ -112892,7 +119593,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_polished" } }, - [5114]={ + [5477]={ [1]={ [1]={ [1]={ @@ -112912,7 +119613,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_rusted" } }, - [5115]={ + [5478]={ [1]={ [1]={ [1]={ @@ -112932,7 +119633,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_gilded" } }, - [5116]={ + [5479]={ [1]={ [1]={ [1]={ @@ -112952,7 +119653,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_polished" } }, - [5117]={ + [5480]={ [1]={ [1]={ [1]={ @@ -112972,7 +119673,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_rusted" } }, - [5118]={ + [5481]={ [1]={ [1]={ [1]={ @@ -112992,7 +119693,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_gilded" } }, - [5119]={ + [5482]={ [1]={ [1]={ [1]={ @@ -113012,7 +119713,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_polished" } }, - [5120]={ + [5483]={ [1]={ [1]={ [1]={ @@ -113032,7 +119733,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_rusted" } }, - [5121]={ + [5484]={ [1]={ [1]={ [1]={ @@ -113052,7 +119753,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_gilded" } }, - [5122]={ + [5485]={ [1]={ [1]={ [1]={ @@ -113072,7 +119773,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_polished" } }, - [5123]={ + [5486]={ [1]={ [1]={ [1]={ @@ -113092,7 +119793,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_rusted" } }, - [5124]={ + [5487]={ [1]={ [1]={ [1]={ @@ -113112,7 +119813,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_gilded" } }, - [5125]={ + [5488]={ [1]={ [1]={ [1]={ @@ -113132,7 +119833,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_polished" } }, - [5126]={ + [5489]={ [1]={ [1]={ [1]={ @@ -113152,7 +119853,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_rusted" } }, - [5127]={ + [5490]={ [1]={ [1]={ [1]={ @@ -113172,7 +119873,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_gilded" } }, - [5128]={ + [5491]={ [1]={ [1]={ [1]={ @@ -113192,7 +119893,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_polished" } }, - [5129]={ + [5492]={ [1]={ [1]={ [1]={ @@ -113212,7 +119913,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_rusted" } }, - [5130]={ + [5493]={ [1]={ [1]={ [1]={ @@ -113232,7 +119933,7 @@ return { [1]="chance_%_to_drop_additional_tangled_currency" } }, - [5131]={ + [5494]={ [1]={ [1]={ [1]={ @@ -113252,7 +119953,7 @@ return { [1]="chance_%_to_drop_additional_tangled_influenced_item" } }, - [5132]={ + [5495]={ [1]={ [1]={ [1]={ @@ -113272,7 +119973,7 @@ return { [1]="chance_%_to_drop_additional_unique" } }, - [5133]={ + [5496]={ [1]={ [1]={ limit={ @@ -113288,7 +119989,7 @@ return { [1]="chance_to_avoid_death_%" } }, - [5134]={ + [5497]={ [1]={ [1]={ limit={ @@ -113313,7 +120014,7 @@ return { [1]="chance_to_be_hindered_when_hit_by_spells_%" } }, - [5135]={ + [5498]={ [1]={ [1]={ limit={ @@ -113342,7 +120043,7 @@ return { [1]="chance_to_be_inflicted_with_an_ailment_+%" } }, - [5136]={ + [5499]={ [1]={ [1]={ limit={ @@ -113358,7 +120059,7 @@ return { [1]="chance_to_be_maimed_when_hit_%" } }, - [5137]={ + [5500]={ [1]={ [1]={ limit={ @@ -113374,7 +120075,7 @@ return { [1]="chance_to_be_sapped_when_hit_%" } }, - [5138]={ + [5501]={ [1]={ [1]={ limit={ @@ -113390,7 +120091,7 @@ return { [1]="chance_to_be_scorched_when_hit_%" } }, - [5139]={ + [5502]={ [1]={ [1]={ limit={ @@ -113406,7 +120107,7 @@ return { [1]="chance_to_block_attack_damage_if_not_blocked_recently_%" } }, - [5140]={ + [5503]={ [1]={ [1]={ limit={ @@ -113422,7 +120123,7 @@ return { [1]="chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%" } }, - [5141]={ + [5504]={ [1]={ [1]={ limit={ @@ -113438,7 +120139,7 @@ return { [1]="chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%" } }, - [5142]={ + [5505]={ [1]={ [1]={ limit={ @@ -113454,7 +120155,7 @@ return { [1]="chance_to_block_attacks_%_while_channelling" } }, - [5143]={ + [5506]={ [1]={ [1]={ limit={ @@ -113470,9 +120171,19 @@ return { [1]="chance_to_create_consecrated_ground_on_melee_kill_%" } }, - [5144]={ + [5507]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Crush on Hit" + }, + [2]={ limit={ [1]={ [1]=1, @@ -113481,7 +120192,7 @@ return { }, text="{0}% chance to Crush on Hit" }, - [2]={ + [3]={ limit={ [1]={ [1]=100, @@ -113490,7 +120201,7 @@ return { }, text="Crush on Hit" }, - [3]={ + [4]={ limit={ [1]={ [1]="#", @@ -113504,7 +120215,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [5145]={ + [5508]={ [1]={ [1]={ limit={ @@ -113520,7 +120231,7 @@ return { [1]="chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second" } }, - [5146]={ + [5509]={ [1]={ [1]={ limit={ @@ -113536,7 +120247,7 @@ return { [1]="chance_to_deal_double_damage_%_while_at_least_200_strength" } }, - [5147]={ + [5510]={ [1]={ [1]={ limit={ @@ -113552,7 +120263,7 @@ return { [1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds" } }, - [5148]={ + [5511]={ [1]={ [1]={ limit={ @@ -113568,7 +120279,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [5149]={ + [5512]={ [1]={ [1]={ limit={ @@ -113584,7 +120295,7 @@ return { [1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently" } }, - [5150]={ + [5513]={ [1]={ [1]={ limit={ @@ -113600,7 +120311,7 @@ return { [1]="chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently" } }, - [5151]={ + [5514]={ [1]={ [1]={ limit={ @@ -113616,7 +120327,7 @@ return { [1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds" } }, - [5152]={ + [5515]={ [1]={ [1]={ limit={ @@ -113632,7 +120343,7 @@ return { [1]="chance_to_deal_double_damage_%_per_4_rage" } }, - [5153]={ + [5516]={ [1]={ [1]={ limit={ @@ -113648,7 +120359,7 @@ return { [1]="chance_to_deal_double_damage_%_per_500_strength" } }, - [5154]={ + [5517]={ [1]={ [1]={ limit={ @@ -113673,7 +120384,7 @@ return { [1]="chance_to_deal_double_damage_%_while_focused" } }, - [5155]={ + [5518]={ [1]={ [1]={ limit={ @@ -113689,7 +120400,7 @@ return { [1]="chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds" } }, - [5156]={ + [5519]={ [1]={ [1]={ limit={ @@ -113705,7 +120416,7 @@ return { [1]="chance_to_deal_double_damage_while_on_full_life_%" } }, - [5157]={ + [5520]={ [1]={ [1]={ limit={ @@ -113721,7 +120432,7 @@ return { [1]="chance_to_deal_triple_damage_%_while_at_least_400_strength" } }, - [5158]={ + [5521]={ [1]={ [1]={ limit={ @@ -113737,7 +120448,7 @@ return { [1]="chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield" } }, - [5159]={ + [5522]={ [1]={ [1]={ limit={ @@ -113753,7 +120464,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%" } }, - [5160]={ + [5523]={ [1]={ [1]={ limit={ @@ -113769,7 +120480,7 @@ return { [1]="chance_to_fire_1_additional_projectile_%_with_rollover" } }, - [5161]={ + [5524]={ [1]={ [1]={ limit={ @@ -113785,7 +120496,7 @@ return { [1]="chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks" } }, - [5162]={ + [5525]={ [1]={ [1]={ limit={ @@ -113801,7 +120512,7 @@ return { [1]="chance_to_fork_extra_projectile_%_per_10_tribute" } }, - [5163]={ + [5526]={ [1]={ [1]={ limit={ @@ -113817,7 +120528,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [5164]={ + [5527]={ [1]={ [1]={ limit={ @@ -113842,7 +120553,7 @@ return { [1]="chance_to_fortify_on_melee_stun_%" } }, - [5165]={ + [5528]={ [1]={ [1]={ limit={ @@ -113867,7 +120578,7 @@ return { [1]="chance_to_gain_1_more_charge_%_per_10_tribute" } }, - [5166]={ + [5529]={ [1]={ [1]={ limit={ @@ -113892,7 +120603,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [5167]={ + [5530]={ [1]={ [1]={ limit={ @@ -113917,7 +120628,7 @@ return { [1]="chance_to_gain_1_more_endurance_charge_%" } }, - [5168]={ + [5531]={ [1]={ [1]={ limit={ @@ -113942,7 +120653,7 @@ return { [1]="chance_to_gain_1_more_frenzy_charge_%" } }, - [5169]={ + [5532]={ [1]={ [1]={ limit={ @@ -113967,7 +120678,7 @@ return { [1]="chance_to_gain_1_more_power_charge_%" } }, - [5170]={ + [5533]={ [1]={ [1]={ limit={ @@ -113992,7 +120703,7 @@ return { [1]="chance_to_gain_1_more_random_charge_%" } }, - [5171]={ + [5534]={ [1]={ [1]={ limit={ @@ -114008,7 +120719,7 @@ return { [1]="chance_to_gain_200_life_on_hit_with_attacks_%" } }, - [5172]={ + [5535]={ [1]={ [1]={ limit={ @@ -114024,7 +120735,7 @@ return { [1]="chance_to_gain_3_additional_exerted_attacks_%" } }, - [5173]={ + [5536]={ [1]={ [1]={ limit={ @@ -114040,7 +120751,7 @@ return { [1]="chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5174]={ + [5537]={ [1]={ [1]={ limit={ @@ -114056,7 +120767,7 @@ return { [1]="chance_to_gain_elusive_when_you_block_while_dual_wielding_%" } }, - [5175]={ + [5538]={ [1]={ [1]={ limit={ @@ -114072,7 +120783,7 @@ return { [1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy" } }, - [5176]={ + [5539]={ [1]={ [1]={ limit={ @@ -114088,7 +120799,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%" } }, - [5177]={ + [5540]={ [1]={ [1]={ limit={ @@ -114113,7 +120824,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_attack_%" } }, - [5178]={ + [5541]={ [1]={ [1]={ limit={ @@ -114138,7 +120849,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_%" } }, - [5179]={ + [5542]={ [1]={ [1]={ limit={ @@ -114154,7 +120865,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_stun_%" } }, - [5180]={ + [5543]={ [1]={ [1]={ limit={ @@ -114170,7 +120881,7 @@ return { [1]="chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5181]={ + [5544]={ [1]={ [1]={ limit={ @@ -114186,7 +120897,7 @@ return { [1]="chance_to_gain_onslaught_on_flask_use_%" } }, - [5182]={ + [5545]={ [1]={ [1]={ limit={ @@ -114202,7 +120913,7 @@ return { [1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy" } }, - [5183]={ + [5546]={ [1]={ [1]={ limit={ @@ -114227,7 +120938,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%" } }, - [5184]={ + [5547]={ [1]={ [1]={ limit={ @@ -114243,7 +120954,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_with_axes_%" } }, - [5185]={ + [5548]={ [1]={ [1]={ limit={ @@ -114259,7 +120970,7 @@ return { [1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%" } }, - [5186]={ + [5549]={ [1]={ [1]={ limit={ @@ -114284,7 +120995,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [5187]={ + [5550]={ [1]={ [1]={ limit={ @@ -114300,7 +121011,7 @@ return { [1]="chance_to_gain_random_standard_charge_on_hit_%" } }, - [5188]={ + [5551]={ [1]={ [1]={ limit={ @@ -114316,32 +121027,57 @@ return { [1]="chance_to_gain_skill_cost_as_mana_when_paid_%" } }, - [5189]={ + [5552]={ [1]={ [1]={ limit={ [1]={ - [1]=100, - [2]=100 + [1]=1, + [2]=99 } }, - text="Grant an Endurance Charge to nearby Allies on Hit" + text="{0}% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, [2]={ limit={ [1]={ - [1]="#", - [2]=99 + [1]=100, + [2]="#" } }, - text="{0}% chance to grant an Endurance Charge to nearby Allies on Hit" + text="Grant an Endurance Charge to Allies in your Presence on Hit" } }, stats={ [1]="chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%" } }, - [5190]={ + [5553]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to grant a Frenzy Charge to Allies in your Presence on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Grant a Frenzy Charge to Allies in your Presence on Hit" + } + }, + stats={ + [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" + } + }, + [5554]={ [1]={ [1]={ limit={ @@ -114366,7 +121102,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%" } }, - [5191]={ + [5555]={ [1]={ [1]={ limit={ @@ -114382,7 +121118,32 @@ return { [1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%" } }, - [5192]={ + [5556]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to grant a Power Charge to Allies in your Presence on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Grant an Power Charge to Allies in your Presence on Hit" + } + }, + stats={ + [1]="chance_to_grant_power_charge_to_nearby_allies_on_hit_%" + } + }, + [5557]={ [1]={ [1]={ limit={ @@ -114398,7 +121159,7 @@ return { [1]="chance_to_ignite_is_doubled" } }, - [5193]={ + [5558]={ [1]={ [1]={ limit={ @@ -114414,7 +121175,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [5194]={ + [5559]={ [1]={ [1]={ limit={ @@ -114439,7 +121200,7 @@ return { [1]="chance_to_inflict_10_incision_on_attack_hit_%" } }, - [5195]={ + [5560]={ [1]={ [1]={ limit={ @@ -114464,7 +121225,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [5196]={ + [5561]={ [1]={ [1]={ limit={ @@ -114489,7 +121250,7 @@ return { [1]="chance_to_inflict_brittle_on_enemy_on_block_%" } }, - [5197]={ + [5562]={ [1]={ [1]={ limit={ @@ -114505,7 +121266,7 @@ return { [1]="chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%" } }, - [5198]={ + [5563]={ [1]={ [1]={ limit={ @@ -114521,7 +121282,7 @@ return { [1]="chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%" } }, - [5199]={ + [5564]={ [1]={ [1]={ limit={ @@ -114546,7 +121307,7 @@ return { [1]="chance_to_inflict_incision_on_attack_hit_%" } }, - [5200]={ + [5565]={ [1]={ [1]={ limit={ @@ -114562,7 +121323,7 @@ return { [1]="chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%" } }, - [5201]={ + [5566]={ [1]={ [1]={ limit={ @@ -114587,7 +121348,7 @@ return { [1]="chance_to_inflict_sap_on_enemy_on_block_%" } }, - [5202]={ + [5567]={ [1]={ [1]={ limit={ @@ -114612,7 +121373,7 @@ return { [1]="chance_to_inflict_scorch_on_enemy_on_block_%" } }, - [5203]={ + [5568]={ [1]={ [1]={ limit={ @@ -114628,7 +121389,7 @@ return { [1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%" } }, - [5204]={ + [5569]={ [1]={ [1]={ limit={ @@ -114653,7 +121414,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [5205]={ + [5570]={ [1]={ [1]={ limit={ @@ -114669,7 +121430,7 @@ return { [1]="chance_to_leave_2_ground_blades_%" } }, - [5206]={ + [5571]={ [1]={ [1]={ limit={ @@ -114685,7 +121446,7 @@ return { [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" } }, - [5207]={ + [5572]={ [1]={ [1]={ limit={ @@ -114710,7 +121471,7 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [5208]={ + [5573]={ [1]={ [1]={ limit={ @@ -114726,7 +121487,7 @@ return { [1]="chance_to_not_consume_glory_%" } }, - [5209]={ + [5574]={ [1]={ [1]={ limit={ @@ -114742,7 +121503,23 @@ return { [1]="chance_to_not_consume_infusion_%" } }, - [5210]={ + [5575]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills have {0}% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" + } + }, + stats={ + [1]="chance_to_not_consume_infusion_%_if_lost_archon_in_past_6_seconds" + } + }, + [5576]={ [1]={ [1]={ limit={ @@ -114767,7 +121544,7 @@ return { [1]="chance_to_not_consume_instilling_%" } }, - [5211]={ + [5577]={ [1]={ [1]={ limit={ @@ -114796,7 +121573,7 @@ return { [1]="chance_to_poison_on_hit_+%_vs_non_poisoned_enemies" } }, - [5212]={ + [5578]={ [1]={ [1]={ limit={ @@ -114812,7 +121589,7 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [5213]={ + [5579]={ [1]={ [1]={ limit={ @@ -114828,7 +121605,7 @@ return { [1]="chance_to_poison_on_hit_%_per_power_charge" } }, - [5214]={ + [5580]={ [1]={ [1]={ limit={ @@ -114853,7 +121630,7 @@ return { [1]="chance_to_retain_40%_of_glory_on_use_%" } }, - [5215]={ + [5581]={ [1]={ [1]={ limit={ @@ -114882,7 +121659,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5216]={ + [5582]={ [1]={ [1]={ limit={ @@ -114898,7 +121675,7 @@ return { [1]="chance_to_shock_chilled_enemies_%" } }, - [5217]={ + [5583]={ [1]={ [1]={ limit={ @@ -114914,7 +121691,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_gaining_infusion" } }, - [5218]={ + [5584]={ [1]={ [1]={ limit={ @@ -114930,7 +121707,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_linking_target" } }, - [5219]={ + [5585]={ [1]={ [1]={ limit={ @@ -114946,7 +121723,7 @@ return { [1]="chance_to_summon_two_totems_%" } }, - [5220]={ + [5586]={ [1]={ [1]={ limit={ @@ -114962,7 +121739,7 @@ return { [1]="chance_to_throw_4_additional_traps_%" } }, - [5221]={ + [5587]={ [1]={ [1]={ limit={ @@ -114987,7 +121764,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [5222]={ + [5588]={ [1]={ [1]={ limit={ @@ -115016,7 +121793,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [5223]={ + [5589]={ [1]={ [1]={ limit={ @@ -115045,7 +121822,7 @@ return { [1]="channelled_skill_damage_+%_per_10_devotion" } }, - [5224]={ + [5590]={ [1]={ [1]={ limit={ @@ -115074,7 +121851,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_plague" } }, - [5225]={ + [5591]={ [1]={ [1]={ limit={ @@ -115090,7 +121867,23 @@ return { [1]="chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life" } }, - [5226]={ + [5592]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Chaos Damage over Time per Volatility" + } + }, + stats={ + [1]="chaos_damage_over_time_+%_per_volatility" + } + }, + [5593]={ [1]={ [1]={ limit={ @@ -115106,7 +121899,7 @@ return { [1]="chaos_damage_over_time_heals_while_leeching_life" } }, - [5227]={ + [5594]={ [1]={ [1]={ limit={ @@ -115122,7 +121915,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_per_4_chaos_resistance" } }, - [5228]={ + [5595]={ [1]={ [1]={ limit={ @@ -115138,7 +121931,7 @@ return { [1]="additional_chaos_resistance_against_damage_over_time_%" } }, - [5229]={ + [5596]={ [1]={ [1]={ limit={ @@ -115163,7 +121956,7 @@ return { [1]="chaos_damage_%_taken_from_mana_before_life" } }, - [5230]={ + [5597]={ [1]={ [1]={ limit={ @@ -115179,7 +121972,7 @@ return { [1]="chaos_damage_+%_per_100_max_mana_up_to_80" } }, - [5231]={ + [5598]={ [1]={ [1]={ limit={ @@ -115208,7 +122001,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_agony" } }, - [5232]={ + [5599]={ [1]={ [1]={ limit={ @@ -115224,7 +122017,7 @@ return { [1]="chaos_damage_resistance_%_per_endurance_charge" } }, - [5233]={ + [5600]={ [1]={ [1]={ limit={ @@ -115240,7 +122033,7 @@ return { [1]="chaos_damage_resistance_is_doubled" } }, - [5234]={ + [5601]={ [1]={ [1]={ limit={ @@ -115256,7 +122049,7 @@ return { [1]="chaos_damage_resistance_%_per_poison_stack" } }, - [5235]={ + [5602]={ [1]={ [1]={ limit={ @@ -115281,7 +122074,7 @@ return { [1]="chaos_damage_resistance_%_when_stationary" } }, - [5236]={ + [5603]={ [1]={ [1]={ limit={ @@ -115297,7 +122090,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony" } }, - [5237]={ + [5604]={ [1]={ [1]={ limit={ @@ -115313,7 +122106,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements" } }, - [5238]={ + [5605]={ [1]={ [1]={ limit={ @@ -115329,7 +122122,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [5239]={ + [5606]={ [1]={ [1]={ limit={ @@ -115358,7 +122151,7 @@ return { [1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud" } }, - [5240]={ + [5607]={ [1]={ [1]={ limit={ @@ -115387,7 +122180,7 @@ return { [1]="chaos_damage_with_attack_skills_+%" } }, - [5241]={ + [5608]={ [1]={ [1]={ limit={ @@ -115416,7 +122209,7 @@ return { [1]="chaos_damage_with_spell_skills_+%" } }, - [5242]={ + [5609]={ [1]={ [1]={ limit={ @@ -115432,39 +122225,7 @@ return { [1]="chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems" } }, - [5243]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{}% of Chaos Damage taken as Fire Damage" - } - }, - stats={ - [1]="chaos_hit_and_dot_damage_%_taken_as_fire" - } - }, - [5244]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{}% of Chaos Damage taken as Lightning Damage" - } - }, - stats={ - [1]="chaos_hit_and_dot_damage_%_taken_as_lightning" - } - }, - [5245]={ + [5610]={ [1]={ [1]={ limit={ @@ -115480,7 +122241,7 @@ return { [1]="chaos_resist_unnaffected_by_area_penalites" } }, - [5246]={ + [5611]={ [1]={ [1]={ limit={ @@ -115496,23 +122257,7 @@ return { [1]="chaos_skill_chance_to_hinder_on_hit_%" } }, - [5247]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Chaos Skills" - } - }, - stats={ - [1]="chaos_skill_gem_level_+" - } - }, - [5248]={ + [5612]={ [1]={ [1]={ limit={ @@ -115541,7 +122286,7 @@ return { [1]="chaos_skills_area_of_effect_+%" } }, - [5249]={ + [5613]={ [1]={ [1]={ limit={ @@ -115557,7 +122302,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [5250]={ + [5614]={ [1]={ [1]={ limit={ @@ -115586,7 +122331,7 @@ return { [1]="charged_dash_movement_speed_+%_final" } }, - [5251]={ + [5615]={ [1]={ [1]={ limit={ @@ -115615,23 +122360,7 @@ return { [1]="charm_charges_gained_+%" } }, - [5252]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of charges used by Charms granted to your Life Flasks" - } - }, - stats={ - [1]="charm_charges_used_%_granted_to_life_flasks" - } - }, - [5253]={ + [5616]={ [1]={ [1]={ limit={ @@ -115664,7 +122393,7 @@ return { [1]="charm_charges_used_+%" } }, - [5254]={ + [5617]={ [1]={ [1]={ limit={ @@ -115680,7 +122409,7 @@ return { [1]="charm_create_consecrated_ground_when_used" } }, - [5255]={ + [5618]={ [1]={ [1]={ limit={ @@ -115696,7 +122425,7 @@ return { [1]="charm_defend_with_double_armour_during_effect" } }, - [5256]={ + [5619]={ [1]={ [1]={ limit={ @@ -115725,7 +122454,7 @@ return { [1]="charm_duration_+%_per_25_tribute" } }, - [5257]={ + [5620]={ [1]={ [1]={ limit={ @@ -115754,7 +122483,36 @@ return { [1]="charm_effect_+%_per_10_tribute" } }, - [5258]={ + [5621]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Charms applied to you have {0}% increased Effect per empty Charm slot" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Charms applied to you have {0}% reduced Effect per empty Charm slot" + } + }, + stats={ + [1]="charm_effect_+%_per_empty_charm_slot" + } + }, + [5622]={ [1]={ [1]={ limit={ @@ -115783,7 +122541,7 @@ return { [1]="charm_effect_+%" } }, - [5259]={ + [5623]={ [1]={ [1]={ limit={ @@ -115808,7 +122566,7 @@ return { [1]="charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect" } }, - [5260]={ + [5624]={ [1]={ [1]={ limit={ @@ -115824,7 +122582,7 @@ return { [1]="charm_energy_shield_recharge_starts_when_used" } }, - [5261]={ + [5625]={ [1]={ [1]={ limit={ @@ -115840,7 +122598,7 @@ return { [1]="charm_gain_onslaught_during_effect" } }, - [5262]={ + [5626]={ [1]={ [1]={ limit={ @@ -115856,7 +122614,7 @@ return { [1]="charm_grants_frenzy_charge_when_used" } }, - [5263]={ + [5627]={ [1]={ [1]={ limit={ @@ -115872,7 +122630,7 @@ return { [1]="charm_grants_power_charge_when_used" } }, - [5264]={ + [5628]={ [1]={ [1]={ limit={ @@ -115888,7 +122646,7 @@ return { [1]="charm_grants_up_to_your_maximum_rage_when_used" } }, - [5265]={ + [5629]={ [1]={ [1]={ limit={ @@ -115904,7 +122662,7 @@ return { [1]="charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used" } }, - [5266]={ + [5630]={ [1]={ [1]={ limit={ @@ -115920,7 +122678,7 @@ return { [1]="charm_possesed_by_bear_spirit_for_x_seconds_when_used" } }, - [5267]={ + [5631]={ [1]={ [1]={ limit={ @@ -115936,7 +122694,7 @@ return { [1]="charm_possesed_by_boar_spirit_for_x_seconds_when_used" } }, - [5268]={ + [5632]={ [1]={ [1]={ limit={ @@ -115952,7 +122710,7 @@ return { [1]="charm_possesed_by_cat_spirit_for_x_seconds_when_used" } }, - [5269]={ + [5633]={ [1]={ [1]={ limit={ @@ -115968,7 +122726,7 @@ return { [1]="charm_possesed_by_owl_spirit_for_x_seconds_when_used" } }, - [5270]={ + [5634]={ [1]={ [1]={ limit={ @@ -115984,7 +122742,7 @@ return { [1]="charm_possesed_by_ox_spirit_for_x_seconds_when_used" } }, - [5271]={ + [5635]={ [1]={ [1]={ limit={ @@ -116000,7 +122758,7 @@ return { [1]="charm_possesed_by_primate_spirit_for_x_seconds_when_used" } }, - [5272]={ + [5636]={ [1]={ [1]={ limit={ @@ -116016,7 +122774,7 @@ return { [1]="charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used" } }, - [5273]={ + [5637]={ [1]={ [1]={ limit={ @@ -116032,7 +122790,7 @@ return { [1]="charm_possesed_by_serpent_spirit_for_x_seconds_when_used" } }, - [5274]={ + [5638]={ [1]={ [1]={ limit={ @@ -116048,7 +122806,7 @@ return { [1]="charm_possesed_by_stag_spirit_for_x_seconds_when_used" } }, - [5275]={ + [5639]={ [1]={ [1]={ limit={ @@ -116064,7 +122822,7 @@ return { [1]="charm_possesed_by_wolf_spirit_for_x_seconds_when_used" } }, - [5276]={ + [5640]={ [1]={ [1]={ limit={ @@ -116080,7 +122838,7 @@ return { [1]="charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount" } }, - [5277]={ + [5641]={ [1]={ [1]={ limit={ @@ -116096,7 +122854,7 @@ return { [1]="charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount" } }, - [5278]={ + [5642]={ [1]={ [1]={ limit={ @@ -116112,7 +122870,7 @@ return { [1]="charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect" } }, - [5279]={ + [5643]={ [1]={ [1]={ limit={ @@ -116128,7 +122886,7 @@ return { [1]="charms_%_chance_on_use_to_use_another_charm_without_consuming_charges" } }, - [5280]={ + [5644]={ [1]={ [1]={ limit={ @@ -116144,7 +122902,7 @@ return { [1]="charms_%_chance_to_not_consume_charges" } }, - [5281]={ + [5645]={ [1]={ [1]={ limit={ @@ -116160,7 +122918,7 @@ return { [1]="charms_use_no_charges" } }, - [5282]={ + [5646]={ [1]={ [1]={ limit={ @@ -116176,7 +122934,7 @@ return { [1]="chest_drop_additional_corrupted_item_divination_cards" } }, - [5283]={ + [5647]={ [1]={ [1]={ limit={ @@ -116192,7 +122950,7 @@ return { [1]="chest_drop_additional_currency_item_divination_cards" } }, - [5284]={ + [5648]={ [1]={ [1]={ limit={ @@ -116208,7 +122966,7 @@ return { [1]="chest_drop_additional_divination_cards_from_current_world_area" } }, - [5285]={ + [5649]={ [1]={ [1]={ limit={ @@ -116224,7 +122982,7 @@ return { [1]="chest_drop_additional_divination_cards_from_same_set" } }, - [5286]={ + [5650]={ [1]={ [1]={ limit={ @@ -116240,7 +122998,7 @@ return { [1]="chest_drop_additional_unique_item_divination_cards" } }, - [5287]={ + [5651]={ [1]={ [1]={ limit={ @@ -116256,7 +123014,7 @@ return { [1]="chest_number_of_additional_pirate_uniques_to_drop" } }, - [5288]={ + [5652]={ [1]={ [1]={ limit={ @@ -116285,7 +123043,7 @@ return { [1]="chill_and_freeze_duration_+%" } }, - [5289]={ + [5653]={ [1]={ [1]={ limit={ @@ -116310,7 +123068,7 @@ return { [1]="chill_attackers_for_4_seconds_on_block_%_chance" } }, - [5290]={ + [5654]={ [1]={ [1]={ limit={ @@ -116326,7 +123084,7 @@ return { [1]="chill_chance_based_on_damage_fixed_magnitude" } }, - [5291]={ + [5655]={ [1]={ [1]={ limit={ @@ -116355,7 +123113,7 @@ return { [1]="chill_effect_+%_while_mana_leeching" } }, - [5292]={ + [5656]={ [1]={ [1]={ limit={ @@ -116371,7 +123129,7 @@ return { [1]="chill_effect_is_reversed" } }, - [5293]={ + [5657]={ [1]={ [1]={ limit={ @@ -116400,7 +123158,7 @@ return { [1]="chill_effect_+%" } }, - [5294]={ + [5658]={ [1]={ [1]={ limit={ @@ -116429,7 +123187,23 @@ return { [1]="chill_effect_+%_with_critical_strikes" } }, - [5295]={ + [5659]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSEDCreate Chilled Ground as though dealing {0} damage when you use a Wind Skill" + } + }, + stats={ + [1]="chill_ground_as_though_dealing_X_damage_on_using_a_wind_skill" + } + }, + [5660]={ [1]={ [1]={ limit={ @@ -116445,7 +123219,7 @@ return { [1]="chill_minimum_slow_%_from_mastery" } }, - [5296]={ + [5661]={ [1]={ [1]={ limit={ @@ -116461,7 +123235,7 @@ return { [1]="chill_nearby_enemies_when_you_focus" } }, - [5297]={ + [5662]={ [1]={ [1]={ limit={ @@ -116490,7 +123264,7 @@ return { [1]="chilled_effect_on_self_+%_while_shapeshifted" } }, - [5298]={ + [5663]={ [1]={ [1]={ limit={ @@ -116506,7 +123280,7 @@ return { [1]="chilled_enemies_have_no_elemental_resistance" } }, - [5299]={ + [5664]={ [1]={ [1]={ limit={ @@ -116531,7 +123305,7 @@ return { [1]="chilled_ground_when_hit_with_attack_%" } }, - [5300]={ + [5665]={ [1]={ [1]={ limit={ @@ -116560,7 +123334,7 @@ return { [1]="chilling_areas_also_grant_curse_effect_+%" } }, - [5301]={ + [5666]={ [1]={ [1]={ limit={ @@ -116589,7 +123363,7 @@ return { [1]="chilling_areas_also_grant_lightning_damage_taken_+%" } }, - [5302]={ + [5667]={ [1]={ [1]={ limit={ @@ -116605,7 +123379,7 @@ return { [1]="chills_from_your_hits_cause_shattering" } }, - [5303]={ + [5668]={ [1]={ [1]={ limit={ @@ -116630,7 +123404,7 @@ return { [1]="chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds" } }, - [5304]={ + [5669]={ [1]={ [1]={ limit={ @@ -116646,7 +123420,7 @@ return { [1]="chronomancer_reserves_no_mana" } }, - [5305]={ + [5670]={ [1]={ [1]={ [1]={ @@ -116683,7 +123457,7 @@ return { [1]="clarity_mana_reservation_efficiency_-2%_per_1" } }, - [5306]={ + [5671]={ [1]={ [1]={ limit={ @@ -116712,7 +123486,7 @@ return { [1]="clarity_mana_reservation_efficiency_+%" } }, - [5307]={ + [5672]={ [1]={ [1]={ limit={ @@ -116728,7 +123502,7 @@ return { [1]="clarity_reserves_no_mana" } }, - [5308]={ + [5673]={ [1]={ [1]={ limit={ @@ -116744,7 +123518,7 @@ return { [1]="claw_damage_against_enemies_on_low_life_+%" } }, - [5309]={ + [5674]={ [1]={ [1]={ limit={ @@ -116773,7 +123547,7 @@ return { [1]="claw_damage_+%_while_on_low_life" } }, - [5310]={ + [5675]={ [1]={ [1]={ limit={ @@ -116789,7 +123563,7 @@ return { [1]="cleave_fortify_on_hit" } }, - [5311]={ + [5676]={ [1]={ [1]={ limit={ @@ -116805,7 +123579,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [5312]={ + [5677]={ [1]={ [1]={ limit={ @@ -116834,7 +123608,7 @@ return { [1]="cobra_lash_damage_+%" } }, - [5313]={ + [5678]={ [1]={ [1]={ limit={ @@ -116859,7 +123633,7 @@ return { [1]="cobra_lash_number_of_additional_chains" } }, - [5314]={ + [5679]={ [1]={ [1]={ limit={ @@ -116888,7 +123662,45 @@ return { [1]="cobra_lash_projectile_speed_+%" } }, - [5315]={ + [5680]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Curse Magnitudes" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-100 + } + }, + text="Magnitudes of Curses you inflict are zero" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Curse Magnitudes" + } + }, + stats={ + [1]="coil_of_undoing_curse_magnitude_+%_final" + } + }, + [5681]={ [1]={ [1]={ limit={ @@ -116917,7 +123729,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [5316]={ + [5682]={ [1]={ [1]={ limit={ @@ -116946,7 +123758,7 @@ return { [1]="cold_ailment_effect_+%_against_shocked_enemies" } }, - [5317]={ + [5683]={ [1]={ [1]={ limit={ @@ -116975,7 +123787,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [5318]={ + [5684]={ [1]={ [1]={ limit={ @@ -116991,7 +123803,7 @@ return { [1]="cold_and_chaos_damage_resistance_%" } }, - [5319]={ + [5685]={ [1]={ [1]={ limit={ @@ -117000,14 +123812,59 @@ return { [2]="#" } }, - text="{}% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" + text="{0}% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" } }, stats={ - [1]="cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire" + [1]="cold_damage_+%_cold_infusion_collected_last_8_seconds" } }, - [5320]={ + [5686]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Every Rage also grants {0}% increased Cold Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Every Rage also grants {0}% reduced Cold Damage" + } + }, + stats={ + [1]="cold_damage_+%_per_rage" + } + }, + [5687]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Cold Damage while Ignited" + } + }, + stats={ + [1]="cold_damage_+%_while_ignited" + } + }, + [5688]={ [1]={ [1]={ limit={ @@ -117023,7 +123880,7 @@ return { [1]="cold_damage_+%_per_cold_resistance_above_75" } }, - [5321]={ + [5689]={ [1]={ [1]={ limit={ @@ -117052,7 +123909,7 @@ return { [1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently" } }, - [5322]={ + [5690]={ [1]={ [1]={ limit={ @@ -117068,7 +123925,7 @@ return { [1]="cold_damage_+%_per_25_dexterity" } }, - [5323]={ + [5691]={ [1]={ [1]={ limit={ @@ -117084,7 +123941,7 @@ return { [1]="cold_damage_+%_per_25_intelligence" } }, - [5324]={ + [5692]={ [1]={ [1]={ limit={ @@ -117100,7 +123957,7 @@ return { [1]="cold_damage_+%_per_25_strength" } }, - [5325]={ + [5693]={ [1]={ [1]={ limit={ @@ -117129,7 +123986,7 @@ return { [1]="cold_damage_+%_per_frenzy_charge" } }, - [5326]={ + [5694]={ [1]={ [1]={ limit={ @@ -117158,7 +124015,7 @@ return { [1]="cold_damage_+%_per_missing_cold_resistance" } }, - [5327]={ + [5695]={ [1]={ [1]={ limit={ @@ -117187,7 +124044,7 @@ return { [1]="cold_damage_+%_while_affected_by_hatred" } }, - [5328]={ + [5696]={ [1]={ [1]={ limit={ @@ -117216,7 +124073,7 @@ return { [1]="cold_damage_+%_while_affected_by_herald_of_ice" } }, - [5329]={ + [5697]={ [1]={ [1]={ limit={ @@ -117245,7 +124102,7 @@ return { [1]="cold_damage_+%_while_off_hand_is_empty" } }, - [5330]={ + [5698]={ [1]={ [1]={ limit={ @@ -117261,7 +124118,7 @@ return { [1]="cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [5331]={ + [5699]={ [1]={ [1]={ limit={ @@ -117277,7 +124134,7 @@ return { [1]="cold_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5332]={ + [5700]={ [1]={ [1]={ limit={ @@ -117293,7 +124150,7 @@ return { [1]="cold_damage_taken_+" } }, - [5333]={ + [5701]={ [1]={ [1]={ limit={ @@ -117322,7 +124179,7 @@ return { [1]="cold_damage_taken_+%_if_have_been_hit_recently" } }, - [5334]={ + [5702]={ [1]={ [1]={ limit={ @@ -117351,7 +124208,7 @@ return { [1]="cold_damage_with_attack_skills_+%" } }, - [5335]={ + [5703]={ [1]={ [1]={ limit={ @@ -117380,7 +124237,7 @@ return { [1]="cold_damage_with_spell_skills_+%" } }, - [5336]={ + [5704]={ [1]={ [1]={ limit={ @@ -117409,7 +124266,7 @@ return { [1]="cold_exposure_effect_+%" } }, - [5337]={ + [5705]={ [1]={ [1]={ limit={ @@ -117434,7 +124291,7 @@ return { [1]="cold_exposure_on_hit_magnitude" } }, - [5338]={ + [5706]={ [1]={ [1]={ limit={ @@ -117450,39 +124307,7 @@ return { [1]="cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%" } }, - [5339]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Cold Damage taken as Fire Damage" - } - }, - stats={ - [1]="cold_hit_and_dot_damage_%_taken_as_fire" - } - }, - [5340]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Cold Damage taken as Lightning Damage" - } - }, - stats={ - [1]="cold_hit_and_dot_damage_%_taken_as_lightning" - } - }, - [5341]={ + [5707]={ [1]={ [1]={ limit={ @@ -117511,7 +124336,7 @@ return { [1]="cold_hit_damage_+%_vs_shocked_enemies" } }, - [5342]={ + [5708]={ [1]={ [1]={ limit={ @@ -117527,7 +124352,7 @@ return { [1]="cold_penetration_%_vs_chilled_enemies" } }, - [5343]={ + [5709]={ [1]={ [1]={ limit={ @@ -117543,7 +124368,7 @@ return { [1]="cold_projectile_mine_critical_multiplier_+" } }, - [5344]={ + [5710]={ [1]={ [1]={ limit={ @@ -117572,7 +124397,7 @@ return { [1]="cold_projectile_mine_damage_+%" } }, - [5345]={ + [5711]={ [1]={ [1]={ [1]={ @@ -117601,7 +124426,7 @@ return { [1]="cold_projectile_mine_throwing_speed_negated_+%" } }, - [5346]={ + [5712]={ [1]={ [1]={ limit={ @@ -117630,7 +124455,7 @@ return { [1]="cold_projectile_mine_throwing_speed_+%" } }, - [5347]={ + [5713]={ [1]={ [1]={ limit={ @@ -117659,7 +124484,7 @@ return { [1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice" } }, - [5348]={ + [5714]={ [1]={ [1]={ limit={ @@ -117675,7 +124500,7 @@ return { [1]="cold_resist_unaffected_by_area_penalties" } }, - [5349]={ + [5715]={ [1]={ [1]={ limit={ @@ -117691,23 +124516,7 @@ return { [1]="cold_skill_chance_to_inflict_cold_exposure_%" } }, - [5350]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Cold Skills" - } - }, - stats={ - [1]="cold_skill_gem_level_+" - } - }, - [5351]={ + [5716]={ [1]={ [1]={ limit={ @@ -117723,7 +124532,7 @@ return { [1]="cold_skills_chance_to_poison_on_hit_%" } }, - [5352]={ + [5717]={ [1]={ [1]={ limit={ @@ -117739,7 +124548,7 @@ return { [1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy" } }, - [5353]={ + [5718]={ [1]={ [1]={ limit={ @@ -117748,7 +124557,7 @@ return { [2]="#" } }, - text="Combo count loss occurs {0}% faster" + text="Skills lose Combo {0}% faster" }, [2]={ [1]={ @@ -117761,14 +124570,14 @@ return { [2]=-1 } }, - text="Combo count loss occurs {0}% slower" + text="Skills lose Combo {0}% slower" } }, stats={ [1]="combo_falloff_speed_+%" } }, - [5354]={ + [5719]={ [1]={ [1]={ limit={ @@ -117797,7 +124606,7 @@ return { [1]="combo_finisher_damage_+%_up_to_40%" } }, - [5355]={ + [5720]={ [1]={ [1]={ limit={ @@ -117813,7 +124622,7 @@ return { [1]="combust_area_of_effect_+%" } }, - [5356]={ + [5721]={ [1]={ [1]={ limit={ @@ -117829,7 +124638,39 @@ return { [1]="combust_is_disabled" } }, - [5357]={ + [5722]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions gain {0}% Damage as extra Chaos Damage" + } + }, + stats={ + [1]="companion_%_damage_as_chaos" + } + }, + [5723]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions gain {0}% Damage as extra Cold Damage" + } + }, + stats={ + [1]="companion_%_damage_as_cold" + } + }, + [5724]={ [1]={ [1]={ limit={ @@ -117858,7 +124699,7 @@ return { [1]="companion_accuracy_rating_+%" } }, - [5358]={ + [5725]={ [1]={ [1]={ limit={ @@ -117887,7 +124728,7 @@ return { [1]="companion_area_of_effect_+%" } }, - [5359]={ + [5726]={ [1]={ [1]={ limit={ @@ -117916,7 +124757,23 @@ return { [1]="companion_attack_speed_+%" } }, - [5360]={ + [5727]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions have a {0}% chance to Poison on Hit" + } + }, + stats={ + [1]="companion_chance_to_poison_on_hit_%" + } + }, + [5728]={ [1]={ [1]={ limit={ @@ -117932,7 +124789,23 @@ return { [1]="companion_chaos_resistance_%" } }, - [5361]={ + [5729]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions deal {0}% more Damage for each different type of dead Companion you have" + } + }, + stats={ + [1]="companion_damage_+%_final_from_idol_per_different_dead_companion" + } + }, + [5730]={ [1]={ [1]={ limit={ @@ -117961,7 +124834,7 @@ return { [1]="companion_damage_+%_vs_immobilised_enemies" } }, - [5362]={ + [5731]={ [1]={ [1]={ limit={ @@ -117977,7 +124850,7 @@ return { [1]="companion_damage_increases_and_reductions_also_affects_you" } }, - [5363]={ + [5732]={ [1]={ [1]={ limit={ @@ -118006,7 +124879,36 @@ return { [1]="companion_damage_+%" } }, - [5364]={ + [5733]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions deal {0}% increased damage per Idol in your Equipment" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Companions deal {0}% reduced damage per Idol in your Equipment" + } + }, + stats={ + [1]="companion_damage_+%_per_socketed_idol" + } + }, + [5734]={ [1]={ [1]={ limit={ @@ -118022,7 +124924,7 @@ return { [1]="companion_elemental_resistance_%" } }, - [5365]={ + [5735]={ [1]={ [1]={ limit={ @@ -118031,14 +124933,14 @@ return { [2]="#" } }, - text="Companions have {0}% chance to Maim on HitDamage" + text="Companions have {0}% chance to Maim on Hit" } }, stats={ [1]="companion_maim_on_hit_%" } }, - [5366]={ + [5736]={ [1]={ [1]={ limit={ @@ -118067,7 +124969,39 @@ return { [1]="companion_maximum_life_+%" } }, - [5367]={ + [5737]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions have {0}% increased Movement Speed" + } + }, + stats={ + [1]="companion_movement_speed_%" + } + }, + [5738]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions have {0}% chance to gain Onslaught on Kill" + } + }, + stats={ + [1]="companion_onslaught_on_kill_%" + } + }, + [5739]={ [1]={ [1]={ limit={ @@ -118096,7 +125030,7 @@ return { [1]="companion_reservation_+%" } }, - [5368]={ + [5740]={ [1]={ [1]={ limit={ @@ -118112,7 +125046,7 @@ return { [1]="companion_takes_%_damage_before_you" } }, - [5369]={ + [5741]={ [1]={ [1]={ limit={ @@ -118128,7 +125062,56 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [5370]={ + [5742]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" + } + }, + stats={ + [1]="companion_takes_%_damage_from_deflected_hits_before_you" + } + }, + [5743]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Companions gain Onslaught for {0} second on Hitting your Marked targets" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions gain Onslaught for {0} seconds on Hitting your Marked targets" + } + }, + stats={ + [1]="companions_gain_onslaught_on_hitting_enemies_marked_by_you_ms" + } + }, + [5744]={ [1]={ [1]={ limit={ @@ -118144,7 +125127,7 @@ return { [1]="companions_gain_your_dexterity" } }, - [5371]={ + [5745]={ [1]={ [1]={ limit={ @@ -118160,7 +125143,39 @@ return { [1]="companions_gain_your_strength" } }, - [5372]={ + [5746]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions in your Presence have {0:+d}% to Chaos Resistance" + } + }, + stats={ + [1]="companions_in_presence_base_chaos_damage_resistance_%" + } + }, + [5747]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Companions in your Presence have {0:+d}% to all Elemental Resistances" + } + }, + stats={ + [1]="companions_in_presence_base_resist_all_elements_%" + } + }, + [5748]={ [1]={ [1]={ limit={ @@ -118185,7 +125200,23 @@ return { [1]="companions_in_presence_damage_+%_while_you_are_shapeshifted" } }, - [5373]={ + [5749]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions in your Presence gain {0} Rage on hit" + } + }, + stats={ + [1]="companions_in_presence_gain_x_rage_on_hit" + } + }, + [5750]={ [1]={ [1]={ limit={ @@ -118201,7 +125232,39 @@ return { [1]="companions_in_presence_have_onslaught_while_you_are_shapeshifted" } }, - [5374]={ + [5751]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions in your Presence Gain {0}% of Damage as Extra Chaos Damage" + } + }, + stats={ + [1]="companions_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" + } + }, + [5752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Companions in your Presence Gain {0}% of Damage as Extra Damage of a random Element" + } + }, + stats={ + [1]="companions_in_presence_non_skill_base_all_damage_%_to_gain_as_random_element" + } + }, + [5753]={ [1]={ [1]={ limit={ @@ -118217,7 +125280,7 @@ return { [1]="conductivity_no_reservation" } }, - [5375]={ + [5754]={ [1]={ [1]={ limit={ @@ -118233,7 +125296,7 @@ return { [1]="connected_notables_grant_armour_display" } }, - [5376]={ + [5755]={ [1]={ [1]={ limit={ @@ -118249,7 +125312,7 @@ return { [1]="consecrated_ground_additional_physical_damage_reduction_%" } }, - [5377]={ + [5756]={ [1]={ [1]={ limit={ @@ -118265,7 +125328,7 @@ return { [1]="consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration" } }, - [5378]={ + [5757]={ [1]={ [1]={ limit={ @@ -118294,7 +125357,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [5379]={ + [5758]={ [1]={ [1]={ limit={ @@ -118323,7 +125386,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [5380]={ + [5759]={ [1]={ [1]={ limit={ @@ -118352,7 +125415,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [5381]={ + [5760]={ [1]={ [1]={ limit={ @@ -118381,7 +125444,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry" } }, - [5382]={ + [5761]={ [1]={ [1]={ limit={ @@ -118397,7 +125460,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [5383]={ + [5762]={ [1]={ [1]={ limit={ @@ -118413,7 +125476,7 @@ return { [1]="consecrated_ground_immune_to_status_ailments" } }, - [5384]={ + [5763]={ [1]={ [1]={ [1]={ @@ -118433,7 +125496,7 @@ return { [1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry" } }, - [5385]={ + [5764]={ [1]={ [1]={ limit={ @@ -118458,7 +125521,7 @@ return { [1]="consecrated_ground_on_death" } }, - [5386]={ + [5765]={ [1]={ [1]={ limit={ @@ -118483,7 +125546,7 @@ return { [1]="consecrated_ground_on_hit" } }, - [5387]={ + [5766]={ [1]={ [1]={ limit={ @@ -118499,7 +125562,7 @@ return { [1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds" } }, - [5388]={ + [5767]={ [1]={ [1]={ limit={ @@ -118515,7 +125578,7 @@ return { [1]="consecrated_ground_while_stationary_radius" } }, - [5389]={ + [5768]={ [1]={ [1]={ limit={ @@ -118531,7 +125594,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength" } }, - [5390]={ + [5769]={ [1]={ [1]={ limit={ @@ -118547,7 +125610,7 @@ return { [1]="consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground" } }, - [5391]={ + [5770]={ [1]={ [1]={ limit={ @@ -118576,7 +125639,7 @@ return { [1]="consecrated_path_area_of_effect_+%" } }, - [5392]={ + [5771]={ [1]={ [1]={ limit={ @@ -118605,7 +125668,7 @@ return { [1]="consecrated_path_damage_+%" } }, - [5393]={ + [5772]={ [1]={ [1]={ limit={ @@ -118621,7 +125684,7 @@ return { [1]="consume_X_life_instead_of_last_crossbow_bolt" } }, - [5394]={ + [5773]={ [1]={ [1]={ limit={ @@ -118637,7 +125700,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [5395]={ + [5774]={ [1]={ [1]={ limit={ @@ -118666,7 +125729,7 @@ return { [1]="consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life" } }, - [5396]={ + [5775]={ [1]={ [1]={ limit={ @@ -118687,7 +125750,7 @@ return { [2]="bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount" } }, - [5397]={ + [5776]={ [1]={ [1]={ limit={ @@ -118703,7 +125766,7 @@ return { [1]="consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage" } }, - [5398]={ + [5777]={ [1]={ [1]={ limit={ @@ -118728,7 +125791,7 @@ return { [1]="contagion_spread_on_hit_affected_enemy_%" } }, - [5399]={ + [5778]={ [1]={ [1]={ limit={ @@ -118757,7 +125820,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [5400]={ + [5779]={ [1]={ [1]={ limit={ @@ -118786,7 +125849,23 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [5401]={ + [5780]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Convert 100% of maximum Energy Shield to maximum Divinity" + } + }, + stats={ + [1]="convert_100%_energy_shield_to_divinity" + } + }, + [5781]={ [1]={ [1]={ limit={ @@ -118802,7 +125881,7 @@ return { [1]="convert_all_life_leech_to_energy_shield_leech" } }, - [5402]={ + [5782]={ [1]={ [1]={ limit={ @@ -118818,7 +125897,7 @@ return { [1]="cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds" } }, - [5403]={ + [5783]={ [1]={ [1]={ limit={ @@ -118847,7 +125926,7 @@ return { [1]="cooldown_recovery_+%_per_power_charge" } }, - [5404]={ + [5784]={ [1]={ [1]={ limit={ @@ -118876,7 +125955,7 @@ return { [1]="cooldown_speed_+%_per_brand_up_to_40%" } }, - [5405]={ + [5785]={ [1]={ [1]={ limit={ @@ -118901,7 +125980,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [5406]={ + [5786]={ [1]={ [1]={ limit={ @@ -118930,7 +126009,7 @@ return { [1]="corpse_eruption_cast_speed_+%" } }, - [5407]={ + [5787]={ [1]={ [1]={ limit={ @@ -118959,7 +126038,7 @@ return { [1]="corpse_eruption_damage_+%" } }, - [5408]={ + [5788]={ [1]={ [1]={ limit={ @@ -118988,7 +126067,7 @@ return { [1]="corpse_warp_cast_speed_+%" } }, - [5409]={ + [5789]={ [1]={ [1]={ limit={ @@ -119017,7 +126096,7 @@ return { [1]="corpse_warp_damage_+%" } }, - [5410]={ + [5790]={ [1]={ [1]={ limit={ @@ -119033,7 +126112,7 @@ return { [1]="corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry" } }, - [5411]={ + [5791]={ [1]={ [1]={ limit={ @@ -119049,23 +126128,7 @@ return { [1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second" } }, - [5412]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Corrupted Skill Gems" - } - }, - stats={ - [1]="corrupted_skill_gem_level_+" - } - }, - [5413]={ + [5792]={ [1]={ [1]={ limit={ @@ -119081,7 +126144,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [5414]={ + [5793]={ [1]={ [1]={ limit={ @@ -119110,7 +126173,7 @@ return { [1]="corrupting_fever_damage_+%" } }, - [5415]={ + [5794]={ [1]={ [1]={ limit={ @@ -119139,7 +126202,7 @@ return { [1]="corrupting_fever_duration_+%" } }, - [5416]={ + [5795]={ [1]={ [1]={ limit={ @@ -119168,7 +126231,7 @@ return { [1]="counterattacks_cooldown_recovery_+%" } }, - [5417]={ + [5796]={ [1]={ [1]={ limit={ @@ -119184,7 +126247,7 @@ return { [1]="counterattacks_deal_double_damage" } }, - [5418]={ + [5797]={ [1]={ [1]={ limit={ @@ -119209,7 +126272,7 @@ return { [1]="counterattacks_debilitate_for_1_second_on_hit_%_chance" } }, - [5419]={ + [5798]={ [1]={ [1]={ limit={ @@ -119225,7 +126288,7 @@ return { [1]="cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [5420]={ + [5799]={ [1]={ [1]={ limit={ @@ -119250,7 +126313,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [5421]={ + [5800]={ [1]={ [1]={ limit={ @@ -119266,7 +126329,7 @@ return { [1]="cover_in_ash_on_hit_%_while_you_are_burning" } }, - [5422]={ + [5801]={ [1]={ [1]={ limit={ @@ -119282,7 +126345,7 @@ return { [1]="cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [5423]={ + [5802]={ [1]={ [1]={ limit={ @@ -119298,7 +126361,7 @@ return { [1]="cover_in_frost_on_hit" } }, - [5424]={ + [5803]={ [1]={ [1]={ limit={ @@ -119327,7 +126390,7 @@ return { [1]="crackling_lance_cast_speed_+%" } }, - [5425]={ + [5804]={ [1]={ [1]={ limit={ @@ -119356,7 +126419,7 @@ return { [1]="crackling_lance_damage_+%" } }, - [5426]={ + [5805]={ [1]={ [1]={ limit={ @@ -119372,7 +126435,7 @@ return { [1]="create_additional_brand_%_chance" } }, - [5427]={ + [5806]={ [1]={ [1]={ limit={ @@ -119388,7 +126451,7 @@ return { [1]="create_blighted_spore_on_killing_rare_enemy" } }, - [5428]={ + [5807]={ [1]={ [1]={ limit={ @@ -119404,7 +126467,7 @@ return { [1]="create_chilling_ground_on_freeze" } }, - [5429]={ + [5808]={ [1]={ [1]={ limit={ @@ -119420,7 +126483,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [5430]={ + [5809]={ [1]={ [1]={ limit={ @@ -119436,7 +126499,7 @@ return { [1]="create_consecrated_ground_on_kill_%" } }, - [5431]={ + [5810]={ [1]={ [1]={ limit={ @@ -119461,7 +126524,7 @@ return { [1]="create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [5432]={ + [5811]={ [1]={ [1]={ limit={ @@ -119482,7 +126545,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [5433]={ + [5812]={ [1]={ [1]={ limit={ @@ -119498,7 +126561,7 @@ return { [1]="create_profane_ground_instead_of_consecrated_ground" } }, - [5434]={ + [5813]={ [1]={ [1]={ limit={ @@ -119514,7 +126577,7 @@ return { [1]="create_smoke_cloud_on_kill_%_chance" } }, - [5435]={ + [5814]={ [1]={ [1]={ limit={ @@ -119530,7 +126593,7 @@ return { [1]="created_remnants_have_%_chance_to_duplicate_pick_up_results" } }, - [5436]={ + [5815]={ [1]={ [1]={ limit={ @@ -119559,7 +126622,7 @@ return { [1]="creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5437]={ + [5816]={ [1]={ [1]={ [1]={ @@ -119579,7 +126642,7 @@ return { [1]="cremation_base_fires_projectile_every_x_ms" } }, - [5438]={ + [5817]={ [1]={ [1]={ limit={ @@ -119608,7 +126671,32 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [5439]={ + [5818]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Damage Bonus while Shocked" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Critical Damage Bonus while Shocked" + } + }, + stats={ + [1]="critical_bonus_+%_final_while_shocked" + } + }, + [5819]={ [1]={ [1]={ limit={ @@ -119633,7 +126721,7 @@ return { [1]="critical_chance_luck_against_parry_debuffed_enemies" } }, - [5440]={ + [5820]={ [1]={ [1]={ limit={ @@ -119642,14 +126730,14 @@ return { [2]="#" } }, - text="1% increased Critical Damage Bonus per {0} current Life" + text="{0}% increased Critical Damage Bonus per 50 current Life" } }, stats={ - [1]="critical_damage_+1%_per_X_current_life" + [1]="critical_damage_+%_per_50_current_life" } }, - [5441]={ + [5821]={ [1]={ [1]={ limit={ @@ -119678,7 +126766,7 @@ return { [1]="critical_hit_bleeding_effect_+%" } }, - [5442]={ + [5822]={ [1]={ [1]={ limit={ @@ -119707,7 +126795,7 @@ return { [1]="critical_hit_chance_+%_against_enemies_entered_your_presence_recently" } }, - [5443]={ + [5823]={ [1]={ [1]={ limit={ @@ -119736,7 +126824,7 @@ return { [1]="critical_hit_chance_+%_vs_humanoids" } }, - [5444]={ + [5824]={ [1]={ [1]={ limit={ @@ -119765,7 +126853,7 @@ return { [1]="critical_hit_damage_+%_against_enemies_exited_your_presence_recently" } }, - [5445]={ + [5825]={ [1]={ [1]={ limit={ @@ -119794,7 +126882,7 @@ return { [1]="critical_hit_damage_bonus_+%_if_consumed_power_charge_recently" } }, - [5446]={ + [5826]={ [1]={ [1]={ limit={ @@ -119823,7 +126911,7 @@ return { [1]="critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance" } }, - [5447]={ + [5827]={ [1]={ [1]={ limit={ @@ -119852,7 +126940,7 @@ return { [1]="critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance" } }, - [5448]={ + [5828]={ [1]={ [1]={ limit={ @@ -119881,7 +126969,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [5449]={ + [5829]={ [1]={ [1]={ limit={ @@ -119910,7 +126998,7 @@ return { [1]="critical_hit_ignite_effect_+%" } }, - [5450]={ + [5830]={ [1]={ [1]={ limit={ @@ -119939,7 +127027,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [5451]={ + [5831]={ [1]={ [1]={ limit={ @@ -119955,7 +127043,36 @@ return { [1]="critical_hits_always_apply_impale" } }, - [5452]={ + [5832]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies you Critically Hit get {0}% increased Life Regeneration Rate for 4 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies you Critically Hit get {0}% reduced Life Regeneration Rate for 4 seconds" + } + }, + stats={ + [1]="critical_hits_apply_life_regeneration_rate_+%_for_4_seconds" + } + }, + [5833]={ [1]={ [1]={ limit={ @@ -119971,7 +127088,7 @@ return { [1]="critical_hits_cannot_consume_impale" } }, - [5453]={ + [5834]={ [1]={ [1]={ limit={ @@ -119987,7 +127104,7 @@ return { [1]="critical_hits_ignore_armour" } }, - [5454]={ + [5835]={ [1]={ [1]={ limit={ @@ -120003,7 +127120,7 @@ return { [1]="critical_multiplier_+%_per_10_max_es_on_shield" } }, - [5455]={ + [5836]={ [1]={ [1]={ limit={ @@ -120032,7 +127149,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_marked_by_you" } }, - [5456]={ + [5837]={ [1]={ [1]={ limit={ @@ -120061,7 +127178,7 @@ return { [1]="critical_strike_chance_+%_final_while_affected_by_precision" } }, - [5457]={ + [5838]={ [1]={ [1]={ limit={ @@ -120090,7 +127207,7 @@ return { [1]="critical_strike_chance_+%_if_triggered_skill_recently" } }, - [5458]={ + [5839]={ [1]={ [1]={ limit={ @@ -120119,7 +127236,7 @@ return { [1]="critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently" } }, - [5459]={ + [5840]={ [1]={ [1]={ limit={ @@ -120148,7 +127265,7 @@ return { [1]="critical_strike_chance_+%_vs_dazed_enemies" } }, - [5460]={ + [5841]={ [1]={ [1]={ limit={ @@ -120177,7 +127294,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_further_than_6m_distance" } }, - [5461]={ + [5842]={ [1]={ [1]={ limit={ @@ -120206,7 +127323,7 @@ return { [1]="critical_strike_chance_+%_vs_exposed" } }, - [5462]={ + [5843]={ [1]={ [1]={ limit={ @@ -120235,7 +127352,7 @@ return { [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [5463]={ + [5844]={ [1]={ [1]={ limit={ @@ -120264,7 +127381,7 @@ return { [1]="critical_strike_chance_+%_vs_marked_enemies" } }, - [5464]={ + [5845]={ [1]={ [1]={ limit={ @@ -120293,7 +127410,7 @@ return { [1]="critical_strike_chance_+%_while_shapeshifted" } }, - [5465]={ + [5846]={ [1]={ [1]={ limit={ @@ -120322,7 +127439,7 @@ return { [1]="critical_strike_chance_+%_with_unarmed_attacks" } }, - [5466]={ + [5847]={ [1]={ [1]={ limit={ @@ -120351,7 +127468,7 @@ return { [1]="critical_strike_chance_against_cursed_enemies_+%" } }, - [5467]={ + [5848]={ [1]={ [1]={ limit={ @@ -120367,7 +127484,7 @@ return { [1]="critical_strike_chance_cannot_be_rerolled" } }, - [5468]={ + [5849]={ [1]={ [1]={ limit={ @@ -120383,7 +127500,7 @@ return { [1]="critical_strike_chance_increased_by_lightning_resistance" } }, - [5469]={ + [5850]={ [1]={ [1]={ limit={ @@ -120399,7 +127516,7 @@ return { [1]="critical_strike_chance_increased_by_overcapped_lightning_resistance" } }, - [5470]={ + [5851]={ [1]={ [1]={ limit={ @@ -120415,7 +127532,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry" } }, - [5471]={ + [5852]={ [1]={ [1]={ limit={ @@ -120444,7 +127561,7 @@ return { [1]="critical_strike_chance_+%_during_any_flask_effect" } }, - [5472]={ + [5853]={ [1]={ [1]={ limit={ @@ -120473,7 +127590,7 @@ return { [1]="critical_strike_chance_+%_final_while_unhinged" } }, - [5473]={ + [5854]={ [1]={ [1]={ limit={ @@ -120502,7 +127619,7 @@ return { [1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently" } }, - [5474]={ + [5855]={ [1]={ [1]={ limit={ @@ -120531,7 +127648,7 @@ return { [1]="critical_strike_chance_+%_if_enemy_killed_recently" } }, - [5475]={ + [5856]={ [1]={ [1]={ limit={ @@ -120560,7 +127677,7 @@ return { [1]="critical_strike_chance_+%_if_have_been_shocked_recently" } }, - [5476]={ + [5857]={ [1]={ [1]={ limit={ @@ -120589,7 +127706,7 @@ return { [1]="critical_strike_chance_+%_if_have_not_crit_recently" } }, - [5477]={ + [5858]={ [1]={ [1]={ limit={ @@ -120618,7 +127735,7 @@ return { [1]="critical_strike_chance_+%_if_havent_blocked_recently" } }, - [5478]={ + [5859]={ [1]={ [1]={ limit={ @@ -120647,7 +127764,7 @@ return { [1]="critical_strike_chance_+%_if_not_gained_power_charge_recently" } }, - [5479]={ + [5860]={ [1]={ [1]={ limit={ @@ -120676,7 +127793,7 @@ return { [1]="critical_strike_chance_+%_per_10_strength" } }, - [5480]={ + [5861]={ [1]={ [1]={ limit={ @@ -120692,7 +127809,7 @@ return { [1]="critical_strike_chance_+%_per_25_intelligence" } }, - [5481]={ + [5862]={ [1]={ [1]={ limit={ @@ -120721,7 +127838,7 @@ return { [1]="critical_strike_chance_+%_per_blitz_charge" } }, - [5482]={ + [5863]={ [1]={ [1]={ limit={ @@ -120750,7 +127867,7 @@ return { [1]="critical_strike_chance_+%_per_brand" } }, - [5483]={ + [5864]={ [1]={ [1]={ limit={ @@ -120779,7 +127896,7 @@ return { [1]="critical_strike_chance_+%_per_endurance_charge" } }, - [5484]={ + [5865]={ [1]={ [1]={ limit={ @@ -120808,7 +127925,7 @@ return { [1]="critical_strike_chance_+%_per_frenzy_charge" } }, - [5485]={ + [5866]={ [1]={ [1]={ limit={ @@ -120837,7 +127954,7 @@ return { [1]="critical_strike_chance_+%_per_intensity" } }, - [5486]={ + [5867]={ [1]={ [1]={ limit={ @@ -120866,7 +127983,7 @@ return { [1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%" } }, - [5487]={ + [5868]={ [1]={ [1]={ limit={ @@ -120895,7 +128012,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [5488]={ + [5869]={ [1]={ [1]={ limit={ @@ -120924,7 +128041,7 @@ return { [1]="critical_strike_chance_+%_vs_taunted_enemies" } }, - [5489]={ + [5870]={ [1]={ [1]={ limit={ @@ -120953,7 +128070,7 @@ return { [1]="critical_strike_chance_+%_while_affected_by_wrath" } }, - [5490]={ + [5871]={ [1]={ [1]={ limit={ @@ -120982,7 +128099,7 @@ return { [1]="critical_strike_chance_+%_while_channelling" } }, - [5491]={ + [5872]={ [1]={ [1]={ limit={ @@ -121011,7 +128128,7 @@ return { [1]="spell_critical_strike_chance_+%_while_dual_wielding" } }, - [5492]={ + [5873]={ [1]={ [1]={ limit={ @@ -121040,7 +128157,7 @@ return { [1]="spell_critical_strike_chance_+%_while_holding_shield" } }, - [5493]={ + [5874]={ [1]={ [1]={ limit={ @@ -121069,7 +128186,7 @@ return { [1]="spell_critical_strike_chance_+%_while_wielding_staff" } }, - [5494]={ + [5875]={ [1]={ [1]={ limit={ @@ -121098,7 +128215,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_depleted_physical_aegis" } }, - [5495]={ + [5876]={ [1]={ [1]={ limit={ @@ -121114,7 +128231,7 @@ return { [1]="critical_strike_damage_cannot_be_reflected" } }, - [5496]={ + [5877]={ [1]={ [1]={ limit={ @@ -121130,7 +128247,7 @@ return { [1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently" } }, - [5497]={ + [5878]={ [1]={ [1]={ limit={ @@ -121146,7 +128263,7 @@ return { [1]="critical_strike_multiplier_+_vs_stunned_enemies" } }, - [5498]={ + [5879]={ [1]={ [1]={ limit={ @@ -121162,7 +128279,7 @@ return { [1]="critical_strike_multiplier_for_arrows_that_pierce_+" } }, - [5499]={ + [5880]={ [1]={ [1]={ limit={ @@ -121178,7 +128295,7 @@ return { [1]="critical_strike_multiplier_is_250" } }, - [5500]={ + [5881]={ [1]={ [1]={ limit={ @@ -121194,7 +128311,7 @@ return { [1]="critical_strike_multiplier_+_during_any_flask_effect" } }, - [5501]={ + [5882]={ [1]={ [1]={ limit={ @@ -121210,7 +128327,7 @@ return { [1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently" } }, - [5502]={ + [5883]={ [1]={ [1]={ limit={ @@ -121226,7 +128343,7 @@ return { [1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently" } }, - [5503]={ + [5884]={ [1]={ [1]={ limit={ @@ -121242,7 +128359,7 @@ return { [1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence" } }, - [5504]={ + [5885]={ [1]={ [1]={ limit={ @@ -121258,7 +128375,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_killed_recently" } }, - [5505]={ + [5886]={ [1]={ [1]={ limit={ @@ -121274,7 +128391,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_shattered_recently" } }, - [5506]={ + [5887]={ [1]={ [1]={ limit={ @@ -121299,7 +128416,7 @@ return { [1]="critical_strike_multiplier_+_if_gained_power_charge_recently" } }, - [5507]={ + [5888]={ [1]={ [1]={ limit={ @@ -121328,7 +128445,7 @@ return { [1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently" } }, - [5508]={ + [5889]={ [1]={ [1]={ limit={ @@ -121344,7 +128461,7 @@ return { [1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby" } }, - [5509]={ + [5890]={ [1]={ [1]={ limit={ @@ -121360,7 +128477,7 @@ return { [1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently" } }, - [5510]={ + [5891]={ [1]={ [1]={ limit={ @@ -121376,7 +128493,7 @@ return { [1]="critical_strike_multiplier_+_if_you_have_blocked_recently" } }, - [5511]={ + [5892]={ [1]={ [1]={ limit={ @@ -121392,7 +128509,7 @@ return { [1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second" } }, - [5512]={ + [5893]={ [1]={ [1]={ limit={ @@ -121408,7 +128525,7 @@ return { [1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40" } }, - [5513]={ + [5894]={ [1]={ [1]={ limit={ @@ -121424,7 +128541,7 @@ return { [1]="critical_strike_multiplier_+_vs_taunted_enemies" } }, - [5514]={ + [5895]={ [1]={ [1]={ limit={ @@ -121440,7 +128557,7 @@ return { [1]="critical_strike_multiplier_+_vs_unique_enemies" } }, - [5515]={ + [5896]={ [1]={ [1]={ limit={ @@ -121456,7 +128573,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_anger" } }, - [5516]={ + [5897]={ [1]={ [1]={ limit={ @@ -121472,7 +128589,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_precision" } }, - [5517]={ + [5898]={ [1]={ [1]={ limit={ @@ -121488,7 +128605,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_dual_wielding" } }, - [5518]={ + [5899]={ [1]={ [1]={ limit={ @@ -121504,7 +128621,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_holding_shield" } }, - [5519]={ + [5900]={ [1]={ [1]={ limit={ @@ -121520,7 +128637,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_wielding_staff" } }, - [5520]={ + [5901]={ [1]={ [1]={ limit={ @@ -121536,7 +128653,7 @@ return { [1]="critical_strike_multiplier_+_with_herald_skills" } }, - [5521]={ + [5902]={ [1]={ [1]={ limit={ @@ -121552,7 +128669,7 @@ return { [1]="critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds" } }, - [5522]={ + [5903]={ [1]={ [1]={ limit={ @@ -121568,7 +128685,7 @@ return { [1]="critical_strike_multiplier_+%_with_claws_daggers" } }, - [5523]={ + [5904]={ [1]={ [1]={ limit={ @@ -121584,7 +128701,7 @@ return { [1]="critical_strike_%_chance_to_deal_double_damage" } }, - [5524]={ + [5905]={ [1]={ [1]={ limit={ @@ -121600,7 +128717,7 @@ return { [1]="critical_strikes_always_knockback_shocked_enemies" } }, - [5525]={ + [5906]={ [1]={ [1]={ limit={ @@ -121616,7 +128733,7 @@ return { [1]="critical_strikes_deal_no_damage" } }, - [5526]={ + [5907]={ [1]={ [1]={ limit={ @@ -121632,7 +128749,7 @@ return { [1]="critical_strikes_do_not_always_ignite" } }, - [5527]={ + [5908]={ [1]={ [1]={ limit={ @@ -121648,7 +128765,7 @@ return { [1]="critical_strikes_from_spells_have_no_multiplier" } }, - [5528]={ + [5909]={ [1]={ [1]={ limit={ @@ -121664,7 +128781,7 @@ return { [1]="critical_strikes_ignore_lightning_resistance" } }, - [5529]={ + [5910]={ [1]={ [1]={ limit={ @@ -121680,7 +128797,7 @@ return { [1]="critical_strikes_ignore_positive_elemental_resistances" } }, - [5530]={ + [5911]={ [1]={ [1]={ limit={ @@ -121696,7 +128813,7 @@ return { [1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry" } }, - [5531]={ + [5912]={ [1]={ [1]={ limit={ @@ -121712,7 +128829,7 @@ return { [1]="critical_support_gem_level_+" } }, - [5532]={ + [5913]={ [1]={ [1]={ limit={ @@ -121728,7 +128845,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [5533]={ + [5914]={ [1]={ [1]={ limit={ @@ -121744,7 +128861,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently" } }, - [5534]={ + [5915]={ [1]={ [1]={ limit={ @@ -121773,23 +128890,7 @@ return { [1]="crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds" } }, - [5535]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Crossbow Skill Gems" - } - }, - stats={ - [1]="crossbow_skill_gem_level_+" - } - }, - [5536]={ + [5916]={ [1]={ [1]={ limit={ @@ -121805,7 +128906,7 @@ return { [1]="crowd_control_effects_are_triggered_at_%_poise_threshold_instead" } }, - [5537]={ + [5917]={ [1]={ [1]={ limit={ @@ -121834,7 +128935,7 @@ return { [1]="cruelty_effect_+%" } }, - [5538]={ + [5918]={ [1]={ [1]={ limit={ @@ -121859,7 +128960,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [5539]={ + [5919]={ [1]={ [1]={ [1]={ @@ -121879,7 +128980,7 @@ return { [1]="crush_on_hit_ms_vs_full_life_enemies" } }, - [5540]={ + [5920]={ [1]={ [1]={ limit={ @@ -121895,23 +128996,36 @@ return { [1]="culling_strike_enemies_on_block" } }, - [5541]={ + [5921]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Culling Strike against Enemies Cursed with Poacher's Mark" + text="{0}% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Culling Strike Threshold if you've dealt a Culling Strike Recently" } }, stats={ - [1]="culling_strike_on_enemies_affected_by_poachers_mark" + [1]="culling_strike_threshold_+%_if_culled_recently" } }, - [5542]={ + [5922]={ [1]={ [1]={ limit={ @@ -121940,7 +129054,7 @@ return { [1]="culling_strike_threshold_+%_vs_immobilised_enemies" } }, - [5543]={ + [5923]={ [1]={ [1]={ limit={ @@ -121969,7 +129083,7 @@ return { [1]="culling_strike_threshold_+%_vs_rare_or_unique_monsters" } }, - [5544]={ + [5924]={ [1]={ [1]={ limit={ @@ -121998,7 +129112,7 @@ return { [1]="culling_strike_threshold_+%" } }, - [5545]={ + [5925]={ [1]={ [1]={ limit={ @@ -122014,7 +129128,7 @@ return { [1]="culling_strike_vs_beasts_while_in_presence_of_beast_companion" } }, - [5546]={ + [5926]={ [1]={ [1]={ limit={ @@ -122030,7 +129144,7 @@ return { [1]="culling_strike_vs_cursed_enemies" } }, - [5547]={ + [5927]={ [1]={ [1]={ limit={ @@ -122046,7 +129160,7 @@ return { [1]="culling_strike_vs_marked_enemy" } }, - [5548]={ + [5928]={ [1]={ [1]={ limit={ @@ -122071,7 +129185,7 @@ return { [1]="current_energy_shield_%_as_physical_damage_reduction" } }, - [5549]={ + [5929]={ [1]={ [1]={ limit={ @@ -122105,7 +129219,7 @@ return { [1]="current_energy_shield_%_as_elemental_damage_reduction" } }, - [5550]={ + [5930]={ [1]={ [1]={ limit={ @@ -122134,7 +129248,7 @@ return { [1]="curse_aura_skill_area_of_effect_+%" } }, - [5551]={ + [5931]={ [1]={ [1]={ limit={ @@ -122163,7 +129277,7 @@ return { [1]="curse_aura_skills_reservation_efficiency_+%" } }, - [5552]={ + [5932]={ [1]={ [1]={ [1]={ @@ -122200,7 +129314,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_-2%_per_1" } }, - [5553]={ + [5933]={ [1]={ [1]={ limit={ @@ -122229,7 +129343,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_+%" } }, - [5554]={ + [5934]={ [1]={ [1]={ limit={ @@ -122262,7 +129376,7 @@ return { [1]="curse_delay_+%" } }, - [5555]={ + [5935]={ [1]={ [1]={ limit={ @@ -122291,7 +129405,7 @@ return { [1]="curse_delay_+%_per_20_tribute" } }, - [5556]={ + [5936]={ [1]={ [1]={ limit={ @@ -122320,7 +129434,7 @@ return { [1]="curse_duration_+%_if_you_have_at_least_100_tribute" } }, - [5557]={ + [5937]={ [1]={ [1]={ limit={ @@ -122349,7 +129463,7 @@ return { [1]="curse_duration_+%_per_10_tribute" } }, - [5558]={ + [5938]={ [1]={ [1]={ limit={ @@ -122378,7 +129492,7 @@ return { [1]="curse_effect_on_self_+%_while_on_consecrated_ground" } }, - [5559]={ + [5939]={ [1]={ [1]={ limit={ @@ -122407,7 +129521,7 @@ return { [1]="curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask" } }, - [5560]={ + [5940]={ [1]={ [1]={ limit={ @@ -122436,7 +129550,23 @@ return { [1]="curse_effect_+%_if_200_mana_spent_recently" } }, - [5561]={ + [5941]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Curses you inflict ignore Curse limit" + } + }, + stats={ + [1]="curse_ignores_curse_limit" + } + }, + [5942]={ [1]={ [1]={ limit={ @@ -122469,7 +129599,7 @@ return { [1]="curse_mana_cost_+%" } }, - [5562]={ + [5943]={ [1]={ [1]={ limit={ @@ -122494,7 +129624,7 @@ return { [1]="curse_on_block_enfeeble_chance_%" } }, - [5563]={ + [5944]={ [1]={ [1]={ limit={ @@ -122523,23 +129653,7 @@ return { [1]="curse_skill_effect_duration_+%" } }, - [5564]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Curse Skills" - } - }, - stats={ - [1]="curse_skill_gem_level_+" - } - }, - [5565]={ + [5945]={ [1]={ [1]={ limit={ @@ -122564,7 +129678,7 @@ return { [1]="curse_with_punishment_on_hit_%" } }, - [5566]={ + [5946]={ [1]={ [1]={ limit={ @@ -122580,7 +129694,7 @@ return { [1]="cursed_enemies_are_exorcised_on_kill" } }, - [5567]={ + [5947]={ [1]={ [1]={ limit={ @@ -122605,7 +129719,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_endurance_charge_when_hit" } }, - [5568]={ + [5948]={ [1]={ [1]={ limit={ @@ -122630,7 +129744,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit" } }, - [5569]={ + [5949]={ [1]={ [1]={ limit={ @@ -122655,7 +129769,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_power_charge_when_hit" } }, - [5570]={ + [5950]={ [1]={ [1]={ limit={ @@ -122680,7 +129794,7 @@ return { [1]="cursed_with_silence_when_hit_%_chance" } }, - [5571]={ + [5951]={ [1]={ [1]={ limit={ @@ -122696,7 +129810,7 @@ return { [1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds" } }, - [5572]={ + [5952]={ [1]={ [1]={ limit={ @@ -122712,7 +129826,7 @@ return { [1]="curses_reflected_to_self" } }, - [5573]={ + [5953]={ [1]={ [1]={ limit={ @@ -122728,7 +129842,7 @@ return { [1]="curses_you_inflict_remain_after_death" } }, - [5574]={ + [5954]={ [1]={ [1]={ limit={ @@ -122744,7 +129858,7 @@ return { [1]="cyclone_and_sweep_enemy_knockback_direction_is_reversed" } }, - [5575]={ + [5955]={ [1]={ [1]={ limit={ @@ -122760,7 +129874,7 @@ return { [1]="cyclone_and_sweep_melee_knockback" } }, - [5576]={ + [5956]={ [1]={ [1]={ limit={ @@ -122789,7 +129903,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [5577]={ + [5957]={ [1]={ [1]={ limit={ @@ -122818,7 +129932,7 @@ return { [1]="damage_+%_against_enemies_with_fully_broken_armour" } }, - [5578]={ + [5958]={ [1]={ [1]={ limit={ @@ -122847,7 +129961,7 @@ return { [1]="damage_+%_final_against_bloodlusting_enemies" } }, - [5579]={ + [5959]={ [1]={ [1]={ limit={ @@ -122876,7 +129990,7 @@ return { [1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [5580]={ + [5960]={ [1]={ [1]={ limit={ @@ -122905,7 +130019,7 @@ return { [1]="damage_+%_if_consumed_frenzy_charge_recently" } }, - [5581]={ + [5961]={ [1]={ [1]={ limit={ @@ -122934,7 +130048,7 @@ return { [1]="damage_+%_if_triggered_skill_recently" } }, - [5582]={ + [5962]={ [1]={ [1]={ limit={ @@ -122959,7 +130073,36 @@ return { [1]="damage_+%_per_active_minion" } }, - [5583]={ + [5963]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage per each different Companion in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage per each different Companion in your Presence" + } + }, + stats={ + [1]="damage_+%_per_different_companion_in_presence" + } + }, + [5964]={ [1]={ [1]={ limit={ @@ -122988,7 +130131,7 @@ return { [1]="damage_+%_per_enemy_elemental_ailment" } }, - [5584]={ + [5965]={ [1]={ [1]={ limit={ @@ -123017,7 +130160,7 @@ return { [1]="damage_+%_per_poison_stack" } }, - [5585]={ + [5966]={ [1]={ [1]={ limit={ @@ -123046,7 +130189,7 @@ return { [1]="damage_+%_per_raised_zombie" } }, - [5586]={ + [5967]={ [1]={ [1]={ limit={ @@ -123075,7 +130218,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute" } }, - [5587]={ + [5968]={ [1]={ [1]={ limit={ @@ -123104,7 +130247,7 @@ return { [1]="damage_+%_vs_dazed_enemies" } }, - [5588]={ + [5969]={ [1]={ [1]={ limit={ @@ -123133,7 +130276,7 @@ return { [1]="damage_+%_vs_immobilised_enemies" } }, - [5589]={ + [5970]={ [1]={ [1]={ limit={ @@ -123162,7 +130305,7 @@ return { [1]="damage_+%_vs_immobilised_enemies_while_shapeshifted" } }, - [5590]={ + [5971]={ [1]={ [1]={ limit={ @@ -123191,7 +130334,7 @@ return { [1]="damage_+%_while_in_presence_of_companion" } }, - [5591]={ + [5972]={ [1]={ [1]={ limit={ @@ -123220,7 +130363,7 @@ return { [1]="damage_+%_while_shapeshifted" } }, - [5592]={ + [5973]={ [1]={ [1]={ limit={ @@ -123249,7 +130392,7 @@ return { [1]="damage_against_undead_+%" } }, - [5593]={ + [5974]={ [1]={ [1]={ limit={ @@ -123274,7 +130417,23 @@ return { [1]="damage_blocked_%_recouped_as_mana" } }, - [5594]={ + [5975]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All damage taken bypasses Runic Ward" + } + }, + stats={ + [1]="damage_cannot_be_taken_from_ward" + } + }, + [5976]={ [1]={ [1]={ limit={ @@ -123290,7 +130449,7 @@ return { [1]="damage_over_time_multiplier_+_if_enemy_killed_recently" } }, - [5595]={ + [5977]={ [1]={ [1]={ limit={ @@ -123319,7 +130478,7 @@ return { [1]="damage_over_time_+%_while_affected_by_a_herald" } }, - [5596]={ + [5978]={ [1]={ [1]={ limit={ @@ -123348,7 +130507,7 @@ return { [1]="damage_over_time_+%_with_attack_skills" } }, - [5597]={ + [5979]={ [1]={ [1]={ limit={ @@ -123377,7 +130536,7 @@ return { [1]="damage_over_time_+%_with_bow_skills" } }, - [5598]={ + [5980]={ [1]={ [1]={ limit={ @@ -123406,7 +130565,7 @@ return { [1]="damage_over_time_+%_with_herald_skills" } }, - [5599]={ + [5981]={ [1]={ [1]={ limit={ @@ -123435,7 +130594,7 @@ return { [1]="damage_over_time_taken_+%_while_you_have_at_least_20_fortification" } }, - [5600]={ + [5982]={ [1]={ [1]={ limit={ @@ -123451,7 +130610,7 @@ return { [1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice" } }, - [5601]={ + [5983]={ [1]={ [1]={ limit={ @@ -123467,7 +130626,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently" } }, - [5602]={ + [5984]={ [1]={ [1]={ limit={ @@ -123483,7 +130642,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies" } }, - [5603]={ + [5985]={ [1]={ [1]={ limit={ @@ -123499,7 +130658,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_cursed_enemies" } }, - [5604]={ + [5986]={ [1]={ [1]={ limit={ @@ -123515,7 +130674,7 @@ return { [1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash" } }, - [5605]={ + [5987]={ [1]={ [1]={ limit={ @@ -123531,7 +130690,7 @@ return { [1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder" } }, - [5606]={ + [5988]={ [1]={ [1]={ limit={ @@ -123547,7 +130706,7 @@ return { [1]="damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds" } }, - [5607]={ + [5989]={ [1]={ [1]={ limit={ @@ -123576,7 +130735,7 @@ return { [1]="damage_+%_against_enemies_marked_by_you" } }, - [5608]={ + [5990]={ [1]={ [1]={ limit={ @@ -123592,7 +130751,7 @@ return { [1]="damage_+%_final_if_lost_endurance_charge_in_past_8_seconds" } }, - [5609]={ + [5991]={ [1]={ [1]={ limit={ @@ -123621,7 +130780,7 @@ return { [1]="damage_+%_final_with_at_least_1_nearby_ally" } }, - [5610]={ + [5992]={ [1]={ [1]={ limit={ @@ -123650,7 +130809,7 @@ return { [1]="damage_+%_for_each_herald_affecting_you" } }, - [5611]={ + [5993]={ [1]={ [1]={ limit={ @@ -123683,7 +130842,7 @@ return { [1]="damage_+%_for_enemies_you_inflict_spiders_web_upon" } }, - [5612]={ + [5994]={ [1]={ [1]={ limit={ @@ -123712,7 +130871,7 @@ return { [1]="damage_+%_if_enemy_killed_recently" } }, - [5613]={ + [5995]={ [1]={ [1]={ limit={ @@ -123741,7 +130900,7 @@ return { [1]="damage_+%_if_enemy_shattered_recently" } }, - [5614]={ + [5996]={ [1]={ [1]={ limit={ @@ -123770,7 +130929,7 @@ return { [1]="damage_+%_if_firing_atleast_7_projectiles" } }, - [5615]={ + [5997]={ [1]={ [1]={ limit={ @@ -123799,7 +130958,7 @@ return { [1]="damage_+%_if_have_been_ignited_recently" } }, - [5616]={ + [5998]={ [1]={ [1]={ limit={ @@ -123828,7 +130987,7 @@ return { [1]="damage_+%_if_have_crit_in_past_8_seconds" } }, - [5617]={ + [5999]={ [1]={ [1]={ limit={ @@ -123857,7 +131016,7 @@ return { [1]="damage_+%_if_only_one_enemy_nearby" } }, - [5618]={ + [6000]={ [1]={ [1]={ limit={ @@ -123886,7 +131045,7 @@ return { [1]="damage_+%_if_skill_costs_life" } }, - [5619]={ + [6001]={ [1]={ [1]={ limit={ @@ -123915,7 +131074,7 @@ return { [1]="damage_+%_if_used_travel_skill_recently" } }, - [5620]={ + [6002]={ [1]={ [1]={ limit={ @@ -123944,7 +131103,7 @@ return { [1]="damage_+%_if_you_have_frozen_enemy_recently" } }, - [5621]={ + [6003]={ [1]={ [1]={ limit={ @@ -123973,7 +131132,7 @@ return { [1]="damage_+%_if_you_have_shocked_recently" } }, - [5622]={ + [6004]={ [1]={ [1]={ limit={ @@ -124002,7 +131161,7 @@ return { [1]="damage_+%_per_100_dexterity" } }, - [5623]={ + [6005]={ [1]={ [1]={ limit={ @@ -124031,7 +131190,7 @@ return { [1]="damage_+%_per_100_intelligence" } }, - [5624]={ + [6006]={ [1]={ [1]={ limit={ @@ -124060,7 +131219,7 @@ return { [1]="damage_+%_per_100_strength" } }, - [5625]={ + [6007]={ [1]={ [1]={ limit={ @@ -124076,7 +131235,7 @@ return { [1]="damage_+%_per_10_dex" } }, - [5626]={ + [6008]={ [1]={ [1]={ limit={ @@ -124092,7 +131251,7 @@ return { [1]="damage_+%_per_15_dex" } }, - [5627]={ + [6009]={ [1]={ [1]={ limit={ @@ -124108,7 +131267,7 @@ return { [1]="damage_+%_per_15_int" } }, - [5628]={ + [6010]={ [1]={ [1]={ limit={ @@ -124124,7 +131283,7 @@ return { [1]="damage_+%_per_15_strength" } }, - [5629]={ + [6011]={ [1]={ [1]={ limit={ @@ -124153,7 +131312,7 @@ return { [1]="damage_+%_per_1%_block_chance" } }, - [5630]={ + [6012]={ [1]={ [1]={ limit={ @@ -124169,7 +131328,7 @@ return { [1]="damage_+%_per_1%_increased_item_found_quantity" } }, - [5631]={ + [6013]={ [1]={ [1]={ limit={ @@ -124198,7 +131357,7 @@ return { [1]="damage_+%_per_5_of_your_lowest_attribute" } }, - [5632]={ + [6014]={ [1]={ [1]={ limit={ @@ -124227,7 +131386,7 @@ return { [1]="damage_+%_per_active_golem" } }, - [5633]={ + [6015]={ [1]={ [1]={ limit={ @@ -124256,7 +131415,7 @@ return { [1]="damage_+%_per_active_link" } }, - [5634]={ + [6016]={ [1]={ [1]={ limit={ @@ -124281,7 +131440,7 @@ return { [1]="damage_+%_per_different_warcry_used_recently" } }, - [5635]={ + [6017]={ [1]={ [1]={ limit={ @@ -124310,7 +131469,7 @@ return { [1]="damage_+%_per_frenzy_power_or_endurance_charge" } }, - [5636]={ + [6018]={ [1]={ [1]={ limit={ @@ -124339,7 +131498,7 @@ return { [1]="damage_+%_per_poison_up_to_75%" } }, - [5637]={ + [6019]={ [1]={ [1]={ limit={ @@ -124368,7 +131527,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [5638]={ + [6020]={ [1]={ [1]={ limit={ @@ -124397,7 +131556,7 @@ return { [1]="damage_+%_per_recently_triggered_hazard_up_to_50%" } }, - [5639]={ + [6021]={ [1]={ [1]={ limit={ @@ -124426,7 +131585,7 @@ return { [1]="damage_+%_per_warcry_used_recently" } }, - [5640]={ + [6022]={ [1]={ [1]={ limit={ @@ -124442,7 +131601,7 @@ return { [1]="damage_+%_per_your_aura_or_herald_skill_affecting_you" } }, - [5641]={ + [6023]={ [1]={ [1]={ limit={ @@ -124471,7 +131630,7 @@ return { [1]="damage_+%_vs_abyssal_monsters" } }, - [5642]={ + [6024]={ [1]={ [1]={ limit={ @@ -124500,7 +131659,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [5643]={ + [6025]={ [1]={ [1]={ limit={ @@ -124529,7 +131688,7 @@ return { [1]="melee_damage_+%_vs_heavy_stunned_enemies" } }, - [5644]={ + [6026]={ [1]={ [1]={ limit={ @@ -124558,7 +131717,7 @@ return { [1]="damage_+%_vs_magic_monsters" } }, - [5645]={ + [6027]={ [1]={ [1]={ limit={ @@ -124587,7 +131746,7 @@ return { [1]="damage_+%_vs_taunted_enemies" } }, - [5646]={ + [6028]={ [1]={ [1]={ limit={ @@ -124616,7 +131775,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [5647]={ + [6029]={ [1]={ [1]={ limit={ @@ -124645,7 +131804,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [5648]={ + [6030]={ [1]={ [1]={ limit={ @@ -124674,7 +131833,7 @@ return { [1]="damage_+%_while_affected_by_a_herald" } }, - [5649]={ + [6031]={ [1]={ [1]={ limit={ @@ -124703,7 +131862,7 @@ return { [1]="damage_+%_while_channelling" } }, - [5650]={ + [6032]={ [1]={ [1]={ limit={ @@ -124732,7 +131891,7 @@ return { [1]="damage_+%_while_in_blood_stance" } }, - [5651]={ + [6033]={ [1]={ [1]={ limit={ @@ -124761,7 +131920,7 @@ return { [1]="damage_+%_while_using_charm" } }, - [5652]={ + [6034]={ [1]={ [1]={ limit={ @@ -124790,7 +131949,7 @@ return { [1]="damage_+%_while_wielding_bow_if_totem_summoned" } }, - [5653]={ + [6035]={ [1]={ [1]={ limit={ @@ -124819,7 +131978,7 @@ return { [1]="damage_+%_while_wielding_two_different_weapon_types" } }, - [5654]={ + [6036]={ [1]={ [1]={ limit={ @@ -124848,7 +132007,7 @@ return { [1]="damage_+%_while_you_have_a_summoned_golem" } }, - [5655]={ + [6037]={ [1]={ [1]={ limit={ @@ -124877,7 +132036,7 @@ return { [1]="damage_+%_with_daggers_against_full_life_enemies" } }, - [5656]={ + [6038]={ [1]={ [1]={ limit={ @@ -124906,7 +132065,7 @@ return { [1]="damage_+%_with_herald_skills" } }, - [5657]={ + [6039]={ [1]={ [1]={ limit={ @@ -124935,7 +132094,7 @@ return { [1]="damage_+%_with_maces_sceptres_staves" } }, - [5658]={ + [6040]={ [1]={ [1]={ limit={ @@ -124964,7 +132123,7 @@ return { [1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention" } }, - [5659]={ + [6041]={ [1]={ [1]={ limit={ @@ -124993,7 +132152,7 @@ return { [1]="damage_+%_with_shield_skills" } }, - [5660]={ + [6042]={ [1]={ [1]={ limit={ @@ -125022,7 +132181,7 @@ return { [1]="damage_+%_with_shield_skills_per_2%_attack_block" } }, - [5661]={ + [6043]={ [1]={ [1]={ limit={ @@ -125038,7 +132197,7 @@ return { [1]="damage_recouped_as_life_%_if_leech_removed_by_filling_recently" } }, - [5662]={ + [6044]={ [1]={ [1]={ limit={ @@ -125054,7 +132213,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity" } }, - [5663]={ + [6045]={ [1]={ [1]={ limit={ @@ -125070,7 +132229,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_focused" } }, - [5664]={ + [6046]={ [1]={ [1]={ limit={ @@ -125086,7 +132245,7 @@ return { [1]="damage_removed_from_spectres_before_life_or_es_%" } }, - [5665]={ + [6047]={ [1]={ [1]={ limit={ @@ -125102,7 +132261,7 @@ return { [1]="damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [5666]={ + [6048]={ [1]={ [1]={ limit={ @@ -125131,7 +132290,7 @@ return { [1]="damage_taken_+%_for_4_seconds_after_spending_200_mana" } }, - [5667]={ + [6049]={ [1]={ [1]={ limit={ @@ -125160,7 +132319,7 @@ return { [1]="damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute" } }, - [5668]={ + [6050]={ [1]={ [1]={ limit={ @@ -125189,7 +132348,7 @@ return { [1]="damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby" } }, - [5669]={ + [6051]={ [1]={ [1]={ limit={ @@ -125218,7 +132377,23 @@ return { [1]="damage_taken_+%_while_affected_by_elusive" } }, - [5670]={ + [6052]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage of Enemies Hitting you is Unlucky if\nyour Runic Ward has been damaged Recently" + } + }, + stats={ + [1]="damage_taken_from_hits_is_unlucky_if_ward_damaged_recently" + } + }, + [6053]={ [1]={ [1]={ limit={ @@ -125234,7 +132409,7 @@ return { [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" } }, - [5671]={ + [6054]={ [1]={ [1]={ limit={ @@ -125250,7 +132425,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute" } }, - [5672]={ + [6055]={ [1]={ [1]={ limit={ @@ -125266,7 +132441,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_10_tribute" } }, - [5673]={ + [6056]={ [1]={ [1]={ limit={ @@ -125282,7 +132457,7 @@ return { [1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity" } }, - [5674]={ + [6057]={ [1]={ [1]={ limit={ @@ -125311,7 +132486,7 @@ return { [1]="damage_taken_over_time_+%_final_during_life_flask_effect" } }, - [5675]={ + [6058]={ [1]={ [1]={ limit={ @@ -125340,7 +132515,7 @@ return { [1]="damage_taken_per_250_dexterity_+%" } }, - [5676]={ + [6059]={ [1]={ [1]={ limit={ @@ -125369,7 +132544,7 @@ return { [1]="damage_taken_per_250_intelligence_+%" } }, - [5677]={ + [6060]={ [1]={ [1]={ limit={ @@ -125398,7 +132573,7 @@ return { [1]="damage_taken_per_250_strength_+%" } }, - [5678]={ + [6061]={ [1]={ [1]={ limit={ @@ -125427,7 +132602,7 @@ return { [1]="damage_taken_per_ghost_dance_stack_+%" } }, - [5679]={ + [6062]={ [1]={ [1]={ limit={ @@ -125443,7 +132618,7 @@ return { [1]="damage_taken_%_recovered_as_energy_shield_from_stunning_hits" } }, - [5680]={ + [6063]={ [1]={ [1]={ limit={ @@ -125459,7 +132634,7 @@ return { [1]="damage_taken_%_recovered_as_life_from_stunning_hits" } }, - [5681]={ + [6064]={ [1]={ [1]={ limit={ @@ -125468,7 +132643,7 @@ return { [2]="#" } }, - text="{0}% more Damage taken from other Enemies near your Marked Enemy" + text="{0}% more damage taken from other enemies near your Marked enemy" }, [2]={ [1]={ @@ -125481,14 +132656,14 @@ return { [2]=-1 } }, - text="{0}% less Damage taken from other Enemies near your Marked Enemy" + text="{0}% less damage taken from other enemies near your Marked enemy" } }, stats={ [1]="damage_taken_+%_final_from_enemies_near_marked_enemy" } }, - [5682]={ + [6065]={ [1]={ [1]={ limit={ @@ -125517,7 +132692,7 @@ return { [1]="damage_taken_+%_final_per_tailwind" } }, - [5683]={ + [6066]={ [1]={ [1]={ limit={ @@ -125546,7 +132721,7 @@ return { [1]="damage_taken_+%_final_per_totem" } }, - [5684]={ + [6067]={ [1]={ [1]={ limit={ @@ -125575,7 +132750,7 @@ return { [1]="damage_taken_+%_if_have_been_frozen_recently" } }, - [5685]={ + [6068]={ [1]={ [1]={ limit={ @@ -125604,7 +132779,7 @@ return { [1]="damage_taken_+%_if_have_not_been_hit_recently" } }, - [5686]={ + [6069]={ [1]={ [1]={ limit={ @@ -125633,7 +132808,7 @@ return { [1]="damage_taken_+%_on_full_life" } }, - [5687]={ + [6070]={ [1]={ [1]={ limit={ @@ -125662,7 +132837,7 @@ return { [1]="damage_taken_+%_on_low_life" } }, - [5688]={ + [6071]={ [1]={ [1]={ limit={ @@ -125691,7 +132866,7 @@ return { [1]="damage_taken_+%_while_leeching" } }, - [5689]={ + [6072]={ [1]={ [1]={ limit={ @@ -125720,7 +132895,7 @@ return { [1]="damage_taken_+%_while_phasing" } }, - [5690]={ + [6073]={ [1]={ [1]={ limit={ @@ -125736,7 +132911,7 @@ return { [1]="damage_with_hits_is_lucky_vs_enemies_on_low_life" } }, - [5691]={ + [6074]={ [1]={ [1]={ limit={ @@ -125752,7 +132927,7 @@ return { [1]="damage_with_hits_is_lucky_vs_heavy_stunned_enemies" } }, - [5692]={ + [6075]={ [1]={ [1]={ limit={ @@ -125781,7 +132956,7 @@ return { [1]="damaging_ailment_duration_+%" } }, - [5693]={ + [6076]={ [1]={ [1]={ limit={ @@ -125810,7 +132985,7 @@ return { [1]="damaging_ailment_duration_+%_per_10_tribute" } }, - [5694]={ + [6077]={ [1]={ [1]={ limit={ @@ -125839,7 +133014,7 @@ return { [1]="base_damaging_ailment_effect_+%" } }, - [5695]={ + [6078]={ [1]={ [1]={ limit={ @@ -125855,7 +133030,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [5696]={ + [6079]={ [1]={ [1]={ limit={ @@ -125871,7 +133046,7 @@ return { [1]="dark_pact_minions_recover_%_life_on_hit" } }, - [5697]={ + [6080]={ [1]={ [1]={ limit={ @@ -125900,7 +133075,7 @@ return { [1]="dark_ritual_area_of_effect_+%" } }, - [5698]={ + [6081]={ [1]={ [1]={ limit={ @@ -125929,7 +133104,7 @@ return { [1]="dark_ritual_damage_+%" } }, - [5699]={ + [6082]={ [1]={ [1]={ limit={ @@ -125958,7 +133133,7 @@ return { [1]="dark_ritual_linked_curse_effect_+%" } }, - [5700]={ + [6083]={ [1]={ [1]={ limit={ @@ -125974,7 +133149,7 @@ return { [1]="darkness_per_level" } }, - [5701]={ + [6084]={ [1]={ [1]={ limit={ @@ -126003,7 +133178,7 @@ return { [1]="darkness_refresh_rate_+%" } }, - [5702]={ + [6085]={ [1]={ [1]={ limit={ @@ -126032,7 +133207,7 @@ return { [1]="daytime_fish_caught_size_+%" } }, - [5703]={ + [6086]={ [1]={ [1]={ limit={ @@ -126061,7 +133236,7 @@ return { [1]="daze_build_up_+%" } }, - [5704]={ + [6087]={ [1]={ [1]={ limit={ @@ -126090,7 +133265,7 @@ return { [1]="daze_duration_+%" } }, - [5705]={ + [6088]={ [1]={ [1]={ limit={ @@ -126119,7 +133294,7 @@ return { [1]="daze_magnitude_+%" } }, - [5706]={ + [6089]={ [1]={ [1]={ limit={ @@ -126135,7 +133310,7 @@ return { [1]="deadeye_accuracy_unaffected_by_range" } }, - [5707]={ + [6090]={ [1]={ [1]={ limit={ @@ -126164,7 +133339,7 @@ return { [1]="deadeye_damage_taken_+%_final_from_marked_enemy" } }, - [5708]={ + [6091]={ [1]={ [1]={ limit={ @@ -126193,7 +133368,7 @@ return { [1]="deadeye_movement_speed_penalty_+%_final_while_performing_action" } }, - [5709]={ + [6092]={ [1]={ [1]={ limit={ @@ -126209,7 +133384,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases" } }, - [5710]={ + [6093]={ [1]={ [1]={ limit={ @@ -126225,7 +133400,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases" } }, - [5711]={ + [6094]={ [1]={ [1]={ limit={ @@ -126241,7 +133416,7 @@ return { [1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5712]={ + [6095]={ [1]={ [1]={ limit={ @@ -126257,23 +133432,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5713]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Inflict Decay on Enemies you Curse with Hex Skills, dealing {0} Chaos Damage per Second for 8 Seconds" - } - }, - stats={ - [1]="deal_chaos_damage_per_second_for_8_seconds_on_curse" - } - }, - [5714]={ + [6096]={ [1]={ [1]={ limit={ @@ -126289,7 +133448,7 @@ return { [1]="deal_double_damage_to_enemies_on_full_life" } }, - [5715]={ + [6097]={ [1]={ [1]={ limit={ @@ -126305,7 +133464,7 @@ return { [1]="deal_no_damage_when_not_on_low_life" } }, - [5716]={ + [6098]={ [1]={ [1]={ limit={ @@ -126321,7 +133480,7 @@ return { [1]="deal_no_elemental_damage" } }, - [5717]={ + [6099]={ [1]={ [1]={ limit={ @@ -126337,7 +133496,7 @@ return { [1]="deal_no_elemental_physical_damage" } }, - [5718]={ + [6100]={ [1]={ [1]={ limit={ @@ -126353,7 +133512,7 @@ return { [1]="deal_no_non_chaos_damage" } }, - [5719]={ + [6101]={ [1]={ [1]={ limit={ @@ -126369,39 +133528,39 @@ return { [1]="deal_no_non_elemental_damage" } }, - [5720]={ + [6102]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% chance to deal your Thorns Damage to Enemies Hit" + text="Deal your Thorns Damage to Enemies you Hit" } }, stats={ - [1]="deal_thorns_damage_chance_%_on_hit" + [1]="deal_thorns_damage_on_hit" } }, - [5721]={ + [6103]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Deal your Thorns Damage to Enemies you Hit" + text="Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" } }, stats={ - [1]="deal_thorns_damage_on_hit" + [1]="deal_thorns_damage_on_melee_crit" } }, - [5722]={ + [6104]={ [1]={ [1]={ limit={ @@ -126417,7 +133576,7 @@ return { [1]="deal_thorns_damage_on_stun" } }, - [5723]={ + [6105]={ [1]={ [1]={ limit={ @@ -126433,7 +133592,7 @@ return { [1]="deathgrip_presence" } }, - [5724]={ + [6106]={ [1]={ [1]={ limit={ @@ -126458,7 +133617,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [5725]={ + [6107]={ [1]={ [1]={ limit={ @@ -126467,14 +133626,14 @@ return { [2]="#" } }, - text="Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised" + text="Apply Debilitate to Enemies {0} Metres in front of you while your Shield is raised" } }, stats={ [1]="debilitate_enemies_within_X_metres_while_active_blocking" } }, - [5726]={ + [6108]={ [1]={ [1]={ limit={ @@ -126507,7 +133666,7 @@ return { [1]="debuff_time_passed_-%_while_affected_by_haste" } }, - [5727]={ + [6109]={ [1]={ [1]={ limit={ @@ -126536,7 +133695,7 @@ return { [1]="debuff_time_passed_+%" } }, - [5728]={ + [6110]={ [1]={ [1]={ limit={ @@ -126552,7 +133711,7 @@ return { [1]="decimating_strike" } }, - [5729]={ + [6111]={ [1]={ [1]={ limit={ @@ -126568,7 +133727,7 @@ return { [1]="decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [5730]={ + [6112]={ [1]={ [1]={ limit={ @@ -126577,7 +133736,7 @@ return { [2]="#" } }, - text="{0}% increased Global Defences while Channelling" + text="{0}% increased Armour, Evasion and Energy Shield while Channelling" }, [2]={ limit={ @@ -126586,14 +133745,14 @@ return { [2]=-1 } }, - text="{0}% reduced Global Defences while Channelling" + text="{0}% reduced Armour, Evasion and Energy Shield while Channelling" } }, stats={ - [1]="defences_+%_while_channelling" + [1]="armour_evasion_energy_shield_+%_while_channelling" } }, - [5731]={ + [6113]={ [1]={ [1]={ limit={ @@ -126602,7 +133761,7 @@ return { [2]="#" } }, - text="{0}% increased Defences while on Low Life" + text="{0}% increased Armour, Evasion and Energy Shield while on Low Life" }, [2]={ [1]={ @@ -126615,14 +133774,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences while on [LowLife|Low Life" + text="{0}% reduced Armour, Evasion and Energy Shield while on Low Life" } }, stats={ - [1]="defences_+%_while_on_low_life" + [1]="armour_evasion_energy_shield_+%_while_on_low_life" } }, - [5732]={ + [6114]={ [1]={ [1]={ limit={ @@ -126631,7 +133790,7 @@ return { [2]="#" } }, - text="{0}% increased Defences while wielding a Quarterstaff" + text="{0}% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff" }, [2]={ [1]={ @@ -126644,14 +133803,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences while wielding a Quarterstaff" + text="{0}% reduced Armour, Evasion and Energy Shield while wielding a Quarterstaff" } }, stats={ - [1]="defences_+%_while_wielding_quarterstaff" + [1]="armour_evasion_energy_shield_+%_while_wielding_quarterstaff" } }, - [5733]={ + [6115]={ [1]={ [1]={ limit={ @@ -126660,7 +133819,7 @@ return { [2]="#" } }, - text="{0}% increased Defences while you have at least four Linked targets" + text="{0}% increased Armour, Evasion and Energy Shield while you have at least four Linked targets" }, [2]={ [1]={ @@ -126673,14 +133832,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences while you have at least four Linked targets" + text="{0}% reduced Armour, Evasion and Energy Shield while you have at least four Linked targets" } }, stats={ - [1]="defences_+%_while_you_have_four_linked_targets" + [1]="armour_evasion_energy_shield_+%_while_you_have_four_linked_targets" } }, - [5734]={ + [6116]={ [1]={ [1]={ limit={ @@ -126689,14 +133848,14 @@ return { [2]="#" } }, - text="Defences are zero" + text="Armour, Evasion and Energy Shield are zero" } }, stats={ - [1]="defences_are_zero" + [1]="armour_evasion_energy_shield_are_zero" } }, - [5735]={ + [6117]={ [1]={ [1]={ limit={ @@ -126712,7 +133871,7 @@ return { [1]="defences_from_animated_guardians_items_apply_to_animated_weapon" } }, - [5736]={ + [6118]={ [1]={ [1]={ limit={ @@ -126728,7 +133887,7 @@ return { [1]="defend_with_%_armour_against_critical_strikes" } }, - [5737]={ + [6119]={ [1]={ [1]={ limit={ @@ -126744,7 +133903,7 @@ return { [1]="defend_with_%_armour_against_hits_from_distance_greater_than_6m" } }, - [5738]={ + [6120]={ [1]={ [1]={ limit={ @@ -126760,7 +133919,39 @@ return { [1]="defend_with_%_armour_against_ranged_attacks" } }, - [5739]={ + [6121]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Defend with {0}% of Armour while on Low Energy Shield" + } + }, + stats={ + [1]="defend_with_%_armour_when_low_energy_shield" + } + }, + [6122]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Defend with {0}% of Armour while you have Energy Shield" + } + }, + stats={ + [1]="defend_with_%_armour_while_you_have_energy_shield" + } + }, + [6123]={ [1]={ [1]={ limit={ @@ -126776,7 +133967,7 @@ return { [1]="defend_with_%_of_armour_while_not_on_low_energy_shield" } }, - [5740]={ + [6124]={ [1]={ [1]={ limit={ @@ -126805,7 +133996,7 @@ return { [1]="defiance_banner_aura_effect_+%" } }, - [5741]={ + [6125]={ [1]={ [1]={ limit={ @@ -126834,7 +134025,7 @@ return { [1]="defiance_banner_mana_reservation_efficiency_+%" } }, - [5742]={ + [6126]={ [1]={ [1]={ limit={ @@ -126850,7 +134041,7 @@ return { [1]="deflected_hit_damage_taken_%_recouped_as_life" } }, - [5743]={ + [6127]={ [1]={ [1]={ limit={ @@ -126866,7 +134057,7 @@ return { [1]="deflected_hits_cannot_directly_inflict_maim_on_self" } }, - [5744]={ + [6128]={ [1]={ [1]={ limit={ @@ -126882,7 +134073,7 @@ return { [1]="deflected_hits_cannot_inflict_bleeding_on_self" } }, - [5745]={ + [6129]={ [1]={ [1]={ limit={ @@ -126911,7 +134102,7 @@ return { [1]="deflection_rating_+%" } }, - [5746]={ + [6130]={ [1]={ [1]={ limit={ @@ -126936,7 +134127,7 @@ return { [1]="deflection_rating_+%_while_moving" } }, - [5747]={ + [6131]={ [1]={ [1]={ limit={ @@ -126961,7 +134152,7 @@ return { [1]="deflection_rating_+%_while_surrounded" } }, - [5748]={ + [6132]={ [1]={ [1]={ limit={ @@ -126990,7 +134181,7 @@ return { [1]="delirium_aura_effect_+%" } }, - [5749]={ + [6133]={ [1]={ [1]={ limit={ @@ -127023,7 +134214,7 @@ return { [1]="delirium_mana_reservation_+%" } }, - [5750]={ + [6134]={ [1]={ [1]={ limit={ @@ -127039,7 +134230,7 @@ return { [1]="delirium_reserves_no_mana" } }, - [5751]={ + [6135]={ [1]={ [1]={ limit={ @@ -127055,7 +134246,7 @@ return { [1]="delve_biome_area_contains_x_extra_packs_of_insects" } }, - [5752]={ + [6136]={ [1]={ [1]={ limit={ @@ -127071,7 +134262,7 @@ return { [1]="delve_biome_monster_projectiles_always_pierce" } }, - [5753]={ + [6137]={ [1]={ [1]={ limit={ @@ -127087,7 +134278,7 @@ return { [1]="delve_boss_life_+%_final_from_biome" } }, - [5754]={ + [6138]={ [1]={ [1]={ limit={ @@ -127103,7 +134294,7 @@ return { [1]="demon_form_has_no_max_stacks" } }, - [5755]={ + [6139]={ [1]={ [1]={ limit={ @@ -127136,7 +134327,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [5756]={ + [6140]={ [1]={ [1]={ limit={ @@ -127152,7 +134343,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [5757]={ + [6141]={ [1]={ [1]={ limit={ @@ -127181,7 +134372,7 @@ return { [1]="despair_curse_effect_+%" } }, - [5758]={ + [6142]={ [1]={ [1]={ limit={ @@ -127210,7 +134401,7 @@ return { [1]="despair_duration_+%" } }, - [5759]={ + [6143]={ [1]={ [1]={ limit={ @@ -127226,7 +134417,7 @@ return { [1]="despair_no_reservation" } }, - [5760]={ + [6144]={ [1]={ [1]={ limit={ @@ -127255,7 +134446,7 @@ return { [1]="destructive_link_duration_+%" } }, - [5761]={ + [6145]={ [1]={ [1]={ [1]={ @@ -127292,7 +134483,7 @@ return { [1]="determination_mana_reservation_efficiency_-2%_per_1" } }, - [5762]={ + [6146]={ [1]={ [1]={ limit={ @@ -127321,7 +134512,7 @@ return { [1]="determination_mana_reservation_efficiency_+%" } }, - [5763]={ + [6147]={ [1]={ [1]={ limit={ @@ -127337,7 +134528,7 @@ return { [1]="determination_reserves_no_mana" } }, - [5764]={ + [6148]={ [1]={ [1]={ limit={ @@ -127366,7 +134557,7 @@ return { [1]="detonator_skill_area_of_effect_+%" } }, - [5765]={ + [6149]={ [1]={ [1]={ limit={ @@ -127395,7 +134586,23 @@ return { [1]="detonator_skill_damage_+%" } }, - [5766]={ + [6150]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" + } + }, + stats={ + [1]="dexterity_can_satisfy_strength_and_intelligence_requirements_of_melee_weapons_and_skills" + } + }, + [6151]={ [1]={ [1]={ limit={ @@ -127424,23 +134631,7 @@ return { [1]="dexterity_+%_if_strength_higher_than_intelligence" } }, - [5767]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Skills with a Dexterity requirement" - } - }, - stats={ - [1]="dexterity_skill_gem_level_+" - } - }, - [5768]={ + [6152]={ [1]={ [1]={ limit={ @@ -127456,7 +134647,7 @@ return { [1]="discharge_and_voltaxic_burst_nova_spells_cast_at_target_location" } }, - [5769]={ + [6153]={ [1]={ [1]={ limit={ @@ -127485,7 +134676,7 @@ return { [1]="discharge_area_of_effect_+%_final" } }, - [5770]={ + [6154]={ [1]={ [1]={ limit={ @@ -127501,7 +134692,7 @@ return { [1]="discharge_cooldown_override_ms" } }, - [5771]={ + [6155]={ [1]={ [1]={ limit={ @@ -127530,7 +134721,7 @@ return { [1]="discharge_damage_+%_final" } }, - [5772]={ + [6156]={ [1]={ [1]={ limit={ @@ -127546,7 +134737,7 @@ return { [1]="discharge_radius_+" } }, - [5773]={ + [6157]={ [1]={ [1]={ limit={ @@ -127575,7 +134766,7 @@ return { [1]="discharge_triggered_damage_+%_final" } }, - [5774]={ + [6158]={ [1]={ [1]={ [1]={ @@ -127612,7 +134803,7 @@ return { [1]="discipline_mana_reservation_efficiency_-2%_per_1" } }, - [5775]={ + [6159]={ [1]={ [1]={ limit={ @@ -127641,7 +134832,7 @@ return { [1]="discipline_mana_reservation_efficiency_+%" } }, - [5776]={ + [6160]={ [1]={ [1]={ limit={ @@ -127657,7 +134848,7 @@ return { [1]="discipline_reserves_no_mana" } }, - [5777]={ + [6161]={ [1]={ [1]={ limit={ @@ -127686,7 +134877,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [5778]={ + [6162]={ [1]={ [1]={ limit={ @@ -127702,7 +134893,7 @@ return { [1]="dispel_bleed_on_guard_skill_use" } }, - [5779]={ + [6163]={ [1]={ [1]={ limit={ @@ -127718,7 +134909,7 @@ return { [1]="dispel_corrupted_blood_on_guard_skill_use" } }, - [5780]={ + [6164]={ [1]={ [1]={ limit={ @@ -127734,7 +134925,7 @@ return { [1]="display_altar_chaos_aura" } }, - [5781]={ + [6165]={ [1]={ [1]={ limit={ @@ -127750,7 +134941,7 @@ return { [1]="display_altar_cold_aura" } }, - [5782]={ + [6166]={ [1]={ [1]={ limit={ @@ -127766,7 +134957,7 @@ return { [1]="display_altar_fire_aura" } }, - [5783]={ + [6167]={ [1]={ [1]={ limit={ @@ -127782,7 +134973,7 @@ return { [1]="display_altar_lightning_aura" } }, - [5784]={ + [6168]={ [1]={ [1]={ limit={ @@ -127798,7 +134989,7 @@ return { [1]="display_altar_tangle_tentalces_daemon" } }, - [5785]={ + [6169]={ [1]={ [1]={ limit={ @@ -127814,7 +135005,7 @@ return { [1]="display_area_contains_alluring_vaal_side_area" } }, - [5786]={ + [6170]={ [1]={ [1]={ limit={ @@ -127830,7 +135021,7 @@ return { [1]="display_area_contains_corrupting_tempest" } }, - [5787]={ + [6171]={ [1]={ [1]={ limit={ @@ -127846,7 +135037,7 @@ return { [1]="display_area_contains_improved_labyrinth_trial" } }, - [5788]={ + [6172]={ [1]={ [1]={ limit={ @@ -127862,7 +135053,7 @@ return { [1]="display_cowards_trial_waves_of_monsters" } }, - [5789]={ + [6173]={ [1]={ [1]={ limit={ @@ -127878,7 +135069,7 @@ return { [1]="display_cowards_trial_waves_of_undead_monsters" } }, - [5790]={ + [6174]={ [1]={ [1]={ limit={ @@ -127894,7 +135085,7 @@ return { [1]="display_dark_ritual_curse_max_skill_level_requirement" } }, - [5791]={ + [6175]={ [1]={ [1]={ limit={ @@ -127923,7 +135114,23 @@ return { [1]="display_heist_contract_lockdown_timer_+%" } }, - [5792]={ + [6176]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can roll Ring Modifiers" + } + }, + stats={ + [1]="display_item_can_also_roll_ring_mods" + } + }, + [6177]={ [1]={ [1]={ limit={ @@ -127948,7 +135155,7 @@ return { [1]="display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value" } }, - [5793]={ + [6178]={ [1]={ [1]={ limit={ @@ -127973,7 +135180,7 @@ return { [1]="display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value" } }, - [5794]={ + [6179]={ [1]={ [1]={ limit={ @@ -127989,7 +135196,7 @@ return { [1]="display_legion_uber_fragment_improved_rewards_+%" } }, - [5795]={ + [6180]={ [1]={ [1]={ limit={ @@ -128005,7 +135212,7 @@ return { [1]="display_map_augmentable_boss" } }, - [5796]={ + [6181]={ [1]={ [1]={ limit={ @@ -128021,7 +135228,7 @@ return { [1]="display_map_inhabited_by_lunaris_fanatics" } }, - [5797]={ + [6182]={ [1]={ [1]={ limit={ @@ -128037,7 +135244,7 @@ return { [1]="display_map_inhabited_by_solaris_fanatics" } }, - [5798]={ + [6183]={ [1]={ [1]={ limit={ @@ -128053,7 +135260,7 @@ return { [1]="display_map_labyrinth_chests_fortune" } }, - [5799]={ + [6184]={ [1]={ [1]={ limit={ @@ -128069,7 +135276,7 @@ return { [1]="display_map_labyrinth_enchant_belts" } }, - [5800]={ + [6185]={ [1]={ [1]={ limit={ @@ -128139,7 +135346,7 @@ return { [1]="display_map_mission_id" } }, - [5801]={ + [6186]={ [1]={ [1]={ limit={ @@ -128155,7 +135362,7 @@ return { [1]="display_memory_line_abyss_beyond_monsters_from_cracks" } }, - [5802]={ + [6187]={ [1]={ [1]={ limit={ @@ -128171,7 +135378,7 @@ return { [1]="display_memory_line_ambush_contains_standalone_map_boss" } }, - [5803]={ + [6188]={ [1]={ [1]={ limit={ @@ -128187,7 +135394,7 @@ return { [1]="display_memory_line_ambush_strongbox_chain" } }, - [5804]={ + [6189]={ [1]={ [1]={ limit={ @@ -128203,7 +135410,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_in_packs" } }, - [5805]={ + [6190]={ [1]={ [1]={ limit={ @@ -128219,7 +135426,7 @@ return { [1]="display_memory_line_bestiary_capturable_harvest_monsters" } }, - [5806]={ + [6191]={ [1]={ [1]={ limit={ @@ -128235,7 +135442,7 @@ return { [1]="display_memory_line_breach_area_is_breached" } }, - [5807]={ + [6192]={ [1]={ [1]={ limit={ @@ -128251,7 +135458,7 @@ return { [1]="display_memory_line_breach_miniature_flash_breaches" } }, - [5808]={ + [6193]={ [1]={ [1]={ limit={ @@ -128267,7 +135474,7 @@ return { [1]="display_memory_line_domination_multiple_modded_shrines" } }, - [5809]={ + [6194]={ [1]={ [1]={ limit={ @@ -128283,7 +135490,7 @@ return { [1]="display_memory_line_domination_shrines_to_pantheon_gods" } }, - [5810]={ + [6195]={ [1]={ [1]={ limit={ @@ -128299,7 +135506,7 @@ return { [1]="display_memory_line_essence_multiple_rare_monsters" } }, - [5811]={ + [6196]={ [1]={ [1]={ limit={ @@ -128315,7 +135522,7 @@ return { [1]="display_memory_line_essence_rogue_exiles" } }, - [5812]={ + [6197]={ [1]={ [1]={ limit={ @@ -128331,7 +135538,7 @@ return { [1]="display_memory_line_harbinger_player_is_a_harbinger" } }, - [5813]={ + [6198]={ [1]={ [1]={ limit={ @@ -128347,7 +135554,7 @@ return { [1]="display_memory_line_harbinger_portals_everywhere" } }, - [5814]={ + [6199]={ [1]={ [1]={ limit={ @@ -128363,7 +135570,7 @@ return { [1]="display_memory_line_harvest_larger_plot_with_premium_seeds" } }, - [5815]={ + [6200]={ [1]={ [1]={ limit={ @@ -128379,7 +135586,7 @@ return { [1]="display_memory_line_torment_player_is_possessed" } }, - [5816]={ + [6201]={ [1]={ [1]={ limit={ @@ -128395,7 +135602,7 @@ return { [1]="display_memory_line_torment_rares_uniques_are_possessed" } }, - [5817]={ + [6202]={ [1]={ [1]={ limit={ @@ -128411,7 +135618,7 @@ return { [1]="display_modifiers_to_totem_life_effect_these_minions" } }, - [5818]={ + [6203]={ [1]={ [1]={ limit={ @@ -128427,7 +135634,7 @@ return { [1]="display_passive_attribute_text" } }, - [5819]={ + [6204]={ [1]={ [1]={ limit={ @@ -128443,7 +135650,7 @@ return { [1]="display_stat_coming_soon" } }, - [5820]={ + [6205]={ [1]={ [1]={ limit={ @@ -128459,7 +135666,7 @@ return { [1]="display_strongbox_drops_additional_shaper_or_elder_cards" } }, - [5821]={ + [6206]={ [1]={ [1]={ limit={ @@ -128497,7 +135704,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [5822]={ + [6207]={ [1]={ [1]={ limit={ @@ -128526,7 +135733,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [5823]={ + [6208]={ [1]={ [1]={ limit={ @@ -128555,7 +135762,7 @@ return { [1]="divine_tempest_damage_+%" } }, - [5824]={ + [6209]={ [1]={ [1]={ limit={ @@ -128580,7 +135787,7 @@ return { [1]="divine_tempest_number_of_additional_nearby_enemies_to_zap" } }, - [5825]={ + [6210]={ [1]={ [1]={ [1]={ @@ -128613,7 +135820,7 @@ return { [1]="dodge_roll_base_travel_distance" } }, - [5826]={ + [6211]={ [1]={ [1]={ limit={ @@ -128629,7 +135836,7 @@ return { [1]="dodge_roll_can_avoid_all_damage" } }, - [5827]={ + [6212]={ [1]={ [1]={ limit={ @@ -128645,7 +135852,23 @@ return { [1]="dodge_roll_phasing_without_visual" } }, - [5828]={ + [6213]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% faster Dodge Roll" + } + }, + stats={ + [1]="dodge_roll_speed_+%" + } + }, + [6214]={ [1]={ [1]={ [1]={ @@ -128691,7 +135914,7 @@ return { [1]="dodge_roll_travel_distance_+_while_surrounded" } }, - [5829]={ + [6215]={ [1]={ [1]={ limit={ @@ -128720,7 +135943,7 @@ return { [1]="doedre_aura_damage_+%_final" } }, - [5830]={ + [6216]={ [1]={ [1]={ limit={ @@ -128736,7 +135959,7 @@ return { [1]="dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [5831]={ + [6217]={ [1]={ [1]={ limit={ @@ -128752,7 +135975,7 @@ return { [1]="dot_multiplier_+_if_crit_in_past_8_seconds" } }, - [5832]={ + [6218]={ [1]={ [1]={ limit={ @@ -128768,7 +135991,7 @@ return { [1]="dot_multiplier_+_while_affected_by_malevolence" } }, - [5833]={ + [6219]={ [1]={ [1]={ limit={ @@ -128784,7 +136007,7 @@ return { [1]="dot_multiplier_+_with_bow_skills" } }, - [5834]={ + [6220]={ [1]={ [1]={ limit={ @@ -128809,7 +136032,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [5835]={ + [6221]={ [1]={ [1]={ limit={ @@ -128825,7 +136048,7 @@ return { [1]="double_armour_effect" } }, - [5836]={ + [6222]={ [1]={ [1]={ limit={ @@ -128841,7 +136064,7 @@ return { [1]="double_damage_chance_%_if_below_100_strength" } }, - [5837]={ + [6223]={ [1]={ [1]={ limit={ @@ -128857,7 +136080,7 @@ return { [1]="double_damage_%_chance_while_wielding_mace_sceptre_staff" } }, - [5838]={ + [6224]={ [1]={ [1]={ limit={ @@ -128873,7 +136096,7 @@ return { [1]="double_effect_of_consuming_frenzy_charges" } }, - [5839]={ + [6225]={ [1]={ [1]={ limit={ @@ -128889,7 +136112,7 @@ return { [1]="double_evasion_rating_from_gloves_helmets_boots" } }, - [5840]={ + [6226]={ [1]={ [1]={ limit={ @@ -128905,7 +136128,7 @@ return { [1]="double_evasion_rating_if_you_havent_been_hit_recently" } }, - [5841]={ + [6227]={ [1]={ [1]={ limit={ @@ -128921,7 +136144,7 @@ return { [1]="double_number_of_poison_you_can_inflict" } }, - [5842]={ + [6228]={ [1]={ [1]={ limit={ @@ -128942,7 +136165,7 @@ return { [2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [5843]={ + [6229]={ [1]={ [1]={ limit={ @@ -128958,7 +136181,7 @@ return { [1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [5844]={ + [6230]={ [1]={ [1]={ limit={ @@ -128974,7 +136197,7 @@ return { [1]="drain_%_max_mana_to_activate_expended_charms" } }, - [5845]={ + [6231]={ [1]={ [1]={ limit={ @@ -128990,7 +136213,7 @@ return { [1]="drain_focus_%_of_damage_dealt_on_hit" } }, - [5846]={ + [6232]={ [1]={ [1]={ limit={ @@ -129006,7 +136229,7 @@ return { [1]="drain_x_flask_charges_over_time_on_hit_for_6_seconds" } }, - [5847]={ + [6233]={ [1]={ [1]={ limit={ @@ -129035,7 +136258,7 @@ return { [1]="dread_banner_aura_effect_+%" } }, - [5848]={ + [6234]={ [1]={ [1]={ limit={ @@ -129051,7 +136274,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner" } }, - [5849]={ + [6235]={ [1]={ [1]={ [1]={ @@ -129071,7 +136294,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50" } }, - [5850]={ + [6236]={ [1]={ [1]={ limit={ @@ -129100,7 +136323,7 @@ return { [1]="dread_banner_mana_reservation_efficiency_+%" } }, - [5851]={ + [6237]={ [1]={ [1]={ limit={ @@ -129129,7 +136352,7 @@ return { [1]="dual_strike_accuracy_rating_+%_while_wielding_sword" } }, - [5852]={ + [6238]={ [1]={ [1]={ limit={ @@ -129158,7 +136381,7 @@ return { [1]="dual_strike_attack_speed_+%_while_wielding_claw" } }, - [5853]={ + [6239]={ [1]={ [1]={ limit={ @@ -129174,7 +136397,7 @@ return { [1]="dual_strike_critical_strike_multiplier_+_while_wielding_dagger" } }, - [5854]={ + [6240]={ [1]={ [1]={ limit={ @@ -129190,7 +136413,7 @@ return { [1]="dual_strike_intimidate_on_hit_while_wielding_axe" } }, - [5855]={ + [6241]={ [1]={ [1]={ limit={ @@ -129215,7 +136438,7 @@ return { [1]="dual_strike_main_hand_deals_double_damage_%" } }, - [5856]={ + [6242]={ [1]={ [1]={ limit={ @@ -129231,7 +136454,7 @@ return { [1]="dual_strike_melee_splash_while_wielding_mace" } }, - [5857]={ + [6243]={ [1]={ [1]={ limit={ @@ -129247,7 +136470,7 @@ return { [1]="dual_strike_melee_splash_with_off_hand_weapon" } }, - [5858]={ + [6244]={ [1]={ [1]={ limit={ @@ -129263,36 +136486,183 @@ return { [1]="dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws" } }, - [5859]={ + [6245]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Final Repeat of Attack Skills deals {}% more Damage" - }, - [2]={ - [1]={ - k="negate", - v=1 + text="Defeating the Arbiter grants completion of a section of the Fortress" + } + }, + stats={ + [1]="dummy_display_defeating_arbiter_will_allow_completion_of_a_section_of_fortress" + } + }, + [6246]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } }, + text="Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers" + } + }, + stats={ + [1]="dummy_display_stat_rune_chaos_convert" + } + }, + [6247]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Final Repeat of Attack Skills deals {}% less Damage" + text="When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers" } }, stats={ - [1]="duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final" + [1]="dummy_display_stat_rune_cold_convert" } }, - [5860]={ + [6248]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Destroys all Augment Sockets on the item to create a Jewel Socket" + } + }, + stats={ + [1]="dummy_display_stat_rune_create_jewel_socket" + } + }, + [6249]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT dummy_display_stat_rune_delevel_inherent_skill" + } + }, + stats={ + [1]="dummy_display_stat_rune_delevel_inherent_skill" + } + }, + [6250]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers" + } + }, + stats={ + [1]="dummy_display_stat_rune_fire_convert" + } + }, + [6251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers" + } + }, + stats={ + [1]="dummy_display_stat_rune_lightning_convert" + } + }, + [6252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power" + } + }, + stats={ + [1]="dummy_display_stat_rune_olroths_legacy" + } + }, + [6253]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Replaces modifiers unpredictably on Ezomyte and Kalguuran Unique items" + } + }, + stats={ + [1]="dummy_display_stat_rune_reforge" + } + }, + [6254]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Upgrades a socketed Rune" + } + }, + stats={ + [1]="dummy_display_stat_rune_upgrade" + } + }, + [6255]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Jewel Socket" + } + }, + stats={ + [1]="dummy_stat_zarokhs_gift_jewel_slot" + } + }, + [6256]={ [1]={ [1]={ limit={ @@ -129321,7 +136691,7 @@ return { [1]="duration_of_ailments_on_self_+%_per_fortification" } }, - [5861]={ + [6257]={ [1]={ [1]={ limit={ @@ -129337,7 +136707,7 @@ return { [1]="each_arrow_fired_gains_random_perdandus_prefix" } }, - [5862]={ + [6258]={ [1]={ [1]={ limit={ @@ -129353,7 +136723,7 @@ return { [1]="earthquake_and_earthshatter_shatter_on_killing_blow" } }, - [5863]={ + [6259]={ [1]={ [1]={ limit={ @@ -129382,7 +136752,7 @@ return { [1]="earthquake_damage_+%_per_100ms_duration" } }, - [5864]={ + [6260]={ [1]={ [1]={ limit={ @@ -129411,7 +136781,7 @@ return { [1]="earthshatter_area_of_effect_+%" } }, - [5865]={ + [6261]={ [1]={ [1]={ limit={ @@ -129440,7 +136810,7 @@ return { [1]="earthshatter_damage_+%" } }, - [5866]={ + [6262]={ [1]={ [1]={ limit={ @@ -129449,7 +136819,7 @@ return { [2]="#" } }, - text="Enemies you Electrocute have {0}% increased Damage taken" + text="Echoed Spells have {0}% increased Area of Effect" }, [2]={ [1]={ @@ -129462,14 +136832,14 @@ return { [2]=-1 } }, - text="Enemies you Electrocute have {0}% reduced Damage taken" + text="Echoed Spells have {0}% reduced Area of Effect" } }, stats={ - [1]="electrocuted_enemy_damage_taken_+%" + [1]="echoed_spell_area_of_effect_+%" } }, - [5867]={ + [6263]={ [1]={ [1]={ limit={ @@ -129478,7 +136848,7 @@ return { [2]="#" } }, - text="{0}% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently" + text="Enemies you Electrocute have {0}% increased Damage taken" }, [2]={ [1]={ @@ -129491,14 +136861,14 @@ return { [2]=-1 } }, - text="{0}% reduced chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently" + text="Enemies you Electrocute have {0}% reduced Damage taken" } }, stats={ - [1]="elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently" + [1]="electrocuted_enemy_damage_taken_+%" } }, - [5868]={ + [6264]={ [1]={ [1]={ limit={ @@ -129507,7 +136877,7 @@ return { [2]="#" } }, - text="{0}% increased Elemental Ailment Duration on you while holding a Shield" + text="{0}% increased Elemental Ailment Application" }, [2]={ [1]={ @@ -129520,14 +136890,14 @@ return { [2]=-1 } }, - text="{0}% reduced Elemental Ailment Duration on you while holding a Shield" + text="{0}% reduced Elemental Ailment Application" } }, stats={ - [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" + [1]="elemental_ailment_chance_+%" } }, - [5869]={ + [6265]={ [1]={ [1]={ limit={ @@ -129536,7 +136906,7 @@ return { [2]="#" } }, - text="{0}% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" + text="{0}% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently" }, [2]={ [1]={ @@ -129549,14 +136919,14 @@ return { [2]=-1 } }, - text="{0}% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" + text="{0}% reduced Elemental Ailment Application if you have Shapeshifted to an Animal form Recently" } }, stats={ - [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" + [1]="elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently" } }, - [5870]={ + [6266]={ [1]={ [1]={ limit={ @@ -129565,7 +136935,7 @@ return { [2]="#" } }, - text="Enemies take {0}% increased Damage for each Elemental Ailment type among\nyour Ailments on them" + text="{0}% increased Elemental Ailment Duration on you while holding a Shield" }, [2]={ [1]={ @@ -129578,30 +136948,43 @@ return { [2]=-1 } }, - text="Enemies take {0}% reduced Damage for each Elemental Ailment type among\nyour Ailments on them" + text="{0}% reduced Elemental Ailment Duration on you while holding a Shield" } }, stats={ - [1]="elemental_ailment_types_apply_damage_taken_+%" + [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" } }, - [5871]={ + [6267]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Elemental Ailments other than Freeze you inflict are Reflected to you" + text="{0}% increased Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" } }, stats={ - [1]="elemental_ailments_reflected_to_self" + [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" } }, - [5872]={ + [6268]={ [1]={ [1]={ limit={ @@ -129610,7 +136993,7 @@ return { [2]="#" } }, - text="{0}% increased Elemental Damage while Shapeshifted" + text="Enemies take {0}% increased Damage for each Elemental Ailment type among\nyour Ailments on them" }, [2]={ [1]={ @@ -129623,78 +137006,75 @@ return { [2]=-1 } }, - text="{0}% reduced Elemental Damage while Shapeshifted" + text="Enemies take {0}% reduced Damage for each Elemental Ailment type among\nyour Ailments on them" } }, stats={ - [1]="elemental_damage_+%_while_shapeshifted" + [1]="elemental_ailment_types_apply_damage_taken_+%" } }, - [5873]={ + [6269]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Elemental Damage with Hits is Lucky while you are Shocked" + text="Elemental Ailments other than Freeze you inflict are Reflected to you" } }, stats={ - [1]="elemental_damage_additional_rolls_lucky_shocked" + [1]="elemental_ailments_reflected_to_self" } }, - [5874]={ + [6270]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="All Elemental Damage from Hits Contributes to Freeze Buildup" - } - }, - stats={ - [1]="elemental_damage_can_freeze" - } - }, - [5875]={ - [1]={ - [1]={ + text="{0}% increased Elemental Damage while Shapeshifted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="All Elemental Damage from Hits Contributes to Flammability and Ignite Magnitudes" + text="{0}% reduced Elemental Damage while Shapeshifted" } }, stats={ - [1]="elemental_damage_can_ignite" + [1]="elemental_damage_+%_while_shapeshifted" } }, - [5876]={ + [6271]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Elemental Damage also Contributes to Bleeding Magnitude" + text="Elemental Damage with Hits is Lucky while you are Shocked" } }, stats={ - [1]="elemental_damage_can_inflict_bleeding" + [1]="elemental_damage_additional_rolls_lucky_shocked" } }, - [5877]={ + [6272]={ [1]={ [1]={ limit={ @@ -129723,7 +137103,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [5878]={ + [6273]={ [1]={ [1]={ limit={ @@ -129752,7 +137132,7 @@ return { [1]="elemental_damage_+%_if_cursed_enemy_killed_recently" } }, - [5879]={ + [6274]={ [1]={ [1]={ limit={ @@ -129781,7 +137161,7 @@ return { [1]="elemental_damage_+%_if_enemy_chilled_recently" } }, - [5880]={ + [6275]={ [1]={ [1]={ limit={ @@ -129810,7 +137190,7 @@ return { [1]="elemental_damage_+%_if_enemy_ignited_recently" } }, - [5881]={ + [6276]={ [1]={ [1]={ limit={ @@ -129839,7 +137219,7 @@ return { [1]="elemental_damage_+%_if_enemy_shocked_recently" } }, - [5882]={ + [6277]={ [1]={ [1]={ limit={ @@ -129868,7 +137248,7 @@ return { [1]="elemental_damage_+%_if_have_crit_recently" } }, - [5883]={ + [6278]={ [1]={ [1]={ limit={ @@ -129884,7 +137264,7 @@ return { [1]="elemental_damage_+%_if_used_a_warcry_recently" } }, - [5884]={ + [6279]={ [1]={ [1]={ limit={ @@ -129913,7 +137293,7 @@ return { [1]="elemental_damage_+%_per_10_devotion" } }, - [5885]={ + [6280]={ [1]={ [1]={ limit={ @@ -129942,7 +137322,7 @@ return { [1]="elemental_damage_+%_per_10_dexterity" } }, - [5886]={ + [6281]={ [1]={ [1]={ limit={ @@ -129971,7 +137351,7 @@ return { [1]="elemental_damage_+%_per_12_int" } }, - [5887]={ + [6282]={ [1]={ [1]={ limit={ @@ -130000,7 +137380,7 @@ return { [1]="elemental_damage_+%_per_12_strength" } }, - [5888]={ + [6283]={ [1]={ [1]={ limit={ @@ -130029,7 +137409,7 @@ return { [1]="elemental_damage_+%_per_power_charge" } }, - [5889]={ + [6284]={ [1]={ [1]={ limit={ @@ -130058,7 +137438,7 @@ return { [1]="elemental_damage_+%_per_sextant_affecting_area" } }, - [5890]={ + [6285]={ [1]={ [1]={ limit={ @@ -130087,7 +137467,7 @@ return { [1]="elemental_damage_+%_while_affected_by_a_herald" } }, - [5891]={ + [6286]={ [1]={ [1]={ limit={ @@ -130116,7 +137496,7 @@ return { [1]="elemental_damage_+%_while_in_area_affected_by_sextant" } }, - [5892]={ + [6287]={ [1]={ [1]={ limit={ @@ -130141,7 +137521,7 @@ return { [1]="elemental_damage_reduction_%_from_evasion_rating" } }, - [5893]={ + [6288]={ [1]={ [1]={ limit={ @@ -130174,7 +137554,7 @@ return { [1]="elemental_damage_resistance_+%" } }, - [5894]={ + [6289]={ [1]={ [1]={ limit={ @@ -130183,14 +137563,14 @@ return { [2]="#" } }, - text="Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" + text="Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" } }, stats={ [1]="elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [5895]={ + [6290]={ [1]={ [1]={ limit={ @@ -130206,7 +137586,7 @@ return { [1]="elemental_damage_taken_%_recouped_as_life" } }, - [5896]={ + [6291]={ [1]={ [1]={ limit={ @@ -130235,7 +137615,7 @@ return { [1]="elemental_damage_taken_+%_final_per_raised_zombie" } }, - [5897]={ + [6292]={ [1]={ [1]={ limit={ @@ -130268,7 +137648,7 @@ return { [1]="elemental_damage_taken_from_hits_+%_per_endurance_charge" } }, - [5898]={ + [6293]={ [1]={ [1]={ limit={ @@ -130297,7 +137677,7 @@ return { [1]="elemental_damage_taken_+%_if_been_hit_recently" } }, - [5899]={ + [6294]={ [1]={ [1]={ limit={ @@ -130326,7 +137706,7 @@ return { [1]="elemental_damage_taken_+%_if_not_hit_recently" } }, - [5900]={ + [6295]={ [1]={ [1]={ limit={ @@ -130355,7 +137735,7 @@ return { [1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge" } }, - [5901]={ + [6296]={ [1]={ [1]={ limit={ @@ -130384,7 +137764,7 @@ return { [1]="elemental_damage_taken_+%_per_endurance_charge" } }, - [5902]={ + [6297]={ [1]={ [1]={ limit={ @@ -130417,7 +137797,7 @@ return { [1]="elemental_damage_taken_+%_while_stationary" } }, - [5903]={ + [6298]={ [1]={ [1]={ limit={ @@ -130446,7 +137826,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_per_power_charge" } }, - [5904]={ + [6299]={ [1]={ [1]={ limit={ @@ -130462,7 +137842,7 @@ return { [1]="elemental_golems_maximum_life_is_doubled" } }, - [5905]={ + [6300]={ [1]={ [1]={ limit={ @@ -130487,7 +137867,7 @@ return { [1]="elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%" } }, - [5906]={ + [6301]={ [1]={ [1]={ limit={ @@ -130503,7 +137883,7 @@ return { [1]="elemental_hit_cannot_roll_cold_damage" } }, - [5907]={ + [6302]={ [1]={ [1]={ limit={ @@ -130519,7 +137899,7 @@ return { [1]="elemental_hit_cannot_roll_fire_damage" } }, - [5908]={ + [6303]={ [1]={ [1]={ limit={ @@ -130535,23 +137915,7 @@ return { [1]="elemental_hit_cannot_roll_lightning_damage" } }, - [5909]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Elemental damage from Hits taken as Physical damage" - } - }, - stats={ - [1]="elemental_hit_damage_taken_%_as_physical" - } - }, - [5910]={ + [6304]={ [1]={ [1]={ limit={ @@ -130567,7 +137931,7 @@ return { [1]="elemental_hit_deals_50%_less_cold_damage" } }, - [5911]={ + [6305]={ [1]={ [1]={ limit={ @@ -130583,7 +137947,7 @@ return { [1]="elemental_hit_deals_50%_less_fire_damage" } }, - [5912]={ + [6306]={ [1]={ [1]={ limit={ @@ -130599,7 +137963,7 @@ return { [1]="elemental_hit_deals_50%_less_lightning_damage" } }, - [5913]={ + [6307]={ [1]={ [1]={ limit={ @@ -130615,7 +137979,7 @@ return { [1]="elemental_penetration_can_go_down_to_override" } }, - [5914]={ + [6308]={ [1]={ [1]={ limit={ @@ -130631,7 +137995,7 @@ return { [1]="elemental_penetration_%_if_you_have_a_power_charge" } }, - [5915]={ + [6309]={ [1]={ [1]={ limit={ @@ -130647,7 +138011,7 @@ return { [1]="elemental_penetration_%_while_chilled" } }, - [5916]={ + [6310]={ [1]={ [1]={ limit={ @@ -130680,7 +138044,7 @@ return { [1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%" } }, - [5917]={ + [6311]={ [1]={ [1]={ limit={ @@ -130713,7 +138077,7 @@ return { [1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements" } }, - [5918]={ + [6312]={ [1]={ [1]={ limit={ @@ -130729,7 +138093,7 @@ return { [1]="elemental_resistance_%_per_minion_up_to_30%" } }, - [5919]={ + [6313]={ [1]={ [1]={ limit={ @@ -130745,7 +138109,7 @@ return { [1]="elemental_resistance_cannot_be_lowered_by_curses" } }, - [5920]={ + [6314]={ [1]={ [1]={ limit={ @@ -130761,7 +138125,7 @@ return { [1]="elemental_resistance_%_per_10_devotion" } }, - [5921]={ + [6315]={ [1]={ [1]={ limit={ @@ -130777,7 +138141,7 @@ return { [1]="elemental_resistances_are_limited_by_highest_maximum_elemental_resistance" } }, - [5922]={ + [6316]={ [1]={ [1]={ limit={ @@ -130793,23 +138157,23 @@ return { [1]="elemental_skill_chance_to_blind_nearby_enemies_%" } }, - [5923]={ + [6317]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d} to Level of all Elemental Skills" + text="{0:+d} to Limit for Elemental Skills" } }, stats={ - [1]="elemental_skill_gem_level_+" + [1]="elemental_skill_limit_+" } }, - [5924]={ + [6318]={ [1]={ [1]={ limit={ @@ -130825,7 +138189,7 @@ return { [1]="elemental_skills_deal_triple_damage" } }, - [5925]={ + [6319]={ [1]={ [1]={ limit={ @@ -130854,7 +138218,7 @@ return { [1]="elemental_storm_cooldown_recovery_speed_+%_final" } }, - [5926]={ + [6320]={ [1]={ [1]={ limit={ @@ -130883,7 +138247,7 @@ return { [1]="elemental_sundering_damage_+%_final_if_created_from_unique" } }, - [5927]={ + [6321]={ [1]={ [1]={ limit={ @@ -130899,7 +138263,7 @@ return { [1]="elemental_weakness_no_reservation" } }, - [5928]={ + [6322]={ [1]={ [1]={ limit={ @@ -130928,7 +138292,7 @@ return { [1]="elementalist_area_of_effect_+%_for_5_seconds" } }, - [5929]={ + [6323]={ [1]={ [1]={ limit={ @@ -130944,7 +138308,7 @@ return { [1]="elementalist_chill_maximum_magnitude_override" } }, - [5930]={ + [6324]={ [1]={ [1]={ limit={ @@ -130973,7 +138337,7 @@ return { [1]="elementalist_elemental_damage_+%_for_5_seconds" } }, - [5931]={ + [6325]={ [1]={ [1]={ limit={ @@ -130989,7 +138353,7 @@ return { [1]="elementalist_gain_shaper_of_desolation_every_10_seconds" } }, - [5932]={ + [6326]={ [1]={ [1]={ limit={ @@ -131018,7 +138382,7 @@ return { [1]="elementalist_ignite_effect_+%_final" } }, - [5933]={ + [6327]={ [1]={ [1]={ limit={ @@ -131047,7 +138411,7 @@ return { [1]="elusive_effect_+%" } }, - [5934]={ + [6328]={ [1]={ [1]={ limit={ @@ -131076,7 +138440,7 @@ return { [1]="ember_projectile_spread_area_+%" } }, - [5935]={ + [6329]={ [1]={ [1]={ limit={ @@ -131105,7 +138469,7 @@ return { [1]="empowered_attack_damage_+%_per_10_tribute" } }, - [5936]={ + [6330]={ [1]={ [1]={ limit={ @@ -131134,7 +138498,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [5937]={ + [6331]={ [1]={ [1]={ limit={ @@ -131150,7 +138514,7 @@ return { [1]="empowered_attack_double_damage_%_chance" } }, - [5938]={ + [6332]={ [1]={ [1]={ limit={ @@ -131179,7 +138543,7 @@ return { [1]="empowered_attack_hit_damage_stun_multiplier_+%" } }, - [5939]={ + [6333]={ [1]={ [1]={ limit={ @@ -131195,7 +138559,23 @@ return { [1]="empowered_attack_physical_damage_%_to_gain_as_fire" } }, - [5940]={ + [6334]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can tattoo Runes onto your body, gaining\nadditional Rune-only sockets:\n1 Helmet socket\n2 Body Armour sockets\n1 Gloves socket\n1 Boots socket" + } + }, + stats={ + [1]="enable_chakras" + } + }, + [6335]={ [1]={ [1]={ limit={ @@ -131211,7 +138591,7 @@ return { [1]="enable_ring_slot_3" } }, - [5941]={ + [6336]={ [1]={ [1]={ limit={ @@ -131240,7 +138620,7 @@ return { [1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently" } }, - [5942]={ + [6337]={ [1]={ [1]={ limit={ @@ -131256,7 +138636,7 @@ return { [1]="endurance_charge_on_hit_%_vs_no_armour" } }, - [5943]={ + [6338]={ [1]={ [1]={ limit={ @@ -131272,7 +138652,7 @@ return { [1]="endurance_charge_on_kill_percent_chance_while_holding_shield" } }, - [5944]={ + [6339]={ [1]={ [1]={ limit={ @@ -131301,7 +138681,7 @@ return { [1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" } }, - [5945]={ + [6340]={ [1]={ [1]={ limit={ @@ -131326,7 +138706,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [5946]={ + [6341]={ [1]={ [1]={ limit={ @@ -131355,7 +138735,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_armour" } }, - [5947]={ + [6342]={ [1]={ [1]={ limit={ @@ -131384,7 +138764,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_evasion_rating" } }, - [5948]={ + [6343]={ [1]={ [1]={ limit={ @@ -131409,7 +138789,7 @@ return { [1]="enemies_are_maimed_for_x_seconds_after_becoming_unpinned" } }, - [5949]={ + [6344]={ [1]={ [1]={ limit={ @@ -131425,7 +138805,7 @@ return { [1]="enemies_blinded_by_you_while_blinded_have_malediction" } }, - [5950]={ + [6345]={ [1]={ [1]={ limit={ @@ -131441,7 +138821,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [5951]={ + [6346]={ [1]={ [1]={ limit={ @@ -131457,7 +138837,7 @@ return { [1]="enemies_chilled_by_hits_take_damage_increased_by_chill_effect" } }, - [5952]={ + [6347]={ [1]={ [1]={ limit={ @@ -131486,7 +138866,7 @@ return { [1]="enemies_cursed_by_you_have_life_regeneration_rate_+%" } }, - [5953]={ + [6348]={ [1]={ [1]={ limit={ @@ -131502,7 +138882,7 @@ return { [1]="enemies_explode_for_%_life_as_physical_damage" } }, - [5954]={ + [6349]={ [1]={ [1]={ limit={ @@ -131518,7 +138898,7 @@ return { [1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage" } }, - [5955]={ + [6350]={ [1]={ [1]={ limit={ @@ -131534,7 +138914,7 @@ return { [1]="enemies_explode_on_kill" } }, - [5956]={ + [6351]={ [1]={ [1]={ limit={ @@ -131550,7 +138930,7 @@ return { [1]="enemies_explode_on_kill_while_unhinged" } }, - [5957]={ + [6352]={ [1]={ [1]={ limit={ @@ -131575,7 +138955,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage" } }, - [5958]={ + [6353]={ [1]={ [1]={ limit={ @@ -131600,7 +138980,32 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked" } }, - [5959]={ + [6354]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Physical Damage of Enemies Hitting you is Lucky" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Physical Damage of Enemies Hitting you is Unlucky" + } + }, + stats={ + [1]="enemies_extra_damage_rolls_with_physical_damage" + } + }, + [6355]={ [1]={ [1]={ limit={ @@ -131625,7 +139030,7 @@ return { [1]="enemies_hitting_you_drop_burning_ground_%" } }, - [5960]={ + [6356]={ [1]={ [1]={ limit={ @@ -131650,7 +139055,7 @@ return { [1]="enemies_hitting_you_drop_chilled_ground_%" } }, - [5961]={ + [6357]={ [1]={ [1]={ limit={ @@ -131675,7 +139080,7 @@ return { [1]="enemies_hitting_you_drop_shocked_ground_%" } }, - [5962]={ + [6358]={ [1]={ [1]={ limit={ @@ -131691,7 +139096,39 @@ return { [1]="enemies_ignited_by_you_have_physical_damage_%_converted_to_fire" } }, - [5963]={ + [6359]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies standing on Chilled Ground take {0}% increased Fire Damage" + } + }, + stats={ + [1]="enemies_in_chilled_ground_take_+%_fire_damage" + } + }, + [6360]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies standing on Ignited Ground take {0}% increased Cold Damage" + } + }, + stats={ + [1]="enemies_in_ignited_ground_take_+%_cold_damage" + } + }, + [6361]={ [1]={ [1]={ limit={ @@ -131707,7 +139144,23 @@ return { [1]="enemies_in_presence_are_blinded" } }, - [5964]={ + [6362]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies in your Presence are Blinded" + } + }, + stats={ + [1]="enemies_in_presence_are_blinded_by_the_wendigo" + } + }, + [6363]={ [1]={ [1]={ limit={ @@ -131723,7 +139176,7 @@ return { [1]="enemies_in_presence_are_intimidated" } }, - [5965]={ + [6364]={ [1]={ [1]={ limit={ @@ -131752,7 +139205,7 @@ return { [1]="enemies_in_presence_cooldown_recovery_+%" } }, - [5966]={ + [6365]={ [1]={ [1]={ limit={ @@ -131768,7 +139221,7 @@ return { [1]="enemies_in_presence_count_as_low_life" } }, - [5967]={ + [6366]={ [1]={ [1]={ limit={ @@ -131784,7 +139237,23 @@ return { [1]="enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [5968]={ + [6367]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies in your Presence gain 1 Gruelling Madness each second" + } + }, + stats={ + [1]="enemies_in_your_presence_gain_a_stack_of_gruelling_madness_every_second" + } + }, + [6368]={ [1]={ [1]={ limit={ @@ -131809,7 +139278,7 @@ return { [1]="enemies_in_presence_gain_critical_weakness_every_second_for_seconds" } }, - [5969]={ + [6369]={ [1]={ [1]={ limit={ @@ -131825,7 +139294,7 @@ return { [1]="enemies_in_presence_have_exposure" } }, - [5970]={ + [6370]={ [1]={ [1]={ limit={ @@ -131841,23 +139310,7 @@ return { [1]="enemies_in_presence_have_fire_resistance_%" } }, - [5971]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies in your Presence have at least {0}% of Life Reserved" - } - }, - stats={ - [1]="enemies_in_presence_have_life_reserved_%" - } - }, - [5972]={ + [6371]={ [1]={ [1]={ limit={ @@ -131873,7 +139326,7 @@ return { [1]="enemies_in_presence_have_no_elemental_resistances" } }, - [5973]={ + [6372]={ [1]={ [1]={ limit={ @@ -131902,7 +139355,7 @@ return { [1]="enemies_in_presence_life_regeneration_+%" } }, - [5974]={ + [6373]={ [1]={ [1]={ limit={ @@ -131918,7 +139371,7 @@ return { [1]="enemies_in_presence_lightning_resist_equal_to_yours" } }, - [5975]={ + [6374]={ [1]={ [1]={ limit={ @@ -131934,7 +139387,7 @@ return { [1]="enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [5976]={ + [6375]={ [1]={ [1]={ limit={ @@ -131950,7 +139403,7 @@ return { [1]="enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted" } }, - [5977]={ + [6376]={ [1]={ [1]={ limit={ @@ -131975,7 +139428,7 @@ return { [1]="enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance" } }, - [5978]={ + [6377]={ [1]={ [1]={ limit={ @@ -131991,7 +139444,7 @@ return { [1]="enemies_near_corpses_created_recently_are_shocked_and_chilled" } }, - [5979]={ + [6378]={ [1]={ [1]={ limit={ @@ -132007,7 +139460,7 @@ return { [1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage" } }, - [5980]={ + [6379]={ [1]={ [1]={ limit={ @@ -132023,7 +139476,7 @@ return { [1]="enemies_near_link_skill_target_have_exposure" } }, - [5981]={ + [6380]={ [1]={ [1]={ limit={ @@ -132039,7 +139492,7 @@ return { [1]="enemies_near_marked_enemy_are_blinded" } }, - [5982]={ + [6381]={ [1]={ [1]={ limit={ @@ -132055,7 +139508,7 @@ return { [1]="enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning" } }, - [5983]={ + [6382]={ [1]={ [1]={ limit={ @@ -132080,7 +139533,7 @@ return { [1]="enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage" } }, - [5984]={ + [6383]={ [1]={ [1]={ limit={ @@ -132096,7 +139549,7 @@ return { [1]="enemies_taunted_by_you_cannot_evade_attacks" } }, - [5985]={ + [6384]={ [1]={ [1]={ limit={ @@ -132112,7 +139565,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [5986]={ + [6385]={ [1]={ [1]={ limit={ @@ -132128,7 +139581,7 @@ return { [1]="enemies_taunted_by_your_warcries_are_unnerved" } }, - [5987]={ + [6386]={ [1]={ [1]={ limit={ @@ -132144,7 +139597,7 @@ return { [1]="enemies_that_hit_you_inflict_temporal_chains" } }, - [5988]={ + [6387]={ [1]={ [1]={ limit={ @@ -132173,7 +139626,7 @@ return { [1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%" } }, - [5989]={ + [6388]={ [1]={ [1]={ limit={ @@ -132202,7 +139655,23 @@ return { [1]="enemies_you_blind_have_critical_strike_chance_+%" } }, - [5990]={ + [6389]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies have no Critical Damage Bonus for {0} seconds after you Blind them" + } + }, + stats={ + [1]="enemies_you_blind_have_no_crit_bonus_for_x_seconds" + } + }, + [6390]={ [1]={ [1]={ limit={ @@ -132218,7 +139687,7 @@ return { [1]="enemies_you_curse_are_intimidated" } }, - [5991]={ + [6391]={ [1]={ [1]={ limit={ @@ -132234,7 +139703,7 @@ return { [1]="enemies_you_curse_are_unnerved" } }, - [5992]={ + [6392]={ [1]={ [1]={ limit={ @@ -132250,7 +139719,7 @@ return { [1]="enemies_you_curse_cannot_recharge_energy_shield" } }, - [5993]={ + [6393]={ [1]={ [1]={ limit={ @@ -132266,7 +139735,7 @@ return { [1]="enemies_you_curse_have_15%_hinder" } }, - [5994]={ + [6394]={ [1]={ [1]={ limit={ @@ -132295,7 +139764,7 @@ return { [1]="enemies_you_expose_have_self_elemental_status_duration_+%" } }, - [5995]={ + [6395]={ [1]={ [1]={ limit={ @@ -132311,7 +139780,7 @@ return { [1]="enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds" } }, - [5996]={ + [6396]={ [1]={ [1]={ limit={ @@ -132340,23 +139809,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [5997]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" - } - }, - stats={ - [1]="enemies_you_ignite_take_chaos_damage_from_ignite_instead" - } - }, - [5998]={ + [6397]={ [1]={ [1]={ limit={ @@ -132372,7 +139825,7 @@ return { [1]="enemies_you_ignite_wither_does_not_expire" } }, - [5999]={ + [6398]={ [1]={ [1]={ limit={ @@ -132401,7 +139854,7 @@ return { [1]="enemies_you_intimidate_have_stun_duration_on_self_+%" } }, - [6000]={ + [6399]={ [1]={ [1]={ limit={ @@ -132430,7 +139883,7 @@ return { [1]="enemies_you_maim_have_damage_taken_over_time_+%" } }, - [6001]={ + [6400]={ [1]={ [1]={ limit={ @@ -132459,7 +139912,7 @@ return { [1]="enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self" } }, - [6002]={ + [6401]={ [1]={ [1]={ limit={ @@ -132475,7 +139928,7 @@ return { [1]="enemies_you_wither_have_all_resistances_%" } }, - [6003]={ + [6402]={ [1]={ [1]={ limit={ @@ -132508,7 +139961,7 @@ return { [1]="enemy_evasion_+%_if_you_have_hit_them_recently" } }, - [6004]={ + [6403]={ [1]={ [1]={ limit={ @@ -132537,7 +139990,7 @@ return { [1]="enemy_extra_damage_rolls_chance_%" } }, - [6005]={ + [6404]={ [1]={ [1]={ limit={ @@ -132566,7 +140019,7 @@ return { [1]="enemy_extra_damage_rolls_chance_%" } }, - [6006]={ + [6405]={ [1]={ [1]={ limit={ @@ -132595,7 +140048,7 @@ return { [1]="enemy_extra_damage_rolls_if_magic_ring_equipped" } }, - [6007]={ + [6406]={ [1]={ [1]={ limit={ @@ -132624,7 +140077,36 @@ return { [1]="enemy_extra_damage_rolls_when_on_full_life" } }, - [6008]={ + [6407]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hits against you have {0}% increased Critical Hit Chance while you are Chilled" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Hits against you have {0}% reduced Critical Hit Chance while you are Chilled" + } + }, + stats={ + [1]="enemy_hit_critical_strike_chance_+%_against_self_while_chilled" + } + }, + [6408]={ [1]={ [1]={ limit={ @@ -132640,7 +140122,7 @@ return { [1]="enemy_hits_against_you_have_distance_based_accuracy_falloff" } }, - [6009]={ + [6409]={ [1]={ [1]={ limit={ @@ -132673,7 +140155,7 @@ return { [1]="enemy_life_regeneration_rate_+%_for_4_seconds_on_hit" } }, - [6010]={ + [6410]={ [1]={ [1]={ limit={ @@ -132702,7 +140184,7 @@ return { [1]="enemy_spell_critical_strike_chance_+%_against_self" } }, - [6011]={ + [6411]={ [1]={ [1]={ limit={ @@ -132731,7 +140213,7 @@ return { [1]="energy_generated_+%" } }, - [6012]={ + [6412]={ [1]={ [1]={ limit={ @@ -132760,7 +140242,7 @@ return { [1]="ascendancy_energy_generated_+%_final" } }, - [6013]={ + [6413]={ [1]={ [1]={ limit={ @@ -132789,7 +140271,7 @@ return { [1]="energy_generated_+%_if_crit_recently" } }, - [6014]={ + [6414]={ [1]={ [1]={ limit={ @@ -132818,7 +140300,36 @@ return { [1]="energy_generated_+%_on_full_mana" } }, - [6015]={ + [6415]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Meta Skills gain {0}% increased Energy for each Critical Hit you've dealt with Spells Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Meta Skills gain {0}% reduced Energy for each Critical Hit you've dealt with Spells Recently" + } + }, + stats={ + [1]="energy_generated_+%_per_spell_crit_dealt_recently" + } + }, + [6416]={ [1]={ [1]={ limit={ @@ -132834,7 +140345,7 @@ return { [1]="energy_generation_is_doubled" } }, - [6016]={ + [6417]={ [1]={ [1]={ limit={ @@ -132863,7 +140374,7 @@ return { [1]="energy_shield_+%_if_both_rings_have_evasion_mod" } }, - [6017]={ + [6418]={ [1]={ [1]={ limit={ @@ -132892,7 +140403,7 @@ return { [1]="energy_shield_+%_if_consumed_power_charge_recently" } }, - [6018]={ + [6419]={ [1]={ [1]={ limit={ @@ -132901,14 +140412,14 @@ return { [2]="#" } }, - text="{0:+d} to Energy Shield per 8 Item Evasion Rating on Equipped Boots" + text="{0:+d} to Energy Shield per 8 Item Evasion on Equipped Boots" } }, stats={ [1]="energy_shield_+_per_8_evasion_on_boots" } }, - [6019]={ + [6420]={ [1]={ [1]={ limit={ @@ -132924,7 +140435,7 @@ return { [1]="energy_shield_+_per_8_helmet_armour" } }, - [6020]={ + [6421]={ [1]={ [1]={ limit={ @@ -132933,14 +140444,14 @@ return { [2]="#" } }, - text="Increases and Reductions to Maximum Energy Shield instead apply to Ward" + text="Maximum Energy Shield cannot be Converted" } }, stats={ - [1]="energy_shield_additive_modifiers_instead_apply_to_ward" + [1]="energy_shield_cannot_be_converted" } }, - [6021]={ + [6422]={ [1]={ [1]={ limit={ @@ -132969,7 +140480,7 @@ return { [1]="energy_shield_delay_-%_if_stunned_recently" } }, - [6022]={ + [6423]={ [1]={ [1]={ limit={ @@ -132998,7 +140509,7 @@ return { [1]="energy_shield_delay_-%_when_not_on_full_life" } }, - [6023]={ + [6424]={ [1]={ [1]={ limit={ @@ -133027,7 +140538,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_archon" } }, - [6024]={ + [6425]={ [1]={ [1]={ limit={ @@ -133056,7 +140567,7 @@ return { [1]="energy_shield_delay_-%_while_shapeshifted" } }, - [6025]={ + [6426]={ [1]={ [1]={ limit={ @@ -133085,7 +140596,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_discipline" } }, - [6026]={ + [6427]={ [1]={ [1]={ limit={ @@ -133114,7 +140625,7 @@ return { [1]="energy_shield_from_focus_+%" } }, - [6027]={ + [6428]={ [1]={ [1]={ limit={ @@ -133143,7 +140654,7 @@ return { [1]="energy_shield_from_gloves_and_boots_+%" } }, - [6028]={ + [6429]={ [1]={ [1]={ limit={ @@ -133172,7 +140683,7 @@ return { [1]="energy_shield_from_helmet_+%" } }, - [6029]={ + [6430]={ [1]={ [1]={ limit={ @@ -133201,7 +140712,7 @@ return { [1]="energy_shield_gain_per_target_hit_while_affected_by_discipline" } }, - [6030]={ + [6431]={ [1]={ [1]={ limit={ @@ -133217,7 +140728,7 @@ return { [1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web" } }, - [6031]={ + [6432]={ [1]={ [1]={ limit={ @@ -133233,7 +140744,7 @@ return { [1]="energy_shield_increased_by_uncapped_cold_resistance" } }, - [6032]={ + [6433]={ [1]={ [1]={ [1]={ @@ -133253,7 +140764,7 @@ return { [1]="energy_shield_lost_per_minute_%" } }, - [6033]={ + [6434]={ [1]={ [1]={ limit={ @@ -133269,7 +140780,7 @@ return { [1]="energy_shield_per_level" } }, - [6034]={ + [6435]={ [1]={ [1]={ limit={ @@ -133285,7 +140796,7 @@ return { [1]="energy_shield_+%_per_10_strength" } }, - [6035]={ + [6436]={ [1]={ [1]={ limit={ @@ -133301,7 +140812,7 @@ return { [1]="energy_shield_+%_per_power_charge" } }, - [6036]={ + [6437]={ [1]={ [1]={ limit={ @@ -133330,7 +140841,7 @@ return { [1]="energy_shield_recharge_+%_if_amulet_has_evasion_mod" } }, - [6037]={ + [6438]={ [1]={ [1]={ [1]={ @@ -133363,7 +140874,7 @@ return { [1]="energy_shield_recharge_delay_override_ms" } }, - [6038]={ + [6439]={ [1]={ [1]={ limit={ @@ -133392,7 +140903,7 @@ return { [1]="energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently" } }, - [6039]={ + [6440]={ [1]={ [1]={ limit={ @@ -133421,7 +140932,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_25_tribute" } }, - [6040]={ + [6441]={ [1]={ [1]={ limit={ @@ -133450,7 +140961,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_4_dexterity" } }, - [6041]={ + [6442]={ [1]={ [1]={ limit={ @@ -133479,7 +140990,23 @@ return { [1]="energy_shield_recharge_rate_+%_per_4_strength" } }, - [6042]={ + [6443]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="1% increased Energy Shield Recharge Rate per {0} maximum Runic Ward" + } + }, + stats={ + [1]="energy_shield_recharge_rate_+%_per_X_maximum_ward" + } + }, + [6444]={ [1]={ [1]={ limit={ @@ -133508,7 +141035,7 @@ return { [1]="energy_shield_recharge_rate_+%_while_affected_by_archon" } }, - [6043]={ + [6445]={ [1]={ [1]={ limit={ @@ -133537,7 +141064,7 @@ return { [1]="energy_shield_recharge_rate_+%_while_shapeshifted" } }, - [6044]={ + [6446]={ [1]={ [1]={ limit={ @@ -133566,7 +141093,7 @@ return { [1]="energy_shield_recharge_rate_+%_if_blocked_recently" } }, - [6045]={ + [6447]={ [1]={ [1]={ limit={ @@ -133582,7 +141109,7 @@ return { [1]="energy_shield_recharge_start_when_minions_reform" } }, - [6046]={ + [6448]={ [1]={ [1]={ limit={ @@ -133598,7 +141125,7 @@ return { [1]="energy_shield_recharge_start_when_stunned" } }, - [6047]={ + [6449]={ [1]={ [1]={ limit={ @@ -133614,7 +141141,7 @@ return { [1]="energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds" } }, - [6048]={ + [6450]={ [1]={ [1]={ limit={ @@ -133630,7 +141157,7 @@ return { [1]="energy_shield_recharges_on_kill_%" } }, - [6049]={ + [6451]={ [1]={ [1]={ limit={ @@ -133646,7 +141173,7 @@ return { [1]="energy_shield_recharges_on_skill_use_chance_%" } }, - [6050]={ + [6452]={ [1]={ [1]={ limit={ @@ -133675,7 +141202,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_havent_killed_recently" } }, - [6051]={ + [6453]={ [1]={ [1]={ limit={ @@ -133704,7 +141231,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_not_hit_recently" } }, - [6052]={ + [6454]={ [1]={ [1]={ limit={ @@ -133733,7 +141260,7 @@ return { [1]="energy_shield_recovery_rate_while_affected_by_discipline_+%" } }, - [6053]={ + [6455]={ [1]={ [1]={ [1]={ @@ -133753,7 +141280,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently" } }, - [6054]={ + [6456]={ [1]={ [1]={ [1]={ @@ -133773,7 +141300,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently" } }, - [6055]={ + [6457]={ [1]={ [1]={ [1]={ @@ -133793,7 +141320,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby" } }, - [6056]={ + [6458]={ [1]={ [1]={ [1]={ @@ -133813,7 +141340,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_per_poison_stack" } }, - [6057]={ + [6459]={ [1]={ [1]={ [1]={ @@ -133833,7 +141360,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently" } }, - [6058]={ + [6460]={ [1]={ [1]={ [1]={ @@ -133853,7 +141380,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline" } }, - [6059]={ + [6461]={ [1]={ [1]={ [1]={ @@ -133873,7 +141400,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [6060]={ + [6462]={ [1]={ [1]={ limit={ @@ -133889,7 +141416,7 @@ return { [1]="energy_shield_regeneration_rate_per_second" } }, - [6061]={ + [6463]={ [1]={ [1]={ limit={ @@ -133918,7 +141445,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [6062]={ + [6464]={ [1]={ [1]={ limit={ @@ -133934,7 +141461,7 @@ return { [1]="enfeeble_no_reservation" } }, - [6063]={ + [6465]={ [1]={ [1]={ limit={ @@ -133963,7 +141490,7 @@ return { [1]="ensnaring_arrow_area_of_effect_+%" } }, - [6064]={ + [6466]={ [1]={ [1]={ limit={ @@ -133992,7 +141519,7 @@ return { [1]="ensnaring_arrow_debuff_effect_+%" } }, - [6065]={ + [6467]={ [1]={ [1]={ limit={ @@ -134008,7 +141535,7 @@ return { [1]="envy_reserves_no_mana" } }, - [6066]={ + [6468]={ [1]={ [1]={ limit={ @@ -134024,7 +141551,7 @@ return { [1]="ephemeral_edge_maximum_lightning_damage_from_es_%" } }, - [6067]={ + [6469]={ [1]={ [1]={ limit={ @@ -134049,7 +141576,7 @@ return { [1]="equipped_jewellery_effect_of_bonuses_+%" } }, - [6068]={ + [6470]={ [1]={ [1]={ limit={ @@ -134074,7 +141601,7 @@ return { [1]="equipped_ring1_effect_of_bonuses_+%" } }, - [6069]={ + [6471]={ [1]={ [1]={ limit={ @@ -134099,7 +141626,7 @@ return { [1]="equipped_ring2_effect_of_bonuses_+%" } }, - [6070]={ + [6472]={ [1]={ [1]={ limit={ @@ -134124,7 +141651,7 @@ return { [1]="equipped_rings_effect_of_bonuses_+%" } }, - [6071]={ + [6473]={ [1]={ [1]={ [1]={ @@ -134144,7 +141671,7 @@ return { [1]="es_regeneration_per_minute_%_while_stationary" } }, - [6072]={ + [6474]={ [1]={ [1]={ limit={ @@ -134160,7 +141687,7 @@ return { [1]="essence_abyss_guaranteed_pick" } }, - [6073]={ + [6475]={ [1]={ [1]={ limit={ @@ -134189,7 +141716,7 @@ return { [1]="essence_drain_soulrend_base_projectile_speed_+%" } }, - [6074]={ + [6476]={ [1]={ [1]={ limit={ @@ -134214,7 +141741,7 @@ return { [1]="essence_drain_soulrend_number_of_additional_projectiles" } }, - [6075]={ + [6477]={ [1]={ [1]={ limit={ @@ -134230,7 +141757,7 @@ return { [1]="essence_grants_additional_attributes" } }, - [6076]={ + [6478]={ [1]={ [1]={ limit={ @@ -134246,7 +141773,7 @@ return { [1]="essence_grants_additional_attributes_increase" } }, - [6077]={ + [6479]={ [1]={ [1]={ limit={ @@ -134255,7 +141782,7 @@ return { [2]="#" } }, - text="{0}% increased Armour, Evasion or Energy Shield" + text="{0}% increased Armour, Evasion and Energy Shield" }, [2]={ [1]={ @@ -134268,14 +141795,14 @@ return { [2]=-1 } }, - text="{0}% reduced Armour, Evasion or Energy Shield" + text="{0}% reduced Armour, Evasion and Energy Shield" } }, stats={ - [1]="essence_grants_defences_+%" + [1]="essence_grants_armour_evasion_energy_shield_+%" } }, - [6078]={ + [6480]={ [1]={ [1]={ [1]={ @@ -134326,7 +141853,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [6079]={ + [6481]={ [1]={ [1]={ limit={ @@ -134351,7 +141878,7 @@ return { [1]="ethereal_knives_number_of_additional_projectiles" } }, - [6080]={ + [6482]={ [1]={ [1]={ limit={ @@ -134376,7 +141903,7 @@ return { [1]="ethereal_knives_projectile_base_number_of_targets_to_pierce" } }, - [6081]={ + [6483]={ [1]={ [1]={ limit={ @@ -134392,7 +141919,7 @@ return { [1]="ethereal_knives_projectiles_nova" } }, - [6082]={ + [6484]={ [1]={ [1]={ limit={ @@ -134421,7 +141948,7 @@ return { [1]="evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds" } }, - [6083]={ + [6485]={ [1]={ [1]={ limit={ @@ -134450,7 +141977,7 @@ return { [1]="evasion_rating_+%_per_5_intelligence" } }, - [6084]={ + [6486]={ [1]={ [1]={ limit={ @@ -134466,7 +141993,7 @@ return { [1]="evasion_+%_per_10_intelligence" } }, - [6085]={ + [6487]={ [1]={ [1]={ limit={ @@ -134482,7 +142009,7 @@ return { [1]="evasion_rating_%_to_gain_as_ailment_threshold" } }, - [6086]={ + [6488]={ [1]={ [1]={ limit={ @@ -134498,7 +142025,7 @@ return { [1]="evasion_rating_+%_during_focus" } }, - [6087]={ + [6489]={ [1]={ [1]={ limit={ @@ -134527,7 +142054,7 @@ return { [1]="evasion_rating_+%_if_consumed_frenzy_charge_recently" } }, - [6088]={ + [6490]={ [1]={ [1]={ limit={ @@ -134556,7 +142083,7 @@ return { [1]="evasion_rating_+%_if_not_dodge_rolled_recently" } }, - [6089]={ + [6491]={ [1]={ [1]={ limit={ @@ -134585,7 +142112,7 @@ return { [1]="evasion_rating_+%_if_sprinting" } }, - [6090]={ + [6492]={ [1]={ [1]={ limit={ @@ -134614,7 +142141,7 @@ return { [1]="evasion_rating_+%_per_10_tribute" } }, - [6091]={ + [6493]={ [1]={ [1]={ limit={ @@ -134630,7 +142157,23 @@ return { [1]="evasion_rating_+%_per_500_maximum_mana_up_to_100%" } }, - [6092]={ + [6494]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every Rage also grants {0}% increased Evasion Rating" + } + }, + stats={ + [1]="evasion_rating_+%_per_rage" + } + }, + [6495]={ [1]={ [1]={ limit={ @@ -134659,7 +142202,7 @@ return { [1]="evasion_rating_+%_while_surrounded" } }, - [6093]={ + [6496]={ [1]={ [1]={ limit={ @@ -134675,7 +142218,7 @@ return { [1]="evasion_rating_+_per_1_armour_on_gloves" } }, - [6094]={ + [6497]={ [1]={ [1]={ limit={ @@ -134691,7 +142234,7 @@ return { [1]="evasion_rating_also_reduces_physical_damage" } }, - [6095]={ + [6498]={ [1]={ [1]={ limit={ @@ -134720,7 +142263,7 @@ return { [1]="evasion_rating_from_helmet_and_boots_+%" } }, - [6096]={ + [6499]={ [1]={ [1]={ limit={ @@ -134736,7 +142279,7 @@ return { [1]="evasion_rating_increased_by_overcapped_cold_resistance" } }, - [6097]={ + [6500]={ [1]={ [1]={ limit={ @@ -134752,7 +142295,7 @@ return { [1]="evasion_rating_increased_by_uncapped_lightning_resistance" } }, - [6098]={ + [6501]={ [1]={ [1]={ [1]={ @@ -134772,7 +142315,7 @@ return { [1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus" } }, - [6099]={ + [6502]={ [1]={ [1]={ limit={ @@ -134788,7 +142331,7 @@ return { [1]="evasion_rating_%_to_gain_as_armour" } }, - [6100]={ + [6503]={ [1]={ [1]={ limit={ @@ -134804,7 +142347,7 @@ return { [1]="evasion_rating_+_if_you_have_hit_an_enemy_recently" } }, - [6101]={ + [6504]={ [1]={ [1]={ limit={ @@ -134833,7 +142376,7 @@ return { [1]="evasion_rating_+_while_phasing" } }, - [6102]={ + [6505]={ [1]={ [1]={ limit={ @@ -134849,36 +142392,7 @@ return { [1]="evasion_rating_+_while_you_have_tailwind" } }, - [6103]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Evasion Rating if you've Cast Dash recently" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Evasion Rating if you've Cast Dash recently" - } - }, - stats={ - [1]="evasion_rating_+%_if_have_cast_dash_recently" - } - }, - [6104]={ + [6506]={ [1]={ [1]={ [1]={ @@ -134907,7 +142421,7 @@ return { [1]="evasion_rating_+%_if_have_not_been_hit_recently" } }, - [6105]={ + [6507]={ [1]={ [1]={ limit={ @@ -134936,7 +142450,7 @@ return { [1]="evasion_rating_+%_if_you_dodge_rolled_recently" } }, - [6106]={ + [6508]={ [1]={ [1]={ limit={ @@ -134965,7 +142479,7 @@ return { [1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently" } }, - [6107]={ + [6509]={ [1]={ [1]={ limit={ @@ -134994,7 +142508,7 @@ return { [1]="evasion_rating_+%_per_green_socket_on_main_hand_weapon" } }, - [6108]={ + [6510]={ [1]={ [1]={ limit={ @@ -135023,7 +142537,7 @@ return { [1]="evasion_rating_+%_when_on_full_life" } }, - [6109]={ + [6511]={ [1]={ [1]={ limit={ @@ -135052,7 +142566,7 @@ return { [1]="evasion_rating_+%_while_leeching" } }, - [6110]={ + [6512]={ [1]={ [1]={ limit={ @@ -135081,7 +142595,7 @@ return { [1]="evasion_rating_+%_while_moving" } }, - [6111]={ + [6513]={ [1]={ [1]={ limit={ @@ -135110,7 +142624,7 @@ return { [1]="evasion_rating_+%_while_you_have_energy_shield" } }, - [6112]={ + [6514]={ [1]={ [1]={ limit={ @@ -135126,7 +142640,23 @@ return { [1]="every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second" } }, - [6113]={ + [6515]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Excess Runic Ward Recovery from Regeneration is applied to Mana" + } + }, + stats={ + [1]="excess_ward_regeneration_is_applied_to_mana" + } + }, + [6516]={ [1]={ [1]={ limit={ @@ -135151,7 +142681,7 @@ return { [1]="exerted_attack_knockback_chance_%" } }, - [6114]={ + [6517]={ [1]={ [1]={ limit={ @@ -135167,7 +142697,7 @@ return { [1]="exerted_attacks_overwhelm_%_physical_damage_reduction" } }, - [6115]={ + [6518]={ [1]={ [1]={ limit={ @@ -135183,7 +142713,7 @@ return { [1]="expanding_fire_cone_additional_maximum_number_of_stages" } }, - [6116]={ + [6519]={ [1]={ [1]={ limit={ @@ -135212,7 +142742,7 @@ return { [1]="expanding_fire_cone_area_of_effect_+%" } }, - [6117]={ + [6520]={ [1]={ [1]={ limit={ @@ -135241,7 +142771,7 @@ return { [1]="expedition_chest_logbook_chance_%" } }, - [6118]={ + [6521]={ [1]={ [1]={ limit={ @@ -135266,7 +142796,7 @@ return { [1]="expedition_monsters_logbook_chance_+%" } }, - [6119]={ + [6522]={ [1]={ [1]={ limit={ @@ -135282,7 +142812,7 @@ return { [1]="explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6120]={ + [6523]={ [1]={ [1]={ limit={ @@ -135329,7 +142859,7 @@ return { [2]="allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%" } }, - [6121]={ + [6524]={ [1]={ [1]={ limit={ @@ -135345,7 +142875,7 @@ return { [1]="explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%" } }, - [6122]={ + [6525]={ [1]={ [1]={ limit={ @@ -135361,7 +142891,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride" } }, - [6123]={ + [6526]={ [1]={ [1]={ limit={ @@ -135377,7 +142907,7 @@ return { [1]="explode_enemies_for_500%_life_as_fire_on_kill_%_chance" } }, - [6124]={ + [6527]={ [1]={ [1]={ limit={ @@ -135406,7 +142936,7 @@ return { [1]="explosive_arrow_duration_+%" } }, - [6125]={ + [6528]={ [1]={ [1]={ limit={ @@ -135435,7 +142965,7 @@ return { [1]="explosive_concoction_damage_+%" } }, - [6126]={ + [6529]={ [1]={ [1]={ limit={ @@ -135464,7 +142994,7 @@ return { [1]="explosive_concoction_flask_charges_consumed_+%" } }, - [6127]={ + [6530]={ [1]={ [1]={ limit={ @@ -135493,7 +143023,36 @@ return { [1]="explosive_concoction_skill_area_of_effect_+%" } }, - [6128]={ + [6531]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Exposure Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Exposure Effect" + } + }, + stats={ + [1]="exposure_effect_+%" + } + }, + [6532]={ [1]={ [1]={ limit={ @@ -135522,7 +143081,7 @@ return { [1]="exposure_effect_+%_if_fire_cold_lightning_infusion" } }, - [6129]={ + [6533]={ [1]={ [1]={ limit={ @@ -135551,7 +143110,7 @@ return { [1]="exposure_effect_on_you_+%" } }, - [6130]={ + [6534]={ [1]={ [1]={ limit={ @@ -135580,7 +143139,7 @@ return { [1]="exposure_effect_+%" } }, - [6131]={ + [6535]={ [1]={ [1]={ limit={ @@ -135596,7 +143155,7 @@ return { [1]="exposure_you_inflict_lowers_affected_resistance_by_extra_%" } }, - [6132]={ + [6536]={ [1]={ [1]={ limit={ @@ -135612,7 +143171,7 @@ return { [1]="exsanguinate_additional_chain_chance_%" } }, - [6133]={ + [6537]={ [1]={ [1]={ limit={ @@ -135641,7 +143200,7 @@ return { [1]="exsanguinate_damage_+%" } }, - [6134]={ + [6538]={ [1]={ [1]={ limit={ @@ -135657,7 +143216,7 @@ return { [1]="exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [6135]={ + [6539]={ [1]={ [1]={ limit={ @@ -135686,7 +143245,7 @@ return { [1]="exsanguinate_duration_+%" } }, - [6136]={ + [6540]={ [1]={ [1]={ limit={ @@ -135702,7 +143261,7 @@ return { [1]="extinguish_on_hit_%_chance" } }, - [6137]={ + [6541]={ [1]={ [1]={ limit={ @@ -135727,7 +143286,7 @@ return { [1]="extra_critical_rolls_during_focus" } }, - [6138]={ + [6542]={ [1]={ [1]={ limit={ @@ -135752,7 +143311,7 @@ return { [1]="extra_critical_rolls_while_on_low_life" } }, - [6139]={ + [6543]={ [1]={ [1]={ limit={ @@ -135768,7 +143327,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits" } }, - [6140]={ + [6544]={ [1]={ [1]={ limit={ @@ -135801,7 +143360,7 @@ return { [1]="extra_damage_taken_from_crit_+%_while_affected_by_determination" } }, - [6141]={ + [6545]={ [1]={ [1]={ limit={ @@ -135834,7 +143393,7 @@ return { [1]="extra_damage_taken_from_crit_while_no_power_charges_+%" } }, - [6142]={ + [6546]={ [1]={ [1]={ limit={ @@ -135850,7 +143409,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [6143]={ + [6547]={ [1]={ [1]={ limit={ @@ -135879,7 +143438,7 @@ return { [1]="eye_of_winter_damage_+%" } }, - [6144]={ + [6548]={ [1]={ [1]={ limit={ @@ -135908,7 +143467,7 @@ return { [1]="eye_of_winter_projectile_speed_+%" } }, - [6145]={ + [6549]={ [1]={ [1]={ limit={ @@ -135937,7 +143496,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [6146]={ + [6550]={ [1]={ [1]={ limit={ @@ -135953,7 +143512,7 @@ return { [1]="faster_bleed_per_frenzy_charge_%" } }, - [6147]={ + [6551]={ [1]={ [1]={ limit={ @@ -135969,7 +143528,7 @@ return { [1]="faster_bleed_%" } }, - [6148]={ + [6552]={ [1]={ [1]={ limit={ @@ -135985,36 +143544,7 @@ return { [1]="faster_poison_%" } }, - [6149]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Final Repeat of Spells has {0}% increased Area of Effect" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Final Repeat of Spells has {0}% reduced Area of Effect" - } - }, - stats={ - [1]="final_repeat_of_spells_area_of_effect_+%" - } - }, - [6150]={ + [6553]={ [1]={ [1]={ limit={ @@ -136043,7 +143573,7 @@ return { [1]="fire_ailment_duration_+%" } }, - [6151]={ + [6554]={ [1]={ [1]={ limit={ @@ -136059,23 +143589,7 @@ return { [1]="fire_and_chaos_damage_resistance_%" } }, - [6152]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{}% of Fire and Cold Damage taken as Lightning Damage while\naffected by Purity of Lightning" - } - }, - stats={ - [1]="fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning" - } - }, - [6153]={ + [6555]={ [1]={ [1]={ limit={ @@ -136100,23 +143614,7 @@ return { [1]="fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined" } }, - [6154]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{}% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" - } - }, - stats={ - [1]="fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice" - } - }, - [6155]={ + [6556]={ [1]={ [1]={ limit={ @@ -136145,7 +143643,7 @@ return { [1]="fire_beam_cast_speed_+%" } }, - [6156]={ + [6557]={ [1]={ [1]={ limit={ @@ -136174,7 +143672,7 @@ return { [1]="fire_beam_damage_+%" } }, - [6157]={ + [6558]={ [1]={ [1]={ limit={ @@ -136190,7 +143688,7 @@ return { [1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill" } }, - [6158]={ + [6559]={ [1]={ [1]={ limit={ @@ -136206,7 +143704,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_at_max_stacks" } }, - [6159]={ + [6560]={ [1]={ [1]={ limit={ @@ -136222,7 +143720,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [6160]={ + [6561]={ [1]={ [1]={ limit={ @@ -136251,7 +143749,23 @@ return { [1]="fire_beam_length_+%" } }, - [6161]={ + [6562]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" + } + }, + stats={ + [1]="fire_damage_+%_if_fire_infusion_collected_last_8_seconds" + } + }, + [6563]={ [1]={ [1]={ limit={ @@ -136280,7 +143794,7 @@ return { [1]="fire_damage_+%_per_10%_armour_break" } }, - [6162]={ + [6564]={ [1]={ [1]={ limit={ @@ -136292,6 +143806,10 @@ return { text="Every Rage also grants {0}% increased Fire Damage" }, [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", @@ -136305,7 +143823,7 @@ return { [1]="fire_damage_+%_per_rage" } }, - [6163]={ + [6565]={ [1]={ [1]={ limit={ @@ -136321,7 +143839,7 @@ return { [1]="fire_damage_+%_while_ignited" } }, - [6164]={ + [6566]={ [1]={ [1]={ limit={ @@ -136337,7 +143855,7 @@ return { [1]="fire_damage_over_time_multiplier_+%_while_burning" } }, - [6165]={ + [6567]={ [1]={ [1]={ limit={ @@ -136366,7 +143884,7 @@ return { [1]="fire_damage_+%_if_you_have_been_hit_recently" } }, - [6166]={ + [6568]={ [1]={ [1]={ limit={ @@ -136395,7 +143913,7 @@ return { [1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently" } }, - [6167]={ + [6569]={ [1]={ [1]={ limit={ @@ -136424,7 +143942,7 @@ return { [1]="fire_damage_+%_per_20_strength" } }, - [6168]={ + [6570]={ [1]={ [1]={ limit={ @@ -136453,7 +143971,7 @@ return { [1]="fire_damage_+%_per_endurance_charge" } }, - [6169]={ + [6571]={ [1]={ [1]={ limit={ @@ -136482,7 +144000,7 @@ return { [1]="fire_damage_+%_per_missing_fire_resistance" } }, - [6170]={ + [6572]={ [1]={ [1]={ limit={ @@ -136511,7 +144029,7 @@ return { [1]="fire_damage_+%_vs_bleeding_enemies" } }, - [6171]={ + [6573]={ [1]={ [1]={ limit={ @@ -136540,7 +144058,7 @@ return { [1]="fire_damage_+%_while_affected_by_anger" } }, - [6172]={ + [6574]={ [1]={ [1]={ limit={ @@ -136569,7 +144087,7 @@ return { [1]="fire_damage_+%_while_affected_by_herald_of_ash" } }, - [6173]={ + [6575]={ [1]={ [1]={ limit={ @@ -136585,7 +144103,7 @@ return { [1]="fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [6174]={ + [6576]={ [1]={ [1]={ limit={ @@ -136601,7 +144119,7 @@ return { [1]="fire_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6175]={ + [6577]={ [1]={ [1]={ limit={ @@ -136617,7 +144135,7 @@ return { [1]="fire_damage_taken_per_second_while_flame_touched" } }, - [6176]={ + [6578]={ [1]={ [1]={ limit={ @@ -136646,7 +144164,7 @@ return { [1]="fire_damage_taken_+%_while_moving" } }, - [6177]={ + [6579]={ [1]={ [1]={ limit={ @@ -136662,7 +144180,7 @@ return { [1]="fire_damage_taken_when_enemy_ignited" } }, - [6178]={ + [6580]={ [1]={ [1]={ limit={ @@ -136678,7 +144196,7 @@ return { [1]="fire_damage_to_return_on_block" } }, - [6179]={ + [6581]={ [1]={ [1]={ limit={ @@ -136707,7 +144225,7 @@ return { [1]="fire_damage_with_attack_skills_+%" } }, - [6180]={ + [6582]={ [1]={ [1]={ limit={ @@ -136736,7 +144254,7 @@ return { [1]="fire_damage_with_spell_skills_+%" } }, - [6181]={ + [6583]={ [1]={ [1]={ limit={ @@ -136765,7 +144283,7 @@ return { [1]="fire_exposure_effect_+%" } }, - [6182]={ + [6584]={ [1]={ [1]={ limit={ @@ -136790,7 +144308,7 @@ return { [1]="fire_exposure_on_hit_magnitude" } }, - [6183]={ + [6585]={ [1]={ [1]={ limit={ @@ -136806,23 +144324,7 @@ return { [1]="fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%" } }, - [6184]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Fire Damage taken as Lightning Damage" - } - }, - stats={ - [1]="fire_hit_and_dot_damage_%_taken_as_lightning" - } - }, - [6185]={ + [6586]={ [1]={ [1]={ limit={ @@ -136838,7 +144340,7 @@ return { [1]="fire_penetration_%_if_you_have_blocked_recently" } }, - [6186]={ + [6587]={ [1]={ [1]={ limit={ @@ -136867,7 +144369,7 @@ return { [1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire" } }, - [6187]={ + [6588]={ [1]={ [1]={ limit={ @@ -136883,7 +144385,7 @@ return { [1]="fire_resist_unaffected_by_area_penalties" } }, - [6188]={ + [6589]={ [1]={ [1]={ limit={ @@ -136899,7 +144401,7 @@ return { [1]="fire_skill_chance_to_inflict_fire_exposure_%" } }, - [6189]={ + [6590]={ [1]={ [1]={ limit={ @@ -136908,30 +144410,34 @@ return { [2]="#" } }, - text="{0:+d} to Level of all Fire Skills" + text="Fire Skills have {0}% chance to Poison on Hit" } }, stats={ - [1]="fire_skill_gem_level_+" + [1]="fire_skills_chance_to_poison_on_hit_%" } }, - [6190]={ + [6591]={ [1]={ [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Fire Skills have {0}% chance to Poison on Hit" + text="{0:+d}% to Fire Spell Critical Hit Chance" } }, stats={ - [1]="fire_skills_chance_to_poison_on_hit_%" + [1]="fire_spell_additional_critical_strike_chance_permyriad" } }, - [6191]={ + [6592]={ [1]={ [1]={ limit={ @@ -136960,7 +144466,7 @@ return { [1]="fire_trap_burning_ground_duration_+%" } }, - [6192]={ + [6593]={ [1]={ [1]={ limit={ @@ -136985,7 +144491,7 @@ return { [1]="fire_trap_number_of_additional_traps_to_throw" } }, - [6193]={ + [6594]={ [1]={ [1]={ limit={ @@ -137014,7 +144520,7 @@ return { [1]="fireball_and_rolling_magma_active_skill_area_of_effect_+%_final" } }, - [6194]={ + [6595]={ [1]={ [1]={ limit={ @@ -137030,7 +144536,7 @@ return { [1]="fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply" } }, - [6195]={ + [6596]={ [1]={ [1]={ limit={ @@ -137046,7 +144552,7 @@ return { [1]="fireball_cannot_ignite" } }, - [6196]={ + [6597]={ [1]={ [1]={ limit={ @@ -137062,7 +144568,7 @@ return { [1]="fireball_chance_to_scorch_%" } }, - [6197]={ + [6598]={ [1]={ [1]={ limit={ @@ -137087,7 +144593,7 @@ return { [1]="first_X_minions_have_0_base_spirit_reservation" } }, - [6198]={ + [6599]={ [1]={ [1]={ limit={ @@ -137103,7 +144609,7 @@ return { [1]="fish_rot_when_caught" } }, - [6199]={ + [6600]={ [1]={ [1]={ limit={ @@ -137119,7 +144625,7 @@ return { [1]="fishing_bestiary_lures_at_fishing_holes" } }, - [6200]={ + [6601]={ [1]={ [1]={ limit={ @@ -137135,7 +144641,7 @@ return { [1]="fishing_can_catch_divine_fish" } }, - [6201]={ + [6602]={ [1]={ [1]={ limit={ @@ -137164,7 +144670,7 @@ return { [1]="fishing_chance_to_catch_boots_+%" } }, - [6202]={ + [6603]={ [1]={ [1]={ limit={ @@ -137193,7 +144699,7 @@ return { [1]="fishing_chance_to_catch_divine_orb_+%" } }, - [6203]={ + [6604]={ [1]={ [1]={ limit={ @@ -137218,7 +144724,7 @@ return { [1]="fishing_corrupted_fish_cleansed_chance_%" } }, - [6204]={ + [6605]={ [1]={ [1]={ limit={ @@ -137234,7 +144740,7 @@ return { [1]="fishing_fish_always_tell_truth_with_this_rod" } }, - [6205]={ + [6606]={ [1]={ [1]={ limit={ @@ -137250,7 +144756,7 @@ return { [1]="fishing_ghastly_fisherman_cannot_spawn" } }, - [6206]={ + [6607]={ [1]={ [1]={ limit={ @@ -137266,7 +144772,7 @@ return { [1]="fishing_ghastly_fisherman_spawns_behind_you" } }, - [6207]={ + [6608]={ [1]={ [1]={ limit={ @@ -137295,7 +144801,7 @@ return { [1]="fishing_krillson_affection_per_fish_gifted_+%" } }, - [6208]={ + [6609]={ [1]={ [1]={ limit={ @@ -137324,7 +144830,7 @@ return { [1]="fishing_life_of_fish_with_this_rod_+%" } }, - [6209]={ + [6610]={ [1]={ [1]={ limit={ @@ -137340,7 +144846,7 @@ return { [1]="fishing_magmatic_fish_are_cooked" } }, - [6210]={ + [6611]={ [1]={ [1]={ limit={ @@ -137369,7 +144875,7 @@ return { [1]="fishing_molten_one_confusion_+%_per_fish_gifted" } }, - [6211]={ + [6612]={ [1]={ [1]={ limit={ @@ -137398,7 +144904,7 @@ return { [1]="fishing_reeling_stability_+%" } }, - [6212]={ + [6613]={ [1]={ [1]={ limit={ @@ -137427,7 +144933,7 @@ return { [1]="fishing_tasalio_ire_per_fish_caught_+%" } }, - [6213]={ + [6614]={ [1]={ [1]={ limit={ @@ -137456,7 +144962,7 @@ return { [1]="fishing_valako_aid_per_stormy_day_+%" } }, - [6214]={ + [6615]={ [1]={ [1]={ limit={ @@ -137485,7 +144991,7 @@ return { [1]="fishing_wish_effect_of_ancient_fish_+%" } }, - [6215]={ + [6616]={ [1]={ [1]={ limit={ @@ -137501,7 +145007,7 @@ return { [1]="fishing_wish_per_fish_+" } }, - [6216]={ + [6617]={ [1]={ [1]={ limit={ @@ -137517,7 +145023,7 @@ return { [1]="fissure_skills_limit_+" } }, - [6217]={ + [6618]={ [1]={ [1]={ limit={ @@ -137546,7 +145052,7 @@ return { [1]="flame_link_duration_+%" } }, - [6218]={ + [6619]={ [1]={ [1]={ limit={ @@ -137575,7 +145081,7 @@ return { [1]="flame_totem_consecrated_ground_enemy_damage_taken_+%" } }, - [6219]={ + [6620]={ [1]={ [1]={ limit={ @@ -137604,7 +145110,7 @@ return { [1]="flame_wall_damage_+%" } }, - [6220]={ + [6621]={ [1]={ [1]={ limit={ @@ -137625,7 +145131,7 @@ return { [2]="flame_wall_maximum_added_fire_damage" } }, - [6221]={ + [6622]={ [1]={ [1]={ limit={ @@ -137641,7 +145147,7 @@ return { [1]="flame_wall_projectiles_gain_all_damage_%_as_fire" } }, - [6222]={ + [6623]={ [1]={ [1]={ [1]={ @@ -137674,7 +145180,7 @@ return { [1]="flameblast_and_incinerate_base_cooldown_modifier_ms" } }, - [6223]={ + [6624]={ [1]={ [1]={ limit={ @@ -137690,7 +145196,7 @@ return { [1]="flameblast_and_incinerate_cannot_inflict_elemental_ailments" } }, - [6224]={ + [6625]={ [1]={ [1]={ limit={ @@ -137719,7 +145225,7 @@ return { [1]="flameblast_cast_speed_+%_final_when_targeting_solar_orb" } }, - [6225]={ + [6626]={ [1]={ [1]={ limit={ @@ -137735,7 +145241,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [6226]={ + [6627]={ [1]={ [1]={ limit={ @@ -137764,7 +145270,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%" } }, - [6227]={ + [6628]={ [1]={ [1]={ limit={ @@ -137807,7 +145313,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count" } }, - [6228]={ + [6629]={ [1]={ [1]={ limit={ @@ -137836,7 +145342,7 @@ return { [1]="flamethrower_tower_trap_cast_speed_+%" } }, - [6229]={ + [6630]={ [1]={ [1]={ limit={ @@ -137865,7 +145371,7 @@ return { [1]="flamethrower_tower_trap_cooldown_speed_+%" } }, - [6230]={ + [6631]={ [1]={ [1]={ limit={ @@ -137894,7 +145400,7 @@ return { [1]="flamethrower_tower_trap_damage_+%" } }, - [6231]={ + [6632]={ [1]={ [1]={ limit={ @@ -137923,7 +145429,7 @@ return { [1]="flamethrower_tower_trap_duration_+%" } }, - [6232]={ + [6633]={ [1]={ [1]={ limit={ @@ -137948,7 +145454,7 @@ return { [1]="flamethrower_tower_trap_number_of_additional_flamethrowers" } }, - [6233]={ + [6634]={ [1]={ [1]={ limit={ @@ -137977,7 +145483,7 @@ return { [1]="flamethrower_tower_trap_throwing_speed_+%" } }, - [6234]={ + [6635]={ [1]={ [1]={ limit={ @@ -138006,7 +145512,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [6235]={ + [6636]={ [1]={ [1]={ limit={ @@ -138022,7 +145528,7 @@ return { [1]="flammability_no_reservation" } }, - [6236]={ + [6637]={ [1]={ [1]={ limit={ @@ -138038,7 +145544,7 @@ return { [1]="flask_charge_recovery_is_doubled" } }, - [6237]={ + [6638]={ [1]={ [1]={ limit={ @@ -138067,7 +145573,7 @@ return { [1]="flask_charges_gained_+%_if_crit_recently" } }, - [6238]={ + [6639]={ [1]={ [1]={ limit={ @@ -138096,7 +145602,7 @@ return { [1]="flask_charges_gained_from_kills_+%_final_from_unique" } }, - [6239]={ + [6640]={ [1]={ [1]={ limit={ @@ -138125,7 +145631,7 @@ return { [1]="flask_charges_gained_from_marked_enemy_+%" } }, - [6240]={ + [6641]={ [1]={ [1]={ limit={ @@ -138154,7 +145660,7 @@ return { [1]="flask_charges_gained_+%" } }, - [6241]={ + [6642]={ [1]={ [1]={ limit={ @@ -138183,7 +145689,7 @@ return { [1]="flask_duration_+%_per_25_tribute" } }, - [6242]={ + [6643]={ [1]={ [1]={ limit={ @@ -138212,7 +145718,7 @@ return { [1]="flask_life_and_mana_recovery_+%_while_using_charm" } }, - [6243]={ + [6644]={ [1]={ [1]={ limit={ @@ -138241,7 +145747,7 @@ return { [1]="flask_life_and_mana_to_recover_+%_per_10_tribute" } }, - [6244]={ + [6645]={ [1]={ [1]={ limit={ @@ -138270,7 +145776,7 @@ return { [1]="flask_life_and_mana_to_recover_+%" } }, - [6245]={ + [6646]={ [1]={ [1]={ limit={ @@ -138299,7 +145805,7 @@ return { [1]="flask_life_recovery_+%_while_affected_by_vitality" } }, - [6246]={ + [6647]={ [1]={ [1]={ limit={ @@ -138315,7 +145821,7 @@ return { [1]="flask_recovery_amount_%_to_recover_instantly" } }, - [6247]={ + [6648]={ [1]={ [1]={ limit={ @@ -138331,7 +145837,7 @@ return { [1]="flask_recovery_is_instant" } }, - [6248]={ + [6649]={ [1]={ [1]={ limit={ @@ -138347,7 +145853,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [6249]={ + [6650]={ [1]={ [1]={ limit={ @@ -138363,7 +145869,7 @@ return { [1]="flasks_apply_to_your_linked_targets" } }, - [6250]={ + [6651]={ [1]={ [1]={ limit={ @@ -138379,7 +145885,7 @@ return { [1]="flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique" } }, - [6251]={ + [6652]={ [1]={ [1]={ limit={ @@ -138395,7 +145901,7 @@ return { [1]="flasks_gain_x_charges_while_inactive_every_3_seconds" } }, - [6252]={ + [6653]={ [1]={ [1]={ limit={ @@ -138424,7 +145930,7 @@ return { [1]="flesh_and_stone_area_of_effect_+%" } }, - [6253]={ + [6654]={ [1]={ [1]={ [1]={ @@ -138461,7 +145967,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_-2%_per_1" } }, - [6254]={ + [6655]={ [1]={ [1]={ limit={ @@ -138490,7 +145996,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_+%" } }, - [6255]={ + [6656]={ [1]={ [1]={ limit={ @@ -138506,7 +146012,7 @@ return { [1]="flesh_stone_no_reservation" } }, - [6256]={ + [6657]={ [1]={ [1]={ limit={ @@ -138522,7 +146028,7 @@ return { [1]="focus_cooldown_modifier_ms" } }, - [6257]={ + [6658]={ [1]={ [1]={ limit={ @@ -138551,7 +146057,7 @@ return { [1]="focus_cooldown_speed_+%" } }, - [6258]={ + [6659]={ [1]={ [1]={ [1]={ @@ -138571,7 +146077,7 @@ return { [1]="focus_decay_%_per_minute" } }, - [6259]={ + [6660]={ [1]={ [1]={ limit={ @@ -138587,7 +146093,7 @@ return { [1]="forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable" } }, - [6260]={ + [6661]={ [1]={ [1]={ limit={ @@ -138616,7 +146122,7 @@ return { [1]="forbidden_rite_damage_+%" } }, - [6261]={ + [6662]={ [1]={ [1]={ limit={ @@ -138641,7 +146147,7 @@ return { [1]="forbidden_rite_number_of_additional_projectiles" } }, - [6262]={ + [6663]={ [1]={ [1]={ limit={ @@ -138670,7 +146176,7 @@ return { [1]="forbidden_rite_projectile_speed_+%" } }, - [6263]={ + [6664]={ [1]={ [1]={ limit={ @@ -138699,7 +146205,7 @@ return { [1]="forking_angle_+%" } }, - [6264]={ + [6665]={ [1]={ [1]={ limit={ @@ -138728,7 +146234,7 @@ return { [1]="fortification_gained_from_hits_+%" } }, - [6265]={ + [6666]={ [1]={ [1]={ limit={ @@ -138757,7 +146263,7 @@ return { [1]="fortification_gained_from_hits_+%_against_unique_enemies" } }, - [6266]={ + [6667]={ [1]={ [1]={ limit={ @@ -138786,7 +146292,7 @@ return { [1]="fortify_duration_+%_per_10_strength" } }, - [6267]={ + [6668]={ [1]={ [1]={ limit={ @@ -138802,7 +146308,7 @@ return { [1]="fortify_on_hit" } }, - [6268]={ + [6669]={ [1]={ [1]={ limit={ @@ -138831,7 +146337,7 @@ return { [1]="frag_rounds_damage_+%_final_if_created_from_unique" } }, - [6269]={ + [6670]={ [1]={ [1]={ limit={ @@ -138856,7 +146362,7 @@ return { [1]="freeze_applies_cold_damage_taken_+%" } }, - [6270]={ + [6671]={ [1]={ [1]={ limit={ @@ -138872,7 +146378,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [6271]={ + [6672]={ [1]={ [1]={ limit={ @@ -138901,7 +146407,7 @@ return { [1]="freeze_duration_against_cursed_enemies_+%" } }, - [6272]={ + [6673]={ [1]={ [1]={ [1]={ @@ -138921,7 +146427,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [6273]={ + [6674]={ [1]={ [1]={ limit={ @@ -138937,7 +146443,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_all_damage_can_poison" } }, - [6274]={ + [6675]={ [1]={ [1]={ limit={ @@ -138966,7 +146472,7 @@ return { [1]="freezing_pulse_damage_+%_if_enemy_shattered_recently" } }, - [6275]={ + [6676]={ [1]={ [1]={ limit={ @@ -138991,7 +146497,7 @@ return { [1]="freezing_pulse_number_of_additional_projectiles" } }, - [6276]={ + [6677]={ [1]={ [1]={ [1]={ @@ -139011,7 +146517,7 @@ return { [1]="frenzy_and_power_charge_add_duration_ms_on_cull" } }, - [6277]={ + [6678]={ [1]={ [1]={ limit={ @@ -139027,7 +146533,7 @@ return { [1]="frenzy_charge_on_hit_%_vs_no_evasion_rating" } }, - [6278]={ + [6679]={ [1]={ [1]={ limit={ @@ -139043,7 +146549,7 @@ return { [1]="frenzy_charge_on_kill_percent_chance_while_holding_shield" } }, - [6279]={ + [6680]={ [1]={ [1]={ limit={ @@ -139059,7 +146565,7 @@ return { [1]="frost_blades_melee_damage_penetrates_%_cold_resistance" } }, - [6280]={ + [6681]={ [1]={ [1]={ limit={ @@ -139088,7 +146594,7 @@ return { [1]="frost_bolt_nova_cooldown_speed_+%" } }, - [6281]={ + [6682]={ [1]={ [1]={ limit={ @@ -139117,7 +146623,7 @@ return { [1]="frost_bomb_buff_duration_+%" } }, - [6282]={ + [6683]={ [1]={ [1]={ limit={ @@ -139133,7 +146639,7 @@ return { [1]="frost_bomb_+%_area_of_effect_when_frost_blink_is_cast" } }, - [6283]={ + [6684]={ [1]={ [1]={ limit={ @@ -139149,7 +146655,7 @@ return { [1]="frost_fury_additional_max_number_of_stages" } }, - [6284]={ + [6685]={ [1]={ [1]={ limit={ @@ -139178,7 +146684,7 @@ return { [1]="frost_fury_area_of_effect_+%_per_stage" } }, - [6285]={ + [6686]={ [1]={ [1]={ limit={ @@ -139207,7 +146713,7 @@ return { [1]="frost_fury_damage_+%" } }, - [6286]={ + [6687]={ [1]={ [1]={ limit={ @@ -139232,7 +146738,7 @@ return { [1]="frost_globe_added_cooldown_count" } }, - [6287]={ + [6688]={ [1]={ [1]={ limit={ @@ -139248,7 +146754,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [6288]={ + [6689]={ [1]={ [1]={ limit={ @@ -139264,7 +146770,7 @@ return { [1]="frostbite_no_reservation" } }, - [6289]={ + [6690]={ [1]={ [1]={ limit={ @@ -139280,7 +146786,7 @@ return { [1]="frostbolt_number_of_additional_projectiles" } }, - [6290]={ + [6691]={ [1]={ [1]={ limit={ @@ -139309,7 +146815,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [6291]={ + [6692]={ [1]={ [1]={ limit={ @@ -139334,7 +146840,7 @@ return { [1]="frozen_legion_added_cooldown_count" } }, - [6292]={ + [6693]={ [1]={ [1]={ limit={ @@ -139363,7 +146869,7 @@ return { [1]="frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat" } }, - [6293]={ + [6694]={ [1]={ [1]={ limit={ @@ -139392,7 +146898,7 @@ return { [1]="frozen_legion_cooldown_speed_+%" } }, - [6294]={ + [6695]={ [1]={ [1]={ limit={ @@ -139408,7 +146914,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [6295]={ + [6696]={ [1]={ [1]={ limit={ @@ -139437,7 +146943,7 @@ return { [1]="frozen_sweep_damage_+%" } }, - [6296]={ + [6697]={ [1]={ [1]={ limit={ @@ -139466,7 +146972,7 @@ return { [1]="frozen_sweep_damage_+%_final" } }, - [6297]={ + [6698]={ [1]={ [1]={ limit={ @@ -139482,7 +146988,7 @@ return { [1]="full_life_threshold_%_override" } }, - [6298]={ + [6699]={ [1]={ [1]={ limit={ @@ -139498,7 +147004,7 @@ return { [1]="full_mana_threshold_%_override" } }, - [6299]={ + [6700]={ [1]={ [1]={ limit={ @@ -139514,7 +147020,23 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun_with_shield_skills" } }, - [6300]={ + [6701]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits" + } + }, + stats={ + [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage" + } + }, + [6702]={ [1]={ [1]={ limit={ @@ -139530,7 +147052,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage" } }, - [6301]={ + [6703]={ [1]={ [1]={ limit={ @@ -139546,7 +147068,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage" } }, - [6302]={ + [6704]={ [1]={ [1]={ limit={ @@ -139562,7 +147084,7 @@ return { [1]="fungal_ground_while_stationary_radius" } }, - [6303]={ + [6705]={ [1]={ [1]={ limit={ @@ -139578,7 +147100,7 @@ return { [1]="gain_%_damage_as_chaos_from_unreserved_darkness" } }, - [6304]={ + [6706]={ [1]={ [1]={ limit={ @@ -139603,7 +147125,7 @@ return { [1]="gain_%_life_from_body_es" } }, - [6305]={ + [6707]={ [1]={ [1]={ limit={ @@ -139619,7 +147141,7 @@ return { [1]="gain_%_maximum_energy_shield_as_freeze_threshold_+" } }, - [6306]={ + [6708]={ [1]={ [1]={ limit={ @@ -139635,7 +147157,7 @@ return { [1]="gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use" } }, - [6307]={ + [6709]={ [1]={ [1]={ limit={ @@ -139660,7 +147182,7 @@ return { [1]="gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence" } }, - [6308]={ + [6710]={ [1]={ [1]={ [1]={ @@ -139680,7 +147202,7 @@ return { [1]="gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms" } }, - [6309]={ + [6711]={ [1]={ [1]={ limit={ @@ -139696,7 +147218,32 @@ return { [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" } }, - [6310]={ + [6712]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Every second, gain a Verisium Infusion" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Every {0} seconds, gain a Verisium Infusion" + } + }, + stats={ + [1]="gain_1_verisium_infusion_every_X_seconds" + } + }, + [6713]={ [1]={ [1]={ limit={ @@ -139712,7 +147259,23 @@ return { [1]="gain_X%_armour_per_50_mana_reserved" } }, - [6311]={ + [6714]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Druidic Prowess when you Heavy Stun a Rare or Unique Enemy" + } + }, + stats={ + [1]="gain_X_druidic_prowess_on_heavy_stunning_rare_or_unique_enemy" + } + }, + [6715]={ [1]={ [1]={ limit={ @@ -139728,7 +147291,7 @@ return { [1]="gain_X_fortification_on_killing_rare_or_unique_monster" } }, - [6312]={ + [6716]={ [1]={ [1]={ limit={ @@ -139753,7 +147316,7 @@ return { [1]="gain_X_frenzy_charges_after_spending_200_mana" } }, - [6313]={ + [6717]={ [1]={ [1]={ limit={ @@ -139778,7 +147341,7 @@ return { [1]="gain_X_instilling_fire_when_charge_is_consumed" } }, - [6314]={ + [6718]={ [1]={ [1]={ limit={ @@ -139803,7 +147366,7 @@ return { [1]="gain_X_instilling_cold_when_charge_is_consumed" } }, - [6315]={ + [6719]={ [1]={ [1]={ limit={ @@ -139841,7 +147404,7 @@ return { [1]="gain_X_instilling_lightning_when_charge_is_consumed" } }, - [6316]={ + [6720]={ [1]={ [1]={ limit={ @@ -139866,7 +147429,7 @@ return { [1]="gain_X_instilling_chaos_when_any_charge_is_consumed" } }, - [6317]={ + [6721]={ [1]={ [1]={ limit={ @@ -139926,7 +147489,7 @@ return { [2]="gain_X_instilling_fire_on_reload" } }, - [6318]={ + [6722]={ [1]={ [1]={ limit={ @@ -139942,7 +147505,23 @@ return { [1]="gain_X_life_on_stun" } }, - [6319]={ + [6723]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to maximum Life per 8 Armour on Equipped Helmet" + } + }, + stats={ + [1]="gain_X_max_life_per_8_armour_on_equipped_helmet" + } + }, + [6724]={ [1]={ [1]={ limit={ @@ -139958,7 +147537,7 @@ return { [1]="gain_X_max_mana_per_2_es_on_equipped_helmet" } }, - [6320]={ + [6725]={ [1]={ [1]={ limit={ @@ -139974,7 +147553,7 @@ return { [1]="gain_X_power_charges_on_using_a_warcry" } }, - [6321]={ + [6726]={ [1]={ [1]={ limit={ @@ -139990,7 +147569,7 @@ return { [1]="gain_X_rage_on_hit_per_enemy_power" } }, - [6322]={ + [6727]={ [1]={ [1]={ limit={ @@ -140006,7 +147585,7 @@ return { [1]="gain_X_rage_on_ignite_hit" } }, - [6323]={ + [6728]={ [1]={ [1]={ limit={ @@ -140031,7 +147610,7 @@ return { [1]="gain_X_random_charges_every_6_seconds" } }, - [6324]={ + [6729]={ [1]={ [1]={ limit={ @@ -140056,7 +147635,7 @@ return { [1]="gain_X_volatility_on_persistent_minion_death" } }, - [6325]={ + [6730]={ [1]={ [1]={ [1]={ @@ -140089,7 +147668,7 @@ return { [1]="gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms" } }, - [6326]={ + [6731]={ [1]={ [1]={ limit={ @@ -140105,7 +147684,7 @@ return { [1]="gain_a_power_charge_when_you_consume_an_elemental_infusion" } }, - [6327]={ + [6732]={ [1]={ [1]={ limit={ @@ -140121,7 +147700,7 @@ return { [1]="gain_absorption_charges_instead_of_power_charges" } }, - [6328]={ + [6733]={ [1]={ [1]={ limit={ @@ -140137,7 +147716,7 @@ return { [1]="gain_accuracy_rating_equal_to_2_times_strength" } }, - [6329]={ + [6734]={ [1]={ [1]={ limit={ @@ -140153,7 +147732,7 @@ return { [1]="gain_accuracy_rating_equal_to_intelligence" } }, - [6330]={ + [6735]={ [1]={ [1]={ limit={ @@ -140169,7 +147748,7 @@ return { [1]="gain_accuracy_rating_equal_to_strength" } }, - [6331]={ + [6736]={ [1]={ [1]={ limit={ @@ -140194,7 +147773,7 @@ return { [1]="gain_additional_crit_chance_from_%_chance_to_hit_over_100" } }, - [6332]={ + [6737]={ [1]={ [1]={ [1]={ @@ -140227,7 +147806,7 @@ return { [1]="gain_adrenaline_for_X_ms_on_swapping_stance" } }, - [6333]={ + [6738]={ [1]={ [1]={ limit={ @@ -140252,7 +147831,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_kill" } }, - [6334]={ + [6739]={ [1]={ [1]={ limit={ @@ -140268,7 +147847,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline" } }, - [6335]={ + [6740]={ [1]={ [1]={ [1]={ @@ -140288,7 +147867,7 @@ return { [1]="gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you" } }, - [6336]={ + [6741]={ [1]={ [1]={ limit={ @@ -140304,40 +147883,7 @@ return { [1]="gain_adrenaline_on_gaining_flame_touched" } }, - [6337]={ - [1]={ - [1]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]=1000, - [2]=1000 - } - }, - text="Gain Adrenaline for {0} second when Ward Breaks" - }, - [2]={ - [1]={ - k="milliseconds_to_seconds_2dp_if_required", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain Adrenaline for {0} seconds when Ward Breaks" - } - }, - stats={ - [1]="gain_adrenaline_when_ward_breaks_ms" - } - }, - [6338]={ + [6742]={ [1]={ [1]={ limit={ @@ -140353,7 +147899,7 @@ return { [1]="gain_affliction_charges_instead_of_frenzy_charges" } }, - [6339]={ + [6743]={ [1]={ [1]={ limit={ @@ -140378,7 +147924,7 @@ return { [1]="gain_alchemists_genius_on_flask_use_%" } }, - [6340]={ + [6744]={ [1]={ [1]={ limit={ @@ -140394,7 +147940,7 @@ return { [1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently" } }, - [6341]={ + [6745]={ [1]={ [1]={ limit={ @@ -140410,7 +147956,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second" } }, - [6342]={ + [6746]={ [1]={ [1]={ limit={ @@ -140426,7 +147972,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_on_minion_death" } }, - [6343]={ + [6747]={ [1]={ [1]={ limit={ @@ -140442,7 +147988,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry" } }, - [6344]={ + [6748]={ [1]={ [1]={ limit={ @@ -140467,7 +148013,7 @@ return { [1]="gain_arcane_surge_on_crit_%_chance" } }, - [6345]={ + [6749]={ [1]={ [1]={ limit={ @@ -140483,7 +148029,7 @@ return { [1]="gain_arcane_surge_on_hit_at_devotion_threshold" } }, - [6346]={ + [6750]={ [1]={ [1]={ limit={ @@ -140508,7 +148054,7 @@ return { [1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%" } }, - [6347]={ + [6751]={ [1]={ [1]={ limit={ @@ -140533,7 +148079,7 @@ return { [1]="gain_arcane_surge_on_hit_%_chance" } }, - [6348]={ + [6752]={ [1]={ [1]={ limit={ @@ -140549,7 +148095,7 @@ return { [1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance" } }, - [6349]={ + [6753]={ [1]={ [1]={ limit={ @@ -140574,7 +148120,7 @@ return { [1]="gain_arcane_surge_on_kill_chance_%" } }, - [6350]={ + [6754]={ [1]={ [1]={ limit={ @@ -140590,7 +148136,7 @@ return { [1]="gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds" } }, - [6351]={ + [6755]={ [1]={ [1]={ limit={ @@ -140606,7 +148152,7 @@ return { [1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems" } }, - [6352]={ + [6756]={ [1]={ [1]={ limit={ @@ -140622,7 +148168,7 @@ return { [1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy" } }, - [6353]={ + [6757]={ [1]={ [1]={ limit={ @@ -140638,7 +148184,7 @@ return { [1]="gain_arcane_surge_when_trap_triggered_by_an_enemy" } }, - [6354]={ + [6758]={ [1]={ [1]={ limit={ @@ -140654,7 +148200,7 @@ return { [1]="gain_arcane_surge_when_you_summon_a_totem" } }, - [6355]={ + [6759]={ [1]={ [1]={ limit={ @@ -140670,7 +148216,7 @@ return { [1]="gain_archon_cold_when_energy_shield_recharge_starts" } }, - [6356]={ + [6760]={ [1]={ [1]={ limit={ @@ -140686,7 +148232,7 @@ return { [1]="gain_archon_elemental_after_spending_100%_of_your_maximum_mana" } }, - [6357]={ + [6761]={ [1]={ [1]={ limit={ @@ -140702,7 +148248,7 @@ return { [1]="gain_archon_elemental_when_energy_shield_recharge_starts" } }, - [6358]={ + [6762]={ [1]={ [1]={ limit={ @@ -140727,7 +148273,7 @@ return { [1]="gain_archon_elemental_when_you_ignite_enemy_chance_%" } }, - [6359]={ + [6763]={ [1]={ [1]={ limit={ @@ -140752,7 +148298,7 @@ return { [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" } }, - [6360]={ + [6764]={ [1]={ [1]={ limit={ @@ -140768,7 +148314,23 @@ return { [1]="gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana" } }, - [6361]={ + [6765]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+1 to Armour per Strength" + } + }, + stats={ + [1]="gain_armour_equal_to_strength" + } + }, + [6766]={ [1]={ [1]={ limit={ @@ -140784,7 +148346,7 @@ return { [1]="gain_armour_from_%_life_loss_from_hits_lasting_8_seconds" } }, - [6362]={ + [6767]={ [1]={ [1]={ limit={ @@ -140800,7 +148362,7 @@ return { [1]="gain_attack_damage_+%_for_each_your_minion_in_presence_capped" } }, - [6363]={ + [6768]={ [1]={ [1]={ limit={ @@ -140816,7 +148378,7 @@ return { [1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy" } }, - [6364]={ + [6769]={ [1]={ [1]={ limit={ @@ -140841,7 +148403,7 @@ return { [1]="gain_blitz_charge_%_chance_on_crit" } }, - [6365]={ + [6770]={ [1]={ [1]={ limit={ @@ -140857,7 +148419,7 @@ return { [1]="gain_brutal_charges_instead_of_endurance_charges" } }, - [6366]={ + [6771]={ [1]={ [1]={ limit={ @@ -140882,7 +148444,7 @@ return { [1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance" } }, - [6367]={ + [6772]={ [1]={ [1]={ limit={ @@ -140907,7 +148469,7 @@ return { [1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance" } }, - [6368]={ + [6773]={ [1]={ [1]={ [1]={ @@ -140927,7 +148489,23 @@ return { [1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana" } }, - [6369]={ + [6774]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" + } + }, + stats={ + [1]="gain_dark_whispers_every_second_there_is_a_cursed_enemy_in_presence" + } + }, + [6775]={ [1]={ [1]={ limit={ @@ -140943,7 +148521,7 @@ return { [1]="gain_druidic_prowess_per_X_rage_spent" } }, - [6370]={ + [6776]={ [1]={ [1]={ limit={ @@ -140959,7 +148537,7 @@ return { [1]="gain_stormsurge_on_hit" } }, - [6371]={ + [6777]={ [1]={ [1]={ limit={ @@ -140975,7 +148553,7 @@ return { [1]="gain_elusive_on_reaching_low_life" } }, - [6372]={ + [6778]={ [1]={ [1]={ limit={ @@ -140991,7 +148569,7 @@ return { [1]="gain_endurance_charge_if_attack_freezes" } }, - [6373]={ + [6779]={ [1]={ [1]={ limit={ @@ -141007,7 +148585,23 @@ return { [1]="gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy" } }, - [6374]={ + [6780]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds" + } + }, + stats={ + [1]="gain_endurance_charge_on_reaching_low_life_once_per_2s" + } + }, + [6781]={ [1]={ [1]={ limit={ @@ -141032,7 +148626,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently" } }, - [6375]={ + [6782]={ [1]={ [1]={ limit={ @@ -141057,7 +148651,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_used_warcry_recently" } }, - [6376]={ + [6783]={ [1]={ [1]={ limit={ @@ -141082,7 +148676,7 @@ return { [1]="gain_endurance_charge_%_chance_when_you_lose_fortify" } }, - [6377]={ + [6784]={ [1]={ [1]={ limit={ @@ -141098,7 +148692,7 @@ return { [1]="gain_endurance_charge_%_when_hit_while_channelling" } }, - [6378]={ + [6785]={ [1]={ [1]={ limit={ @@ -141114,7 +148708,27 @@ return { [1]="gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges" } }, - [6379]={ + [6786]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_1dp", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Finality for {0} seconds per Combo expended when using Skills" + } + }, + stats={ + [1]="gain_finality_for_x_ms_per_combo_lost_using_skills" + } + }, + [6787]={ [1]={ [1]={ limit={ @@ -141143,7 +148757,7 @@ return { [1]="gain_fire_damage_+%_per_endurance_charge_consumed_recently" } }, - [6380]={ + [6788]={ [1]={ [1]={ limit={ @@ -141168,7 +148782,7 @@ return { [1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges" } }, - [6381]={ + [6789]={ [1]={ [1]={ limit={ @@ -141193,7 +148807,7 @@ return { [1]="gain_flask_charges_every_second_if_hit_unique_enemy_recently" } }, - [6382]={ + [6790]={ [1]={ [1]={ limit={ @@ -141209,7 +148823,7 @@ return { [1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff" } }, - [6383]={ + [6791]={ [1]={ [1]={ limit={ @@ -141225,7 +148839,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_at_close_range_%" } }, - [6384]={ + [6792]={ [1]={ [1]={ limit={ @@ -141250,7 +148864,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_%" } }, - [6385]={ + [6793]={ [1]={ [1]={ limit={ @@ -141266,7 +148880,7 @@ return { [1]="gain_frenzy_charge_on_enemy_shattered_chance_%" } }, - [6386]={ + [6794]={ [1]={ [1]={ limit={ @@ -141282,7 +148896,7 @@ return { [1]="gain_frenzy_charge_on_hit_%_while_blinded" } }, - [6387]={ + [6795]={ [1]={ [1]={ limit={ @@ -141298,7 +148912,7 @@ return { [1]="gain_frenzy_charge_on_hit_while_bleeding" } }, - [6388]={ + [6796]={ [1]={ [1]={ limit={ @@ -141314,7 +148928,7 @@ return { [1]="gain_frenzy_charge_on_hitting_marked_enemy_%" } }, - [6389]={ + [6797]={ [1]={ [1]={ limit={ @@ -141330,7 +148944,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [6390]={ + [6798]={ [1]={ [1]={ limit={ @@ -141355,7 +148969,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [6391]={ + [6799]={ [1]={ [1]={ limit={ @@ -141371,7 +148985,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [6392]={ + [6800]={ [1]={ [1]={ limit={ @@ -141396,7 +149010,7 @@ return { [1]="gain_frenzy_charge_per_enemy_you_crit_%_chance" } }, - [6393]={ + [6801]={ [1]={ [1]={ limit={ @@ -141412,7 +149026,7 @@ return { [1]="gain_frenzy_charge_%_when_hit_while_channelling" } }, - [6394]={ + [6802]={ [1]={ [1]={ limit={ @@ -141428,7 +149042,71 @@ return { [1]="gain_frenzy_power_endurance_charges_on_vaal_skill_use" } }, - [6395]={ + [6803]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Every 4 seconds, gain Guard equal to {0}% of maximum Runic Ward for 2 seconds" + } + }, + stats={ + [1]="gain_guard_%_of_max_ward_for_2s_every_4s" + } + }, + [6804]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Guard equal to {0}% of maximum Life for 4 seconds on taking Savage Hit" + } + }, + stats={ + [1]="gain_guard_%_of_maximum_life_for_4_seconds_on_taking_savage_hit" + } + }, + [6805]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When you stop Sprinting, gain Guard equal to {0}% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds" + } + }, + stats={ + [1]="gain_guard_after_sprinting_equal_to_x%_of_maximum_life_per_second_sprinted_up_to_20%" + } + }, + [6806]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Guard equal to {0}% of missing Energy Shield for 4 seconds when you Dodge Roll" + } + }, + stats={ + [1]="gain_guard_equal_to_%_of_your_missing_energy_shield_for_4_seconds_on_dodge_roll" + } + }, + [6807]={ [1]={ [1]={ limit={ @@ -141444,7 +149122,7 @@ return { [1]="gain_guard_flask_charge_when_hit_by_enemy_chance_%" } }, - [6396]={ + [6808]={ [1]={ [1]={ limit={ @@ -141460,7 +149138,7 @@ return { [1]="gain_lightning_archon_after_spending_100%_of_your_maximum_mana" } }, - [6397]={ + [6809]={ [1]={ [1]={ limit={ @@ -141485,7 +149163,7 @@ return { [1]="gain_magic_monster_mods_on_kill_%_chance" } }, - [6398]={ + [6810]={ [1]={ [1]={ limit={ @@ -141501,7 +149179,7 @@ return { [1]="gain_max_rage_on_losing_temporal_chains_debuff" } }, - [6399]={ + [6811]={ [1]={ [1]={ limit={ @@ -141517,7 +149195,7 @@ return { [1]="gain_max_rage_on_rage_gain_from_hit_%_chance" } }, - [6400]={ + [6812]={ [1]={ [1]={ limit={ @@ -141542,7 +149220,23 @@ return { [1]="gain_maximum_endurance_charges_when_crit_chance_%" } }, - [6401]={ + [6813]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Maximum Energy Shield equal to {0}% of total\nStrength Requirements of Equipped Armour Items" + } + }, + stats={ + [1]="gain_maximum_energy_shield_equal_to_%_total_strength_requirement_of_equipped_armour_items" + } + }, + [6814]={ [1]={ [1]={ limit={ @@ -141558,7 +149252,7 @@ return { [1]="gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility" } }, - [6402]={ + [6815]={ [1]={ [1]={ limit={ @@ -141574,7 +149268,7 @@ return { [1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth" } }, - [6403]={ + [6816]={ [1]={ [1]={ limit={ @@ -141590,7 +149284,7 @@ return { [1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance" } }, - [6404]={ + [6817]={ [1]={ [1]={ limit={ @@ -141606,7 +149300,7 @@ return { [1]="gain_maximum_power_charges_on_power_charge_gained_%_chance" } }, - [6405]={ + [6818]={ [1]={ [1]={ limit={ @@ -141622,7 +149316,70 @@ return { [1]="gain_maximum_power_charges_on_vaal_skill_use" } }, - [6406]={ + [6819]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} added Physical Thorns damage per Runic Plate" + } + }, + stats={ + [1]="gain_min_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks", + [2]="gain_max_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks" + } + }, + [6820]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Gain Physical Thorns damage equal to {0}% - {1}% of maximum Life" + } + }, + stats={ + [1]="gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life", + [2]="gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life" + } + }, + [6821]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Gain Physical Thorns damage equal to {0}% - {1}% of maximum Life while Shapeshifted" + } + }, + stats={ + [1]="gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted", + [2]="gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted" + } + }, + [6822]={ [1]={ [1]={ limit={ @@ -141638,7 +149395,7 @@ return { [1]="gain_movement_speed_+%_for_20_seconds_on_kill" } }, - [6407]={ + [6823]={ [1]={ [1]={ limit={ @@ -141654,7 +149411,7 @@ return { [1]="gain_onslaught_during_soul_gain_prevention" } }, - [6408]={ + [6824]={ [1]={ [1]={ limit={ @@ -141679,7 +149436,7 @@ return { [1]="gain_onslaught_for_3_seconds_%_chance_when_hit" } }, - [6409]={ + [6825]={ [1]={ [1]={ limit={ @@ -141695,7 +149452,23 @@ return { [1]="gain_onslaught_for_4_seconds_on_minion_death" } }, - [6410]={ + [6826]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Onslaught for {0} seconds when your Marks Activate" + } + }, + stats={ + [1]="gain_onslaught_for_x_seconds_when_your_marks_activate" + } + }, + [6827]={ [1]={ [1]={ limit={ @@ -141711,7 +149484,7 @@ return { [1]="gain_onslaught_if_you_have_swapped_stance_recently" } }, - [6411]={ + [6828]={ [1]={ [1]={ [1]={ @@ -141731,7 +149504,7 @@ return { [1]="gain_onslaught_ms_on_using_a_warcry" } }, - [6412]={ + [6829]={ [1]={ [1]={ limit={ @@ -141756,7 +149529,7 @@ return { [1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%" } }, - [6413]={ + [6830]={ [1]={ [1]={ [1]={ @@ -141776,7 +149549,7 @@ return { [1]="gain_onslaught_on_hit_duration_ms" } }, - [6414]={ + [6831]={ [1]={ [1]={ [1]={ @@ -141796,7 +149569,7 @@ return { [1]="gain_onslaught_on_kill_ms_while_affected_by_haste" } }, - [6415]={ + [6832]={ [1]={ [1]={ limit={ @@ -141812,7 +149585,7 @@ return { [1]="gain_onslaught_while_at_maximum_endurance_charges" } }, - [6416]={ + [6833]={ [1]={ [1]={ limit={ @@ -141828,7 +149601,7 @@ return { [1]="gain_onslaught_while_not_on_low_mana" } }, - [6417]={ + [6834]={ [1]={ [1]={ limit={ @@ -141844,7 +149617,7 @@ return { [1]="gain_onslaught_while_on_low_life" } }, - [6418]={ + [6835]={ [1]={ [1]={ limit={ @@ -141860,7 +149633,7 @@ return { [1]="gain_onslaught_while_you_have_cats_agility" } }, - [6419]={ + [6836]={ [1]={ [1]={ limit={ @@ -141876,7 +149649,7 @@ return { [1]="gain_onslaught_while_you_have_fortify" } }, - [6420]={ + [6837]={ [1]={ [1]={ [1]={ @@ -141896,7 +149669,7 @@ return { [1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec" } }, - [6421]={ + [6838]={ [1]={ [1]={ limit={ @@ -141912,7 +149685,7 @@ return { [1]="gain_phasing_if_enemy_killed_recently" } }, - [6422]={ + [6839]={ [1]={ [1]={ limit={ @@ -141928,7 +149701,7 @@ return { [1]="gain_phasing_while_affected_by_haste" } }, - [6423]={ + [6840]={ [1]={ [1]={ limit={ @@ -141944,7 +149717,7 @@ return { [1]="gain_phasing_while_you_have_cats_stealth" } }, - [6424]={ + [6841]={ [1]={ [1]={ limit={ @@ -141960,7 +149733,7 @@ return { [1]="gain_phasing_while_you_have_low_life" } }, - [6425]={ + [6842]={ [1]={ [1]={ limit={ @@ -141976,7 +149749,7 @@ return { [1]="gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted" } }, - [6426]={ + [6843]={ [1]={ [1]={ limit={ @@ -141992,7 +149765,7 @@ return { [1]="gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6427]={ + [6844]={ [1]={ [1]={ limit={ @@ -142008,7 +149781,7 @@ return { [1]="gain_power_charge_on_critical_strike_with_wands_%" } }, - [6428]={ + [6845]={ [1]={ [1]={ limit={ @@ -142024,7 +149797,7 @@ return { [1]="gain_power_charge_on_curse_cast_%" } }, - [6429]={ + [6846]={ [1]={ [1]={ limit={ @@ -142049,7 +149822,7 @@ return { [1]="gain_power_charge_on_hit_%_chance_against_frozen_enemy" } }, - [6430]={ + [6847]={ [1]={ [1]={ limit={ @@ -142065,7 +149838,7 @@ return { [1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%" } }, - [6431]={ + [6848]={ [1]={ [1]={ limit={ @@ -142081,7 +149854,7 @@ return { [1]="gain_power_charge_on_mana_flask_use_%_chance" } }, - [6432]={ + [6849]={ [1]={ [1]={ limit={ @@ -142106,7 +149879,7 @@ return { [1]="gain_power_charge_on_vaal_skill_use_%" } }, - [6433]={ + [6850]={ [1]={ [1]={ limit={ @@ -142122,7 +149895,7 @@ return { [1]="gain_power_charge_per_second_if_have_not_lost_power_charge_recently" } }, - [6434]={ + [6851]={ [1]={ [1]={ limit={ @@ -142138,7 +149911,7 @@ return { [1]="gain_power_or_frenzy_charge_for_each_second_channeling" } }, - [6435]={ + [6852]={ [1]={ [1]={ limit={ @@ -142154,7 +149927,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [6436]={ + [6853]={ [1]={ [1]={ limit={ @@ -142170,7 +149943,7 @@ return { [1]="gain_random_charge_on_block" } }, - [6437]={ + [6854]={ [1]={ [1]={ limit={ @@ -142186,7 +149959,23 @@ return { [1]="gain_random_charge_per_second_while_stationary" } }, - [6438]={ + [6855]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="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" + } + }, + stats={ + [1]="gain_runic_binding_stack_on_damaging_spell_hit_once_per_second" + } + }, + [6856]={ [1]={ [1]={ limit={ @@ -142202,7 +149991,7 @@ return { [1]="gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal" } }, - [6439]={ + [6857]={ [1]={ [1]={ limit={ @@ -142218,7 +150007,7 @@ return { [1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster" } }, - [6440]={ + [6858]={ [1]={ [1]={ limit={ @@ -142234,7 +150023,7 @@ return { [1]="gain_shrine_buff_every_10_seconds" } }, - [6441]={ + [6859]={ [1]={ [1]={ limit={ @@ -142268,7 +150057,7 @@ return { [1]="gain_single_conflux_for_3_seconds_every_8_seconds" } }, - [6442]={ + [6860]={ [1]={ [1]={ [1]={ @@ -142288,7 +150077,7 @@ return { [1]="gain_soul_eater_for_x_ms_on_vaal_skill_use" } }, - [6443]={ + [6861]={ [1]={ [1]={ [1]={ @@ -142321,7 +150110,7 @@ return { [1]="gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms" } }, - [6444]={ + [6862]={ [1]={ [1]={ limit={ @@ -142337,7 +150126,7 @@ return { [1]="gain_spell_cost_as_mana_every_fifth_cast" } }, - [6445]={ + [6863]={ [1]={ [1]={ limit={ @@ -142353,7 +150142,32 @@ return { [1]="gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration" } }, - [6446]={ + [6864]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=1 + } + }, + text="Gain 1 Explosive Rhythm every {0} time you use a Grenade Skill\nRemove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Gain 1 Explosive Rhythm every {0} times you use a Grenade Skill\n Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" + } + }, + stats={ + [1]="gain_stack_of_disorderly_conduct_every_x_grenade_skills_used" + } + }, + [6865]={ [1]={ [1]={ limit={ @@ -142369,7 +150183,7 @@ return { [1]="stun_threshold_+_per_dexterity" } }, - [6447]={ + [6866]={ [1]={ [1]={ limit={ @@ -142385,7 +150199,7 @@ return { [1]="gain_tailwind_on_critical_hit" } }, - [6448]={ + [6867]={ [1]={ [1]={ limit={ @@ -142401,7 +150215,7 @@ return { [1]="gain_tailwind_stack_on_skill_use" } }, - [6449]={ + [6868]={ [1]={ [1]={ limit={ @@ -142417,7 +150231,7 @@ return { [1]="gain_up_to_maximum_fragile_regrowth_when_hit" } }, - [6450]={ + [6869]={ [1]={ [1]={ [1]={ @@ -142437,7 +150251,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [6451]={ + [6870]={ [1]={ [1]={ limit={ @@ -142488,7 +150302,7 @@ return { [1]="gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second" } }, - [6452]={ + [6871]={ [1]={ [1]={ limit={ @@ -142517,7 +150331,7 @@ return { [1]="gain_x_fragile_regrowth_per_second" } }, - [6453]={ + [6872]={ [1]={ [1]={ limit={ @@ -142533,7 +150347,7 @@ return { [1]="gain_x_rage_on_hit_with_axes" } }, - [6454]={ + [6873]={ [1]={ [1]={ limit={ @@ -142549,7 +150363,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown" } }, - [6455]={ + [6874]={ [1]={ [1]={ limit={ @@ -142565,7 +150379,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [6456]={ + [6875]={ [1]={ [1]={ limit={ @@ -142581,7 +150395,7 @@ return { [1]="gain_x_rage_per_200_mana_spent" } }, - [6457]={ + [6876]={ [1]={ [1]={ limit={ @@ -142597,7 +150411,7 @@ return { [1]="gain_x_rage_when_hit" } }, - [6458]={ + [6877]={ [1]={ [1]={ limit={ @@ -142613,32 +150427,7 @@ return { [1]="gain_x_rage_when_taken_crit" } }, - [6459]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Galvanic Arrow and Storm Rain Repeats {0} additional times when used by a Mine" - } - }, - stats={ - [1]="galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined" - } - }, - [6460]={ + [6878]={ [1]={ [1]={ limit={ @@ -142667,7 +150456,7 @@ return { [1]="galvanic_arrow_projectile_speed_+%" } }, - [6461]={ + [6879]={ [1]={ [1]={ limit={ @@ -142692,7 +150481,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [6462]={ + [6880]={ [1]={ [1]={ limit={ @@ -142708,7 +150497,7 @@ return { [1]="galvanic_field_cast_speed_+%" } }, - [6463]={ + [6881]={ [1]={ [1]={ limit={ @@ -142737,7 +150526,7 @@ return { [1]="galvanic_field_damage_+%" } }, - [6464]={ + [6882]={ [1]={ [1]={ limit={ @@ -142762,7 +150551,7 @@ return { [1]="galvanic_field_number_of_chains" } }, - [6465]={ + [6883]={ [1]={ [1]={ limit={ @@ -142778,7 +150567,7 @@ return { [1]="gem_requirements_can_be_satisfied_by_highest_attribute" } }, - [6466]={ + [6884]={ [1]={ [1]={ limit={ @@ -142807,7 +150596,7 @@ return { [1]="gemling_all_attributes_+%_final" } }, - [6467]={ + [6885]={ [1]={ [1]={ limit={ @@ -142823,7 +150612,7 @@ return { [1]="gemling_double_basic_attribute_bonuses" } }, - [6468]={ + [6886]={ [1]={ [1]={ limit={ @@ -142852,7 +150641,7 @@ return { [1]="gemling_skill_cost_+%_final" } }, - [6469]={ + [6887]={ [1]={ [1]={ limit={ @@ -142868,7 +150657,7 @@ return { [1]="generals_cry_cooldown_speed_+%" } }, - [6470]={ + [6888]={ [1]={ [1]={ limit={ @@ -142884,7 +150673,7 @@ return { [1]="generals_cry_maximum_warriors_+" } }, - [6471]={ + [6889]={ [1]={ [1]={ [1]={ @@ -142904,9 +150693,22 @@ return { [1]="generate_x_charges_for_any_flask_per_minute" } }, - [6472]={ + [6890]={ [1]={ [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=60, + [2]=60 + } + }, + text="Charms gain {0} charge per Second" + }, + [2]={ [1]={ k="per_minute_to_per_second_2dp_if_required", v=1 @@ -142924,7 +150726,7 @@ return { [1]="generate_x_charges_for_charms_per_minute" } }, - [6473]={ + [6891]={ [1]={ [1]={ [1]={ @@ -142944,7 +150746,7 @@ return { [1]="generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute" } }, - [6474]={ + [6892]={ [1]={ [1]={ [1]={ @@ -142964,7 +150766,7 @@ return { [1]="generate_x_charges_for_guard_flasks_per_minute" } }, - [6475]={ + [6893]={ [1]={ [1]={ [1]={ @@ -142984,7 +150786,7 @@ return { [1]="generate_x_charges_for_life_flasks_per_minute" } }, - [6476]={ + [6894]={ [1]={ [1]={ [1]={ @@ -143004,7 +150806,7 @@ return { [1]="generate_x_charges_for_mana_flasks_per_minute" } }, - [6477]={ + [6895]={ [1]={ [1]={ [1]={ @@ -143024,7 +150826,7 @@ return { [1]="ghostflame_on_hit_duration_ms" } }, - [6478]={ + [6896]={ [1]={ [1]={ limit={ @@ -143040,7 +150842,7 @@ return { [1]="gifts_from_above_consecrated_ground_while_stationary" } }, - [6479]={ + [6897]={ [1]={ [1]={ limit={ @@ -143065,7 +150867,7 @@ return { [1]="glacial_cascade_number_of_additional_bursts" } }, - [6480]={ + [6898]={ [1]={ [1]={ limit={ @@ -143081,7 +150883,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_gain_as_cold" } }, - [6481]={ + [6899]={ [1]={ [1]={ limit={ @@ -143097,7 +150899,7 @@ return { [1]="glacial_hammer_melee_splash_with_cold_damage" } }, - [6482]={ + [6900]={ [1]={ [1]={ limit={ @@ -143130,7 +150932,7 @@ return { [1]="global_attack_speed_+%_per_level" } }, - [6483]={ + [6901]={ [1]={ [1]={ limit={ @@ -143146,7 +150948,7 @@ return { [1]="global_bleed_on_hit" } }, - [6484]={ + [6902]={ [1]={ [1]={ limit={ @@ -143171,7 +150973,7 @@ return { [1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [6485]={ + [6903]={ [1]={ [1]={ limit={ @@ -143200,7 +151002,7 @@ return { [1]="global_critical_strike_chance_+%_vs_chilled_enemies" } }, - [6486]={ + [6904]={ [1]={ [1]={ limit={ @@ -143209,7 +151011,7 @@ return { [2]="#" } }, - text="{0}% increased Defences per Frenzy Charge" + text="{0}% increased Armour, Evasion and Energy Shield per Frenzy Charge" }, [2]={ [1]={ @@ -143222,14 +151024,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences per Frenzy Charge" + text="{0}% reduced Armour, Evasion and Energy Shield per Frenzy Charge" } }, stats={ - [1]="global_defences_+%_per_frenzy_charge" + [1]="global_armour_evasion_energy_shield_+%_per_frenzy_charge" } }, - [6487]={ + [6905]={ [1]={ [1]={ limit={ @@ -143238,7 +151040,7 @@ return { [2]="#" } }, - text="{0}% increased Defences while your Companion is in your Presence" + text="{0}% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" }, [2]={ [1]={ @@ -143251,14 +151053,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences while your Companion is in your Presence" + text="{0}% reduced Armour, Evasion and Energy Shield while your Companion is in your Presence" } }, stats={ - [1]="global_defences_while_in_presence_of_companion_+%" + [1]="global_armour_evasion_energy_shield_while_in_presence_of_companion_+%" } }, - [6488]={ + [6906]={ [1]={ [1]={ limit={ @@ -143274,7 +151076,7 @@ return { [1]="global_evasion_rating_+_while_moving" } }, - [6489]={ + [6907]={ [1]={ [1]={ limit={ @@ -143303,7 +151105,7 @@ return { [1]="global_gem_attribute_requirements_+%_final_from_gemling" } }, - [6490]={ + [6908]={ [1]={ [1]={ limit={ @@ -143324,7 +151126,7 @@ return { [2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies" } }, - [6491]={ + [6909]={ [1]={ [1]={ limit={ @@ -143345,7 +151147,7 @@ return { [2]="global_maximum_added_fire_damage_vs_ignited_enemies" } }, - [6492]={ + [6910]={ [1]={ [1]={ limit={ @@ -143366,7 +151168,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_ignited_enemies" } }, - [6493]={ + [6911]={ [1]={ [1]={ limit={ @@ -143387,7 +151189,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_shocked_enemies" } }, - [6494]={ + [6912]={ [1]={ [1]={ limit={ @@ -143408,7 +151210,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6495]={ + [6913]={ [1]={ [1]={ limit={ @@ -143424,7 +151226,7 @@ return { [1]="global_physical_damage_reduction_rating_while_moving" } }, - [6496]={ + [6914]={ [1]={ [1]={ limit={ @@ -143440,7 +151242,7 @@ return { [1]="glory_generation_+%_if_you_have_at_least_100_tribute" } }, - [6497]={ + [6915]={ [1]={ [1]={ limit={ @@ -143469,7 +151271,7 @@ return { [1]="glory_generation_+%" } }, - [6498]={ + [6916]={ [1]={ [1]={ limit={ @@ -143485,7 +151287,7 @@ return { [1]="glory_generation_+%_for_banners" } }, - [6499]={ + [6917]={ [1]={ [1]={ [1]={ @@ -143505,7 +151307,7 @@ return { [1]="glove_implicit_gain_rage_on_attack_hit_cooldown_ms" } }, - [6500]={ + [6918]={ [1]={ [1]={ limit={ @@ -143534,7 +151336,7 @@ return { [1]="gold_+%_from_enemies" } }, - [6501]={ + [6919]={ [1]={ [1]={ limit={ @@ -143563,7 +151365,7 @@ return { [1]="golem_attack_and_cast_speed_+%" } }, - [6502]={ + [6920]={ [1]={ [1]={ limit={ @@ -143584,7 +151386,7 @@ return { [2]="golem_attack_maximum_added_physical_damage" } }, - [6503]={ + [6921]={ [1]={ [1]={ limit={ @@ -143613,7 +151415,7 @@ return { [1]="golem_buff_effect_+%" } }, - [6504]={ + [6922]={ [1]={ [1]={ limit={ @@ -143642,7 +151444,7 @@ return { [1]="golem_buff_effect_+%_per_summoned_golem" } }, - [6505]={ + [6923]={ [1]={ [1]={ [1]={ @@ -143662,7 +151464,7 @@ return { [1]="golem_life_regeneration_per_minute_%" } }, - [6506]={ + [6924]={ [1]={ [1]={ limit={ @@ -143691,7 +151493,7 @@ return { [1]="golem_maximum_life_+%" } }, - [6507]={ + [6925]={ [1]={ [1]={ limit={ @@ -143720,7 +151522,7 @@ return { [1]="golem_maximum_mana_+%" } }, - [6508]={ + [6926]={ [1]={ [1]={ limit={ @@ -143749,7 +151551,7 @@ return { [1]="golem_movement_speed_+%" } }, - [6509]={ + [6927]={ [1]={ [1]={ limit={ @@ -143765,7 +151567,7 @@ return { [1]="golem_physical_damage_reduction_rating" } }, - [6510]={ + [6928]={ [1]={ [1]={ [1]={ @@ -143802,7 +151604,7 @@ return { [1]="grace_mana_reservation_efficiency_-2%_per_1" } }, - [6511]={ + [6929]={ [1]={ [1]={ limit={ @@ -143831,7 +151633,7 @@ return { [1]="grace_mana_reservation_efficiency_+%" } }, - [6512]={ + [6930]={ [1]={ [1]={ limit={ @@ -143847,7 +151649,7 @@ return { [1]="grace_reserves_no_mana" } }, - [6513]={ + [6931]={ [1]={ [1]={ limit={ @@ -143880,7 +151682,59 @@ return { [1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash" } }, - [6514]={ + [6932]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grant Elemental Archon to your Minions for {0} seconds when they Revive" + } + }, + stats={ + [1]="grant_elemental_archon_to_minions_for_x_ms_when_they_revive" + } + }, + [6933]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain 1 Fear Incarnate when you Cull a target" + } + }, + stats={ + [1]="grant_fear_incarnate_stack_on_culling_enemies" + } + }, + [6934]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain 1 Fear Overwhelming when you Cull a target" + } + }, + stats={ + [1]="grant_fear_overwhelming_stack_on_culling_enemies" + } + }, + [6935]={ [1]={ [1]={ limit={ @@ -143896,7 +151750,7 @@ return { [1]="grant_tailwind_to_nearby_allies_if_used_skill_recently" } }, - [6515]={ + [6936]={ [1]={ [1]={ limit={ @@ -143929,7 +151783,7 @@ return { [1]="grant_void_arrow_every_x_ms" } }, - [6516]={ + [6937]={ [1]={ [1]={ limit={ @@ -143958,7 +151812,7 @@ return { [1]="gratuitous_violence_physical_damage_over_time_+%_final" } }, - [6517]={ + [6938]={ [1]={ [1]={ limit={ @@ -143987,7 +151841,7 @@ return { [1]="grenade_fuse_duration_+%" } }, - [6518]={ + [6939]={ [1]={ [1]={ limit={ @@ -144012,7 +151866,7 @@ return { [1]="grenade_projectile_speed_+%" } }, - [6519]={ + [6940]={ [1]={ [1]={ limit={ @@ -144037,7 +151891,7 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [6520]={ + [6941]={ [1]={ [1]={ limit={ @@ -144066,7 +151920,7 @@ return { [1]="grenade_skill_area_of_effect_+%" } }, - [6521]={ + [6942]={ [1]={ [1]={ limit={ @@ -144091,7 +151945,7 @@ return { [1]="grenade_skill_cooldown_count_+" } }, - [6522]={ + [6943]={ [1]={ [1]={ limit={ @@ -144120,7 +151974,7 @@ return { [1]="grenade_skill_cooldown_speed_+%" } }, - [6523]={ + [6944]={ [1]={ [1]={ limit={ @@ -144149,7 +152003,7 @@ return { [1]="grenade_skill_damage_+%" } }, - [6524]={ + [6945]={ [1]={ [1]={ limit={ @@ -144178,7 +152032,7 @@ return { [1]="grenade_skill_duration_+%" } }, - [6525]={ + [6946]={ [1]={ [1]={ limit={ @@ -144203,7 +152057,7 @@ return { [1]="grenade_skill_number_of_additional_projectiles" } }, - [6526]={ + [6947]={ [1]={ [1]={ limit={ @@ -144232,7 +152086,7 @@ return { [1]="ground_effect_duration_+%" } }, - [6527]={ + [6948]={ [1]={ [1]={ limit={ @@ -144257,7 +152111,7 @@ return { [1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun" } }, - [6528]={ + [6949]={ [1]={ [1]={ limit={ @@ -144273,7 +152127,7 @@ return { [1]="ground_tar_on_block_base_area_of_effect_radius" } }, - [6529]={ + [6950]={ [1]={ [1]={ limit={ @@ -144289,7 +152143,7 @@ return { [1]="ground_tar_when_hit_%_chance" } }, - [6530]={ + [6951]={ [1]={ [1]={ limit={ @@ -144318,7 +152172,7 @@ return { [1]="guard_flask_effect_+%" } }, - [6531]={ + [6952]={ [1]={ [1]={ limit={ @@ -144347,7 +152201,7 @@ return { [1]="guard_gained_+%" } }, - [6532]={ + [6953]={ [1]={ [1]={ limit={ @@ -144376,7 +152230,7 @@ return { [1]="guard_skill_cooldown_recovery_+%" } }, - [6533]={ + [6954]={ [1]={ [1]={ limit={ @@ -144405,7 +152259,7 @@ return { [1]="guard_skill_effect_duration_+%" } }, - [6534]={ + [6955]={ [1]={ [1]={ limit={ @@ -144421,7 +152275,7 @@ return { [1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught" } }, - [6535]={ + [6956]={ [1]={ [1]={ limit={ @@ -144450,7 +152304,7 @@ return { [1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies" } }, - [6536]={ + [6957]={ [1]={ [1]={ limit={ @@ -144475,7 +152329,7 @@ return { [1]="infernal_flame_instead_of_mana_at_%_ratio" } }, - [6537]={ + [6958]={ [1]={ [1]={ limit={ @@ -144491,7 +152345,36 @@ return { [1]="halve_evasion_rating_from_body" } }, - [6538]={ + [6959]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more damage taken while Cursed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less damage taken while Cursed" + } + }, + stats={ + [1]="hand_wraps_damage_taken_+%_final_while_cursed" + } + }, + [6960]={ [1]={ [1]={ limit={ @@ -144507,7 +152390,7 @@ return { [1]="harvest_encounter_fluid_granted_+%" } }, - [6539]={ + [6961]={ [1]={ [1]={ limit={ @@ -144523,7 +152406,7 @@ return { [1]="has_avoid_shock_as_avoid_all_elemental_ailments" } }, - [6540]={ + [6962]={ [1]={ [1]={ limit={ @@ -144539,7 +152422,7 @@ return { [1]="has_curse_limit_equal_to_maximum_power_charges" } }, - [6541]={ + [6963]={ [1]={ [1]={ limit={ @@ -144555,7 +152438,7 @@ return { [1]="has_ignite_duration_on_self_as_all_elemental_ailments_on_self" } }, - [6542]={ + [6964]={ [1]={ [1]={ limit={ @@ -144571,7 +152454,7 @@ return { [1]="has_onslaught_if_totem_summoned_recently" } }, - [6543]={ + [6965]={ [1]={ [1]={ limit={ @@ -144587,7 +152470,7 @@ return { [1]="has_stun_prevention_flask" } }, - [6544]={ + [6966]={ [1]={ [1]={ limit={ @@ -144616,7 +152499,7 @@ return { [1]="has_trickster_alternating_damage_taken_+%_final" } }, - [6545]={ + [6967]={ [1]={ [1]={ limit={ @@ -144632,7 +152515,7 @@ return { [1]="has_unique_brutal_shrine_effect" } }, - [6546]={ + [6968]={ [1]={ [1]={ limit={ @@ -144648,7 +152531,7 @@ return { [1]="has_unique_chaos_shrine_effect" } }, - [6547]={ + [6969]={ [1]={ [1]={ limit={ @@ -144664,7 +152547,7 @@ return { [1]="has_unique_cold_shrine_effect" } }, - [6548]={ + [6970]={ [1]={ [1]={ limit={ @@ -144680,7 +152563,7 @@ return { [1]="has_unique_fire_shrine_effect" } }, - [6549]={ + [6971]={ [1]={ [1]={ limit={ @@ -144696,7 +152579,7 @@ return { [1]="has_unique_lightning_shrine_effect" } }, - [6550]={ + [6972]={ [1]={ [1]={ limit={ @@ -144712,7 +152595,7 @@ return { [1]="has_unique_massive_shrine_effect" } }, - [6551]={ + [6973]={ [1]={ [1]={ [1]={ @@ -144749,7 +152632,7 @@ return { [1]="haste_mana_reservation_efficiency_-2%_per_1" } }, - [6552]={ + [6974]={ [1]={ [1]={ limit={ @@ -144778,7 +152661,7 @@ return { [1]="haste_mana_reservation_efficiency_+%" } }, - [6553]={ + [6975]={ [1]={ [1]={ limit={ @@ -144794,7 +152677,7 @@ return { [1]="haste_reserves_no_mana" } }, - [6554]={ + [6976]={ [1]={ [1]={ [1]={ @@ -144831,7 +152714,7 @@ return { [1]="hatred_mana_reservation_efficiency_-2%_per_1" } }, - [6555]={ + [6977]={ [1]={ [1]={ limit={ @@ -144860,7 +152743,7 @@ return { [1]="hatred_mana_reservation_efficiency_+%" } }, - [6556]={ + [6978]={ [1]={ [1]={ limit={ @@ -144876,7 +152759,7 @@ return { [1]="hatred_reserves_no_mana" } }, - [6557]={ + [6979]={ [1]={ [1]={ limit={ @@ -144892,7 +152775,7 @@ return { [1]="have_unholy_might" } }, - [6558]={ + [6980]={ [1]={ [1]={ limit={ @@ -144917,7 +152800,7 @@ return { [1]="hazard_area_of_effect_+%" } }, - [6559]={ + [6981]={ [1]={ [1]={ limit={ @@ -144946,7 +152829,7 @@ return { [1]="hazard_base_debuff_slow_magnitude_+%" } }, - [6560]={ + [6982]={ [1]={ [1]={ limit={ @@ -144975,7 +152858,7 @@ return { [1]="hazard_damage_+%" } }, - [6561]={ + [6983]={ [1]={ [1]={ limit={ @@ -145004,7 +152887,7 @@ return { [1]="hazard_hit_damage_immobilisation_multiplier_+%" } }, - [6562]={ + [6984]={ [1]={ [1]={ limit={ @@ -145029,7 +152912,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [6563]={ + [6985]={ [1]={ [1]={ limit={ @@ -145045,23 +152928,7 @@ return { [1]="hazards_cant_trigger_x_seconds_after_creation" } }, - [6564]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier\nA maximum of one Modifer can be granted this way" - } - }, - stats={ - [1]="head_hunt_without_a_corpse" - } - }, - [6565]={ + [6986]={ [1]={ [1]={ limit={ @@ -145090,7 +152957,7 @@ return { [1]="heat_loss_%_slower" } }, - [6566]={ + [6987]={ [1]={ [1]={ limit={ @@ -145119,7 +152986,7 @@ return { [1]="heavy_stun_poise_decay_rate_+%_per_10_tribute" } }, - [6567]={ + [6988]={ [1]={ [1]={ limit={ @@ -145148,7 +153015,7 @@ return { [1]="heavy_stun_poise_decay_rate_+%" } }, - [6568]={ + [6989]={ [1]={ [1]={ limit={ @@ -145164,7 +153031,7 @@ return { [1]="heavy_stun_threshold_+" } }, - [6569]={ + [6990]={ [1]={ [1]={ limit={ @@ -145180,7 +153047,7 @@ return { [1]="heavy_stuns_have_culling_strike" } }, - [6570]={ + [6991]={ [1]={ [1]={ limit={ @@ -145196,7 +153063,7 @@ return { [1]="heist_additional_abyss_rewards_from_reward_chests_%" } }, - [6571]={ + [6992]={ [1]={ [1]={ limit={ @@ -145212,7 +153079,7 @@ return { [1]="heist_additional_armour_rewards_from_reward_chests_%" } }, - [6572]={ + [6993]={ [1]={ [1]={ limit={ @@ -145228,7 +153095,7 @@ return { [1]="heist_additional_blight_rewards_from_reward_chests_%" } }, - [6573]={ + [6994]={ [1]={ [1]={ limit={ @@ -145244,7 +153111,7 @@ return { [1]="heist_additional_breach_rewards_from_reward_chests_%" } }, - [6574]={ + [6995]={ [1]={ [1]={ limit={ @@ -145260,7 +153127,7 @@ return { [1]="heist_additional_corrupted_rewards_from_reward_chests_%" } }, - [6575]={ + [6996]={ [1]={ [1]={ limit={ @@ -145276,7 +153143,7 @@ return { [1]="heist_additional_delirium_rewards_from_reward_chests_%" } }, - [6576]={ + [6997]={ [1]={ [1]={ limit={ @@ -145292,7 +153159,7 @@ return { [1]="heist_additional_delve_rewards_from_reward_chests_%" } }, - [6577]={ + [6998]={ [1]={ [1]={ limit={ @@ -145308,7 +153175,7 @@ return { [1]="heist_additional_divination_rewards_from_reward_chests_%" } }, - [6578]={ + [6999]={ [1]={ [1]={ limit={ @@ -145324,7 +153191,7 @@ return { [1]="heist_additional_essences_rewards_from_reward_chests_%" } }, - [6579]={ + [7000]={ [1]={ [1]={ limit={ @@ -145340,7 +153207,7 @@ return { [1]="heist_additional_gems_rewards_from_reward_chests_%" } }, - [6580]={ + [7001]={ [1]={ [1]={ limit={ @@ -145356,7 +153223,7 @@ return { [1]="heist_additional_harbinger_rewards_from_reward_chests_%" } }, - [6581]={ + [7002]={ [1]={ [1]={ limit={ @@ -145372,7 +153239,7 @@ return { [1]="heist_additional_jewellery_rewards_from_reward_chests_%" } }, - [6582]={ + [7003]={ [1]={ [1]={ limit={ @@ -145388,7 +153255,7 @@ return { [1]="heist_additional_legion_rewards_from_reward_chests_%" } }, - [6583]={ + [7004]={ [1]={ [1]={ limit={ @@ -145404,7 +153271,7 @@ return { [1]="heist_additional_metamorph_rewards_from_reward_chests_%" } }, - [6584]={ + [7005]={ [1]={ [1]={ limit={ @@ -145420,7 +153287,7 @@ return { [1]="heist_additional_perandus_rewards_from_reward_chests_%" } }, - [6585]={ + [7006]={ [1]={ [1]={ limit={ @@ -145436,7 +153303,7 @@ return { [1]="heist_additional_talisman_rewards_from_reward_chests_%" } }, - [6586]={ + [7007]={ [1]={ [1]={ limit={ @@ -145452,7 +153319,7 @@ return { [1]="heist_additional_uniques_rewards_from_reward_chests_%" } }, - [6587]={ + [7008]={ [1]={ [1]={ limit={ @@ -145468,7 +153335,7 @@ return { [1]="heist_additional_weapons_rewards_from_reward_chests_%" } }, - [6588]={ + [7009]={ [1]={ [1]={ limit={ @@ -145497,7 +153364,7 @@ return { [1]="heist_alert_level_gained_on_monster_death" } }, - [6589]={ + [7010]={ [1]={ [1]={ [1]={ @@ -145534,7 +153401,7 @@ return { [1]="heist_alert_level_gained_per_10_sec" } }, - [6590]={ + [7011]={ [1]={ [1]={ limit={ @@ -145550,7 +153417,7 @@ return { [1]="heist_chests_chance_for_secondary_objectives_%" } }, - [6591]={ + [7012]={ [1]={ [1]={ limit={ @@ -145575,7 +153442,7 @@ return { [1]="heist_chests_double_blighted_maps_and_catalysts_%" } }, - [6592]={ + [7013]={ [1]={ [1]={ limit={ @@ -145600,7 +153467,7 @@ return { [1]="heist_chests_double_breach_splinters_%" } }, - [6593]={ + [7014]={ [1]={ [1]={ limit={ @@ -145625,7 +153492,7 @@ return { [1]="heist_chests_double_catalysts_%" } }, - [6594]={ + [7015]={ [1]={ [1]={ limit={ @@ -145650,7 +153517,7 @@ return { [1]="heist_chests_double_currency_%" } }, - [6595]={ + [7016]={ [1]={ [1]={ limit={ @@ -145675,7 +153542,7 @@ return { [1]="heist_chests_double_delirium_orbs_and_splinters_%" } }, - [6596]={ + [7017]={ [1]={ [1]={ limit={ @@ -145700,7 +153567,7 @@ return { [1]="heist_chests_double_divination_cards_%" } }, - [6597]={ + [7018]={ [1]={ [1]={ limit={ @@ -145725,7 +153592,7 @@ return { [1]="heist_chests_double_essences_%" } }, - [6598]={ + [7019]={ [1]={ [1]={ limit={ @@ -145750,7 +153617,7 @@ return { [1]="heist_chests_double_jewels_%" } }, - [6599]={ + [7020]={ [1]={ [1]={ limit={ @@ -145775,7 +153642,7 @@ return { [1]="heist_chests_double_legion_splinters_%" } }, - [6600]={ + [7021]={ [1]={ [1]={ limit={ @@ -145800,7 +153667,7 @@ return { [1]="heist_chests_double_map_fragments_%" } }, - [6601]={ + [7022]={ [1]={ [1]={ limit={ @@ -145825,7 +153692,7 @@ return { [1]="heist_chests_double_maps_%" } }, - [6602]={ + [7023]={ [1]={ [1]={ limit={ @@ -145850,7 +153717,7 @@ return { [1]="heist_chests_double_oils_%" } }, - [6603]={ + [7024]={ [1]={ [1]={ limit={ @@ -145875,7 +153742,7 @@ return { [1]="heist_chests_double_scarabs_%" } }, - [6604]={ + [7025]={ [1]={ [1]={ limit={ @@ -145900,7 +153767,7 @@ return { [1]="heist_chests_double_sextants_%" } }, - [6605]={ + [7026]={ [1]={ [1]={ limit={ @@ -145929,7 +153796,7 @@ return { [1]="heist_chests_double_uniques_%" } }, - [6606]={ + [7027]={ [1]={ [1]={ limit={ @@ -145958,7 +153825,7 @@ return { [1]="heist_chests_unique_rarity_%" } }, - [6607]={ + [7028]={ [1]={ [1]={ limit={ @@ -145983,7 +153850,7 @@ return { [1]="heist_coins_from_world_chests_double_%" } }, - [6608]={ + [7029]={ [1]={ [1]={ limit={ @@ -146008,7 +153875,7 @@ return { [1]="heist_coins_dropped_by_monsters_double_%" } }, - [6609]={ + [7030]={ [1]={ [1]={ limit={ @@ -146037,7 +153904,7 @@ return { [1]="heist_contract_alert_level_from_chests_+%" } }, - [6610]={ + [7031]={ [1]={ [1]={ limit={ @@ -146066,7 +153933,7 @@ return { [1]="heist_contract_alert_level_from_monsters_+%" } }, - [6611]={ + [7032]={ [1]={ [1]={ limit={ @@ -146095,7 +153962,7 @@ return { [1]="heist_contract_alert_level_+%" } }, - [6612]={ + [7033]={ [1]={ [1]={ limit={ @@ -146124,7 +153991,7 @@ return { [1]="heist_contract_gang_cost_+%" } }, - [6613]={ + [7034]={ [1]={ [1]={ limit={ @@ -146140,7 +154007,7 @@ return { [1]="heist_contract_gang_takes_no_cut" } }, - [6614]={ + [7035]={ [1]={ [1]={ limit={ @@ -146156,7 +154023,7 @@ return { [1]="heist_contract_generate_secondary_objectives_chance_%" } }, - [6615]={ + [7036]={ [1]={ [1]={ limit={ @@ -146185,7 +154052,7 @@ return { [1]="heist_contract_guarding_monsters_damage_+%" } }, - [6616]={ + [7037]={ [1]={ [1]={ limit={ @@ -146214,7 +154081,7 @@ return { [1]="heist_contract_guarding_monsters_take_damage_+%" } }, - [6617]={ + [7038]={ [1]={ [1]={ limit={ @@ -146239,7 +154106,7 @@ return { [1]="heist_contract_mechanical_unlock_count" } }, - [6618]={ + [7039]={ [1]={ [1]={ limit={ @@ -146264,7 +154131,7 @@ return { [1]="heist_contract_magical_unlock_count" } }, - [6619]={ + [7040]={ [1]={ [1]={ limit={ @@ -146280,7 +154147,7 @@ return { [1]="heist_contract_no_travel_cost" } }, - [6620]={ + [7041]={ [1]={ [1]={ limit={ @@ -146309,7 +154176,7 @@ return { [1]="heist_contract_npc_cost_+%" } }, - [6621]={ + [7042]={ [1]={ [1]={ limit={ @@ -146338,7 +154205,7 @@ return { [1]="heist_contract_objective_completion_time_+%" } }, - [6622]={ + [7043]={ [1]={ [1]={ limit={ @@ -146367,7 +154234,7 @@ return { [1]="heist_contract_patrol_additional_elite_chance_+%" } }, - [6623]={ + [7044]={ [1]={ [1]={ limit={ @@ -146396,7 +154263,7 @@ return { [1]="heist_contract_patrol_damage_+%" } }, - [6624]={ + [7045]={ [1]={ [1]={ limit={ @@ -146425,7 +154292,7 @@ return { [1]="heist_contract_patrol_take_damage_+%" } }, - [6625]={ + [7046]={ [1]={ [1]={ limit={ @@ -146454,7 +154321,7 @@ return { [1]="heist_contract_side_area_monsters_damage_+%" } }, - [6626]={ + [7047]={ [1]={ [1]={ limit={ @@ -146483,7 +154350,7 @@ return { [1]="heist_contract_side_area_monsters_take_damage_+%" } }, - [6627]={ + [7048]={ [1]={ [1]={ limit={ @@ -146512,7 +154379,7 @@ return { [1]="heist_contract_total_cost_+%_final" } }, - [6628]={ + [7049]={ [1]={ [1]={ limit={ @@ -146541,7 +154408,7 @@ return { [1]="heist_contract_travel_cost_+%" } }, - [6629]={ + [7050]={ [1]={ [1]={ limit={ @@ -146566,7 +154433,7 @@ return { [1]="heist_currency_alchemy_drops_as_blessed_%" } }, - [6630]={ + [7051]={ [1]={ [1]={ limit={ @@ -146591,7 +154458,7 @@ return { [1]="heist_currency_alchemy_drops_as_divine_%" } }, - [6631]={ + [7052]={ [1]={ [1]={ limit={ @@ -146616,7 +154483,7 @@ return { [1]="heist_currency_alchemy_drops_as_exalted_%" } }, - [6632]={ + [7053]={ [1]={ [1]={ limit={ @@ -146641,7 +154508,7 @@ return { [1]="heist_currency_alteration_drops_as_alchemy_%" } }, - [6633]={ + [7054]={ [1]={ [1]={ limit={ @@ -146666,7 +154533,7 @@ return { [1]="heist_currency_alteration_drops_as_chaos_%" } }, - [6634]={ + [7055]={ [1]={ [1]={ limit={ @@ -146691,7 +154558,7 @@ return { [1]="heist_currency_alteration_drops_as_regal_%" } }, - [6635]={ + [7056]={ [1]={ [1]={ limit={ @@ -146716,7 +154583,7 @@ return { [1]="heist_currency_augmentation_drops_as_alchemy_%" } }, - [6636]={ + [7057]={ [1]={ [1]={ limit={ @@ -146741,7 +154608,7 @@ return { [1]="heist_currency_augmentation_drops_as_chaos_%" } }, - [6637]={ + [7058]={ [1]={ [1]={ limit={ @@ -146766,7 +154633,7 @@ return { [1]="heist_currency_augmentation_drops_as_regal_%" } }, - [6638]={ + [7059]={ [1]={ [1]={ limit={ @@ -146791,7 +154658,7 @@ return { [1]="heist_currency_chaos_drops_as_blessed_%" } }, - [6639]={ + [7060]={ [1]={ [1]={ limit={ @@ -146816,7 +154683,7 @@ return { [1]="heist_currency_chaos_drops_as_divine_%" } }, - [6640]={ + [7061]={ [1]={ [1]={ limit={ @@ -146841,7 +154708,7 @@ return { [1]="heist_currency_chaos_drops_as_exalted_%" } }, - [6641]={ + [7062]={ [1]={ [1]={ limit={ @@ -146866,7 +154733,7 @@ return { [1]="heist_currency_chromatic_drops_as_fusing_%" } }, - [6642]={ + [7063]={ [1]={ [1]={ limit={ @@ -146891,7 +154758,7 @@ return { [1]="heist_currency_chromatic_drops_as_jewellers_%" } }, - [6643]={ + [7064]={ [1]={ [1]={ limit={ @@ -146916,7 +154783,7 @@ return { [1]="heist_currency_jewellers_drops_as_fusing_%" } }, - [6644]={ + [7065]={ [1]={ [1]={ limit={ @@ -146941,7 +154808,7 @@ return { [1]="heist_currency_regal_drops_as_blessed_%" } }, - [6645]={ + [7066]={ [1]={ [1]={ limit={ @@ -146966,7 +154833,7 @@ return { [1]="heist_currency_regal_drops_as_divine_%" } }, - [6646]={ + [7067]={ [1]={ [1]={ limit={ @@ -146991,7 +154858,7 @@ return { [1]="heist_currency_regal_drops_as_exalted_%" } }, - [6647]={ + [7068]={ [1]={ [1]={ limit={ @@ -147016,7 +154883,7 @@ return { [1]="heist_currency_regret_drops_as_annulment_%" } }, - [6648]={ + [7069]={ [1]={ [1]={ limit={ @@ -147041,7 +154908,7 @@ return { [1]="heist_currency_scouring_drops_as_annulment_%" } }, - [6649]={ + [7070]={ [1]={ [1]={ limit={ @@ -147066,7 +154933,7 @@ return { [1]="heist_currency_scouring_drops_as_regret_%" } }, - [6650]={ + [7071]={ [1]={ [1]={ limit={ @@ -147091,7 +154958,7 @@ return { [1]="heist_currency_transmutation_drops_as_alchemy_%" } }, - [6651]={ + [7072]={ [1]={ [1]={ limit={ @@ -147116,7 +154983,7 @@ return { [1]="heist_currency_transmutation_drops_as_chaos_%" } }, - [6652]={ + [7073]={ [1]={ [1]={ limit={ @@ -147141,7 +155008,7 @@ return { [1]="heist_currency_transmutation_drops_as_regal_%" } }, - [6653]={ + [7074]={ [1]={ [1]={ limit={ @@ -147166,7 +155033,7 @@ return { [1]="heist_drops_double_currency_%" } }, - [6654]={ + [7075]={ [1]={ [1]={ limit={ @@ -147182,7 +155049,7 @@ return { [1]="heist_guards_are_magic" } }, - [6655]={ + [7076]={ [1]={ [1]={ limit={ @@ -147198,7 +155065,7 @@ return { [1]="heist_guards_are_rare" } }, - [6656]={ + [7077]={ [1]={ [1]={ limit={ @@ -147214,7 +155081,7 @@ return { [1]="heist_interruption_resistance_%" } }, - [6657]={ + [7078]={ [1]={ [1]={ limit={ @@ -147243,7 +155110,7 @@ return { [1]="heist_item_quantity_+%" } }, - [6658]={ + [7079]={ [1]={ [1]={ limit={ @@ -147272,7 +155139,7 @@ return { [1]="heist_item_rarity_+%" } }, - [6659]={ + [7080]={ [1]={ [1]={ limit={ @@ -147297,7 +155164,7 @@ return { [1]="heist_items_are_fully_linked_%" } }, - [6660]={ + [7081]={ [1]={ [1]={ limit={ @@ -147322,7 +155189,7 @@ return { [1]="heist_items_drop_corrupted_%" } }, - [6661]={ + [7082]={ [1]={ [1]={ limit={ @@ -147347,7 +155214,7 @@ return { [1]="heist_items_drop_identified_%" } }, - [6662]={ + [7083]={ [1]={ [1]={ limit={ @@ -147372,7 +155239,7 @@ return { [1]="heist_items_have_elder_influence_%" } }, - [6663]={ + [7084]={ [1]={ [1]={ limit={ @@ -147397,7 +155264,7 @@ return { [1]="heist_items_have_one_additional_socket_%" } }, - [6664]={ + [7085]={ [1]={ [1]={ limit={ @@ -147422,7 +155289,7 @@ return { [1]="heist_items_have_shaper_influence_%" } }, - [6665]={ + [7086]={ [1]={ [1]={ limit={ @@ -147438,7 +155305,7 @@ return { [1]="heist_job_agility_level_+" } }, - [6666]={ + [7087]={ [1]={ [1]={ limit={ @@ -147454,7 +155321,7 @@ return { [1]="heist_job_brute_force_level_+" } }, - [6667]={ + [7088]={ [1]={ [1]={ limit={ @@ -147470,7 +155337,7 @@ return { [1]="heist_job_counter_thaumaturgy_level_+" } }, - [6668]={ + [7089]={ [1]={ [1]={ limit={ @@ -147486,7 +155353,7 @@ return { [1]="heist_job_deception_level_+" } }, - [6669]={ + [7090]={ [1]={ [1]={ limit={ @@ -147502,7 +155369,7 @@ return { [1]="heist_job_demolition_level_+" } }, - [6670]={ + [7091]={ [1]={ [1]={ limit={ @@ -147531,7 +155398,7 @@ return { [1]="heist_job_demolition_speed_+%" } }, - [6671]={ + [7092]={ [1]={ [1]={ limit={ @@ -147547,7 +155414,7 @@ return { [1]="heist_job_engineering_level_+" } }, - [6672]={ + [7093]={ [1]={ [1]={ limit={ @@ -147563,7 +155430,7 @@ return { [1]="heist_job_lockpicking_level_+" } }, - [6673]={ + [7094]={ [1]={ [1]={ limit={ @@ -147592,7 +155459,7 @@ return { [1]="heist_job_lockpicking_speed_+%" } }, - [6674]={ + [7095]={ [1]={ [1]={ limit={ @@ -147608,7 +155475,7 @@ return { [1]="heist_job_perception_level_+" } }, - [6675]={ + [7096]={ [1]={ [1]={ limit={ @@ -147624,7 +155491,7 @@ return { [1]="heist_job_trap_disarmament_level_+" } }, - [6676]={ + [7097]={ [1]={ [1]={ limit={ @@ -147653,7 +155520,7 @@ return { [1]="heist_job_trap_disarmament_speed_+%" } }, - [6677]={ + [7098]={ [1]={ [1]={ limit={ @@ -147669,7 +155536,7 @@ return { [1]="heist_lockdown_is_instant" } }, - [6678]={ + [7099]={ [1]={ [1]={ limit={ @@ -147685,7 +155552,7 @@ return { [1]="heist_nenet_scouts_nearby_patrols_and_mini_bosses" } }, - [6679]={ + [7100]={ [1]={ [1]={ limit={ @@ -147714,7 +155581,7 @@ return { [1]="heist_npc_blueprint_reveal_cost_+%" } }, - [6680]={ + [7101]={ [1]={ [1]={ limit={ @@ -147739,7 +155606,7 @@ return { [1]="heist_npc_contract_generates_gianna_intelligence" } }, - [6681]={ + [7102]={ [1]={ [1]={ limit={ @@ -147764,7 +155631,7 @@ return { [1]="heist_npc_contract_generates_niles_intelligence" } }, - [6682]={ + [7103]={ [1]={ [1]={ limit={ @@ -147780,7 +155647,7 @@ return { [1]="heist_npc_display_huck_combat" } }, - [6683]={ + [7104]={ [1]={ [1]={ limit={ @@ -147809,7 +155676,7 @@ return { [1]="heist_npc_karst_alert_level_from_chests_+%_final" } }, - [6684]={ + [7105]={ [1]={ [1]={ limit={ @@ -147838,7 +155705,7 @@ return { [1]="heist_npc_nenet_alert_level_+%_final" } }, - [6685]={ + [7106]={ [1]={ [1]={ limit={ @@ -147867,7 +155734,7 @@ return { [1]="heist_npc_tullina_alert_level_+%_final" } }, - [6686]={ + [7107]={ [1]={ [1]={ limit={ @@ -147896,7 +155763,7 @@ return { [1]="heist_npc_vinderi_alert_level_+%_final" } }, - [6687]={ + [7108]={ [1]={ [1]={ limit={ @@ -147912,7 +155779,7 @@ return { [1]="heist_patrols_are_magic" } }, - [6688]={ + [7109]={ [1]={ [1]={ limit={ @@ -147928,7 +155795,7 @@ return { [1]="heist_patrols_are_rare" } }, - [6689]={ + [7110]={ [1]={ [1]={ limit={ @@ -147944,7 +155811,7 @@ return { [1]="heist_player_additional_maximum_resistances_%_per_25%_alert_level" } }, - [6690]={ + [7111]={ [1]={ [1]={ limit={ @@ -147973,7 +155840,7 @@ return { [1]="heist_player_armour_+%_final_per_25%_alert_level" } }, - [6691]={ + [7112]={ [1]={ [1]={ limit={ @@ -147989,7 +155856,7 @@ return { [1]="heist_player_cold_resistance_%_per_25%_alert_level" } }, - [6692]={ + [7113]={ [1]={ [1]={ limit={ @@ -148018,7 +155885,7 @@ return { [1]="heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level" } }, - [6693]={ + [7114]={ [1]={ [1]={ limit={ @@ -148047,7 +155914,7 @@ return { [1]="heist_player_evasion_rating_+%_final_per_25%_alert_level" } }, - [6694]={ + [7115]={ [1]={ [1]={ limit={ @@ -148076,7 +155943,7 @@ return { [1]="heist_player_experience_gain_+%" } }, - [6695]={ + [7116]={ [1]={ [1]={ limit={ @@ -148092,7 +155959,7 @@ return { [1]="heist_player_fire_resistance_%_per_25%_alert_level" } }, - [6696]={ + [7117]={ [1]={ [1]={ limit={ @@ -148121,7 +155988,7 @@ return { [1]="heist_player_flask_charges_gained_+%_per_25%_alert_level" } }, - [6697]={ + [7118]={ [1]={ [1]={ limit={ @@ -148150,7 +156017,7 @@ return { [1]="heist_player_life_recovery_rate_+%_final_per_25%_alert_level" } }, - [6698]={ + [7119]={ [1]={ [1]={ limit={ @@ -148166,7 +156033,7 @@ return { [1]="heist_player_lightning_resistance_%_per_25%_alert_level" } }, - [6699]={ + [7120]={ [1]={ [1]={ limit={ @@ -148195,7 +156062,7 @@ return { [1]="heist_player_mana_recovery_rate_+%_final_per_25%_alert_level" } }, - [6700]={ + [7121]={ [1]={ [1]={ limit={ @@ -148224,7 +156091,7 @@ return { [1]="heist_reinforcements_attack_speed_+%" } }, - [6701]={ + [7122]={ [1]={ [1]={ limit={ @@ -148253,7 +156120,7 @@ return { [1]="heist_reinforcements_cast_speed_+%" } }, - [6702]={ + [7123]={ [1]={ [1]={ limit={ @@ -148282,7 +156149,7 @@ return { [1]="heist_reinforcements_movements_speed_+%" } }, - [6703]={ + [7124]={ [1]={ [1]={ limit={ @@ -148311,7 +156178,7 @@ return { [1]="heist_side_reward_room_monsters_+%" } }, - [6704]={ + [7125]={ [1]={ [1]={ limit={ @@ -148336,7 +156203,7 @@ return { [1]="hellscape_extra_item_slots" } }, - [6705]={ + [7126]={ [1]={ [1]={ limit={ @@ -148361,7 +156228,7 @@ return { [1]="hellscape_extra_map_slots" } }, - [6706]={ + [7127]={ [1]={ [1]={ limit={ @@ -148377,7 +156244,7 @@ return { [1]="hellscaping_add_corruption_implicit_chance_%" } }, - [6707]={ + [7128]={ [1]={ [1]={ limit={ @@ -148393,7 +156260,7 @@ return { [1]="hellscaping_add_explicit_mod_chance_%" } }, - [6708]={ + [7129]={ [1]={ [1]={ limit={ @@ -148409,7 +156276,7 @@ return { [1]="hellscaping_additional_link_chance_%" } }, - [6709]={ + [7130]={ [1]={ [1]={ limit={ @@ -148425,7 +156292,7 @@ return { [1]="hellscaping_additional_socket_chance_%" } }, - [6710]={ + [7131]={ [1]={ [1]={ limit={ @@ -148441,7 +156308,7 @@ return { [1]="hellscaping_additional_upside_chance_%" } }, - [6711]={ + [7132]={ [1]={ [1]={ limit={ @@ -148457,7 +156324,7 @@ return { [1]="hellscaping_downsides_tier_downgrade_chance_%" } }, - [6712]={ + [7133]={ [1]={ [1]={ limit={ @@ -148473,7 +156340,7 @@ return { [1]="hellscaping_speed_+%_per_map_hellscape_tier" } }, - [6713]={ + [7134]={ [1]={ [1]={ limit={ @@ -148489,7 +156356,7 @@ return { [1]="armour_hellscaping_speed_+%" } }, - [6714]={ + [7135]={ [1]={ [1]={ limit={ @@ -148505,7 +156372,7 @@ return { [1]="jewellery_hellscaping_speed_+%" } }, - [6715]={ + [7136]={ [1]={ [1]={ limit={ @@ -148521,7 +156388,7 @@ return { [1]="map_hellscaping_speed_+%" } }, - [6716]={ + [7137]={ [1]={ [1]={ limit={ @@ -148537,7 +156404,7 @@ return { [1]="weapon_hellscaping_speed_+%" } }, - [6717]={ + [7138]={ [1]={ [1]={ limit={ @@ -148553,7 +156420,7 @@ return { [1]="quiver_hellscaping_speed_+%" } }, - [6718]={ + [7139]={ [1]={ [1]={ limit={ @@ -148569,7 +156436,7 @@ return { [1]="hellscaping_upgrade_mod_tier_chance_%" } }, - [6719]={ + [7140]={ [1]={ [1]={ limit={ @@ -148585,7 +156452,7 @@ return { [1]="hellscaping_upsides_tier_upgrade_chance_%" } }, - [6720]={ + [7141]={ [1]={ [1]={ limit={ @@ -148601,7 +156468,7 @@ return { [1]="helmet_mod_freeze_as_though_damage_+%_final" } }, - [6721]={ + [7142]={ [1]={ [1]={ limit={ @@ -148617,7 +156484,7 @@ return { [1]="helmet_mod_shock_as_though_damage_+%_final" } }, - [6722]={ + [7143]={ [1]={ [1]={ limit={ @@ -148646,7 +156513,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [6723]={ + [7144]={ [1]={ [1]={ limit={ @@ -148662,7 +156529,7 @@ return { [1]="herald_mana_reservation_override_45%" } }, - [6724]={ + [7145]={ [1]={ [1]={ limit={ @@ -148691,7 +156558,7 @@ return { [1]="herald_of_agony_buff_drop_off_speed_+%" } }, - [6725]={ + [7146]={ [1]={ [1]={ limit={ @@ -148720,7 +156587,7 @@ return { [1]="herald_of_agony_buff_effect_+%" } }, - [6726]={ + [7147]={ [1]={ [1]={ [1]={ @@ -148757,7 +156624,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_-2%_per_1" } }, - [6727]={ + [7148]={ [1]={ [1]={ limit={ @@ -148786,7 +156653,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_+%" } }, - [6728]={ + [7149]={ [1]={ [1]={ limit={ @@ -148819,7 +156686,7 @@ return { [1]="herald_of_agony_mana_reservation_+%" } }, - [6729]={ + [7150]={ [1]={ [1]={ limit={ @@ -148848,7 +156715,7 @@ return { [1]="herald_of_ash_buff_effect_+%" } }, - [6730]={ + [7151]={ [1]={ [1]={ [1]={ @@ -148885,7 +156752,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_-2%_per_1" } }, - [6731]={ + [7152]={ [1]={ [1]={ limit={ @@ -148914,7 +156781,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_+%" } }, - [6732]={ + [7153]={ [1]={ [1]={ limit={ @@ -148943,7 +156810,7 @@ return { [1]="herald_of_ice_buff_effect_+%" } }, - [6733]={ + [7154]={ [1]={ [1]={ [1]={ @@ -148980,7 +156847,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [6734]={ + [7155]={ [1]={ [1]={ limit={ @@ -149009,7 +156876,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_+%" } }, - [6735]={ + [7156]={ [1]={ [1]={ limit={ @@ -149025,7 +156892,7 @@ return { [1]="herald_of_light_and_dominating_blow_minions_use_holy_slam" } }, - [6736]={ + [7157]={ [1]={ [1]={ limit={ @@ -149054,7 +156921,7 @@ return { [1]="herald_of_light_buff_effect_+%" } }, - [6737]={ + [7158]={ [1]={ [1]={ limit={ @@ -149083,7 +156950,7 @@ return { [1]="herald_of_light_minion_area_of_effect_+%" } }, - [6738]={ + [7159]={ [1]={ [1]={ [1]={ @@ -149120,7 +156987,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_-2%_per_1" } }, - [6739]={ + [7160]={ [1]={ [1]={ limit={ @@ -149149,7 +157016,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_+%" } }, - [6740]={ + [7161]={ [1]={ [1]={ limit={ @@ -149182,7 +157049,7 @@ return { [1]="herald_of_purity_mana_reservation_+%" } }, - [6741]={ + [7162]={ [1]={ [1]={ limit={ @@ -149207,7 +157074,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [6742]={ + [7163]={ [1]={ [1]={ limit={ @@ -149236,7 +157103,7 @@ return { [1]="herald_of_thunder_buff_effect_+%" } }, - [6743]={ + [7164]={ [1]={ [1]={ [1]={ @@ -149273,7 +157140,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_-2%_per_1" } }, - [6744]={ + [7165]={ [1]={ [1]={ limit={ @@ -149302,7 +157169,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_+%" } }, - [6745]={ + [7166]={ [1]={ [1]={ limit={ @@ -149327,7 +157194,7 @@ return { [1]="herald_scorpion_number_of_additional_projectiles" } }, - [6746]={ + [7167]={ [1]={ [1]={ [1]={ @@ -149364,7 +157231,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_-2%_per_1" } }, - [6747]={ + [7168]={ [1]={ [1]={ limit={ @@ -149393,7 +157260,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_+%" } }, - [6748]={ + [7169]={ [1]={ [1]={ limit={ @@ -149422,7 +157289,7 @@ return { [1]="herald_skills_mana_reservation_+%" } }, - [6749]={ + [7170]={ [1]={ [1]={ limit={ @@ -149451,7 +157318,7 @@ return { [1]="hex_skill_duration_+%" } }, - [6750]={ + [7171]={ [1]={ [1]={ limit={ @@ -149480,7 +157347,7 @@ return { [1]="hexblast_damage_+%" } }, - [6751]={ + [7172]={ [1]={ [1]={ limit={ @@ -149496,7 +157363,7 @@ return { [1]="hexblast_%_chance_to_not_consume_hex" } }, - [6752]={ + [7173]={ [1]={ [1]={ limit={ @@ -149525,7 +157392,7 @@ return { [1]="hexblast_skill_area_of_effect_+%" } }, - [6753]={ + [7174]={ [1]={ [1]={ [1]={ @@ -149554,7 +157421,7 @@ return { [2]="hex_remove_at_effect_variance" } }, - [6754]={ + [7175]={ [1]={ [1]={ limit={ @@ -149570,7 +157437,7 @@ return { [1]="hexproof_if_right_ring_is_magic_item" } }, - [6755]={ + [7176]={ [1]={ [1]={ limit={ @@ -149586,7 +157453,7 @@ return { [1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%" } }, - [6756]={ + [7177]={ [1]={ [1]={ limit={ @@ -149602,7 +157469,7 @@ return { [1]="hierophant_gain_arcane_surge_on_mana_use_threshold" } }, - [6757]={ + [7178]={ [1]={ [1]={ limit={ @@ -149631,7 +157498,7 @@ return { [1]="hierophant_mana_cost_+%_final" } }, - [6758]={ + [7179]={ [1]={ [1]={ limit={ @@ -149660,7 +157527,7 @@ return { [1]="hierophant_mana_reservation_+%_final" } }, - [6759]={ + [7180]={ [1]={ [1]={ limit={ @@ -149676,7 +157543,7 @@ return { [1]="hinder_chance_%_on_spreading_poioson" } }, - [6760]={ + [7181]={ [1]={ [1]={ limit={ @@ -149705,7 +157572,7 @@ return { [1]="hinder_duration_+%" } }, - [6761]={ + [7182]={ [1]={ [1]={ limit={ @@ -149734,7 +157601,7 @@ return { [1]="hinder_effect_on_self_+%" } }, - [6762]={ + [7183]={ [1]={ [1]={ limit={ @@ -149763,7 +157630,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [6763]={ + [7184]={ [1]={ [1]={ limit={ @@ -149792,7 +157659,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [6764]={ + [7185]={ [1]={ [1]={ limit={ @@ -149821,7 +157688,7 @@ return { [1]="hinder_enemy_elemental_damage_taken_+%" } }, - [6765]={ + [7186]={ [1]={ [1]={ limit={ @@ -149850,7 +157717,36 @@ return { [1]="hinder_enemy_physical_damage_taken_+%" } }, - [6766]={ + [7187]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage with Hits against targets in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage with Hits against targets in your Presence" + } + }, + stats={ + [1]="hit_damage_+%_against_enemies_in_presence" + } + }, + [7188]={ [1]={ [1]={ limit={ @@ -149879,7 +157775,7 @@ return { [1]="hit_damage_+%_vs_ignited_enemies" } }, - [6767]={ + [7189]={ [1]={ [1]={ limit={ @@ -149908,7 +157804,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%" } }, - [6768]={ + [7190]={ [1]={ [1]={ limit={ @@ -149937,7 +157833,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%_vs_shocked_enemies" } }, - [6769]={ + [7191]={ [1]={ [1]={ limit={ @@ -149966,7 +157862,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_with_empowered_attacks" } }, - [6770]={ + [7192]={ [1]={ [1]={ limit={ @@ -149995,7 +157891,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_against_ignited_enemies" } }, - [6771]={ + [7193]={ [1]={ [1]={ limit={ @@ -150024,7 +157920,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently" } }, - [6772]={ + [7194]={ [1]={ [1]={ limit={ @@ -150053,7 +157949,7 @@ return { [1]="hit_damage_immobilisation_multiplier_+%" } }, - [6773]={ + [7195]={ [1]={ [1]={ limit={ @@ -150082,7 +157978,7 @@ return { [1]="hit_damage_immobilisation_multiplier_+%_vs_constructs" } }, - [6774]={ + [7196]={ [1]={ [1]={ limit={ @@ -150111,7 +158007,7 @@ return { [1]="hit_damage_pin_multiplier_+%" } }, - [6775]={ + [7197]={ [1]={ [1]={ limit={ @@ -150140,7 +158036,7 @@ return { [1]="hit_damage_+%" } }, - [6776]={ + [7198]={ [1]={ [1]={ limit={ @@ -150169,7 +158065,7 @@ return { [1]="hit_damage_+%_vs_bleeding_enemies" } }, - [6777]={ + [7199]={ [1]={ [1]={ limit={ @@ -150198,7 +158094,7 @@ return { [1]="hit_damage_+%_vs_blinded_enemies" } }, - [6778]={ + [7200]={ [1]={ [1]={ limit={ @@ -150227,7 +158123,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [6779]={ + [7201]={ [1]={ [1]={ limit={ @@ -150256,7 +158152,7 @@ return { [1]="hit_damage_+%_vs_cursed_enemies" } }, - [6780]={ + [7202]={ [1]={ [1]={ limit={ @@ -150285,7 +158181,7 @@ return { [1]="hit_damage_+%_vs_enemies_affected_by_ailments" } }, - [6781]={ + [7203]={ [1]={ [1]={ limit={ @@ -150314,7 +158210,7 @@ return { [1]="hit_damage_+%_vs_unique_enemies" } }, - [6782]={ + [7204]={ [1]={ [1]={ limit={ @@ -150343,7 +158239,7 @@ return { [1]="hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently" } }, - [6783]={ + [7205]={ [1]={ [1]={ limit={ @@ -150372,7 +158268,7 @@ return { [1]="hit_damage_stun_multiplier_+%_per_10_tribute" } }, - [6784]={ + [7206]={ [1]={ [1]={ limit={ @@ -150401,7 +158297,7 @@ return { [1]="hit_damage_stun_multiplier_+%_while_shapeshifted" } }, - [6785]={ + [7207]={ [1]={ [1]={ limit={ @@ -150430,7 +158326,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_at_close_range" } }, - [6786]={ + [7208]={ [1]={ [1]={ limit={ @@ -150455,7 +158351,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_on_low_life" } }, - [6787]={ + [7209]={ [1]={ [1]={ limit={ @@ -150480,7 +158376,7 @@ return { [1]="hit_for_%_max_life_es_on_max_infernal_flame" } }, - [6788]={ + [7210]={ [1]={ [1]={ limit={ @@ -150496,7 +158392,7 @@ return { [1]="hit_for_%_of_infernal_flame_on_max_infernal_flame" } }, - [6789]={ + [7211]={ [1]={ [1]={ limit={ @@ -150512,7 +158408,7 @@ return { [1]="hits_against_you_overwhelm_x%_of_physical_damage_reduction" } }, - [6790]={ + [7212]={ [1]={ [1]={ limit={ @@ -150528,7 +158424,23 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_enemies" } }, - [6791]={ + [7213]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits" + } + }, + stats={ + [1]="hits_cannot_be_evaded_vs_blinded_maimed_bleeding_enemies" + } + }, + [7214]={ [1]={ [1]={ limit={ @@ -150544,7 +158456,7 @@ return { [1]="hits_cannot_be_evaded_vs_heavy_stunned_enemies" } }, - [6792]={ + [7215]={ [1]={ [1]={ limit={ @@ -150560,7 +158472,7 @@ return { [1]="hits_from_maces_and_sceptres_crush_enemies" } }, - [6793]={ + [7216]={ [1]={ [1]={ limit={ @@ -150576,7 +158488,7 @@ return { [1]="hits_ignore_elemental_resistances_vs_frozen_enemies" } }, - [6794]={ + [7217]={ [1]={ [1]={ limit={ @@ -150592,7 +158504,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped" } }, - [6795]={ + [7218]={ [1]={ [1]={ limit={ @@ -150608,7 +158520,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped" } }, - [6796]={ + [7219]={ [1]={ [1]={ limit={ @@ -150624,7 +158536,7 @@ return { [1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited" } }, - [6797]={ + [7220]={ [1]={ [1]={ limit={ @@ -150640,7 +158552,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds" } }, - [6798]={ + [7221]={ [1]={ [1]={ limit={ @@ -150665,7 +158577,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [6799]={ + [7222]={ [1]={ [1]={ limit={ @@ -150681,7 +158593,7 @@ return { [1]="hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%" } }, - [6800]={ + [7223]={ [1]={ [1]={ limit={ @@ -150697,7 +158609,7 @@ return { [1]="hits_treat_enemy_cold_resistance_as_x%" } }, - [6801]={ + [7224]={ [1]={ [1]={ limit={ @@ -150713,7 +158625,7 @@ return { [1]="hits_treat_enemy_fire_resistance_as_x%" } }, - [6802]={ + [7225]={ [1]={ [1]={ limit={ @@ -150729,7 +158641,7 @@ return { [1]="hits_treat_enemy_lightning_resistance_as_x%" } }, - [6803]={ + [7226]={ [1]={ [1]={ limit={ @@ -150745,7 +158657,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [6804]={ + [7227]={ [1]={ [1]={ limit={ @@ -150761,7 +158673,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [6805]={ + [7228]={ [1]={ [1]={ limit={ @@ -150790,7 +158702,7 @@ return { [1]="holy_relic_area_of_effect_+%" } }, - [6806]={ + [7229]={ [1]={ [1]={ limit={ @@ -150806,7 +158718,7 @@ return { [1]="holy_relic_buff_effect_+%" } }, - [6807]={ + [7230]={ [1]={ [1]={ limit={ @@ -150839,7 +158751,7 @@ return { [1]="holy_relic_cooldown_recovery_+%" } }, - [6808]={ + [7231]={ [1]={ [1]={ limit={ @@ -150868,7 +158780,7 @@ return { [1]="holy_relic_damage_+%" } }, - [6809]={ + [7232]={ [1]={ [1]={ limit={ @@ -150897,7 +158809,7 @@ return { [1]="husk_of_dreams_flask_charges_used_-%_final" } }, - [6810]={ + [7233]={ [1]={ [1]={ limit={ @@ -150926,7 +158838,7 @@ return { [1]="hydro_sphere_pulse_frequency_+%" } }, - [6811]={ + [7234]={ [1]={ [1]={ limit={ @@ -150942,7 +158854,7 @@ return { [1]="ice_and_lightning_trap_base_penetrate_elemental_resistances_%" } }, - [6812]={ + [7235]={ [1]={ [1]={ limit={ @@ -150958,7 +158870,7 @@ return { [1]="ice_and_lightning_trap_can_be_triggered_by_warcries" } }, - [6813]={ + [7236]={ [1]={ [1]={ limit={ @@ -150974,7 +158886,7 @@ return { [1]="ice_and_lightning_traps_cannot_be_triggered_by_enemies" } }, - [6814]={ + [7237]={ [1]={ [1]={ limit={ @@ -150990,7 +158902,7 @@ return { [1]="ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen" } }, - [6815]={ + [7238]={ [1]={ [1]={ limit={ @@ -151019,7 +158931,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [6816]={ + [7239]={ [1]={ [1]={ limit={ @@ -151048,7 +158960,36 @@ return { [1]="ice_crystal_maximum_life_+%" } }, - [6817]={ + [7240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Ice Crystals have {0}% increased maximum Life per 5% Cold Resistance you have" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Ice Crystals have {0}% reduced maximum Life per 5% Cold Resistance you have" + } + }, + stats={ + [1]="ice_crystal_maximum_life_+%_per_5%_cold_resistance" + } + }, + [7241]={ [1]={ [1]={ limit={ @@ -151081,7 +159022,7 @@ return { [1]="ice_dash_cooldown_speed_+%" } }, - [6818]={ + [7242]={ [1]={ [1]={ limit={ @@ -151110,7 +159051,7 @@ return { [1]="ice_dash_duration_+%" } }, - [6819]={ + [7243]={ [1]={ [1]={ limit={ @@ -151139,7 +159080,7 @@ return { [1]="ice_dash_travel_distance_+%" } }, - [6820]={ + [7244]={ [1]={ [1]={ limit={ @@ -151155,7 +159096,7 @@ return { [1]="ice_nova_chill_minimum_slow_%" } }, - [6821]={ + [7245]={ [1]={ [1]={ limit={ @@ -151184,7 +159125,7 @@ return { [1]="ice_shot_additional_pierce_per_10_old" } }, - [6822]={ + [7246]={ [1]={ [1]={ limit={ @@ -151213,7 +159154,7 @@ return { [1]="ice_shot_area_angle_+%" } }, - [6823]={ + [7247]={ [1]={ [1]={ limit={ @@ -151238,7 +159179,7 @@ return { [1]="ice_shot_pierce_+" } }, - [6824]={ + [7248]={ [1]={ [1]={ limit={ @@ -151267,7 +159208,7 @@ return { [1]="ice_siphon_trap_chill_effect_+%" } }, - [6825]={ + [7249]={ [1]={ [1]={ limit={ @@ -151296,7 +159237,7 @@ return { [1]="ice_siphon_trap_damage_+%" } }, - [6826]={ + [7250]={ [1]={ [1]={ limit={ @@ -151329,7 +159270,7 @@ return { [1]="ice_siphon_trap_damage_taken_+%_per_beam" } }, - [6827]={ + [7251]={ [1]={ [1]={ limit={ @@ -151358,7 +159299,7 @@ return { [1]="ice_siphon_trap_duration_+%" } }, - [6828]={ + [7252]={ [1]={ [1]={ limit={ @@ -151374,7 +159315,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_nova" } }, - [6829]={ + [7253]={ [1]={ [1]={ limit={ @@ -151390,7 +159331,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_return" } }, - [6830]={ + [7254]={ [1]={ [1]={ limit={ @@ -151423,7 +159364,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [6831]={ + [7255]={ [1]={ [1]={ limit={ @@ -151448,7 +159389,7 @@ return { [1]="ice_spear_number_of_additional_projectiles" } }, - [6832]={ + [7256]={ [1]={ [1]={ limit={ @@ -151464,7 +159405,7 @@ return { [1]="ice_trap_cold_resistance_penetration_%" } }, - [6833]={ + [7257]={ [1]={ [1]={ limit={ @@ -151493,7 +159434,7 @@ return { [1]="skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem" } }, - [6834]={ + [7258]={ [1]={ [1]={ limit={ @@ -151522,7 +159463,7 @@ return { [1]="skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem" } }, - [6835]={ + [7259]={ [1]={ [1]={ limit={ @@ -151551,7 +159492,7 @@ return { [1]="skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem" } }, - [6836]={ + [7260]={ [1]={ [1]={ limit={ @@ -151567,7 +159508,7 @@ return { [1]="ignite_as_though_dealing_X_damage_in_your_presence" } }, - [6837]={ + [7261]={ [1]={ [1]={ limit={ @@ -151596,7 +159537,7 @@ return { [1]="ignite_effect_on_self_+%_while_shapeshifted" } }, - [6838]={ + [7262]={ [1]={ [1]={ limit={ @@ -151629,7 +159570,7 @@ return { [1]="ignite_effect_on_self_+%" } }, - [6839]={ + [7263]={ [1]={ [1]={ limit={ @@ -151658,7 +159599,7 @@ return { [1]="ignite_effect_+%_against_frozen_enemies" } }, - [6840]={ + [7264]={ [1]={ [1]={ limit={ @@ -151687,7 +159628,23 @@ return { [1]="ignite_effect_+%_if_consumed_endurance_charge_recently" } }, - [6841]={ + [7265]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSEDCreate Ignited Ground as though dealing {0} damage when you use a Wind Skill" + } + }, + stats={ + [1]="ignite_ground_as_though_dealing_X_damage_on_using_a_wind_skill" + } + }, + [7266]={ [1]={ [1]={ limit={ @@ -151716,7 +159673,7 @@ return { [1]="ignite_magnitude_+%_against_poisoned_enemies" } }, - [6842]={ + [7267]={ [1]={ [1]={ limit={ @@ -151745,7 +159702,7 @@ return { [1]="ignite_shock_chill_duration_+%" } }, - [6843]={ + [7268]={ [1]={ [1]={ limit={ @@ -151761,7 +159718,7 @@ return { [1]="ignites_and_chill_apply_elemental_resistance_+" } }, - [6844]={ + [7269]={ [1]={ [1]={ limit={ @@ -151777,7 +159734,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [6845]={ + [7270]={ [1]={ [1]={ limit={ @@ -151793,7 +159750,23 @@ return { [1]="ignore_armour_movement_penalties_if_you_have_at_least_100_tribute" } }, - [6846]={ + [7271]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignore Attribute Requirements to equip Gloves" + } + }, + stats={ + [1]="ignore_attribute_requirements_for_gloves" + } + }, + [7272]={ [1]={ [1]={ limit={ @@ -151809,7 +159782,7 @@ return { [1]="ignore_strength_requirements_of_melee_weapons_and_skills" } }, - [6847]={ + [7273]={ [1]={ [1]={ limit={ @@ -151825,7 +159798,7 @@ return { [1]="ignores_enemy_cold_resistance" } }, - [6848]={ + [7274]={ [1]={ [1]={ limit={ @@ -151841,7 +159814,7 @@ return { [1]="ignores_enemy_fire_resistance" } }, - [6849]={ + [7275]={ [1]={ [1]={ limit={ @@ -151857,7 +159830,7 @@ return { [1]="ignores_enemy_lightning_resistance" } }, - [6850]={ + [7276]={ [1]={ [1]={ limit={ @@ -151882,7 +159855,7 @@ return { [1]="imbue_weapon_max_exerts" } }, - [6851]={ + [7277]={ [1]={ [1]={ limit={ @@ -151911,7 +159884,7 @@ return { [1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge" } }, - [6852]={ + [7278]={ [1]={ [1]={ [1]={ @@ -151944,7 +159917,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [6853]={ + [7279]={ [1]={ [1]={ limit={ @@ -151960,7 +159933,39 @@ return { [1]="immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion" } }, - [6854]={ + [7280]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Bleeding while affected by an Archon Buff" + } + }, + stats={ + [1]="immune_to_bleeding_while_archon" + } + }, + [7281]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Bleeding while Shapeshifted" + } + }, + stats={ + [1]="immune_to_bleeding_while_shapeshifted" + } + }, + [7282]={ [1]={ [1]={ limit={ @@ -151976,7 +159981,7 @@ return { [1]="immune_to_burning_shocks_and_chilled_ground" } }, - [6855]={ + [7283]={ [1]={ [1]={ limit={ @@ -151992,7 +159997,7 @@ return { [1]="immune_to_chill_if_majority_blue_supports_socketed" } }, - [6856]={ + [7284]={ [1]={ [1]={ limit={ @@ -152008,7 +160013,7 @@ return { [1]="immune_to_corrupted_blood" } }, - [6857]={ + [7285]={ [1]={ [1]={ limit={ @@ -152024,7 +160029,7 @@ return { [1]="immune_to_curses_if_cast_dispair_in_past_10_seconds" } }, - [6858]={ + [7286]={ [1]={ [1]={ limit={ @@ -152040,7 +160045,7 @@ return { [1]="immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse" } }, - [6859]={ + [7287]={ [1]={ [1]={ limit={ @@ -152056,7 +160061,7 @@ return { [1]="immune_to_curses_while_at_least_X_rage" } }, - [6860]={ + [7288]={ [1]={ [1]={ limit={ @@ -152072,7 +160077,7 @@ return { [1]="immune_to_curses_while_channelling" } }, - [6861]={ + [7289]={ [1]={ [1]={ limit={ @@ -152088,7 +160093,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground" } }, - [6862]={ + [7290]={ [1]={ [1]={ limit={ @@ -152104,7 +160109,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold" } }, - [6863]={ + [7291]={ [1]={ [1]={ limit={ @@ -152120,7 +160125,7 @@ return { [1]="immune_to_elemental_ailments_while_you_have_arcane_surge" } }, - [6864]={ + [7292]={ [1]={ [1]={ limit={ @@ -152136,7 +160141,7 @@ return { [1]="immune_to_exposure" } }, - [6865]={ + [7293]={ [1]={ [1]={ limit={ @@ -152152,7 +160157,7 @@ return { [1]="immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6866]={ + [7294]={ [1]={ [1]={ limit={ @@ -152168,7 +160173,7 @@ return { [1]="immune_to_freeze_and_chill_while_ignited" } }, - [6867]={ + [7295]={ [1]={ [1]={ limit={ @@ -152184,7 +160189,7 @@ return { [1]="immune_to_freeze_chill_while_archon" } }, - [6868]={ + [7296]={ [1]={ [1]={ limit={ @@ -152200,7 +160205,7 @@ return { [1]="immune_to_freeze_while_affected_by_purity_of_ice" } }, - [6869]={ + [7297]={ [1]={ [1]={ limit={ @@ -152216,7 +160221,7 @@ return { [1]="immune_to_hinder" } }, - [6870]={ + [7298]={ [1]={ [1]={ limit={ @@ -152232,7 +160237,7 @@ return { [1]="immune_to_ignite_and_shock" } }, - [6871]={ + [7299]={ [1]={ [1]={ limit={ @@ -152248,7 +160253,7 @@ return { [1]="immune_to_ignite_if_majority_red_supports_socketed" } }, - [6872]={ + [7300]={ [1]={ [1]={ limit={ @@ -152264,7 +160269,7 @@ return { [1]="immune_to_ignite_while_affected_by_purity_of_fire" } }, - [6873]={ + [7301]={ [1]={ [1]={ limit={ @@ -152280,7 +160285,7 @@ return { [1]="immune_to_ignite_while_archon" } }, - [6874]={ + [7302]={ [1]={ [1]={ limit={ @@ -152296,7 +160301,23 @@ return { [1]="immune_to_maim" } }, - [6875]={ + [7303]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Maim while Shapeshifted" + } + }, + stats={ + [1]="immune_to_maim_while_shapeshifted" + } + }, + [7304]={ [1]={ [1]={ limit={ @@ -152312,7 +160333,7 @@ return { [1]="immune_to_poison_if_helmet_grants_higher_evasion_than_armour" } }, - [6876]={ + [7305]={ [1]={ [1]={ limit={ @@ -152328,7 +160349,7 @@ return { [1]="immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds" } }, - [6877]={ + [7306]={ [1]={ [1]={ limit={ @@ -152344,7 +160365,7 @@ return { [1]="immune_to_shock_if_majority_green_supports_socketed" } }, - [6878]={ + [7307]={ [1]={ [1]={ limit={ @@ -152360,7 +160381,7 @@ return { [1]="immune_to_shock_while_affected_by_purity_of_lightning" } }, - [6879]={ + [7308]={ [1]={ [1]={ limit={ @@ -152376,7 +160397,7 @@ return { [1]="immune_to_shock_while_archon" } }, - [6880]={ + [7309]={ [1]={ [1]={ limit={ @@ -152392,7 +160413,7 @@ return { [1]="immune_to_status_ailments_while_focused" } }, - [6881]={ + [7310]={ [1]={ [1]={ limit={ @@ -152408,7 +160429,7 @@ return { [1]="immune_to_thorns_damage" } }, - [6882]={ + [7311]={ [1]={ [1]={ limit={ @@ -152424,7 +160445,7 @@ return { [1]="immune_to_wither" } }, - [6883]={ + [7312]={ [1]={ [1]={ limit={ @@ -152440,7 +160461,7 @@ return { [1]="impacting_steel_%_chance_to_not_consume_ammo" } }, - [6884]={ + [7313]={ [1]={ [1]={ limit={ @@ -152469,7 +160490,7 @@ return { [1]="impale_inflicted_by_two_handed_weapons_magnitude_+%" } }, - [6885]={ + [7314]={ [1]={ [1]={ limit={ @@ -152498,7 +160519,7 @@ return { [1]="impale_magnitude_+%" } }, - [6886]={ + [7315]={ [1]={ [1]={ limit={ @@ -152527,7 +160548,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies" } }, - [6887]={ + [7316]={ [1]={ [1]={ limit={ @@ -152556,7 +160577,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies" } }, - [6888]={ + [7317]={ [1]={ [1]={ limit={ @@ -152581,7 +160602,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [6889]={ + [7318]={ [1]={ [1]={ limit={ @@ -152597,7 +160618,7 @@ return { [1]="impale_on_hit_%_chance_with_axes_swords" } }, - [6890]={ + [7319]={ [1]={ [1]={ limit={ @@ -152613,7 +160634,7 @@ return { [1]="impending_doom_base_added_chaos_damage_%_of_current_mana" } }, - [6891]={ + [7320]={ [1]={ [1]={ limit={ @@ -152642,7 +160663,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [6892]={ + [7321]={ [1]={ [1]={ limit={ @@ -152671,7 +160692,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [6893]={ + [7322]={ [1]={ [1]={ limit={ @@ -152700,7 +160721,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [6894]={ + [7323]={ [1]={ [1]={ limit={ @@ -152716,7 +160737,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [6895]={ + [7324]={ [1]={ [1]={ limit={ @@ -152745,7 +160766,7 @@ return { [1]="incision_effect_+%" } }, - [6896]={ + [7325]={ [1]={ [1]={ limit={ @@ -152761,7 +160782,7 @@ return { [1]="incision_you_inflict_applies_%_increased_physical_damage_taken" } }, - [6897]={ + [7326]={ [1]={ [1]={ limit={ @@ -152777,7 +160798,7 @@ return { [1]="increase_crit_chance_by_lowest_of_str_or_int" } }, - [6898]={ + [7327]={ [1]={ [1]={ limit={ @@ -152793,7 +160814,7 @@ return { [1]="increases_and_reductions_to_move_speed_apply_to_es_recharge_rate" } }, - [6899]={ + [7328]={ [1]={ [1]={ limit={ @@ -152818,7 +160839,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [6900]={ + [7329]={ [1]={ [1]={ limit={ @@ -152834,7 +160855,7 @@ return { [1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [6901]={ + [7330]={ [1]={ [1]={ limit={ @@ -152850,7 +160871,7 @@ return { [1]="infernal_cry_area_of_effect_+%" } }, - [6902]={ + [7331]={ [1]={ [1]={ limit={ @@ -152866,7 +160887,7 @@ return { [1]="infernal_cry_cooldown_speed_+%" } }, - [6903]={ + [7332]={ [1]={ }, stats={ @@ -152874,7 +160895,7 @@ return { [2]="infernal_familiar_total_burn_radius" } }, - [6904]={ + [7333]={ [1]={ [1]={ limit={ @@ -152890,7 +160911,7 @@ return { [1]="infernal_familiar_nearby_enemies_fire_damage_taken_+%" } }, - [6905]={ + [7334]={ [1]={ [1]={ [1]={ @@ -152910,7 +160931,7 @@ return { [1]="infernal_familiar_revive_if_killed_by_enemies_ms" } }, - [6906]={ + [7335]={ [1]={ [1]={ limit={ @@ -152926,7 +160947,7 @@ return { [1]="infernalist_burn_life_and_es_%_per_second_if_crit_recently" } }, - [6907]={ + [7336]={ [1]={ [1]={ limit={ @@ -152951,7 +160972,7 @@ return { [1]="infernalist_critical_strike_chance_+%_final" } }, - [6908]={ + [7337]={ [1]={ [1]={ limit={ @@ -152980,7 +161001,7 @@ return { [1]="infernalist_critical_strike_multiplier_+%_final" } }, - [6909]={ + [7338]={ [1]={ [1]={ limit={ @@ -152996,7 +161017,7 @@ return { [1]="infinite_active_block_distance" } }, - [6910]={ + [7339]={ [1]={ [1]={ limit={ @@ -153012,7 +161033,23 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [6911]={ + [7340]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised" + } + }, + stats={ + [1]="inflict_blind_on_enemies_within_x_meters_while_shield_is_raised" + } + }, + [7341]={ [1]={ [1]={ limit={ @@ -153028,7 +161065,7 @@ return { [1]="inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds" } }, - [6912]={ + [7342]={ [1]={ [1]={ limit={ @@ -153053,7 +161090,7 @@ return { [1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6913]={ + [7343]={ [1]={ [1]={ limit={ @@ -153069,7 +161106,7 @@ return { [1]="inflict_cold_exposure_on_ignite" } }, - [6914]={ + [7344]={ [1]={ [1]={ limit={ @@ -153085,7 +161122,7 @@ return { [1]="inflict_fire_exposure_if_cast_flammability_in_past_10_seconds" } }, - [6915]={ + [7345]={ [1]={ [1]={ limit={ @@ -153110,7 +161147,7 @@ return { [1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6916]={ + [7346]={ [1]={ [1]={ limit={ @@ -153126,7 +161163,7 @@ return { [1]="inflict_fire_exposure_on_hits_that_heavy_stun" } }, - [6917]={ + [7347]={ [1]={ [1]={ limit={ @@ -153142,7 +161179,7 @@ return { [1]="inflict_fire_exposure_on_shock" } }, - [6918]={ + [7348]={ [1]={ [1]={ limit={ @@ -153158,7 +161195,7 @@ return { [1]="inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds" } }, - [6919]={ + [7349]={ [1]={ [1]={ limit={ @@ -153174,7 +161211,7 @@ return { [1]="inflict_lightning_exposure_on_crit" } }, - [6920]={ + [7350]={ [1]={ [1]={ limit={ @@ -153190,7 +161227,7 @@ return { [1]="inflict_lightning_exposure_on_electrocute_for_x_seconds" } }, - [6921]={ + [7351]={ [1]={ [1]={ limit={ @@ -153215,7 +161252,7 @@ return { [1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6922]={ + [7352]={ [1]={ [1]={ limit={ @@ -153231,7 +161268,7 @@ return { [1]="inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds" } }, - [6923]={ + [7353]={ [1]={ [1]={ limit={ @@ -153256,7 +161293,7 @@ return { [1]="inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence" } }, - [6924]={ + [7354]={ [1]={ [1]={ limit={ @@ -153281,7 +161318,7 @@ return { [1]="inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%" } }, - [6925]={ + [7355]={ [1]={ [1]={ limit={ @@ -153306,7 +161343,7 @@ return { [1]="inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%" } }, - [6926]={ + [7356]={ [1]={ [1]={ limit={ @@ -153331,7 +161368,7 @@ return { [1]="inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%" } }, - [6927]={ + [7357]={ [1]={ [1]={ limit={ @@ -153356,7 +161393,7 @@ return { [1]="inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%" } }, - [6928]={ + [7358]={ [1]={ [1]={ limit={ @@ -153381,7 +161418,7 @@ return { [1]="inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%" } }, - [6929]={ + [7359]={ [1]={ [1]={ limit={ @@ -153410,7 +161447,7 @@ return { [1]="infusion_blast_area_of_effect_+%" } }, - [6930]={ + [7360]={ [1]={ [1]={ limit={ @@ -153439,7 +161476,7 @@ return { [1]="infusion_blast_damage_+%" } }, - [6931]={ + [7361]={ [1]={ [1]={ limit={ @@ -153468,7 +161505,7 @@ return { [1]="infusion_duration_+%" } }, - [6932]={ + [7362]={ [1]={ [1]={ limit={ @@ -153497,7 +161534,7 @@ return { [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" } }, - [6933]={ + [7363]={ [1]={ [1]={ limit={ @@ -153526,7 +161563,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [6934]={ + [7364]={ [1]={ [1]={ limit={ @@ -153551,7 +161588,7 @@ return { [1]="instability_on_critical_%_chance" } }, - [6935]={ + [7365]={ [1]={ [1]={ limit={ @@ -153576,7 +161613,7 @@ return { [1]="instilling_%_chance_to_gain_additional_instilling_stack" } }, - [6936]={ + [7366]={ [1]={ [1]={ limit={ @@ -153592,7 +161629,36 @@ return { [1]="intelligence_is_0" } }, - [6937]={ + [7367]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spells lose Intensity with {0}% increased frequency while moving" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spells lose Intensity with {0}% reduced frequency while moving" + } + }, + stats={ + [1]="intensity_loss_frequency_while_moving_+%" + } + }, + [7368]={ [1]={ [1]={ limit={ @@ -153601,43 +161667,142 @@ return { [2]="#" } }, - text="{0:+d} to Level of all Skills with an Intelligence requirement" + text="DNT-UNUSED Gain {0}% of damage as Lightning Damage for each stack of Cleansed Form you currently have" } }, stats={ - [1]="intelligence_skill_gem_level_+" + [1]="internecine_draw_%_damage_gained_as_lightning_per_cleansed_form" } }, - [6938]={ + [7369]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Spells lose Intensity with {0}% increased frequency while moving" - }, - [2]={ - [1]={ - k="negate", - v=1 + text="DNT-UNUSED Gain {0}% of damage as Physical Damage for each stack of Corrupted Form you currently have" + } + }, + stats={ + [1]="internecine_draw_%_damage_gained_as_physical_per_corrupted_form" + } + }, + [7370]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Always Inflict Bleeding on Hit at Maximum Corrupted Form" + } + }, + stats={ + [1]="internecine_draw_always_bleed_at_maximum_corrupted_form" + } + }, + [7371]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } }, + text="DNT-UNUSED Always Inflict Shock on Hit at Maximum Cleansed Form" + } + }, + stats={ + [1]="internecine_draw_always_shock_at_maximum_cleansed_form" + } + }, + [7372]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="Spells lose Intensity with {0}% reduced frequency while moving" + text="DNT-UNUSED Gain 1 stack of Cleansed Form on Bow Attack" } }, stats={ - [1]="intensity_loss_frequency_while_moving_+%" + [1]="internecine_draw_gain_cleansing_on_bow_attack" } }, - [6939]={ + [7373]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Gain 1 stack of Corrupted Form on Bow Attack" + } + }, + stats={ + [1]="internecine_draw_gain_corruption_on_bow_attack" + } + }, + [7374]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Take {0} Lightning Damage on Attack per stack of Cleamsed Form in excess of your stacks of Corrupted Form" + } + }, + stats={ + [1]="internecine_draw_lightning_damage_taken_on_attack_per_cleansed_form_above_corrupted_form" + } + }, + [7375]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Maximum {0} stacks of Cleansed and Corrupted Forms" + } + }, + stats={ + [1]="internecine_draw_maximum_stacks" + } + }, + [7376]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSED Take {0} Physical Damage on Attack per stack of Corrupted Form in excess of your stacks of Cleansed Form" + } + }, + stats={ + [1]="internecine_draw_physical_damage_taken_on_attack_per_corrupted_form_above_cleansed_form" + } + }, + [7377]={ [1]={ [1]={ limit={ @@ -153653,7 +161818,7 @@ return { [1]="intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield" } }, - [6940]={ + [7378]={ [1]={ [1]={ limit={ @@ -153669,7 +161834,7 @@ return { [1]="intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds" } }, - [6941]={ + [7379]={ [1]={ [1]={ [1]={ @@ -153702,7 +161867,7 @@ return { [1]="intimidate_enemy_on_block_for_duration_ms" } }, - [6942]={ + [7380]={ [1]={ [1]={ [1]={ @@ -153722,7 +161887,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [6943]={ + [7381]={ [1]={ [1]={ limit={ @@ -153747,7 +161912,7 @@ return { [1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%" } }, - [6944]={ + [7382]={ [1]={ [1]={ limit={ @@ -153763,7 +161928,7 @@ return { [1]="intimidating_cry_area_of_effect_+%" } }, - [6945]={ + [7383]={ [1]={ [1]={ limit={ @@ -153779,7 +161944,7 @@ return { [1]="intimidating_cry_cooldown_speed_+%" } }, - [6946]={ + [7384]={ [1]={ [1]={ limit={ @@ -153808,7 +161973,7 @@ return { [1]="intuitive_link_duration_+%" } }, - [6947]={ + [7385]={ [1]={ [1]={ limit={ @@ -153837,7 +162002,7 @@ return { [1]="invocation_skill_maximum_energy_+%" } }, - [6948]={ + [7386]={ [1]={ [1]={ limit={ @@ -153853,7 +162018,7 @@ return { [1]="invocation_spell_chance_to_cost_half_energy_%" } }, - [6949]={ + [7387]={ [1]={ [1]={ limit={ @@ -153882,7 +162047,7 @@ return { [1]="invocation_spell_critical_strike_chance_+%" } }, - [6950]={ + [7388]={ [1]={ [1]={ limit={ @@ -153911,7 +162076,7 @@ return { [1]="invocation_spell_critical_strike_multiplier_+" } }, - [6951]={ + [7389]={ [1]={ [1]={ limit={ @@ -153940,7 +162105,7 @@ return { [1]="invocation_spell_damage_+%" } }, - [6952]={ + [7390]={ [1]={ [1]={ limit={ @@ -153965,7 +162130,23 @@ return { [1]="is_blighted_map" } }, - [6953]={ + [7391]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Catalysts can be applied to this item" + } + }, + stats={ + [1]="item_can_have_catalyst_quality_in_addition_to_base_quality" + } + }, + [7392]={ [1]={ [1]={ limit={ @@ -153994,7 +162175,7 @@ return { [1]="item_found_quantity_+%_per_chest_opened_recently" } }, - [6954]={ + [7393]={ [1]={ [1]={ limit={ @@ -154010,7 +162191,7 @@ return { [1]="item_found_rarity_+1%_per_X_rampage_stacks" } }, - [6955]={ + [7394]={ [1]={ [1]={ limit={ @@ -154039,7 +162220,7 @@ return { [1]="jagged_ground_duration_+%" } }, - [6956]={ + [7395]={ [1]={ [1]={ limit={ @@ -154068,7 +162249,7 @@ return { [1]="jagged_ground_effect_+%" } }, - [6957]={ + [7396]={ [1]={ [1]={ limit={ @@ -154097,7 +162278,7 @@ return { [1]="jagged_ground_enemy_damage_taken_+%" } }, - [6958]={ + [7397]={ [1]={ [1]={ [1]={ @@ -154117,7 +162298,7 @@ return { [1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms" } }, - [6959]={ + [7398]={ [1]={ [1]={ limit={ @@ -154133,7 +162314,7 @@ return { [1]="keystone_shepherd_of_souls" } }, - [6960]={ + [7399]={ [1]={ [1]={ limit={ @@ -154158,7 +162339,7 @@ return { [1]="killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance" } }, - [6961]={ + [7400]={ [1]={ [1]={ limit={ @@ -154183,7 +162364,7 @@ return { [1]="kills_count_twice_for_rampage_%" } }, - [6962]={ + [7401]={ [1]={ [1]={ limit={ @@ -154199,7 +162380,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [6963]={ + [7402]={ [1]={ [1]={ limit={ @@ -154228,7 +162409,7 @@ return { [1]="kinetic_bolt_attack_speed_+%" } }, - [6964]={ + [7403]={ [1]={ [1]={ limit={ @@ -154257,7 +162438,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%" } }, - [6965]={ + [7404]={ [1]={ [1]={ limit={ @@ -154273,7 +162454,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%" } }, - [6966]={ + [7405]={ [1]={ [1]={ limit={ @@ -154302,7 +162483,7 @@ return { [1]="kinetic_bolt_projectile_speed_+%" } }, - [6967]={ + [7406]={ [1]={ [1]={ limit={ @@ -154327,7 +162508,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [6968]={ + [7407]={ [1]={ [1]={ limit={ @@ -154343,7 +162524,7 @@ return { [1]="knockback_chance_%_against_bleeding_enemies_with_hits" } }, - [6969]={ + [7408]={ [1]={ [1]={ limit={ @@ -154359,7 +162540,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [6970]={ + [7409]={ [1]={ [1]={ limit={ @@ -154388,7 +162569,7 @@ return { [1]="knockback_distance_+%_final_vs_unique_enemies" } }, - [6971]={ + [7410]={ [1]={ [1]={ limit={ @@ -154404,7 +162585,7 @@ return { [1]="knockback_on_crit_with_projectile_damage" } }, - [6972]={ + [7411]={ [1]={ [1]={ limit={ @@ -154429,7 +162610,7 @@ return { [1]="labyrinth_darkshrine_additional_divine_font_use_display" } }, - [6973]={ + [7412]={ [1]={ [1]={ limit={ @@ -154445,7 +162626,7 @@ return { [1]="labyrinth_darkshrine_boss_room_traps_are_disabled" } }, - [6974]={ + [7413]={ [1]={ [1]={ limit={ @@ -154470,7 +162651,7 @@ return { [1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x" } }, - [6975]={ + [7414]={ [1]={ [1]={ limit={ @@ -154495,7 +162676,7 @@ return { [1]="labyrinth_darkshrine_izaro_dropped_unique_items_+" } }, - [6976]={ + [7415]={ [1]={ [1]={ limit={ @@ -154520,7 +162701,7 @@ return { [1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys" } }, - [6977]={ + [7416]={ [1]={ [1]={ limit={ @@ -154549,7 +162730,7 @@ return { [1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%" } }, - [6978]={ + [7417]={ [1]={ [1]={ limit={ @@ -154709,7 +162890,7 @@ return { [1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth" } }, - [6979]={ + [7418]={ [1]={ [1]={ limit={ @@ -154734,7 +162915,7 @@ return { [1]="labyrinth_owner_x_addition_enchants" } }, - [6980]={ + [7419]={ [1]={ [1]={ limit={ @@ -154763,7 +162944,7 @@ return { [1]="lancing_steel_damage_+%" } }, - [6981]={ + [7420]={ [1]={ [1]={ limit={ @@ -154788,7 +162969,7 @@ return { [1]="lancing_steel_impale_chance_%" } }, - [6982]={ + [7421]={ [1]={ [1]={ limit={ @@ -154813,7 +162994,7 @@ return { [1]="lancing_steel_number_of_additional_projectiles" } }, - [6983]={ + [7422]={ [1]={ [1]={ limit={ @@ -154829,7 +163010,7 @@ return { [1]="lancing_steel_%_chance_to_not_consume_ammo" } }, - [6984]={ + [7423]={ [1]={ [1]={ limit={ @@ -154854,7 +163035,7 @@ return { [1]="lancing_steel_primary_proj_pierce_num" } }, - [6985]={ + [7424]={ [1]={ [1]={ [1]={ @@ -154887,7 +163068,7 @@ return { [1]="last_tremor_duration_ms" } }, - [6986]={ + [7425]={ [1]={ [1]={ limit={ @@ -154903,7 +163084,7 @@ return { [1]="leech_%_is_instant" } }, - [6987]={ + [7426]={ [1]={ [1]={ limit={ @@ -154932,7 +163113,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%" } }, - [6988]={ + [7427]={ [1]={ [1]={ limit={ @@ -154961,7 +163142,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently" } }, - [6989]={ + [7428]={ [1]={ [1]={ limit={ @@ -154990,7 +163171,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%" } }, - [6990]={ + [7429]={ [1]={ [1]={ limit={ @@ -155019,7 +163200,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_power_charge" } }, - [6991]={ + [7430]={ [1]={ [1]={ limit={ @@ -155048,7 +163229,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence" } }, - [6992]={ + [7431]={ [1]={ [1]={ limit={ @@ -155064,7 +163245,7 @@ return { [1]="life_and_mana_flasks_can_be_equipped_in_either_slot" } }, - [6993]={ + [7432]={ [1]={ [1]={ limit={ @@ -155080,7 +163261,7 @@ return { [1]="life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped" } }, - [6994]={ + [7433]={ [1]={ [1]={ limit={ @@ -155109,7 +163290,7 @@ return { [1]="life_flask_charges_gained_+%" } }, - [6995]={ + [7434]={ [1]={ [1]={ limit={ @@ -155134,7 +163315,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds" } }, - [6996]={ + [7435]={ [1]={ [1]={ limit={ @@ -155150,7 +163331,7 @@ return { [1]="life_flask_effects_are_not_removed_at_full_life" } }, - [6997]={ + [7436]={ [1]={ [1]={ limit={ @@ -155166,7 +163347,7 @@ return { [1]="life_flask_recovery_can_overcap_life" } }, - [6998]={ + [7437]={ [1]={ [1]={ limit={ @@ -155182,7 +163363,7 @@ return { [1]="life_flask_recovery_is_instant" } }, - [6999]={ + [7438]={ [1]={ [1]={ limit={ @@ -155198,7 +163379,7 @@ return { [1]="life_flask_recovery_is_instant_while_on_low_life" } }, - [7000]={ + [7439]={ [1]={ [1]={ limit={ @@ -155207,14 +163388,14 @@ return { [2]="#" } }, - text="Life Flasks do not Recover Life" + text="Flasks do not Recover Life" } }, stats={ [1]="life_flasks_do_not_recover_life" } }, - [7001]={ + [7440]={ [1]={ [1]={ limit={ @@ -155230,7 +163411,7 @@ return { [1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently" } }, - [7002]={ + [7441]={ [1]={ [1]={ limit={ @@ -155246,7 +163427,7 @@ return { [1]="life_flasks_gain_a_charge_on_hit_once_per_second" } }, - [7003]={ + [7442]={ [1]={ [1]={ limit={ @@ -155271,7 +163452,7 @@ return { [1]="life_flasks_gain_x_charges_when_you_hit_your_marked_enemy" } }, - [7004]={ + [7443]={ [1]={ [1]={ limit={ @@ -155300,7 +163481,7 @@ return { [1]="life_gain_per_target_hit_while_affected_by_vitality" } }, - [7005]={ + [7444]={ [1]={ [1]={ limit={ @@ -155329,7 +163510,36 @@ return { [1]="life_gain_per_target_if_have_used_a_vaal_skill_recently" } }, - [7006]={ + [7445]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0} Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0} Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" + } + }, + stats={ + [1]="life_gained_on_attack_hit_if_crit_recently" + } + }, + [7446]={ [1]={ [1]={ limit={ @@ -155358,7 +163568,7 @@ return { [1]="life_gained_on_attack_hit_vs_cursed_enemies" } }, - [7007]={ + [7447]={ [1]={ [1]={ limit={ @@ -155374,7 +163584,7 @@ return { [1]="life_gained_on_cull" } }, - [7008]={ + [7448]={ [1]={ [1]={ limit={ @@ -155390,7 +163600,7 @@ return { [1]="life_gained_on_kill_per_wither_stack_on_slain_enemy_%" } }, - [7009]={ + [7449]={ [1]={ [1]={ limit={ @@ -155406,7 +163616,7 @@ return { [1]="life_leech_%_is_instant_if_you_have_at_least_200_tribute" } }, - [7010]={ + [7450]={ [1]={ [1]={ limit={ @@ -155422,7 +163632,23 @@ return { [1]="life_leech_also_recovers_based_on_elemental_damage_types" } }, - [7011]={ + [7451]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life Leech recovers based on your Lightning damage as well as Physical damage" + } + }, + stats={ + [1]="life_leech_also_recovers_based_on_lightning_damage" + } + }, + [7452]={ [1]={ [1]={ limit={ @@ -155451,7 +163677,7 @@ return { [1]="life_leech_amount_+%_if_consumed_frenzy_charge_recently" } }, - [7012]={ + [7453]={ [1]={ [1]={ limit={ @@ -155480,7 +163706,7 @@ return { [1]="life_leech_amount_+%_while_shapeshifted" } }, - [7013]={ + [7454]={ [1]={ [1]={ limit={ @@ -155496,7 +163722,7 @@ return { [1]="life_leech_can_overcap_life" } }, - [7014]={ + [7455]={ [1]={ [1]={ limit={ @@ -155512,7 +163738,7 @@ return { [1]="life_leech_excess_goes_to_energy_shield" } }, - [7015]={ + [7456]={ [1]={ [1]={ [1]={ @@ -155532,7 +163758,7 @@ return { [1]="life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute" } }, - [7016]={ + [7457]={ [1]={ [1]={ limit={ @@ -155548,7 +163774,7 @@ return { [1]="life_leech_is_instant_for_empowered_attacks" } }, - [7017]={ + [7458]={ [1]={ [1]={ limit={ @@ -155564,7 +163790,7 @@ return { [1]="life_leech_%_is_instant_per_defiance" } }, - [7018]={ + [7459]={ [1]={ [1]={ limit={ @@ -155580,7 +163806,7 @@ return { [1]="life_leech_%_maximum_life_on_spell_cast" } }, - [7019]={ + [7460]={ [1]={ [1]={ limit={ @@ -155609,7 +163835,7 @@ return { [1]="life_leech_rate_+%_if_you_have_at_least_100_tribute" } }, - [7020]={ + [7461]={ [1]={ [1]={ limit={ @@ -155625,7 +163851,7 @@ return { [1]="life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage" } }, - [7021]={ + [7462]={ [1]={ [1]={ limit={ @@ -155641,7 +163867,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence" } }, - [7022]={ + [7463]={ [1]={ [1]={ limit={ @@ -155657,7 +163883,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_companions" } }, - [7023]={ + [7464]={ [1]={ [1]={ [1]={ @@ -155677,7 +163903,7 @@ return { [1]="life_loss_%_per_minute_while_sprinting" } }, - [7024]={ + [7465]={ [1]={ [1]={ [1]={ @@ -155697,7 +163923,7 @@ return { [1]="life_loss_%_per_minute_if_have_been_hit_recently" } }, - [7025]={ + [7466]={ [1]={ [1]={ [1]={ @@ -155717,7 +163943,7 @@ return { [1]="life_lost_%_per_minute_nonlethal" } }, - [7026]={ + [7467]={ [1]={ [1]={ limit={ @@ -155746,7 +163972,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_endurance_charge" } }, - [7027]={ + [7468]={ [1]={ [1]={ limit={ @@ -155762,7 +163988,7 @@ return { [1]="life_mana_flasks_restore_mana_life" } }, - [7028]={ + [7469]={ [1]={ [1]={ limit={ @@ -155778,7 +164004,7 @@ return { [1]="life_mastery_count_maximum_life_+%_final" } }, - [7029]={ + [7470]={ [1]={ [1]={ limit={ @@ -155794,7 +164020,7 @@ return { [1]="life_per_level" } }, - [7030]={ + [7471]={ [1]={ [1]={ limit={ @@ -155810,7 +164036,7 @@ return { [1]="life_recoup_also_applies_to_energy_shield" } }, - [7031]={ + [7472]={ [1]={ [1]={ limit={ @@ -155826,7 +164052,7 @@ return { [1]="life_recoup_applies_to_energy_shield_instead" } }, - [7032]={ + [7473]={ [1]={ [1]={ limit={ @@ -155842,7 +164068,23 @@ return { [1]="life_recovery_from_flasks_also_recovers_energy_shield" } }, - [7033]={ + [7474]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% Life Recovery from Flasks also applies to Runic Ward" + } + }, + stats={ + [1]="life_recovery_from_flasks_also_recovers_ward_%" + } + }, + [7475]={ [1]={ [1]={ limit={ @@ -155858,7 +164100,7 @@ return { [1]="life_recovery_from_flasks_applies_to_companions" } }, - [7034]={ + [7476]={ [1]={ [1]={ limit={ @@ -155874,7 +164116,7 @@ return { [1]="life_recovery_from_flasks_apply_to_minions_in_your_presence" } }, - [7035]={ + [7477]={ [1]={ [1]={ limit={ @@ -155890,7 +164132,7 @@ return { [1]="life_recovery_from_flasks_instead_applies_to_nearby_allies_%" } }, - [7036]={ + [7478]={ [1]={ [1]={ limit={ @@ -155906,7 +164148,7 @@ return { [1]="life_recovery_from_regeneration_is_not_applied" } }, - [7037]={ + [7479]={ [1]={ [1]={ limit={ @@ -155935,7 +164177,7 @@ return { [1]="life_recovery_+%_from_flasks_while_on_low_life" } }, - [7038]={ + [7480]={ [1]={ [1]={ limit={ @@ -155964,7 +164206,7 @@ return { [1]="life_recovery_rate_+%_per_10_tribute" } }, - [7039]={ + [7481]={ [1]={ [1]={ limit={ @@ -155993,7 +164235,7 @@ return { [1]="life_recovery_rate_+%_per_5%_missing_life" } }, - [7040]={ + [7482]={ [1]={ [1]={ limit={ @@ -156022,7 +164264,7 @@ return { [1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7041]={ + [7483]={ [1]={ [1]={ limit={ @@ -156051,7 +164293,7 @@ return { [1]="life_recovery_rate_+%_if_havent_killed_recently" } }, - [7042]={ + [7484]={ [1]={ [1]={ limit={ @@ -156080,7 +164322,7 @@ return { [1]="life_recovery_rate_+%_while_affected_by_vitality" } }, - [7043]={ + [7485]={ [1]={ [1]={ limit={ @@ -156109,7 +164351,7 @@ return { [1]="life_recovery_rate_while_in_presence_of_companion_+%" } }, - [7044]={ + [7486]={ [1]={ [1]={ [1]={ @@ -156129,7 +164371,7 @@ return { [1]="life_regeneration_%_per_minute_if_stunned_an_enemy_recently" } }, - [7045]={ + [7487]={ [1]={ [1]={ [1]={ @@ -156149,7 +164391,7 @@ return { [1]="life_regeneration_per_minute_%_while_ignited" } }, - [7046]={ + [7488]={ [1]={ [1]={ [1]={ @@ -156169,7 +164411,7 @@ return { [1]="life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance" } }, - [7047]={ + [7489]={ [1]={ [1]={ [1]={ @@ -156189,7 +164431,7 @@ return { [1]="life_regeneration_per_minute_per_active_buff" } }, - [7048]={ + [7490]={ [1]={ [1]={ [1]={ @@ -156209,7 +164451,7 @@ return { [1]="life_regeneration_per_minute_per_maximum_energy_shield" } }, - [7049]={ + [7491]={ [1]={ [1]={ [1]={ @@ -156229,7 +164471,7 @@ return { [1]="life_regeneration_per_minute_per_nearby_corpse" } }, - [7050]={ + [7492]={ [1]={ [1]={ [1]={ @@ -156249,7 +164491,7 @@ return { [1]="life_regeneration_per_minute_%_per_ailment_affecting_you" } }, - [7051]={ + [7493]={ [1]={ [1]={ [1]={ @@ -156269,7 +164511,7 @@ return { [1]="life_regeneration_per_minute_%_per_fortification" } }, - [7052]={ + [7494]={ [1]={ [1]={ [1]={ @@ -156289,7 +164531,7 @@ return { [1]="life_regeneration_per_minute_%_while_affected_by_guard_skill" } }, - [7053]={ + [7495]={ [1]={ [1]={ [1]={ @@ -156309,7 +164551,7 @@ return { [1]="life_regeneration_per_minute_%_while_channelling" } }, - [7054]={ + [7496]={ [1]={ [1]={ [1]={ @@ -156329,7 +164571,7 @@ return { [1]="life_regeneration_per_minute_while_affected_by_vitality" } }, - [7055]={ + [7497]={ [1]={ [1]={ [1]={ @@ -156349,7 +164591,7 @@ return { [1]="life_regeneration_per_minute_while_ignited" } }, - [7056]={ + [7498]={ [1]={ [1]={ [1]={ @@ -156369,7 +164611,7 @@ return { [1]="life_regeneration_per_minute_while_moving" } }, - [7057]={ + [7499]={ [1]={ [1]={ [1]={ @@ -156389,7 +164631,7 @@ return { [1]="life_regeneration_per_minute_while_you_have_avians_flight" } }, - [7058]={ + [7500]={ [1]={ [1]={ [1]={ @@ -156409,7 +164651,7 @@ return { [1]="life_regeneration_%_per_minute_if_detonated_mine_recently" } }, - [7059]={ + [7501]={ [1]={ [1]={ [1]={ @@ -156429,7 +164671,7 @@ return { [1]="life_regeneration_%_per_minute_if_player_minion_died_recently" } }, - [7060]={ + [7502]={ [1]={ [1]={ limit={ @@ -156458,7 +164700,7 @@ return { [1]="life_regeneration_rate_+%_while_ignited" } }, - [7061]={ + [7503]={ [1]={ [1]={ limit={ @@ -156487,7 +164729,7 @@ return { [1]="life_regeneration_rate_+%_while_shapeshifted" } }, - [7062]={ + [7504]={ [1]={ [1]={ limit={ @@ -156516,7 +164758,7 @@ return { [1]="life_regeneration_rate_+%_while_surrounded" } }, - [7063]={ + [7505]={ [1]={ [1]={ limit={ @@ -156545,7 +164787,7 @@ return { [1]="life_regeneration_rate_+%_while_using_life_flask" } }, - [7064]={ + [7506]={ [1]={ [1]={ [1]={ @@ -156565,7 +164807,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently" } }, - [7065]={ + [7507]={ [1]={ [1]={ [1]={ @@ -156585,7 +164827,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment" } }, - [7066]={ + [7508]={ [1]={ [1]={ [1]={ @@ -156605,7 +164847,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_vitality" } }, - [7067]={ + [7509]={ [1]={ [1]={ [1]={ @@ -156625,7 +164867,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_surrounded" } }, - [7068]={ + [7510]={ [1]={ [1]={ [1]={ @@ -156638,18 +164880,18 @@ return { [2]="#" } }, - text="Regenerate {0}% of maximum Life per Second if you have Blocked recently" + text="Regenerate {0} Life per second for every 10 Intelligence" } }, stats={ - [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" + [1]="base_life_regeneration_rate_per_minute_per_10_intelligence" } }, - [7069]={ + [7511]={ [1]={ [1]={ [1]={ - k="per_minute_to_per_second_2dp_if_required", + k="per_minute_to_per_second", v=1 }, limit={ @@ -156658,34 +164900,34 @@ return { [2]="#" } }, - text="Regenerate {0}% of maximum Life per second if you've Consumed a corpse Recently" + text="Regenerate {0}% of maximum Life per Second if you have Blocked Recently" } }, stats={ - [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" + [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [7070]={ + [7512]={ [1]={ [1]={ [1]={ - k="per_minute_to_per_second", + k="per_minute_to_per_second_2dp_if_required", v=1 }, limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{}% of maximum Life Regenerated per Second if you've dealt a Critical Hit in the past 8 seconds" + text="Regenerate {0}% of maximum Life per second if you've Consumed a corpse Recently" } }, stats={ - [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" + [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [7071]={ + [7513]={ [1]={ [1]={ [1]={ @@ -156698,14 +164940,14 @@ return { [2]="#" } }, - text="Regenerate {0}% of maximum Life per second if you have been Hit Recently" + text="{}% of maximum Life Regenerated per Second if you've dealt a Critical Hit in the past 8 seconds" } }, stats={ - [1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently" + [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" } }, - [7072]={ + [7514]={ [1]={ [1]={ [1]={ @@ -156725,7 +164967,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7073]={ + [7515]={ [1]={ [1]={ [1]={ @@ -156745,7 +164987,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds" } }, - [7074]={ + [7516]={ [1]={ [1]={ [1]={ @@ -156765,7 +165007,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield" } }, - [7075]={ + [7517]={ [1]={ [1]={ [1]={ @@ -156785,7 +165027,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%" } }, - [7076]={ + [7518]={ [1]={ [1]={ [1]={ @@ -156805,7 +165047,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%" } }, - [7077]={ + [7519]={ [1]={ [1]={ [1]={ @@ -156825,7 +165067,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_power_charge" } }, - [7078]={ + [7520]={ [1]={ [1]={ [1]={ @@ -156845,7 +165087,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_raised_zombie" } }, - [7079]={ + [7521]={ [1]={ [1]={ [1]={ @@ -156865,7 +165107,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%" } }, - [7080]={ + [7522]={ [1]={ [1]={ [1]={ @@ -156885,7 +165127,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_moving" } }, - [7081]={ + [7523]={ [1]={ [1]={ [1]={ @@ -156905,7 +165147,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_stationary" } }, - [7082]={ + [7524]={ [1]={ [1]={ [1]={ @@ -156925,7 +165167,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_using_flask" } }, - [7083]={ + [7525]={ [1]={ [1]={ [1]={ @@ -156945,7 +165187,7 @@ return { [1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength" } }, - [7084]={ + [7526]={ [1]={ [1]={ [1]={ @@ -156965,7 +165207,7 @@ return { [1]="life_regeneration_rate_per_minute_while_on_low_life" } }, - [7085]={ + [7527]={ [1]={ [1]={ limit={ @@ -156994,7 +165236,7 @@ return { [1]="life_regeneration_rate_+%_while_moving" } }, - [7086]={ + [7528]={ [1]={ [1]={ limit={ @@ -157023,7 +165265,7 @@ return { [1]="life_regeneration_rate_+%_while_on_low_life" } }, - [7087]={ + [7529]={ [1]={ [1]={ limit={ @@ -157052,7 +165294,7 @@ return { [1]="life_regeneration_rate_+%_while_stationary" } }, - [7088]={ + [7530]={ [1]={ [1]={ limit={ @@ -157081,7 +165323,7 @@ return { [1]="light_radius_+%_per_10_tribute" } }, - [7089]={ + [7531]={ [1]={ [1]={ limit={ @@ -157097,7 +165339,7 @@ return { [1]="light_radius_increases_apply_to_accuracy" } }, - [7090]={ + [7532]={ [1]={ [1]={ limit={ @@ -157113,7 +165355,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [7091]={ + [7533]={ [1]={ [1]={ limit={ @@ -157142,7 +165384,7 @@ return { [1]="lightning_ailment_duration_+%" } }, - [7092]={ + [7534]={ [1]={ [1]={ limit={ @@ -157171,7 +165413,7 @@ return { [1]="lightning_ailment_effect_+%_against_chilled_enemies" } }, - [7093]={ + [7535]={ [1]={ [1]={ limit={ @@ -157200,7 +165442,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [7094]={ + [7536]={ [1]={ [1]={ limit={ @@ -157216,7 +165458,7 @@ return { [1]="lightning_and_chaos_damage_resistance_%" } }, - [7095]={ + [7537]={ [1]={ [1]={ limit={ @@ -157241,7 +165483,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [7096]={ + [7538]={ [1]={ [1]={ limit={ @@ -157257,7 +165499,7 @@ return { [1]="lightning_conduit_and_galvanic_field_shatter_on_killing_blow" } }, - [7097]={ + [7539]={ [1]={ [1]={ limit={ @@ -157286,7 +165528,7 @@ return { [1]="lightning_conduit_area_of_effect_+%" } }, - [7098]={ + [7540]={ [1]={ [1]={ limit={ @@ -157302,7 +165544,7 @@ return { [1]="lightning_conduit_cast_speed_+%" } }, - [7099]={ + [7541]={ [1]={ [1]={ limit={ @@ -157331,7 +165573,68 @@ return { [1]="lightning_conduit_damage_+%" } }, - [7100]={ + [7542]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" + } + }, + stats={ + [1]="lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds" + } + }, + [7543]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Every Rage also grants {0}% increased Lightning Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Every Rage also grants {0}% reduced Lightning Damage" + } + }, + stats={ + [1]="lightning_damage_+%_per_rage" + } + }, + [7544]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Lightning Damage while Ignited" + } + }, + stats={ + [1]="lightning_damage_+%_while_ignited" + } + }, + [7545]={ [1]={ [1]={ limit={ @@ -157347,7 +165650,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [7101]={ + [7546]={ [1]={ [1]={ limit={ @@ -157363,7 +165666,7 @@ return { [1]="lightning_damage_+%_per_lightning_resistance_above_75" } }, - [7102]={ + [7547]={ [1]={ [1]={ limit={ @@ -157392,7 +165695,7 @@ return { [1]="lightning_damage_+%_while_affected_by_herald_of_thunder" } }, - [7103]={ + [7548]={ [1]={ [1]={ limit={ @@ -157421,7 +165724,7 @@ return { [1]="lightning_damage_+%_while_affected_by_wrath" } }, - [7104]={ + [7549]={ [1]={ [1]={ limit={ @@ -157437,7 +165740,7 @@ return { [1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [7105]={ + [7550]={ [1]={ [1]={ limit={ @@ -157453,7 +165756,7 @@ return { [1]="lightning_damage_taken_goes_to_life_over_4_seconds_%" } }, - [7106]={ + [7551]={ [1]={ [1]={ limit={ @@ -157469,7 +165772,7 @@ return { [1]="lightning_damage_taken_+" } }, - [7107]={ + [7552]={ [1]={ [1]={ limit={ @@ -157498,7 +165801,7 @@ return { [1]="lightning_damage_with_attack_skills_+%" } }, - [7108]={ + [7553]={ [1]={ [1]={ limit={ @@ -157527,7 +165830,7 @@ return { [1]="lightning_damage_with_spell_skills_+%" } }, - [7109]={ + [7554]={ [1]={ [1]={ limit={ @@ -157556,7 +165859,7 @@ return { [1]="lightning_explosion_mine_aura_effect_+%" } }, - [7110]={ + [7555]={ [1]={ [1]={ limit={ @@ -157585,7 +165888,7 @@ return { [1]="lightning_explosion_mine_damage_+%" } }, - [7111]={ + [7556]={ [1]={ [1]={ limit={ @@ -157614,7 +165917,7 @@ return { [1]="lightning_explosion_mine_throwing_speed_+%" } }, - [7112]={ + [7557]={ [1]={ [1]={ limit={ @@ -157643,7 +165946,7 @@ return { [1]="lightning_exposure_effect_+%" } }, - [7113]={ + [7558]={ [1]={ [1]={ limit={ @@ -157668,23 +165971,7 @@ return { [1]="lightning_exposure_on_hit_magnitude" } }, - [7114]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Lightning Damage taken as Fire Damage" - } - }, - stats={ - [1]="lightning_hit_and_dot_damage_%_taken_as_fire" - } - }, - [7115]={ + [7559]={ [1]={ [1]={ limit={ @@ -157713,7 +166000,7 @@ return { [1]="lightning_hit_damage_+%_vs_chilled_enemies" } }, - [7116]={ + [7560]={ [1]={ [1]={ limit={ @@ -157742,7 +166029,7 @@ return { [1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning" } }, - [7117]={ + [7561]={ [1]={ [1]={ limit={ @@ -157758,7 +166045,7 @@ return { [1]="lightning_resist_unaffected_by_area_penalties" } }, - [7118]={ + [7562]={ [1]={ [1]={ limit={ @@ -157774,7 +166061,7 @@ return { [1]="lightning_resistance_does_not_apply_to_lighting_damage" } }, - [7119]={ + [7563]={ [1]={ [1]={ limit={ @@ -157790,39 +166077,39 @@ return { [1]="lightning_skill_additional_chain_chance_%" } }, - [7120]={ + [7564]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Lightning Skills have a {0}% chance to apply Lightning Exposure on Hit" + text="Lightning Skills Chain {0:+d} times" } }, stats={ - [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" + [1]="lightning_skill_additional_chains" } }, - [7121]={ + [7565]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{0:+d} to Level of all Lightning Skills" + text="Lightning Skills have a {0}% chance to apply Lightning Exposure on Hit" } }, stats={ - [1]="lightning_skill_gem_level_+" + [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" } }, - [7122]={ + [7566]={ [1]={ [1]={ limit={ @@ -157851,7 +166138,7 @@ return { [1]="lightning_skill_stun_threshold_+%" } }, - [7123]={ + [7567]={ [1]={ [1]={ limit={ @@ -157867,7 +166154,7 @@ return { [1]="lightning_skills_chance_to_poison_on_hit_%" } }, - [7124]={ + [7568]={ [1]={ [1]={ limit={ @@ -157883,7 +166170,7 @@ return { [1]="lightning_strike_and_frost_blades_all_damage_can_ignite" } }, - [7125]={ + [7569]={ [1]={ [1]={ limit={ @@ -157912,7 +166199,7 @@ return { [1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit" } }, - [7126]={ + [7570]={ [1]={ [1]={ limit={ @@ -157941,7 +166228,7 @@ return { [1]="lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent" } }, - [7127]={ + [7571]={ [1]={ [1]={ limit={ @@ -157966,7 +166253,7 @@ return { [1]="lightning_tower_trap_additional_number_of_beams" } }, - [7128]={ + [7572]={ [1]={ [1]={ limit={ @@ -157995,7 +166282,7 @@ return { [1]="lightning_tower_trap_cast_speed_+%" } }, - [7129]={ + [7573]={ [1]={ [1]={ limit={ @@ -158024,7 +166311,7 @@ return { [1]="lightning_tower_trap_cooldown_speed_+%" } }, - [7130]={ + [7574]={ [1]={ [1]={ limit={ @@ -158053,7 +166340,7 @@ return { [1]="lightning_tower_trap_damage_+%" } }, - [7131]={ + [7575]={ [1]={ [1]={ limit={ @@ -158082,7 +166369,7 @@ return { [1]="lightning_tower_trap_duration_+%" } }, - [7132]={ + [7576]={ [1]={ [1]={ limit={ @@ -158111,7 +166398,7 @@ return { [1]="lightning_tower_trap_throwing_speed_+%" } }, - [7133]={ + [7577]={ [1]={ [1]={ limit={ @@ -158127,7 +166414,7 @@ return { [1]="lightning_trap_lightning_resistance_penetration_%" } }, - [7134]={ + [7578]={ [1]={ [1]={ limit={ @@ -158156,7 +166443,7 @@ return { [1]="lightning_trap_shock_effect_+%" } }, - [7135]={ + [7579]={ [1]={ [1]={ limit={ @@ -158181,7 +166468,7 @@ return { [1]="lineage_support_gem_limit_+" } }, - [7136]={ + [7580]={ [1]={ [1]={ limit={ @@ -158197,7 +166484,7 @@ return { [1]="link_buff_effect_+%_on_animate_guardian" } }, - [7137]={ + [7581]={ [1]={ [1]={ limit={ @@ -158226,7 +166513,7 @@ return { [1]="link_effect_+%_when_50%_expired" } }, - [7138]={ + [7582]={ [1]={ [1]={ limit={ @@ -158247,7 +166534,7 @@ return { [2]="link_grace_period_8_second_override" } }, - [7139]={ + [7583]={ [1]={ [1]={ limit={ @@ -158276,7 +166563,7 @@ return { [1]="link_skill_buff_effect_+%" } }, - [7140]={ + [7584]={ [1]={ [1]={ limit={ @@ -158305,7 +166592,7 @@ return { [1]="link_skill_buff_effect_+%_if_linked_target_recently" } }, - [7141]={ + [7585]={ [1]={ [1]={ limit={ @@ -158334,7 +166621,7 @@ return { [1]="link_skill_cast_speed_+%" } }, - [7142]={ + [7586]={ [1]={ [1]={ limit={ @@ -158363,7 +166650,7 @@ return { [1]="link_skill_duration_+%" } }, - [7143]={ + [7587]={ [1]={ [1]={ limit={ @@ -158379,7 +166666,7 @@ return { [1]="link_skill_gem_level_+" } }, - [7144]={ + [7588]={ [1]={ [1]={ limit={ @@ -158395,7 +166682,7 @@ return { [1]="link_skill_link_target_cannot_die_for_X_seconds" } }, - [7145]={ + [7589]={ [1]={ [1]={ limit={ @@ -158411,7 +166698,7 @@ return { [1]="link_skill_lose_no_experience_on_link_target_death" } }, - [7146]={ + [7590]={ [1]={ [1]={ limit={ @@ -158444,7 +166731,7 @@ return { [1]="link_skill_mana_cost_+%" } }, - [7147]={ + [7591]={ [1]={ [1]={ limit={ @@ -158460,7 +166747,7 @@ return { [1]="link_skills_can_target_animate_guardian" } }, - [7148]={ + [7592]={ [1]={ [1]={ limit={ @@ -158476,7 +166763,7 @@ return { [1]="link_skills_can_target_minions" } }, - [7149]={ + [7593]={ [1]={ [1]={ limit={ @@ -158505,7 +166792,7 @@ return { [1]="link_skills_grant_damage_+%" } }, - [7150]={ + [7594]={ [1]={ [1]={ limit={ @@ -158534,7 +166821,7 @@ return { [1]="link_skills_grant_damage_taken_+%" } }, - [7151]={ + [7595]={ [1]={ [1]={ limit={ @@ -158550,7 +166837,7 @@ return { [1]="link_skills_grant_redirect_curses_to_link_source" } }, - [7152]={ + [7596]={ [1]={ [1]={ limit={ @@ -158575,7 +166862,7 @@ return { [1]="link_to_X_additional_random_allies" } }, - [7153]={ + [7597]={ [1]={ [1]={ limit={ @@ -158591,7 +166878,7 @@ return { [1]="linked_targets_share_endurance_frenzy_power_charges_with_you" } }, - [7154]={ + [7598]={ [1]={ [1]={ limit={ @@ -158607,7 +166894,7 @@ return { [1]="local_%_chance_to_gain_flask_charge_when_hit" } }, - [7155]={ + [7599]={ [1]={ [1]={ limit={ @@ -158632,7 +166919,7 @@ return { [1]="local_+%_weapon_range" } }, - [7156]={ + [7600]={ [1]={ [1]={ limit={ @@ -158657,7 +166944,7 @@ return { [1]="local_X_additional_chains" } }, - [7157]={ + [7601]={ [1]={ [1]={ limit={ @@ -158673,7 +166960,7 @@ return { [1]="local_accuracy_rating_+%_per_2%_quality" } }, - [7158]={ + [7602]={ [1]={ [1]={ limit={ @@ -158698,7 +166985,7 @@ return { [1]="local_additional_attack_chain_chance_%" } }, - [7159]={ + [7603]={ [1]={ [1]={ limit={ @@ -158714,7 +167001,7 @@ return { [1]="local_aggravate_bleeding_on_hit_chance_%" } }, - [7160]={ + [7604]={ [1]={ [1]={ limit={ @@ -158730,7 +167017,7 @@ return { [1]="local_all_attributes_+_per_rune_or_soul_core" } }, - [7161]={ + [7605]={ [1]={ [1]={ [1]={ @@ -158750,7 +167037,7 @@ return { [1]="local_all_attributes_-_per_level" } }, - [7162]={ + [7606]={ [1]={ [1]={ limit={ @@ -158779,7 +167066,7 @@ return { [1]="local_all_attributes_+%_per_rune_or_soul_core" } }, - [7163]={ + [7607]={ [1]={ [1]={ limit={ @@ -158795,7 +167082,7 @@ return { [1]="local_all_damage_can_chill" } }, - [7164]={ + [7608]={ [1]={ [1]={ limit={ @@ -158811,7 +167098,7 @@ return { [1]="local_all_damage_can_electrocute" } }, - [7165]={ + [7609]={ [1]={ [1]={ limit={ @@ -158827,7 +167114,7 @@ return { [1]="local_all_damage_can_freeze" } }, - [7166]={ + [7610]={ [1]={ [1]={ limit={ @@ -158843,7 +167130,7 @@ return { [1]="local_all_damage_can_pin" } }, - [7167]={ + [7611]={ [1]={ [1]={ limit={ @@ -158859,7 +167146,7 @@ return { [1]="local_always_crit_heavy_stunned_enemies" } }, - [7168]={ + [7612]={ [1]={ [1]={ limit={ @@ -158875,7 +167162,7 @@ return { [1]="local_always_freeze_on_full_life" } }, - [7169]={ + [7613]={ [1]={ [1]={ limit={ @@ -158891,7 +167178,7 @@ return { [1]="local_always_maim_on_crit" } }, - [7170]={ + [7614]={ [1]={ [1]={ limit={ @@ -158907,7 +167194,7 @@ return { [1]="local_apply_X_armour_break_on_crit" } }, - [7171]={ + [7615]={ [1]={ [1]={ limit={ @@ -158923,7 +167210,7 @@ return { [1]="local_apply_X_armour_break_on_hit" } }, - [7172]={ + [7616]={ [1]={ [1]={ limit={ @@ -158939,7 +167226,7 @@ return { [1]="local_apply_X_armour_break_on_stun" } }, - [7173]={ + [7617]={ [1]={ [1]={ limit={ @@ -158948,14 +167235,14 @@ return { [2]="#" } }, - text="Inflicts Fire Exposure when this Weapon Fully Breaks Armour" + text="Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" } }, stats={ - [1]="local_apply_fire_exposure_on_full_armour_break" + [1]="local_apply_elemental_exposure_on_full_armour_break" } }, - [7174]={ + [7618]={ [1]={ [1]={ limit={ @@ -158971,7 +167258,7 @@ return { [1]="local_area_of_effect_+%_per_4%_quality" } }, - [7175]={ + [7619]={ [1]={ [1]={ limit={ @@ -158987,7 +167274,7 @@ return { [1]="local_armour_break_damage_%_dealt_as_armour_break" } }, - [7176]={ + [7620]={ [1]={ [1]={ limit={ @@ -159016,7 +167303,7 @@ return { [1]="local_attack_and_cast_speed_+%_if_item_corrupted" } }, - [7177]={ + [7621]={ [1]={ [1]={ limit={ @@ -159045,7 +167332,7 @@ return { [1]="local_attack_damage_+%_if_item_corrupted" } }, - [7178]={ + [7622]={ [1]={ [1]={ limit={ @@ -159061,7 +167348,7 @@ return { [1]="local_attack_speed_+%_per_8%_quality" } }, - [7179]={ + [7623]={ [1]={ [1]={ limit={ @@ -159077,7 +167364,7 @@ return { [1]="local_attacks_cannot_be_blocked" } }, - [7180]={ + [7624]={ [1]={ [1]={ limit={ @@ -159093,7 +167380,28 @@ return { [1]="local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed" } }, - [7181]={ + [7625]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=0, + [2]="#" + }, + [2]={ + [1]=0, + [2]="#" + } + }, + text="Attacks with this Weapon have Added Cold Damage equal to {0}% to {1}% of maximum Mana" + } + }, + stats={ + [1]="local_attacks_have_added_min_cold_damage_equal_to_%_of_maximum_mana", + [2]="local_attacks_have_added_max_cold_damage_equal_to_%_of_maximum_mana" + } + }, + [7626]={ [1]={ [1]={ limit={ @@ -159118,7 +167426,7 @@ return { [1]="local_attacks_impale_on_hit_%_chance" } }, - [7182]={ + [7627]={ [1]={ [1]={ limit={ @@ -159134,7 +167442,7 @@ return { [1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed" } }, - [7183]={ + [7628]={ [1]={ [1]={ limit={ @@ -159150,7 +167458,7 @@ return { [1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed" } }, - [7184]={ + [7629]={ [1]={ [1]={ limit={ @@ -159166,23 +167474,7 @@ return { [1]="local_base_chaos_damage_resistance_%_per_rune_or_soul_core" } }, - [7185]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="DNT-UNUSED {0:+d} to Evasion Rating per level" - } - }, - stats={ - [1]="local_base_evasion_rating_per_level" - } - }, - [7186]={ + [7630]={ [1]={ [1]={ [1]={ @@ -159202,7 +167494,7 @@ return { [1]="local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core" } }, - [7187]={ + [7631]={ [1]={ [1]={ limit={ @@ -159218,7 +167510,7 @@ return { [1]="local_base_maximum_life_+_per_rune_or_soul_core" } }, - [7188]={ + [7632]={ [1]={ [1]={ limit={ @@ -159234,7 +167526,7 @@ return { [1]="local_base_maximum_mana_+_per_rune_or_soul_core" } }, - [7189]={ + [7633]={ [1]={ [1]={ limit={ @@ -159263,7 +167555,7 @@ return { [1]="local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core" } }, - [7190]={ + [7634]={ [1]={ [1]={ limit={ @@ -159288,7 +167580,7 @@ return { [1]="local_bleed_on_critical_strike_chance_%" } }, - [7191]={ + [7635]={ [1]={ [1]={ limit={ @@ -159304,71 +167596,7 @@ return { [1]="local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed" } }, - [7192]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can only Socket Corrupted Gems in this item" - } - }, - stats={ - [1]="local_can_only_socket_corrupted_gems" - } - }, - [7193]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can only Socket Emerald Jewels in this item" - } - }, - stats={ - [1]="local_can_only_socket_emerald_gems" - } - }, - [7194]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can only Socket Ruby Jewels in this item" - } - }, - stats={ - [1]="local_can_only_socket_ruby_gems" - } - }, - [7195]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="You can only Socket Sapphire Jewels in this item" - } - }, - stats={ - [1]="local_can_only_socket_sapphire_gems" - } - }, - [7196]={ + [7636]={ [1]={ [1]={ limit={ @@ -159384,7 +167612,7 @@ return { [1]="local_cannot_be_thrown" } }, - [7197]={ + [7637]={ [1]={ [1]={ limit={ @@ -159400,7 +167628,7 @@ return { [1]="local_chance_to_bleed_on_crit_50%" } }, - [7198]={ + [7638]={ [1]={ [1]={ limit={ @@ -159416,7 +167644,7 @@ return { [1]="local_chance_to_gain_onslaught_on_killing_blow_%" } }, - [7199]={ + [7639]={ [1]={ [1]={ limit={ @@ -159432,7 +167660,7 @@ return { [1]="local_chance_to_intimidate_on_hit_%" } }, - [7200]={ + [7640]={ [1]={ [1]={ limit={ @@ -159448,7 +167676,7 @@ return { [1]="local_chaos_penetration_%" } }, - [7201]={ + [7641]={ [1]={ [1]={ limit={ @@ -159477,7 +167705,7 @@ return { [1]="local_charm_effect_+%" } }, - [7202]={ + [7642]={ [1]={ [1]={ [1]={ @@ -159510,7 +167738,7 @@ return { [1]="local_chill_on_hit_ms_if_in_off_hand" } }, - [7203]={ + [7643]={ [1]={ [1]={ limit={ @@ -159526,7 +167754,7 @@ return { [1]="local_cold_resistance_%_per_2%_quality" } }, - [7204]={ + [7644]={ [1]={ [1]={ limit={ @@ -159542,7 +167770,7 @@ return { [1]="local_concoction_can_consume_sulphur_flasks" } }, - [7205]={ + [7645]={ [1]={ [1]={ limit={ @@ -159571,7 +167799,7 @@ return { [1]="local_critical_strike_chance_+%_if_item_corrupted" } }, - [7206]={ + [7646]={ [1]={ [1]={ limit={ @@ -159587,7 +167815,7 @@ return { [1]="local_critical_strike_chance_+%_per_4%_quality" } }, - [7207]={ + [7647]={ [1]={ [1]={ limit={ @@ -159603,7 +167831,23 @@ return { [1]="local_crits_have_culling_strike" } }, - [7208]={ + [7648]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot load or fire Ammunition" + } + }, + stats={ + [1]="local_crossbow_no_ammo_skills_and_give_alternate_grenade_default_attack" + } + }, + [7649]={ [1]={ [1]={ limit={ @@ -159619,7 +167863,7 @@ return { [1]="local_crush_on_hit" } }, - [7209]={ + [7650]={ [1]={ [1]={ limit={ @@ -159635,7 +167879,7 @@ return { [1]="local_cull_frozen_enemies_on_hit" } }, - [7210]={ + [7651]={ [1]={ [1]={ limit={ @@ -159651,7 +167895,7 @@ return { [1]="local_culling_strike" } }, - [7211]={ + [7652]={ [1]={ [1]={ limit={ @@ -159667,7 +167911,7 @@ return { [1]="local_culling_strike_if_crit_recently" } }, - [7212]={ + [7653]={ [1]={ [1]={ limit={ @@ -159683,7 +167927,7 @@ return { [1]="local_culling_strike_vs_bleeding_enemies" } }, - [7213]={ + [7654]={ [1]={ [1]={ limit={ @@ -159712,7 +167956,7 @@ return { [1]="local_damage_+%_if_item_corrupted" } }, - [7214]={ + [7655]={ [1]={ [1]={ limit={ @@ -159728,7 +167972,7 @@ return { [1]="local_damage_roll_always_min_or_max" } }, - [7215]={ + [7656]={ [1]={ [1]={ limit={ @@ -159761,7 +168005,7 @@ return { [1]="local_damage_taken_+%_if_item_corrupted" } }, - [7216]={ + [7657]={ [1]={ [1]={ limit={ @@ -159777,7 +168021,7 @@ return { [1]="local_destroy_corpses_with_critical_strikes" } }, - [7217]={ + [7658]={ [1]={ [1]={ limit={ @@ -159793,7 +168037,7 @@ return { [1]="local_dexterity_per_2%_quality" } }, - [7218]={ + [7659]={ [1]={ [1]={ limit={ @@ -159818,7 +168062,7 @@ return { [1]="local_disable_rare_mod_on_hit_%_chance" } }, - [7219]={ + [7660]={ [1]={ [1]={ limit={ @@ -159843,7 +168087,7 @@ return { [1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance" } }, - [7220]={ + [7661]={ [1]={ [1]={ limit={ @@ -159859,7 +168103,7 @@ return { [1]="local_display_enemies_killed_nearby_count_as_being_killed_by_you" } }, - [7221]={ + [7662]={ [1]={ [1]={ limit={ @@ -159875,7 +168119,7 @@ return { [1]="local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds" } }, - [7222]={ + [7663]={ [1]={ [1]={ limit={ @@ -159904,7 +168148,7 @@ return { [1]="local_display_fire_and_cold_resist_debuff" } }, - [7223]={ + [7664]={ [1]={ [1]={ limit={ @@ -159920,7 +168164,7 @@ return { [1]="local_display_gain_power_charge_on_spending_mana" } }, - [7224]={ + [7665]={ [1]={ [1]={ limit={ @@ -159936,7 +168180,7 @@ return { [1]="local_display_grants_skill_frostbolt_level" } }, - [7225]={ + [7666]={ [1]={ [1]={ limit={ @@ -159965,7 +168209,7 @@ return { [1]="local_display_mod_aura_mana_regeration_rate_+%" } }, - [7226]={ + [7667]={ [1]={ [1]={ limit={ @@ -159994,7 +168238,7 @@ return { [1]="local_display_movement_speed_+%_for_you_and_nearby_allies" } }, - [7227]={ + [7668]={ [1]={ [1]={ limit={ @@ -160010,7 +168254,7 @@ return { [1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base" } }, - [7228]={ + [7669]={ [1]={ [1]={ limit={ @@ -160026,7 +168270,7 @@ return { [1]="local_display_nearby_allies_critical_strike_multiplier_+" } }, - [7229]={ + [7670]={ [1]={ [1]={ limit={ @@ -160042,7 +168286,7 @@ return { [1]="local_display_nearby_allies_extra_damage_rolls" } }, - [7230]={ + [7671]={ [1]={ [1]={ limit={ @@ -160058,7 +168302,7 @@ return { [1]="local_display_nearby_allies_have_fortify" } }, - [7231]={ + [7672]={ [1]={ [1]={ limit={ @@ -160074,7 +168318,7 @@ return { [1]="local_display_nearby_enemies_are_chilled" } }, - [7232]={ + [7673]={ [1]={ [1]={ limit={ @@ -160090,7 +168334,7 @@ return { [1]="local_display_nearby_enemies_are_covered_in_ash" } }, - [7233]={ + [7674]={ [1]={ [1]={ limit={ @@ -160106,7 +168350,7 @@ return { [1]="local_display_nearby_enemies_are_intimidated" } }, - [7234]={ + [7675]={ [1]={ [1]={ limit={ @@ -160122,7 +168366,7 @@ return { [1]="local_display_nearby_enemies_cannot_crit" } }, - [7235]={ + [7676]={ [1]={ [1]={ limit={ @@ -160138,7 +168382,7 @@ return { [1]="local_display_nearby_enemies_have_fire_exposure" } }, - [7236]={ + [7677]={ [1]={ [1]={ limit={ @@ -160154,7 +168398,7 @@ return { [1]="local_display_nearby_enemy_chaos_damage_resistance_%" } }, - [7237]={ + [7678]={ [1]={ [1]={ limit={ @@ -160170,7 +168414,7 @@ return { [1]="local_display_nearby_enemy_cold_damage_resistance_%" } }, - [7238]={ + [7679]={ [1]={ [1]={ limit={ @@ -160186,7 +168430,7 @@ return { [1]="local_display_nearby_enemy_elemental_damage_taken_+%" } }, - [7239]={ + [7680]={ [1]={ [1]={ limit={ @@ -160202,23 +168446,7 @@ return { [1]="local_display_nearby_enemy_fire_damage_resistance_%" } }, - [7240]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Nearby Enemy Monsters have at least {0}% of Life Reserved" - } - }, - stats={ - [1]="local_display_nearby_enemy_life_reserved_by_stat_%" - } - }, - [7241]={ + [7681]={ [1]={ [1]={ limit={ @@ -160234,7 +168462,7 @@ return { [1]="local_display_nearby_enemy_lightning_damage_resistance_%" } }, - [7242]={ + [7682]={ [1]={ [1]={ limit={ @@ -160250,7 +168478,7 @@ return { [1]="local_display_nearby_enemy_no_chaos_damage_resistance" } }, - [7243]={ + [7683]={ [1]={ [1]={ limit={ @@ -160279,7 +168507,7 @@ return { [1]="local_display_nearby_enemy_physical_damage_taken_+%" } }, - [7244]={ + [7684]={ [1]={ [1]={ limit={ @@ -160295,7 +168523,7 @@ return { [1]="local_display_self_crushed" } }, - [7245]={ + [7685]={ [1]={ [1]={ limit={ @@ -160311,7 +168539,7 @@ return { [1]="local_display_trigger_summon_infernal_familiar_when_allocated" } }, - [7246]={ + [7686]={ [1]={ [1]={ limit={ @@ -160327,7 +168555,7 @@ return { [1]="local_display_triggers_corpse_cloud_on_12_units_travelled" } }, - [7247]={ + [7687]={ [1]={ [1]={ limit={ @@ -160343,7 +168571,7 @@ return { [1]="local_display_triggers_level_x_detonation_on_off_hand_hit" } }, - [7248]={ + [7688]={ [1]={ [1]={ limit={ @@ -160359,7 +168587,7 @@ return { [1]="local_display_triggers_level_x_ember_fusillade_on_spell_cast" } }, - [7249]={ + [7689]={ [1]={ [1]={ limit={ @@ -160375,7 +168603,7 @@ return { [1]="local_display_triggers_level_x_gas_cloud_on_main_hand_hit" } }, - [7250]={ + [7690]={ [1]={ [1]={ limit={ @@ -160391,7 +168619,7 @@ return { [1]="local_display_triggers_level_x_lightning_bolt_on_critical_strike" } }, - [7251]={ + [7691]={ [1]={ [1]={ limit={ @@ -160407,7 +168635,7 @@ return { [1]="local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin" } }, - [7252]={ + [7692]={ [1]={ [1]={ limit={ @@ -160423,7 +168651,7 @@ return { [1]="local_double_damage_with_attacks" } }, - [7253]={ + [7693]={ [1]={ [1]={ limit={ @@ -160448,7 +168676,7 @@ return { [1]="local_double_damage_with_attacks_chance_%" } }, - [7254]={ + [7694]={ [1]={ [1]={ limit={ @@ -160464,7 +168692,7 @@ return { [1]="local_double_hit_damage_stun_build_up" } }, - [7255]={ + [7695]={ [1]={ [1]={ limit={ @@ -160480,7 +168708,7 @@ return { [1]="local_edict_declaration_gain_per_mod_disabled" } }, - [7256]={ + [7696]={ [1]={ [1]={ limit={ @@ -160496,7 +168724,7 @@ return { [1]="local_elemental_damage_+%_per_2%_quality" } }, - [7257]={ + [7697]={ [1]={ [1]={ [1]={ @@ -160516,7 +168744,7 @@ return { [1]="local_energy_shield_regeneration_per_minute_%_if_crit_recently" } }, - [7258]={ + [7698]={ [1]={ [1]={ limit={ @@ -160532,7 +168760,7 @@ return { [1]="local_evasion_rating_and_energy_shield" } }, - [7259]={ + [7699]={ [1]={ [1]={ limit={ @@ -160548,7 +168776,7 @@ return { [1]="local_explode_on_kill_with_crit_%_physical_damage_to_deal" } }, - [7260]={ + [7700]={ [1]={ [1]={ limit={ @@ -160564,7 +168792,7 @@ return { [1]="local_fire_resistance_%_per_2%_quality" } }, - [7261]={ + [7701]={ [1]={ [1]={ limit={ @@ -160580,7 +168808,7 @@ return { [1]="local_force_corruption_outcome_two_enchants" } }, - [7262]={ + [7702]={ [1]={ [1]={ limit={ @@ -160596,7 +168824,7 @@ return { [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" } }, - [7263]={ + [7703]={ [1]={ [1]={ limit={ @@ -160612,7 +168840,7 @@ return { [1]="local_gain_X_rage_on_hit" } }, - [7264]={ + [7704]={ [1]={ [1]={ limit={ @@ -160628,7 +168856,7 @@ return { [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" } }, - [7265]={ + [7705]={ [1]={ [1]={ limit={ @@ -160644,7 +168872,7 @@ return { [1]="local_gain_shrine_buff_every_10_seconds" } }, - [7266]={ + [7706]={ [1]={ [1]={ limit={ @@ -160653,7 +168881,7 @@ return { [2]="#" } }, - text="{0}% increased Global Defences per Socket filled" + text="{0}% increased Global Armour, Evasion and Energy Shield per Socket filled" }, [2]={ [1]={ @@ -160666,14 +168894,14 @@ return { [2]=-1 } }, - text="{0}% reduced Global Defences per Socket filled" + text="{0}% reduced Global Armour, Evasion and Energy Shield per Socket filled" } }, stats={ - [1]="local_global_defences_+%_per_rune_or_soul_core" + [1]="local_global_armour_evasion_energy_shield_+%_per_rune_or_soul_core" } }, - [7267]={ + [7707]={ [1]={ [1]={ limit={ @@ -160689,7 +168917,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes" } }, - [7268]={ + [7708]={ [1]={ [1]={ limit={ @@ -160705,7 +168933,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity" } }, - [7269]={ + [7709]={ [1]={ [1]={ limit={ @@ -160721,7 +168949,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence" } }, - [7270]={ + [7710]={ [1]={ [1]={ limit={ @@ -160737,7 +168965,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_strength" } }, - [7271]={ + [7711]={ [1]={ [1]={ limit={ @@ -160753,7 +168981,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute" } }, - [7272]={ + [7712]={ [1]={ [1]={ limit={ @@ -160782,7 +169010,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%" } }, - [7273]={ + [7713]={ [1]={ [1]={ limit={ @@ -160811,7 +169039,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%" } }, - [7274]={ + [7714]={ [1]={ [1]={ limit={ @@ -160840,7 +169068,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%" } }, - [7275]={ + [7715]={ [1]={ [1]={ limit={ @@ -160869,7 +169097,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%" } }, - [7276]={ + [7716]={ [1]={ [1]={ limit={ @@ -160898,7 +169126,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%" } }, - [7277]={ + [7717]={ [1]={ [1]={ limit={ @@ -160927,7 +169155,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%" } }, - [7278]={ + [7718]={ [1]={ [1]={ limit={ @@ -160956,7 +169184,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%" } }, - [7279]={ + [7719]={ [1]={ [1]={ limit={ @@ -160985,7 +169213,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%" } }, - [7280]={ + [7720]={ [1]={ [1]={ limit={ @@ -161014,7 +169242,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%" } }, - [7281]={ + [7721]={ [1]={ [1]={ limit={ @@ -161043,7 +169271,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%" } }, - [7282]={ + [7722]={ [1]={ [1]={ limit={ @@ -161072,7 +169300,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%" } }, - [7283]={ + [7723]={ [1]={ [1]={ limit={ @@ -161101,7 +169329,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%" } }, - [7284]={ + [7724]={ [1]={ [1]={ limit={ @@ -161130,7 +169358,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%" } }, - [7285]={ + [7725]={ [1]={ [1]={ [1]={ @@ -161150,7 +169378,7 @@ return { [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_1" } }, - [7286]={ + [7726]={ [1]={ [1]={ [1]={ @@ -161170,7 +169398,7 @@ return { [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_2" } }, - [7287]={ + [7727]={ [1]={ [1]={ limit={ @@ -161186,7 +169414,7 @@ return { [1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently" } }, - [7288]={ + [7728]={ [1]={ [1]={ limit={ @@ -161215,7 +169443,7 @@ return { [1]="local_hits_with_this_weapon_freeze_as_though_damage_+%_final" } }, - [7289]={ + [7729]={ [1]={ [1]={ limit={ @@ -161231,7 +169459,7 @@ return { [1]="local_hits_with_this_weapon_ignore_poison_limit" } }, - [7290]={ + [7730]={ [1]={ [1]={ limit={ @@ -161260,7 +169488,23 @@ return { [1]="local_hits_with_this_weapon_shock_as_though_damage_+%_final" } }, - [7291]={ + [7731]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Idols socketed in this item gain the benefits of their Bonded modifiers" + } + }, + stats={ + [1]="local_idols_gain_additional_socketable_mods" + } + }, + [7732]={ [1]={ [1]={ limit={ @@ -161289,7 +169533,7 @@ return { [1]="local_ignite_effect_+%_final_with_this_weapon" } }, - [7292]={ + [7733]={ [1]={ [1]={ limit={ @@ -161305,7 +169549,7 @@ return { [1]="local_immune_to_curses_if_item_corrupted" } }, - [7293]={ + [7734]={ [1]={ [1]={ limit={ @@ -161330,7 +169574,7 @@ return { [1]="local_inflict_exposure_on_hit_%_chance" } }, - [7294]={ + [7735]={ [1]={ [1]={ limit={ @@ -161355,7 +169599,23 @@ return { [1]="local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant" } }, - [7295]={ + [7736]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits with this Weapon inflict {0} Gruelling Madness" + } + }, + stats={ + [1]="local_inflict_x_stacks_of_gruelling_madness_on_hit" + } + }, + [7737]={ [1]={ [1]={ limit={ @@ -161371,7 +169631,7 @@ return { [1]="local_intelligence_per_2%_quality" } }, - [7296]={ + [7738]={ [1]={ [1]={ limit={ @@ -161387,7 +169647,7 @@ return { [1]="local_item_benefit_socketable_as_if_body_armour" } }, - [7297]={ + [7739]={ [1]={ [1]={ limit={ @@ -161403,7 +169663,7 @@ return { [1]="local_item_benefit_socketable_as_if_boots" } }, - [7298]={ + [7740]={ [1]={ [1]={ limit={ @@ -161419,7 +169679,7 @@ return { [1]="local_item_benefit_socketable_as_if_gloves" } }, - [7299]={ + [7741]={ [1]={ [1]={ limit={ @@ -161435,7 +169695,7 @@ return { [1]="local_item_benefit_socketable_as_if_helmet" } }, - [7300]={ + [7742]={ [1]={ [1]={ limit={ @@ -161451,7 +169711,7 @@ return { [1]="local_item_benefit_socketable_as_if_shield" } }, - [7301]={ + [7743]={ [1]={ [1]={ limit={ @@ -161467,7 +169727,7 @@ return { [1]="local_item_can_roll_all_influences" } }, - [7302]={ + [7744]={ [1]={ [1]={ limit={ @@ -161496,7 +169756,7 @@ return { [1]="local_item_found_rarity_+%_per_rune_or_soul_core" } }, - [7303]={ + [7745]={ [1]={ [1]={ limit={ @@ -161512,7 +169772,7 @@ return { [1]="local_item_quality_+" } }, - [7304]={ + [7746]={ [1]={ [1]={ limit={ @@ -161528,7 +169788,7 @@ return { [1]="local_item_sell_price_doubled" } }, - [7305]={ + [7747]={ [1]={ [1]={ limit={ @@ -161544,7 +169804,7 @@ return { [1]="local_item_stats_are_doubled_in_breach" } }, - [7306]={ + [7748]={ [1]={ [1]={ limit={ @@ -161560,7 +169820,103 @@ return { [1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing" } }, - [7307]={ + [7749]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Ranger's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_dex_start" + } + }, + [7750]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Shadow's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_dexint_start" + } + }, + [7751]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Sorceress's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_int_start" + } + }, + [7752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Warrior's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_str_start" + } + }, + [7753]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Mercenary's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_strdex_start" + } + }, + [7754]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Allocate Passive Skills from the Templar's starting point" + } + }, + stats={ + [1]="local_jewel_can_allocate_passives_from_strint_start" + } + }, + [7755]={ [1]={ [1]={ limit={ @@ -161576,7 +169932,7 @@ return { [1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius" } }, - [7308]={ + [7756]={ [1]={ [1]={ limit={ @@ -161592,7 +169948,7 @@ return { [1]="local_jewel_disable_combust_with_40_strength_in_radius" } }, - [7309]={ + [7757]={ [1]={ [1]={ limit={ @@ -161607,17 +169963,26 @@ return { limit={ [1]={ [1]=2, - [2]="#" + [2]=2 } }, text="Upgrades Radius to Large" + }, + [3]={ + limit={ + [1]={ + [1]=3, + [2]=3 + } + }, + text="Upgrades Radius to Very Large" } }, stats={ [1]="local_jewel_display_radius_change" } }, - [7310]={ + [7758]={ [1]={ [1]={ limit={ @@ -161646,7 +170011,7 @@ return { [1]="local_jewel_expansion_jewels_count" } }, - [7311]={ + [7759]={ [1]={ [1]={ limit={ @@ -161675,7 +170040,7 @@ return { [1]="local_jewel_expansion_jewels_count_override" } }, - [7312]={ + [7760]={ [1]={ [1]={ limit={ @@ -161691,7 +170056,7 @@ return { [1]="local_jewel_expansion_keystone_disciple_of_kitava" } }, - [7313]={ + [7761]={ [1]={ [1]={ limit={ @@ -161707,7 +170072,7 @@ return { [1]="local_jewel_expansion_keystone_hollow_palm_technique" } }, - [7314]={ + [7762]={ [1]={ [1]={ limit={ @@ -161723,7 +170088,7 @@ return { [1]="local_jewel_expansion_keystone_kineticism" } }, - [7315]={ + [7763]={ [1]={ [1]={ limit={ @@ -161739,7 +170104,7 @@ return { [1]="local_jewel_expansion_keystone_lone_messenger" } }, - [7316]={ + [7764]={ [1]={ [1]={ limit={ @@ -161755,7 +170120,7 @@ return { [1]="local_jewel_expansion_keystone_natures_patience" } }, - [7317]={ + [7765]={ [1]={ [1]={ limit={ @@ -161771,7 +170136,7 @@ return { [1]="local_jewel_expansion_keystone_pitfighter" } }, - [7318]={ + [7766]={ [1]={ [1]={ limit={ @@ -161787,7 +170152,7 @@ return { [1]="local_jewel_expansion_keystone_secrets_of_suffering" } }, - [7319]={ + [7767]={ [1]={ [1]={ limit={ @@ -161803,7 +170168,7 @@ return { [1]="local_jewel_expansion_keystone_veterans_awareness" } }, - [7320]={ + [7768]={ [1]={ [1]={ [1]={ @@ -161823,7 +170188,7 @@ return { [1]="local_jewel_expansion_passive_node_index" } }, - [7321]={ + [7769]={ [1]={ [1]={ limit={ @@ -161839,7 +170204,7 @@ return { [1]="local_jewel_fireball_cannot_ignite" } }, - [7322]={ + [7770]={ [1]={ [1]={ limit={ @@ -161855,7 +170220,7 @@ return { [1]="local_jewel_fireball_chance_to_scorch_%" } }, - [7323]={ + [7771]={ [1]={ [1]={ limit={ @@ -161884,7 +170249,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius" } }, - [7324]={ + [7772]={ [1]={ [1]={ limit={ @@ -161913,7 +170278,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius" } }, - [7325]={ + [7773]={ [1]={ [1]={ limit={ @@ -161929,7 +170294,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius" } }, - [7326]={ + [7774]={ [1]={ [1]={ limit={ @@ -161954,7 +170319,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius" } }, - [7327]={ + [7775]={ [1]={ [1]={ limit={ @@ -161983,7 +170348,7 @@ return { [1]="local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius" } }, - [7328]={ + [7776]={ [1]={ [1]={ limit={ @@ -162012,7 +170377,7 @@ return { [1]="local_jewel_notable_passive_in_radius_effect_+%" } }, - [7329]={ + [7777]={ [1]={ [1]={ limit={ @@ -162041,7 +170406,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_projectile_speed_+%" } }, - [7330]={ + [7778]={ [1]={ [1]={ limit={ @@ -162070,7 +170435,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%" } }, - [7331]={ + [7779]={ [1]={ [1]={ limit={ @@ -162099,7 +170464,36 @@ return { [1]="local_jewel_notables_in_radius_grant_curse_effect_+%" } }, - [7332]={ + [7780]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Small and Notable Passive Skills in Radius" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Small and Notable Passive Skills in Radius" + } + }, + stats={ + [1]="local_jewel_small_and_notable_passive_in_radius_effect_+%" + } + }, + [7781]={ [1]={ [1]={ limit={ @@ -162128,7 +170522,7 @@ return { [1]="local_jewel_small_passive_in_radius_effect_+%" } }, - [7333]={ + [7782]={ [1]={ [1]={ limit={ @@ -162157,7 +170551,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_evasion_rating_+%" } }, - [7334]={ + [7783]={ [1]={ [1]={ limit={ @@ -162186,7 +170580,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%" } }, - [7335]={ + [7784]={ [1]={ [1]={ limit={ @@ -162215,7 +170609,55 @@ return { [1]="local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%" } }, - [7336]={ + [7785]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to\n Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" + } + }, + stats={ + [1]="local_jewel_transform_damage_increases_from_cold_fire_to_lightning" + } + }, + [7786]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to\n Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" + } + }, + stats={ + [1]="local_jewel_transform_damage_increases_from_cold_lightning_to_fire" + } + }, + [7787]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to\n Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" + } + }, + stats={ + [1]="local_jewel_transform_damage_increases_from_fire_lightning_to_cold" + } + }, + [7788]={ [1]={ [1]={ limit={ @@ -162231,7 +170673,7 @@ return { [1]="local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant" } }, - [7337]={ + [7789]={ [1]={ [1]={ limit={ @@ -162247,7 +170689,7 @@ return { [1]="local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [7338]={ + [7790]={ [1]={ [1]={ limit={ @@ -162263,7 +170705,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_cannot_chain" } }, - [7339]={ + [7791]={ [1]={ [1]={ limit={ @@ -162279,7 +170721,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_fork" } }, - [7340]={ + [7792]={ [1]={ [1]={ limit={ @@ -162295,7 +170737,7 @@ return { [1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura" } }, - [7341]={ + [7793]={ [1]={ [1]={ limit={ @@ -162324,7 +170766,7 @@ return { [1]="local_life_gain_per_target_vs_blinded_enemies" } }, - [7342]={ + [7794]={ [1]={ [1]={ limit={ @@ -162353,7 +170795,7 @@ return { [1]="local_life_gain_per_target_while_leeching" } }, - [7343]={ + [7795]={ [1]={ [1]={ limit={ @@ -162369,7 +170811,7 @@ return { [1]="local_lightning_resistance_%_per_2%_quality" } }, - [7344]={ + [7796]={ [1]={ [1]={ limit={ @@ -162394,7 +170836,23 @@ return { [1]="local_maim_on_hit_%" } }, - [7345]={ + [7797]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of {0}" + } + }, + stats={ + [1]="local_maximum_added_cold_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X" + } + }, + [7798]={ [1]={ [1]={ limit={ @@ -162410,7 +170868,7 @@ return { [1]="local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X" } }, - [7346]={ + [7799]={ [1]={ [1]={ limit={ @@ -162439,7 +170897,7 @@ return { [1]="local_maximum_energy_shield_+%_if_item_corrupted" } }, - [7347]={ + [7800]={ [1]={ [1]={ limit={ @@ -162455,7 +170913,7 @@ return { [1]="local_maximum_life_per_2%_quality" } }, - [7348]={ + [7801]={ [1]={ [1]={ limit={ @@ -162484,7 +170942,7 @@ return { [1]="local_maximum_life_+%_if_item_corrupted" } }, - [7349]={ + [7802]={ [1]={ [1]={ limit={ @@ -162513,7 +170971,7 @@ return { [1]="local_maximum_life_+%_per_rune_or_soul_core" } }, - [7350]={ + [7803]={ [1]={ [1]={ limit={ @@ -162529,7 +170987,7 @@ return { [1]="local_maximum_mana_per_2%_quality" } }, - [7351]={ + [7804]={ [1]={ [1]={ limit={ @@ -162558,55 +171016,81 @@ return { [1]="local_maximum_mana_+%_per_rune_or_soul_core" } }, - [7352]={ + [7805]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Maximum Quality is {0}%" + text="With a Ghastly Eye Jewel Socketed, Minions have +{0} to Accuracy Rating" } }, stats={ - [1]="local_maximum_quality_is_%" + [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" } }, - [7353]={ + [7806]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="{:+d}% to Maximum Quality" + text="{0}% increased Movement Speed if Corrupted" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed if Corrupted" } }, stats={ - [1]="local_maximum_quality_+" + [1]="local_movement_speed_+%_if_item_corrupted" } }, - [7354]={ + [7807]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="With a Ghastly Eye Jewel Socketed, Minions have +{0} to Accuracy Rating" + text="{0}% increased Effect of Prefixes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Prefixes" } }, stats={ - [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" + [1]="local_non_unique_item_explicit_prefix_mod_magnitudes_+%" } }, - [7355]={ + [7808]={ [1]={ [1]={ limit={ @@ -162615,7 +171099,7 @@ return { [2]="#" } }, - text="{0}% increased Movement Speed if Corrupted" + text="{0}% increased Effect of Suffixes" }, [2]={ [1]={ @@ -162628,30 +171112,30 @@ return { [2]=-1 } }, - text="{0}% reduced Movement Speed if Corrupted" + text="{0}% reduced Effect of Suffixes" } }, stats={ - [1]="local_movement_speed_+%_if_item_corrupted" + [1]="local_non_unique_item_explicit_suffix_mod_magnitudes_+%" } }, - [7356]={ + [7809]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Critical Hits do not deal extra Damage" + text="Rolls only the minimum or maximum Damage value for Physical Damage" } }, stats={ - [1]="local_no_critical_strike_multiplier" + [1]="local_physical_damage_roll_always_min_or_max" } }, - [7357]={ + [7810]={ [1]={ [1]={ limit={ @@ -162676,7 +171160,7 @@ return { [1]="local_poison_on_critical_strike_chance_%" } }, - [7358]={ + [7811]={ [1]={ [1]={ limit={ @@ -162701,7 +171185,36 @@ return { [1]="local_poison_on_hit_%" } }, - [7359]={ + [7812]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Prefixes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Prefixes" + } + }, + stats={ + [1]="local_prefix_effect_+%" + } + }, + [7813]={ [1]={ [1]={ limit={ @@ -162726,7 +171239,7 @@ return { [1]="local_projectile_speed_+%" } }, - [7360]={ + [7814]={ [1]={ [1]={ limit={ @@ -162742,7 +171255,7 @@ return { [1]="local_requirements_%_to_convert_to_dexterity" } }, - [7361]={ + [7815]={ [1]={ [1]={ limit={ @@ -162758,7 +171271,7 @@ return { [1]="local_requirements_%_to_convert_to_intelligence" } }, - [7362]={ + [7816]={ [1]={ [1]={ limit={ @@ -162774,7 +171287,7 @@ return { [1]="local_requirements_%_to_convert_to_strength" } }, - [7363]={ + [7817]={ [1]={ [1]={ limit={ @@ -162790,7 +171303,7 @@ return { [1]="local_resist_all_elements_%_if_item_corrupted" } }, - [7364]={ + [7818]={ [1]={ [1]={ limit={ @@ -162819,7 +171332,7 @@ return { [1]="local_resist_all_elements_+%_per_rune_or_soul_core" } }, - [7365]={ + [7819]={ [1]={ [1]={ limit={ @@ -162835,7 +171348,7 @@ return { [1]="local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [7366]={ + [7820]={ [1]={ [1]={ limit={ @@ -162851,7 +171364,7 @@ return { [1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles" } }, - [7367]={ + [7821]={ [1]={ [1]={ limit={ @@ -162867,7 +171380,7 @@ return { [1]="local_right_ring_slot_projectiles_from_spells_cannot_fork" } }, - [7368]={ + [7822]={ [1]={ [1]={ limit={ @@ -162883,7 +171396,7 @@ return { [1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura" } }, - [7369]={ + [7823]={ [1]={ [1]={ limit={ @@ -162912,7 +171425,7 @@ return { [1]="local_ring_attack_speed_+%_final" } }, - [7370]={ + [7824]={ [1]={ [1]={ limit={ @@ -162941,7 +171454,7 @@ return { [1]="local_ring_burning_damage_+%_final" } }, - [7371]={ + [7825]={ [1]={ [1]={ limit={ @@ -162970,36 +171483,39 @@ return { [1]="local_ring_nova_spells_area_of_effect_+%_final" } }, - [7372]={ + [7826]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased effect of Socketed Runes" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Double Stun Threshold while Shield is Raised" + } + }, + stats={ + [1]="local_shield_double_stun_threshold_while_active_blocking" + } + }, + [7827]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced effect of Socketed Runes" + text="Gain maximum Runic Ward equal to {0}% of this Weapon's maximum damage" } }, stats={ - [1]="local_rune_effect_+%" + [1]="local_socketable_%_maximum_weapon_damage_to_gain_as_maximum_ward" } }, - [7373]={ + [7828]={ [1]={ [1]={ limit={ @@ -163008,7 +171524,7 @@ return { [2]="#" } }, - text="{}% increased Empowerment" + text="{0}% increased Spell Damage if Corrupted" }, [2]={ [1]={ @@ -163021,14 +171537,14 @@ return { [2]=-1 } }, - text="{}% reduced Empowerment" + text="{0}% reduced Spell Damage if Corrupted" } }, stats={ - [1]="local_sentinel_drone_difficulty_+%" + [1]="local_spell_damage_+%_if_item_corrupted" } }, - [7374]={ + [7829]={ [1]={ [1]={ limit={ @@ -163037,72 +171553,62 @@ return { [2]="#" } }, - text="Double Stun Threshold while Shield is Raised" + text="With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" } }, stats={ - [1]="local_shield_double_stun_threshold_while_active_blocking" + [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" } }, - [7375]={ + [7830]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased effect of Socketed Items" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced effect of Socketed Items" + text="+{0} to Spirit per Socket filled" } }, stats={ - [1]="local_socketed_items_effect_+%" + [1]="local_spirit_+_per_rune_or_soul_core" } }, - [7376]={ + [7831]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="{0}% increased effect of Socketed Soul Cores" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, + text="Grants {0:+d} to Strength per 2% Quality" + } + }, + stats={ + [1]="local_strength_per_2%_quality" + } + }, + [7832]={ + [1]={ + [1]={ limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced effect of Socketed Soul Cores" + text="{0:+d} to Stun Threshold per Socket filled" } }, stats={ - [1]="local_soul_core_effect_+%" + [1]="local_stun_threshold_+_per_rune_or_soul_core" } }, - [7377]={ + [7833]={ [1]={ [1]={ limit={ @@ -163111,7 +171617,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage if Corrupted" + text="{0}% increased Effect of Suffixes" }, [2]={ [1]={ @@ -163124,14 +171630,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Damage if Corrupted" + text="{0}% reduced Effect of Suffixes" } }, stats={ - [1]="local_spell_damage_+%_if_item_corrupted" + [1]="local_suffix_effect_+%" } }, - [7378]={ + [7834]={ [1]={ [1]={ limit={ @@ -163140,62 +171646,50 @@ return { [2]="#" } }, - text="With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" + text="Can only be applied to Precursor Tower Maps\nCompleting the Tower makes all nearby Maps accessible" } }, stats={ - [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" + [1]="local_tablet_make_maps_in_radius_available" } }, - [7379]={ + [7835]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="+{0} to Spirit per Socket filled" + text="Enemies you Kill during Effect have a {}% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element" } }, stats={ - [1]="local_spirit_+_per_rune_or_soul_core" + [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" } }, - [7380]={ + [7836]={ [1]={ [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } + [1]={ + k="per_minute_to_per_second", + v=1 }, - text="Grants {0:+d} to Strength per 2% Quality" - } - }, - stats={ - [1]="local_strength_per_2%_quality" - } - }, - [7381]={ - [1]={ - [1]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Stun Threshold per Socket filled" + text="Lose {0}% Life per second while you have no Runic Ward during Effect" } }, stats={ - [1]="local_stun_threshold_+_per_rune_or_soul_core" + [1]="local_unique_flask_life_loss_%_per_minute_while_you_have_no_runic_ward_during_flask_effect" } }, - [7382]={ + [7837]={ [1]={ [1]={ limit={ @@ -163204,30 +171698,14 @@ return { [2]="#" } }, - text="Can only be applied to Precursor Tower Maps\nCompleting the Tower makes all nearby Maps accessible" - } - }, - stats={ - [1]="local_tablet_make_maps_in_radius_available" - } - }, - [7383]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Enemies you Kill during Effect have a {}% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element" + text="Excess Life Recovery added as Guard for {0} seconds" } }, stats={ - [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" + [1]="local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds" } }, - [7384]={ + [7838]={ [1]={ [1]={ limit={ @@ -163236,14 +171714,14 @@ return { [2]="#" } }, - text="Excess Life Recovery added as Guard for {0} seconds" + text="Mana Recovery from Flasks can Overflow maximum Mana during Effect" } }, stats={ - [1]="local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds" + [1]="local_unique_flask_mana_flask_recovery_can_overcap_mana_during_flask_effect" } }, - [7385]={ + [7839]={ [1]={ [1]={ limit={ @@ -163259,7 +171737,7 @@ return { [1]="local_unique_flask_maximum_rage_is_doubled_during_effect" } }, - [7386]={ + [7840]={ [1]={ [1]={ limit={ @@ -163275,7 +171753,7 @@ return { [1]="local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect" } }, - [7387]={ + [7841]={ [1]={ [1]={ limit={ @@ -163291,7 +171769,7 @@ return { [1]="local_unique_flask_recover_all_mana_on_use" } }, - [7388]={ + [7842]={ [1]={ [1]={ limit={ @@ -163307,7 +171785,7 @@ return { [1]="local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends" } }, - [7389]={ + [7843]={ [1]={ [1]={ limit={ @@ -163336,7 +171814,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius" } }, - [7390]={ + [7844]={ [1]={ [1]={ [1]={ @@ -163356,7 +171834,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius" } }, - [7391]={ + [7845]={ [1]={ [1]={ [1]={ @@ -163376,7 +171854,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius" } }, - [7392]={ + [7846]={ [1]={ [1]={ limit={ @@ -163405,7 +171883,7 @@ return { [1]="local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius" } }, - [7393]={ + [7847]={ [1]={ [1]={ limit={ @@ -163421,7 +171899,7 @@ return { [1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius" } }, - [7394]={ + [7848]={ [1]={ [1]={ limit={ @@ -163437,7 +171915,7 @@ return { [1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius" } }, - [7395]={ + [7849]={ [1]={ [1]={ limit={ @@ -163453,7 +171931,7 @@ return { [1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius" } }, - [7396]={ + [7850]={ [1]={ [1]={ limit={ @@ -163469,7 +171947,7 @@ return { [1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius" } }, - [7397]={ + [7851]={ [1]={ [1]={ limit={ @@ -163498,7 +171976,7 @@ return { [1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius" } }, - [7398]={ + [7852]={ [1]={ [1]={ limit={ @@ -163527,7 +172005,7 @@ return { [1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius" } }, - [7399]={ + [7853]={ [1]={ [1]={ limit={ @@ -163543,7 +172021,7 @@ return { [1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage" } }, - [7400]={ + [7854]={ [1]={ [1]={ limit={ @@ -163559,7 +172037,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance" } }, - [7401]={ + [7855]={ [1]={ [1]={ limit={ @@ -163575,7 +172053,7 @@ return { [1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius" } }, - [7402]={ + [7856]={ [1]={ [1]={ limit={ @@ -163604,7 +172082,7 @@ return { [1]="local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius" } }, - [7403]={ + [7857]={ [1]={ [1]={ limit={ @@ -163620,7 +172098,7 @@ return { [1]="local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius" } }, - [7404]={ + [7858]={ [1]={ [1]={ limit={ @@ -163649,7 +172127,7 @@ return { [1]="local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius" } }, - [7405]={ + [7859]={ [1]={ [1]={ [1]={ @@ -163669,7 +172147,7 @@ return { [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" } }, - [7406]={ + [7860]={ [1]={ [1]={ limit={ @@ -163685,7 +172163,7 @@ return { [1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius" } }, - [7407]={ + [7861]={ [1]={ [1]={ limit={ @@ -163714,7 +172192,7 @@ return { [1]="local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius" } }, - [7408]={ + [7862]={ [1]={ [1]={ limit={ @@ -163743,7 +172221,7 @@ return { [1]="local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius" } }, - [7409]={ + [7863]={ [1]={ [1]={ limit={ @@ -163759,7 +172237,7 @@ return { [1]="local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius" } }, - [7410]={ + [7864]={ [1]={ [1]={ limit={ @@ -163775,7 +172253,7 @@ return { [1]="local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius" } }, - [7411]={ + [7865]={ [1]={ [1]={ limit={ @@ -163800,7 +172278,7 @@ return { [1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius" } }, - [7412]={ + [7866]={ [1]={ [1]={ limit={ @@ -163816,7 +172294,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius" } }, - [7413]={ + [7867]={ [1]={ [1]={ limit={ @@ -163832,7 +172310,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius" } }, - [7414]={ + [7868]={ [1]={ [1]={ limit={ @@ -163848,7 +172326,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int" } }, - [7415]={ + [7869]={ [1]={ [1]={ limit={ @@ -163864,7 +172342,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex" } }, - [7416]={ + [7870]={ [1]={ [1]={ limit={ @@ -163880,7 +172358,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex" } }, - [7417]={ + [7871]={ [1]={ [1]={ limit={ @@ -163896,7 +172374,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius" } }, - [7418]={ + [7872]={ [1]={ [1]={ limit={ @@ -163912,7 +172390,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius" } }, - [7419]={ + [7873]={ [1]={ [1]={ limit={ @@ -163928,7 +172406,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius" } }, - [7420]={ + [7874]={ [1]={ [1]={ limit={ @@ -163944,7 +172422,7 @@ return { [1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage" } }, - [7421]={ + [7875]={ [1]={ [1]={ limit={ @@ -163960,7 +172438,7 @@ return { [1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage" } }, - [7422]={ + [7876]={ [1]={ [1]={ limit={ @@ -163976,7 +172454,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%" } }, - [7423]={ + [7877]={ [1]={ [1]={ limit={ @@ -163992,7 +172470,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance" } }, - [7424]={ + [7878]={ [1]={ [1]={ limit={ @@ -164017,7 +172495,7 @@ return { [1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius" } }, - [7425]={ + [7879]={ [1]={ [1]={ limit={ @@ -164033,7 +172511,7 @@ return { [1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius" } }, - [7426]={ + [7880]={ [1]={ [1]={ limit={ @@ -164062,7 +172540,7 @@ return { [1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius" } }, - [7427]={ + [7881]={ [1]={ [1]={ limit={ @@ -164087,7 +172565,7 @@ return { [1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius" } }, - [7428]={ + [7882]={ [1]={ [1]={ limit={ @@ -164116,7 +172594,7 @@ return { [1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius" } }, - [7429]={ + [7883]={ [1]={ [1]={ limit={ @@ -164141,7 +172619,7 @@ return { [1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius" } }, - [7430]={ + [7884]={ [1]={ [1]={ limit={ @@ -164170,7 +172648,7 @@ return { [1]="local_unique_jewel_grants_x_empty_passives" } }, - [7431]={ + [7885]={ [1]={ [1]={ limit={ @@ -164199,7 +172677,7 @@ return { [1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius" } }, - [7432]={ + [7886]={ [1]={ [1]={ limit={ @@ -164215,7 +172693,7 @@ return { [1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius" } }, - [7433]={ + [7887]={ [1]={ [1]={ limit={ @@ -164240,7 +172718,7 @@ return { [1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius" } }, - [7434]={ + [7888]={ [1]={ [1]={ limit={ @@ -164269,7 +172747,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius" } }, - [7435]={ + [7889]={ [1]={ [1]={ limit={ @@ -164298,7 +172776,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius" } }, - [7436]={ + [7890]={ [1]={ [1]={ limit={ @@ -164314,7 +172792,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance" } }, - [7437]={ + [7891]={ [1]={ [1]={ limit={ @@ -164323,14 +172801,14 @@ return { [2]="#" } }, - text="With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has {0}% increased Area of Effect per Enemy Hit" + text="DNT-UNUSEDWith at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has {0}% increased Area of Effect per Enemy Hit" } }, stats={ [1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius" } }, - [7438]={ + [7892]={ [1]={ [1]={ limit={ @@ -164355,7 +172833,7 @@ return { [1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius" } }, - [7439]={ + [7893]={ [1]={ [1]={ limit={ @@ -164384,7 +172862,7 @@ return { [1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius" } }, - [7440]={ + [7894]={ [1]={ [1]={ limit={ @@ -164413,7 +172891,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius" } }, - [7441]={ + [7895]={ [1]={ [1]={ limit={ @@ -164442,7 +172920,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius" } }, - [7442]={ + [7896]={ [1]={ [1]={ limit={ @@ -164467,7 +172945,7 @@ return { [1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius" } }, - [7443]={ + [7897]={ [1]={ [1]={ limit={ @@ -164483,7 +172961,7 @@ return { [1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius" } }, - [7444]={ + [7898]={ [1]={ [1]={ limit={ @@ -164512,7 +172990,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius" } }, - [7445]={ + [7899]={ [1]={ [1]={ limit={ @@ -164541,7 +173019,7 @@ return { [1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%" } }, - [7446]={ + [7900]={ [1]={ [1]={ limit={ @@ -164557,7 +173035,7 @@ return { [1]="local_unique_jewel_notable_passive_in_radius_does_nothing" } }, - [7447]={ + [7901]={ [1]={ [1]={ limit={ @@ -164586,7 +173064,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed" } }, - [7448]={ + [7902]={ [1]={ [1]={ limit={ @@ -164615,7 +173093,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed" } }, - [7449]={ + [7903]={ [1]={ [1]={ limit={ @@ -164644,7 +173122,7 @@ return { [1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius" } }, - [7450]={ + [7904]={ [1]={ [1]={ limit={ @@ -164669,7 +173147,7 @@ return { [1]="local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed" } }, - [7451]={ + [7905]={ [1]={ [1]={ limit={ @@ -164694,7 +173172,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius" } }, - [7452]={ + [7906]={ [1]={ [1]={ limit={ @@ -164710,7 +173188,7 @@ return { [1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius" } }, - [7453]={ + [7907]={ [1]={ [1]={ limit={ @@ -164726,7 +173204,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius" } }, - [7454]={ + [7908]={ [1]={ [1]={ limit={ @@ -164755,7 +173233,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius" } }, - [7455]={ + [7909]={ [1]={ [1]={ limit={ @@ -164771,7 +173249,7 @@ return { [1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius" } }, - [7456]={ + [7910]={ [1]={ [1]={ limit={ @@ -164787,7 +173265,7 @@ return { [1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius" } }, - [7457]={ + [7911]={ [1]={ [1]={ limit={ @@ -164803,7 +173281,7 @@ return { [1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius" } }, - [7458]={ + [7912]={ [1]={ [1]={ limit={ @@ -164819,7 +173297,7 @@ return { [1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius" } }, - [7459]={ + [7913]={ [1]={ [1]={ limit={ @@ -164835,39 +173313,119 @@ return { [1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius" } }, - [7460]={ + [7914]={ [1]={ [1]={ + [1]={ + k="mages_legacy_index", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Has no Accuracy Penalty from Range" + text="Legacy of {0}" } }, stats={ - [1]="local_weapon_accuracy_is_unaffected_by_distance" + [1]="local_unique_mages_legacy_1" } }, - [7461]={ + [7915]={ [1]={ [1]={ + [1]={ + k="mages_legacy_index", + v=1 + }, limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Critical Hit Chance is {0}% for Hits with this Weapon" + text="Legacy of {0}" } }, stats={ - [1]="local_weapon_crit_chance_is_%" + [1]="local_unique_mages_legacy_2" } }, - [7462]={ + [7916]={ + [1]={ + [1]={ + [1]={ + k="mages_legacy_index", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Legacy of {0}" + } + }, + stats={ + [1]="local_unique_mages_legacy_3" + } + }, + [7917]={ + [1]={ + [1]={ + [1]={ + k="mages_legacy_index", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Legacy of {0}" + } + }, + stats={ + [1]="local_unique_mages_legacy_4" + } + }, + [7918]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All Mage's Legacies have {0}% increased effect per duplicate Mage's Legacy you have" + } + }, + stats={ + [1]="local_unique_mages_legacy_effect_+%_per_duplicate_mages_legacy" + } + }, + [7919]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Has no Accuracy Penalty from Range" + } + }, + stats={ + [1]="local_weapon_accuracy_is_unaffected_by_distance" + } + }, + [7920]={ [1]={ [1]={ limit={ @@ -164883,7 +173441,7 @@ return { [1]="local_weapon_damage_%_to_gain_as_daze_build_up" } }, - [7463]={ + [7921]={ [1]={ [1]={ limit={ @@ -164908,7 +173466,7 @@ return { [1]="local_weapon_daze_chance_%" } }, - [7464]={ + [7922]={ [1]={ [1]={ limit={ @@ -164924,7 +173482,7 @@ return { [1]="local_weapon_range_+_per_10%_quality" } }, - [7465]={ + [7923]={ [1]={ [1]={ limit={ @@ -164949,7 +173507,7 @@ return { [1]="lose_%_of_infernal_flame_on_reaching_max" } }, - [7466]={ + [7924]={ [1]={ [1]={ limit={ @@ -164965,7 +173523,7 @@ return { [1]="lose_%_of_life_loss_over_4_seconds_instead" } }, - [7467]={ + [7925]={ [1]={ [1]={ [1]={ @@ -164985,7 +173543,7 @@ return { [1]="lose_%_of_max_infernal_flame_per_minute" } }, - [7468]={ + [7926]={ [1]={ [1]={ limit={ @@ -165001,7 +173559,7 @@ return { [1]="lose_adrenaline_on_losing_flame_touched" } }, - [7469]={ + [7927]={ [1]={ [1]={ limit={ @@ -165017,7 +173575,7 @@ return { [1]="lose_all_charges_on_starting_movement" } }, - [7470]={ + [7928]={ [1]={ [1]={ limit={ @@ -165033,7 +173591,7 @@ return { [1]="lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges" } }, - [7471]={ + [7929]={ [1]={ [1]={ limit={ @@ -165049,7 +173607,7 @@ return { [1]="lose_all_power_charges_on_block" } }, - [7472]={ + [7930]={ [1]={ [1]={ limit={ @@ -165065,7 +173623,7 @@ return { [1]="lose_all_rage_on_reaching_maximum_rage" } }, - [7473]={ + [7931]={ [1]={ [1]={ limit={ @@ -165081,7 +173639,7 @@ return { [1]="lose_all_tailwind_when_hit" } }, - [7474]={ + [7932]={ [1]={ [1]={ limit={ @@ -165097,7 +173655,7 @@ return { [1]="lose_%_of_es_on_crit" } }, - [7475]={ + [7933]={ [1]={ [1]={ limit={ @@ -165113,7 +173671,7 @@ return { [1]="lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill" } }, - [7476]={ + [7934]={ [1]={ [1]={ limit={ @@ -165129,7 +173687,7 @@ return { [1]="lose_%_of_life_on_crit" } }, - [7477]={ + [7935]={ [1]={ [1]={ limit={ @@ -165145,7 +173703,7 @@ return { [1]="lose_%_of_mana_when_you_use_an_attack_skill" } }, - [7478]={ + [7936]={ [1]={ [1]={ limit={ @@ -165161,7 +173719,7 @@ return { [1]="lose_power_charge_each_second_if_not_detonated_mines_recently" } }, - [7479]={ + [7937]={ [1]={ [1]={ limit={ @@ -165177,7 +173735,7 @@ return { [1]="lose_x_life_when_you_use_skill" } }, - [7480]={ + [7938]={ [1]={ [1]={ limit={ @@ -165193,7 +173751,7 @@ return { [1]="lose_x_mana_when_you_use_skill" } }, - [7481]={ + [7939]={ [1]={ [1]={ limit={ @@ -165218,7 +173776,7 @@ return { [1]="local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence" } }, - [7482]={ + [7940]={ [1]={ [1]={ limit={ @@ -165234,7 +173792,23 @@ return { [1]="low_life_threshold_%_override" } }, - [7483]={ + [7941]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You are considered on Low Mana while at {0}% of maximum Mana or below instead" + } + }, + stats={ + [1]="low_mana_threshold_%_override" + } + }, + [7942]={ [1]={ [1]={ limit={ @@ -165263,7 +173837,23 @@ return { [1]="mace_hit_damage_stun_multiplier_+%" } }, - [7484]={ + [7943]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-Unused Convert {0}% of Physical Damage with Mace Skills to Cold Damage" + } + }, + stats={ + [1]="mace_skill_base_physical_damage_%_to_convert_to_cold" + } + }, + [7944]={ [1]={ [1]={ limit={ @@ -165279,7 +173869,7 @@ return { [1]="mace_slam_aftershock_chance_%" } }, - [7485]={ + [7945]={ [1]={ [1]={ limit={ @@ -165295,7 +173885,7 @@ return { [1]="mace_strike_melee_splash_chance_%" } }, - [7486]={ + [7946]={ [1]={ [1]={ limit={ @@ -165324,7 +173914,7 @@ return { [1]="magic_monster_dropped_item_rarity_+%" } }, - [7487]={ + [7947]={ [1]={ [1]={ limit={ @@ -165349,7 +173939,7 @@ return { [1]="magma_orb_number_of_additional_projectiles" } }, - [7488]={ + [7948]={ [1]={ [1]={ limit={ @@ -165378,7 +173968,7 @@ return { [1]="magma_orb_skill_area_of_effect_+%_per_bounce" } }, - [7489]={ + [7949]={ [1]={ [1]={ limit={ @@ -165407,7 +173997,7 @@ return { [1]="maim_chance_+%" } }, - [7490]={ + [7950]={ [1]={ [1]={ limit={ @@ -165436,7 +174026,7 @@ return { [1]="maim_effect_+%" } }, - [7491]={ + [7951]={ [1]={ [1]={ limit={ @@ -165452,7 +174042,7 @@ return { [1]="maim_enemy_on_full_armour_break" } }, - [7492]={ + [7952]={ [1]={ [1]={ limit={ @@ -165468,7 +174058,7 @@ return { [1]="maim_on_crit_%_with_attacks" } }, - [7493]={ + [7953]={ [1]={ [1]={ limit={ @@ -165493,7 +174083,7 @@ return { [1]="maim_on_hit_%" } }, - [7494]={ + [7954]={ [1]={ [1]={ limit={ @@ -165522,7 +174112,7 @@ return { [1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types" } }, - [7495]={ + [7955]={ [1]={ [1]={ limit={ @@ -165551,7 +174141,7 @@ return { [1]="main_hand_attack_speed_+%_final" } }, - [7496]={ + [7956]={ [1]={ [1]={ limit={ @@ -165580,7 +174170,7 @@ return { [1]="main_hand_claw_life_gain_on_hit" } }, - [7497]={ + [7957]={ [1]={ [1]={ limit={ @@ -165605,7 +174195,7 @@ return { [1]="main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%" } }, - [7498]={ + [7958]={ [1]={ [1]={ limit={ @@ -165634,7 +174224,7 @@ return { [1]="main_hand_damage_+%_while_dual_wielding" } }, - [7499]={ + [7959]={ [1]={ [1]={ limit={ @@ -165650,7 +174240,7 @@ return { [1]="malediction_on_hit" } }, - [7500]={ + [7960]={ [1]={ [1]={ [1]={ @@ -165687,7 +174277,7 @@ return { [1]="malevolence_mana_reservation_efficiency_-2%_per_1" } }, - [7501]={ + [7961]={ [1]={ [1]={ limit={ @@ -165716,7 +174306,7 @@ return { [1]="malevolence_mana_reservation_efficiency_+%" } }, - [7502]={ + [7962]={ [1]={ [1]={ limit={ @@ -165745,7 +174335,7 @@ return { [1]="mamba_strike_area_of_effect_+%" } }, - [7503]={ + [7963]={ [1]={ [1]={ limit={ @@ -165774,7 +174364,7 @@ return { [1]="mamba_strike_damage_+%" } }, - [7504]={ + [7964]={ [1]={ [1]={ limit={ @@ -165803,7 +174393,7 @@ return { [1]="mamba_strike_duration_+%" } }, - [7505]={ + [7965]={ [1]={ [1]={ limit={ @@ -165819,7 +174409,7 @@ return { [1]="mana_%_to_gain_as_armour" } }, - [7506]={ + [7966]={ [1]={ [1]={ limit={ @@ -165848,7 +174438,7 @@ return { [1]="mana_cost_efficiency_+%_if_dodge_rolled_recently" } }, - [7507]={ + [7967]={ [1]={ [1]={ limit={ @@ -165877,7 +174467,7 @@ return { [1]="mana_cost_efficiency_+%_if_not_dodge_rolled_recently" } }, - [7508]={ + [7968]={ [1]={ [1]={ limit={ @@ -165906,7 +174496,7 @@ return { [1]="mana_cost_+%_for_channelling_skills" } }, - [7509]={ + [7969]={ [1]={ [1]={ limit={ @@ -165935,7 +174525,7 @@ return { [1]="mana_cost_+%_for_trap_and_mine_skills" } }, - [7510]={ + [7970]={ [1]={ [1]={ limit={ @@ -165964,7 +174554,7 @@ return { [1]="mana_cost_+%_for_trap_skills" } }, - [7511]={ + [7971]={ [1]={ [1]={ limit={ @@ -165993,7 +174583,7 @@ return { [1]="mana_cost_+%_per_10_devotion" } }, - [7512]={ + [7972]={ [1]={ [1]={ [1]={ @@ -166013,7 +174603,7 @@ return { [1]="mana_degeneration_%_per_minute_not_in_grace" } }, - [7513]={ + [7973]={ [1]={ [1]={ [1]={ @@ -166033,7 +174623,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [7514]={ + [7974]={ [1]={ [1]={ [1]={ @@ -166053,7 +174643,7 @@ return { [1]="mana_degeneration_per_minute_%" } }, - [7515]={ + [7975]={ [1]={ [1]={ limit={ @@ -166082,7 +174672,7 @@ return { [1]="mana_flask_charges_gained_+%" } }, - [7516]={ + [7976]={ [1]={ [1]={ limit={ @@ -166098,7 +174688,7 @@ return { [1]="mana_flask_effects_not_removed_at_full_mana" } }, - [7517]={ + [7977]={ [1]={ [1]={ limit={ @@ -166114,7 +174704,7 @@ return { [1]="mana_flask_recovery_is_instant_while_on_low_mana" } }, - [7518]={ + [7978]={ [1]={ [1]={ limit={ @@ -166139,7 +174729,7 @@ return { [1]="mana_flasks_gain_X_charges_every_3_seconds" } }, - [7519]={ + [7979]={ [1]={ [1]={ limit={ @@ -166155,7 +174745,7 @@ return { [1]="mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds" } }, - [7520]={ + [7980]={ [1]={ [1]={ limit={ @@ -166184,7 +174774,7 @@ return { [1]="mana_gained_on_attack_hit_vs_cursed_enemies" } }, - [7521]={ + [7981]={ [1]={ [1]={ limit={ @@ -166200,7 +174790,7 @@ return { [1]="mana_gained_on_cull" } }, - [7522]={ + [7982]={ [1]={ [1]={ limit={ @@ -166229,7 +174819,7 @@ return { [1]="mana_gained_on_spell_hit" } }, - [7523]={ + [7983]={ [1]={ [1]={ limit={ @@ -166258,7 +174848,7 @@ return { [1]="mana_gained_on_spell_hit_vs_cursed_enemies" } }, - [7524]={ + [7984]={ [1]={ [1]={ limit={ @@ -166274,7 +174864,36 @@ return { [1]="mana_leech_also_recovers_based_on_other_damage_types" } }, - [7525]={ + [7985]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced amount of Mana Leeched if you've dealt a Critical Hit Recently" + } + }, + stats={ + [1]="mana_leech_amount_+%_if_crit_recently" + } + }, + [7986]={ [1]={ [1]={ limit={ @@ -166290,7 +174909,7 @@ return { [1]="mana_leech_applies_recovery_to_energy_shield_also" } }, - [7526]={ + [7987]={ [1]={ [1]={ limit={ @@ -166306,7 +174925,7 @@ return { [1]="mana_per_level" } }, - [7527]={ + [7988]={ [1]={ [1]={ limit={ @@ -166335,23 +174954,7 @@ return { [1]="mana_%_gained_on_block" } }, - [7528]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% of maximum Mana as Extra maximum Energy Shield while you have at least 150 Devotion" - } - }, - stats={ - [1]="mana_%_to_gain_as_energy_shield_at_devotion_threshold" - } - }, - [7529]={ + [7989]={ [1]={ [1]={ [1]={ @@ -166371,7 +174974,7 @@ return { [1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [7530]={ + [7990]={ [1]={ [1]={ limit={ @@ -166387,7 +174990,7 @@ return { [1]="mana_recovery_from_regeneration_is_not_applied" } }, - [7531]={ + [7991]={ [1]={ [1]={ limit={ @@ -166416,7 +175019,7 @@ return { [1]="mana_recovery_rate_+%_per_10_tribute" } }, - [7532]={ + [7992]={ [1]={ [1]={ limit={ @@ -166445,7 +175048,36 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask" } }, - [7533]={ + [7993]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Recovery rate while your Companion is in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Recovery rate while your Companion is in your Presence" + } + }, + stats={ + [1]="mana_recovery_rate_+%_while_companion_in_presence" + } + }, + [7994]={ [1]={ [1]={ limit={ @@ -166474,7 +175106,7 @@ return { [1]="mana_recovery_rate_+%_if_havent_killed_recently" } }, - [7534]={ + [7995]={ [1]={ [1]={ limit={ @@ -166503,7 +175135,40 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_clarity" } }, - [7535]={ + [7996]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Mana Regeneration Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Mana Regeneration Rate" + } + }, + stats={ + [1]="mana_regeneration_rate_+%_final_from_caster_weapon_runic_ward_socketable" + } + }, + [7997]={ [1]={ [1]={ limit={ @@ -166532,7 +175197,7 @@ return { [1]="mana_regeneration_rate_+%_on_full_life" } }, - [7536]={ + [7998]={ [1]={ [1]={ limit={ @@ -166561,7 +175226,7 @@ return { [1]="mana_regeneration_rate_+%_while_not_on_low_mana" } }, - [7537]={ + [7999]={ [1]={ [1]={ limit={ @@ -166590,7 +175255,7 @@ return { [1]="mana_regeneration_rate_+%_while_shapeshifted" } }, - [7538]={ + [8000]={ [1]={ [1]={ limit={ @@ -166619,7 +175284,7 @@ return { [1]="mana_regeneration_rate_+%_while_surrounded" } }, - [7539]={ + [8001]={ [1]={ [1]={ [1]={ @@ -166639,7 +175304,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently" } }, - [7540]={ + [8002]={ [1]={ [1]={ [1]={ @@ -166659,7 +175324,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently" } }, - [7541]={ + [8003]={ [1]={ [1]={ [1]={ @@ -166679,7 +175344,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_10_devotion" } }, - [7542]={ + [8004]={ [1]={ [1]={ [1]={ @@ -166699,7 +175364,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_power_charge" } }, - [7543]={ + [8005]={ [1]={ [1]={ [1]={ @@ -166719,7 +175384,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently" } }, - [7544]={ + [8006]={ [1]={ [1]={ [1]={ @@ -166739,7 +175404,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently" } }, - [7545]={ + [8007]={ [1]={ [1]={ [1]={ @@ -166759,7 +175424,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_active_totem" } }, - [7546]={ + [8008]={ [1]={ [1]={ [1]={ @@ -166779,7 +175444,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_dual_wielding" } }, - [7547]={ + [8009]={ [1]={ [1]={ [1]={ @@ -166799,7 +175464,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_holding_shield" } }, - [7548]={ + [8010]={ [1]={ [1]={ [1]={ @@ -166819,7 +175484,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [7549]={ + [8011]={ [1]={ [1]={ [1]={ @@ -166839,7 +175504,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_wielding_staff" } }, - [7550]={ + [8012]={ [1]={ [1]={ [1]={ @@ -166859,7 +175524,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight" } }, - [7551]={ + [8013]={ [1]={ [1]={ limit={ @@ -166888,7 +175553,7 @@ return { [1]="mana_regeneration_rate_+%_if_crit_recently" } }, - [7552]={ + [8014]={ [1]={ [1]={ limit={ @@ -166917,7 +175582,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_frozen_recently" } }, - [7553]={ + [8015]={ [1]={ [1]={ limit={ @@ -166946,7 +175611,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_shocked_recently" } }, - [7554]={ + [8016]={ [1]={ [1]={ limit={ @@ -166975,7 +175640,7 @@ return { [1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently" } }, - [7555]={ + [8017]={ [1]={ [1]={ limit={ @@ -167004,7 +175669,7 @@ return { [1]="mana_regeneration_rate_+%_per_raised_spectre" } }, - [7556]={ + [8018]={ [1]={ [1]={ limit={ @@ -167033,7 +175698,7 @@ return { [1]="mana_regeneration_rate_+%_while_moving" } }, - [7557]={ + [8019]={ [1]={ [1]={ limit={ @@ -167062,7 +175727,7 @@ return { [1]="mana_reservation_+%_with_skills_that_throw_mines" } }, - [7558]={ + [8020]={ [1]={ [1]={ limit={ @@ -167091,7 +175756,7 @@ return { [1]="mana_reservation_efficiency_+%_for_skills_that_throw_mines" } }, - [7559]={ + [8021]={ [1]={ [1]={ [1]={ @@ -167128,7 +175793,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines" } }, - [7560]={ + [8022]={ [1]={ [1]={ [1]={ @@ -167165,7 +175830,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_250_total_attributes" } }, - [7561]={ + [8023]={ [1]={ [1]={ limit={ @@ -167194,7 +175859,7 @@ return { [1]="mana_reservation_efficiency_+%_per_250_total_attributes" } }, - [7562]={ + [8024]={ [1]={ [1]={ limit={ @@ -167223,7 +175888,7 @@ return { [1]="mana_reservation_+%_per_250_total_attributes" } }, - [7563]={ + [8025]={ [1]={ [1]={ limit={ @@ -167252,7 +175917,7 @@ return { [1]="mana_reservation_+%_with_curse_skills" } }, - [7564]={ + [8026]={ [1]={ [1]={ limit={ @@ -167268,7 +175933,7 @@ return { [1]="manabond_and_stormbind_freeze_as_though_dealt_damage_+%" } }, - [7565]={ + [8027]={ [1]={ [1]={ limit={ @@ -167297,7 +175962,7 @@ return { [1]="manabond_damage_+%" } }, - [7566]={ + [8028]={ [1]={ [1]={ limit={ @@ -167313,7 +175978,7 @@ return { [1]="manabond_lightning_penetration_%_while_on_low_mana" } }, - [7567]={ + [8029]={ [1]={ [1]={ limit={ @@ -167342,7 +176007,23 @@ return { [1]="manabond_skill_area_of_effect_+%" } }, - [7568]={ + [8030]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Create a Fragment of Divinity in your Presence every 4 seconds" + } + }, + stats={ + [1]="manifest_a_fragment_of_divinity_in_your_presence_every_4_seconds" + } + }, + [8031]={ [1]={ [1]={ limit={ @@ -167367,7 +176048,7 @@ return { [1]="manifest_dancing_dervish_number_of_additional_copies" } }, - [7569]={ + [8032]={ [1]={ [1]={ limit={ @@ -167392,7 +176073,7 @@ return { [1]="map_X_bestiary_packs_are_harvest_beasts" } }, - [7570]={ + [8033]={ [1]={ [1]={ limit={ @@ -167417,7 +176098,7 @@ return { [1]="map_abyss_%_chance_chasm_spawns_at_least_magic_monsters" } }, - [7571]={ + [8034]={ [1]={ [1]={ limit={ @@ -167442,55 +176123,7 @@ return { [1]="map_abyss_%_chance_path_spawns_at_least_magic_monsters" } }, - [7572]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Abyssal monsters have {0}% increased chance to be loyal to Amanamu" - } - }, - stats={ - [1]="map_abyss_chance_to_be_amanamu_+%" - } - }, - [7573]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Abyssal monsters have {0}% increased chance to be loyal to Kurgal" - } - }, - stats={ - [1]="map_abyss_chance_to_be_kurgal_+%" - } - }, - [7574]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Abyssal monsters have {0}% increased chance to be loyal to Ulaman" - } - }, - stats={ - [1]="map_abyss_chance_to_be_ulaman_+%" - } - }, - [7575]={ + [8035]={ [1]={ [1]={ limit={ @@ -167515,7 +176148,7 @@ return { [1]="map_abyss_depths_chance_+%" } }, - [7576]={ + [8036]={ [1]={ [1]={ limit={ @@ -167544,7 +176177,7 @@ return { [1]="map_abyss_exile_interaction_chance_+%" } }, - [7577]={ + [8037]={ [1]={ [1]={ limit={ @@ -167573,7 +176206,7 @@ return { [1]="map_abyss_monster_experience_+%" } }, - [7578]={ + [8038]={ [1]={ [1]={ limit={ @@ -167602,7 +176235,7 @@ return { [1]="map_abyss_monster_lichborn_modifier_chance_+%" } }, - [7579]={ + [8039]={ [1]={ [1]={ limit={ @@ -167631,7 +176264,7 @@ return { [1]="map_abyss_monster_potency_+%" } }, - [7580]={ + [8040]={ [1]={ [1]={ limit={ @@ -167660,7 +176293,7 @@ return { [1]="map_abyss_monster_spawn_amount_+%" } }, - [7581]={ + [8041]={ [1]={ [1]={ limit={ @@ -167676,7 +176309,7 @@ return { [1]="map_abyss_monsters_enhanced_per_chasm_closed" } }, - [7582]={ + [8042]={ [1]={ [1]={ limit={ @@ -167710,7 +176343,7 @@ return { [1]="map_abyss_no_reward_chance_+%" } }, - [7583]={ + [8043]={ [1]={ [1]={ limit={ @@ -167726,7 +176359,7 @@ return { [1]="map_abyss_num_additional_rare_monsters" } }, - [7584]={ + [8044]={ [1]={ [1]={ limit={ @@ -167755,7 +176388,7 @@ return { [1]="map_abyss_overrun_extra_pits" } }, - [7585]={ + [8045]={ [1]={ [1]={ limit={ @@ -167771,7 +176404,7 @@ return { [1]="map_abyss_overrun_no_monsters" } }, - [7586]={ + [8046]={ [1]={ [1]={ limit={ @@ -167787,7 +176420,7 @@ return { [1]="map_abyss_pits_spread_apart" } }, - [7587]={ + [8047]={ [1]={ [1]={ limit={ @@ -167803,23 +176436,7 @@ return { [1]="map_add_irradiation_instead_of_completing" } }, - [7588]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% chance for Rare Packs to have an additional Rare Monster" - } - }, - stats={ - [1]="map_additional_rare_in_rare_pack_%_chance" - } - }, - [7589]={ + [8048]={ [1]={ [1]={ limit={ @@ -167828,14 +176445,14 @@ return { [2]="#" } }, - text="{0}% chance for Synthesised Rare Packs to have an additional Rare Monster" + text="Rare Monster Packs in Area have a {0}% increased chance to have an Additional Rare Monster" } }, stats={ - [1]="map_additional_rare_in_synthesised_rare_pack_%_chance" + [1]="map_additional_rare_in_rare_pack_chance_+%" } }, - [7590]={ + [8049]={ [1]={ [1]={ limit={ @@ -167860,7 +176477,7 @@ return { [1]="map_additional_red_beasts" } }, - [7591]={ + [8050]={ [1]={ [1]={ limit={ @@ -167885,7 +176502,7 @@ return { [1]="map_adds_X_extra_synthesis_mods" } }, - [7592]={ + [8051]={ [1]={ [1]={ limit={ @@ -167910,7 +176527,7 @@ return { [1]="map_adds_X_extra_synthesis_special_mods" } }, - [7593]={ + [8052]={ [1]={ [1]={ limit={ @@ -167939,7 +176556,7 @@ return { [1]="map_affliction_encounter_boss_chance_+%" } }, - [7594]={ + [8053]={ [1]={ [1]={ limit={ @@ -167968,7 +176585,7 @@ return { [1]="map_affliction_encounter_monster_depth_+%" } }, - [7595]={ + [8054]={ [1]={ [1]={ limit={ @@ -167997,7 +176614,7 @@ return { [1]="map_affliction_pack_size_+%" } }, - [7596]={ + [8055]={ [1]={ [1]={ limit={ @@ -168026,7 +176643,7 @@ return { [1]="map_affliction_reward_kills_+%" } }, - [7597]={ + [8056]={ [1]={ [1]={ limit={ @@ -168042,7 +176659,7 @@ return { [1]="map_affliction_reward_progress_on_kill_+%" } }, - [7598]={ + [8057]={ [1]={ [1]={ limit={ @@ -168071,7 +176688,7 @@ return { [1]="map_affliction_secondary_wave_acceleration_+%" } }, - [7599]={ + [8058]={ [1]={ [1]={ [1]={ @@ -168091,7 +176708,7 @@ return { [1]="map_affliction_secondary_wave_delay_ms_+" } }, - [7600]={ + [8059]={ [1]={ [1]={ limit={ @@ -168107,7 +176724,103 @@ return { [1]="map_affliction_secondary_wave_delay_seconds_+" } }, - [7601]={ + [8060]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Desert Area" + } + }, + stats={ + [1]="map_also_count_as_desert_biome" + } + }, + [8061]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Forest Area" + } + }, + stats={ + [1]="map_also_count_as_forest_biome" + } + }, + [8062]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Grass Area" + } + }, + stats={ + [1]="map_also_count_as_grass_biome" + } + }, + [8063]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Mountain Area" + } + }, + stats={ + [1]="map_also_count_as_mountain_biome" + } + }, + [8064]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Swamp Area" + } + }, + stats={ + [1]="map_also_count_as_swamp_biome" + } + }, + [8065]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area also counts as a Water Area" + } + }, + stats={ + [1]="map_also_count_as_water_biome" + } + }, + [8066]={ [1]={ [1]={ limit={ @@ -168132,7 +176845,7 @@ return { [1]="map_atlas_influence_type" } }, - [7602]={ + [8067]={ [1]={ [1]={ limit={ @@ -168148,7 +176861,7 @@ return { [1]="map_area_contains_arcanists_strongbox" } }, - [7603]={ + [8068]={ [1]={ [1]={ limit={ @@ -168164,7 +176877,7 @@ return { [1]="map_area_contains_avatar_of_ambush" } }, - [7604]={ + [8069]={ [1]={ [1]={ limit={ @@ -168180,7 +176893,7 @@ return { [1]="map_area_contains_avatar_of_anarchy" } }, - [7605]={ + [8070]={ [1]={ [1]={ limit={ @@ -168196,7 +176909,7 @@ return { [1]="map_area_contains_avatar_of_beyond" } }, - [7606]={ + [8071]={ [1]={ [1]={ limit={ @@ -168212,7 +176925,7 @@ return { [1]="map_area_contains_avatar_of_bloodlines" } }, - [7607]={ + [8072]={ [1]={ [1]={ limit={ @@ -168228,7 +176941,7 @@ return { [1]="map_area_contains_avatar_of_breach" } }, - [7608]={ + [8073]={ [1]={ [1]={ limit={ @@ -168244,7 +176957,7 @@ return { [1]="map_area_contains_avatar_of_domination" } }, - [7609]={ + [8074]={ [1]={ [1]={ limit={ @@ -168260,7 +176973,7 @@ return { [1]="map_area_contains_avatar_of_essence" } }, - [7610]={ + [8075]={ [1]={ [1]={ limit={ @@ -168276,7 +176989,7 @@ return { [1]="map_area_contains_avatar_of_invasion" } }, - [7611]={ + [8076]={ [1]={ [1]={ limit={ @@ -168292,7 +177005,7 @@ return { [1]="map_area_contains_avatar_of_nemesis" } }, - [7612]={ + [8077]={ [1]={ [1]={ limit={ @@ -168308,7 +177021,7 @@ return { [1]="map_area_contains_avatar_of_onslaught" } }, - [7613]={ + [8078]={ [1]={ [1]={ limit={ @@ -168324,7 +177037,7 @@ return { [1]="map_area_contains_avatar_of_perandus" } }, - [7614]={ + [8079]={ [1]={ [1]={ limit={ @@ -168340,7 +177053,7 @@ return { [1]="map_area_contains_avatar_of_prophecy" } }, - [7615]={ + [8080]={ [1]={ [1]={ limit={ @@ -168356,7 +177069,7 @@ return { [1]="map_area_contains_avatar_of_rampage" } }, - [7616]={ + [8081]={ [1]={ [1]={ limit={ @@ -168372,7 +177085,7 @@ return { [1]="map_area_contains_avatar_of_talisman" } }, - [7617]={ + [8082]={ [1]={ [1]={ limit={ @@ -168388,7 +177101,7 @@ return { [1]="map_area_contains_avatar_of_tempest" } }, - [7618]={ + [8083]={ [1]={ [1]={ limit={ @@ -168404,7 +177117,7 @@ return { [1]="map_area_contains_avatar_of_torment" } }, - [7619]={ + [8084]={ [1]={ [1]={ limit={ @@ -168420,7 +177133,7 @@ return { [1]="map_area_contains_avatar_of_warbands" } }, - [7620]={ + [8085]={ [1]={ [1]={ limit={ @@ -168436,7 +177149,7 @@ return { [1]="map_area_contains_cartographers_strongbox" } }, - [7621]={ + [8086]={ [1]={ [1]={ limit={ @@ -168452,7 +177165,7 @@ return { [1]="map_area_contains_currency_chest" } }, - [7622]={ + [8087]={ [1]={ [1]={ limit={ @@ -168468,7 +177181,7 @@ return { [1]="map_area_contains_gemcutters_strongbox" } }, - [7623]={ + [8088]={ [1]={ [1]={ limit={ @@ -168484,7 +177197,7 @@ return { [1]="map_area_contains_jewellery_chest" } }, - [7624]={ + [8089]={ [1]={ [1]={ limit={ @@ -168500,7 +177213,7 @@ return { [1]="map_area_contains_map_chest" } }, - [7625]={ + [8090]={ [1]={ [1]={ limit={ @@ -168516,7 +177229,7 @@ return { [1]="map_area_contains_metamorphs" } }, - [7626]={ + [8091]={ [1]={ [1]={ limit={ @@ -168532,7 +177245,7 @@ return { [1]="map_area_contains_perandus_coin_chest" } }, - [7627]={ + [8092]={ [1]={ [1]={ limit={ @@ -168541,14 +177254,14 @@ return { [2]="#" } }, - text="Areas contain Ritual Altars" + text="Area contains Ritual Altars" } }, stats={ [1]="map_area_contains_rituals" } }, - [7628]={ + [8093]={ [1]={ [1]={ limit={ @@ -168564,7 +177277,7 @@ return { [1]="map_area_contains_tormented_embezzler" } }, - [7629]={ + [8094]={ [1]={ [1]={ limit={ @@ -168580,7 +177293,7 @@ return { [1]="map_area_contains_tormented_seditionist" } }, - [7630]={ + [8095]={ [1]={ [1]={ limit={ @@ -168596,7 +177309,7 @@ return { [1]="map_area_contains_tormented_vaal_cultist" } }, - [7631]={ + [8096]={ [1]={ [1]={ limit={ @@ -168612,7 +177325,7 @@ return { [1]="map_area_contains_unique_item_chest" } }, - [7632]={ + [8097]={ [1]={ [1]={ limit={ @@ -168628,7 +177341,7 @@ return { [1]="map_area_contains_unique_strongbox" } }, - [7633]={ + [8098]={ [1]={ [1]={ limit={ @@ -168644,7 +177357,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_beacon_barrels" } }, - [7634]={ + [8099]={ [1]={ [1]={ limit={ @@ -168660,7 +177373,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels" } }, - [7635]={ + [8100]={ [1]={ [1]={ limit={ @@ -168676,7 +177389,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_barrels" } }, - [7636]={ + [8101]={ [1]={ [1]={ limit={ @@ -168692,7 +177405,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_eggs" } }, - [7637]={ + [8102]={ [1]={ [1]={ limit={ @@ -168708,7 +177421,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_parasite_barrels" } }, - [7638]={ + [8103]={ [1]={ [1]={ limit={ @@ -168724,7 +177437,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_volatile_barrels" } }, - [7639]={ + [8104]={ [1]={ [1]={ limit={ @@ -168740,7 +177453,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_wealthy_barrels" } }, - [7640]={ + [8105]={ [1]={ [1]={ limit={ @@ -168765,7 +177478,87 @@ return { [1]="map_area_ritual_additional_chance_%" } }, - [7641]={ + [8106]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Abysses" + } + }, + stats={ + [1]="map_atlas_node_has_abyss" + } + }, + [8107]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Breaches" + } + }, + stats={ + [1]="map_atlas_node_has_breach" + } + }, + [8108]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains a Mirror of Delirium" + } + }, + stats={ + [1]="map_atlas_node_has_delirium" + } + }, + [8109]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Vaal Beacons" + } + }, + stats={ + [1]="map_atlas_node_has_incursion" + } + }, + [8110]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Ritual Altars" + } + }, + stats={ + [1]="map_atlas_node_has_ritual" + } + }, + [8111]={ [1]={ [1]={ limit={ @@ -168794,7 +177587,7 @@ return { [1]="map_bestiary_monster_damage_+%_final" } }, - [7642]={ + [8112]={ [1]={ [1]={ limit={ @@ -168823,7 +177616,7 @@ return { [1]="map_bestiary_monster_life_+%_final" } }, - [7643]={ + [8113]={ [1]={ [1]={ limit={ @@ -168852,7 +177645,7 @@ return { [1]="map_betrayal_intelligence_+%" } }, - [7644]={ + [8114]={ [1]={ [1]={ limit={ @@ -168868,7 +177661,7 @@ return { [1]="map_beyond_demon_always_elite" } }, - [7645]={ + [8115]={ [1]={ [1]={ limit={ @@ -168889,7 +177682,7 @@ return { [2]="map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge" } }, - [7646]={ + [8116]={ [1]={ [1]={ limit={ @@ -168918,7 +177711,7 @@ return { [1]="map_beyond_portal_chance_+%" } }, - [7647]={ + [8117]={ [1]={ [1]={ limit={ @@ -168943,7 +177736,7 @@ return { [1]="map_beyond_portal_spawn_additional_demon_%_chance" } }, - [7648]={ + [8118]={ [1]={ [1]={ limit={ @@ -168968,7 +177761,7 @@ return { [1]="map_blight_chest_%_chance_for_additional_drop" } }, - [7649]={ + [8119]={ [1]={ [1]={ limit={ @@ -168984,7 +177777,7 @@ return { [1]="map_blight_chests_repeat_drops_count" } }, - [7650]={ + [8120]={ [1]={ [1]={ limit={ @@ -169000,7 +177793,7 @@ return { [1]="map_blight_encounter_spawn_rate_+%" } }, - [7651]={ + [8121]={ [1]={ [1]={ limit={ @@ -169016,7 +177809,7 @@ return { [1]="map_blight_lane_additional_chest_chance_%" } }, - [7652]={ + [8122]={ [1]={ [1]={ limit={ @@ -169041,7 +177834,7 @@ return { [1]="map_blight_lane_additional_chests" } }, - [7653]={ + [8123]={ [1]={ [1]={ limit={ @@ -169066,7 +177859,7 @@ return { [1]="map_blight_oils_chance_to_drop_a_tier_higher_%" } }, - [7654]={ + [8124]={ [1]={ [1]={ limit={ @@ -169095,7 +177888,7 @@ return { [1]="map_blight_tower_cost_+%" } }, - [7655]={ + [8125]={ [1]={ [1]={ limit={ @@ -169111,7 +177904,7 @@ return { [1]="map_blight_tower_cost_doubled" } }, - [7656]={ + [8126]={ [1]={ [1]={ limit={ @@ -169136,7 +177929,7 @@ return { [1]="map_blight_up_to_X_additional_bosses" } }, - [7657]={ + [8127]={ [1]={ [1]={ limit={ @@ -169152,7 +177945,7 @@ return { [1]="map_blighted_map_encounter_duration_-_sec" } }, - [7658]={ + [8128]={ [1]={ [1]={ limit={ @@ -169177,7 +177970,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_currency_items" } }, - [7659]={ + [8129]={ [1]={ [1]={ limit={ @@ -169202,7 +177995,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_rare_items" } }, - [7660]={ + [8130]={ [1]={ [1]={ limit={ @@ -169218,7 +178011,7 @@ return { [1]="map_blueprint_drop_revealed_chance_%" } }, - [7661]={ + [8131]={ [1]={ [1]={ limit={ @@ -169234,7 +178027,7 @@ return { [1]="map_boss_accompanied_by_bodyguards" } }, - [7662]={ + [8132]={ [1]={ [1]={ limit={ @@ -169250,7 +178043,7 @@ return { [1]="map_boss_accompanied_by_harbinger" } }, - [7663]={ + [8133]={ [1]={ [1]={ limit={ @@ -169279,7 +178072,7 @@ return { [1]="map_boss_dropped_item_quantity_+%" } }, - [7664]={ + [8134]={ [1]={ [1]={ limit={ @@ -169304,7 +178097,7 @@ return { [1]="map_boss_dropped_unique_items_+" } }, - [7665]={ + [8135]={ [1]={ [1]={ limit={ @@ -169320,7 +178113,7 @@ return { [1]="map_boss_drops_additional_currency_shards" } }, - [7666]={ + [8136]={ [1]={ [1]={ limit={ @@ -169336,7 +178129,7 @@ return { [1]="map_boss_drops_corrupted_items" } }, - [7667]={ + [8137]={ [1]={ [1]={ limit={ @@ -169365,7 +178158,7 @@ return { [1]="map_boss_experience_+%_final" } }, - [7668]={ + [8138]={ [1]={ [1]={ limit={ @@ -169381,7 +178174,7 @@ return { [1]="map_boss_is_possessed" } }, - [7669]={ + [8139]={ [1]={ [1]={ limit={ @@ -169410,7 +178203,7 @@ return { [1]="map_boss_item_rarity_+%" } }, - [7670]={ + [8140]={ [1]={ [1]={ limit={ @@ -169426,7 +178219,7 @@ return { [1]="map_boss_surrounded_by_tormented_spirits" } }, - [7671]={ + [8141]={ [1]={ [1]={ limit={ @@ -169451,7 +178244,7 @@ return { [1]="map_boss_drops_x_additional_vaal_items" } }, - [7672]={ + [8142]={ [1]={ [1]={ limit={ @@ -169476,7 +178269,7 @@ return { [1]="map_breach_%_chance_for_1_additional_breach" } }, - [7673]={ + [8143]={ [1]={ [1]={ limit={ @@ -169501,7 +178294,7 @@ return { [1]="map_breach_%_chance_for_3_additional_breach" } }, - [7674]={ + [8144]={ [1]={ [1]={ limit={ @@ -169526,7 +178319,7 @@ return { [1]="map_breach_X_additional_rare_monsters" } }, - [7675]={ + [8145]={ [1]={ [1]={ limit={ @@ -169555,7 +178348,7 @@ return { [1]="map_breach_chance_to_be_esh_+%" } }, - [7676]={ + [8146]={ [1]={ [1]={ limit={ @@ -169584,7 +178377,7 @@ return { [1]="map_breach_chance_to_be_tul_+%" } }, - [7677]={ + [8147]={ [1]={ [1]={ limit={ @@ -169613,7 +178406,7 @@ return { [1]="map_breach_chance_to_be_uul_netol_+%" } }, - [7678]={ + [8148]={ [1]={ [1]={ limit={ @@ -169642,7 +178435,7 @@ return { [1]="map_breach_chance_to_be_xoph_+%" } }, - [7679]={ + [8149]={ [1]={ [1]={ limit={ @@ -169658,7 +178451,7 @@ return { [1]="map_breach_has_boss" } }, - [7680]={ + [8150]={ [1]={ [1]={ limit={ @@ -169674,7 +178467,7 @@ return { [1]="map_breach_has_large_chest" } }, - [7681]={ + [8151]={ [1]={ [1]={ [1]={ @@ -169707,7 +178500,36 @@ return { [1]="map_breach_minimum_radius" } }, - [7682]={ + [8152]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Breach Monsters have {0}% increased Effectiveness" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Breach Monsters have {0}% increased Effectiveness" + } + }, + stats={ + [1]="map_breach_monster_potency_+%" + } + }, + [8153]={ [1]={ [1]={ limit={ @@ -169736,7 +178558,7 @@ return { [1]="map_breach_monster_quantity_+%" } }, - [7683]={ + [8154]={ [1]={ [1]={ limit={ @@ -169765,7 +178587,7 @@ return { [1]="map_breach_monster_splinter_quantity_+%" } }, - [7684]={ + [8155]={ [1]={ [1]={ limit={ @@ -169794,7 +178616,7 @@ return { [1]="map_breach_number_of_magic_packs_+%" } }, - [7685]={ + [8156]={ [1]={ [1]={ limit={ @@ -169846,7 +178668,7 @@ return { [1]="map_breach_type_override" } }, - [7686]={ + [8157]={ [1]={ [1]={ limit={ @@ -169871,7 +178693,7 @@ return { [1]="map_breaches_num_additional_chests_to_spawn" } }, - [7687]={ + [8158]={ [1]={ [1]={ limit={ @@ -169896,7 +178718,7 @@ return { [1]="map_chance_for_4_additional_abysses_%" } }, - [7688]={ + [8159]={ [1]={ [1]={ limit={ @@ -169912,7 +178734,7 @@ return { [1]="map_chance_for_area_%_to_contain_harvest" } }, - [7689]={ + [8160]={ [1]={ [1]={ limit={ @@ -169928,7 +178750,7 @@ return { [1]="map_chance_to_not_consume_sextant_use_%" } }, - [7690]={ + [8161]={ [1]={ [1]={ limit={ @@ -169957,7 +178779,7 @@ return { [1]="map_chest_item_rarity_+%_final" } }, - [7691]={ + [8162]={ [1]={ [1]={ limit={ @@ -169973,7 +178795,7 @@ return { [1]="map_chests_all_magic_or_rare" } }, - [7692]={ + [8163]={ [1]={ [1]={ limit={ @@ -170002,7 +178824,50 @@ return { [1]="map_construct_monster_potency_+%" } }, - [7693]={ + [8164]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Area has an additional Revival" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Area has {0} additional Revivals" + }, + [3]={ + limit={ + [1]={ + [1]=-1, + [2]=-1 + } + }, + text="Area has {0} fewer Revival" + }, + [4]={ + limit={ + [1]={ + [1]="#", + [2]=-2 + } + }, + text="Area has {0} fewer Revivals" + } + }, + stats={ + [1]="map_contains_+_portals" + } + }, + [8165]={ [1]={ [1]={ limit={ @@ -170018,7 +178883,7 @@ return { [1]="map_contains_abyss_boss" } }, - [7694]={ + [8166]={ [1]={ [1]={ limit={ @@ -170034,7 +178899,7 @@ return { [1]="map_contains_abyss_depths" } }, - [7695]={ + [8167]={ [1]={ [1]={ limit={ @@ -170050,7 +178915,7 @@ return { [1]="map_contains_abyss_depths_with_no_boss" } }, - [7696]={ + [8168]={ [1]={ [1]={ limit={ @@ -170075,7 +178940,7 @@ return { [1]="map_contains_additional_breaches" } }, - [7697]={ + [8169]={ [1]={ [1]={ limit={ @@ -170091,7 +178956,7 @@ return { [1]="map_contains_additional_chrysalis_talisman" } }, - [7698]={ + [8170]={ [1]={ [1]={ limit={ @@ -170107,7 +178972,7 @@ return { [1]="map_contains_additional_clutching_talisman" } }, - [7699]={ + [8171]={ [1]={ [1]={ limit={ @@ -170123,7 +178988,7 @@ return { [1]="map_contains_additional_fangjaw_talisman" } }, - [7700]={ + [8172]={ [1]={ [1]={ limit={ @@ -170139,7 +179004,7 @@ return { [1]="map_contains_additional_mandible_talisman" } }, - [7701]={ + [8173]={ [1]={ [1]={ limit={ @@ -170155,7 +179020,7 @@ return { [1]="map_contains_additional_packs_of_chaos_monsters" } }, - [7702]={ + [8174]={ [1]={ [1]={ limit={ @@ -170171,7 +179036,7 @@ return { [1]="map_contains_additional_packs_of_cold_monsters" } }, - [7703]={ + [8175]={ [1]={ [1]={ limit={ @@ -170187,7 +179052,7 @@ return { [1]="map_contains_additional_packs_of_fire_monsters" } }, - [7704]={ + [8176]={ [1]={ [1]={ limit={ @@ -170203,7 +179068,7 @@ return { [1]="map_contains_additional_packs_of_lightning_monsters" } }, - [7705]={ + [8177]={ [1]={ [1]={ limit={ @@ -170219,7 +179084,7 @@ return { [1]="map_contains_additional_packs_of_physical_monsters" } }, - [7706]={ + [8178]={ [1]={ [1]={ limit={ @@ -170244,7 +179109,7 @@ return { [1]="map_contains_additional_packs_of_vaal_monsters" } }, - [7707]={ + [8179]={ [1]={ [1]={ limit={ @@ -170260,7 +179125,7 @@ return { [1]="map_contains_additional_three_rat_talisman" } }, - [7708]={ + [8180]={ [1]={ [1]={ limit={ @@ -170285,7 +179150,7 @@ return { [1]="map_contains_additional_tormented_betrayers" } }, - [7709]={ + [8181]={ [1]={ [1]={ limit={ @@ -170310,7 +179175,7 @@ return { [1]="map_contains_additional_tormented_graverobbers" } }, - [7710]={ + [8182]={ [1]={ [1]={ limit={ @@ -170335,7 +179200,7 @@ return { [1]="map_contains_additional_tormented_heretics" } }, - [7711]={ + [8183]={ [1]={ [1]={ limit={ @@ -170351,7 +179216,7 @@ return { [1]="map_contains_additional_unique_talisman" } }, - [7712]={ + [8184]={ [1]={ [1]={ limit={ @@ -170367,7 +179232,23 @@ return { [1]="map_contains_additional_writhing_talisman" } }, - [7713]={ + [8185]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Breaches" + } + }, + stats={ + [1]="map_contains_breach" + } + }, + [8186]={ [1]={ [1]={ limit={ @@ -170383,7 +179264,7 @@ return { [1]="map_contains_chayula_breach" } }, - [7714]={ + [8187]={ [1]={ [1]={ limit={ @@ -170426,7 +179307,7 @@ return { [1]="map_contains_citadel" } }, - [7715]={ + [8188]={ [1]={ [1]={ limit={ @@ -170442,7 +179323,7 @@ return { [1]="map_contains_cleansed_boss" } }, - [7716]={ + [8189]={ [1]={ [1]={ limit={ @@ -170458,7 +179339,7 @@ return { [1]="map_contains_corrupted_strongbox" } }, - [7717]={ + [8190]={ [1]={ [1]={ limit={ @@ -170474,7 +179355,7 @@ return { [1]="map_contains_creeping_agony" } }, - [7718]={ + [8191]={ [1]={ [1]={ limit={ @@ -170490,7 +179371,7 @@ return { [1]="map_contains_keepers_of_the_trove_bloodline_pack" } }, - [7719]={ + [8192]={ [1]={ [1]={ limit={ @@ -170506,7 +179387,7 @@ return { [1]="map_contains_master" } }, - [7720]={ + [8193]={ [1]={ [1]={ limit={ @@ -170531,7 +179412,7 @@ return { [1]="map_contains_nevalis_monkey" } }, - [7721]={ + [8194]={ [1]={ [1]={ limit={ @@ -170547,7 +179428,7 @@ return { [1]="map_contains_perandus_boss" } }, - [7722]={ + [8195]={ [1]={ [1]={ limit={ @@ -170572,7 +179453,7 @@ return { [1]="map_contains_talisman_boss_with_higher_tier" } }, - [7723]={ + [8196]={ [1]={ [1]={ limit={ @@ -170614,7 +179495,7 @@ return { [2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final" } }, - [7724]={ + [8197]={ [1]={ [1]={ limit={ @@ -170630,7 +179511,7 @@ return { [1]="map_contains_uul_netol_breach" } }, - [7725]={ + [8198]={ [1]={ [1]={ limit={ @@ -170646,7 +179527,7 @@ return { [1]="map_contains_wealthy_pack" } }, - [7726]={ + [8199]={ [1]={ [1]={ limit={ @@ -170662,7 +179543,7 @@ return { [1]="map_contains_x_additional_animated_weapon_packs" } }, - [7727]={ + [8200]={ [1]={ [1]={ limit={ @@ -170678,7 +179559,7 @@ return { [1]="map_contains_x_additional_healing_packs" } }, - [7728]={ + [8201]={ [1]={ [1]={ limit={ @@ -170703,7 +179584,7 @@ return { [1]="map_contains_x_additional_magic_packs" } }, - [7729]={ + [8202]={ [1]={ [1]={ limit={ @@ -170719,7 +179600,7 @@ return { [1]="map_contains_x_additional_normal_packs" } }, - [7730]={ + [8203]={ [1]={ [1]={ limit={ @@ -170735,7 +179616,7 @@ return { [1]="map_contains_x_additional_packs_on_their_own_team" } }, - [7731]={ + [8204]={ [1]={ [1]={ limit={ @@ -170751,7 +179632,7 @@ return { [1]="map_contains_x_additional_packs_that_convert_on_death" } }, - [7732]={ + [8205]={ [1]={ [1]={ limit={ @@ -170767,7 +179648,7 @@ return { [1]="map_contains_x_additional_poison_packs" } }, - [7733]={ + [8206]={ [1]={ [1]={ limit={ @@ -170792,23 +179673,7 @@ return { [1]="map_contains_x_additional_rare_packs" } }, - [7734]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0} fewer Portals to Area" - } - }, - stats={ - [1]="map_contains_x_fewer_portals" - } - }, - [7735]={ + [8207]={ [1]={ [1]={ limit={ @@ -170833,7 +179698,7 @@ return { [1]="map_area_contains_x_rare_monsters_with_inner_treasure" } }, - [7736]={ + [8208]={ [1]={ [1]={ limit={ @@ -170858,7 +179723,7 @@ return { [1]="map_contracts_drop_with_additional_special_implicit_%_chance" } }, - [7737]={ + [8209]={ [1]={ [1]={ limit={ @@ -170874,7 +179739,7 @@ return { [1]="map_cowards_trial_extra_ghosts" } }, - [7738]={ + [8210]={ [1]={ [1]={ limit={ @@ -170890,7 +179755,7 @@ return { [1]="map_cowards_trial_extra_oriath_citizens" } }, - [7739]={ + [8211]={ [1]={ [1]={ limit={ @@ -170906,7 +179771,7 @@ return { [1]="map_cowards_trial_extra_phantasms" } }, - [7740]={ + [8212]={ [1]={ [1]={ limit={ @@ -170922,7 +179787,7 @@ return { [1]="map_cowards_trial_extra_raging_spirits" } }, - [7741]={ + [8213]={ [1]={ [1]={ limit={ @@ -170938,7 +179803,7 @@ return { [1]="map_cowards_trial_extra_rhoas" } }, - [7742]={ + [8214]={ [1]={ [1]={ limit={ @@ -170954,7 +179819,7 @@ return { [1]="map_cowards_trial_extra_skeleton_cannons" } }, - [7743]={ + [8215]={ [1]={ [1]={ limit={ @@ -170970,7 +179835,7 @@ return { [1]="map_cowards_trial_extra_zombies" } }, - [7744]={ + [8216]={ [1]={ [1]={ limit={ @@ -170999,7 +179864,7 @@ return { [1]="map_custom_league_damage_taken_+%_final" } }, - [7745]={ + [8217]={ [1]={ [1]={ limit={ @@ -171028,7 +179893,7 @@ return { [1]="map_damage_+%_per_poison_stack" } }, - [7746]={ + [8218]={ [1]={ [1]={ limit={ @@ -171044,7 +179909,7 @@ return { [1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on" } }, - [7747]={ + [8219]={ [1]={ [1]={ limit={ @@ -171077,7 +179942,7 @@ return { [1]="map_damage_taken_+%_from_beyond_monsters" } }, - [7748]={ + [8220]={ [1]={ [1]={ limit={ @@ -171106,7 +179971,7 @@ return { [1]="map_damage_taken_while_stationary_+%" } }, - [7749]={ + [8221]={ [1]={ [1]={ limit={ @@ -171135,7 +180000,7 @@ return { [1]="map_damage_while_stationary_+%" } }, - [7750]={ + [8222]={ [1]={ [1]={ limit={ @@ -171164,7 +180029,7 @@ return { [1]="map_death_and_taxes_boss_drops_additional_currency" } }, - [7751]={ + [8223]={ [1]={ [1]={ limit={ @@ -171180,7 +180045,7 @@ return { [1]="map_delirium_additional_reward_type_chance_%" } }, - [7752]={ + [8224]={ [1]={ [1]={ limit={ @@ -171209,7 +180074,7 @@ return { [1]="map_delirium_doodads_+%_final" } }, - [7753]={ + [8225]={ [1]={ [1]={ limit={ @@ -171225,7 +180090,7 @@ return { [1]="map_delirium_fog_never_dissipates" } }, - [7754]={ + [8226]={ [1]={ [1]={ limit={ @@ -171250,7 +180115,7 @@ return { [1]="map_delirium_splinter_stack_size_+%" } }, - [7755]={ + [8227]={ [1]={ [1]={ limit={ @@ -171266,7 +180131,7 @@ return { [1]="map_delve_rules" } }, - [7756]={ + [8228]={ [1]={ [1]={ limit={ @@ -171696,7 +180561,7 @@ return { [4]="map_fishy_effect_3" } }, - [7757]={ + [8229]={ [1]={ [1]={ limit={ @@ -171712,7 +180577,7 @@ return { [1]="map_display_strongbox_monsters_are_enraged" } }, - [7758]={ + [8230]={ [1]={ [1]={ limit={ @@ -171728,7 +180593,7 @@ return { [1]="map_divination_card_drop_chance_+%" } }, - [7759]={ + [8231]={ [1]={ [1]={ limit={ @@ -171744,7 +180609,23 @@ return { [1]="map_doesnt_consume_sextant_use" } }, - [7760]={ + [8232]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Rare Packs to be downgraded to Magic" + } + }, + stats={ + [1]="map_downgrade_pack_to_magic_%_chance" + } + }, + [8233]={ [1]={ [1]={ limit={ @@ -171760,7 +180641,7 @@ return { [1]="map_dropped_maps_are_corrupted_with_8_mods" } }, - [7761]={ + [8234]={ [1]={ [1]={ [1]={ @@ -171780,7 +180661,7 @@ return { [1]="map_dropped_maps_are_duplicated_chance_permillage" } }, - [7762]={ + [8235]={ [1]={ [1]={ limit={ @@ -171805,7 +180686,7 @@ return { [1]="map_duplicate_captured_beasts_chance_%" } }, - [7763]={ + [8236]={ [1]={ [1]={ limit={ @@ -171821,7 +180702,7 @@ return { [1]="map_duplicate_x_rare_monsters" } }, - [7764]={ + [8237]={ [1]={ [1]={ limit={ @@ -171837,7 +180718,7 @@ return { [1]="map_duplicate_x_synthesised_rare_monsters" } }, - [7765]={ + [8238]={ [1]={ [1]={ limit={ @@ -171880,7 +180761,7 @@ return { [1]="map_elder_boss_variation" } }, - [7766]={ + [8239]={ [1]={ [1]={ limit={ @@ -171896,7 +180777,7 @@ return { [1]="map_elder_rare_chance_+%" } }, - [7767]={ + [8240]={ [1]={ [1]={ [1]={ @@ -171916,7 +180797,7 @@ return { [1]="map_endgame_affliction_reward_1" } }, - [7768]={ + [8241]={ [1]={ [1]={ [1]={ @@ -171936,7 +180817,7 @@ return { [1]="map_endgame_affliction_reward_2" } }, - [7769]={ + [8242]={ [1]={ [1]={ [1]={ @@ -171956,7 +180837,7 @@ return { [1]="map_endgame_affliction_reward_3" } }, - [7770]={ + [8243]={ [1]={ [1]={ [1]={ @@ -171976,7 +180857,7 @@ return { [1]="map_endgame_affliction_reward_4" } }, - [7771]={ + [8244]={ [1]={ [1]={ [1]={ @@ -171996,7 +180877,7 @@ return { [1]="map_endgame_affliction_reward_5" } }, - [7772]={ + [8245]={ [1]={ [1]={ [1]={ @@ -172016,7 +180897,7 @@ return { [1]="map_endgame_affliction_reward_6" } }, - [7773]={ + [8246]={ [1]={ [1]={ [1]={ @@ -172036,7 +180917,7 @@ return { [1]="map_endgame_affliction_reward_7" } }, - [7774]={ + [8247]={ [1]={ [1]={ [1]={ @@ -172056,7 +180937,7 @@ return { [1]="map_endgame_affliction_reward_8" } }, - [7775]={ + [8248]={ [1]={ [1]={ [1]={ @@ -172076,7 +180957,7 @@ return { [1]="map_endgame_affliction_reward_9" } }, - [7776]={ + [8249]={ [1]={ [1]={ limit={ @@ -172092,7 +180973,7 @@ return { [1]="map_endgame_fog_depth" } }, - [7777]={ + [8250]={ [1]={ [1]={ limit={ @@ -172108,7 +180989,7 @@ return { [1]="map_equipment_drops_identified" } }, - [7778]={ + [8251]={ [1]={ [1]={ limit={ @@ -172137,7 +181018,7 @@ return { [1]="map_essence_abyss_chance_+%" } }, - [7779]={ + [8252]={ [1]={ [1]={ limit={ @@ -172153,7 +181034,7 @@ return { [1]="map_essence_monolith_contains_additional_essence_of_corruption" } }, - [7780]={ + [8253]={ [1]={ [1]={ limit={ @@ -172169,7 +181050,7 @@ return { [1]="map_essence_monolith_contains_essence_of_corruption_%" } }, - [7781]={ + [8254]={ [1]={ [1]={ limit={ @@ -172185,7 +181066,7 @@ return { [1]="map_essence_monsters_are_corrupted" } }, - [7782]={ + [8255]={ [1]={ [1]={ limit={ @@ -172210,7 +181091,7 @@ return { [1]="map_essence_monsters_have_additional_essences" } }, - [7783]={ + [8256]={ [1]={ [1]={ limit={ @@ -172226,7 +181107,48 @@ return { [1]="map_essence_monsters_higher_tier" } }, - [7784]={ + [8257]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Verisium Remnants in Area are Lucky" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Verisium Remnants in Area are rolled {0} times, keeping the rarest outcome" + } + }, + stats={ + [1]="map_expedition2_remnant_generation_has_x_lucky_rolls" + } + }, + [8258]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Verisium Remnants have at least {0} Rune slots" + } + }, + stats={ + [1]="map_expedition2_remnants_have_at_least_x_slots" + } + }, + [8259]={ [1]={ [1]={ limit={ @@ -172251,7 +181173,7 @@ return { [1]="map_expedition_artifact_quantity_+%" } }, - [7785]={ + [8260]={ [1]={ [1]={ limit={ @@ -172267,7 +181189,7 @@ return { [1]="map_expedition_chest_double_drops_chance_%" } }, - [7786]={ + [8261]={ [1]={ [1]={ limit={ @@ -172292,7 +181214,7 @@ return { [1]="map_expedition_chest_marker_count_+" } }, - [7787]={ + [8262]={ [1]={ [1]={ limit={ @@ -172317,7 +181239,7 @@ return { [1]="map_expedition_common_chest_marker_count_+" } }, - [7788]={ + [8263]={ [1]={ [1]={ limit={ @@ -172342,7 +181264,7 @@ return { [1]="map_expedition_elite_marker_count_+%" } }, - [7789]={ + [8264]={ [1]={ [1]={ limit={ @@ -172371,7 +181293,7 @@ return { [1]="map_expedition_encounter_additional_chance_%" } }, - [7790]={ + [8265]={ [1]={ [1]={ limit={ @@ -172396,7 +181318,7 @@ return { [1]="map_expedition_epic_chest_marker_count_+" } }, - [7791]={ + [8266]={ [1]={ [1]={ limit={ @@ -172412,7 +181334,7 @@ return { [1]="map_expedition_explosion_radius_+%" } }, - [7792]={ + [8267]={ [1]={ [1]={ limit={ @@ -172428,7 +181350,7 @@ return { [1]="map_expedition_explosives_+%" } }, - [7793]={ + [8268]={ [1]={ [1]={ limit={ @@ -172444,7 +181366,7 @@ return { [1]="map_expedition_extra_relic_suffix_chance_%" } }, - [7794]={ + [8269]={ [1]={ [1]={ limit={ @@ -172460,7 +181382,7 @@ return { [1]="map_expedition_league" } }, - [7795]={ + [8270]={ [1]={ [1]={ limit={ @@ -172485,7 +181407,7 @@ return { [1]="map_expedition_maximum_placement_distance_+%" } }, - [7796]={ + [8271]={ [1]={ [1]={ limit={ @@ -172501,7 +181423,7 @@ return { [1]="map_expedition_monster_spawn_with_half_life" } }, - [7797]={ + [8272]={ [1]={ [1]={ limit={ @@ -172526,7 +181448,7 @@ return { [1]="map_expedition_number_of_monster_markers_+%" } }, - [7798]={ + [8273]={ [1]={ [1]={ limit={ @@ -172551,7 +181473,7 @@ return { [1]="map_expedition_rare_monsters_+%" } }, - [7799]={ + [8274]={ [1]={ [1]={ limit={ @@ -172576,7 +181498,7 @@ return { [1]="map_expedition_relic_mod_effect_+%" } }, - [7800]={ + [8275]={ [1]={ [1]={ limit={ @@ -172592,7 +181514,7 @@ return { [1]="map_expedition_relics_+" } }, - [7801]={ + [8276]={ [1]={ [1]={ limit={ @@ -172608,32 +181530,7 @@ return { [1]="map_expedition_relics_+%" } }, - [7802]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]=1 - } - }, - text="Area contains an additional Underground Area" - }, - [2]={ - limit={ - [1]={ - [1]=2, - [2]="#" - } - }, - text="Area contains {0} additional Underground Areas" - } - }, - stats={ - [1]="map_expedition_saga_additional_terrain_features" - } - }, - [7803]={ + [8277]={ [1]={ [1]={ limit={ @@ -172676,7 +181573,7 @@ return { [1]="map_expedition_saga_contains_boss" } }, - [7804]={ + [8278]={ [1]={ [1]={ limit={ @@ -172692,7 +181589,7 @@ return { [1]="map_expedition_twinned_elites" } }, - [7805]={ + [8279]={ [1]={ [1]={ limit={ @@ -172717,7 +181614,7 @@ return { [1]="map_expedition_uncommon_chest_marker_count_+" } }, - [7806]={ + [8280]={ [1]={ [1]={ limit={ @@ -172742,7 +181639,7 @@ return { [1]="map_expedition_vendor_reroll_currency_quantity_+%" } }, - [7807]={ + [8281]={ [1]={ [1]={ limit={ @@ -172767,7 +181664,7 @@ return { [1]="map_expedition_x_extra_relic_suffixes" } }, - [7808]={ + [8282]={ [1]={ [1]={ limit={ @@ -172792,7 +181689,7 @@ return { [1]="map_extra_monoliths" } }, - [7809]={ + [8283]={ [1]={ [1]={ limit={ @@ -172808,7 +181705,7 @@ return { [1]="map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%" } }, - [7810]={ + [8284]={ [1]={ [1]={ limit={ @@ -172833,7 +181730,7 @@ return { [1]="map_first_invasion_boss_killed_drops_x_additional_currency" } }, - [7811]={ + [8285]={ [1]={ [1]={ limit={ @@ -172858,7 +181755,7 @@ return { [1]="map_first_strongbox_contains_x_additional_rare_monsters" } }, - [7812]={ + [8286]={ [1]={ [1]={ limit={ @@ -172883,7 +181780,7 @@ return { [1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques" } }, - [7813]={ + [8287]={ [1]={ [1]={ [1]={ @@ -172903,7 +181800,7 @@ return { [1]="map_flask_charges_recovered_per_3_seconds_%" } }, - [7814]={ + [8288]={ [1]={ [1]={ limit={ @@ -172919,7 +181816,7 @@ return { [1]="map_force_side_area" } }, - [7815]={ + [8289]={ [1]={ [1]={ [1]={ @@ -172939,7 +181836,7 @@ return { [1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster" } }, - [7816]={ + [8290]={ [1]={ [1]={ limit={ @@ -172968,23 +181865,7 @@ return { [1]="map_gauntlet_unique_monster_life_+%" } }, - [7817]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased effect of Temple Mods from Generators, Synthflesh Labs, Flesh Surgeons, Transcendent Barracks, and Alchemy Labs" - } - }, - stats={ - [1]="map_golemworks_increased_effect_of_incursion_temple_rooms" - } - }, - [7818]={ + [8291]={ [1]={ [1]={ limit={ @@ -173000,7 +181881,7 @@ return { [1]="map_grants_players_level_20_dash_skill" } }, - [7819]={ + [8292]={ [1]={ [1]={ limit={ @@ -173016,7 +181897,7 @@ return { [1]="map_ground_consecrated_life_regeneration_rate_per_minute_%" } }, - [7820]={ + [8293]={ [1]={ [1]={ limit={ @@ -173032,7 +181913,7 @@ return { [1]="map_ground_haste_action_speed_+%" } }, - [7821]={ + [8294]={ [1]={ [1]={ limit={ @@ -173048,7 +181929,7 @@ return { [1]="map_harbinger_additional_currency_shard_stack_chance_%" } }, - [7822]={ + [8295]={ [1]={ [1]={ limit={ @@ -173064,7 +181945,7 @@ return { [1]="map_harbinger_portal_drops_additional_fragments" } }, - [7823]={ + [8296]={ [1]={ [1]={ limit={ @@ -173080,7 +181961,7 @@ return { [1]="map_harbingers_drops_additional_currency_shards" } }, - [7824]={ + [8297]={ [1]={ [1]={ limit={ @@ -173096,7 +181977,7 @@ return { [1]="map_harvest_crafting_outcomes_X_lucky_rolls" } }, - [7825]={ + [8298]={ [1]={ [1]={ limit={ @@ -173112,7 +181993,7 @@ return { [1]="map_harvest_double_lifeforce_dropped" } }, - [7826]={ + [8299]={ [1]={ [1]={ limit={ @@ -173141,7 +182022,7 @@ return { [1]="map_harvest_monster_life_+%_final_from_sextant" } }, - [7827]={ + [8300]={ [1]={ [1]={ limit={ @@ -173175,7 +182056,7 @@ return { [1]="map_harvest_seeds_1_of_every_2_plot_type_override" } }, - [7828]={ + [8301]={ [1]={ [1]={ limit={ @@ -173191,7 +182072,7 @@ return { [1]="map_has_monoliths" } }, - [7829]={ + [8302]={ [1]={ [1]={ limit={ @@ -173207,7 +182088,7 @@ return { [1]="map_has_x%_quality" } }, - [7830]={ + [8303]={ [1]={ [1]={ limit={ @@ -173232,7 +182113,7 @@ return { [1]="map_heist_contract_additional_reveals_granted" } }, - [7831]={ + [8304]={ [1]={ [1]={ limit={ @@ -173248,7 +182129,7 @@ return { [1]="map_heist_contract_chest_no_rewards_%_chance" } }, - [7832]={ + [8305]={ [1]={ [1]={ limit={ @@ -173264,7 +182145,7 @@ return { [1]="map_heist_contract_npc_items_cannot_drop" } }, - [7833]={ + [8306]={ [1]={ [1]={ limit={ @@ -173293,7 +182174,7 @@ return { [1]="map_heist_contract_primary_target_value_+%_final" } }, - [7834]={ + [8307]={ [1]={ [1]={ limit={ @@ -173322,7 +182203,7 @@ return { [1]="map_heist_monster_life_+%_final_from_sextant" } }, - [7835]={ + [8308]={ [1]={ [1]={ limit={ @@ -173347,7 +182228,7 @@ return { [1]="map_heist_npc_perks_effect_+%_final" } }, - [7836]={ + [8309]={ [1]={ [1]={ limit={ @@ -173376,7 +182257,7 @@ return { [1]="map_humanoid_monster_potency_+%" } }, - [7837]={ + [8310]={ [1]={ [1]={ limit={ @@ -173409,7 +182290,7 @@ return { [1]="map_imprisoned_monsters_action_speed_+%" } }, - [7838]={ + [8311]={ [1]={ [1]={ limit={ @@ -173438,7 +182319,7 @@ return { [1]="map_imprisoned_monsters_damage_+%" } }, - [7839]={ + [8312]={ [1]={ [1]={ limit={ @@ -173454,7 +182335,7 @@ return { [1]="map_imprisoned_monsters_damage_taken_+%" } }, - [7840]={ + [8313]={ [1]={ [1]={ limit={ @@ -173470,7 +182351,7 @@ return { [1]="map_invasion_bosses_are_twinned" } }, - [7841]={ + [8314]={ [1]={ [1]={ limit={ @@ -173495,7 +182376,7 @@ return { [1]="map_invasion_bosses_drop_x_additional_vaal_orbs" } }, - [7842]={ + [8315]={ [1]={ [1]={ limit={ @@ -173511,7 +182392,7 @@ return { [1]="map_invasion_bosses_dropped_items_are_fully_linked" } }, - [7843]={ + [8316]={ [1]={ [1]={ limit={ @@ -173536,7 +182417,7 @@ return { [1]="map_invasion_bosses_dropped_items_have_x_additional_sockets" } }, - [7844]={ + [8317]={ [1]={ [1]={ limit={ @@ -173561,7 +182442,7 @@ return { [1]="map_invasion_monsters_guarded_by_x_magic_packs" } }, - [7845]={ + [8318]={ [1]={ [1]={ limit={ @@ -173577,7 +182458,7 @@ return { [1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity" } }, - [7846]={ + [8319]={ [1]={ [1]={ limit={ @@ -173606,7 +182487,7 @@ return { [1]="map_item_found_rarity_+%_per_15_rampage_stacks" } }, - [7847]={ + [8320]={ [1]={ [1]={ limit={ @@ -173622,7 +182503,7 @@ return { [1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%" } }, - [7848]={ + [8321]={ [1]={ [1]={ limit={ @@ -173647,7 +182528,7 @@ return { [1]="map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds" } }, - [7849]={ + [8322]={ [1]={ [1]={ limit={ @@ -173676,7 +182557,7 @@ return { [1]="map_labyrinth_izaro_area_of_effect_+%" } }, - [7850]={ + [8323]={ [1]={ [1]={ limit={ @@ -173705,7 +182586,7 @@ return { [1]="map_labyrinth_izaro_attack_cast_move_speed_+%" } }, - [7851]={ + [8324]={ [1]={ [1]={ limit={ @@ -173734,7 +182615,7 @@ return { [1]="map_labyrinth_izaro_damage_+%" } }, - [7852]={ + [8325]={ [1]={ [1]={ limit={ @@ -173763,7 +182644,7 @@ return { [1]="map_labyrinth_izaro_life_+%" } }, - [7853]={ + [8326]={ [1]={ [1]={ limit={ @@ -173792,7 +182673,7 @@ return { [1]="map_labyrinth_monsters_attack_cast_and_movement_speed_+%" } }, - [7854]={ + [8327]={ [1]={ [1]={ limit={ @@ -173821,7 +182702,7 @@ return { [1]="map_labyrinth_monsters_damage_+%" } }, - [7855]={ + [8328]={ [1]={ [1]={ limit={ @@ -173850,7 +182731,7 @@ return { [1]="map_labyrinth_monsters_life_+%" } }, - [7856]={ + [8329]={ [1]={ [1]={ limit={ @@ -173875,7 +182756,7 @@ return { [1]="map_leaguestone_area_contains_x_additional_leaguestones" } }, - [7857]={ + [8330]={ [1]={ [1]={ limit={ @@ -173904,7 +182785,7 @@ return { [1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final" } }, - [7858]={ + [8331]={ [1]={ [1]={ limit={ @@ -173920,7 +182801,7 @@ return { [1]="map_leaguestone_contains_warband_leader" } }, - [7859]={ + [8332]={ [1]={ [1]={ limit={ @@ -173963,7 +182844,7 @@ return { [1]="map_leaguestone_explicit_warband_type_override" } }, - [7860]={ + [8333]={ [1]={ [1]={ limit={ @@ -173979,7 +182860,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final" } }, - [7861]={ + [8334]={ [1]={ [1]={ limit={ @@ -173995,7 +182876,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final" } }, - [7862]={ + [8335]={ [1]={ [1]={ limit={ @@ -174024,7 +182905,7 @@ return { [1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final" } }, - [7863]={ + [8336]={ [1]={ [1]={ limit={ @@ -174076,7 +182957,7 @@ return { [1]="map_leaguestone_monolith_contains_essence_type" } }, - [7864]={ + [8337]={ [1]={ [1]={ limit={ @@ -174101,7 +182982,7 @@ return { [1]="map_leaguestone_override_base_num_breaches" } }, - [7865]={ + [8338]={ [1]={ [1]={ limit={ @@ -174126,7 +183007,7 @@ return { [1]="map_leaguestone_override_base_num_invasion_bosses" } }, - [7866]={ + [8339]={ [1]={ [1]={ limit={ @@ -174151,7 +183032,7 @@ return { [1]="map_leaguestone_override_base_num_monoliths" } }, - [7867]={ + [8340]={ [1]={ [1]={ limit={ @@ -174176,7 +183057,7 @@ return { [1]="map_leaguestone_override_base_num_perandus_chests" } }, - [7868]={ + [8341]={ [1]={ [1]={ limit={ @@ -174201,7 +183082,7 @@ return { [1]="map_leaguestone_override_base_num_prophecy_coins" } }, - [7869]={ + [8342]={ [1]={ [1]={ limit={ @@ -174226,7 +183107,7 @@ return { [1]="map_leaguestone_override_base_num_rogue_exiles" } }, - [7870]={ + [8343]={ [1]={ [1]={ limit={ @@ -174251,7 +183132,7 @@ return { [1]="map_leaguestone_override_base_num_shrines" } }, - [7871]={ + [8344]={ [1]={ [1]={ limit={ @@ -174276,7 +183157,7 @@ return { [1]="map_leaguestone_override_base_num_strongboxes" } }, - [7872]={ + [8345]={ [1]={ [1]={ limit={ @@ -174301,7 +183182,7 @@ return { [1]="map_leaguestone_override_base_num_talismans" } }, - [7873]={ + [8346]={ [1]={ [1]={ limit={ @@ -174326,7 +183207,7 @@ return { [1]="map_leaguestone_override_base_num_tormented_spirits" } }, - [7874]={ + [8347]={ [1]={ [1]={ limit={ @@ -174351,7 +183232,7 @@ return { [1]="map_leaguestone_override_base_num_warband_packs" } }, - [7875]={ + [8348]={ [1]={ [1]={ limit={ @@ -174367,7 +183248,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final" } }, - [7876]={ + [8349]={ [1]={ [1]={ limit={ @@ -174383,7 +183264,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final" } }, - [7877]={ + [8350]={ [1]={ [1]={ limit={ @@ -174399,7 +183280,7 @@ return { [1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final" } }, - [7878]={ + [8351]={ [1]={ [1]={ limit={ @@ -174424,7 +183305,7 @@ return { [1]="map_leaguestone_shrine_monster_rarity_override" } }, - [7879]={ + [8352]={ [1]={ [1]={ limit={ @@ -174458,7 +183339,7 @@ return { [1]="map_leaguestone_shrine_override_type" } }, - [7880]={ + [8353]={ [1]={ [1]={ limit={ @@ -174483,7 +183364,7 @@ return { [1]="map_leaguestone_strongboxes_rarity_override" } }, - [7881]={ + [8354]={ [1]={ [1]={ limit={ @@ -174499,7 +183380,7 @@ return { [1]="map_strongboxes_vaal_orb_drop_chance_%" } }, - [7882]={ + [8355]={ [1]={ [1]={ limit={ @@ -174515,7 +183396,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final" } }, - [7883]={ + [8356]={ [1]={ [1]={ limit={ @@ -174531,7 +183412,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final" } }, - [7884]={ + [8357]={ [1]={ [1]={ limit={ @@ -174556,7 +183437,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_abaxoth" } }, - [7885]={ + [8358]={ [1]={ [1]={ limit={ @@ -174581,7 +183462,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_random_beyond_boss" } }, - [7886]={ + [8359]={ [1]={ [1]={ limit={ @@ -174597,7 +183478,7 @@ return { [1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks" } }, - [7887]={ + [8360]={ [1]={ [1]={ limit={ @@ -174613,7 +183494,7 @@ return { [1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks" } }, - [7888]={ + [8361]={ [1]={ [1]={ limit={ @@ -174638,7 +183519,7 @@ return { [1]="map_legion_league_extra_spawns" } }, - [7889]={ + [8362]={ [1]={ [1]={ limit={ @@ -174654,7 +183535,7 @@ return { [1]="map_legion_league_force_general" } }, - [7890]={ + [8363]={ [1]={ [1]={ limit={ @@ -174670,7 +183551,7 @@ return { [1]="map_legion_league_force_war_chest" } }, - [7891]={ + [8364]={ [1]={ [1]={ limit={ @@ -174699,7 +183580,7 @@ return { [1]="map_legion_monster_life_+%_final_from_sextant" } }, - [7892]={ + [8365]={ [1]={ [1]={ limit={ @@ -174715,7 +183596,7 @@ return { [1]="map_legion_monster_splinter_emblem_drops_duplicated" } }, - [7893]={ + [8366]={ [1]={ [1]={ limit={ @@ -174731,7 +183612,39 @@ return { [1]="map_level_+" } }, - [7894]={ + [8367]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="A Verisium Remnant in Area will contain a Power Rune" + } + }, + stats={ + [1]="map_logbook_has_at_least_1_expedition2_remnant_with_a_power_rune" + } + }, + [8368]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="A Verisium Remnant in Area will have at least {0} Rune slots" + } + }, + stats={ + [1]="map_logbook_has_at_least_1_expedition2_remnant_with_at_least_x_slots" + } + }, + [8369]={ [1]={ [1]={ limit={ @@ -174747,7 +183660,7 @@ return { [1]="map_magic_items_drop_as_normal" } }, - [7895]={ + [8370]={ [1]={ [1]={ limit={ @@ -174776,7 +183689,7 @@ return { [1]="map_magic_monster_potency_+%" } }, - [7896]={ + [8371]={ [1]={ [1]={ limit={ @@ -174792,7 +183705,7 @@ return { [1]="map_magic_monsters_are_maimed" } }, - [7897]={ + [8372]={ [1]={ [1]={ limit={ @@ -174821,7 +183734,7 @@ return { [1]="map_magic_monsters_damage_taken_+%" } }, - [7898]={ + [8373]={ [1]={ [1]={ limit={ @@ -174837,7 +183750,7 @@ return { [1]="map_metamorph_all_metamorphs_have_rewards" } }, - [7899]={ + [8374]={ [1]={ [1]={ limit={ @@ -174862,7 +183775,7 @@ return { [1]="map_metamorph_boss_drops_additional_itemised_organs" } }, - [7900]={ + [8375]={ [1]={ [1]={ limit={ @@ -174878,7 +183791,7 @@ return { [1]="map_metamorph_catalyst_drops_duplicated" } }, - [7901]={ + [8376]={ [1]={ [1]={ limit={ @@ -174903,7 +183816,7 @@ return { [1]="map_metamorph_itemised_boss_min_rewards" } }, - [7902]={ + [8377]={ [1]={ [1]={ limit={ @@ -174919,7 +183832,7 @@ return { [1]="map_metamorph_itemised_boss_more_difficult" } }, - [7903]={ + [8378]={ [1]={ [1]={ limit={ @@ -174948,7 +183861,7 @@ return { [1]="map_metamorph_life_+%_final_from_sextant" } }, - [7904]={ + [8379]={ [1]={ [1]={ limit={ @@ -174964,23 +183877,7 @@ return { [1]="map_metamorphosis_league" } }, - [7905]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Monsters Imprisoned around Essences in Area are Magic" - } - }, - stats={ - [1]="map_mini_monolith_monsters_are_magic" - } - }, - [7906]={ + [8380]={ [1]={ [1]={ limit={ @@ -175009,7 +183906,7 @@ return { [1]="map_monolith_chance_+%" } }, - [7907]={ + [8381]={ [1]={ [1]={ limit={ @@ -175025,7 +183922,7 @@ return { [1]="map_monolith_chance_%" } }, - [7908]={ + [8382]={ [1]={ [1]={ limit={ @@ -175050,7 +183947,7 @@ return { [1]="map_monster_additional_abyssal_monolithic_slug_packs" } }, - [7909]={ + [8383]={ [1]={ [1]={ limit={ @@ -175075,7 +183972,7 @@ return { [1]="map_monster_additional_incursion_ChainedBeastBoss_packs" } }, - [7910]={ + [8384]={ [1]={ [1]={ limit={ @@ -175100,7 +183997,7 @@ return { [1]="map_monster_additional_incursion_SoulCoreQuadrilla_packs" } }, - [7911]={ + [8385]={ [1]={ [1]={ limit={ @@ -175125,7 +184022,7 @@ return { [1]="map_monster_additional_incursion_SoulcoreFusedSkeleton_packs" } }, - [7912]={ + [8386]={ [1]={ [1]={ limit={ @@ -175150,7 +184047,7 @@ return { [1]="map_monster_additional_incursion_VaalColossusBoss_packs" } }, - [7913]={ + [8387]={ [1]={ [1]={ limit={ @@ -175175,7 +184072,7 @@ return { [1]="map_monster_additional_incursion_VaalSentinelBoss_packs" } }, - [7914]={ + [8388]={ [1]={ [1]={ limit={ @@ -175200,7 +184097,7 @@ return { [1]="map_monster_additional_incursion_VaalSunPriestBoss_packs" } }, - [7915]={ + [8389]={ [1]={ [1]={ limit={ @@ -175225,7 +184122,7 @@ return { [1]="map_monster_additional_sanctified_packs" } }, - [7916]={ + [8390]={ [1]={ [1]={ limit={ @@ -175254,7 +184151,7 @@ return { [1]="map_monster_and_player_onslaught_effect_+%" } }, - [7917]={ + [8391]={ [1]={ [1]={ limit={ @@ -175283,7 +184180,7 @@ return { [1]="map_monster_attack_cast_and_movement_speed_+%" } }, - [7918]={ + [8392]={ [1]={ [1]={ limit={ @@ -175312,7 +184209,7 @@ return { [1]="map_monster_beyond_portal_chance_+%" } }, - [7919]={ + [8393]={ [1]={ [1]={ limit={ @@ -175341,7 +184238,7 @@ return { [1]="map_monster_curse_effect_on_self_+%" } }, - [7920]={ + [8394]={ [1]={ [1]={ limit={ @@ -175370,7 +184267,7 @@ return { [1]="map_monster_damage_taken_+%_final_from_atlas_keystone" } }, - [7921]={ + [8395]={ [1]={ [1]={ limit={ @@ -175399,7 +184296,7 @@ return { [1]="map_monster_damage_taken_+%_while_possessed" } }, - [7922]={ + [8396]={ [1]={ [1]={ limit={ @@ -175424,7 +184321,7 @@ return { [1]="map_monster_add_x_grasping_vines_on_hit" } }, - [7923]={ + [8397]={ [1]={ [1]={ limit={ @@ -175440,7 +184337,7 @@ return { [1]="map_monster_item_rarity_+%_final" } }, - [7924]={ + [8398]={ [1]={ [1]={ limit={ @@ -175469,36 +184366,7 @@ return { [1]="map_monster_non_damaging_ailment_effect_+%_on_self" } }, - [7925]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Monsters have {0}% increased Effectiveness" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Monsters have {0}% increased Effectiveness" - } - }, - stats={ - [1]="map_monster_potency_+%" - } - }, - [7926]={ + [8399]={ [1]={ [1]={ limit={ @@ -175527,7 +184395,7 @@ return { [1]="map_monsters_skill_speed_+%" } }, - [7927]={ + [8400]={ [1]={ [1]={ limit={ @@ -175556,7 +184424,7 @@ return { [1]="map_monster_slain_experience_+%" } }, - [7928]={ + [8401]={ [1]={ [1]={ limit={ @@ -175585,7 +184453,7 @@ return { [1]="map_monsters_accuracy_rating_+%" } }, - [7929]={ + [8402]={ [1]={ [1]={ limit={ @@ -175618,7 +184486,7 @@ return { [1]="map_monsters_action_speed_-%" } }, - [7930]={ + [8403]={ [1]={ [1]={ limit={ @@ -175643,7 +184511,7 @@ return { [1]="map_monsters_add_endurance_charge_on_hit_%" } }, - [7931]={ + [8404]={ [1]={ [1]={ limit={ @@ -175668,7 +184536,7 @@ return { [1]="map_monsters_add_frenzy_charge_on_hit_%" } }, - [7932]={ + [8405]={ [1]={ [1]={ limit={ @@ -175693,7 +184561,7 @@ return { [1]="map_monsters_add_power_charge_on_hit_%" } }, - [7933]={ + [8406]={ [1]={ [1]={ limit={ @@ -175709,7 +184577,7 @@ return { [1]="map_monsters_additional_chaos_resistance" } }, - [7934]={ + [8407]={ [1]={ [1]={ limit={ @@ -175725,7 +184593,7 @@ return { [1]="map_monsters_additional_dexterity_ratio_%_for_evasion" } }, - [7935]={ + [8408]={ [1]={ [1]={ limit={ @@ -175741,7 +184609,7 @@ return { [1]="map_monsters_additional_elemental_resistance" } }, - [7936]={ + [8409]={ [1]={ [1]={ limit={ @@ -175757,7 +184625,7 @@ return { [1]="map_monsters_additional_maximum_all_elemental_resistances_%" } }, - [7937]={ + [8410]={ [1]={ [1]={ limit={ @@ -175773,7 +184641,7 @@ return { [1]="map_monsters_additional_strength_ratio_%_for_armour" } }, - [7938]={ + [8411]={ [1]={ [1]={ limit={ @@ -175789,7 +184657,7 @@ return { [1]="map_monsters_ailment_threshold_+%" } }, - [7939]={ + [8412]={ [1]={ [1]={ limit={ @@ -175805,7 +184673,7 @@ return { [1]="map_monsters_all_damage_can_chill" } }, - [7940]={ + [8413]={ [1]={ [1]={ limit={ @@ -175821,7 +184689,7 @@ return { [1]="map_monsters_all_damage_can_freeze" } }, - [7941]={ + [8414]={ [1]={ [1]={ limit={ @@ -175837,7 +184705,7 @@ return { [1]="map_monsters_all_damage_can_ignite" } }, - [7942]={ + [8415]={ [1]={ [1]={ limit={ @@ -175853,7 +184721,7 @@ return { [1]="map_monsters_all_damage_can_poison" } }, - [7943]={ + [8416]={ [1]={ [1]={ limit={ @@ -175869,7 +184737,7 @@ return { [1]="map_monsters_all_damage_can_shock" } }, - [7944]={ + [8417]={ [1]={ [1]={ limit={ @@ -175885,7 +184753,7 @@ return { [1]="map_monsters_always_crit" } }, - [7945]={ + [8418]={ [1]={ [1]={ limit={ @@ -175901,7 +184769,7 @@ return { [1]="map_monsters_always_hit" } }, - [7946]={ + [8419]={ [1]={ [1]={ limit={ @@ -175917,7 +184785,7 @@ return { [1]="map_monsters_always_ignite" } }, - [7947]={ + [8420]={ [1]={ [1]={ limit={ @@ -175933,7 +184801,7 @@ return { [1]="map_monsters_are_converted_on_kill" } }, - [7948]={ + [8421]={ [1]={ [1]={ limit={ @@ -175949,7 +184817,7 @@ return { [1]="map_monsters_armour_break_physical_damage_%_dealt_as_armour_break" } }, - [7949]={ + [8422]={ [1]={ [1]={ limit={ @@ -175965,7 +184833,7 @@ return { [1]="map_monsters_avoid_poison_bleed_impale_%" } }, - [7950]={ + [8423]={ [1]={ [1]={ limit={ @@ -175994,7 +184862,7 @@ return { [1]="map_monsters_base_bleed_duration_+%" } }, - [7951]={ + [8424]={ [1]={ [1]={ limit={ @@ -176010,7 +184878,7 @@ return { [1]="map_monsters_base_block_%" } }, - [7952]={ + [8425]={ [1]={ [1]={ limit={ @@ -176035,7 +184903,7 @@ return { [1]="map_monsters_base_chance_to_freeze_%" } }, - [7953]={ + [8426]={ [1]={ [1]={ limit={ @@ -176060,7 +184928,7 @@ return { [1]="map_monsters_base_chance_to_shock_%" } }, - [7954]={ + [8427]={ [1]={ [1]={ limit={ @@ -176089,7 +184957,7 @@ return { [1]="map_monsters_base_poison_duration_+%" } }, - [7955]={ + [8428]={ [1]={ [1]={ limit={ @@ -176105,7 +184973,7 @@ return { [1]="map_monsters_cannot_be_taunted" } }, - [7956]={ + [8429]={ [1]={ [1]={ limit={ @@ -176130,7 +184998,7 @@ return { [1]="map_monsters_chance_to_blind_on_hit_%" } }, - [7957]={ + [8430]={ [1]={ [1]={ limit={ @@ -176155,7 +185023,7 @@ return { [1]="map_monsters_chance_to_impale_%" } }, - [7958]={ + [8431]={ [1]={ [1]={ limit={ @@ -176171,7 +185039,7 @@ return { [1]="map_monsters_chance_to_inflict_bleeding_%" } }, - [7959]={ + [8432]={ [1]={ [1]={ limit={ @@ -176196,7 +185064,7 @@ return { [1]="map_monsters_chance_to_inflict_brittle_%" } }, - [7960]={ + [8433]={ [1]={ [1]={ limit={ @@ -176221,7 +185089,7 @@ return { [1]="map_monsters_chance_to_inflict_sapped_%" } }, - [7961]={ + [8434]={ [1]={ [1]={ limit={ @@ -176237,7 +185105,7 @@ return { [1]="map_monsters_chance_to_poison_on_hit_%" } }, - [7962]={ + [8435]={ [1]={ [1]={ limit={ @@ -176262,7 +185130,7 @@ return { [1]="map_monsters_chance_to_scorch_%" } }, - [7963]={ + [8436]={ [1]={ [1]={ limit={ @@ -176295,7 +185163,7 @@ return { [1]="map_monsters_curse_effect_on_self_+%_final" } }, - [7964]={ + [8437]={ [1]={ [1]={ limit={ @@ -176324,7 +185192,7 @@ return { [1]="map_monsters_damage_taken_+%" } }, - [7965]={ + [8438]={ [1]={ [1]={ limit={ @@ -176340,7 +185208,36 @@ return { [1]="map_monsters_drop_no_equipment" } }, - [7966]={ + [8439]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monster have {0}% increased Elemental Ailment Application" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Monster have {0}% reduced Elemental Ailment Application" + } + }, + stats={ + [1]="map_monsters_elemental_ailment_chance_+%" + } + }, + [8440]={ [1]={ [1]={ limit={ @@ -176356,7 +185253,7 @@ return { [1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit" } }, - [7967]={ + [8441]={ [1]={ [1]={ limit={ @@ -176385,7 +185282,7 @@ return { [1]="map_monsters_freeze_duration_+%" } }, - [7968]={ + [8442]={ [1]={ [1]={ limit={ @@ -176401,7 +185298,7 @@ return { [1]="map_monsters_attacks_inflict_bleeding_on_hit" } }, - [7969]={ + [8443]={ [1]={ [1]={ limit={ @@ -176417,7 +185314,7 @@ return { [1]="map_monsters_global_poison_on_hit" } }, - [7970]={ + [8444]={ [1]={ [1]={ limit={ @@ -176433,7 +185330,7 @@ return { [1]="map_monsters_hit_damage_freeze_multiplier_+%" } }, - [7971]={ + [8445]={ [1]={ [1]={ limit={ @@ -176449,7 +185346,7 @@ return { [1]="map_monsters_hit_damage_stun_multiplier_+%" } }, - [7972]={ + [8446]={ [1]={ [1]={ limit={ @@ -176465,7 +185362,7 @@ return { [1]="map_monsters_ignite_chance_+%" } }, - [7973]={ + [8447]={ [1]={ [1]={ limit={ @@ -176494,7 +185391,7 @@ return { [1]="map_monsters_ignite_duration_+%" } }, - [7974]={ + [8448]={ [1]={ [1]={ limit={ @@ -176519,7 +185416,7 @@ return { [1]="map_monsters_maim_on_hit_%_chance" } }, - [7975]={ + [8449]={ [1]={ [1]={ limit={ @@ -176535,23 +185432,7 @@ return { [1]="map_monsters_maximum_life_%_to_add_to_maximum_energy_shield" } }, - [7976]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Natural Monster Packs in Area are in a Union of Souls" - } - }, - stats={ - [1]="map_monsters_monster_difficulty_tankiness_+%_granted_to_pack_members_on_death" - } - }, - [7977]={ + [8450]={ [1]={ [1]={ limit={ @@ -176567,7 +185448,7 @@ return { [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" } }, - [7978]={ + [8451]={ [1]={ [1]={ limit={ @@ -176583,7 +185464,7 @@ return { [1]="map_monsters_penetrate_elemental_resistances_%" } }, - [7979]={ + [8452]={ [1]={ [1]={ limit={ @@ -176599,7 +185480,7 @@ return { [1]="map_monsters_%_chance_to_inflict_status_ailments" } }, - [7980]={ + [8453]={ [1]={ [1]={ limit={ @@ -176615,7 +185496,7 @@ return { [1]="map_monsters_reduce_enemy_chaos_resistance_%" } }, - [7981]={ + [8454]={ [1]={ [1]={ limit={ @@ -176631,7 +185512,7 @@ return { [1]="map_monsters_reduce_enemy_cold_resistance_%" } }, - [7982]={ + [8455]={ [1]={ [1]={ limit={ @@ -176647,7 +185528,7 @@ return { [1]="map_monsters_reduce_enemy_fire_resistance_%" } }, - [7983]={ + [8456]={ [1]={ [1]={ limit={ @@ -176663,7 +185544,7 @@ return { [1]="map_monsters_reduce_enemy_lightning_resistance_%" } }, - [7984]={ + [8457]={ [1]={ [1]={ limit={ @@ -176688,7 +185569,7 @@ return { [1]="map_monsters_remove_charges_on_hit_%" } }, - [7985]={ + [8458]={ [1]={ [1]={ limit={ @@ -176704,7 +185585,7 @@ return { [1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance" } }, - [7986]={ + [8459]={ [1]={ [1]={ limit={ @@ -176720,7 +185601,7 @@ return { [1]="map_monsters_remove_%_of_mana_on_hit" } }, - [7987]={ + [8460]={ [1]={ [1]={ limit={ @@ -176736,7 +185617,7 @@ return { [1]="map_monsters_shock_chance_+%" } }, - [7988]={ + [8461]={ [1]={ [1]={ limit={ @@ -176765,7 +185646,7 @@ return { [1]="map_monsters_shock_effect_+%" } }, - [7989]={ + [8462]={ [1]={ [1]={ limit={ @@ -176790,7 +185671,7 @@ return { [1]="map_monsters_spawned_with_talisman_drop_additional_rare_items" } }, - [7990]={ + [8463]={ [1]={ [1]={ limit={ @@ -176815,7 +185696,7 @@ return { [1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance" } }, - [7991]={ + [8464]={ [1]={ [1]={ limit={ @@ -176840,7 +185721,7 @@ return { [1]="map_monsters_steal_charges" } }, - [7992]={ + [8465]={ [1]={ [1]={ limit={ @@ -176856,7 +185737,7 @@ return { [1]="map_monsters_stun_threshold_+%" } }, - [7993]={ + [8466]={ [1]={ [1]={ limit={ @@ -176881,7 +185762,7 @@ return { [1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins" } }, - [7994]={ + [8467]={ [1]={ [1]={ limit={ @@ -176897,7 +185778,7 @@ return { [1]="map_monsters_unaffected_by_curses" } }, - [7995]={ + [8468]={ [1]={ [1]={ limit={ @@ -176922,7 +185803,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_currency_items" } }, - [7996]={ + [8469]={ [1]={ [1]={ limit={ @@ -176947,7 +185828,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_rare_items" } }, - [7997]={ + [8470]={ [1]={ [1]={ limit={ @@ -176972,7 +185853,7 @@ return { [1]="map_monsters_withered_on_hit_for_2_seconds_%_chance" } }, - [7998]={ + [8471]={ [1]={ [1]={ limit={ @@ -176988,7 +185869,7 @@ return { [1]="map_monstrous_treasure_no_monsters" } }, - [7999]={ + [8472]={ [1]={ [1]={ limit={ @@ -177017,7 +185898,7 @@ return { [1]="map_movement_velocity_+%_per_poison_stack" } }, - [8000]={ + [8473]={ [1]={ [1]={ limit={ @@ -177033,7 +185914,7 @@ return { [1]="map_natural_rare_monsters_have_soul_eater" } }, - [8001]={ + [8474]={ [1]={ [1]={ limit={ @@ -177058,23 +185939,7 @@ return { [1]="map_natural_rare_monsters_have_x_additional_abyssal_modifiers" } }, - [8002]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Natural Rare Monsters in Area are in a Union of Souls with the Map Boss" - } - }, - stats={ - [1]="map_natural_rare_monsters_in_union_of_souls_with_boss" - } - }, - [8003]={ + [8475]={ [1]={ [1]={ limit={ @@ -177099,7 +185964,7 @@ return { [1]="map_nemesis_dropped_items_+" } }, - [8004]={ + [8476]={ [1]={ [1]={ limit={ @@ -177124,7 +185989,7 @@ return { [1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs" } }, - [8005]={ + [8477]={ [1]={ [1]={ limit={ @@ -177149,7 +186014,7 @@ return { [1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs" } }, - [8006]={ + [8478]={ [1]={ [1]={ limit={ @@ -177165,7 +186030,7 @@ return { [1]="map_no_magic_items_drop" } }, - [8007]={ + [8479]={ [1]={ [1]={ limit={ @@ -177181,7 +186046,7 @@ return { [1]="map_no_rare_items_drop" } }, - [8008]={ + [8480]={ [1]={ [1]={ limit={ @@ -177197,7 +186062,7 @@ return { [1]="map_no_stashes" } }, - [8009]={ + [8481]={ [1]={ [1]={ limit={ @@ -177213,7 +186078,7 @@ return { [1]="map_no_uniques_drop_randomly" } }, - [8010]={ + [8482]={ [1]={ [1]={ limit={ @@ -177229,7 +186094,7 @@ return { [1]="map_no_vendors" } }, - [8011]={ + [8483]={ [1]={ [1]={ limit={ @@ -177245,7 +186110,7 @@ return { [1]="map_non_unique_items_drop_normal" } }, - [8012]={ + [8484]={ [1]={ [1]={ [1]={ @@ -177265,7 +186130,7 @@ return { [1]="map_non_unique_monster_life_regeneration_rate_per_minute_%" } }, - [8013]={ + [8485]={ [1]={ [1]={ limit={ @@ -177281,7 +186146,7 @@ return { [1]="map_normal_items_drop_as_magic" } }, - [8014]={ + [8486]={ [1]={ [1]={ limit={ @@ -177310,7 +186175,7 @@ return { [1]="map_normal_monster_potency_+%" } }, - [8015]={ + [8487]={ [1]={ [1]={ limit={ @@ -177326,7 +186191,7 @@ return { [1]="map_nuke_everything" } }, - [8016]={ + [8488]={ [1]={ [1]={ limit={ @@ -177351,7 +186216,7 @@ return { [1]="map_num_extra_abysses" } }, - [8017]={ + [8489]={ [1]={ [1]={ limit={ @@ -177367,7 +186232,7 @@ return { [1]="map_num_extra_blights_" } }, - [8018]={ + [8490]={ [1]={ [1]={ limit={ @@ -177392,7 +186257,7 @@ return { [1]="map_num_extra_gloom_shrines" } }, - [8019]={ + [8491]={ [1]={ [1]={ limit={ @@ -177417,7 +186282,7 @@ return { [1]="map_num_extra_harbingers" } }, - [8020]={ + [8492]={ [1]={ [1]={ limit={ @@ -177442,7 +186307,7 @@ return { [1]="map_num_extra_resonating_shrines" } }, - [8021]={ + [8493]={ [1]={ [1]={ limit={ @@ -177467,7 +186332,7 @@ return { [1]="map_num_extra_stone_circles" } }, - [8022]={ + [8494]={ [1]={ [1]={ limit={ @@ -177492,7 +186357,7 @@ return { [1]="map_number_of_additional_mods" } }, - [8023]={ + [8495]={ [1]={ [1]={ limit={ @@ -177517,7 +186382,7 @@ return { [1]="map_number_of_additional_prefixes" } }, - [8024]={ + [8496]={ [1]={ [1]={ limit={ @@ -177542,7 +186407,7 @@ return { [1]="map_number_of_additional_silver_coin_drops" } }, - [8025]={ + [8497]={ [1]={ [1]={ limit={ @@ -177567,7 +186432,7 @@ return { [1]="map_number_of_additional_suffixes" } }, - [8026]={ + [8498]={ [1]={ [1]={ limit={ @@ -177592,7 +186457,7 @@ return { [1]="map_on_complete_drop_x_additional_maps" } }, - [8027]={ + [8499]={ [1]={ [1]={ limit={ @@ -177608,7 +186473,7 @@ return { [1]="map_owner_sulphite_gained_+%" } }, - [8028]={ + [8500]={ [1]={ [1]={ limit={ @@ -177624,7 +186489,7 @@ return { [1]="map_packs_are_abomination_monsters" } }, - [8029]={ + [8501]={ [1]={ [1]={ limit={ @@ -177640,7 +186505,7 @@ return { [1]="map_packs_are_blackguards" } }, - [8030]={ + [8502]={ [1]={ [1]={ limit={ @@ -177656,7 +186521,7 @@ return { [1]="map_packs_are_ghosts" } }, - [8031]={ + [8503]={ [1]={ [1]={ limit={ @@ -177672,7 +186537,7 @@ return { [1]="map_packs_are_kitava" } }, - [8032]={ + [8504]={ [1]={ [1]={ limit={ @@ -177688,7 +186553,7 @@ return { [1]="map_packs_are_lunaris" } }, - [8033]={ + [8505]={ [1]={ [1]={ limit={ @@ -177704,7 +186569,7 @@ return { [1]="map_packs_are_solaris" } }, - [8034]={ + [8506]={ [1]={ [1]={ limit={ @@ -177720,7 +186585,7 @@ return { [1]="map_packs_are_spiders" } }, - [8035]={ + [8507]={ [1]={ [1]={ limit={ @@ -177736,7 +186601,7 @@ return { [1]="map_packs_are_vaal" } }, - [8036]={ + [8508]={ [1]={ [1]={ limit={ @@ -177752,7 +186617,7 @@ return { [1]="map_perandus_guards_are_rare" } }, - [8037]={ + [8509]={ [1]={ [1]={ limit={ @@ -177768,7 +186633,7 @@ return { [1]="map_perandus_monsters_drop_perandus_coin_stack_%" } }, - [8038]={ + [8510]={ [1]={ [1]={ limit={ @@ -177797,7 +186662,7 @@ return { [1]="map_player_accuracy_rating_+%_final" } }, - [8039]={ + [8511]={ [1]={ [1]={ limit={ @@ -177826,7 +186691,7 @@ return { [1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught" } }, - [8040]={ + [8512]={ [1]={ [1]={ limit={ @@ -177851,7 +186716,7 @@ return { [1]="map_player_buff_time_passed_+%_only_buff_category" } }, - [8041]={ + [8513]={ [1]={ [1]={ limit={ @@ -177867,7 +186732,7 @@ return { [1]="map_player_cannot_block_attacks" } }, - [8042]={ + [8514]={ [1]={ [1]={ limit={ @@ -177892,7 +186757,7 @@ return { [1]="map_player_chance_to_gain_vaal_soul_on_kill_%" } }, - [8043]={ + [8515]={ [1]={ [1]={ limit={ @@ -177925,7 +186790,7 @@ return { [1]="map_player_charges_gained_+%" } }, - [8044]={ + [8516]={ [1]={ [1]={ limit={ @@ -177954,7 +186819,7 @@ return { [1]="map_player_cooldown_speed_+%_final" } }, - [8045]={ + [8517]={ [1]={ [1]={ limit={ @@ -177979,7 +186844,7 @@ return { [1]="map_player_create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [8046]={ + [8518]={ [1]={ [1]={ limit={ @@ -178008,7 +186873,7 @@ return { [1]="map_player_curse_effect_on_self_+%" } }, - [8047]={ + [8519]={ [1]={ [1]={ limit={ @@ -178024,7 +186889,7 @@ return { [1]="map_player_damage_+%_vs_breach_monsters" } }, - [8048]={ + [8520]={ [1]={ [1]={ limit={ @@ -178057,7 +186922,7 @@ return { [1]="map_player_damage_taken_+%_vs_breach_monsters" } }, - [8049]={ + [8521]={ [1]={ [1]={ limit={ @@ -178090,7 +186955,7 @@ return { [1]="map_player_damage_taken_+%_while_rampaging" } }, - [8050]={ + [8522]={ [1]={ [1]={ [1]={ @@ -178136,7 +187001,7 @@ return { [1]="map_player_death_mark_on_rare_unique_kill_ms" } }, - [8051]={ + [8523]={ [1]={ [1]={ limit={ @@ -178152,7 +187017,7 @@ return { [1]="map_player_disable_soul_gain_prevention" } }, - [8052]={ + [8524]={ [1]={ [1]={ limit={ @@ -178168,7 +187033,7 @@ return { [1]="map_player_flask_recovery_is_instant" } }, - [8053]={ + [8525]={ [1]={ [1]={ limit={ @@ -178184,7 +187049,7 @@ return { [1]="map_player_has_random_level_X_curse_every_10_seconds" } }, - [8054]={ + [8526]={ [1]={ [1]={ limit={ @@ -178217,7 +187082,7 @@ return { [1]="map_player_life_and_es_recovery_speed_+%_final" } }, - [8055]={ + [8527]={ [1]={ [1]={ [1]={ @@ -178237,7 +187102,7 @@ return { [1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks" } }, - [8056]={ + [8528]={ [1]={ [1]={ limit={ @@ -178284,7 +187149,7 @@ return { [2]="map_no_experience" } }, - [8057]={ + [8529]={ [1]={ [1]={ limit={ @@ -178313,7 +187178,7 @@ return { [1]="map_player_maximum_life_and_es_+%_final_from_sanctum_curse" } }, - [8058]={ + [8530]={ [1]={ [1]={ limit={ @@ -178342,7 +187207,7 @@ return { [1]="map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse" } }, - [8059]={ + [8531]={ [1]={ [1]={ limit={ @@ -178358,7 +187223,7 @@ return { [1]="map_player_movement_velocity_+%" } }, - [8060]={ + [8532]={ [1]={ [1]={ limit={ @@ -178387,7 +187252,7 @@ return { [1]="map_player_non_curse_aura_effect_+%" } }, - [8061]={ + [8533]={ [1]={ [1]={ limit={ @@ -178412,7 +187277,7 @@ return { [1]="map_player_onslaught_on_kill_%" } }, - [8062]={ + [8534]={ [1]={ [1]={ limit={ @@ -178441,7 +187306,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [8063]={ + [8535]={ [1]={ [1]={ limit={ @@ -178457,7 +187322,7 @@ return { [1]="map_player_shrine_effect_duration_+%" } }, - [8064]={ + [8536]={ [1]={ [1]={ limit={ @@ -178473,7 +187338,7 @@ return { [1]="map_player_soul_eater_souls_stolen_on_rare_kill" } }, - [8065]={ + [8537]={ [1]={ [1]={ limit={ @@ -178502,7 +187367,7 @@ return { [1]="map_player_speed_+%_final_per_recent_skill_use" } }, - [8066]={ + [8538]={ [1]={ [1]={ limit={ @@ -178531,7 +187396,7 @@ return { [1]="map_players_and_monsters_chaos_damage_taken_+%" } }, - [8067]={ + [8539]={ [1]={ [1]={ limit={ @@ -178560,7 +187425,7 @@ return { [1]="map_players_and_monsters_cold_damage_taken_+%" } }, - [8068]={ + [8540]={ [1]={ [1]={ limit={ @@ -178589,7 +187454,7 @@ return { [1]="map_players_and_monsters_critical_strike_chance_+%" } }, - [8069]={ + [8541]={ [1]={ [1]={ limit={ @@ -178605,7 +187470,7 @@ return { [1]="map_players_and_monsters_curses_are_reflected" } }, - [8070]={ + [8542]={ [1]={ [1]={ limit={ @@ -178634,7 +187499,7 @@ return { [1]="map_players_and_monsters_damage_+%_per_curse" } }, - [8071]={ + [8543]={ [1]={ [1]={ limit={ @@ -178650,7 +187515,7 @@ return { [1]="map_players_and_monsters_damage_taken_+%_while_stationary" } }, - [8072]={ + [8544]={ [1]={ [1]={ limit={ @@ -178679,7 +187544,7 @@ return { [1]="map_players_and_monsters_fire_damage_taken_+%" } }, - [8073]={ + [8545]={ [1]={ [1]={ limit={ @@ -178695,7 +187560,7 @@ return { [1]="map_players_and_monsters_have_onslaught_if_hit_recently" } }, - [8074]={ + [8546]={ [1]={ [1]={ limit={ @@ -178711,7 +187576,7 @@ return { [1]="map_players_and_monsters_have_resolute_technique" } }, - [8075]={ + [8547]={ [1]={ [1]={ limit={ @@ -178740,7 +187605,7 @@ return { [1]="map_players_and_monsters_lightning_damage_taken_+%" } }, - [8076]={ + [8548]={ [1]={ [1]={ limit={ @@ -178756,7 +187621,7 @@ return { [1]="map_players_and_monsters_movement_speed_+%" } }, - [8077]={ + [8549]={ [1]={ [1]={ limit={ @@ -178785,7 +187650,7 @@ return { [1]="map_players_and_monsters_physical_damage_taken_+%" } }, - [8078]={ + [8550]={ [1]={ [1]={ limit={ @@ -178801,7 +187666,7 @@ return { [1]="map_players_are_poisoned_while_moving_chaos_damage_per_second" } }, - [8079]={ + [8551]={ [1]={ [1]={ limit={ @@ -178834,7 +187699,7 @@ return { [1]="map_players_armour_+%_final" } }, - [8080]={ + [8552]={ [1]={ [1]={ limit={ @@ -178867,7 +187732,7 @@ return { [1]="map_players_block_chance_+%" } }, - [8081]={ + [8553]={ [1]={ [1]={ limit={ @@ -178883,7 +187748,7 @@ return { [1]="map_players_cannot_gain_endurance_charges" } }, - [8082]={ + [8554]={ [1]={ [1]={ limit={ @@ -178899,7 +187764,7 @@ return { [1]="map_players_cannot_gain_flask_charges" } }, - [8083]={ + [8555]={ [1]={ [1]={ limit={ @@ -178915,7 +187780,7 @@ return { [1]="map_players_cannot_gain_frenzy_charges" } }, - [8084]={ + [8556]={ [1]={ [1]={ limit={ @@ -178931,7 +187796,7 @@ return { [1]="map_players_cannot_gain_power_charges" } }, - [8085]={ + [8557]={ [1]={ [1]={ limit={ @@ -178947,7 +187812,7 @@ return { [1]="map_players_cannot_take_reflected_damage" } }, - [8086]={ + [8558]={ [1]={ [1]={ [1]={ @@ -178967,7 +187832,7 @@ return { [1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms" } }, - [8087]={ + [8559]={ [1]={ [1]={ limit={ @@ -178992,7 +187857,7 @@ return { [1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [8088]={ + [8560]={ [1]={ [1]={ [1]={ @@ -179012,7 +187877,7 @@ return { [1]="map_players_gain_onslaught_after_opening_a_strongbox_ms" } }, - [8089]={ + [8561]={ [1]={ [1]={ limit={ @@ -179028,7 +187893,7 @@ return { [1]="map_players_gain_onslaught_during_flask_effect" } }, - [8090]={ + [8562]={ [1]={ [1]={ limit={ @@ -179044,7 +187909,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_%_chance" } }, - [8091]={ + [8563]={ [1]={ [1]={ limit={ @@ -179060,7 +187925,7 @@ return { [1]="map_players_have_decay_rarity_buff" } }, - [8092]={ + [8564]={ [1]={ [1]={ limit={ @@ -179076,7 +187941,7 @@ return { [1]="map_players_have_point_blank" } }, - [8093]={ + [8565]={ [1]={ [1]={ limit={ @@ -179092,7 +187957,7 @@ return { [1]="map_players_movement_skills_cooldown_speed_+%" } }, - [8094]={ + [8566]={ [1]={ [1]={ limit={ @@ -179121,7 +187986,7 @@ return { [1]="map_players_movement_speed_+%" } }, - [8095]={ + [8567]={ [1]={ [1]={ limit={ @@ -179137,7 +188002,7 @@ return { [1]="map_players_no_regeneration_including_es" } }, - [8096]={ + [8568]={ [1]={ [1]={ limit={ @@ -179153,7 +188018,7 @@ return { [1]="map_players_resist_all_%" } }, - [8097]={ + [8569]={ [1]={ [1]={ limit={ @@ -179186,7 +188051,7 @@ return { [1]="map_players_skill_area_of_effect_+%_final" } }, - [8098]={ + [8570]={ [1]={ [1]={ limit={ @@ -179195,14 +188060,14 @@ return { [2]="#" } }, - text="Map Portals do not expire" + text="Area allows unlimited Revivals" } }, stats={ [1]="map_portals_do_not_expire" } }, - [8099]={ + [8571]={ [1]={ [1]={ limit={ @@ -179227,7 +188092,7 @@ return { [1]="map_possessed_monsters_drop_gilded_scarab_chance_%" } }, - [8100]={ + [8572]={ [1]={ [1]={ limit={ @@ -179252,7 +188117,7 @@ return { [1]="map_possessed_monsters_drop_map_chance_%" } }, - [8101]={ + [8573]={ [1]={ [1]={ limit={ @@ -179277,7 +188142,7 @@ return { [1]="map_possessed_monsters_drop_polished_scarab_chance_%" } }, - [8102]={ + [8574]={ [1]={ [1]={ limit={ @@ -179302,7 +188167,7 @@ return { [1]="map_possessed_monsters_drop_rusted_scarab_chance_%" } }, - [8103]={ + [8575]={ [1]={ [1]={ limit={ @@ -179327,7 +188192,7 @@ return { [1]="map_possessed_monsters_drop_unique_chance_%" } }, - [8104]={ + [8576]={ [1]={ [1]={ limit={ @@ -179352,7 +188217,7 @@ return { [1]="map_possessed_monsters_drop_winged_scarab_chance_%" } }, - [8105]={ + [8577]={ [1]={ [1]={ limit={ @@ -179381,7 +188246,7 @@ return { [1]="map_prefix_mod_effect_+%_final" } }, - [8106]={ + [8578]={ [1]={ [1]={ limit={ @@ -179410,7 +188275,7 @@ return { [1]="map_rampage_time_+%" } }, - [8107]={ + [8579]={ [1]={ [1]={ limit={ @@ -179426,7 +188291,7 @@ return { [1]="map_random_unique_monster_is_possessed" } }, - [8108]={ + [8580]={ [1]={ [1]={ limit={ @@ -179442,7 +188307,7 @@ return { [1]="map_random_zana_mod" } }, - [8109]={ + [8581]={ [1]={ [1]={ limit={ @@ -179458,7 +188323,7 @@ return { [1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%" } }, - [8110]={ + [8582]={ [1]={ [1]={ limit={ @@ -179483,77 +188348,23 @@ return { [1]="map_rare_breach_monsters_drop_additional_shards" } }, - [8111]={ + [8583]={ [1]={ [1]={ limit={ [1]={ - [1]=1, - [2]="#" - } - }, - text="Rare Monsters have a {0}% chance to have an additional Modifier" - }, - [2]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } - }, - text="Rare Monsters have an additional Modifier" - }, - [3]={ - limit={ - [1]={ - [1]=101, - [2]=199 - } - }, - text="Rare Monsters have an additional Modifier and a {0}% chance to have another additional Modifier" - }, - [4]={ - limit={ - [1]={ - [1]=200, - [2]=200 - } - }, - text="Rare Monsters have two additional Modifiers" - }, - [5]={ - limit={ - [1]={ - [1]=201, - [2]=299 - } - }, - text="Rare Monsters have two additional Modifiers and a {0}% chance to have another additional Modifier" - }, - [6]={ - limit={ - [1]={ - [1]=300, - [2]=300 - } - }, - text="Rare Monsters have three additional Modifiers" - }, - [7]={ - limit={ - [1]={ - [1]=301, + [1]="#", [2]="#" } }, - text="Rare Monsters have three additional Modifiers and a {0}% chance to have another additional Modifier" + text="Rare Monsters have a {0}% Surpassing chance to have an additional Modifier" } }, stats={ [1]="map_rare_monster_additional_modifier_chance_%_with_rollover" } }, - [8112]={ + [8584]={ [1]={ [1]={ limit={ @@ -179578,7 +188389,7 @@ return { [1]="map_rare_monster_num_additional_modifiers" } }, - [8113]={ + [8585]={ [1]={ [1]={ limit={ @@ -179607,7 +188418,7 @@ return { [1]="map_rare_monster_potency_+%" } }, - [8114]={ + [8586]={ [1]={ [1]={ limit={ @@ -179640,7 +188451,7 @@ return { [1]="map_rare_monsters_are_hindered" } }, - [8115]={ + [8587]={ [1]={ [1]={ limit={ @@ -179665,7 +188476,7 @@ return { [1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%" } }, - [8116]={ + [8588]={ [1]={ [1]={ limit={ @@ -179690,7 +188501,7 @@ return { [1]="map_rare_monsters_drop_x_additional_rare_items" } }, - [8117]={ + [8589]={ [1]={ [1]={ limit={ @@ -179706,7 +188517,7 @@ return { [1]="map_rare_monsters_have_inner_treasure" } }, - [8118]={ + [8590]={ [1]={ [1]={ limit={ @@ -179758,7 +188569,7 @@ return { [1]="map_reliquary_set" } }, - [8119]={ + [8591]={ [1]={ [1]={ limit={ @@ -179783,7 +188594,782 @@ return { [1]="map_ritual_additional_reward_rerolls" } }, - [8120]={ + [8592]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Alpha's Howl" + } + }, + stats={ + [1]="map_ritual_contains_alphas_howl" + } + }, + [8593]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Astramentis" + } + }, + stats={ + [1]="map_ritual_contains_astramentis" + } + }, + [8594]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Chaos Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Chaos Orbs" + } + }, + stats={ + [1]="map_ritual_contains_chaos_orbs" + } + }, + [8595]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Defiance of Destiny" + } + }, + stats={ + [1]="map_ritual_contains_defiance_of_destiny" + } + }, + [8596]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Divine Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Divine Orbs" + } + }, + stats={ + [1]="map_ritual_contains_divine_orbs" + } + }, + [8597]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Dream Fragments" + } + }, + stats={ + [1]="map_ritual_contains_dream_fragments" + } + }, + [8598]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Exalted Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Exalted Orbs" + } + }, + stats={ + [1]="map_ritual_contains_exalted_orbs" + } + }, + [8599]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Greater Orb of Augmentation" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Greater Orbs of Augmentation" + } + }, + stats={ + [1]="map_ritual_contains_greater_augmentation" + } + }, + [8600]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Greater Chaos Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Greater Chaos Orbs" + } + }, + stats={ + [1]="map_ritual_contains_greater_chaos" + } + }, + [8601]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Greater Exalted Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Greater Exalted Orbs" + } + }, + stats={ + [1]="map_ritual_contains_greater_exalt" + } + }, + [8602]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Greater Annulment" + } + }, + stats={ + [1]="map_ritual_contains_greater_omen_annulment" + } + }, + [8603]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Greater Regal Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Greater Regal Orbs" + } + }, + stats={ + [1]="map_ritual_contains_greater_regal" + } + }, + [8604]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Greater Orb of Transmutation" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Greater Orbs of Transmutation" + } + }, + stats={ + [1]="map_ritual_contains_greater_transmutation" + } + }, + [8605]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Headhunter" + } + }, + stats={ + [1]="map_ritual_contains_headhunter" + } + }, + [8606]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Kalandra's Touch" + } + }, + stats={ + [1]="map_ritual_contains_kalandras_touch" + } + }, + [8607]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Mageblood" + } + }, + stats={ + [1]="map_ritual_contains_mageblood" + } + }, + [8608]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Amelioration" + } + }, + stats={ + [1]="map_ritual_contains_omen_amelioration" + } + }, + [8609]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of the Blessed" + } + }, + stats={ + [1]="map_ritual_contains_omen_blessed" + } + }, + [8610]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Chance" + } + }, + stats={ + [1]="map_ritual_contains_omen_chance" + } + }, + [8611]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Corruption" + } + }, + stats={ + [1]="map_ritual_contains_omen_corruption" + } + }, + [8612]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Dextral Annulment" + } + }, + stats={ + [1]="map_ritual_contains_omen_dextral_annulment" + } + }, + [8613]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Dextral Crystallisation" + } + }, + stats={ + [1]="map_ritual_contains_omen_dextral_crystallisation" + } + }, + [8614]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Dextral Erasure" + } + }, + stats={ + [1]="map_ritual_contains_omen_dextral_erasure" + } + }, + [8615]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Dextral Exaltation" + } + }, + stats={ + [1]="map_ritual_contains_omen_dextral_exaltation" + } + }, + [8616]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Sanctification" + } + }, + stats={ + [1]="map_ritual_contains_omen_sanctification" + } + }, + [8617]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Sinistral Annulment" + } + }, + stats={ + [1]="map_ritual_contains_omen_sinistral_annulment" + } + }, + [8618]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Sinistral Crystallisation" + } + }, + stats={ + [1]="map_ritual_contains_omen_sinistral_crystallisation" + } + }, + [8619]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Sinistral Erasure" + } + }, + stats={ + [1]="map_ritual_contains_omen_sinistral_erasure" + } + }, + [8620]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Sinistral Exaltation" + } + }, + stats={ + [1]="map_ritual_contains_omen_sinistral_exaltation" + } + }, + [8621]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Omen of Whittling" + } + }, + stats={ + [1]="map_ritual_contains_omen_whittling" + } + }, + [8622]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Orb of Annulment" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Orbs of Annulment" + } + }, + stats={ + [1]="map_ritual_contains_orbs_of_annulment" + } + }, + [8623]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Orb of Chance" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Orbs of Chance" + } + }, + stats={ + [1]="map_ritual_contains_orbs_of_chance" + } + }, + [8624]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Original Sin" + } + }, + stats={ + [1]="map_ritual_contains_original_sin" + } + }, + [8625]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Perfect Orb of Augmentation" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Perfect Orbs of Augmentation" + } + }, + stats={ + [1]="map_ritual_contains_perfect_augmentation" + } + }, + [8626]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Perfect Chaos Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Perfect Chaos Orbs" + } + }, + stats={ + [1]="map_ritual_contains_perfect_chaos" + } + }, + [8627]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Perfect Exalted Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Perfect Exalted Orbs" + } + }, + stats={ + [1]="map_ritual_contains_perfect_exalt" + } + }, + [8628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Perfect Regal Orb" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Perfect Regal Orbs" + } + }, + stats={ + [1]="map_ritual_contains_perfect_regal" + } + }, + [8629]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Bounty: Perfect Orb of Transmutation" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: {0} Perfect Orbs of Transmutation" + } + }, + stats={ + [1]="map_ritual_contains_perfect_transmutation" + } + }, + [8630]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Queen of the Forest" + } + }, + stats={ + [1]="map_ritual_contains_queen_of_the_forest" + } + }, + [8631]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Foretold Bounty: Yoke of Suffering" + } + }, + stats={ + [1]="map_ritual_contains_yoke_of_suffering" + } + }, + [8632]={ [1]={ [1]={ limit={ @@ -179812,7 +189398,7 @@ return { [1]="map_ritual_defer_reward_tribute_cost_+%" } }, - [8121]={ + [8633]={ [1]={ [1]={ limit={ @@ -179828,7 +189414,7 @@ return { [1]="map_ritual_deferred_rewards_are_offered_again_+%_sooner" } }, - [8122]={ + [8634]={ [1]={ [1]={ limit={ @@ -179857,7 +189443,7 @@ return { [1]="map_ritual_magic_monsters_+%" } }, - [8123]={ + [8635]={ [1]={ [1]={ limit={ @@ -179882,7 +189468,7 @@ return { [1]="map_ritual_number_of_free_rerolls" } }, - [8124]={ + [8636]={ [1]={ [1]={ limit={ @@ -179911,7 +189497,7 @@ return { [1]="map_ritual_offered_and_defer_rewards_tribute_cost_+%" } }, - [8125]={ + [8637]={ [1]={ [1]={ [1]={ @@ -179931,7 +189517,7 @@ return { [1]="map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute" } }, - [8126]={ + [8638]={ [1]={ [1]={ limit={ @@ -179960,7 +189546,7 @@ return { [1]="map_ritual_omen_chance_+%" } }, - [8127]={ + [8639]={ [1]={ [1]={ limit={ @@ -179989,7 +189575,7 @@ return { [1]="map_ritual_rare_monsters_+%" } }, - [8128]={ + [8640]={ [1]={ [1]={ limit={ @@ -180018,7 +189604,7 @@ return { [1]="map_ritual_rewards_reroll_cost_+%_final" } }, - [8129]={ + [8641]={ [1]={ [1]={ limit={ @@ -180047,7 +189633,7 @@ return { [1]="map_ritual_tribute_+%" } }, - [8130]={ + [8642]={ [1]={ [1]={ limit={ @@ -180076,7 +189662,7 @@ return { [1]="map_ritual_uber_rune_type_weighting_+%" } }, - [8131]={ + [8643]={ [1]={ [1]={ limit={ @@ -180092,7 +189678,7 @@ return { [1]="map_ritual_unlimited_reward_rerolls" } }, - [8132]={ + [8644]={ [1]={ [1]={ limit={ @@ -180108,7 +189694,7 @@ return { [1]="map_rogue_exile_attack_cast_and_movement_speed_+%" } }, - [8133]={ + [8645]={ [1]={ [1]={ limit={ @@ -180137,7 +189723,7 @@ return { [1]="map_rogue_exile_chance_+%" } }, - [8134]={ + [8646]={ [1]={ [1]={ limit={ @@ -180153,7 +189739,7 @@ return { [1]="map_rogue_exile_chance_%" } }, - [8135]={ + [8647]={ [1]={ [1]={ limit={ @@ -180169,7 +189755,7 @@ return { [1]="map_rogue_exile_drop_skill_gem_with_quality" } }, - [8136]={ + [8648]={ [1]={ [1]={ limit={ @@ -180185,7 +189771,7 @@ return { [1]="map_rogue_exiles_are_doubled" } }, - [8137]={ + [8649]={ [1]={ [1]={ limit={ @@ -180214,7 +189800,7 @@ return { [1]="map_rogue_exiles_damage_+%" } }, - [8138]={ + [8650]={ [1]={ [1]={ limit={ @@ -180230,7 +189816,7 @@ return { [1]="map_rogue_exiles_drop_additional_currency_items_with_quality" } }, - [8139]={ + [8651]={ [1]={ [1]={ limit={ @@ -180255,7 +189841,7 @@ return { [1]="map_rogue_exiles_drop_x_additional_jewels" } }, - [8140]={ + [8652]={ [1]={ [1]={ limit={ @@ -180271,7 +189857,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_corrupted" } }, - [8141]={ + [8653]={ [1]={ [1]={ limit={ @@ -180287,7 +189873,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_duplicated" } }, - [8142]={ + [8654]={ [1]={ [1]={ limit={ @@ -180303,7 +189889,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fully_linked" } }, - [8143]={ + [8655]={ [1]={ [1]={ limit={ @@ -180332,7 +189918,7 @@ return { [1]="map_rogue_exiles_maximum_life_+%" } }, - [8144]={ + [8656]={ [1]={ [1]={ limit={ @@ -180348,7 +189934,7 @@ return { [1]="map_shaper_rare_chance_+%" } }, - [8145]={ + [8657]={ [1]={ [1]={ limit={ @@ -180377,7 +189963,7 @@ return { [1]="map_shrine_chance_+%" } }, - [8146]={ + [8658]={ [1]={ [1]={ limit={ @@ -180393,65 +189979,7 @@ return { [1]="map_shrine_chance_%" } }, - [8147]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Duration of Buffs granted by Shrines in your Maps" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Duration of Buffs granted by Shrines in your Maps" - } - }, - stats={ - [1]="map_shrine_granted_player_buff_duration_+%" - } - }, - [8148]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Effect of Buffs granted by Shrines in your Maps" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Effect of Buffs granted by Shrines in your Maps" - } - }, - stats={ - [1]="map_shrine_granted_player_buff_effect_+%" - } - }, - [8149]={ + [8659]={ [1]={ [1]={ limit={ @@ -180467,7 +189995,7 @@ return { [1]="map_shrine_monster_life_+%_final" } }, - [8150]={ + [8660]={ [1]={ [1]={ limit={ @@ -180492,7 +190020,7 @@ return { [1]="map_shrines_drop_x_currency_items_on_activation" } }, - [8151]={ + [8661]={ [1]={ [1]={ limit={ @@ -180508,7 +190036,7 @@ return { [1]="map_shrines_grant_a_random_additional_effect" } }, - [8152]={ + [8662]={ [1]={ [1]={ limit={ @@ -180524,7 +190052,23 @@ return { [1]="map_simulacrum_reward_level_+" } }, - [8153]={ + [8663]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Abysses" + } + }, + stats={ + [1]="map_spawn_abysses" + } + }, + [8664]={ [1]={ [1]={ limit={ @@ -180540,7 +190084,7 @@ return { [1]="map_spawn_affliction_mirror" } }, - [8154]={ + [8665]={ [1]={ [1]={ limit={ @@ -180556,7 +190100,7 @@ return { [1]="map_spawn_bestiary_encounters" } }, - [8155]={ + [8666]={ [1]={ [1]={ limit={ @@ -180581,7 +190125,7 @@ return { [1]="map_spawn_beyond_boss_when_beyond_boss_slain_%" } }, - [8156]={ + [8667]={ [1]={ [1]={ limit={ @@ -180606,7 +190150,7 @@ return { [1]="map_spawn_cadiro_%_chance" } }, - [8157]={ + [8668]={ [1]={ [1]={ limit={ @@ -180631,7 +190175,7 @@ return { [1]="map_spawn_extra_perandus_chests" } }, - [8158]={ + [8669]={ [1]={ [1]={ limit={ @@ -180647,7 +190191,23 @@ return { [1]="map_spawn_heist_smugglers_cache" } }, - [8159]={ + [8670]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains Vaal Beacons" + } + }, + stats={ + [1]="map_spawn_incursion_encounters" + } + }, + [8671]={ [1]={ [1]={ limit={ @@ -180672,7 +190232,7 @@ return { [1]="map_spawn_x_additional_heist_smugglers_caches" } }, - [8160]={ + [8672]={ [1]={ [1]={ limit={ @@ -180697,23 +190257,7 @@ return { [1]="map_spawn_x_random_map_bosses" } }, - [8161]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased effect of Temple Mods from Garrisons, Commanders, Armouries, Smithies, and Legion Barracks" - } - }, - stats={ - [1]="map_spymaster_increased_effect_of_incursion_temple_rooms" - } - }, - [8162]={ + [8673]={ [1]={ [1]={ limit={ @@ -180739,10 +190283,10 @@ return { } }, stats={ - [1]="map_stone_circle_chance_%" + [1]="map_stone_circle_chance_+%" } }, - [8163]={ + [8674]={ [1]={ [1]={ limit={ @@ -180771,7 +190315,7 @@ return { [1]="map_storm_area_of_effect_+%" } }, - [8164]={ + [8675]={ [1]={ [1]={ limit={ @@ -180787,7 +190331,7 @@ return { [1]="map_strongbox_chance_%" } }, - [8165]={ + [8676]={ [1]={ [1]={ limit={ @@ -180816,7 +190360,7 @@ return { [1]="map_strongbox_chance_+%" } }, - [8166]={ + [8677]={ [1]={ [1]={ limit={ @@ -180832,7 +190376,7 @@ return { [1]="map_strongbox_items_dropped_are_mirrored" } }, - [8167]={ + [8678]={ [1]={ [1]={ limit={ @@ -180848,7 +190392,7 @@ return { [1]="map_strongbox_monsters_attack_speed_+%" } }, - [8168]={ + [8679]={ [1]={ [1]={ limit={ @@ -180877,7 +190421,7 @@ return { [1]="map_strongbox_monsters_item_quantity_+%" } }, - [8169]={ + [8680]={ [1]={ [1]={ limit={ @@ -180893,7 +190437,7 @@ return { [1]="map_strongboxes_are_corrupted" } }, - [8170]={ + [8681]={ [1]={ [1]={ limit={ @@ -180909,7 +190453,7 @@ return { [1]="map_strongboxes_at_least_rare" } }, - [8171]={ + [8682]={ [1]={ [1]={ limit={ @@ -180934,7 +190478,7 @@ return { [1]="map_strongboxes_drop_x_additional_rare_items" } }, - [8172]={ + [8683]={ [1]={ [1]={ limit={ @@ -180968,7 +190512,7 @@ return { [1]="map_strongboxes_minimum_rarity" } }, - [8173]={ + [8684]={ [1]={ [1]={ limit={ @@ -180997,7 +190541,7 @@ return { [1]="map_suffix_mod_effect_+%_final" } }, - [8174]={ + [8685]={ [1]={ [1]={ limit={ @@ -181013,7 +190557,7 @@ return { [1]="map_synthesis_league" } }, - [8175]={ + [8686]={ [1]={ [1]={ limit={ @@ -181029,7 +190573,7 @@ return { [1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters" } }, - [8176]={ + [8687]={ [1]={ [1]={ limit={ @@ -181045,7 +190589,7 @@ return { [1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters" } }, - [8177]={ + [8688]={ [1]={ [1]={ limit={ @@ -181061,7 +190605,7 @@ return { [1]="map_synthesis_spawn_additional_fungal_chest_clusters" } }, - [8178]={ + [8689]={ [1]={ [1]={ limit={ @@ -181086,7 +190630,7 @@ return { [1]="map_synthesis_spawn_additional_magic_ambush_chest" } }, - [8179]={ + [8690]={ [1]={ [1]={ limit={ @@ -181111,7 +190655,7 @@ return { [1]="map_synthesis_spawn_additional_normal_ambush_chest" } }, - [8180]={ + [8691]={ [1]={ [1]={ limit={ @@ -181127,7 +190671,7 @@ return { [1]="map_synthesis_spawn_additional_parasite_barrel_clusters" } }, - [8181]={ + [8692]={ [1]={ [1]={ limit={ @@ -181152,7 +190696,7 @@ return { [1]="map_synthesis_spawn_additional_rare_ambush_chest" } }, - [8182]={ + [8693]={ [1]={ [1]={ limit={ @@ -181168,7 +190712,7 @@ return { [1]="map_synthesis_spawn_additional_volatile_barrel_clusters" } }, - [8183]={ + [8694]={ [1]={ [1]={ limit={ @@ -181184,7 +190728,7 @@ return { [1]="map_synthesis_spawn_additional_wealthy_barrel_clusters" } }, - [8184]={ + [8695]={ [1]={ [1]={ limit={ @@ -181209,7 +190753,7 @@ return { [1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%" } }, - [8185]={ + [8696]={ [1]={ [1]={ limit={ @@ -181234,7 +190778,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%" } }, - [8186]={ + [8697]={ [1]={ [1]={ limit={ @@ -181259,7 +190803,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%" } }, - [8187]={ + [8698]={ [1]={ [1]={ limit={ @@ -181284,7 +190828,7 @@ return { [1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%" } }, - [8188]={ + [8699]={ [1]={ [1]={ limit={ @@ -181309,7 +190853,7 @@ return { [1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%" } }, - [8189]={ + [8700]={ [1]={ [1]={ limit={ @@ -181334,7 +190878,7 @@ return { [1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%" } }, - [8190]={ + [8701]={ [1]={ [1]={ limit={ @@ -181359,7 +190903,7 @@ return { [1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%" } }, - [8191]={ + [8702]={ [1]={ [1]={ limit={ @@ -181384,7 +190928,7 @@ return { [1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%" } }, - [8192]={ + [8703]={ [1]={ [1]={ limit={ @@ -181409,7 +190953,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency" } }, - [8193]={ + [8704]={ [1]={ [1]={ limit={ @@ -181434,7 +190978,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency_shard" } }, - [8194]={ + [8705]={ [1]={ [1]={ limit={ @@ -181459,7 +191003,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_quality_currency" } }, - [8195]={ + [8706]={ [1]={ [1]={ limit={ @@ -181475,7 +191019,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_quantity_+%" } }, - [8196]={ + [8707]={ [1]={ [1]={ limit={ @@ -181491,7 +191035,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_rarity_+%" } }, - [8197]={ + [8708]={ [1]={ [1]={ limit={ @@ -181507,7 +191051,7 @@ return { [1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%" } }, - [8198]={ + [8709]={ [1]={ [1]={ limit={ @@ -181532,7 +191076,7 @@ return { [1]="map_synthesised_magic_monster_items_drop_corrupted_%" } }, - [8199]={ + [8710]={ [1]={ [1]={ limit={ @@ -181548,7 +191092,7 @@ return { [1]="map_synthesised_magic_monster_map_drop_chance_+%" } }, - [8200]={ + [8711]={ [1]={ [1]={ limit={ @@ -181564,7 +191108,7 @@ return { [1]="map_synthesised_magic_monster_slain_experience_+%" } }, - [8201]={ + [8712]={ [1]={ [1]={ limit={ @@ -181580,7 +191124,7 @@ return { [1]="map_synthesised_magic_monster_unique_item_drop_chance_+%" } }, - [8202]={ + [8713]={ [1]={ [1]={ limit={ @@ -181605,7 +191149,7 @@ return { [1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%" } }, - [8203]={ + [8714]={ [1]={ [1]={ limit={ @@ -181630,7 +191174,7 @@ return { [1]="map_synthesised_monster_additional_currency_item_drop_chance_%" } }, - [8204]={ + [8715]={ [1]={ [1]={ limit={ @@ -181655,7 +191199,7 @@ return { [1]="map_synthesised_monster_additional_currency_shard_drop_chance_%" } }, - [8205]={ + [8716]={ [1]={ [1]={ limit={ @@ -181680,7 +191224,7 @@ return { [1]="map_synthesised_monster_additional_divination_card_drop_chance_%" } }, - [8206]={ + [8717]={ [1]={ [1]={ limit={ @@ -181705,7 +191249,7 @@ return { [1]="map_synthesised_monster_additional_elder_item_drop_chance_%" } }, - [8207]={ + [8718]={ [1]={ [1]={ limit={ @@ -181730,7 +191274,7 @@ return { [1]="map_synthesised_monster_additional_fossil_drop_chance_%" } }, - [8208]={ + [8719]={ [1]={ [1]={ limit={ @@ -181755,7 +191299,7 @@ return { [1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%" } }, - [8209]={ + [8720]={ [1]={ [1]={ limit={ @@ -181780,7 +191324,7 @@ return { [1]="map_synthesised_monster_additional_shaper_item_drop_chance_%" } }, - [8210]={ + [8721]={ [1]={ [1]={ limit={ @@ -181796,7 +191340,7 @@ return { [1]="map_synthesised_monster_dropped_item_quantity_+%" } }, - [8211]={ + [8722]={ [1]={ [1]={ limit={ @@ -181812,7 +191356,7 @@ return { [1]="map_synthesised_monster_dropped_item_rarity_+%" } }, - [8212]={ + [8723]={ [1]={ [1]={ limit={ @@ -181828,7 +191372,7 @@ return { [1]="map_synthesised_monster_fractured_item_drop_chance_+%" } }, - [8213]={ + [8724]={ [1]={ [1]={ limit={ @@ -181853,7 +191397,7 @@ return { [1]="map_synthesised_monster_items_drop_corrupted_%" } }, - [8214]={ + [8725]={ [1]={ [1]={ limit={ @@ -181869,7 +191413,7 @@ return { [1]="map_synthesised_monster_map_drop_chance_+%" } }, - [8215]={ + [8726]={ [1]={ [1]={ limit={ @@ -181885,7 +191429,7 @@ return { [1]="map_synthesised_monster_pack_size_+%" } }, - [8216]={ + [8727]={ [1]={ [1]={ limit={ @@ -181901,7 +191445,7 @@ return { [1]="map_synthesised_monster_slain_experience_+%" } }, - [8217]={ + [8728]={ [1]={ [1]={ limit={ @@ -181917,7 +191461,7 @@ return { [1]="map_synthesised_monster_unique_item_drop_chance_+%" } }, - [8218]={ + [8729]={ [1]={ [1]={ limit={ @@ -181942,7 +191486,7 @@ return { [1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%" } }, - [8219]={ + [8730]={ [1]={ [1]={ limit={ @@ -181967,7 +191511,7 @@ return { [1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%" } }, - [8220]={ + [8731]={ [1]={ [1]={ limit={ @@ -181992,7 +191536,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%" } }, - [8221]={ + [8732]={ [1]={ [1]={ limit={ @@ -182017,7 +191561,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%" } }, - [8222]={ + [8733]={ [1]={ [1]={ limit={ @@ -182042,7 +191586,7 @@ return { [1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%" } }, - [8223]={ + [8734]={ [1]={ [1]={ limit={ @@ -182067,7 +191611,7 @@ return { [1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%" } }, - [8224]={ + [8735]={ [1]={ [1]={ limit={ @@ -182092,7 +191636,7 @@ return { [1]="map_synthesised_rare_monster_additional_essence_drop_chance_%" } }, - [8225]={ + [8736]={ [1]={ [1]={ limit={ @@ -182117,7 +191661,7 @@ return { [1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%" } }, - [8226]={ + [8737]={ [1]={ [1]={ limit={ @@ -182142,7 +191686,7 @@ return { [1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%" } }, - [8227]={ + [8738]={ [1]={ [1]={ limit={ @@ -182167,7 +191711,7 @@ return { [1]="map_synthesised_rare_monster_additional_map_drop_chance_%" } }, - [8228]={ + [8739]={ [1]={ [1]={ limit={ @@ -182192,7 +191736,7 @@ return { [1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%" } }, - [8229]={ + [8740]={ [1]={ [1]={ limit={ @@ -182217,7 +191761,7 @@ return { [1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%" } }, - [8230]={ + [8741]={ [1]={ [1]={ limit={ @@ -182242,7 +191786,7 @@ return { [1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%" } }, - [8231]={ + [8742]={ [1]={ [1]={ limit={ @@ -182267,7 +191811,7 @@ return { [1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%" } }, - [8232]={ + [8743]={ [1]={ [1]={ limit={ @@ -182292,7 +191836,7 @@ return { [1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%" } }, - [8233]={ + [8744]={ [1]={ [1]={ limit={ @@ -182317,7 +191861,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_breach_splinter" } }, - [8234]={ + [8745]={ [1]={ [1]={ limit={ @@ -182342,7 +191886,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency" } }, - [8235]={ + [8746]={ [1]={ [1]={ limit={ @@ -182367,7 +191911,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency_shard" } }, - [8236]={ + [8747]={ [1]={ [1]={ limit={ @@ -182392,7 +191936,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_quality_currency" } }, - [8237]={ + [8748]={ [1]={ [1]={ limit={ @@ -182408,7 +191952,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_quantity_+%" } }, - [8238]={ + [8749]={ [1]={ [1]={ limit={ @@ -182424,7 +191968,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_rarity_+%" } }, - [8239]={ + [8750]={ [1]={ [1]={ limit={ @@ -182440,7 +191984,7 @@ return { [1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%" } }, - [8240]={ + [8751]={ [1]={ [1]={ limit={ @@ -182465,7 +192009,7 @@ return { [1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%" } }, - [8241]={ + [8752]={ [1]={ [1]={ limit={ @@ -182490,7 +192034,7 @@ return { [1]="map_synthesised_rare_monster_items_drop_corrupted_%" } }, - [8242]={ + [8753]={ [1]={ [1]={ limit={ @@ -182506,7 +192050,7 @@ return { [1]="map_synthesised_rare_monster_map_drop_chance_+%" } }, - [8243]={ + [8754]={ [1]={ [1]={ limit={ @@ -182531,7 +192075,7 @@ return { [1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%" } }, - [8244]={ + [8755]={ [1]={ [1]={ limit={ @@ -182547,7 +192091,7 @@ return { [1]="map_synthesised_rare_monster_slain_experience_+%" } }, - [8245]={ + [8756]={ [1]={ [1]={ limit={ @@ -182563,7 +192107,7 @@ return { [1]="map_synthesised_rare_monster_unique_item_drop_chance_+%" } }, - [8246]={ + [8757]={ [1]={ [1]={ limit={ @@ -182579,7 +192123,7 @@ return { [1]="map_talismans_dropped_as_rare" } }, - [8247]={ + [8758]={ [1]={ [1]={ limit={ @@ -182604,7 +192148,7 @@ return { [1]="map_talismans_higher_tier" } }, - [8248]={ + [8759]={ [1]={ [1]={ limit={ @@ -182633,7 +192177,7 @@ return { [1]="map_tempest_area_of_effect_+%_visible" } }, - [8249]={ + [8760]={ [1]={ [1]={ limit={ @@ -182658,7 +192202,7 @@ return { [1]="map_tempest_corruption_weight" } }, - [8250]={ + [8761]={ [1]={ [1]={ limit={ @@ -182687,7 +192231,7 @@ return { [1]="map_tempest_frequency_+%" } }, - [8251]={ + [8762]={ [1]={ [1]={ limit={ @@ -182712,23 +192256,7 @@ return { [1]="map_tempest_radiant_weight" } }, - [8252]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% increased effect of Temple Mods from Corruption Chambers, Treasure Vaults, and Sacrificial Chambers" - } - }, - stats={ - [1]="map_thaumaturge_increased_effect_of_incursion_temple_rooms" - } - }, - [8253]={ + [8763]={ [1]={ [1]={ limit={ @@ -182744,7 +192272,7 @@ return { [1]="map_tormented_spirit_chance_%" } }, - [8254]={ + [8764]={ [1]={ [1]={ limit={ @@ -182773,7 +192301,7 @@ return { [1]="map_tormented_spirit_chance_+%" } }, - [8255]={ + [8765]={ [1]={ [1]={ limit={ @@ -182798,7 +192326,7 @@ return { [1]="map_tormented_spirits_drop_x_additional_rare_items" } }, - [8256]={ + [8766]={ [1]={ [1]={ limit={ @@ -182827,7 +192355,7 @@ return { [1]="map_tormented_spirits_duration_+%" } }, - [8257]={ + [8767]={ [1]={ [1]={ limit={ @@ -182856,7 +192384,7 @@ return { [1]="map_tormented_spirits_movement_speed_+%" } }, - [8258]={ + [8768]={ [1]={ [1]={ limit={ @@ -182865,7 +192393,7 @@ return { [2]="#" } }, - text="{0}% increased Precursor Tablets found in Area" + text="{0}% increased Tablets found in Area" }, [2]={ limit={ @@ -182874,14 +192402,14 @@ return { [2]=-1 } }, - text="{0}% reduced Precursor Tablets found in Area" + text="{0}% reduced Tablets found in Area" } }, stats={ [1]="map_tower_augment_quantity_+%" } }, - [8259]={ + [8769]={ [1]={ [1]={ limit={ @@ -182897,7 +192425,7 @@ return { [1]="map_uber_map_player_damage_cycle" } }, - [8260]={ + [8770]={ [1]={ [1]={ limit={ @@ -182913,7 +192441,7 @@ return { [1]="map_unique_boss_drops_divination_cards" } }, - [8261]={ + [8771]={ [1]={ [1]={ limit={ @@ -182938,7 +192466,7 @@ return { [1]="map_unique_boss_num_additional_modifiers" } }, - [8262]={ + [8772]={ [1]={ [1]={ limit={ @@ -182954,7 +192482,7 @@ return { [1]="map_unique_item_drop_chance_+%" } }, - [8263]={ + [8773]={ [1]={ [1]={ limit={ @@ -182979,7 +192507,7 @@ return { [1]="map_unique_monster_num_additional_modifiers" } }, - [8264]={ + [8774]={ [1]={ [1]={ limit={ @@ -183008,7 +192536,7 @@ return { [1]="map_unique_monster_potency_+%" } }, - [8265]={ + [8775]={ [1]={ [1]={ limit={ @@ -183024,7 +192552,7 @@ return { [1]="map_unique_monsters_drop_corrupted_items" } }, - [8266]={ + [8776]={ [1]={ [1]={ limit={ @@ -183033,14 +192561,14 @@ return { [2]="#" } }, - text="{0}% chance for Packs to be upgraded to Magic" + text="{0}% chance for Normal Packs to be upgraded to Magic" } }, stats={ [1]="map_upgrade_pack_to_magic_%_chance" } }, - [8267]={ + [8777]={ [1]={ [1]={ limit={ @@ -183056,7 +192584,7 @@ return { [1]="map_upgrade_pack_to_rare_%_chance" } }, - [8268]={ + [8778]={ [1]={ [1]={ limit={ @@ -183072,7 +192600,7 @@ return { [1]="map_upgrade_synthesised_pack_to_magic_%_chance" } }, - [8269]={ + [8779]={ [1]={ [1]={ limit={ @@ -183088,7 +192616,7 @@ return { [1]="map_upgrade_synthesised_pack_to_rare_%_chance" } }, - [8270]={ + [8780]={ [1]={ [1]={ limit={ @@ -183113,7 +192641,7 @@ return { [1]="map_vaal_monster_items_drop_corrupted_%" } }, - [8271]={ + [8781]={ [1]={ [1]={ limit={ @@ -183129,7 +192657,7 @@ return { [1]="map_vaal_mortal_strongbox_chance_per_fragment_%" } }, - [8272]={ + [8782]={ [1]={ [1]={ limit={ @@ -183145,7 +192673,7 @@ return { [1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%" } }, - [8273]={ + [8783]={ [1]={ [1]={ limit={ @@ -183170,7 +192698,7 @@ return { [1]="map_vaal_temple_spawn_additional_vaal_vessels" } }, - [8274]={ + [8784]={ [1]={ [1]={ limit={ @@ -183195,7 +192723,7 @@ return { [1]="map_vaal_vessel_drop_X_divination_cards" } }, - [8275]={ + [8785]={ [1]={ [1]={ limit={ @@ -183220,7 +192748,7 @@ return { [1]="map_vaal_vessel_drop_X_fossils" } }, - [8276]={ + [8786]={ [1]={ [1]={ limit={ @@ -183245,7 +192773,7 @@ return { [1]="map_vaal_vessel_drop_X_levelled_vaal_gems" } }, - [8277]={ + [8787]={ [1]={ [1]={ limit={ @@ -183270,7 +192798,7 @@ return { [1]="map_vaal_vessel_drop_X_mortal_fragments" } }, - [8278]={ + [8788]={ [1]={ [1]={ limit={ @@ -183295,7 +192823,7 @@ return { [1]="map_vaal_vessel_drop_X_prophecies" } }, - [8279]={ + [8789]={ [1]={ [1]={ limit={ @@ -183320,7 +192848,7 @@ return { [1]="map_vaal_vessel_drop_X_rare_temple_items" } }, - [8280]={ + [8790]={ [1]={ [1]={ limit={ @@ -183345,7 +192873,7 @@ return { [1]="map_vaal_vessel_drop_X_sacrifice_fragments" } }, - [8281]={ + [8791]={ [1]={ [1]={ limit={ @@ -183370,7 +192898,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_orbs" } }, - [8282]={ + [8792]={ [1]={ [1]={ limit={ @@ -183395,7 +192923,7 @@ return { [1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques" } }, - [8283]={ + [8793]={ [1]={ [1]={ limit={ @@ -183420,7 +192948,7 @@ return { [1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques" } }, - [8284]={ + [8794]={ [1]={ [1]={ limit={ @@ -183449,7 +192977,7 @@ return { [1]="map_vaal_vessel_item_drop_quantity_+%" } }, - [8285]={ + [8795]={ [1]={ [1]={ limit={ @@ -183478,7 +193006,36 @@ return { [1]="map_vaal_vessel_item_drop_rarity_+%" } }, - [8286]={ + [8796]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monsters from Verisium Remnants drop {0}% increased Verisium" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Monsters from Verisium Remnants drop {0}% increased Verisium" + } + }, + stats={ + [1]="map_verisium_drop_chance_+%" + } + }, + [8797]={ [1]={ [1]={ limit={ @@ -183503,7 +193060,7 @@ return { [1]="map_warbands_packs_have_additional_elites" } }, - [8287]={ + [8798]={ [1]={ [1]={ limit={ @@ -183528,7 +193085,7 @@ return { [1]="map_warbands_packs_have_additional_grunts" } }, - [8288]={ + [8799]={ [1]={ [1]={ limit={ @@ -183553,7 +193110,7 @@ return { [1]="map_warbands_packs_have_additional_supports" } }, - [8289]={ + [8800]={ [1]={ [1]={ limit={ @@ -183569,7 +193126,7 @@ return { [1]="map_watchstone_additional_packs_of_elder_monsters" } }, - [8290]={ + [8801]={ [1]={ [1]={ limit={ @@ -183585,7 +193142,7 @@ return { [1]="map_watchstone_additional_packs_of_shaper_monsters" } }, - [8291]={ + [8802]={ [1]={ [1]={ limit={ @@ -183601,7 +193158,7 @@ return { [1]="map_watchstone_monsters_damage_+%_final" } }, - [8292]={ + [8803]={ [1]={ [1]={ limit={ @@ -183617,7 +193174,7 @@ return { [1]="map_watchstone_monsters_life_+%_final" } }, - [8293]={ + [8804]={ [1]={ [1]={ limit={ @@ -183642,7 +193199,7 @@ return { [1]="maps_with_powerful_bosses_additional_essence_+" } }, - [8294]={ + [8805]={ [1]={ [1]={ limit={ @@ -183667,7 +193224,7 @@ return { [1]="maps_with_powerful_bosses_additional_shrine_+" } }, - [8295]={ + [8806]={ [1]={ [1]={ limit={ @@ -183692,7 +193249,7 @@ return { [1]="maps_with_powerful_bosses_additional_spirit_+" } }, - [8296]={ + [8807]={ [1]={ [1]={ limit={ @@ -183717,7 +193274,7 @@ return { [1]="maps_with_powerful_bosses_additional_strongbox_+" } }, - [8297]={ + [8808]={ [1]={ [1]={ limit={ @@ -183746,7 +193303,7 @@ return { [1]="marauder_hidden_ascendancy_damage_+%_final" } }, - [8298]={ + [8809]={ [1]={ [1]={ limit={ @@ -183775,7 +193332,7 @@ return { [1]="marauder_hidden_ascendancy_damage_taken_+%_final" } }, - [8299]={ + [8810]={ [1]={ [1]={ limit={ @@ -183784,14 +193341,14 @@ return { [2]="#" } }, - text="A random Skill that requires Glory generates {0}% of its maximum Glory when your Mark Activates" + text="A random Skill that requires Glory generates {0}% of its maximum Glory when your Marks Activate" } }, stats={ [1]="mark_grants_%_max_glory_to_random_skill_on_activate" } }, - [8300]={ + [8811]={ [1]={ [1]={ limit={ @@ -183820,7 +193377,23 @@ return { [1]="mark_skill_duration_+%" } }, - [8301]={ + [8812]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Mark Skills" + } + }, + stats={ + [1]="mark_skill_gem_level_+" + } + }, + [8813]={ [1]={ [1]={ limit={ @@ -183853,7 +193426,7 @@ return { [1]="mark_skill_mana_cost_+%" } }, - [8302]={ + [8814]={ [1]={ [1]={ limit={ @@ -183869,7 +193442,7 @@ return { [1]="marked_enemies_cannot_deal_critical_strikes" } }, - [8303]={ + [8815]={ [1]={ [1]={ limit={ @@ -183885,7 +193458,7 @@ return { [1]="marked_enemies_cannot_regenerate_life" } }, - [8304]={ + [8816]={ [1]={ [1]={ limit={ @@ -183914,7 +193487,7 @@ return { [1]="marked_enemy_accuracy_rating_+%" } }, - [8305]={ + [8817]={ [1]={ [1]={ limit={ @@ -183943,7 +193516,36 @@ return { [1]="marked_enemy_damage_taken_+%" } }, - [8306]={ + [8818]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Enemies Marked or Cursed by you take {0}% increased Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Enemies Marked or Cursed by you take {0}% reduced Damage" + } + }, + stats={ + [1]="marked_or_cursed_enemy_damage_taken_+%" + } + }, + [8819]={ [1]={ [1]={ limit={ @@ -183959,7 +193561,7 @@ return { [1]="marks_avoid_consumption_when_first_activated" } }, - [8307]={ + [8820]={ [1]={ [1]={ limit={ @@ -183975,7 +193577,7 @@ return { [1]="marks_you_inflict_remain_after_death" } }, - [8308]={ + [8821]={ [1]={ [1]={ limit={ @@ -184004,7 +193606,7 @@ return { [1]="master_of_elements_evasion_rating_+%_final" } }, - [8309]={ + [8822]={ [1]={ [1]={ limit={ @@ -184020,7 +193622,7 @@ return { [1]="maven_fight_layout_override" } }, - [8310]={ + [8823]={ [1]={ [1]={ limit={ @@ -184036,7 +193638,7 @@ return { [1]="max_chance_to_block_attacks_if_not_blocked_recently" } }, - [8311]={ + [8824]={ [1]={ [1]={ [1]={ @@ -184056,7 +193658,7 @@ return { [1]="max_fortification_+1_per_5" } }, - [8312]={ + [8825]={ [1]={ [1]={ [1]={ @@ -184076,7 +193678,7 @@ return { [1]="max_fortification_while_focused_+1_per_5" } }, - [8313]={ + [8826]={ [1]={ [1]={ [1]={ @@ -184096,7 +193698,7 @@ return { [1]="max_fortification_while_stationary_+1_per_5" } }, - [8314]={ + [8827]={ [1]={ [1]={ limit={ @@ -184105,14 +193707,14 @@ return { [2]="#" } }, - text="Gain {0}% of maximum Life as Extra maximum Mana" + text="Increases and Reductions to Maximum Mana also apply to Effect of Arcane Surge on you" } }, stats={ - [1]="max_life_%_as_mana" + [1]="max_mana_increases_apply_to_effect_of_arcane_surge_on_self" } }, - [8315]={ + [8828]={ [1]={ [1]={ limit={ @@ -184121,14 +193723,14 @@ return { [2]="#" } }, - text="Gain {0}% of maximum Life as Extra maximum Spirit" + text="+{0} maximum stacks of Puppet Master" } }, stats={ - [1]="max_life_%_as_spirit" + [1]="max_puppet_master_stacks_+" } }, - [8316]={ + [8829]={ [1]={ [1]={ limit={ @@ -184137,14 +193739,14 @@ return { [2]="#" } }, - text="Increases and Reductions to Maximum Mana also apply to Effect of Arcane Surge on you" + text="+{0} maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" } }, stats={ - [1]="max_mana_increases_apply_to_effect_of_arcane_surge_on_self" + [1]="max_rage_+_if_glory_skill_used_in_last_20_seconds" } }, - [8317]={ + [8830]={ [1]={ [1]={ limit={ @@ -184160,7 +193762,7 @@ return { [1]="max_rage_+_per_glory_skill_used_in_last_6_seconds" } }, - [8318]={ + [8831]={ [1]={ [1]={ limit={ @@ -184176,7 +193778,7 @@ return { [1]="max_steel_ammo" } }, - [8319]={ + [8832]={ [1]={ [1]={ limit={ @@ -184192,7 +193794,7 @@ return { [1]="maximum_added_lightning_damage_per_10_int" } }, - [8320]={ + [8833]={ [1]={ [1]={ limit={ @@ -184208,7 +193810,7 @@ return { [1]="maximum_blitz_charges" } }, - [8321]={ + [8834]={ [1]={ [1]={ limit={ @@ -184224,7 +193826,7 @@ return { [1]="maximum_block_modifiers_apply_to_maximum_resistances_instead" } }, - [8322]={ + [8835]={ [1]={ [1]={ limit={ @@ -184240,7 +193842,7 @@ return { [1]="maximum_caltrops_allowed" } }, - [8323]={ + [8836]={ [1]={ [1]={ limit={ @@ -184256,7 +193858,7 @@ return { [1]="maximum_challenger_charges" } }, - [8324]={ + [8837]={ [1]={ [1]={ limit={ @@ -184272,7 +193874,7 @@ return { [1]="maximum_chance_to_evade_is_50%" } }, - [8325]={ + [8838]={ [1]={ [1]={ limit={ @@ -184288,7 +193890,7 @@ return { [1]="maximum_cold_damage_resistance_+%_while_shapeshifted" } }, - [8326]={ + [8839]={ [1]={ [1]={ limit={ @@ -184304,7 +193906,7 @@ return { [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [8327]={ + [8840]={ [1]={ [1]={ limit={ @@ -184320,7 +193922,7 @@ return { [1]="maximum_cold_infusion_stacks" } }, - [8328]={ + [8841]={ [1]={ [1]={ limit={ @@ -184336,7 +193938,7 @@ return { [1]="maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed" } }, - [8329]={ + [8842]={ [1]={ [1]={ limit={ @@ -184361,7 +193963,7 @@ return { [1]="maximum_cold_resistance_+1_per_X_corresponding_support" } }, - [8330]={ + [8843]={ [1]={ [1]={ limit={ @@ -184377,7 +193979,7 @@ return { [1]="maximum_critical_strike_chance_is_%_from_support_garukhans_resolve" } }, - [8331]={ + [8844]={ [1]={ [1]={ limit={ @@ -184406,7 +194008,65 @@ return { [1]="maximum_darkness_+%" } }, - [8332]={ + [8845]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Divinity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Divinity" + } + }, + stats={ + [1]="maximum_divinity_+%" + } + }, + [8846]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Divinity per Corrupted Item Equipped" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Divinity per Corrupted Item Equipped" + } + }, + stats={ + [1]="maximum_divinity_+%_per_equipped_corrupted_item" + } + }, + [8847]={ [1]={ [1]={ limit={ @@ -184422,7 +194082,7 @@ return { [1]="maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently" } }, - [8333]={ + [8848]={ [1]={ [1]={ limit={ @@ -184438,7 +194098,7 @@ return { [1]="maximum_endurance_charges_+_if_you_have_at_least_100_tribute" } }, - [8334]={ + [8849]={ [1]={ [1]={ limit={ @@ -184454,7 +194114,7 @@ return { [1]="maximum_endurance_charges_+_while_affected_by_determination" } }, - [8335]={ + [8850]={ [1]={ [1]={ limit={ @@ -184483,7 +194143,7 @@ return { [1]="maximum_energy_shield_+%_per_10_tribute" } }, - [8336]={ + [8851]={ [1]={ [1]={ limit={ @@ -184492,14 +194152,14 @@ return { [2]="#" } }, - text="+1 to Maximum Energy Shield per {0} Item Evasion Rating on Equipped Body Armour" + text="+1 to Maximum Energy Shield per {0} Item Evasion on Equipped Body Armour" } }, stats={ [1]="maximum_energy_shield_+1_per_x_body_armour_evasion_rating" } }, - [8337]={ + [8852]={ [1]={ [1]={ limit={ @@ -184515,7 +194175,7 @@ return { [1]="maximum_energy_shield_from_body_armour_+%" } }, - [8338]={ + [8853]={ [1]={ [1]={ limit={ @@ -184531,7 +194191,7 @@ return { [1]="maximum_fanaticism_charges" } }, - [8339]={ + [8854]={ [1]={ [1]={ limit={ @@ -184547,7 +194207,7 @@ return { [1]="maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance" } }, - [8340]={ + [8855]={ [1]={ [1]={ limit={ @@ -184563,7 +194223,7 @@ return { [1]="maximum_fire_damage_resistance_+%_while_shapeshifted" } }, - [8341]={ + [8856]={ [1]={ [1]={ limit={ @@ -184579,7 +194239,7 @@ return { [1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [8342]={ + [8857]={ [1]={ [1]={ limit={ @@ -184595,7 +194255,7 @@ return { [1]="maximum_fire_infusion_stacks" } }, - [8343]={ + [8858]={ [1]={ [1]={ limit={ @@ -184611,7 +194271,7 @@ return { [1]="maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed" } }, - [8344]={ + [8859]={ [1]={ [1]={ limit={ @@ -184636,7 +194296,7 @@ return { [1]="maximum_fire_resistance_+1_per_X_corresponding_support" } }, - [8345]={ + [8860]={ [1]={ [1]={ limit={ @@ -184652,7 +194312,7 @@ return { [1]="maximum_frenzy_charges_+_if_you_have_at_least_100_tribute" } }, - [8346]={ + [8861]={ [1]={ [1]={ limit={ @@ -184668,7 +194328,7 @@ return { [1]="maximum_frenzy_charges_+_while_affected_by_grace" } }, - [8347]={ + [8862]={ [1]={ [1]={ limit={ @@ -184684,7 +194344,23 @@ return { [1]="maximum_frenzy_power_endurance_charges" } }, - [8348]={ + [8863]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum amount of Guard is based on maximum Energy Shield instead" + } + }, + stats={ + [1]="maximum_guard_is_based_on_energy_shield" + } + }, + [8864]={ [1]={ [1]={ limit={ @@ -184700,7 +194376,7 @@ return { [1]="additional_maximum_infusion_stacks" } }, - [8349]={ + [8865]={ [1]={ [1]={ limit={ @@ -184716,7 +194392,7 @@ return { [1]="maximum_intensify_stacks" } }, - [8350]={ + [8866]={ [1]={ [1]={ limit={ @@ -184732,7 +194408,36 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute" } }, - [8351]={ + [8867]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less maximum Life" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more maximum Life" + } + }, + stats={ + [1]="maximum_life_+%_final_from_caster_weapon_runic_ward_socketable" + } + }, + [8868]={ [1]={ [1]={ limit={ @@ -184748,7 +194453,7 @@ return { [1]="maximum_life_+%_if_10_red_supports_socketed" } }, - [8352]={ + [8869]={ [1]={ [1]={ limit={ @@ -184777,7 +194482,7 @@ return { [1]="maximum_life_+%_if_you_have_at_least_100_tribute" } }, - [8353]={ + [8870]={ [1]={ [1]={ limit={ @@ -184793,7 +194498,7 @@ return { [1]="maximum_life_per_10_dexterity" } }, - [8354]={ + [8871]={ [1]={ [1]={ limit={ @@ -184809,7 +194514,7 @@ return { [1]="maximum_life_per_10_intelligence" } }, - [8355]={ + [8872]={ [1]={ [1]={ limit={ @@ -184825,7 +194530,7 @@ return { [1]="maximum_life_per_2%_increased_item_found_rarity" } }, - [8356]={ + [8873]={ [1]={ [1]={ limit={ @@ -184841,7 +194546,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield" } }, - [8357]={ + [8874]={ [1]={ [1]={ limit={ @@ -184857,23 +194562,7 @@ return { [1]="maximum_life_%_to_gain_as_armour" } }, - [8358]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% of maximum Life as Extra maximum Energy Shield" - } - }, - stats={ - [1]="maximum_life_%_to_gain_as_maximum_energy_shield" - } - }, - [8359]={ + [8875]={ [1]={ [1]={ limit={ @@ -184902,7 +194591,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [8360]={ + [8876]={ [1]={ [1]={ limit={ @@ -184918,7 +194607,7 @@ return { [1]="maximum_life_+%_if_no_life_tags_on_body_armour" } }, - [8361]={ + [8877]={ [1]={ [1]={ limit={ @@ -184947,7 +194636,7 @@ return { [1]="maximum_life_+%_per_abyssal_jewel_affecting_you" } }, - [8362]={ + [8878]={ [1]={ [1]={ limit={ @@ -184963,7 +194652,7 @@ return { [1]="maximum_lightning_damage_resistance_+%_while_shapeshifted" } }, - [8363]={ + [8879]={ [1]={ [1]={ limit={ @@ -184979,7 +194668,7 @@ return { [1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [8364]={ + [8880]={ [1]={ [1]={ limit={ @@ -184995,7 +194684,7 @@ return { [1]="maximum_lightning_infusion_stacks" } }, - [8365]={ + [8881]={ [1]={ [1]={ limit={ @@ -185011,7 +194700,7 @@ return { [1]="maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed" } }, - [8366]={ + [8882]={ [1]={ [1]={ limit={ @@ -185036,7 +194725,7 @@ return { [1]="maximum_lightning_resistance_+1_per_X_corresponding_support" } }, - [8367]={ + [8883]={ [1]={ [1]={ limit={ @@ -185052,7 +194741,7 @@ return { [1]="maximum_mana_+%_if_10_blue_supports_socketed" } }, - [8368]={ + [8884]={ [1]={ [1]={ limit={ @@ -185081,23 +194770,7 @@ return { [1]="maximum_mana_+%_if_you_have_at_least_100_tribute" } }, - [8369]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% of maximum Mana as Extra maximum Energy Shield while affected by Clarity" - } - }, - stats={ - [1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity" - } - }, - [8370]={ + [8885]={ [1]={ [1]={ limit={ @@ -185126,7 +194799,7 @@ return { [1]="maximum_mana_+%_per_abyssal_jewel_affecting_you" } }, - [8371]={ + [8886]={ [1]={ [1]={ limit={ @@ -185142,7 +194815,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [8372]={ + [8887]={ [1]={ [1]={ limit={ @@ -185171,7 +194844,7 @@ return { [1]="maximum_physical_attack_damage_on_crit_+%_final" } }, - [8373]={ + [8888]={ [1]={ [1]={ limit={ @@ -185187,7 +194860,7 @@ return { [1]="maximum_physical_damage_reduction_is_50%" } }, - [8374]={ + [8889]={ [1]={ [1]={ limit={ @@ -185203,7 +194876,7 @@ return { [1]="maximum_power_and_endurance_charges_+" } }, - [8375]={ + [8890]={ [1]={ [1]={ limit={ @@ -185219,7 +194892,7 @@ return { [1]="maximum_power_charges_+_if_you_have_at_least_100_tribute" } }, - [8376]={ + [8891]={ [1]={ [1]={ limit={ @@ -185235,7 +194908,7 @@ return { [1]="maximum_power_charges_+_while_affected_by_discipline" } }, - [8377]={ + [8892]={ [1]={ [1]={ limit={ @@ -185251,7 +194924,7 @@ return { [1]="maximum_rage_+_while_shapeshifted" } }, - [8378]={ + [8893]={ [1]={ [1]={ limit={ @@ -185267,7 +194940,7 @@ return { [1]="maximum_rage_+_while_wielding_axe" } }, - [8379]={ + [8894]={ [1]={ [1]={ limit={ @@ -185283,7 +194956,7 @@ return { [1]="maximum_rage_per_50_tribute" } }, - [8380]={ + [8895]={ [1]={ [1]={ limit={ @@ -185299,7 +194972,7 @@ return { [1]="maximum_rage_per_equipped_one_handed_sword" } }, - [8381]={ + [8896]={ [1]={ [1]={ limit={ @@ -185315,7 +194988,7 @@ return { [1]="maximum_random_movement_velocity_+%_when_hit" } }, - [8382]={ + [8897]={ [1]={ [1]={ limit={ @@ -185331,7 +195004,7 @@ return { [1]="maximum_virulence_stacks" } }, - [8383]={ + [8898]={ [1]={ [1]={ limit={ @@ -185347,7 +195020,7 @@ return { [1]="maximum_volatility_allowed" } }, - [8384]={ + [8899]={ [1]={ [1]={ limit={ @@ -185372,7 +195045,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [8385]={ + [8900]={ [1]={ [1]={ limit={ @@ -185388,7 +195061,7 @@ return { [1]="melee_attack_skills_additional_totems_allowed" } }, - [8386]={ + [8901]={ [1]={ [1]={ limit={ @@ -185404,7 +195077,7 @@ return { [1]="melee_critical_strike_chance_+%_if_warcried_recently" } }, - [8387]={ + [8902]={ [1]={ [1]={ limit={ @@ -185420,7 +195093,7 @@ return { [1]="melee_critical_strike_multiplier_+%_if_warcried_recently" } }, - [8388]={ + [8903]={ [1]={ [1]={ limit={ @@ -185449,7 +195122,7 @@ return { [1]="melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently" } }, - [8389]={ + [8904]={ [1]={ [1]={ limit={ @@ -185478,7 +195151,7 @@ return { [1]="melee_damage_+%_vs_immobilised_enemies" } }, - [8390]={ + [8905]={ [1]={ [1]={ limit={ @@ -185507,7 +195180,7 @@ return { [1]="melee_damage_+%_with_spears_while_surrounded" } }, - [8391]={ + [8906]={ [1]={ [1]={ limit={ @@ -185536,7 +195209,7 @@ return { [1]="melee_damage_+%_at_close_range" } }, - [8392]={ + [8907]={ [1]={ [1]={ limit={ @@ -185565,7 +195238,7 @@ return { [1]="melee_damage_+%_during_flask_effect" } }, - [8393]={ + [8908]={ [1]={ [1]={ limit={ @@ -185581,7 +195254,7 @@ return { [1]="melee_damage_+%_per_second_of_warcry_affecting_you" } }, - [8394]={ + [8909]={ [1]={ [1]={ limit={ @@ -185610,7 +195283,7 @@ return { [1]="melee_damage_+%_vs_heavy_stunned_enemies" } }, - [8395]={ + [8910]={ [1]={ [1]={ limit={ @@ -185639,7 +195312,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%" } }, - [8396]={ + [8911]={ [1]={ [1]={ limit={ @@ -185668,7 +195341,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%_final_from_ot" } }, - [8397]={ + [8912]={ [1]={ [1]={ limit={ @@ -185684,7 +195357,7 @@ return { [1]="melee_movement_skill_chance_to_fortify_on_hit_%" } }, - [8398]={ + [8913]={ [1]={ [1]={ limit={ @@ -185700,7 +195373,7 @@ return { [1]="melee_physical_damage_+%_per_10_dexterity" } }, - [8399]={ + [8914]={ [1]={ [1]={ limit={ @@ -185729,7 +195402,7 @@ return { [1]="melee_physical_damage_+%_per_10_strength_while_fortified" } }, - [8400]={ + [8915]={ [1]={ [1]={ limit={ @@ -185745,55 +195418,67 @@ return { [1]="melee_range_+_while_at_least_5_enemies_nearby" } }, - [8401]={ + [8916]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range while Holding a Shield" + text="{0:+d} metres to Melee Strike Range while Holding a Shield" } }, stats={ [1]="melee_range_+_while_wielding_shield" } }, - [8402]={ + [8917]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range while Dual Wielding" + text="{0:+d} metres to Melee Strike Range while Dual Wielding" } }, stats={ [1]="melee_range_+_while_dual_wielding" } }, - [8403]={ + [8918]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with Axes" + text="{0:+d} metres to Melee Strike Range with Axes" } }, stats={ [1]="melee_range_+_with_axe" } }, - [8404]={ + [8919]={ [1]={ [1]={ limit={ @@ -185809,39 +195494,47 @@ return { [1]="melee_range_+_with_claw" } }, - [8405]={ + [8920]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with Daggers" + text="{0:+d} metres to Melee Strike Range with Daggers" } }, stats={ [1]="melee_range_+_with_dagger" } }, - [8406]={ + [8921]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with Flails" + text="{0:+d} metres to Melee Strike Range with Flails" } }, stats={ [1]="melee_range_+_with_flail" } }, - [8407]={ + [8922]={ [1]={ [1]={ limit={ @@ -185857,39 +195550,47 @@ return { [1]="melee_range_+_with_mace" } }, - [8408]={ + [8923]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with One Handed Weapons" + text="{0:+d} metres to Melee Strike Range with One Handed Weapons" } }, stats={ [1]="melee_range_+_with_one_handed" } }, - [8409]={ + [8924]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="%1$+d to Melee range with Spears" + text="{0:+d} metres to Melee Strike range with Spears" } }, stats={ [1]="melee_range_+_with_spear" } }, - [8410]={ + [8925]={ [1]={ [1]={ limit={ @@ -185905,39 +195606,47 @@ return { [1]="melee_range_+_with_staff" } }, - [8411]={ + [8926]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with Swords" + text="{0:+d} metres to Melee Strike Range with Swords" } }, stats={ [1]="melee_range_+_with_sword" } }, - [8412]={ + [8927]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{0:+d} to Melee Strike Range with Two Handed Weapons" + text="{0:+d} metres to Melee Strike Range with Two Handed Weapons" } }, stats={ [1]="melee_range_+_with_two_handed" } }, - [8413]={ + [8928]={ [1]={ [1]={ limit={ @@ -185966,23 +195675,27 @@ return { [1]="melee_skills_area_of_effect_+%" } }, - [8414]={ + [8929]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="{:+d} to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds" + text="{:+d} metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds" } }, stats={ [1]="melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently" } }, - [8415]={ + [8930]={ [1]={ [1]={ limit={ @@ -185998,39 +195711,47 @@ return { [1]="melee_strike_skill_strike_previous_location" } }, - [8416]={ + [8931]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]=1, [2]="#" } }, - text="{0:+d} to Melee Strike Range if you have Killed Recently" + text="{0:+d} metres to Melee Strike Range if you have Killed Recently" } }, stats={ [1]="melee_weapon_range_+_if_you_have_killed_recently" } }, - [8417]={ + [8932]={ [1]={ [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, limit={ [1]={ [1]=1, [2]="#" } }, - text="{0:+d} to Melee Strike Range while at Maximum Frenzy Charges" + text="{0:+d} metres to Melee Strike Range while at Maximum Frenzy Charges" } }, stats={ [1]="melee_weapon_range_+_while_at_maximum_frenzy_charges" } }, - [8418]={ + [8933]={ [1]={ [1]={ limit={ @@ -186046,7 +195767,7 @@ return { [1]="melee_weapon_range_+_while_fortified" } }, - [8419]={ + [8934]={ [1]={ [1]={ limit={ @@ -186075,7 +195796,7 @@ return { [1]="mine_area_damage_+%_if_detonated_mine_recently" } }, - [8420]={ + [8935]={ [1]={ [1]={ limit={ @@ -186104,7 +195825,7 @@ return { [1]="mine_area_of_effect_+%" } }, - [8421]={ + [8936]={ [1]={ [1]={ limit={ @@ -186133,7 +195854,7 @@ return { [1]="mine_area_of_effect_+%_if_detonated_mine_recently" } }, - [8422]={ + [8937]={ [1]={ [1]={ limit={ @@ -186162,7 +195883,7 @@ return { [1]="mine_aura_effect_+%" } }, - [8423]={ + [8938]={ [1]={ [1]={ limit={ @@ -186191,7 +195912,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [8424]={ + [8939]={ [1]={ [1]={ limit={ @@ -186207,7 +195928,7 @@ return { [1]="mine_%_chance_to_detonate_twice" } }, - [8425]={ + [8940]={ [1]={ [1]={ [1]={ @@ -186240,7 +195961,7 @@ return { [1]="mines_hinder_nearby_enemies_for_x_ms_on_arming" } }, - [8426]={ + [8941]={ [1]={ [1]={ limit={ @@ -186256,7 +195977,7 @@ return { [1]="mines_invulnerable" } }, - [8427]={ + [8942]={ [1]={ [1]={ limit={ @@ -186277,7 +195998,7 @@ return { [2]="maximum_added_chaos_damage_if_have_crit_recently" } }, - [8428]={ + [8943]={ [1]={ [1]={ limit={ @@ -186298,7 +196019,7 @@ return { [2]="maximum_added_chaos_damage_per_curse_on_enemy" } }, - [8429]={ + [8944]={ [1]={ [1]={ limit={ @@ -186319,7 +196040,7 @@ return { [2]="maximum_added_chaos_damage_per_spiders_web_on_enemy" } }, - [8430]={ + [8945]={ [1]={ [1]={ limit={ @@ -186340,7 +196061,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength" } }, - [8431]={ + [8946]={ [1]={ [1]={ limit={ @@ -186361,7 +196082,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_per_50_strength" } }, - [8432]={ + [8947]={ [1]={ [1]={ limit={ @@ -186382,7 +196103,7 @@ return { [2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons" } }, - [8433]={ + [8948]={ [1]={ [1]={ limit={ @@ -186403,7 +196124,7 @@ return { [2]="maximum_added_cold_damage_if_have_crit_recently" } }, - [8434]={ + [8949]={ [1]={ [1]={ limit={ @@ -186424,7 +196145,28 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_10_dexterity" } }, - [8435]={ + [8950]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Adds {0} to {1} Cold Damage to Attacks per 20 Dexterity" + } + }, + stats={ + [1]="minimum_added_cold_damage_to_attacks_per_20_dexterity", + [2]="maximum_added_cold_damage_to_attacks_per_20_dexterity" + } + }, + [8951]={ [1]={ [1]={ limit={ @@ -186445,7 +196187,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [8436]={ + [8952]={ [1]={ [1]={ limit={ @@ -186466,7 +196208,7 @@ return { [2]="maximum_added_cold_damage_while_affected_by_hatred" } }, - [8437]={ + [8953]={ [1]={ [1]={ limit={ @@ -186487,7 +196229,7 @@ return { [2]="maximum_added_cold_damage_while_you_have_avians_might" } }, - [8438]={ + [8954]={ [1]={ [1]={ limit={ @@ -186508,7 +196250,7 @@ return { [2]="maximum_added_fire_damage_if_have_crit_recently" } }, - [8439]={ + [8955]={ [1]={ [1]={ limit={ @@ -186529,7 +196271,7 @@ return { [2]="maximum_added_fire_damage_per_100_lowest_of_max_life_mana" } }, - [8440]={ + [8956]={ [1]={ [1]={ limit={ @@ -186550,7 +196292,7 @@ return { [2]="maximum_added_fire_damage_per_endurance_charge" } }, - [8441]={ + [8957]={ [1]={ [1]={ limit={ @@ -186571,7 +196313,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_10_strength" } }, - [8442]={ + [8958]={ [1]={ [1]={ limit={ @@ -186592,7 +196334,7 @@ return { [2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies" } }, - [8443]={ + [8959]={ [1]={ [1]={ limit={ @@ -186613,7 +196355,7 @@ return { [2]="maximum_added_lightning_damage_if_have_crit_recently" } }, - [8444]={ + [8960]={ [1]={ [1]={ limit={ @@ -186634,7 +196376,7 @@ return { [2]="maximum_added_lightning_damage_per_power_charge" } }, - [8445]={ + [8961]={ [1]={ [1]={ limit={ @@ -186655,7 +196397,7 @@ return { [2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently" } }, - [8446]={ + [8962]={ [1]={ [1]={ limit={ @@ -186676,7 +196418,7 @@ return { [2]="maximum_added_lightning_damage_to_attacks_per_20_intelligence" } }, - [8447]={ + [8963]={ [1]={ [1]={ limit={ @@ -186697,7 +196439,7 @@ return { [2]="maximum_added_lightning_damage_to_spells_per_power_charge" } }, - [8448]={ + [8964]={ [1]={ [1]={ limit={ @@ -186718,7 +196460,7 @@ return { [2]="maximum_added_lightning_damage_while_you_have_avians_might" } }, - [8449]={ + [8965]={ [1]={ [1]={ limit={ @@ -186739,7 +196481,7 @@ return { [2]="maximum_added_physical_damage_if_have_crit_recently" } }, - [8450]={ + [8966]={ [1]={ [1]={ limit={ @@ -186760,7 +196502,7 @@ return { [2]="maximum_added_physical_damage_per_endurance_charge" } }, - [8451]={ + [8967]={ [1]={ [1]={ limit={ @@ -186781,7 +196523,7 @@ return { [2]="maximum_added_physical_damage_per_impaled_on_enemy" } }, - [8452]={ + [8968]={ [1]={ [1]={ limit={ @@ -186802,7 +196544,7 @@ return { [2]="maximum_added_physical_damage_vs_poisoned_enemies" } }, - [8453]={ + [8969]={ [1]={ [1]={ limit={ @@ -186823,7 +196565,7 @@ return { [2]="maximum_added_spell_cold_damage_while_no_life_is_reserved" } }, - [8454]={ + [8970]={ [1]={ [1]={ limit={ @@ -186844,7 +196586,7 @@ return { [2]="maximum_added_spell_fire_damage_while_no_life_is_reserved" } }, - [8455]={ + [8971]={ [1]={ [1]={ limit={ @@ -186865,7 +196607,7 @@ return { [2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved" } }, - [8456]={ + [8972]={ [1]={ [1]={ limit={ @@ -186881,7 +196623,7 @@ return { [1]="minimum_endurance_charges_at_devotion_threshold" } }, - [8457]={ + [8973]={ [1]={ [1]={ limit={ @@ -186897,7 +196639,7 @@ return { [1]="minimum_endurance_charges_while_on_low_life_+" } }, - [8458]={ + [8974]={ [1]={ [1]={ limit={ @@ -186913,7 +196655,7 @@ return { [1]="minimum_frenzy_charges_at_devotion_threshold" } }, - [8459]={ + [8975]={ [1]={ [1]={ limit={ @@ -186929,7 +196671,7 @@ return { [1]="minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary" } }, - [8460]={ + [8976]={ [1]={ [1]={ limit={ @@ -186945,7 +196687,7 @@ return { [1]="minimum_frenzy_power_endurance_charges" } }, - [8461]={ + [8977]={ [1]={ [1]={ limit={ @@ -186978,7 +196720,7 @@ return { [1]="minimum_physical_attack_damage_on_crit_+%_final" } }, - [8462]={ + [8978]={ [1]={ [1]={ limit={ @@ -186994,7 +196736,7 @@ return { [1]="minimum_power_charges_at_devotion_threshold" } }, - [8463]={ + [8979]={ [1]={ [1]={ limit={ @@ -187010,7 +196752,7 @@ return { [1]="minimum_power_charges_while_on_low_life_+" } }, - [8464]={ + [8980]={ [1]={ [1]={ limit={ @@ -187026,7 +196768,7 @@ return { [1]="minion_1%_accuracy_rating_+%_per_X_player_dexterity" } }, - [8465]={ + [8981]={ [1]={ [1]={ limit={ @@ -187042,23 +196784,7 @@ return { [1]="minion_1%_area_of_effect_+%_per_X_player_dexterity" } }, - [8466]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Minions from this skill have 1% increased Attack Speed\nper {0} of your Dexterity" - } - }, - stats={ - [1]="minion_1%_attack_speed_+%_per_X_player_dexterity" - } - }, - [8467]={ + [8982]={ [1]={ [1]={ limit={ @@ -187074,7 +196800,7 @@ return { [1]="minion_1%_damage_+%_per_X_player_strength" } }, - [8468]={ + [8983]={ [1]={ [1]={ limit={ @@ -187090,7 +196816,7 @@ return { [1]="minion_accuracy_rating" } }, - [8469]={ + [8984]={ [1]={ [1]={ limit={ @@ -187106,7 +196832,7 @@ return { [1]="minion_accuracy_rating_per_10_devotion" } }, - [8470]={ + [8985]={ [1]={ [1]={ limit={ @@ -187135,7 +196861,7 @@ return { [1]="minion_accuracy_rating_+%" } }, - [8471]={ + [8986]={ [1]={ [1]={ limit={ @@ -187164,7 +196890,7 @@ return { [1]="minion_actor_scale_+%" } }, - [8472]={ + [8987]={ [1]={ [1]={ [1]={ @@ -187184,7 +196910,7 @@ return { [1]="minion_additional_base_critical_strike_chance" } }, - [8473]={ + [8988]={ [1]={ [1]={ limit={ @@ -187213,7 +196939,7 @@ return { [1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently" } }, - [8474]={ + [8989]={ [1]={ [1]={ limit={ @@ -187229,7 +196955,7 @@ return { [1]="minion_armour_break_physical_damage_%_dealt_as_armour_break" } }, - [8475]={ + [8990]={ [1]={ [1]={ limit={ @@ -187245,7 +196971,7 @@ return { [1]="minion_attack_added_cold_damage_as_%_parent_maximum_life" } }, - [8476]={ + [8991]={ [1]={ [1]={ limit={ @@ -187274,7 +197000,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_50_tribute" } }, - [8477]={ + [8992]={ [1]={ [1]={ limit={ @@ -187303,7 +197029,7 @@ return { [1]="minion_attack_and_cast_speed_+%" } }, - [8478]={ + [8993]={ [1]={ [1]={ limit={ @@ -187332,7 +197058,7 @@ return { [1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently" } }, - [8479]={ + [8994]={ [1]={ [1]={ limit={ @@ -187361,7 +197087,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_10_devotion" } }, - [8480]={ + [8995]={ [1]={ [1]={ limit={ @@ -187390,7 +197116,7 @@ return { [1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [8481]={ + [8996]={ [1]={ [1]={ limit={ @@ -187406,7 +197132,32 @@ return { [1]="minion_attack_hits_knockback_chance_%" } }, - [8482]={ + [8997]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Every five Rage also grants you {0}% increased Minion Attack Speed" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Every five Rage also grants you {0}% reduced Minion Attack Speed" + } + }, + stats={ + [1]="minion_attack_speed_+%_per_five_rage" + } + }, + [8998]={ [1]={ [1]={ limit={ @@ -187431,7 +197182,7 @@ return { [1]="minion_attack_speed_+%_per_rage" } }, - [8483]={ + [8999]={ [1]={ [1]={ limit={ @@ -187460,7 +197211,7 @@ return { [1]="minion_attack_speed_+%_per_50_dex" } }, - [8484]={ + [9000]={ [1]={ [1]={ limit={ @@ -187485,7 +197236,36 @@ return { [1]="minion_attacks_chance_to_blind_on_hit_%" } }, - [8485]={ + [9001]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased Magnitude of Damaging Ailments" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Magnitude of Damaging Ailments" + } + }, + stats={ + [1]="minion_base_damaging_ailment_effect_+%" + } + }, + [9002]={ [1]={ [1]={ limit={ @@ -187501,7 +197281,7 @@ return { [1]="minion_base_maximum_cold_damage_resistance_%" } }, - [8486]={ + [9003]={ [1]={ [1]={ limit={ @@ -187517,7 +197297,7 @@ return { [1]="minion_base_maximum_fire_damage_resistance_%" } }, - [8487]={ + [9004]={ [1]={ [1]={ limit={ @@ -187533,7 +197313,7 @@ return { [1]="minion_base_maximum_lightning_damage_resistance_%" } }, - [8488]={ + [9005]={ [1]={ [1]={ limit={ @@ -187549,7 +197329,7 @@ return { [1]="minion_cannot_crit" } }, - [8489]={ + [9006]={ [1]={ [1]={ limit={ @@ -187565,7 +197345,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [8490]={ + [9007]={ [1]={ [1]={ limit={ @@ -187581,7 +197361,23 @@ return { [1]="minion_chance_to_deal_double_damage_while_on_full_life_%" } }, - [8491]={ + [9008]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0:+d}% Surpassing chance to fire an additional Projectile" + } + }, + stats={ + [1]="minion_chance_to_fire_1_additional_projectile_%_with_rollover" + } + }, + [9009]={ [1]={ [1]={ limit={ @@ -187597,7 +197393,7 @@ return { [1]="minion_chance_to_freeze_%" } }, - [8492]={ + [9010]={ [1]={ [1]={ limit={ @@ -187613,7 +197409,7 @@ return { [1]="minion_chance_to_gain_power_charge_on_hit_%" } }, - [8493]={ + [9011]={ [1]={ [1]={ limit={ @@ -187629,7 +197425,7 @@ return { [1]="minion_chance_to_impale_on_attack_hit_%" } }, - [8494]={ + [9012]={ [1]={ [1]={ limit={ @@ -187645,7 +197441,7 @@ return { [1]="minion_chance_to_shock_%" } }, - [8495]={ + [9013]={ [1]={ [1]={ limit={ @@ -187674,7 +197470,36 @@ return { [1]="minion_command_skill_cooldown_speed_+%" } }, - [8496]={ + [9014]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased Skill Speed with Command Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Skill Speed with Command Skills" + } + }, + stats={ + [1]="minion_command_skill_skill_speed_+%" + } + }, + [9015]={ [1]={ [1]={ limit={ @@ -187703,7 +197528,7 @@ return { [1]="minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence" } }, - [8497]={ + [9016]={ [1]={ [1]={ limit={ @@ -187732,7 +197557,7 @@ return { [1]="minion_commanded_skill_damage_+%" } }, - [8498]={ + [9017]={ [1]={ [1]={ limit={ @@ -187761,7 +197586,7 @@ return { [1]="minion_cooldown_recovery_+%_per_10_tribute" } }, - [8499]={ + [9018]={ [1]={ [1]={ limit={ @@ -187790,7 +197615,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [8500]={ + [9019]={ [1]={ [1]={ limit={ @@ -187819,7 +197644,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [8501]={ + [9020]={ [1]={ [1]={ limit={ @@ -187848,7 +197673,7 @@ return { [1]="minion_critical_strike_chance_+%_per_maximum_power_charge" } }, - [8502]={ + [9021]={ [1]={ [1]={ limit={ @@ -187864,7 +197689,7 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [8503]={ + [9022]={ [1]={ [1]={ limit={ @@ -187893,7 +197718,36 @@ return { [1]="minion_damage_+%_per_10_tribute" } }, - [8504]={ + [9023]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Minion Damage per different Command Skill used in the past 15 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Minion Damage per different Command Skill used in the past 15 seconds" + } + }, + stats={ + [1]="minion_damage_+%_per_different_command_skills_used_in_last_15_seconds" + } + }, + [9024]={ [1]={ [1]={ limit={ @@ -187918,7 +197772,7 @@ return { [1]="minion_damage_+%_per_rage" } }, - [8505]={ + [9025]={ [1]={ [1]={ limit={ @@ -187947,7 +197801,7 @@ return { [1]="minion_damage_+%_while_you_have_at_least_two_different_active_offerings" } }, - [8506]={ + [9026]={ [1]={ [1]={ limit={ @@ -187976,7 +197830,7 @@ return { [1]="minion_damage_against_ignited_enemies_+%" } }, - [8507]={ + [9027]={ [1]={ [1]={ limit={ @@ -187992,7 +197846,7 @@ return { [1]="minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30" } }, - [8508]={ + [9028]={ [1]={ [1]={ limit={ @@ -188021,7 +197875,7 @@ return { [1]="minion_damage_+%_if_enemy_hit_recently" } }, - [8509]={ + [9029]={ [1]={ [1]={ limit={ @@ -188050,7 +197904,7 @@ return { [1]="minion_damage_+%_vs_abyssal_monsters" } }, - [8510]={ + [9030]={ [1]={ [1]={ limit={ @@ -188079,7 +197933,7 @@ return { [1]="minion_damage_+%_while_affected_by_a_herald" } }, - [8511]={ + [9031]={ [1]={ [1]={ limit={ @@ -188095,7 +197949,7 @@ return { [1]="minion_damage_taken_%_recouped_as_their_life" } }, - [8512]={ + [9032]={ [1]={ [1]={ limit={ @@ -188124,7 +197978,7 @@ return { [1]="minion_damage_taken_+%" } }, - [8513]={ + [9033]={ [1]={ [1]={ limit={ @@ -188140,7 +197994,7 @@ return { [1]="minion_deal_no_non_cold_damage" } }, - [8514]={ + [9034]={ [1]={ [1]={ limit={ @@ -188165,7 +198019,7 @@ return { [1]="minion_demon_add_fury_charge_on_hit_%" } }, - [8515]={ + [9035]={ [1]={ [1]={ limit={ @@ -188181,7 +198035,7 @@ return { [1]="minion_demon_attack_speed_+%_per_fury_charge" } }, - [8516]={ + [9036]={ [1]={ [1]={ limit={ @@ -188197,7 +198051,7 @@ return { [1]="minion_demon_damage_+%_final_per_fury_charge" } }, - [8517]={ + [9037]={ [1]={ [1]={ limit={ @@ -188213,7 +198067,7 @@ return { [1]="minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range" } }, - [8518]={ + [9038]={ [1]={ [1]={ [1]={ @@ -188233,7 +198087,7 @@ return { [1]="minion_demon_life_loss_%_per_minute_per_fury_charge" } }, - [8519]={ + [9039]={ [1]={ [1]={ limit={ @@ -188249,7 +198103,7 @@ return { [1]="minion_demon_maximum_fury_charges" } }, - [8520]={ + [9040]={ [1]={ [1]={ limit={ @@ -188265,7 +198119,7 @@ return { [1]="minion_elemental_resistance_30%" } }, - [8521]={ + [9041]={ [1]={ [1]={ limit={ @@ -188294,7 +198148,7 @@ return { [1]="minion_evasion_rating_+%" } }, - [8522]={ + [9042]={ [1]={ [1]={ [1]={ @@ -188314,14 +198168,14 @@ return { [1]="minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%" } }, - [8523]={ + [9043]={ [1]={ }, stats={ [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [8524]={ + [9044]={ [1]={ [1]={ limit={ @@ -188337,7 +198191,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [8525]={ + [9045]={ [1]={ [1]={ limit={ @@ -188353,7 +198207,7 @@ return { [1]="minion_global_always_hit" } }, - [8526]={ + [9046]={ [1]={ [1]={ limit={ @@ -188378,7 +198232,36 @@ return { [1]="minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%" } }, - [8527]={ + [9047]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% increased Immobilisation buildup" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Minions have {0}% reduced Immobilisation buildup" + } + }, + stats={ + [1]="minion_hit_damage_immobilisation_multiplier_+%" + } + }, + [9048]={ [1]={ [1]={ limit={ @@ -188394,7 +198277,7 @@ return { [1]="minion_hit_damage_stun_multiplier_+%" } }, - [8528]={ + [9049]={ [1]={ [1]={ limit={ @@ -188410,7 +198293,7 @@ return { [1]="minion_life_increased_by_overcapped_fire_resistance" } }, - [8529]={ + [9050]={ [1]={ [1]={ [1]={ @@ -188423,14 +198306,14 @@ return { [2]="#" } }, - text="Minions Regenerate {0}% of maximum Life per Second if they have Blocked recently" + text="Minions Regenerate {0}% of maximum Life per Second if they have Blocked Recently" } }, stats={ [1]="minion_life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [8530]={ + [9051]={ [1]={ [1]={ limit={ @@ -188446,7 +198329,7 @@ return { [1]="minion_life_regeneration_rate_per_second" } }, - [8531]={ + [9052]={ [1]={ [1]={ limit={ @@ -188471,7 +198354,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [8532]={ + [9053]={ [1]={ [1]={ limit={ @@ -188487,7 +198370,7 @@ return { [1]="minion_malediction_on_hit" } }, - [8533]={ + [9054]={ [1]={ [1]={ limit={ @@ -188503,23 +198386,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [8534]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Minions gain {0}% of their maximum Life as Extra maximum Energy Shield" - } - }, - stats={ - [1]="minion_maximum_life_%_to_gain_as_maximum_energy_shield" - } - }, - [8535]={ + [9055]={ [1]={ [1]={ limit={ @@ -188548,7 +198415,23 @@ return { [1]="minion_melee_damage_+%" } }, - [8536]={ + [9056]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Minions' Strikes have Melee Splash" + } + }, + stats={ + [1]="minion_melee_splash" + } + }, + [9057]={ [1]={ [1]={ limit={ @@ -188564,7 +198447,7 @@ return { [1]="minion_minimum_power_charges" } }, - [8537]={ + [9058]={ [1]={ [1]={ limit={ @@ -188593,7 +198476,7 @@ return { [1]="minion_movement_speed_+%_per_50_dex" } }, - [8538]={ + [9059]={ [1]={ [1]={ limit={ @@ -188622,7 +198505,7 @@ return { [1]="minion_movement_velocity_+%_for_each_herald_affecting_you" } }, - [8539]={ + [9060]={ [1]={ [1]={ limit={ @@ -188631,14 +198514,14 @@ return { [2]="#" } }, - text="Minion Critical Hits do not deal extra Damage" + text="Minions have no Critical Damage Bonus" } }, stats={ [1]="minion_no_critical_strike_multiplier" } }, - [8540]={ + [9061]={ [1]={ [1]={ limit={ @@ -188663,7 +198546,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [8541]={ + [9062]={ [1]={ [1]={ limit={ @@ -188679,7 +198562,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_fire" } }, - [8542]={ + [9063]={ [1]={ [1]={ limit={ @@ -188695,7 +198578,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_lightning" } }, - [8543]={ + [9064]={ [1]={ [1]={ limit={ @@ -188711,7 +198594,7 @@ return { [1]="minion_physical_hit_and_dot_damage_%_taken_as_lightning" } }, - [8544]={ + [9065]={ [1]={ [1]={ limit={ @@ -188740,7 +198623,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [8545]={ + [9066]={ [1]={ [1]={ limit={ @@ -188769,7 +198652,7 @@ return { [1]="minion_raging_spirit_maximum_life_+%" } }, - [8546]={ + [9067]={ [1]={ [1]={ [1]={ @@ -188789,7 +198672,7 @@ return { [1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage" } }, - [8547]={ + [9068]={ [1]={ [1]={ limit={ @@ -188805,7 +198688,7 @@ return { [1]="minion_recover_%_maximum_life_on_minion_death" } }, - [8548]={ + [9069]={ [1]={ [1]={ limit={ @@ -188834,7 +198717,7 @@ return { [1]="reservation_efficiency_+%_of_minion_skills" } }, - [8549]={ + [9070]={ [1]={ [1]={ limit={ @@ -188867,7 +198750,7 @@ return { [1]="minion_reservation_+%" } }, - [8550]={ + [9071]={ [1]={ [1]={ limit={ @@ -188883,7 +198766,7 @@ return { [1]="minion_resistances_equal_yours" } }, - [8551]={ + [9072]={ [1]={ [1]={ limit={ @@ -188912,7 +198795,7 @@ return { [1]="minion_resummon_speed_+%_if_all_active_minions_are_companions" } }, - [8552]={ + [9073]={ [1]={ [1]={ limit={ @@ -188941,7 +198824,7 @@ return { [1]="minion_resummon_speed_+%_if_you_have_at_least_100_tribute" } }, - [8553]={ + [9074]={ [1]={ [1]={ limit={ @@ -188970,7 +198853,7 @@ return { [1]="minion_resummon_speed_+%" } }, - [8554]={ + [9075]={ [1]={ [1]={ limit={ @@ -189003,7 +198886,7 @@ return { [1]="minion_skill_mana_cost_+%" } }, - [8555]={ + [9076]={ [1]={ [1]={ limit={ @@ -189019,7 +198902,7 @@ return { [1]="minion_skill_physical_damage_%_to_convert_to_fire" } }, - [8556]={ + [9077]={ [1]={ [1]={ limit={ @@ -189044,7 +198927,7 @@ return { [1]="minion_spells_chance_to_hinder_on_hit_%" } }, - [8557]={ + [9078]={ [1]={ [1]={ limit={ @@ -189073,7 +198956,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [8558]={ + [9079]={ [1]={ [1]={ limit={ @@ -189102,7 +198985,7 @@ return { [1]="minion_summoned_recently_attack_and_cast_speed_+%" } }, - [8559]={ + [9080]={ [1]={ [1]={ limit={ @@ -189118,7 +199001,7 @@ return { [1]="minion_summoned_recently_cannot_be_damaged" } }, - [8560]={ + [9081]={ [1]={ [1]={ limit={ @@ -189147,7 +199030,7 @@ return { [1]="minion_summoned_recently_movement_speed_+%" } }, - [8561]={ + [9082]={ [1]={ [1]={ limit={ @@ -189163,7 +199046,7 @@ return { [1]="minion_undead_minions_are_demons_instead" } }, - [8562]={ + [9083]={ [1]={ [1]={ limit={ @@ -189179,7 +199062,7 @@ return { [1]="minions_accuracy_is_equal_to_yours" } }, - [8563]={ + [9084]={ [1]={ [1]={ limit={ @@ -189195,7 +199078,23 @@ return { [1]="minions_are_gigantic" } }, - [8564]={ + [9085]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Minions are Gigantic if they have Revived Recently" + } + }, + stats={ + [1]="minions_are_gigantic_if_have_revived_recently" + } + }, + [9086]={ [1]={ [1]={ limit={ @@ -189211,7 +199110,7 @@ return { [1]="minions_attacks_overwhelm_%_physical_damage_reduction" } }, - [8565]={ + [9087]={ [1]={ [1]={ [1]={ @@ -189244,7 +199143,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [8566]={ + [9088]={ [1]={ [1]={ limit={ @@ -189260,7 +199159,7 @@ return { [1]="minions_cannot_taunt_enemies" } }, - [8567]={ + [9089]={ [1]={ [1]={ limit={ @@ -189285,7 +199184,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [8568]={ + [9090]={ [1]={ [1]={ limit={ @@ -189301,7 +199200,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [8569]={ + [9091]={ [1]={ [1]={ limit={ @@ -189317,7 +199216,7 @@ return { [1]="minions_gain_your_dexterity" } }, - [8570]={ + [9092]={ [1]={ [1]={ limit={ @@ -189333,7 +199232,7 @@ return { [1]="minions_gain_your_strength" } }, - [8571]={ + [9093]={ [1]={ [1]={ [1]={ @@ -189353,7 +199252,7 @@ return { [1]="minions_go_crazy_on_crit_ms" } }, - [8572]={ + [9094]={ [1]={ [1]={ limit={ @@ -189369,7 +199268,7 @@ return { [1]="minions_have_%_chance_to_inflict_wither_on_hit" } }, - [8573]={ + [9095]={ [1]={ [1]={ limit={ @@ -189385,7 +199284,7 @@ return { [1]="minions_have_+%_critical_strike_multiplier_per_wither_on_enemies" } }, - [8574]={ + [9096]={ [1]={ [1]={ limit={ @@ -189401,7 +199300,7 @@ return { [1]="minions_have_unholy_might" } }, - [8575]={ + [9097]={ [1]={ [1]={ limit={ @@ -189417,7 +199316,23 @@ return { [1]="minions_hits_can_only_kill_ignited_enemies" } }, - [8576]={ + [9098]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions in your Presence have Onslaught while you are on Low Runic Ward" + } + }, + stats={ + [1]="minions_in_presence_have_onslaught_while_you_are_on_low_ward" + } + }, + [9099]={ [1]={ [1]={ limit={ @@ -189446,7 +199361,7 @@ return { [1]="minions_lose_%_life_when_following_commands_per_10_tribute" } }, - [8577]={ + [9100]={ [1]={ [1]={ limit={ @@ -189462,7 +199377,7 @@ return { [1]="minions_penetrate_elemental_resistances_%_vs_cursed_enemies" } }, - [8578]={ + [9101]={ [1]={ [1]={ limit={ @@ -189478,7 +199393,7 @@ return { [1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [8579]={ + [9102]={ [1]={ [1]={ limit={ @@ -189494,7 +199409,7 @@ return { [1]="minions_recover_%_maximum_life_when_you_focus" } }, - [8580]={ + [9103]={ [1]={ [1]={ limit={ @@ -189527,7 +199442,7 @@ return { [1]="minions_reflected_damage_taken_+%" } }, - [8581]={ + [9104]={ [1]={ [1]={ limit={ @@ -189543,7 +199458,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [8582]={ + [9105]={ [1]={ [1]={ limit={ @@ -189572,7 +199487,7 @@ return { [1]="mirage_archer_duration_+%" } }, - [8583]={ + [9106]={ [1]={ [1]={ limit={ @@ -189588,7 +199503,7 @@ return { [1]="missing_life_%_gained_as_life_before_hit" } }, - [8584]={ + [9107]={ [1]={ [1]={ [1]={ @@ -189608,7 +199523,7 @@ return { [1]="mod_granted_passive_hash" } }, - [8585]={ + [9108]={ [1]={ [1]={ [1]={ @@ -189628,7 +199543,7 @@ return { [1]="mod_granted_passive_hash_2" } }, - [8586]={ + [9109]={ [1]={ [1]={ [1]={ @@ -189648,7 +199563,7 @@ return { [1]="mod_granted_passive_hash_3" } }, - [8587]={ + [9110]={ [1]={ [1]={ [1]={ @@ -189668,7 +199583,7 @@ return { [1]="mod_granted_passive_hash_4" } }, - [8588]={ + [9111]={ [1]={ [1]={ [1]={ @@ -189688,7 +199603,7 @@ return { [1]="mod_granted_passive_hash_essence" } }, - [8589]={ + [9112]={ [1]={ [1]={ limit={ @@ -189704,7 +199619,7 @@ return { [1]="modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value" } }, - [8590]={ + [9113]={ [1]={ [1]={ limit={ @@ -189720,7 +199635,7 @@ return { [1]="modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance" } }, - [8591]={ + [9114]={ [1]={ [1]={ limit={ @@ -189729,14 +199644,14 @@ return { [2]="#" } }, - text="Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards" + text="Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Splits towards" } }, stats={ [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [8592]={ + [9115]={ [1]={ [1]={ limit={ @@ -189765,7 +199680,7 @@ return { [1]="molten_shell_duration_+%" } }, - [8593]={ + [9116]={ [1]={ [1]={ limit={ @@ -189781,7 +199696,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [8594]={ + [9117]={ [1]={ [1]={ limit={ @@ -189797,7 +199712,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [8595]={ + [9118]={ [1]={ [1]={ limit={ @@ -189822,7 +199737,7 @@ return { [1]="molten_strike_chain_count_+" } }, - [8596]={ + [9119]={ [1]={ [1]={ limit={ @@ -189847,7 +199762,7 @@ return { [1]="primordial_altar_burning_ground_on_death_%" } }, - [8597]={ + [9120]={ [1]={ [1]={ limit={ @@ -189872,7 +199787,23 @@ return { [1]="primordial_altar_chilled_ground_on_death_%" } }, - [8598]={ + [9121]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies in your Presence have additional Power equal to their Gruelling Madness" + } + }, + stats={ + [1]="monsters_in_your_presence_have_additional_power_equal_to_their_gruelling_madness_stacks" + } + }, + [9122]={ [1]={ [1]={ limit={ @@ -189901,7 +199832,7 @@ return { [1]="mortar_barrage_mine_damage_+%" } }, - [8599]={ + [9123]={ [1]={ [1]={ limit={ @@ -189926,7 +199857,7 @@ return { [1]="mortar_barrage_mine_num_projectiles" } }, - [8600]={ + [9124]={ [1]={ [1]={ [1]={ @@ -189963,7 +199894,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_halved_+%" } }, - [8601]={ + [9125]={ [1]={ [1]={ limit={ @@ -189992,7 +199923,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_+%" } }, - [8602]={ + [9126]={ [1]={ [1]={ limit={ @@ -190021,7 +199952,7 @@ return { [1]="movement_attack_skills_attack_speed_+%" } }, - [8603]={ + [9127]={ [1]={ [1]={ limit={ @@ -190050,7 +199981,7 @@ return { [1]="movement_skills_cooldown_speed_+%" } }, - [8604]={ + [9128]={ [1]={ [1]={ limit={ @@ -190079,7 +200010,7 @@ return { [1]="movement_skills_cooldown_speed_+%_while_affected_by_haste" } }, - [8605]={ + [9129]={ [1]={ [1]={ limit={ @@ -190095,7 +200026,7 @@ return { [1]="movement_skills_deal_no_physical_damage" } }, - [8606]={ + [9130]={ [1]={ [1]={ limit={ @@ -190124,7 +200055,7 @@ return { [1]="movement_speed_+%_against_bloodlusting_enemies" } }, - [8607]={ + [9131]={ [1]={ [1]={ limit={ @@ -190140,7 +200071,7 @@ return { [1]="movement_speed_+%_if_10_green_supports_socketed" } }, - [8608]={ + [9132]={ [1]={ [1]={ limit={ @@ -190169,7 +200100,7 @@ return { [1]="movement_speed_+%_if_below_100_dexterity" } }, - [8609]={ + [9133]={ [1]={ [1]={ limit={ @@ -190198,7 +200129,7 @@ return { [1]="movement_speed_+%_if_pinned_enemy_recently" } }, - [8610]={ + [9134]={ [1]={ [1]={ limit={ @@ -190227,7 +200158,32 @@ return { [1]="movement_speed_+%_if_placed_trap_or_mine_recently" } }, - [8611]={ + [9135]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Every five Rage also grants you {0}% increased Movement Speed" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Every five Rage also grants you {0}% reduced Movement Speed" + } + }, + stats={ + [1]="movement_speed_+%_per_5_rage" + } + }, + [9136]={ [1]={ [1]={ limit={ @@ -190243,7 +200199,7 @@ return { [1]="movement_speed_+%_per_nearby_corpse" } }, - [8612]={ + [9137]={ [1]={ [1]={ limit={ @@ -190272,7 +200228,7 @@ return { [1]="movement_speed_+%_while_affected_by_ailment" } }, - [8613]={ + [9138]={ [1]={ [1]={ limit={ @@ -190297,7 +200253,7 @@ return { [1]="movement_speed_+%_while_surrounded" } }, - [8614]={ + [9139]={ [1]={ [1]={ limit={ @@ -190326,7 +200282,7 @@ return { [1]="movement_speed_+%_while_you_have_two_linked_targets" } }, - [8615]={ + [9140]={ [1]={ [1]={ limit={ @@ -190342,7 +200298,7 @@ return { [1]="movement_speed_is_equal_to_highest_linked_party_member" } }, - [8616]={ + [9141]={ [1]={ [1]={ limit={ @@ -190358,7 +200314,7 @@ return { [1]="movement_speed_is_only_base_+1%_per_x_evasion_rating" } }, - [8617]={ + [9142]={ [1]={ [1]={ limit={ @@ -190374,7 +200330,7 @@ return { [1]="abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%" } }, - [8618]={ + [9143]={ [1]={ [1]={ limit={ @@ -190403,7 +200359,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_action" } }, - [8619]={ + [9144]={ [1]={ [1]={ limit={ @@ -190432,7 +200388,7 @@ return { [1]="movement_speed_+%_if_crit_recently" } }, - [8620]={ + [9145]={ [1]={ [1]={ limit={ @@ -190461,7 +200417,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_recently" } }, - [8621]={ + [9146]={ [1]={ [1]={ limit={ @@ -190490,36 +200446,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently" } }, - [8622]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Movement Speed if you've Cast Dash recently" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced Movement Speed if you've Cast Dash recently" - } - }, - stats={ - [1]="movement_speed_+%_if_have_cast_dash_recently" - } - }, - [8623]={ + [9147]={ [1]={ [1]={ limit={ @@ -190548,7 +200475,7 @@ return { [1]="movement_speed_+%_if_have_not_taken_damage_recently" } }, - [8624]={ + [9148]={ [1]={ [1]={ limit={ @@ -190577,7 +200504,7 @@ return { [1]="movement_speed_+%_if_have_used_a_vaal_skill_recently" } }, - [8625]={ + [9149]={ [1]={ [1]={ limit={ @@ -190606,7 +200533,7 @@ return { [1]="movement_speed_+%_if_used_a_mark_recently" } }, - [8626]={ + [9150]={ [1]={ [1]={ limit={ @@ -190635,7 +200562,7 @@ return { [1]="movement_speed_+%_per_chest_opened_recently" } }, - [8627]={ + [9151]={ [1]={ [1]={ limit={ @@ -190664,7 +200591,7 @@ return { [1]="movement_speed_+%_per_endurance_charge" } }, - [8628]={ + [9152]={ [1]={ [1]={ limit={ @@ -190680,7 +200607,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy" } }, - [8629]={ + [9153]={ [1]={ [1]={ limit={ @@ -190709,7 +200636,7 @@ return { [1]="movement_speed_+%_per_poison_up_to_50%" } }, - [8630]={ + [9154]={ [1]={ [1]={ limit={ @@ -190738,7 +200665,7 @@ return { [1]="movement_speed_+%_per_power_charge" } }, - [8631]={ + [9155]={ [1]={ [1]={ limit={ @@ -190767,7 +200694,7 @@ return { [1]="movement_speed_+%_while_affected_by_grace" } }, - [8632]={ + [9156]={ [1]={ [1]={ limit={ @@ -190796,7 +200723,7 @@ return { [1]="movement_speed_+%_while_bleeding" } }, - [8633]={ + [9157]={ [1]={ [1]={ limit={ @@ -190825,7 +200752,7 @@ return { [1]="movement_speed_+%_while_dual_wielding" } }, - [8634]={ + [9158]={ [1]={ [1]={ limit={ @@ -190854,7 +200781,7 @@ return { [1]="movement_speed_+%_while_holding_shield" } }, - [8635]={ + [9159]={ [1]={ [1]={ limit={ @@ -190883,7 +200810,7 @@ return { [1]="movement_speed_+%_while_not_using_flask" } }, - [8636]={ + [9160]={ [1]={ [1]={ limit={ @@ -190899,7 +200826,7 @@ return { [1]="movement_speed_+%_while_off_hand_is_empty" } }, - [8637]={ + [9161]={ [1]={ [1]={ limit={ @@ -190928,7 +200855,7 @@ return { [1]="movement_speed_+%_while_on_burning_chilled_shocked_ground" } }, - [8638]={ + [9162]={ [1]={ [1]={ limit={ @@ -190957,7 +200884,7 @@ return { [1]="movement_speed_+%_while_on_burning_ground" } }, - [8639]={ + [9163]={ [1]={ [1]={ limit={ @@ -190986,7 +200913,7 @@ return { [1]="movement_speed_+%_while_poisoned" } }, - [8640]={ + [9164]={ [1]={ [1]={ limit={ @@ -191015,7 +200942,7 @@ return { [1]="movement_speed_+%_while_using_charm" } }, - [8641]={ + [9165]={ [1]={ [1]={ limit={ @@ -191044,7 +200971,7 @@ return { [1]="movement_speed_+%_while_you_have_cats_stealth" } }, - [8642]={ + [9166]={ [1]={ [1]={ limit={ @@ -191073,7 +201000,7 @@ return { [1]="movement_speed_+%_while_you_have_energy_shield" } }, - [8643]={ + [9167]={ [1]={ [1]={ limit={ @@ -191102,7 +201029,7 @@ return { [1]="movement_speed_+%_while_you_have_storm_barrier_support" } }, - [8644]={ + [9168]={ [1]={ [1]={ limit={ @@ -191131,7 +201058,7 @@ return { [1]="movement_velocity_+%_per_poison_stack" } }, - [8645]={ + [9169]={ [1]={ [1]={ limit={ @@ -191160,7 +201087,7 @@ return { [1]="movement_velocity_+%_with_magic_abyss_jewel_socketed" } }, - [8646]={ + [9170]={ [1]={ [1]={ limit={ @@ -191189,7 +201116,7 @@ return { [1]="movement_velocity_+%_per_totem" } }, - [8647]={ + [9171]={ [1]={ [1]={ limit={ @@ -191218,7 +201145,7 @@ return { [1]="movement_velocity_+%_while_at_maximum_power_charges" } }, - [8648]={ + [9172]={ [1]={ [1]={ limit={ @@ -191247,7 +201174,40 @@ return { [1]="movement_velocity_+%_while_chilled" } }, - [8649]={ + [9173]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground" + } + }, + stats={ + [1]="multishot_empowered_central_projectile_drops_feathered_ground_for_duration_ms" + } + }, + [9174]={ [1]={ [1]={ limit={ @@ -191263,7 +201223,7 @@ return { [1]="nearby_allies_have_onslaught" } }, - [8650]={ + [9175]={ [1]={ [1]={ limit={ @@ -191288,7 +201248,7 @@ return { [1]="nearby_enemies_all_exposure_%_while_phasing" } }, - [8651]={ + [9176]={ [1]={ [1]={ limit={ @@ -191304,7 +201264,7 @@ return { [1]="nearby_enemies_are_blinded_while_you_have_active_physical_aegis" } }, - [8652]={ + [9177]={ [1]={ [1]={ limit={ @@ -191320,7 +201280,7 @@ return { [1]="nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse" } }, - [8653]={ + [9178]={ [1]={ [1]={ limit={ @@ -191336,7 +201296,7 @@ return { [1]="nearby_enemies_are_crushed_while_you_have_X_rage" } }, - [8654]={ + [9179]={ [1]={ [1]={ limit={ @@ -191352,7 +201312,7 @@ return { [1]="nearby_enemies_are_intimidated_while_you_have_rage" } }, - [8655]={ + [9180]={ [1]={ [1]={ limit={ @@ -191368,7 +201328,7 @@ return { [1]="close_range_enemies_avoid_your_projectiles" } }, - [8656]={ + [9181]={ [1]={ [1]={ limit={ @@ -191384,7 +201344,7 @@ return { [1]="nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice" } }, - [8657]={ + [9182]={ [1]={ [1]={ limit={ @@ -191400,7 +201360,7 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash" } }, - [8658]={ + [9183]={ [1]={ [1]={ limit={ @@ -191416,7 +201376,7 @@ return { [1]="nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder" } }, - [8659]={ + [9184]={ [1]={ [1]={ limit={ @@ -191432,7 +201392,7 @@ return { [1]="nearby_party_members_max_endurance_charges_is_equal_to_yours" } }, - [8660]={ + [9185]={ [1]={ [1]={ limit={ @@ -191461,7 +201421,7 @@ return { [1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse" } }, - [8661]={ + [9186]={ [1]={ [1]={ limit={ @@ -191490,7 +201450,7 @@ return { [1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse" } }, - [8662]={ + [9187]={ [1]={ [1]={ limit={ @@ -191519,7 +201479,7 @@ return { [1]="necromancer_defensive_notable_minion_maximum_life_+%_final" } }, - [8663]={ + [9188]={ [1]={ [1]={ [1]={ @@ -191539,7 +201499,7 @@ return { [1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse" } }, - [8664]={ + [9189]={ [1]={ [1]={ [1]={ @@ -191559,7 +201519,7 @@ return { [1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse" } }, - [8665]={ + [9190]={ [1]={ [1]={ limit={ @@ -191575,7 +201535,7 @@ return { [1]="necrotic_footprints_from_item" } }, - [8666]={ + [9191]={ [1]={ [1]={ limit={ @@ -191591,23 +201551,7 @@ return { [1]="never_ignite_chill_freeze_shock" } }, - [8667]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="On Heavy Stunning a Rare or Unique Enemy, your next Attack within {0} seconds will be Ancestrally Boosted" - } - }, - stats={ - [1]="next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy" - } - }, - [8668]={ + [9192]={ [1]={ [1]={ limit={ @@ -191623,7 +201567,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [8669]={ + [9193]={ [1]={ [1]={ limit={ @@ -191639,7 +201583,7 @@ return { [1]="no_inherent_chance_to_block_while_dual_wielding" } }, - [8670]={ + [9194]={ [1]={ [1]={ limit={ @@ -191655,7 +201599,7 @@ return { [1]="no_inherent_mana_regeneration" } }, - [8671]={ + [9195]={ [1]={ [1]={ limit={ @@ -191671,7 +201615,7 @@ return { [1]="no_inherent_rage_loss" } }, - [8672]={ + [9196]={ [1]={ [1]={ limit={ @@ -191687,7 +201631,7 @@ return { [1]="no_mana_regeneration_if_not_crit_recently" } }, - [8673]={ + [9197]={ [1]={ [1]={ limit={ @@ -191703,7 +201647,7 @@ return { [1]="no_movement_penalty_while_shield_is_raised" } }, - [8674]={ + [9198]={ [1]={ [1]={ limit={ @@ -191719,7 +201663,7 @@ return { [1]="non_aura_hexes_gain_20%_effect_per_second" } }, - [8675]={ + [9199]={ [1]={ [1]={ limit={ @@ -191735,7 +201679,7 @@ return { [1]="non_channelling_attack_added_lightning_damage_%_maximum_mana" } }, - [8676]={ + [9200]={ [1]={ [1]={ limit={ @@ -191751,7 +201695,7 @@ return { [1]="non_channelling_spells_cost_x%_of_your_energy_shield" } }, - [8677]={ + [9201]={ [1]={ [1]={ limit={ @@ -191780,7 +201724,7 @@ return { [1]="non_channelling_spells_deal_x%_more_damage" } }, - [8678]={ + [9202]={ [1]={ [1]={ limit={ @@ -191805,7 +201749,7 @@ return { [1]="non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit" } }, - [8679]={ + [9203]={ [1]={ [1]={ limit={ @@ -191821,7 +201765,7 @@ return { [1]="non_critical_strikes_deal_no_damage" } }, - [8680]={ + [9204]={ [1]={ [1]={ limit={ @@ -191850,7 +201794,7 @@ return { [1]="non_curse_aura_effect_+%_per_10_devotion" } }, - [8681]={ + [9205]={ [1]={ [1]={ limit={ @@ -191866,7 +201810,7 @@ return { [1]="non_cursed_enemies_you_curse_are_blinded_for_4_seconds" } }, - [8682]={ + [9206]={ [1]={ [1]={ limit={ @@ -191882,7 +201826,7 @@ return { [1]="non_cursed_enemies_you_curse_gain_x_withered_stacks" } }, - [8683]={ + [9207]={ [1]={ [1]={ limit={ @@ -191911,7 +201855,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [8684]={ + [9208]={ [1]={ [1]={ limit={ @@ -191940,7 +201884,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self" } }, - [8685]={ + [9209]={ [1]={ [1]={ limit={ @@ -191969,7 +201913,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask" } }, - [8686]={ + [9210]={ [1]={ [1]={ limit={ @@ -191998,7 +201942,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_10_devotion" } }, - [8687]={ + [9211]={ [1]={ [1]={ limit={ @@ -192027,7 +201971,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes" } }, - [8688]={ + [9212]={ [1]={ [1]={ limit={ @@ -192056,7 +202000,7 @@ return { [1]="non_damaging_ailments_as_though_damage_+%_final" } }, - [8689]={ + [9213]={ [1]={ [1]={ limit={ @@ -192072,7 +202016,7 @@ return { [1]="non_damaging_ailments_reflected_to_self" } }, - [8690]={ + [9214]={ [1]={ [1]={ limit={ @@ -192101,7 +202045,7 @@ return { [1]="non_piercing_projectiles_critical_strike_chance_+%" } }, - [8691]={ + [9215]={ [1]={ [1]={ limit={ @@ -192117,7 +202061,7 @@ return { [1]="non_projectile_chaining_lightning_skill_additional_chains" } }, - [8692]={ + [9216]={ [1]={ [1]={ limit={ @@ -192133,7 +202077,7 @@ return { [1]="non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost" } }, - [8693]={ + [9217]={ [1]={ [1]={ limit={ @@ -192142,14 +202086,14 @@ return { [2]="#" } }, - text="Gain {0}% of damage as Fire damage per 1% Chance to Block" + text="Gain 1% of damage as Fire damage per {0}% Chance to Block" } }, stats={ - [1]="non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance" + [1]="non_skill_all_damage_1%_to_gain_as_fire_+_per_%_attack_block_chance" } }, - [8694]={ + [9218]={ [1]={ [1]={ limit={ @@ -192165,7 +202109,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed" } }, - [8695]={ + [9219]={ [1]={ [1]={ limit={ @@ -192181,7 +202125,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed" } }, - [8696]={ + [9220]={ [1]={ [1]={ limit={ @@ -192197,7 +202141,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed" } }, - [8697]={ + [9221]={ [1]={ [1]={ limit={ @@ -192213,7 +202157,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed" } }, - [8698]={ + [9222]={ [1]={ [1]={ limit={ @@ -192229,7 +202173,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion" } }, - [8699]={ + [9223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Chaos Damage while you are missing Runic Ward" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_chaos_while_missing_ward" + } + }, + [9224]={ [1]={ [1]={ limit={ @@ -192245,7 +202205,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [8700]={ + [9225]={ [1]={ [1]={ limit={ @@ -192261,7 +202221,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_spells" } }, - [8701]={ + [9226]={ [1]={ [1]={ limit={ @@ -192277,7 +202237,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently" } }, - [8702]={ + [9227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Cold Damage while you are missing Runic Ward" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_missing_ward" + } + }, + [9228]={ [1]={ [1]={ limit={ @@ -192293,7 +202269,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill" } }, - [8703]={ + [9229]={ [1]={ [1]={ limit={ @@ -192309,7 +202285,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted" } }, - [8704]={ + [9230]={ [1]={ [1]={ limit={ @@ -192325,7 +202301,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks" } }, - [8705]={ + [9231]={ [1]={ [1]={ limit={ @@ -192341,7 +202317,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently" } }, - [8706]={ + [9232]={ [1]={ [1]={ limit={ @@ -192357,7 +202333,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds" } }, - [8707]={ + [9233]={ [1]={ [1]={ limit={ @@ -192373,7 +202349,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently" } }, - [8708]={ + [9234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Fire Damage while you are missing Runic Ward" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_missing_ward" + } + }, + [9235]={ [1]={ [1]={ limit={ @@ -192389,7 +202381,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn" } }, - [8709]={ + [9236]={ [1]={ [1]={ limit={ @@ -192405,7 +202397,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted" } }, - [8710]={ + [9237]={ [1]={ [1]={ limit={ @@ -192421,7 +202413,39 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently" } }, - [8711]={ + [9238]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills Gain {0}% of damage as Extra Lightning damage per 50 Runic Ward Cost" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_lightning_per_50_ward_cost" + } + }, + [9239]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Lightning Damage while you are missing Runic Ward" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_missing_ward" + } + }, + [9240]={ [1]={ [1]={ limit={ @@ -192437,7 +202461,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock" } }, - [8712]={ + [9241]={ [1]={ [1]={ limit={ @@ -192453,7 +202477,27 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted" } }, - [8713]={ + [9242]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain {0}% of Damage as Extra Physical Damage per ten percent missing Mana" + } + }, + stats={ + [1]="non_skill_base_all_damage_%_to_gain_as_physical_per_10%_missing_mana_permyriad" + } + }, + [9243]={ [1]={ [1]={ limit={ @@ -192469,23 +202513,23 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_random_element" } }, - [8714]={ + [9244]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]="#", [2]="#" } }, - text="Gain {0}% of Damage as Extra Damage of a random Element while Shapeshifted" + text="Gain {0}% of Damage as Extra Damage of a random Element per\nRune Socketed in Equipped Items" } }, stats={ - [1]="non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted" + [1]="non_skill_base_all_damage_%_to_gain_as_random_element_per_socketed_rune" } }, - [8715]={ + [9245]={ [1]={ [1]={ limit={ @@ -192494,14 +202538,14 @@ return { [2]="#" } }, - text="Gain {0}% of Damage as Extra Damage of all Elements" + text="Gain {0}% of Damage as Extra Damage of a random Element while Shapeshifted" } }, stats={ - [1]="non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning" + [1]="non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted" } }, - [8716]={ + [9246]={ [1]={ [1]={ limit={ @@ -192510,14 +202554,14 @@ return { [2]="#" } }, - text="Attacks Gain {0}% of Damage as Extra Cold Damage" + text="Attacks Gain {0}% of damage as Extra damage of a random Element" } }, stats={ - [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" + [1]="non_skill_base_all_damage_%_to_gain_as_random_element_with_attacks" } }, - [8717]={ + [9247]={ [1]={ [1]={ limit={ @@ -192526,14 +202570,14 @@ return { [2]="#" } }, - text="Attacks Gain {0}% of Damage as Extra Fire Damage" + text="Gain {0}% of Damage as Extra Damage of all Elements" } }, stats={ - [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" + [1]="non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning" } }, - [8718]={ + [9248]={ [1]={ [1]={ limit={ @@ -192549,7 +202593,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [8719]={ + [9249]={ [1]={ [1]={ limit={ @@ -192565,7 +202609,23 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_cold" } }, - [8720]={ + [9250]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Elemental Damage as Extra Cold Damage if you've collected a Cold Infusion in the last 8 seconds" + } + }, + stats={ + [1]="non_skill_base_elemental_damage_%_to_gain_as_cold_if_cold_infusion_collected_last_8_seconds" + } + }, + [9251]={ [1]={ [1]={ limit={ @@ -192581,7 +202641,23 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_fire" } }, - [8721]={ + [9252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Elemental Damage as Extra Fire Damage if you've collected a Fire Infusion in the last 8 seconds" + } + }, + stats={ + [1]="non_skill_base_elemental_damage_%_to_gain_as_fire_if_fire_infusion_collected_last_8_seconds" + } + }, + [9253]={ [1]={ [1]={ limit={ @@ -192597,7 +202673,23 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_lightning" } }, - [8722]={ + [9254]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Elemental Damage as Extra Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" + } + }, + stats={ + [1]="non_skill_base_elemental_damage_%_to_gain_as_lightning_if_lightning_infusion_collected_last_8_seconds" + } + }, + [9255]={ [1]={ [1]={ limit={ @@ -192613,7 +202705,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_chaos" } }, - [8723]={ + [9256]={ [1]={ [1]={ limit={ @@ -192629,7 +202721,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_cold" } }, - [8724]={ + [9257]={ [1]={ [1]={ limit={ @@ -192645,7 +202737,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_fire" } }, - [8725]={ + [9258]={ [1]={ [1]={ limit={ @@ -192661,7 +202753,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_lightning" } }, - [8726]={ + [9259]={ [1]={ [1]={ limit={ @@ -192677,7 +202769,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_cold" } }, - [8727]={ + [9260]={ [1]={ [1]={ limit={ @@ -192693,7 +202785,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_lightning" } }, - [8728]={ + [9261]={ [1]={ [1]={ limit={ @@ -192709,7 +202801,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies" } }, - [8729]={ + [9262]={ [1]={ [1]={ limit={ @@ -192725,7 +202817,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies" } }, - [8730]={ + [9263]={ [1]={ [1]={ limit={ @@ -192741,7 +202833,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies" } }, - [8731]={ + [9264]={ [1]={ [1]={ limit={ @@ -192757,7 +202849,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies" } }, - [8732]={ + [9265]={ [1]={ [1]={ limit={ @@ -192773,23 +202865,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos_per_level" } }, - [8733]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Attacks Gain {0}% of Physical Damage as extra Chaos Damage" - } - }, - stats={ - [1]="non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks" - } - }, - [8734]={ + [9266]={ [1]={ [1]={ limit={ @@ -192805,7 +202881,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy" } }, - [8735]={ + [9267]={ [1]={ [1]={ limit={ @@ -192821,7 +202897,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies" } }, - [8736]={ + [9268]={ [1]={ [1]={ limit={ @@ -192837,7 +202913,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge" } }, - [8737]={ + [9269]={ [1]={ [1]={ limit={ @@ -192853,7 +202929,7 @@ return { [1]="non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge" } }, - [8738]={ + [9270]={ [1]={ [1]={ limit={ @@ -192869,7 +202945,7 @@ return { [1]="non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [8739]={ + [9271]={ [1]={ [1]={ limit={ @@ -192885,7 +202961,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge" } }, - [8740]={ + [9272]={ [1]={ [1]={ limit={ @@ -192901,7 +202977,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies" } }, - [8741]={ + [9273]={ [1]={ [1]={ limit={ @@ -192917,7 +202993,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped" } }, - [8742]={ + [9274]={ [1]={ [1]={ limit={ @@ -192933,7 +203009,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold" } }, - [8743]={ + [9275]={ [1]={ [1]={ limit={ @@ -192949,7 +203025,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred" } }, - [8744]={ + [9276]={ [1]={ [1]={ limit={ @@ -192965,7 +203041,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold" } }, - [8745]={ + [9277]={ [1]={ [1]={ limit={ @@ -192981,7 +203057,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger" } }, - [8746]={ + [9278]={ [1]={ [1]={ limit={ @@ -192997,7 +203073,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold" } }, - [8747]={ + [9279]={ [1]={ [1]={ limit={ @@ -193013,7 +203089,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath" } }, - [8748]={ + [9280]={ [1]={ [1]={ limit={ @@ -193029,7 +203105,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies" } }, - [8749]={ + [9281]={ [1]={ [1]={ limit={ @@ -193045,7 +203121,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge" } }, - [8750]={ + [9282]={ [1]={ [1]={ limit={ @@ -193061,7 +203137,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger" } }, - [8751]={ + [9283]={ [1]={ [1]={ limit={ @@ -193077,7 +203153,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently" } }, - [8752]={ + [9284]={ [1]={ [1]={ limit={ @@ -193093,7 +203169,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_per_rage" } }, - [8753]={ + [9285]={ [1]={ [1]={ limit={ @@ -193109,7 +203185,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath" } }, - [8754]={ + [9286]={ [1]={ [1]={ limit={ @@ -193125,7 +203201,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_random_element_while_ignited" } }, - [8755]={ + [9287]={ [1]={ [1]={ limit={ @@ -193141,7 +203217,7 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained" } }, - [8756]={ + [9288]={ [1]={ [1]={ limit={ @@ -193157,7 +203233,55 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain" } }, - [8757]={ + [9289]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spell Hits Gain {0}% of Damage as Extra Chaos Damage per Curse on target" + } + }, + stats={ + [1]="spells_gain_%_of_damage_as_extra_chaos_per_curse_on_target" + } + }, + [9290]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spell Hits Gain {0}% of Damage as Extra Physical Damage per Curse on target" + } + }, + stats={ + [1]="spells_gain_%_of_damage_as_extra_phys_per_curse_on_target" + } + }, + [9291]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain 1% of Unarmed Damage as extra Fire damage per {0} Intelligence" + } + }, + stats={ + [1]="non_skill_unarmed_damage_to_gain_as_fire_1%_per_X_intelligence" + } + }, + [9292]={ [1]={ [1]={ limit={ @@ -193166,7 +203290,7 @@ return { [2]=1 } }, - text="Non-Travel Attack Skills Repeat an additional Time" + text="DNT-UNUSEDNon-Travel Attack Skills happen {0} additional Time" }, [2]={ limit={ @@ -193175,14 +203299,30 @@ return { [2]="#" } }, - text="Non-Travel Attack Skills Repeat {} additional Times" + text="DNT-UNUSEDNon-Travel Attack Skills happen {0} additional Times" } }, stats={ [1]="non_travel_attack_skill_repeat_count" } }, - [8758]={ + [9293]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot use Life Flasks\nNon-Unique Life Flasks apply their Effects constantly\nRecovery from Life Flasks cannot be Instant\nRecovery from your Life Flasks cannot be applied to anything other than you" + } + }, + stats={ + [1]="non_unique_life_flasks_always_applied_with_no_instant_recovery_only_to_you" + } + }, + [9294]={ [1]={ [1]={ limit={ @@ -193211,7 +203351,7 @@ return { [1]="normal_monster_dropped_item_quantity_+%" } }, - [8759]={ + [9295]={ [1]={ [1]={ limit={ @@ -193244,7 +203384,7 @@ return { [1]="notable_knockback_distance_+%_final_for_blocked_hits" } }, - [8760]={ + [9296]={ [1]={ [1]={ limit={ @@ -193260,7 +203400,7 @@ return { [1]="nova_spells_cast_at_target_location" } }, - [8761]={ + [9297]={ [1]={ [1]={ limit={ @@ -193285,7 +203425,7 @@ return { [1]="num_additional_skill_slots" } }, - [8762]={ + [9298]={ [1]={ [1]={ limit={ @@ -193310,7 +203450,7 @@ return { [1]="num_cascade_aftershocks_every_third_slam" } }, - [8763]={ + [9299]={ [1]={ [1]={ limit={ @@ -193335,7 +203475,7 @@ return { [1]="num_charm_slots" } }, - [8764]={ + [9300]={ [1]={ [1]={ limit={ @@ -193360,7 +203500,7 @@ return { [1]="num_charm_slots_+_if_you_have_at_least_100_tribute" } }, - [8765]={ + [9301]={ [1]={ [1]={ limit={ @@ -193385,7 +203525,7 @@ return { [1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more" } }, - [8766]={ + [9302]={ [1]={ [1]={ limit={ @@ -193401,7 +203541,7 @@ return { [1]="number_of_additional_banners_allowed" } }, - [8767]={ + [9303]={ [1]={ [1]={ limit={ @@ -193417,7 +203557,23 @@ return { [1]="number_of_additional_chains_for_projectiles_while_phasing" } }, - [8768]={ + [9304]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles from Spells Chain +{0} times" + } + }, + stats={ + [1]="number_of_additional_chains_for_spell_projectiles" + } + }, + [9305]={ [1]={ [1]={ limit={ @@ -193442,7 +203598,7 @@ return { [1]="number_of_additional_curses_allowed_while_affected_by_malevolence" } }, - [8769]={ + [9306]={ [1]={ [1]={ limit={ @@ -193467,7 +203623,7 @@ return { [1]="number_of_additional_curses_allowed_while_at_maximum_power_charges" } }, - [8770]={ + [9307]={ [1]={ [1]={ limit={ @@ -193492,7 +203648,7 @@ return { [1]="number_of_additional_ignites_allowed" } }, - [8771]={ + [9308]={ [1]={ [1]={ limit={ @@ -193517,7 +203673,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_dex" } }, - [8772]={ + [9309]={ [1]={ [1]={ limit={ @@ -193542,7 +203698,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_int" } }, - [8773]={ + [9310]={ [1]={ [1]={ limit={ @@ -193558,7 +203714,7 @@ return { [1]="number_of_additional_poison_stacks" } }, - [8774]={ + [9311]={ [1]={ [1]={ limit={ @@ -193574,7 +203730,7 @@ return { [1]="number_of_additional_poison_stacks_if_you_have_at_least_100_tribute" } }, - [8775]={ + [9312]={ [1]={ [1]={ limit={ @@ -193599,7 +203755,7 @@ return { [1]="number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw" } }, - [8776]={ + [9313]={ [1]={ [1]={ limit={ @@ -193624,7 +203780,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_been_hit_recently" } }, - [8777]={ + [9314]={ [1]={ [1]={ limit={ @@ -193649,7 +203805,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently" } }, - [8778]={ + [9315]={ [1]={ [1]={ limit={ @@ -193674,7 +203830,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [8779]={ + [9316]={ [1]={ [1]={ limit={ @@ -193690,7 +203846,7 @@ return { [1]="number_of_animated_weapons_allowed" } }, - [8780]={ + [9317]={ [1]={ [1]={ limit={ @@ -193706,7 +203862,23 @@ return { [1]="base_number_of_arbalists" } }, - [8781]={ + [9318]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0} Broken Boss Faces" + } + }, + stats={ + [1]="number_of_broken_faces" + } + }, + [9319]={ [1]={ [1]={ limit={ @@ -193731,7 +203903,7 @@ return { [1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary" } }, - [8782]={ + [9320]={ [1]={ [1]={ limit={ @@ -193747,7 +203919,7 @@ return { [1]="number_of_golems_allowed_with_3_primordial_jewels" } }, - [8783]={ + [9321]={ [1]={ [1]={ limit={ @@ -193772,7 +203944,7 @@ return { [1]="number_of_poison_cloud_allowed" } }, - [8784]={ + [9322]={ [1]={ [1]={ limit={ @@ -193797,7 +203969,7 @@ return { [1]="number_of_projectiles_+%_final_from_skill" } }, - [8785]={ + [9323]={ [1]={ [1]={ limit={ @@ -193813,7 +203985,7 @@ return { [1]="number_of_raging_spirits_is_limited_to_3" } }, - [8786]={ + [9324]={ [1]={ [1]={ [1]={ @@ -193833,7 +204005,7 @@ return { [1]="number_of_skeletons_allowed_per_2_old" } }, - [8787]={ + [9325]={ [1]={ [1]={ limit={ @@ -193849,7 +204021,7 @@ return { [1]="number_of_support_ghosts_is_limited_to_3" } }, - [8788]={ + [9326]={ [1]={ [1]={ limit={ @@ -193874,7 +204046,7 @@ return { [1]="number_of_vine_arrow_pod_allowed" } }, - [8789]={ + [9327]={ [1]={ [1]={ limit={ @@ -193890,7 +204062,7 @@ return { [1]="number_of_zombies_allowed_+1_per_X_strength" } }, - [8790]={ + [9328]={ [1]={ [1]={ limit={ @@ -193919,7 +204091,7 @@ return { [1]="occultist_chaos_damage_+%_final" } }, - [8791]={ + [9329]={ [1]={ [1]={ limit={ @@ -193948,7 +204120,7 @@ return { [1]="occultist_cold_damage_+%_final" } }, - [8792]={ + [9330]={ [1]={ [1]={ limit={ @@ -193964,7 +204136,7 @@ return { [1]="off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword" } }, - [8793]={ + [9331]={ [1]={ [1]={ limit={ @@ -193993,7 +204165,7 @@ return { [1]="off_hand_attack_speed_+%_while_dual_wielding" } }, - [8794]={ + [9332]={ [1]={ [1]={ limit={ @@ -194022,7 +204194,7 @@ return { [1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types" } }, - [8795]={ + [9333]={ [1]={ [1]={ limit={ @@ -194051,7 +204223,7 @@ return { [1]="off_hand_claw_mana_gain_on_hit" } }, - [8796]={ + [9334]={ [1]={ [1]={ [1]={ @@ -194071,7 +204243,7 @@ return { [1]="off_hand_critical_strike_chance_+_per_10_es_on_shield" } }, - [8797]={ + [9335]={ [1]={ [1]={ limit={ @@ -194087,7 +204259,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_10_es_on_shield" } }, - [8798]={ + [9336]={ [1]={ [1]={ limit={ @@ -194103,7 +204275,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100" } }, - [8799]={ + [9337]={ [1]={ [1]={ limit={ @@ -194132,7 +204304,7 @@ return { [1]="offering_area_of_effect_+%" } }, - [8800]={ + [9338]={ [1]={ [1]={ limit={ @@ -194161,7 +204333,7 @@ return { [1]="offering_duration_+%" } }, - [8801]={ + [9339]={ [1]={ [1]={ limit={ @@ -194190,7 +204362,7 @@ return { [1]="offering_life_+%" } }, - [8802]={ + [9340]={ [1]={ [1]={ limit={ @@ -194206,7 +204378,7 @@ return { [1]="offerings_cannot_be_damaged_if_created_recently" } }, - [8803]={ + [9341]={ [1]={ [1]={ limit={ @@ -194222,7 +204394,7 @@ return { [1]="on_banner_expiry_recover_%_of_required_glory" } }, - [8804]={ + [9342]={ [1]={ [1]={ limit={ @@ -194238,7 +204410,7 @@ return { [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" } }, - [8805]={ + [9343]={ [1]={ [1]={ limit={ @@ -194254,7 +204426,7 @@ return { [1]="on_casting_banner_recover_%_of_planted_banner_stages" } }, - [8806]={ + [9344]={ [1]={ [1]={ limit={ @@ -194270,7 +204442,7 @@ return { [1]="on_kill_effects_occur_twice" } }, - [8807]={ + [9345]={ [1]={ [1]={ limit={ @@ -194299,7 +204471,7 @@ return { [1]="one_handed_attack_ailment_chance_+%" } }, - [8808]={ + [9346]={ [1]={ [1]={ limit={ @@ -194315,7 +204487,7 @@ return { [1]="open_nearby_chests_on_cast_chance_%" } }, - [8809]={ + [9347]={ [1]={ [1]={ limit={ @@ -194331,7 +204503,7 @@ return { [1]="orb_of_storm_strike_rate_while_channelling_+%" } }, - [8810]={ + [9348]={ [1]={ [1]={ limit={ @@ -194347,7 +204519,7 @@ return { [1]="orb_of_storms_cast_speed_+%" } }, - [8811]={ + [9349]={ [1]={ [1]={ limit={ @@ -194363,55 +204535,217 @@ return { [1]="orb_skill_limit_+" } }, - [8812]={ + [9350]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Proliferation: Ritual Altars in Area allow rerolling Favours an additional time" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Deal {0}% of Overkill damage to enemies within 2 metres of the enemy killed" + text="Foretold Proliferation: Ritual Altars in Area allow rerolling Favours {0} additional times" } }, stats={ - [1]="overkill_damage_%_as_physical_to_nearby_enemies" + [1]="other_rite_maps_gain_ritual_additional_reward_rerolls" } }, - [8813]={ + [9351]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Proliferation: Rituals contain an additional pack of Wildwood Monsters" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Allies in your Presence have Block Chance equal to yours" + text="Foretold Proliferation: Rituals contain {0} additional packs of Wildwood Monsters" } }, stats={ - [1]="override_block_chance_for_allies_in_your_presence" + [1]="other_rite_maps_gain_ritual_additional_wildwood_packs" } }, - [8814]={ + [9352]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Foretold Proliferation: Rerolling Favours at Ritual Altars has no Cost the first time" + }, + [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Your Maximum Resistances are {0}%" + text="Foretold Proliferation: Rerolling Favours at Ritual Altars has no Cost the first {0} times" } }, stats={ - [1]="override_maximum_damage_resistance_%" + [1]="other_rite_maps_gain_ritual_number_of_free_rerolls" } }, - [8815]={ + [9353]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Foretold Proliferation: Ritual Altars offer {0}% increased number of Favours" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Foretold Proliferation: Ritual Altars offer {0}% reduced number of Favours" + } + }, + stats={ + [1]="other_rite_maps_gain_ritual_offered_rewards_amount_+%" + } + }, + [9354]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Foretold Proliferation: Rerolling Favours at Ritual Altars in your Maps costs {0}% increased Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Foretold Proliferation: Rerolling Favours at Ritual Altars in your Maps costs {0}% reduced Tribute" + } + }, + stats={ + [1]="other_rite_maps_gain_ritual_rewards_reroll_cost_+%_final" + } + }, + [9355]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Foretold Proliferation: Monsters Sacrificed at Ritual Altars grant {0}% increased Tribute" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Foretold Proliferation: Monsters Sacrificed at Ritual Altars grant {0}% reduced Tribute" + } + }, + stats={ + [1]="other_rite_maps_gain_ritual_tribute_+%" + } + }, + [9356]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Overencumbrance for 4 seconds when you Dodge Roll" + } + }, + stats={ + [1]="overencumbrance_on_dodge_roll" + } + }, + [9357]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Deal {0}% of Overkill damage to enemies within 2 metres of the enemy killed" + } + }, + stats={ + [1]="overkill_damage_%_as_physical_to_nearby_enemies" + } + }, + [9358]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Allies in your Presence have Block Chance equal to yours" + } + }, + stats={ + [1]="override_block_chance_for_allies_in_your_presence" + } + }, + [9359]={ [1]={ [1]={ [1]={ @@ -194431,7 +204765,7 @@ return { [1]="override_weapon_base_critical_strike_chance" } }, - [8816]={ + [9360]={ [1]={ [1]={ limit={ @@ -194460,7 +204794,7 @@ return { [1]="pantheon_abberath_ignite_duration_on_self_+%_final" } }, - [8817]={ + [9361]={ [1]={ [1]={ limit={ @@ -194489,7 +204823,7 @@ return { [1]="pantheon_shakari_self_poison_duration_+%_final" } }, - [8818]={ + [9362]={ [1]={ [1]={ limit={ @@ -194518,7 +204852,7 @@ return { [1]="parried_magnitude_+%" } }, - [8819]={ + [9363]={ [1]={ [1]={ limit={ @@ -194534,7 +204868,7 @@ return { [1]="parry_applies_spell_damage_debuff_instead" } }, - [8820]={ + [9364]={ [1]={ [1]={ limit={ @@ -194563,7 +204897,7 @@ return { [1]="parry_area_of_effect_+%" } }, - [8821]={ + [9365]={ [1]={ [1]={ limit={ @@ -194592,7 +204926,7 @@ return { [1]="parry_attack_speed_+%_if_youve_parried_recently" } }, - [8822]={ + [9366]={ [1]={ [1]={ limit={ @@ -194608,7 +204942,7 @@ return { [1]="parry_cannot_be_critically_hit_during_parry" } }, - [8823]={ + [9367]={ [1]={ [1]={ limit={ @@ -194637,23 +204971,7 @@ return { [1]="parry_damage_+%" } }, - [8824]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% chance for Parry to also deal your Thorns Damage to Enemies it Hits" - } - }, - stats={ - [1]="parry_deal_thorns_damage_chance_%_on_hit" - } - }, - [8825]={ + [9368]={ [1]={ [1]={ limit={ @@ -194682,7 +205000,7 @@ return { [1]="parry_evasion_rating_+%_during_parry" } }, - [8826]={ + [9369]={ [1]={ [1]={ limit={ @@ -194711,7 +205029,7 @@ return { [1]="parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently" } }, - [8827]={ + [9370]={ [1]={ [1]={ limit={ @@ -194740,7 +205058,7 @@ return { [1]="parry_hit_damage_stun_multiplier_+%" } }, - [8828]={ + [9371]={ [1]={ [1]={ limit={ @@ -194756,7 +205074,7 @@ return { [1]="parry_modifiers_to_stun_buildup_instead_apply_to_freeze" } }, - [8829]={ + [9372]={ [1]={ [1]={ limit={ @@ -194785,7 +205103,7 @@ return { [1]="parry_movement_speed_+%_if_youve_parried_recently" } }, - [8830]={ + [9373]={ [1]={ [1]={ limit={ @@ -194801,7 +205119,7 @@ return { [1]="parry_physical_damage_%_to_convert_to_cold" } }, - [8831]={ + [9374]={ [1]={ [1]={ limit={ @@ -194830,7 +205148,7 @@ return { [1]="parry_skill_effect_duration_+%_per_10_tribute" } }, - [8832]={ + [9375]={ [1]={ [1]={ limit={ @@ -194859,7 +205177,7 @@ return { [1]="parry_skill_effect_duration_+%" } }, - [8833]={ + [9376]={ [1]={ [1]={ limit={ @@ -194888,7 +205206,7 @@ return { [1]="parry_stun_threshold_+%_during_parry" } }, - [8834]={ + [9377]={ [1]={ [1]={ limit={ @@ -194917,7 +205235,7 @@ return { [1]="parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack" } }, - [8835]={ + [9378]={ [1]={ [1]={ limit={ @@ -194946,7 +205264,7 @@ return { [1]="parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack" } }, - [8836]={ + [9379]={ [1]={ [1]={ limit={ @@ -194971,7 +205289,7 @@ return { [1]="passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" } }, - [8837]={ + [9380]={ [1]={ [1]={ limit={ @@ -194996,7 +205314,7 @@ return { [1]="passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value" } }, - [8838]={ + [9381]={ [1]={ [1]={ limit={ @@ -195025,7 +205343,7 @@ return { [1]="passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield" } }, - [8839]={ + [9382]={ [1]={ [1]={ limit={ @@ -195054,7 +205372,7 @@ return { [1]="passive_mastery_damage_taken_over_time_+%_final" } }, - [8840]={ + [9383]={ [1]={ [1]={ limit={ @@ -195070,7 +205388,7 @@ return { [1]="passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%" } }, - [8841]={ + [9384]={ [1]={ [1]={ limit={ @@ -195099,7 +205417,7 @@ return { [1]="passive_mastery_less_projectile_speed_+%_final" } }, - [8842]={ + [9385]={ [1]={ [1]={ limit={ @@ -195128,7 +205446,7 @@ return { [1]="passive_mastery_less_skill_effect_duration_+%_final" } }, - [8843]={ + [9386]={ [1]={ [1]={ limit={ @@ -195157,7 +205475,7 @@ return { [1]="passive_mastery_more_projectile_speed_+%_final" } }, - [8844]={ + [9387]={ [1]={ [1]={ limit={ @@ -195186,7 +205504,7 @@ return { [1]="passive_mastery_more_skill_effect_duration_+%_final" } }, - [8845]={ + [9388]={ [1]={ [1]={ limit={ @@ -195215,7 +205533,7 @@ return { [1]="passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield" } }, - [8846]={ + [9389]={ [1]={ [1]={ limit={ @@ -195240,7 +205558,7 @@ return { [1]="passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits" } }, - [8847]={ + [9390]={ [1]={ [1]={ limit={ @@ -195273,7 +205591,7 @@ return { [1]="passive_tree_damage_taken_+%_final_from_hindered_enemies" } }, - [8848]={ + [9391]={ [1]={ [1]={ limit={ @@ -195302,7 +205620,7 @@ return { [1]="passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies" } }, - [8849]={ + [9392]={ [1]={ [1]={ [1]={ @@ -195322,7 +205640,7 @@ return { [1]="pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x" } }, - [8850]={ + [9393]={ [1]={ [1]={ limit={ @@ -195351,7 +205669,7 @@ return { [1]="pathfinder_flask_amount_to_recover_+%_final" } }, - [8851]={ + [9394]={ [1]={ [1]={ limit={ @@ -195380,7 +205698,7 @@ return { [1]="pathfinder_flask_life_to_recover_+%_final" } }, - [8852]={ + [9395]={ [1]={ [1]={ limit={ @@ -195413,7 +205731,7 @@ return { [1]="pathfinder_poison_duration_+%_final" } }, - [8853]={ + [9396]={ [1]={ [1]={ limit={ @@ -195442,7 +205760,7 @@ return { [1]="penance_brand_area_of_effect_+%" } }, - [8854]={ + [9397]={ [1]={ [1]={ limit={ @@ -195471,7 +205789,7 @@ return { [1]="penance_brand_cast_speed_+%" } }, - [8855]={ + [9398]={ [1]={ [1]={ limit={ @@ -195500,7 +205818,7 @@ return { [1]="penance_brand_damage_+%" } }, - [8856]={ + [9399]={ [1]={ [1]={ limit={ @@ -195516,7 +205834,7 @@ return { [1]="penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you" } }, - [8857]={ + [9400]={ [1]={ [1]={ limit={ @@ -195532,7 +205850,7 @@ return { [1]="penetrate_elemental_resistance_%_while_shapeshifted" } }, - [8858]={ + [9401]={ [1]={ [1]={ limit={ @@ -195548,7 +205866,7 @@ return { [1]="perandus_double_number_of_coins_found" } }, - [8859]={ + [9402]={ [1]={ [1]={ limit={ @@ -195564,7 +205882,7 @@ return { [1]="%_chance_to_deal_150%_area_damage_+%_final" } }, - [8860]={ + [9403]={ [1]={ [1]={ limit={ @@ -195589,7 +205907,7 @@ return { [1]="%_chance_to_gain_endurance_charge_each_second_while_channelling" } }, - [8861]={ + [9404]={ [1]={ [1]={ limit={ @@ -195605,7 +205923,7 @@ return { [1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy" } }, - [8862]={ + [9405]={ [1]={ [1]={ limit={ @@ -195638,7 +205956,23 @@ return { [1]="%_number_of_raging_spirits_allowed" } }, - [8863]={ + [9406]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Physical damage dealt by your Hits causes Blood Loss" + } + }, + stats={ + [1]="%_of_physical_hit_damage_you_deal_causes_additional_blood_loss" + } + }, + [9407]={ [1]={ [1]={ limit={ @@ -195667,7 +206001,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [8864]={ + [9408]={ [1]={ [1]={ limit={ @@ -195683,7 +206017,7 @@ return { [1]="permanent_damage_+%_per_second_of_chill" } }, - [8865]={ + [9409]={ [1]={ [1]={ limit={ @@ -195699,7 +206033,7 @@ return { [1]="permanent_damage_+%_per_second_of_freeze" } }, - [8866]={ + [9410]={ [1]={ [1]={ limit={ @@ -195715,7 +206049,7 @@ return { [1]="permanent_fire_damage_+%_per_second_of_ignite_up_to_10%" } }, - [8867]={ + [9411]={ [1]={ [1]={ limit={ @@ -195731,7 +206065,7 @@ return { [1]="permanently_intimidate_enemy_on_block" } }, - [8868]={ + [9412]={ [1]={ [1]={ [1]={ @@ -195768,7 +206102,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_-2%_per_1" } }, - [8869]={ + [9413]={ [1]={ [1]={ limit={ @@ -195797,7 +206131,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_+%" } }, - [8870]={ + [9414]={ [1]={ [1]={ limit={ @@ -195830,7 +206164,7 @@ return { [1]="petrified_blood_reservation_+%" } }, - [8871]={ + [9415]={ [1]={ [1]={ limit={ @@ -195855,7 +206189,7 @@ return { [1]="phantasm_refresh_duration_on_hit_vs_unique_%_chance" } }, - [8872]={ + [9416]={ [1]={ [1]={ limit={ @@ -195880,7 +206214,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [8873]={ + [9417]={ [1]={ [1]={ limit={ @@ -195896,7 +206230,7 @@ return { [1]="phasing_if_blocked_recently" } }, - [8874]={ + [9418]={ [1]={ [1]={ limit={ @@ -195925,7 +206259,7 @@ return { [1]="phys_cascade_trap_cooldown_speed_+%" } }, - [8875]={ + [9419]={ [1]={ [1]={ limit={ @@ -195954,7 +206288,7 @@ return { [1]="phys_cascade_trap_damage_+%" } }, - [8876]={ + [9420]={ [1]={ [1]={ limit={ @@ -195983,7 +206317,7 @@ return { [1]="phys_cascade_trap_duration_+%" } }, - [8877]={ + [9421]={ [1]={ [1]={ limit={ @@ -196008,7 +206342,7 @@ return { [1]="phys_cascade_trap_number_of_additional_cascades" } }, - [8878]={ + [9422]={ [1]={ [1]={ limit={ @@ -196037,7 +206371,7 @@ return { [1]="physical_and_chaos_damage_taken_+%_final_while_not_unhinged" } }, - [8879]={ + [9423]={ [1]={ [1]={ limit={ @@ -196053,7 +206387,7 @@ return { [1]="physical_damage_%_to_gain_as_fire_vs_heavy_stunned" } }, - [8880]={ + [9424]={ [1]={ [1]={ limit={ @@ -196069,7 +206403,7 @@ return { [1]="physical_damage_%_to_gain_as_lightning_vs_electrocuted" } }, - [8881]={ + [9425]={ [1]={ [1]={ limit={ @@ -196085,7 +206419,7 @@ return { [1]="physical_damage_+%_per_explicit_map_mod_affecting_area" } }, - [8882]={ + [9426]={ [1]={ [1]={ limit={ @@ -196114,7 +206448,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_blood" } }, - [8883]={ + [9427]={ [1]={ [1]={ limit={ @@ -196143,23 +206477,7 @@ return { [1]="physical_damage_+%_while_shapeshifted" } }, - [8884]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Damage of a Random Element" - } - }, - stats={ - [1]="physical_damage_from_hits_%_taken_as_random_element" - } - }, - [8885]={ + [9428]={ [1]={ [1]={ limit={ @@ -196188,7 +206506,7 @@ return { [1]="physical_damage_over_time_taken_+%_while_moving" } }, - [8886]={ + [9429]={ [1]={ [1]={ limit={ @@ -196217,7 +206535,7 @@ return { [1]="physical_damage_+%_if_skill_costs_life" } }, - [8887]={ + [9430]={ [1]={ [1]={ limit={ @@ -196246,7 +206564,7 @@ return { [1]="physical_damage_+%_per_10_rage" } }, - [8888]={ + [9431]={ [1]={ [1]={ limit={ @@ -196275,7 +206593,7 @@ return { [1]="physical_damage_+%_vs_ignited_enemies" } }, - [8889]={ + [9432]={ [1]={ [1]={ limit={ @@ -196304,7 +206622,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_purity" } }, - [8890]={ + [9433]={ [1]={ [1]={ limit={ @@ -196333,7 +206651,7 @@ return { [1]="physical_damage_+%_with_axes_swords" } }, - [8891]={ + [9434]={ [1]={ [1]={ limit={ @@ -196349,7 +206667,7 @@ return { [1]="physical_damage_prevented_recouped_as_life_%" } }, - [8892]={ + [9435]={ [1]={ [1]={ limit={ @@ -196365,7 +206683,7 @@ return { [1]="physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute" } }, - [8893]={ + [9436]={ [1]={ [1]={ limit={ @@ -196381,7 +206699,7 @@ return { [1]="physical_damage_reduction_%_at_devotion_threshold" } }, - [8894]={ + [9437]={ [1]={ [1]={ limit={ @@ -196397,7 +206715,7 @@ return { [1]="physical_damage_reduction_percent_per_frenzy_charge" } }, - [8895]={ + [9438]={ [1]={ [1]={ limit={ @@ -196413,7 +206731,7 @@ return { [1]="physical_damage_reduction_%_per_hit_you_have_taken_recently" } }, - [8896]={ + [9439]={ [1]={ [1]={ limit={ @@ -196429,7 +206747,7 @@ return { [1]="physical_damage_reduction_percent_per_power_charge" } }, - [8897]={ + [9440]={ [1]={ [1]={ limit={ @@ -196445,7 +206763,7 @@ return { [1]="physical_damage_reduction_%_while_affected_by_herald_of_purity" } }, - [8898]={ + [9441]={ [1]={ [1]={ limit={ @@ -196474,7 +206792,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_10_tribute" } }, - [8899]={ + [9442]={ [1]={ [1]={ limit={ @@ -196490,7 +206808,7 @@ return { [1]="physical_damage_reduction_rating_during_soul_gain_prevention" } }, - [8900]={ + [9443]={ [1]={ [1]={ limit={ @@ -196506,7 +206824,7 @@ return { [1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently" } }, - [8901]={ + [9444]={ [1]={ [1]={ limit={ @@ -196522,7 +206840,7 @@ return { [1]="physical_damage_reduction_rating_per_endurance_charge" } }, - [8902]={ + [9445]={ [1]={ [1]={ limit={ @@ -196538,7 +206856,7 @@ return { [1]="physical_damage_reduction_%_if_only_one_enemy_nearby" } }, - [8903]={ + [9446]={ [1]={ [1]={ limit={ @@ -196554,7 +206872,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_endurance_charge" } }, - [8904]={ + [9447]={ [1]={ [1]={ limit={ @@ -196570,7 +206888,7 @@ return { [1]="physical_damage_reduction_%_per_nearby_enemy" } }, - [8905]={ + [9448]={ [1]={ [1]={ limit={ @@ -196599,103 +206917,7 @@ return { [1]="physical_damage_taken_+%_from_hits" } }, - [8906]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" - } - }, - stats={ - [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements" - } - }, - [8907]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" - } - }, - stats={ - [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice" - } - }, - [8908]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" - } - }, - stats={ - [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements" - } - }, - [8909]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" - } - }, - stats={ - [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire" - } - }, - [8910]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" - } - }, - stats={ - [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements" - } - }, - [8911]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" - } - }, - stats={ - [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning" - } - }, - [8912]={ + [9449]={ [1]={ [1]={ limit={ @@ -196711,7 +206933,7 @@ return { [1]="physical_damage_taken_recouped_as_life_%" } }, - [8913]={ + [9450]={ [1]={ [1]={ limit={ @@ -196740,7 +206962,7 @@ return { [1]="physical_damage_with_attack_skills_+%" } }, - [8914]={ + [9451]={ [1]={ [1]={ limit={ @@ -196769,7 +206991,7 @@ return { [1]="physical_damage_with_spell_skills_+%" } }, - [8915]={ + [9452]={ [1]={ [1]={ limit={ @@ -196785,7 +207007,7 @@ return { [1]="physical_dot_multiplier_+_if_crit_recently" } }, - [8916]={ + [9453]={ [1]={ [1]={ limit={ @@ -196801,7 +207023,7 @@ return { [1]="physical_dot_multiplier_+_if_spent_life_recently" } }, - [8917]={ + [9454]={ [1]={ [1]={ limit={ @@ -196830,87 +207052,7 @@ return { [1]="physical_dot_multiplier_+_while_wielding_axes_swords" } }, - [8918]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage taken as Cold Damage" - } - }, - stats={ - [1]="physical_hit_and_dot_damage_%_taken_as_cold" - } - }, - [8919]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage taken as Fire Damage" - } - }, - stats={ - [1]="physical_hit_and_dot_damage_%_taken_as_fire" - } - }, - [8920]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage taken as Lightning Damage" - } - }, - stats={ - [1]="physical_hit_and_dot_damage_%_taken_as_lightning" - } - }, - [8921]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% of Physical Damage taken as Chaos Damage" - } - }, - stats={ - [1]="physical_hit_and_dot_damage_%_taken_as_chaos" - } - }, - [8922]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Physical Damage taken as Lightning while your Shield is raised" - } - }, - stats={ - [1]="physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking" - } - }, - [8923]={ + [9455]={ [1]={ [1]={ limit={ @@ -196943,23 +207085,7 @@ return { [1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%" } }, - [8924]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Physical Skills" - } - }, - stats={ - [1]="physical_skill_gem_level_+" - } - }, - [8925]={ + [9456]={ [1]={ [1]={ limit={ @@ -196975,7 +207101,7 @@ return { [1]="physical_spell_damage_can_pin_on_critical_hit" } }, - [8926]={ + [9457]={ [1]={ [1]={ limit={ @@ -197004,7 +207130,7 @@ return { [1]="piercing_projectiles_critical_strike_chance_+%" } }, - [8927]={ + [9458]={ [1]={ [1]={ limit={ @@ -197020,7 +207146,7 @@ return { [1]="pin_almost_pinned_enemies" } }, - [8928]={ + [9459]={ [1]={ [1]={ limit={ @@ -197049,7 +207175,7 @@ return { [1]="pin_duration_+%" } }, - [8929]={ + [9460]={ [1]={ [1]={ limit={ @@ -197065,7 +207191,7 @@ return { [1]="pin_stops_enemies" } }, - [8930]={ + [9461]={ [1]={ [1]={ limit={ @@ -197081,7 +207207,7 @@ return { [1]="pinned_enemies_cannot_crit" } }, - [8931]={ + [9462]={ [1]={ [1]={ limit={ @@ -197097,7 +207223,7 @@ return { [1]="pinned_enemies_cannot_evade_your_attacks" } }, - [8932]={ + [9463]={ [1]={ [1]={ limit={ @@ -197126,7 +207252,7 @@ return { [1]="placed_banner_attack_damage_+%" } }, - [8933]={ + [9464]={ [1]={ [1]={ limit={ @@ -197155,7 +207281,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [8934]={ + [9465]={ [1]={ [1]={ limit={ @@ -197184,7 +207310,7 @@ return { [1]="plague_bearer_maximum_stored_poison_damage_+%" } }, - [8935]={ + [9466]={ [1]={ [1]={ limit={ @@ -197213,7 +207339,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [8936]={ + [9467]={ [1]={ [1]={ limit={ @@ -197242,7 +207368,7 @@ return { [1]="plague_bearer_poison_effect_+%_while_infecting" } }, - [8937]={ + [9468]={ [1]={ [1]={ limit={ @@ -197271,7 +207397,7 @@ return { [1]="plant_skill_armour_break_amount_+%_when_wet" } }, - [8938]={ + [9469]={ [1]={ [1]={ limit={ @@ -197300,7 +207426,36 @@ return { [1]="plant_skill_damage_+%" } }, - [8939]={ + [9470]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Effect Duration with Plant Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Effect Duration with Plant Skills" + } + }, + stats={ + [1]="plant_skill_effect_duration_+%" + } + }, + [9471]={ [1]={ [1]={ limit={ @@ -197316,7 +207471,7 @@ return { [1]="player_can_be_touched_by_tormented_spirits" } }, - [8940]={ + [9472]={ [1]={ [1]={ limit={ @@ -197332,7 +207487,7 @@ return { [1]="poison_as_though_dealing_X_damage_on_block" } }, - [8941]={ + [9473]={ [1]={ [1]={ limit={ @@ -197361,7 +207516,7 @@ return { [1]="poison_chance_+%" } }, - [8942]={ + [9474]={ [1]={ [1]={ limit={ @@ -197390,7 +207545,7 @@ return { [1]="poison_duration_+%_against_slowed_enemies" } }, - [8943]={ + [9475]={ [1]={ [1]={ limit={ @@ -197419,7 +207574,7 @@ return { [1]="poison_duration_+%_if_consumed_frenzy_charge_recently" } }, - [8944]={ + [9476]={ [1]={ [1]={ limit={ @@ -197448,7 +207603,7 @@ return { [1]="poison_duration_+%_per_poison_applied_recently" } }, - [8945]={ + [9477]={ [1]={ [1]={ limit={ @@ -197477,7 +207632,7 @@ return { [1]="poison_duration_+%_per_power_charge" } }, - [8946]={ + [9478]={ [1]={ [1]={ limit={ @@ -197506,7 +207661,7 @@ return { [1]="poison_duration_+%_with_over_150_intelligence" } }, - [8947]={ + [9479]={ [1]={ [1]={ limit={ @@ -197515,7 +207670,7 @@ return { [2]="#" } }, - text="{0}% increased Effect of Poison you inflict on targets that are not Poisoned" + text="{0}% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, [2]={ [1]={ @@ -197528,14 +207683,14 @@ return { [2]=-1 } }, - text="{0}% reduced Effect of Poison you inflict on targets that are not Poisoned" + text="{0}% reduced Magnitude of Poison you inflict on targets that are not Poisoned" } }, stats={ [1]="poison_effect_+%_vs_non_poisoned_enemies" } }, - [8948]={ + [9480]={ [1]={ [1]={ limit={ @@ -197551,7 +207706,7 @@ return { [1]="poison_effect_+100%_final_chance_during_flask_effect" } }, - [8949]={ + [9481]={ [1]={ [1]={ limit={ @@ -197580,7 +207735,7 @@ return { [1]="base_poison_effect_+%" } }, - [8950]={ + [9482]={ [1]={ [1]={ limit={ @@ -197609,7 +207764,7 @@ return { [1]="poison_effect_+%_per_frenzy_charge" } }, - [8951]={ + [9483]={ [1]={ [1]={ limit={ @@ -197638,7 +207793,7 @@ return { [1]="poison_effect_+%_vs_bleeding_enemies" } }, - [8952]={ + [9484]={ [1]={ [1]={ limit={ @@ -197667,7 +207822,7 @@ return { [1]="poison_effect_+%_with_spells" } }, - [8953]={ + [9485]={ [1]={ [1]={ limit={ @@ -197683,7 +207838,7 @@ return { [1]="poison_on_critical_strike" } }, - [8954]={ + [9486]={ [1]={ [1]={ limit={ @@ -197692,14 +207847,14 @@ return { [2]="#" } }, - text="Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you" + text="Poison you inflict is Reflected to you" } }, stats={ [1]="poison_reflected_to_self" } }, - [8955]={ + [9487]={ [1]={ [1]={ limit={ @@ -197732,7 +207887,7 @@ return { [1]="poison_time_passed_+%" } }, - [8956]={ + [9488]={ [1]={ [1]={ limit={ @@ -197761,7 +207916,7 @@ return { [1]="poisonous_concoction_damage_+%" } }, - [8957]={ + [9489]={ [1]={ [1]={ limit={ @@ -197790,7 +207945,7 @@ return { [1]="poisonous_concoction_flask_charges_consumed_+%" } }, - [8958]={ + [9490]={ [1]={ [1]={ limit={ @@ -197819,7 +207974,7 @@ return { [1]="poisonous_concoction_skill_area_of_effect_+%" } }, - [8959]={ + [9491]={ [1]={ [1]={ limit={ @@ -197835,7 +207990,7 @@ return { [1]="poisons_you_inflict_can_stack_infintely" } }, - [8960]={ + [9492]={ [1]={ [1]={ [1]={ @@ -197855,7 +208010,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [8961]={ + [9493]={ [1]={ [1]={ limit={ @@ -197884,7 +208039,7 @@ return { [1]="power_charge_duration_+%_final" } }, - [8962]={ + [9494]={ [1]={ [1]={ limit={ @@ -197900,7 +208055,7 @@ return { [1]="power_charge_on_kill_percent_chance_while_holding_shield" } }, - [8963]={ + [9495]={ [1]={ [1]={ limit={ @@ -197916,7 +208071,7 @@ return { [1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers" } }, - [8964]={ + [9496]={ [1]={ [1]={ limit={ @@ -197941,7 +208096,7 @@ return { [1]="power_siphon_number_of_additional_projectiles" } }, - [8965]={ + [9497]={ [1]={ [1]={ [1]={ @@ -197978,7 +208133,7 @@ return { [1]="precision_mana_reservation_efficiency_-2%_per_1" } }, - [8966]={ + [9498]={ [1]={ [1]={ limit={ @@ -197994,7 +208149,7 @@ return { [1]="precision_mana_reservation_efficiency_+100%" } }, - [8967]={ + [9499]={ [1]={ [1]={ limit={ @@ -198023,7 +208178,7 @@ return { [1]="precision_mana_reservation_efficiency_+%" } }, - [8968]={ + [9500]={ [1]={ [1]={ limit={ @@ -198039,7 +208194,7 @@ return { [1]="precision_mana_reservation_-50%_final" } }, - [8969]={ + [9501]={ [1]={ [1]={ limit={ @@ -198068,7 +208223,7 @@ return { [1]="precision_mana_reservation_+%" } }, - [8970]={ + [9502]={ [1]={ [1]={ limit={ @@ -198084,7 +208239,7 @@ return { [1]="precision_reserves_no_mana" } }, - [8971]={ + [9503]={ [1]={ [1]={ limit={ @@ -198113,7 +208268,7 @@ return { [1]="presence_area_+%_per_10_tribute" } }, - [8972]={ + [9504]={ [1]={ [1]={ limit={ @@ -198138,7 +208293,7 @@ return { [1]="prevent_projectile_chaining_%_chance" } }, - [8973]={ + [9505]={ [1]={ [1]={ limit={ @@ -198167,7 +208322,7 @@ return { [1]="pride_aura_effect_+%" } }, - [8974]={ + [9506]={ [1]={ [1]={ limit={ @@ -198183,7 +208338,7 @@ return { [1]="pride_chance_to_deal_double_damage_%" } }, - [8975]={ + [9507]={ [1]={ [1]={ limit={ @@ -198208,7 +208363,7 @@ return { [1]="pride_chance_to_impale_with_attacks_%" } }, - [8976]={ + [9508]={ [1]={ [1]={ limit={ @@ -198224,7 +208379,7 @@ return { [1]="pride_intimidate_enemy_for_4_seconds_on_hit" } }, - [8977]={ + [9509]={ [1]={ [1]={ [1]={ @@ -198261,7 +208416,7 @@ return { [1]="pride_mana_reservation_efficiency_-2%_per_1" } }, - [8978]={ + [9510]={ [1]={ [1]={ limit={ @@ -198290,7 +208445,7 @@ return { [1]="pride_mana_reservation_efficiency_+%" } }, - [8979]={ + [9511]={ [1]={ [1]={ limit={ @@ -198323,7 +208478,7 @@ return { [1]="pride_mana_reservation_+%" } }, - [8980]={ + [9512]={ [1]={ [1]={ limit={ @@ -198352,7 +208507,7 @@ return { [1]="pride_physical_damage_+%" } }, - [8981]={ + [9513]={ [1]={ [1]={ limit={ @@ -198368,7 +208523,7 @@ return { [1]="pride_reserves_no_mana" } }, - [8982]={ + [9514]={ [1]={ [1]={ limit={ @@ -198384,7 +208539,7 @@ return { [1]="pride_your_impaled_debuff_lasts_+_additional_hits" } }, - [8983]={ + [9515]={ [1]={ [1]={ limit={ @@ -198413,7 +208568,7 @@ return { [1]="primalist_charm_charges_gained_+%_final" } }, - [8984]={ + [9516]={ [1]={ [1]={ limit={ @@ -198442,7 +208597,7 @@ return { [1]="prismatic_rain_beam_frequency_+%" } }, - [8985]={ + [9517]={ [1]={ [1]={ limit={ @@ -198458,7 +208613,7 @@ return { [1]="profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence" } }, - [8986]={ + [9518]={ [1]={ [1]={ limit={ @@ -198487,7 +208642,7 @@ return { [1]="projectile_ailment_chance_+%" } }, - [8987]={ + [9519]={ [1]={ [1]={ limit={ @@ -198503,7 +208658,7 @@ return { [1]="projectile_all_damage_%_to_gain_as_instilling_type" } }, - [8988]={ + [9520]={ [1]={ [1]={ limit={ @@ -198532,7 +208687,7 @@ return { [1]="projectile_attack_damage_+%_during_flask_effect" } }, - [8989]={ + [9521]={ [1]={ [1]={ limit={ @@ -198561,7 +208716,7 @@ return { [1]="projectile_attack_damage_+%_with_claw_or_dagger" } }, - [8990]={ + [9522]={ [1]={ [1]={ limit={ @@ -198590,7 +208745,7 @@ return { [1]="projectile_attack_range_+%" } }, - [8991]={ + [9523]={ [1]={ [1]={ limit={ @@ -198606,7 +208761,7 @@ return { [1]="projectile_attack_skill_critical_strike_multiplier_+" } }, - [8992]={ + [9524]={ [1]={ [1]={ limit={ @@ -198631,7 +208786,7 @@ return { [1]="projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving" } }, - [8993]={ + [9525]={ [1]={ [1]={ limit={ @@ -198647,7 +208802,7 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%" } }, - [8994]={ + [9526]={ [1]={ [1]={ limit={ @@ -198663,7 +208818,32 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [8995]={ + [9527]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Projectiles have {0}% chance to Fork" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Projectiles Fork" + } + }, + stats={ + [1]="projectile_chance_to_fork_%" + } + }, + [9528]={ [1]={ [1]={ limit={ @@ -198679,7 +208859,7 @@ return { [1]="projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player" } }, - [8996]={ + [9529]={ [1]={ [1]={ limit={ @@ -198708,7 +208888,7 @@ return { [1]="projectile_damage_+%_against_heavy_stunned_enemies" } }, - [8997]={ + [9530]={ [1]={ [1]={ limit={ @@ -198737,7 +208917,7 @@ return { [1]="projectile_damage_+%_if_youve_dealt_melee_hit_recently" } }, - [8998]={ + [9531]={ [1]={ [1]={ limit={ @@ -198766,7 +208946,7 @@ return { [1]="projectile_damage_+%_vs_enemies_further_than_6m_distance" } }, - [8999]={ + [9532]={ [1]={ [1]={ limit={ @@ -198795,7 +208975,7 @@ return { [1]="projectile_damage_+%_vs_enemies_within_2m_distance" } }, - [9000]={ + [9533]={ [1]={ [1]={ limit={ @@ -198824,7 +209004,7 @@ return { [1]="projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you" } }, - [9001]={ + [9534]={ [1]={ [1]={ limit={ @@ -198853,7 +209033,7 @@ return { [1]="projectile_damage_+%_max_before_distance_increase" } }, - [9002]={ + [9535]={ [1]={ [1]={ limit={ @@ -198869,7 +209049,7 @@ return { [1]="projectile_damage_+%_per_16_dexterity" } }, - [9003]={ + [9536]={ [1]={ [1]={ limit={ @@ -198885,7 +209065,7 @@ return { [1]="projectile_damage_+%_per_chain" } }, - [9004]={ + [9537]={ [1]={ [1]={ limit={ @@ -198901,7 +209081,7 @@ return { [1]="projectile_damage_+%_per_pierced_enemy" } }, - [9005]={ + [9538]={ [1]={ [1]={ limit={ @@ -198930,7 +209110,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [9006]={ + [9539]={ [1]={ [1]={ limit={ @@ -198959,7 +209139,7 @@ return { [1]="projectile_damage_+%_vs_chained_enemy" } }, - [9007]={ + [9540]={ [1]={ [1]={ limit={ @@ -198988,7 +209168,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [9008]={ + [9541]={ [1]={ [1]={ limit={ @@ -199004,7 +209184,7 @@ return { [1]="projectile_daze_chance_%_vs_enemies_further_than_6m" } }, - [9009]={ + [9542]={ [1]={ [1]={ limit={ @@ -199033,7 +209213,7 @@ return { [1]="projectile_hit_damage_stun_multiplier_+%" } }, - [9010]={ + [9543]={ [1]={ [1]={ limit={ @@ -199049,7 +209229,7 @@ return { [1]="projectile_number_to_split" } }, - [9011]={ + [9544]={ [1]={ [1]={ limit={ @@ -199078,7 +209258,7 @@ return { [1]="projectile_speed_+%_with_daggers" } }, - [9012]={ + [9545]={ [1]={ [1]={ [1]={ @@ -199098,7 +209278,7 @@ return { [1]="projectile_spell_cooldown_modifier_ms" } }, - [9013]={ + [9546]={ [1]={ [1]={ limit={ @@ -199114,7 +209294,7 @@ return { [1]="projectiles_always_pierce_you" } }, - [9014]={ + [9547]={ [1]={ [1]={ limit={ @@ -199130,7 +209310,7 @@ return { [1]="projectiles_crit_chance_+%_for_each_time_they_have_pierced" } }, - [9015]={ + [9548]={ [1]={ [1]={ limit={ @@ -199155,7 +209335,7 @@ return { [1]="projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently" } }, - [9016]={ + [9549]={ [1]={ [1]={ limit={ @@ -199171,7 +209351,23 @@ return { [1]="projectiles_from_spells_cannot_pierce" } }, - [9017]={ + [9550]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Projectiles from Spells Fork" + } + }, + stats={ + [1]="projectiles_from_spells_fork" + } + }, + [9551]={ [1]={ [1]={ limit={ @@ -199200,7 +209396,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_10_stat_value" } }, - [9018]={ + [9552]={ [1]={ [1]={ limit={ @@ -199229,7 +209425,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_15_stat_value" } }, - [9019]={ + [9553]={ [1]={ [1]={ limit={ @@ -199245,7 +209441,7 @@ return { [1]="projectiles_pierce_all_nearby_targets" } }, - [9020]={ + [9554]={ [1]={ [1]={ limit={ @@ -199270,7 +209466,7 @@ return { [1]="projectiles_pierce_enemies_with_fully_broken_armour" } }, - [9021]={ + [9555]={ [1]={ [1]={ limit={ @@ -199286,7 +209482,7 @@ return { [1]="projectiles_pierce_while_phasing" } }, - [9022]={ + [9556]={ [1]={ [1]={ limit={ @@ -199311,7 +209507,7 @@ return { [1]="projectiles_pierce_x_additional_targets_while_you_have_phasing" } }, - [9023]={ + [9557]={ [1]={ [1]={ limit={ @@ -199340,7 +209536,7 @@ return { [1]="protective_link_duration_+%" } }, - [9024]={ + [9558]={ [1]={ [1]={ limit={ @@ -199356,7 +209552,7 @@ return { [1]="puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%" } }, - [9025]={ + [9559]={ [1]={ [1]={ limit={ @@ -199372,40 +209568,81 @@ return { [1]="punishment_no_reservation" } }, - [9026]={ + [9560]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Puppet Master does not expire while you have Archon of Undeath" + } + }, + stats={ + [1]="puppet_master_does_not_expire_while_you_have_archon_of_undeath" + } + }, + [9561]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Duration of each Puppet Master stack" + }, + [2]={ [1]={ - k="milliseconds_to_seconds", + k="negate", v=1 }, limit={ [1]={ - [1]=1000, - [2]=1000 + [1]="#", + [2]=-1 } }, - text="Feeding Frenzy base Duration is {0} second" + text="{0}% reduced Duration of each Puppet Master stack" + } + }, + stats={ + [1]="puppet_master_duration_+%" + } + }, + [9562]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Puppet Master" }, [2]={ [1]={ - k="milliseconds_to_seconds", + k="negate", v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Feeding Frenzy base Duration is {0} seconds" + text="{0}% reduced Effect of Puppet Master" } }, stats={ - [1]="puppet_master_base_duration_ms" + [1]="puppet_master_effect_+%" } }, - [9027]={ + [9563]={ [1]={ [1]={ limit={ @@ -199434,7 +209671,7 @@ return { [1]="purge_damage_+%" } }, - [9028]={ + [9564]={ [1]={ [1]={ limit={ @@ -199463,7 +209700,7 @@ return { [1]="purge_duration_+%" } }, - [9029]={ + [9565]={ [1]={ [1]={ limit={ @@ -199479,7 +209716,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [9030]={ + [9566]={ [1]={ [1]={ limit={ @@ -199504,7 +209741,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [9031]={ + [9567]={ [1]={ [1]={ [1]={ @@ -199541,7 +209778,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_-2%_per_1" } }, - [9032]={ + [9568]={ [1]={ [1]={ limit={ @@ -199570,7 +209807,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_+%" } }, - [9033]={ + [9569]={ [1]={ [1]={ limit={ @@ -199586,7 +209823,7 @@ return { [1]="purity_of_elements_reserves_no_mana" } }, - [9034]={ + [9570]={ [1]={ [1]={ [1]={ @@ -199623,7 +209860,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_-2%_per_1" } }, - [9035]={ + [9571]={ [1]={ [1]={ limit={ @@ -199652,7 +209889,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_+%" } }, - [9036]={ + [9572]={ [1]={ [1]={ limit={ @@ -199668,7 +209905,7 @@ return { [1]="purity_of_fire_reserves_no_mana" } }, - [9037]={ + [9573]={ [1]={ [1]={ [1]={ @@ -199705,7 +209942,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [9038]={ + [9574]={ [1]={ [1]={ limit={ @@ -199734,7 +209971,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_+%" } }, - [9039]={ + [9575]={ [1]={ [1]={ limit={ @@ -199750,7 +209987,7 @@ return { [1]="purity_of_ice_reserves_no_mana" } }, - [9040]={ + [9576]={ [1]={ [1]={ [1]={ @@ -199787,7 +210024,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_-2%_per_1" } }, - [9041]={ + [9577]={ [1]={ [1]={ limit={ @@ -199816,7 +210053,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_+%" } }, - [9042]={ + [9578]={ [1]={ [1]={ limit={ @@ -199832,7 +210069,7 @@ return { [1]="purity_of_lightning_reserves_no_mana" } }, - [9043]={ + [9579]={ [1]={ [1]={ limit={ @@ -199861,7 +210098,7 @@ return { [1]="quarterstaff_daze_build_up_+%" } }, - [9044]={ + [9580]={ [1]={ [1]={ limit={ @@ -199890,7 +210127,7 @@ return { [1]="quarterstaff_hit_damage_freeze_multiplier_+%" } }, - [9045]={ + [9581]={ [1]={ [1]={ limit={ @@ -199919,7 +210156,7 @@ return { [1]="quarterstaff_hit_damage_stun_multiplier_+%" } }, - [9046]={ + [9582]={ [1]={ [1]={ limit={ @@ -199948,7 +210185,7 @@ return { [1]="quarterstaff_shock_chance_+%" } }, - [9047]={ + [9583]={ [1]={ [1]={ limit={ @@ -199973,7 +210210,7 @@ return { [1]="quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges" } }, - [9048]={ + [9584]={ [1]={ [1]={ limit={ @@ -199998,7 +210235,7 @@ return { [1]="quick_dodge_added_cooldown_count" } }, - [9049]={ + [9585]={ [1]={ [1]={ limit={ @@ -200027,7 +210264,7 @@ return { [1]="quick_dodge_travel_distance_+%" } }, - [9050]={ + [9586]={ [1]={ [1]={ limit={ @@ -200043,7 +210280,7 @@ return { [1]="quick_guard_additional_physical_damage_reduction_%" } }, - [9051]={ + [9587]={ [1]={ [1]={ limit={ @@ -200059,7 +210296,7 @@ return { [1]="quicksilver_flasks_apply_to_nearby_allies" } }, - [9052]={ + [9588]={ [1]={ [1]={ limit={ @@ -200088,7 +210325,7 @@ return { [1]="quiver_mod_effect_+%" } }, - [9053]={ + [9589]={ [1]={ [1]={ limit={ @@ -200104,7 +210341,7 @@ return { [1]="quiver_projectiles_pierce_1_additional_target" } }, - [9054]={ + [9590]={ [1]={ [1]={ limit={ @@ -200120,7 +210357,7 @@ return { [1]="quiver_projectiles_pierce_2_additional_targets" } }, - [9055]={ + [9591]={ [1]={ [1]={ limit={ @@ -200136,7 +210373,7 @@ return { [1]="quiver_projectiles_pierce_3_additional_targets" } }, - [9056]={ + [9592]={ [1]={ [1]={ limit={ @@ -200152,7 +210389,7 @@ return { [1]="maximum_rage" } }, - [9057]={ + [9593]={ [1]={ [1]={ limit={ @@ -200168,7 +210405,7 @@ return { [1]="rage_effects_tripled" } }, - [9058]={ + [9594]={ [1]={ [1]={ limit={ @@ -200184,7 +210421,7 @@ return { [1]="rage_effects_doubled" } }, - [9059]={ + [9595]={ [1]={ [1]={ limit={ @@ -200200,7 +210437,7 @@ return { [1]="gain_rage_on_kill" } }, - [9060]={ + [9596]={ [1]={ [1]={ limit={ @@ -200225,7 +210462,7 @@ return { [1]="gain_rage_on_hitting_rare_unique_enemy_%" } }, - [9061]={ + [9597]={ [1]={ [1]={ limit={ @@ -200241,7 +210478,7 @@ return { [1]="gain_rage_when_you_use_a_warcry" } }, - [9062]={ + [9598]={ [1]={ [1]={ limit={ @@ -200257,7 +210494,7 @@ return { [1]="cannot_be_stunned_with_25_rage" } }, - [9063]={ + [9599]={ [1]={ [1]={ limit={ @@ -200273,7 +210510,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [9064]={ + [9600]={ [1]={ [1]={ limit={ @@ -200302,7 +210539,7 @@ return { [1]="rage_decay_speed_+%" } }, - [9065]={ + [9601]={ [1]={ [1]={ limit={ @@ -200331,7 +210568,7 @@ return { [1]="rage_decay_speed_+%_per_10_tribute" } }, - [9066]={ + [9602]={ [1]={ [1]={ limit={ @@ -200347,7 +210584,7 @@ return { [1]="rage_gained_on_life_flask_use" } }, - [9067]={ + [9603]={ [1]={ [1]={ limit={ @@ -200363,7 +210600,7 @@ return { [1]="rage_generated_also_granted_to_allies_in_presence" } }, - [9068]={ + [9604]={ [1]={ [1]={ limit={ @@ -200379,7 +210616,7 @@ return { [1]="rage_grants_spell_damage_instead" } }, - [9069]={ + [9605]={ [1]={ [1]={ limit={ @@ -200405,10 +210642,10 @@ return { } }, stats={ - [1]="rage_loss_delay_ms" + [1]="rage_loss_delay_ms_+" } }, - [9070]={ + [9606]={ [1]={ [1]={ limit={ @@ -200437,7 +210674,7 @@ return { [1]="rage_loss_delay_recovery_rate_+%" } }, - [9071]={ + [9607]={ [1]={ [1]={ limit={ @@ -200453,7 +210690,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [9072]={ + [9608]={ [1]={ [1]={ limit={ @@ -200482,7 +210719,7 @@ return { [1]="rage_vortex_area_of_effect_+%" } }, - [9073]={ + [9609]={ [1]={ [1]={ limit={ @@ -200511,7 +210748,7 @@ return { [1]="rage_vortex_damage_+%" } }, - [9074]={ + [9610]={ [1]={ [1]={ limit={ @@ -200527,7 +210764,7 @@ return { [1]="raging_spirits_always_ignite" } }, - [9075]={ + [9611]={ [1]={ [1]={ limit={ @@ -200552,7 +210789,7 @@ return { [1]="raging_spirits_refresh_duration_on_hit_vs_unique_%_chance" } }, - [9076]={ + [9612]={ [1]={ [1]={ limit={ @@ -200568,7 +210805,7 @@ return { [1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy" } }, - [9077]={ + [9613]={ [1]={ [1]={ limit={ @@ -200597,7 +210834,7 @@ return { [1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing" } }, - [9078]={ + [9614]={ [1]={ [1]={ limit={ @@ -200613,7 +210850,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [9079]={ + [9615]={ [1]={ [1]={ limit={ @@ -200629,7 +210866,40 @@ return { [1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%" } }, - [9080]={ + [9616]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Raise Shield inflicts Parried for {0} second on Hit" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Raise Shield inflicts Parried for {0} seconds on Hit" + } + }, + stats={ + [1]="raise_shield_skill_inflicts_parry_for_duration_ms" + } + }, + [9617]={ [1]={ [1]={ limit={ @@ -200662,7 +210932,7 @@ return { [1]="raise_spectre_mana_cost_+%" } }, - [9081]={ + [9618]={ [1]={ [1]={ limit={ @@ -200678,7 +210948,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [9082]={ + [9619]={ [1]={ [1]={ limit={ @@ -200694,7 +210964,7 @@ return { [1]="raised_zombie_%_chance_to_taunt" } }, - [9083]={ + [9620]={ [1]={ [1]={ limit={ @@ -200710,7 +210980,7 @@ return { [1]="raised_zombies_are_usable_as_corpses_when_alive" } }, - [9084]={ + [9621]={ [1]={ [1]={ limit={ @@ -200735,7 +211005,7 @@ return { [1]="raised_zombies_cover_in_ash_on_hit_%" } }, - [9085]={ + [9622]={ [1]={ [1]={ [1]={ @@ -200755,7 +211025,7 @@ return { [1]="raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9086]={ + [9623]={ [1]={ [1]={ limit={ @@ -200771,7 +211041,7 @@ return { [1]="raised_zombies_have_avatar_of_fire" } }, - [9087]={ + [9624]={ [1]={ [1]={ [1]={ @@ -200791,7 +211061,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_3_stat_value" } }, - [9088]={ + [9625]={ [1]={ [1]={ [1]={ @@ -200811,7 +211081,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_5_stat_value" } }, - [9089]={ + [9626]={ [1]={ [1]={ limit={ @@ -200836,7 +211106,7 @@ return { [1]="rallying_cry_exerts_x_additional_attacks" } }, - [9090]={ + [9627]={ [1]={ [1]={ limit={ @@ -200852,7 +211122,7 @@ return { [1]="random_curse_on_hit_%_against_uncursed_enemies" } }, - [9091]={ + [9628]={ [1]={ [1]={ limit={ @@ -200877,7 +211147,7 @@ return { [1]="random_curse_when_hit_%_ignoring_curse_limit" } }, - [9092]={ + [9629]={ [1]={ [1]={ limit={ @@ -200893,7 +211163,7 @@ return { [1]="random_projectile_direction" } }, - [9093]={ + [9630]={ [1]={ [1]={ limit={ @@ -200922,7 +211192,7 @@ return { [1]="ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final" } }, - [9094]={ + [9631]={ [1]={ [1]={ limit={ @@ -200947,7 +211217,7 @@ return { [1]="rapid_assault_attached_spear_limit" } }, - [9095]={ + [9632]={ [1]={ [1]={ limit={ @@ -200976,7 +211246,7 @@ return { [1]="rare_or_unique_monster_dropped_item_rarity_+%" } }, - [9096]={ + [9633]={ [1]={ [1]={ limit={ @@ -200992,7 +211262,7 @@ return { [1]="real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy" } }, - [9097]={ + [9634]={ [1]={ [1]={ limit={ @@ -201008,7 +211278,7 @@ return { [1]="reap_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [9098]={ + [9635]={ [1]={ [1]={ limit={ @@ -201024,7 +211294,7 @@ return { [1]="reapply_enemy_shock_on_consuming_enemy_shock_chance_%" } }, - [9099]={ + [9636]={ [1]={ [1]={ limit={ @@ -201053,7 +211323,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [9100]={ + [9637]={ [1]={ [1]={ limit={ @@ -201069,7 +211339,7 @@ return { [1]="receive_bleeding_chance_%_when_hit" } }, - [9101]={ + [9638]={ [1]={ [1]={ limit={ @@ -201085,7 +211355,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [9102]={ + [9639]={ [1]={ [1]={ limit={ @@ -201101,7 +211371,7 @@ return { [1]="received_attack_hits_have_impale_chance_%" } }, - [9103]={ + [9640]={ [1]={ [1]={ limit={ @@ -201117,7 +211387,7 @@ return { [1]="recharge_flasks_on_crit_while_affected_by_precision" } }, - [9104]={ + [9641]={ [1]={ [1]={ limit={ @@ -201133,7 +211403,7 @@ return { [1]="recoup_%_elemental_damage_as_energy_shield" } }, - [9105]={ + [9642]={ [1]={ [1]={ limit={ @@ -201149,7 +211419,7 @@ return { [1]="recoup_%_of_damage_taken_by_your_totems_as_life" } }, - [9106]={ + [9643]={ [1]={ [1]={ limit={ @@ -201165,7 +211435,7 @@ return { [1]="recoup_effects_apply_over_4_seconds_instead" } }, - [9107]={ + [9644]={ [1]={ [1]={ limit={ @@ -201181,7 +211451,23 @@ return { [1]="recoup_life_effects_apply_over_3_seconds_instead" } }, - [9108]={ + [9645]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You Recoup {0}% of Damage taken by your Offerings as Life" + } + }, + stats={ + [1]="recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings" + } + }, + [9646]={ [1]={ [1]={ limit={ @@ -201210,7 +211496,7 @@ return { [1]="recoup_speed_+%" } }, - [9109]={ + [9647]={ [1]={ [1]={ limit={ @@ -201226,7 +211512,7 @@ return { [1]="recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits" } }, - [9110]={ + [9648]={ [1]={ [1]={ limit={ @@ -201242,7 +211528,7 @@ return { [1]="recover_%_life_on_heavy_stunning_rare_or_unique_enemy" } }, - [9111]={ + [9649]={ [1]={ [1]={ limit={ @@ -201258,7 +211544,7 @@ return { [1]="recover_%_life_per_endurance_charge_consumed" } }, - [9112]={ + [9650]={ [1]={ [1]={ limit={ @@ -201274,7 +211560,7 @@ return { [1]="recover_%_life_when_you_create_an_offering" } }, - [9113]={ + [9651]={ [1]={ [1]={ limit={ @@ -201290,7 +211576,7 @@ return { [1]="recover_%_mana_when_you_invoke_a_spell" } }, - [9114]={ + [9652]={ [1]={ [1]={ limit={ @@ -201306,7 +211592,7 @@ return { [1]="recover_%_maximum_energy_shield_on_killing_cursed_enemy" } }, - [9115]={ + [9653]={ [1]={ [1]={ limit={ @@ -201335,7 +211621,7 @@ return { [1]="recover_%_maximum_life_on_kill_per_50_tribute" } }, - [9116]={ + [9654]={ [1]={ [1]={ limit={ @@ -201351,7 +211637,7 @@ return { [1]="recover_%_maximum_life_on_killing_cursed_enemy" } }, - [9117]={ + [9655]={ [1]={ [1]={ limit={ @@ -201367,7 +211653,7 @@ return { [1]="recover_%_maximum_life_per_glory_consumed" } }, - [9118]={ + [9656]={ [1]={ [1]={ limit={ @@ -201383,7 +211669,7 @@ return { [1]="recover_%_maximum_life_when_cursing_non_cursed_enemy" } }, - [9119]={ + [9657]={ [1]={ [1]={ limit={ @@ -201412,7 +211698,7 @@ return { [1]="recover_%_maximum_mana_on_kill_per_50_tribute" } }, - [9120]={ + [9658]={ [1]={ [1]={ limit={ @@ -201428,7 +211714,23 @@ return { [1]="recover_%_maximum_mana_when_cursing_non_cursed_enemy" } }, - [9121]={ + [9659]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of maximum Life over 2 Seconds when you use a Command Skill" + } + }, + stats={ + [1]="recover_%_of_life_over_2_seconds_when_you_use_a_command_skill" + } + }, + [9660]={ [1]={ [1]={ limit={ @@ -201444,7 +211746,7 @@ return { [1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity" } }, - [9122]={ + [9661]={ [1]={ [1]={ [1]={ @@ -201464,7 +211766,7 @@ return { [1]="recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds" } }, - [9123]={ + [9662]={ [1]={ [1]={ limit={ @@ -201480,7 +211782,7 @@ return { [1]="recover_X_life_on_enemy_ignited" } }, - [9124]={ + [9663]={ [1]={ [1]={ limit={ @@ -201496,7 +211798,7 @@ return { [1]="recover_X_life_when_fortification_expires_per_fortification_lost" } }, - [9125]={ + [9664]={ [1]={ [1]={ limit={ @@ -201512,7 +211814,65 @@ return { [1]="recover_X_mana_on_killing_frozen_enemy" } }, - [9126]={ + [9665]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0} Runic Ward when you Block" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0} Runic Ward when you Block" + } + }, + stats={ + [1]="recover_X_ward_on_block" + } + }, + [9666]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0} Runic Ward when a Charm is used" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0} Runic Ward when a Charm is used" + } + }, + stats={ + [1]="recover_X_ward_on_charm_use" + } + }, + [9667]={ [1]={ [1]={ limit={ @@ -201528,7 +211888,7 @@ return { [1]="recover_energy_shield_%_on_consuming_steel_shard" } }, - [9127]={ + [9668]={ [1]={ [1]={ limit={ @@ -201544,7 +211904,7 @@ return { [1]="recover_es_as_well_as_life_from_life_regeneration" } }, - [9128]={ + [9669]={ [1]={ [1]={ limit={ @@ -201560,7 +211920,7 @@ return { [1]="recover_life_%_on_enemy_death_in_presence" } }, - [9129]={ + [9670]={ [1]={ [1]={ limit={ @@ -201576,7 +211936,7 @@ return { [1]="recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings" } }, - [9130]={ + [9671]={ [1]={ [1]={ limit={ @@ -201592,7 +211952,7 @@ return { [1]="recover_mana_%_on_enemy_death_in_presence" } }, - [9131]={ + [9672]={ [1]={ [1]={ limit={ @@ -201608,7 +211968,7 @@ return { [1]="recover_maximum_life_on_enemy_killed_chance_%" } }, - [9132]={ + [9673]={ [1]={ [1]={ limit={ @@ -201624,7 +211984,7 @@ return { [1]="recover_%_life_when_gaining_adrenaline" } }, - [9133]={ + [9674]={ [1]={ [1]={ limit={ @@ -201640,7 +212000,7 @@ return { [1]="recover_%_life_when_you_block_attack_damage_while_wielding_a_staff" } }, - [9134]={ + [9675]={ [1]={ [1]={ limit={ @@ -201656,7 +212016,7 @@ return { [1]="recover_%_life_when_you_ignite_a_non_ignited_enemy" } }, - [9135]={ + [9676]={ [1]={ [1]={ limit={ @@ -201672,7 +212032,7 @@ return { [1]="recover_%_life_when_you_use_a_life_flask_while_on_low_life" } }, - [9136]={ + [9677]={ [1]={ [1]={ limit={ @@ -201688,7 +212048,7 @@ return { [1]="recover_%_mana_when_attached_brand_expires" } }, - [9137]={ + [9678]={ [1]={ [1]={ limit={ @@ -201704,7 +212064,7 @@ return { [1]="recover_%_maximum_life_on_killing_chilled_enemy" } }, - [9138]={ + [9679]={ [1]={ [1]={ limit={ @@ -201720,7 +212080,7 @@ return { [1]="recover_%_maximum_life_on_killing_enemy_while_you_have_rage" } }, - [9139]={ + [9680]={ [1]={ [1]={ limit={ @@ -201736,7 +212096,7 @@ return { [1]="recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9140]={ + [9681]={ [1]={ [1]={ limit={ @@ -201752,7 +212112,7 @@ return { [1]="recover_%_maximum_life_when_spending_at_least_10_combo" } }, - [9141]={ + [9682]={ [1]={ [1]={ limit={ @@ -201768,7 +212128,7 @@ return { [1]="recover_%_maximum_mana_on_charm_use" } }, - [9142]={ + [9683]={ [1]={ [1]={ [1]={ @@ -201788,7 +212148,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_frozen_permyriad" } }, - [9143]={ + [9684]={ [1]={ [1]={ limit={ @@ -201804,7 +212164,7 @@ return { [1]="recover_%_maximum_mana_when_spending_at_least_10_combo" } }, - [9144]={ + [9685]={ [1]={ [1]={ limit={ @@ -201820,7 +212180,7 @@ return { [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" } }, - [9145]={ + [9686]={ [1]={ [1]={ [1]={ @@ -201840,7 +212200,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [9146]={ + [9687]={ [1]={ [1]={ [1]={ @@ -201860,7 +212220,23 @@ return { [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" } }, - [9147]={ + [9688]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mana Recovery from Regeneration is also applied to Runic Ward" + } + }, + stats={ + [1]="recover_ward_as_well_as_mana_from_mana_regeneration" + } + }, + [9689]={ [1]={ [1]={ limit={ @@ -201876,7 +212252,23 @@ return { [1]="recover_x%_of_maximum_mana_when_you_consume_a_power_charge" } }, - [9148]={ + [9690]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of maximum Runic Ward when one of your Reviving Minions is Killed" + } + }, + stats={ + [1]="recover_x%_of_maximum_ward_on_persistent_minion_death" + } + }, + [9691]={ [1]={ [1]={ limit={ @@ -201905,7 +212297,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [9149]={ + [9692]={ [1]={ [1]={ limit={ @@ -201921,7 +212313,7 @@ return { [1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred" } }, - [9150]={ + [9693]={ [1]={ [1]={ limit={ @@ -201937,7 +212329,7 @@ return { [1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies" } }, - [9151]={ + [9694]={ [1]={ [1]={ limit={ @@ -201953,7 +212345,7 @@ return { [1]="reduce_enemy_fire_resistance_%_while_affected_by_anger" } }, - [9152]={ + [9695]={ [1]={ [1]={ limit={ @@ -201969,7 +212361,7 @@ return { [1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath" } }, - [9153]={ + [9696]={ [1]={ [1]={ limit={ @@ -201985,7 +212377,7 @@ return { [1]="reflect_%_of_physical_damage_prevented" } }, - [9154]={ + [9697]={ [1]={ [1]={ limit={ @@ -202018,7 +212410,7 @@ return { [1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%" } }, - [9155]={ + [9698]={ [1]={ [1]={ limit={ @@ -202034,7 +212426,7 @@ return { [1]="reflect_shocks" } }, - [9156]={ + [9699]={ [1]={ [1]={ limit={ @@ -202067,7 +212459,7 @@ return { [1]="reflected_physical_damage_taken_+%_while_affected_by_determination" } }, - [9157]={ + [9700]={ [1]={ [1]={ limit={ @@ -202083,7 +212475,7 @@ return { [1]="refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy" } }, - [9158]={ + [9701]={ [1]={ [1]={ limit={ @@ -202099,7 +212491,7 @@ return { [1]="refresh_endurance_charges_duration_when_hit_chance_%" } }, - [9159]={ + [9702]={ [1]={ [1]={ limit={ @@ -202115,7 +212507,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [9160]={ + [9703]={ [1]={ [1]={ limit={ @@ -202131,7 +212523,7 @@ return { [1]="regenerate_%_energy_shield_over_1_second_when_stunned" } }, - [9161]={ + [9704]={ [1]={ [1]={ limit={ @@ -202147,7 +212539,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality" } }, - [9162]={ + [9705]={ [1]={ [1]={ limit={ @@ -202163,7 +212555,7 @@ return { [1]="regenerate_%_life_over_1_second_when_stunned" } }, - [9163]={ + [9706]={ [1]={ [1]={ limit={ @@ -202179,7 +212571,7 @@ return { [1]="regenerate_%_of_curse_mana_cost_per_second_while_in_delay" } }, - [9164]={ + [9707]={ [1]={ [1]={ limit={ @@ -202195,7 +212587,7 @@ return { [1]="regenerate_1_rage_per_x_life_regeneration" } }, - [9165]={ + [9708]={ [1]={ [1]={ limit={ @@ -202211,7 +212603,7 @@ return { [1]="regenerate_1_rage_per_x_mana_regeneration" } }, - [9166]={ + [9709]={ [1]={ [1]={ limit={ @@ -202227,7 +212619,7 @@ return { [1]="regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds" } }, - [9167]={ + [9710]={ [1]={ [1]={ limit={ @@ -202243,7 +212635,7 @@ return { [1]="regenerate_energy_shield_instead_of_life" } }, - [9168]={ + [9711]={ [1]={ [1]={ [1]={ @@ -202263,7 +212655,7 @@ return { [1]="regenerate_mana_equal_to_x%_of_life_per_minute" } }, - [9169]={ + [9712]={ [1]={ [1]={ limit={ @@ -202279,7 +212671,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_not_unhinged" } }, - [9170]={ + [9713]={ [1]={ [1]={ limit={ @@ -202295,7 +212687,7 @@ return { [1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse" } }, - [9171]={ + [9714]={ [1]={ [1]={ limit={ @@ -202311,7 +212703,23 @@ return { [1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse" } }, - [9172]={ + [9715]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Life Regeneration is applied to Runic Ward instead" + } + }, + stats={ + [1]="regenerate_ward_instead_of_life" + } + }, + [9716]={ [1]={ [1]={ [1]={ @@ -202331,7 +212739,7 @@ return { [1]="regenerate_x_mana_per_minute_while_you_have_arcane_surge" } }, - [9173]={ + [9717]={ [1]={ [1]={ limit={ @@ -202360,7 +212768,7 @@ return { [1]="reload_speed_+%" } }, - [9174]={ + [9718]={ [1]={ [1]={ limit={ @@ -202369,7 +212777,7 @@ return { [2]="#" } }, - text="Remnants have {0}% increased effect per 10 Tribute" + text="Remnants you create have {0}% increased effect per 10 Tribute" }, [2]={ [1]={ @@ -202382,14 +212790,14 @@ return { [2]=-1 } }, - text="Remnants have {0}% reduced effect per 10 Tribute" + text="Remnants you create have {0}% reduced effect per 10 Tribute" } }, stats={ [1]="remnant_effect_+%_per_10_tribute" } }, - [9175]={ + [9719]={ [1]={ [1]={ limit={ @@ -202398,7 +212806,7 @@ return { [2]="#" } }, - text="Remnants have {0}% increased effect" + text="Remnants you create have {0}% increased effect" }, [2]={ [1]={ @@ -202411,14 +212819,14 @@ return { [2]=-1 } }, - text="Remnants have {0}% reduced effect" + text="Remnants you create have {0}% reduced effect" } }, stats={ [1]="remnant_effect_+%" } }, - [9176]={ + [9720]={ [1]={ [1]={ limit={ @@ -202447,7 +212855,7 @@ return { [1]="remnant_pickup_range_+%_if_you_have_at_least_100_tribute" } }, - [9177]={ + [9721]={ [1]={ [1]={ limit={ @@ -202463,7 +212871,7 @@ return { [1]="remnant_pickup_range_+%" } }, - [9178]={ + [9722]={ [1]={ [1]={ limit={ @@ -202479,7 +212887,7 @@ return { [1]="remnant_recover_%_life_on_pickup" } }, - [9179]={ + [9723]={ [1]={ [1]={ limit={ @@ -202495,7 +212903,23 @@ return { [1]="remnant_recover_%_mana_on_pickup" } }, - [9180]={ + [9724]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Remnants you create affect Allies in your Presence as well as you when collected" + } + }, + stats={ + [1]="remnants_affect_allies_in_presence" + } + }, + [9725]={ [1]={ [1]={ limit={ @@ -202511,7 +212935,7 @@ return { [1]="remove_ailments_and_burning_on_gaining_adrenaline" } }, - [9181]={ + [9726]={ [1]={ [1]={ limit={ @@ -202527,7 +212951,7 @@ return { [1]="remove_all_damaging_ailments_on_warcry" } }, - [9182]={ + [9727]={ [1]={ [1]={ limit={ @@ -202543,7 +212967,7 @@ return { [1]="remove_bleed_on_life_flask_use" } }, - [9183]={ + [9728]={ [1]={ [1]={ limit={ @@ -202559,7 +212983,7 @@ return { [1]="remove_bleeding_on_warcry" } }, - [9184]={ + [9729]={ [1]={ [1]={ limit={ @@ -202575,7 +212999,7 @@ return { [1]="remove_chill_and_freeze_on_flask_use" } }, - [9185]={ + [9730]={ [1]={ [1]={ limit={ @@ -202591,7 +213015,7 @@ return { [1]="remove_curse_on_mana_flask_use" } }, - [9186]={ + [9731]={ [1]={ [1]={ limit={ @@ -202607,7 +213031,7 @@ return { [1]="remove_damaging_ailment_on_using_command_skill" } }, - [9187]={ + [9732]={ [1]={ [1]={ limit={ @@ -202623,7 +213047,7 @@ return { [1]="remove_damaging_ailments_on_swapping_stance" } }, - [9188]={ + [9733]={ [1]={ [1]={ limit={ @@ -202648,7 +213072,7 @@ return { [1]="remove_elemental_ailments_on_curse_cast_%" } }, - [9189]={ + [9734]={ [1]={ [1]={ limit={ @@ -202664,7 +213088,7 @@ return { [1]="remove_ignite_and_burning_on_flask_use" } }, - [9190]={ + [9735]={ [1]={ [1]={ limit={ @@ -202680,7 +213104,7 @@ return { [1]="remove_ignite_on_warcry" } }, - [9191]={ + [9736]={ [1]={ [1]={ limit={ @@ -202696,7 +213120,7 @@ return { [1]="remove_maim_and_hinder_on_flask_use" } }, - [9192]={ + [9737]={ [1]={ [1]={ limit={ @@ -202712,7 +213136,7 @@ return { [1]="remove_%_of_mana_on_hit" } }, - [9193]={ + [9738]={ [1]={ [1]={ limit={ @@ -202728,7 +213152,7 @@ return { [1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder" } }, - [9194]={ + [9739]={ [1]={ [1]={ limit={ @@ -202744,7 +213168,7 @@ return { [1]="remove_random_ailment_when_you_warcry" } }, - [9195]={ + [9740]={ [1]={ [1]={ limit={ @@ -202760,7 +213184,7 @@ return { [1]="remove_random_charge_on_hit_%" } }, - [9196]={ + [9741]={ [1]={ [1]={ limit={ @@ -202776,7 +213200,7 @@ return { [1]="remove_random_elemental_ailment_on_mana_flask_use" } }, - [9197]={ + [9742]={ [1]={ [1]={ limit={ @@ -202792,7 +213216,7 @@ return { [1]="remove_random_non_elemental_ailment_on_life_flask_use" } }, - [9198]={ + [9743]={ [1]={ [1]={ limit={ @@ -202808,7 +213232,7 @@ return { [1]="remove_shock_on_flask_use" } }, - [9199]={ + [9744]={ [1]={ [1]={ limit={ @@ -202833,7 +213257,7 @@ return { [1]="remove_x_curses_after_channelling_for_2_seconds" } }, - [9200]={ + [9745]={ [1]={ [1]={ limit={ @@ -202862,7 +213286,7 @@ return { [1]="replica_unique_hyrris_truth_hatred_mana_reservation_+%_final" } }, - [9201]={ + [9746]={ [1]={ [1]={ limit={ @@ -202891,7 +213315,7 @@ return { [1]="required_enemies_to_be_considered_surrounded_offset" } }, - [9202]={ + [9747]={ [1]={ [1]={ limit={ @@ -202920,7 +213344,7 @@ return { [1]="reservation_efficiency_+%_of_companion_skills" } }, - [9203]={ + [9748]={ [1]={ [1]={ limit={ @@ -202949,7 +213373,7 @@ return { [1]="reservation_efficiency_+%_of_herald_skills" } }, - [9204]={ + [9749]={ [1]={ [1]={ limit={ @@ -202978,7 +213402,94 @@ return { [1]="reservation_efficiency_+%_of_meta_skills" } }, - [9205]={ + [9750]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Minion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Minion Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_minion_skills" + } + }, + [9751]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of non-Minion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of non-Minion Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_non_minion_skills" + } + }, + [9752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Remnant Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Remnant Skills" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_remnant_skills" + } + }, + [9753]={ [1]={ [1]={ limit={ @@ -203007,7 +213518,36 @@ return { [1]="reservation_efficiency_+%_with_unique_abyss_jewel_socketed" } }, - [9206]={ + [9754]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reservation Efficiency of Skills per Idol in your Equipment" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Reservation Efficiency of Skills per Idol in your Equipment" + } + }, + stats={ + [1]="reservation_efficiency_+%_of_skills_per_socketed_idol" + } + }, + [9755]={ [1]={ [1]={ [1]={ @@ -203040,7 +213580,39 @@ return { [1]="reserve_life_instead_of_loss_from_damage_for_x_ms" } }, - [9207]={ + [9756]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to all Elemental Resistances per non-Idol Augment in your Equipment" + } + }, + stats={ + [1]="resist_all_elements_%_per_socketed_non_idol_augment" + } + }, + [9757]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to all Elemental Resistances per Rune in your Equipment" + } + }, + stats={ + [1]="resist_all_elements_%_per_socketed_rune" + } + }, + [9758]={ [1]={ [1]={ limit={ @@ -203056,7 +213628,7 @@ return { [1]="resist_all_%" } }, - [9208]={ + [9759]={ [1]={ [1]={ limit={ @@ -203072,7 +213644,7 @@ return { [1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon" } }, - [9209]={ + [9760]={ [1]={ [1]={ limit={ @@ -203088,7 +213660,7 @@ return { [1]="restore_energy_shield_and_mana_when_you_focus_%" } }, - [9210]={ + [9761]={ [1]={ [1]={ limit={ @@ -203104,7 +213676,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [9211]={ + [9762]={ [1]={ [1]={ [1]={ @@ -203137,7 +213709,23 @@ return { [1]="revive_golems_if_killed_by_enemies_ms" } }, - [9212]={ + [9763]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% Chance to revive a random Permanent Minion whenever you use a Command Skill" + } + }, + stats={ + [1]="revive_persistent_minion_%_chance_when_you_use_a_command_skill" + } + }, + [9764]={ [1]={ [1]={ limit={ @@ -203153,7 +213741,7 @@ return { [1]="revive_random_persistent_minion_on_offering_expiration" } }, - [9213]={ + [9765]={ [1]={ [1]={ limit={ @@ -203169,7 +213757,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [9214]={ + [9766]={ [1]={ [1]={ limit={ @@ -203198,7 +213786,7 @@ return { [1]="rogue_trader_map_rogue_exile_maximum_life_+%_final" } }, - [9215]={ + [9767]={ [1]={ [1]={ limit={ @@ -203214,7 +213802,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown" } }, - [9216]={ + [9768]={ [1]={ [1]={ limit={ @@ -203230,7 +213818,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown" } }, - [9217]={ + [9769]={ [1]={ [1]={ limit={ @@ -203259,7 +213847,7 @@ return { [1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%" } }, - [9218]={ + [9770]={ [1]={ [1]={ limit={ @@ -203288,7 +213876,7 @@ return { [1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%" } }, - [9219]={ + [9771]={ [1]={ [1]={ limit={ @@ -203304,7 +213892,23 @@ return { [1]="sacrifice_%_life_to_gain_as_guard_on_dodge_roll" } }, - [9220]={ + [9772]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sacrifice {0}% of maximum Life to gain half that much Runic Ward when you Attack" + } + }, + stats={ + [1]="sacrifice_%_maximum_life_to_gain_half_as_much_ward_on_attack" + } + }, + [9773]={ [1]={ [1]={ limit={ @@ -203320,7 +213924,7 @@ return { [1]="sacrifice_%_life_on_spell_skill" } }, - [9221]={ + [9774]={ [1]={ [1]={ limit={ @@ -203329,14 +213933,14 @@ return { [2]="#" } }, - text="Sacrifice {0}% of Life to gain that much Energy Shield when you Cast a Spell" + text="Sacrifice {0}% of maximum Life to gain that much Energy Shield when you Cast a Spell" } }, stats={ [1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast" } }, - [9222]={ + [9775]={ [1]={ [1]={ limit={ @@ -203365,7 +213969,7 @@ return { [1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground" } }, - [9223]={ + [9776]={ [1]={ [1]={ limit={ @@ -203394,7 +213998,7 @@ return { [1]="sanctify_consecrated_ground_enemy_damage_taken_+%" } }, - [9224]={ + [9777]={ [1]={ [1]={ limit={ @@ -203423,7 +214027,7 @@ return { [1]="sanctify_damage_+%" } }, - [9225]={ + [9778]={ [1]={ [1]={ limit={ @@ -203439,7 +214043,7 @@ return { [1]="sap_on_critical_strike_with_lightning_skills" } }, - [9226]={ + [9779]={ [1]={ [1]={ limit={ @@ -203468,7 +214072,7 @@ return { [1]="scorch_effect_+%" } }, - [9227]={ + [9780]={ [1]={ [1]={ limit={ @@ -203484,7 +214088,7 @@ return { [1]="scorch_enemies_in_close_range_on_block" } }, - [9228]={ + [9781]={ [1]={ [1]={ limit={ @@ -203500,7 +214104,7 @@ return { [1]="scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance" } }, - [9229]={ + [9782]={ [1]={ [1]={ limit={ @@ -203529,7 +214133,36 @@ return { [1]="scourge_arrow_damage_+%" } }, - [9230]={ + [9783]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Sealed Skills have {0}% increased Seal gain frequency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Sealed Skills have {0}% reduced Seal gain frequency" + } + }, + stats={ + [1]="seal_gain_frequency_+%" + } + }, + [9784]={ [1]={ [1]={ limit={ @@ -203558,7 +214191,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [9231]={ + [9785]={ [1]={ [1]={ limit={ @@ -203574,7 +214207,7 @@ return { [1]="seismic_cry_exerted_attack_damage_+%" } }, - [9232]={ + [9786]={ [1]={ [1]={ limit={ @@ -203590,7 +214223,7 @@ return { [1]="seismic_cry_minimum_power" } }, - [9233]={ + [9787]={ [1]={ [1]={ limit={ @@ -203619,7 +214252,7 @@ return { [1]="self_bleed_duration_+%" } }, - [9234]={ + [9788]={ [1]={ [1]={ [1]={ @@ -203639,7 +214272,7 @@ return { [1]="self_chaos_damage_taken_per_minute_per_endurance_charge" } }, - [9235]={ + [9789]={ [1]={ [1]={ [1]={ @@ -203659,7 +214292,7 @@ return { [1]="self_chaos_damage_taken_per_minute_while_affected_by_flask" } }, - [9236]={ + [9790]={ [1]={ [1]={ limit={ @@ -203675,7 +214308,7 @@ return { [1]="self_cold_damage_on_reaching_maximum_power_charges" } }, - [9237]={ + [9791]={ [1]={ [1]={ limit={ @@ -203704,7 +214337,7 @@ return { [1]="self_critical_strike_multiplier_+%_while_ignited" } }, - [9238]={ + [9792]={ [1]={ [1]={ limit={ @@ -203733,7 +214366,7 @@ return { [1]="self_curse_duration_+%_per_10_devotion" } }, - [9239]={ + [9793]={ [1]={ [1]={ limit={ @@ -203762,7 +214395,7 @@ return { [1]="self_elemental_status_duration_-%_per_10_devotion" } }, - [9240]={ + [9794]={ [1]={ [1]={ limit={ @@ -203778,7 +214411,7 @@ return { [1]="self_physical_damage_on_movement_skill_use" } }, - [9241]={ + [9795]={ [1]={ [1]={ limit={ @@ -203794,7 +214427,7 @@ return { [1]="self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action" } }, - [9242]={ + [9796]={ [1]={ [1]={ limit={ @@ -203810,7 +214443,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently" } }, - [9243]={ + [9797]={ [1]={ [1]={ limit={ @@ -203826,7 +214459,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item" } }, - [9244]={ + [9798]={ [1]={ [1]={ limit={ @@ -203842,7 +214475,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy" } }, - [9245]={ + [9799]={ [1]={ [1]={ limit={ @@ -203858,7 +214491,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [9246]={ + [9800]={ [1]={ [1]={ limit={ @@ -203874,7 +214507,23 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive" } }, - [9247]={ + [9801]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits against you have no Critical Damage Bonus while on Consecrated Ground" + } + }, + stats={ + [1]="self_take_no_extra_damage_from_critical_strikes_while_on_consecrated_ground" + } + }, + [9802]={ [1]={ [1]={ limit={ @@ -203903,7 +214552,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [9248]={ + [9803]={ [1]={ [1]={ limit={ @@ -203932,7 +214581,7 @@ return { [1]="sentinel_of_purity_damage_+%" } }, - [9249]={ + [9804]={ [1]={ [1]={ limit={ @@ -203957,7 +214606,7 @@ return { [1]="serpent_strike_maximum_snakes" } }, - [9250]={ + [9805]={ [1]={ [1]={ limit={ @@ -203975,14 +214624,14 @@ return { [2]="#" } }, - text="Shapeshift Slam Skills you use yourself to cause an additional Aftershock" + text="Shapeshift Slam Skills you use yourself cause an additional Aftershock" } }, stats={ [1]="shapeshift_slam_skill_aftershock_chance_%" } }, - [9251]={ + [9806]={ [1]={ [1]={ limit={ @@ -203998,7 +214647,23 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [9252]={ + [9807]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills can build and retain Combo regardless of Weapon Set" + } + }, + stats={ + [1]="share_combo_across_weapon_sets_and_weapon_types" + } + }, + [9808]={ [1]={ [1]={ limit={ @@ -204014,7 +214679,7 @@ return { [1]="shatter_has_%_chance_to_cover_in_frost" } }, - [9253]={ + [9809]={ [1]={ [1]={ limit={ @@ -204030,7 +214695,7 @@ return { [1]="shatter_on_kill_if_fully_broken_armour" } }, - [9254]={ + [9810]={ [1]={ [1]={ limit={ @@ -204046,7 +214711,7 @@ return { [1]="shatter_on_kill_vs_bleeding_enemies" } }, - [9255]={ + [9811]={ [1]={ [1]={ limit={ @@ -204062,7 +214727,7 @@ return { [1]="shatter_on_kill_vs_poisoned_enemies" } }, - [9256]={ + [9812]={ [1]={ [1]={ limit={ @@ -204091,7 +214756,7 @@ return { [1]="shattering_steel_damage_+%" } }, - [9257]={ + [9813]={ [1]={ [1]={ limit={ @@ -204107,7 +214772,7 @@ return { [1]="shattering_steel_fortify_on_hit_close_range" } }, - [9258]={ + [9814]={ [1]={ [1]={ limit={ @@ -204132,7 +214797,7 @@ return { [1]="shattering_steel_number_of_additional_projectiles" } }, - [9259]={ + [9815]={ [1]={ [1]={ limit={ @@ -204148,7 +214813,7 @@ return { [1]="shattering_steel_%_chance_to_not_consume_ammo" } }, - [9260]={ + [9816]={ [1]={ [1]={ limit={ @@ -204164,7 +214829,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating" } }, - [9261]={ + [9817]={ [1]={ [1]={ limit={ @@ -204185,7 +214850,7 @@ return { [2]="shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield" } }, - [9262]={ + [9818]={ [1]={ [1]={ limit={ @@ -204214,7 +214879,7 @@ return { [1]="shield_crush_attack_speed_+%" } }, - [9263]={ + [9819]={ [1]={ [1]={ limit={ @@ -204243,7 +214908,7 @@ return { [1]="shield_crush_damage_+%" } }, - [9264]={ + [9820]={ [1]={ [1]={ limit={ @@ -204272,7 +214937,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [9265]={ + [9821]={ [1]={ [1]={ limit={ @@ -204281,7 +214946,7 @@ return { [2]="#" } }, - text="{0}% increased Defences from Equipped Shield" + text="{0}% increased Armour, Evasion and Energy Shield from Equipped Shield" }, [2]={ [1]={ @@ -204294,14 +214959,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences from Equipped Shield" + text="{0}% reduced Armour, Evasion and Energy Shield from Equipped Shield" } }, stats={ - [1]="shield_defences_+%" + [1]="shield_armour_evasion_energy_shield_+%" } }, - [9266]={ + [9822]={ [1]={ [1]={ limit={ @@ -204310,7 +214975,7 @@ return { [2]="#" } }, - text="{0}% increased Defences from Equipped Shield per 25 Tribute" + text="{0}% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute" }, [2]={ [1]={ @@ -204323,14 +214988,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences from Equipped Shield per 25 Tribute" + text="{0}% reduced Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute" } }, stats={ - [1]="shield_defences_+%_per_25_tribute" + [1]="shield_armour_evasion_energy_shield_+%_per_25_tribute" } }, - [9267]={ + [9823]={ [1]={ [1]={ limit={ @@ -204339,7 +215004,7 @@ return { [2]="#" } }, - text="{0}% increased Defences from Equipped Shield per 10 Devotion" + text="{0}% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, [2]={ [1]={ @@ -204352,14 +215017,14 @@ return { [2]=-1 } }, - text="{0}% reduced Defences from Equipped Shield per 10 Devotion" + text="{0}% reduced Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" } }, stats={ - [1]="shield_defences_+%_per_10_devotion" + [1]="shield_armour_evasion_energy_shield_+%_per_10_devotion" } }, - [9268]={ + [9824]={ [1]={ [1]={ limit={ @@ -204388,7 +215053,7 @@ return { [1]="shock_and_freeze_apply_elemental_damage_taken_+%" } }, - [9269]={ + [9825]={ [1]={ [1]={ limit={ @@ -204413,7 +215078,7 @@ return { [1]="shock_attackers_for_4_seconds_on_block_%_chance" } }, - [9270]={ + [9826]={ [1]={ [1]={ limit={ @@ -204442,7 +215107,7 @@ return { [1]="shock_chance_+%_vs_electrocuted_enemies" } }, - [9271]={ + [9827]={ [1]={ [1]={ limit={ @@ -204471,7 +215136,7 @@ return { [1]="shock_effect_against_cursed_enemies_+%" } }, - [9272]={ + [9828]={ [1]={ [1]={ limit={ @@ -204500,7 +215165,7 @@ return { [1]="shock_effect_+%" } }, - [9273]={ + [9829]={ [1]={ [1]={ limit={ @@ -204529,7 +215194,7 @@ return { [1]="shock_effect_+%_if_consumed_frenzy_charge_recently" } }, - [9274]={ + [9830]={ [1]={ [1]={ limit={ @@ -204558,7 +215223,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [9275]={ + [9831]={ [1]={ [1]={ limit={ @@ -204574,7 +215239,23 @@ return { [1]="shock_enemies_in_150cm_radius_on_shock_chance_%" } }, - [9276]={ + [9832]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSEDCreate Shocked Ground when you use a Wind Skill" + } + }, + stats={ + [1]="shock_ground_on_using_a_wind_skill" + } + }, + [9833]={ [1]={ [1]={ limit={ @@ -204590,7 +215271,7 @@ return { [1]="shock_magnitude_calculated_from_damage" } }, - [9277]={ + [9834]={ [1]={ [1]={ limit={ @@ -204606,7 +215287,7 @@ return { [1]="shock_maximum_magnitude_is_60%" } }, - [9278]={ + [9835]={ [1]={ [1]={ limit={ @@ -204622,7 +215303,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [9279]={ + [9836]={ [1]={ [1]={ [1]={ @@ -204642,7 +215323,7 @@ return { [1]="shock_self_for_x_ms_when_you_focus" } }, - [9280]={ + [9837]={ [1]={ [1]={ [1]={ @@ -204662,7 +215343,7 @@ return { [1]="shock_nearby_enemies_for_x_ms_when_you_focus" } }, - [9281]={ + [9838]={ [1]={ [1]={ limit={ @@ -204678,7 +215359,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [9282]={ + [9839]={ [1]={ [1]={ limit={ @@ -204707,7 +215388,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [9283]={ + [9840]={ [1]={ [1]={ limit={ @@ -204736,7 +215417,7 @@ return { [1]="shocked_chilled_effect_on_self_+%" } }, - [9284]={ + [9841]={ [1]={ [1]={ limit={ @@ -204765,7 +215446,7 @@ return { [1]="shocked_effect_on_self_+%_while_shapeshifted" } }, - [9285]={ + [9842]={ [1]={ [1]={ limit={ @@ -204798,7 +215479,7 @@ return { [1]="shocked_effect_on_self_+%" } }, - [9286]={ + [9843]={ [1]={ [1]={ limit={ @@ -204814,7 +215495,7 @@ return { [1]="shocked_enemies_explode_for_%_life_as_lightning_damage" } }, - [9287]={ + [9844]={ [1]={ [1]={ limit={ @@ -204843,7 +215524,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [9288]={ + [9845]={ [1]={ [1]={ limit={ @@ -204868,7 +215549,7 @@ return { [1]="shocked_ground_on_death_%" } }, - [9289]={ + [9846]={ [1]={ [1]={ limit={ @@ -204893,7 +215574,7 @@ return { [1]="shrapnel_ballista_num_additional_arrows" } }, - [9290]={ + [9847]={ [1]={ [1]={ limit={ @@ -204918,7 +215599,7 @@ return { [1]="shrapnel_ballista_num_pierce" } }, - [9291]={ + [9848]={ [1]={ [1]={ limit={ @@ -204947,7 +215628,7 @@ return { [1]="shrapnel_ballista_projectile_speed_+%" } }, - [9292]={ + [9849]={ [1]={ [1]={ limit={ @@ -204976,7 +215657,7 @@ return { [1]="shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%" } }, - [9293]={ + [9850]={ [1]={ [1]={ limit={ @@ -205005,7 +215686,7 @@ return { [1]="galvanic_arrow_area_damage_+%" } }, - [9294]={ + [9851]={ [1]={ [1]={ limit={ @@ -205034,7 +215715,7 @@ return { [1]="shrapnel_trap_area_of_effect_+%" } }, - [9295]={ + [9852]={ [1]={ [1]={ limit={ @@ -205063,7 +215744,7 @@ return { [1]="shrapnel_trap_damage_+%" } }, - [9296]={ + [9853]={ [1]={ [1]={ limit={ @@ -205088,7 +215769,7 @@ return { [1]="shrapnel_trap_number_of_additional_secondary_explosions" } }, - [9297]={ + [9854]={ [1]={ [1]={ limit={ @@ -205117,7 +215798,7 @@ return { [1]="siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%" } }, - [9298]={ + [9855]={ [1]={ [1]={ limit={ @@ -205146,7 +215827,7 @@ return { [1]="sigil_attached_target_damage_+%" } }, - [9299]={ + [9856]={ [1]={ [1]={ limit={ @@ -205175,7 +215856,7 @@ return { [1]="sigil_attached_target_damage_taken_+%" } }, - [9300]={ + [9857]={ [1]={ [1]={ limit={ @@ -205204,7 +215885,7 @@ return { [1]="sigil_critical_strike_chance_+%" } }, - [9301]={ + [9858]={ [1]={ [1]={ limit={ @@ -205220,7 +215901,7 @@ return { [1]="sigil_critical_strike_multiplier_+" } }, - [9302]={ + [9859]={ [1]={ [1]={ limit={ @@ -205249,7 +215930,7 @@ return { [1]="sigil_damage_+%" } }, - [9303]={ + [9860]={ [1]={ [1]={ limit={ @@ -205278,7 +215959,7 @@ return { [1]="sigil_damage_+%_per_10_devotion" } }, - [9304]={ + [9861]={ [1]={ [1]={ limit={ @@ -205307,7 +215988,7 @@ return { [1]="sigil_duration_+%" } }, - [9305]={ + [9862]={ [1]={ [1]={ limit={ @@ -205336,7 +216017,7 @@ return { [1]="sigil_recall_cooldown_speed_+%" } }, - [9306]={ + [9863]={ [1]={ [1]={ limit={ @@ -205365,7 +216046,7 @@ return { [1]="sigil_recall_cooldown_speed_+%_per_brand_up_to_40%" } }, - [9307]={ + [9864]={ [1]={ [1]={ limit={ @@ -205394,7 +216075,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [9308]={ + [9865]={ [1]={ [1]={ limit={ @@ -205423,7 +216104,7 @@ return { [1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently" } }, - [9309]={ + [9866]={ [1]={ [1]={ limit={ @@ -205452,7 +216133,7 @@ return { [1]="sigil_target_search_range_+%" } }, - [9310]={ + [9867]={ [1]={ [1]={ limit={ @@ -205481,7 +216162,7 @@ return { [1]="skeletal_chains_area_of_effect_+%" } }, - [9311]={ + [9868]={ [1]={ [1]={ limit={ @@ -205510,7 +216191,7 @@ return { [1]="skeletal_chains_cast_speed_+%" } }, - [9312]={ + [9869]={ [1]={ [1]={ limit={ @@ -205539,7 +216220,7 @@ return { [1]="skeleton_attack_speed_+%" } }, - [9313]={ + [9870]={ [1]={ [1]={ limit={ @@ -205568,7 +216249,7 @@ return { [1]="skeleton_cast_speed_+%" } }, - [9314]={ + [9871]={ [1]={ [1]={ limit={ @@ -205597,7 +216278,7 @@ return { [1]="reservation_efficiency_+%_of_skeleton_minion_skills" } }, - [9315]={ + [9872]={ [1]={ [1]={ limit={ @@ -205630,7 +216311,7 @@ return { [1]="skeleton_minion_reservation_+%" } }, - [9316]={ + [9873]={ [1]={ [1]={ limit={ @@ -205659,7 +216340,7 @@ return { [1]="skeleton_movement_speed_+%" } }, - [9317]={ + [9874]={ [1]={ [1]={ limit={ @@ -205675,7 +216356,7 @@ return { [1]="skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element" } }, - [9318]={ + [9875]={ [1]={ [1]={ limit={ @@ -205691,7 +216372,7 @@ return { [1]="skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments" } }, - [9319]={ + [9876]={ [1]={ [1]={ limit={ @@ -205707,7 +216388,7 @@ return { [1]="skeletons_are_permanent_minions" } }, - [9320]={ + [9877]={ [1]={ [1]={ limit={ @@ -205723,7 +216404,7 @@ return { [1]="skill_additional_fissure_chance_%" } }, - [9321]={ + [9878]={ [1]={ [1]={ limit={ @@ -205739,7 +216420,7 @@ return { [1]="skill_can_see_monster_categories" } }, - [9322]={ + [9879]={ [1]={ [1]={ limit={ @@ -205755,7 +216436,7 @@ return { [1]="skill_cost_base_life_equal_to_base_mana" } }, - [9323]={ + [9880]={ [1]={ [1]={ limit={ @@ -205784,7 +216465,7 @@ return { [1]="skill_cost_efficiency_+%_if_consumed_power_charge_recently" } }, - [9324]={ + [9881]={ [1]={ [1]={ limit={ @@ -205813,7 +216494,7 @@ return { [1]="skill_detonation_time_+%" } }, - [9325]={ + [9882]={ [1]={ [1]={ limit={ @@ -205842,7 +216523,7 @@ return { [1]="skill_effect_duration_+%_per_enemy_frozen_last_8_seconds" } }, - [9326]={ + [9883]={ [1]={ [1]={ limit={ @@ -205871,7 +216552,7 @@ return { [1]="skill_effect_duration_+%_when_using_shapeshift_skills" } }, - [9327]={ + [9884]={ [1]={ [1]={ limit={ @@ -205900,7 +216581,7 @@ return { [1]="skill_effect_duration_+%_while_affected_by_malevolence" } }, - [9328]={ + [9885]={ [1]={ [1]={ limit={ @@ -205929,7 +216610,7 @@ return { [1]="skill_effect_duration_+%_with_bow_skills" } }, - [9329]={ + [9886]={ [1]={ [1]={ limit={ @@ -205958,7 +216639,7 @@ return { [1]="skill_effect_duration_+%_with_non_curse_aura_skills" } }, - [9330]={ + [9887]={ [1]={ [1]={ limit={ @@ -205974,7 +216655,7 @@ return { [1]="skill_life_cost_+_with_channelling_skills" } }, - [9331]={ + [9888]={ [1]={ [1]={ limit={ @@ -205990,7 +216671,7 @@ return { [1]="skill_life_cost_+_with_non_channelling_skills" } }, - [9332]={ + [9889]={ [1]={ [1]={ limit={ @@ -206006,7 +216687,7 @@ return { [1]="skill_mana_cost_+_while_affected_by_clarity" } }, - [9333]={ + [9890]={ [1]={ [1]={ limit={ @@ -206022,7 +216703,7 @@ return { [1]="skill_mana_cost_+_with_channelling_skills" } }, - [9334]={ + [9891]={ [1]={ [1]={ limit={ @@ -206038,7 +216719,7 @@ return { [1]="base_mana_cost_+_with_channelling_skills" } }, - [9335]={ + [9892]={ [1]={ [1]={ limit={ @@ -206054,7 +216735,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills" } }, - [9336]={ + [9893]={ [1]={ [1]={ limit={ @@ -206070,7 +216751,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_skills" } }, - [9337]={ + [9894]={ [1]={ [1]={ limit={ @@ -206086,7 +216767,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity" } }, - [9338]={ + [9895]={ [1]={ [1]={ limit={ @@ -206102,7 +216783,7 @@ return { [1]="skill_mana_costs_converted_to_life_costs_%_during_life_flask" } }, - [9339]={ + [9896]={ [1]={ [1]={ limit={ @@ -206131,7 +216812,7 @@ return { [1]="skill_speed_+%_against_bloodlusting_enemies" } }, - [9340]={ + [9897]={ [1]={ [1]={ limit={ @@ -206160,7 +216841,36 @@ return { [1]="skill_speed_+%_if_consumed_frenzy_charge_recently" } }, - [9341]={ + [9898]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Speed while on Low Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Speed while on Low Mana" + } + }, + stats={ + [1]="skill_speed_+%_while_on_low_mana" + } + }, + [9899]={ [1]={ [1]={ limit={ @@ -206189,7 +216899,7 @@ return { [1]="skill_speed_+%_while_shapeshifted" } }, - [9342]={ + [9900]={ [1]={ [1]={ limit={ @@ -206214,7 +216924,23 @@ return { [1]="skill_speed_+%_with_channelling_skills" } }, - [9343]={ + [9901]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills Cost Divinity instead of Mana or Life" + } + }, + stats={ + [1]="skills_cost_divinity_instead_of_mana_or_life" + } + }, + [9902]={ [1]={ [1]={ limit={ @@ -206230,7 +216956,7 @@ return { [1]="skills_cost_no_mana_while_focused" } }, - [9344]={ + [9903]={ [1]={ [1]={ limit={ @@ -206246,7 +216972,7 @@ return { [1]="skills_deal_you_x%_of_mana_cost_as_physical_damage" } }, - [9345]={ + [9904]={ [1]={ [1]={ limit={ @@ -206271,7 +216997,7 @@ return { [1]="skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo" } }, - [9346]={ + [9905]={ [1]={ [1]={ limit={ @@ -206296,7 +217022,7 @@ return { [1]="skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost" } }, - [9347]={ + [9906]={ [1]={ [1]={ [1]={ @@ -206316,7 +217042,7 @@ return { [1]="skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9348]={ + [9907]={ [1]={ [1]={ [1]={ @@ -206336,7 +217062,7 @@ return { [1]="skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9349]={ + [9908]={ [1]={ [1]={ limit={ @@ -206365,7 +217091,7 @@ return { [1]="skills_supported_by_nightblade_have_elusive_effect_+%" } }, - [9350]={ + [9909]={ [1]={ [1]={ [1]={ @@ -206402,7 +217128,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_-2%_per_1" } }, - [9351]={ + [9910]={ [1]={ [1]={ limit={ @@ -206431,7 +217157,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_+%" } }, - [9352]={ + [9911]={ [1]={ [1]={ limit={ @@ -206456,7 +217182,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [9353]={ + [9912]={ [1]={ [1]={ limit={ @@ -206485,23 +217211,7 @@ return { [1]="slam_skill_area_of_effect_+%" } }, - [9354]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Slam Skills you use yourself are Ancestrally Boosted" - } - }, - stats={ - [1]="slams_always_ancestral_slam" - } - }, - [9355]={ + [9913]={ [1]={ [1]={ limit={ @@ -206510,7 +217220,7 @@ return { [2]="#" } }, - text="{0}% increased Area of Effect per Enemy killed recently, up to 50%" + text="{0}% increased Area of Effect per Enemy killed Recently, up to 50%" }, [2]={ [1]={ @@ -206523,14 +217233,14 @@ return { [2]=-1 } }, - text="{0}% reduced Area of Effect per Enemy killed recently" + text="{0}% reduced Area of Effect per Enemy killed Recently" } }, stats={ [1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%" } }, - [9356]={ + [9914]={ [1]={ [1]={ limit={ @@ -206546,7 +217256,7 @@ return { [1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100" } }, - [9357]={ + [9915]={ [1]={ [1]={ limit={ @@ -206575,7 +217285,7 @@ return { [1]="slayer_damage_+%_final_against_unique_enemies" } }, - [9358]={ + [9916]={ [1]={ [1]={ limit={ @@ -206604,7 +217314,7 @@ return { [1]="slayer_damage_+%_final_from_distance" } }, - [9359]={ + [9917]={ [1]={ [1]={ limit={ @@ -206633,7 +217343,7 @@ return { [1]="slither_elusive_effect_+%" } }, - [9360]={ + [9918]={ [1]={ [1]={ limit={ @@ -206649,7 +217359,7 @@ return { [1]="slither_wither_stacks" } }, - [9361]={ + [9919]={ [1]={ [1]={ limit={ @@ -206682,7 +217392,7 @@ return { [1]="slow_potency_+%_if_you_have_used_a_charm_recently" } }, - [9362]={ + [9920]={ [1]={ [1]={ limit={ @@ -206698,7 +217408,39 @@ return { [1]="slows_have_no_potency_on_you" } }, - [9363]={ + [9921]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your speed is Unaffected by Slows while missing Runic Ward" + } + }, + stats={ + [1]="slows_have_no_potency_on_you_while_missing_ward" + } + }, + [9922]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your speed is Unaffected by Slows while Sprinting" + } + }, + stats={ + [1]="slows_have_no_potency_on_you_while_sprinting" + } + }, + [9923]={ [1]={ [1]={ limit={ @@ -206727,7 +217469,7 @@ return { [1]="small_passives_effect_+%" } }, - [9364]={ + [9924]={ [1]={ [1]={ limit={ @@ -206743,7 +217485,7 @@ return { [1]="smite_aura_effect_+%" } }, - [9365]={ + [9925]={ [1]={ [1]={ limit={ @@ -206759,7 +217501,7 @@ return { [1]="smite_chance_for_lighting_to_strike_extra_target_%" } }, - [9366]={ + [9926]={ [1]={ [1]={ limit={ @@ -206788,7 +217530,7 @@ return { [1]="smite_damage_+%" } }, - [9367]={ + [9927]={ [1]={ [1]={ limit={ @@ -206804,7 +217546,7 @@ return { [1]="smite_static_strike_killing_blow_consumes_corpse_restore_%_life" } }, - [9368]={ + [9928]={ [1]={ [1]={ limit={ @@ -206820,7 +217562,7 @@ return { [1]="smoke_cloud_while_stationary_radius" } }, - [9369]={ + [9929]={ [1]={ [1]={ limit={ @@ -206849,7 +217591,7 @@ return { [1]="snap_damage_+%_final_if_created_from_unique" } }, - [9370]={ + [9930]={ [1]={ [1]={ limit={ @@ -206878,7 +217620,7 @@ return { [1]="snapping_adder_damage_+%" } }, - [9371]={ + [9931]={ [1]={ [1]={ limit={ @@ -206894,7 +217636,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [9372]={ + [9932]={ [1]={ [1]={ limit={ @@ -206919,7 +217661,7 @@ return { [1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance" } }, - [9373]={ + [9933]={ [1]={ [1]={ limit={ @@ -206948,7 +217690,7 @@ return { [1]="snipe_attack_speed_+%" } }, - [9374]={ + [9934]={ [1]={ [1]={ limit={ @@ -206977,7 +217719,7 @@ return { [1]="snipe_damage_+%_final_if_created_from_unique" } }, - [9375]={ + [9935]={ [1]={ [1]={ [1]={ @@ -207019,7 +217761,7 @@ return { [2]="solaris_spear_number_of_pulses" } }, - [9376]={ + [9936]={ [1]={ [1]={ limit={ @@ -207048,7 +217790,7 @@ return { [1]="sorcery_ward_+%_strength" } }, - [9377]={ + [9937]={ [1]={ [1]={ limit={ @@ -207064,7 +217806,7 @@ return { [1]="sorcery_ward_applies_to_physical_chaos" } }, - [9378]={ + [9938]={ [1]={ [1]={ limit={ @@ -207089,7 +217831,7 @@ return { [1]="soul_eater_maximum_stacks" } }, - [9379]={ + [9939]={ [1]={ [1]={ limit={ @@ -207118,7 +217860,7 @@ return { [1]="soul_link_duration_+%" } }, - [9380]={ + [9940]={ [1]={ [1]={ limit={ @@ -207134,7 +217876,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [9381]={ + [9941]={ [1]={ [1]={ limit={ @@ -207167,7 +217909,7 @@ return { [1]="soulrend_applies_hinder_movement_speed_+%" } }, - [9382]={ + [9942]={ [1]={ [1]={ limit={ @@ -207196,7 +217938,7 @@ return { [1]="soulrend_damage_+%" } }, - [9383]={ + [9943]={ [1]={ [1]={ limit={ @@ -207221,7 +217963,7 @@ return { [1]="soulrend_number_of_additional_projectiles" } }, - [9384]={ + [9944]={ [1]={ [1]={ limit={ @@ -207246,7 +217988,7 @@ return { [1]="spark_number_of_additional_projectiles" } }, - [9385]={ + [9945]={ [1]={ [1]={ limit={ @@ -207262,7 +218004,7 @@ return { [1]="spark_projectiles_nova" } }, - [9386]={ + [9946]={ [1]={ [1]={ limit={ @@ -207295,7 +218037,7 @@ return { [1]="spark_skill_effect_duration_+%" } }, - [9387]={ + [9947]={ [1]={ [1]={ limit={ @@ -207320,7 +218062,7 @@ return { [1]="spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent" } }, - [9388]={ + [9948]={ [1]={ [1]={ limit={ @@ -207336,7 +218078,7 @@ return { [1]="spawn_defender_with_totem" } }, - [9389]={ + [9949]={ [1]={ [1]={ limit={ @@ -207352,7 +218094,7 @@ return { [1]="spear_skills_inflict_bloodstone_lance_on_hit" } }, - [9390]={ + [9950]={ [1]={ [1]={ limit={ @@ -207377,7 +218119,7 @@ return { [1]="spear_throws_consume_frenzy_charge_to_fire_additional_projectiles" } }, - [9391]={ + [9951]={ [1]={ [1]={ limit={ @@ -207406,7 +218148,7 @@ return { [1]="spectral_helix_damage_+%" } }, - [9392]={ + [9952]={ [1]={ [1]={ limit={ @@ -207435,7 +218177,7 @@ return { [1]="spectral_helix_projectile_speed_+%" } }, - [9393]={ + [9953]={ [1]={ [1]={ [1]={ @@ -207455,7 +218197,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [9394]={ + [9954]={ [1]={ [1]={ limit={ @@ -207480,7 +218222,7 @@ return { [1]="spectral_shield_throw_additional_chains" } }, - [9395]={ + [9955]={ [1]={ [1]={ limit={ @@ -207509,7 +218251,7 @@ return { [1]="spectral_shield_throw_damage_+%" } }, - [9396]={ + [9956]={ [1]={ [1]={ limit={ @@ -207534,7 +218276,7 @@ return { [1]="spectral_shield_throw_num_of_additional_projectiles" } }, - [9397]={ + [9957]={ [1]={ [1]={ limit={ @@ -207563,7 +218305,7 @@ return { [1]="spectral_shield_throw_projectile_speed_+%" } }, - [9398]={ + [9958]={ [1]={ [1]={ limit={ @@ -207579,7 +218321,7 @@ return { [1]="spectral_shield_throw_secondary_projectiles_pierce" } }, - [9399]={ + [9959]={ [1]={ [1]={ [1]={ @@ -207608,7 +218350,7 @@ return { [1]="spectral_shield_throw_shard_projectiles_+%_final" } }, - [9400]={ + [9960]={ [1]={ [1]={ limit={ @@ -207633,7 +218375,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [9401]={ + [9961]={ [1]={ [1]={ [1]={ @@ -207653,7 +218395,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [9402]={ + [9962]={ [1]={ [1]={ limit={ @@ -207669,7 +218411,7 @@ return { [1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%" } }, - [9403]={ + [9963]={ [1]={ [1]={ limit={ @@ -207685,7 +218427,7 @@ return { [1]="spectre_maximum_life_+" } }, - [9404]={ + [9964]={ [1]={ [1]={ limit={ @@ -207718,7 +218460,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [9405]={ + [9965]={ [1]={ [1]={ limit={ @@ -207747,7 +218489,7 @@ return { [1]="spectre_zombie_skeleton_critical_strike_multiplier_+" } }, - [9406]={ + [9966]={ [1]={ [1]={ limit={ @@ -207763,7 +218505,7 @@ return { [1]="spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised" } }, - [9407]={ + [9967]={ [1]={ [1]={ limit={ @@ -207779,7 +218521,7 @@ return { [1]="spectres_critical_strike_chance_+%" } }, - [9408]={ + [9968]={ [1]={ [1]={ limit={ @@ -207795,7 +218537,7 @@ return { [1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance" } }, - [9409]={ + [9969]={ [1]={ [1]={ [1]={ @@ -207815,7 +218557,7 @@ return { [1]="spectres_have_base_duration_ms" } }, - [9410]={ + [9970]={ [1]={ [1]={ [1]={ @@ -207835,7 +218577,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad" } }, - [9411]={ + [9971]={ [1]={ [1]={ limit={ @@ -207864,7 +218606,7 @@ return { [1]="spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills" } }, - [9412]={ + [9972]={ [1]={ [1]={ limit={ @@ -207885,7 +218627,7 @@ return { [2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect" } }, - [9413]={ + [9973]={ [1]={ [1]={ limit={ @@ -207914,7 +218656,7 @@ return { [1]="spell_area_damage_+%" } }, - [9414]={ + [9974]={ [1]={ [1]={ limit={ @@ -207943,7 +218685,7 @@ return { [1]="spell_area_of_effect_+%" } }, - [9415]={ + [9975]={ [1]={ [1]={ limit={ @@ -207968,7 +218710,23 @@ return { [1]="spell_chance_to_deal_double_damage_%" } }, - [9416]={ + [9976]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance for Spell Damage with Critical Hits to be Lucky" + } + }, + stats={ + [1]="spell_critical_hit_chance_%_for_lucky_damage" + } + }, + [9977]={ [1]={ [1]={ limit={ @@ -207993,7 +218751,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills" } }, - [9417]={ + [9978]={ [1]={ [1]={ limit={ @@ -208022,7 +218780,7 @@ return { [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" } }, - [9418]={ + [9979]={ [1]={ [1]={ limit={ @@ -208047,7 +218805,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills" } }, - [9419]={ + [9980]={ [1]={ [1]={ limit={ @@ -208076,7 +218834,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life" } }, - [9420]={ + [9981]={ [1]={ [1]={ limit={ @@ -208105,7 +218863,23 @@ return { [1]="spell_critical_strike_chance_+%_per_raised_spectre" } }, - [9421]={ + [9982]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spell Damage during any Flask Effect" + } + }, + stats={ + [1]="spell_damage_+%_during_mana_flask_effect" + } + }, + [9983]={ [1]={ [1]={ limit={ @@ -208134,7 +218908,7 @@ return { [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" } }, - [9422]={ + [9984]={ [1]={ [1]={ limit={ @@ -208150,7 +218924,7 @@ return { [1]="spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds" } }, - [9423]={ + [9985]={ [1]={ [1]={ limit={ @@ -208179,7 +218953,7 @@ return { [1]="spell_damage_+%_if_have_consumed_infusion_recently" } }, - [9424]={ + [9986]={ [1]={ [1]={ limit={ @@ -208208,7 +218982,7 @@ return { [1]="spell_damage_+%_if_have_crit_recently" } }, - [9425]={ + [9987]={ [1]={ [1]={ limit={ @@ -208237,7 +219011,7 @@ return { [1]="spell_damage_+%_if_minion_died_recently" } }, - [9426]={ + [9988]={ [1]={ [1]={ limit={ @@ -208262,7 +219036,7 @@ return { [1]="spell_damage_+%_if_youve_reverted_recently" } }, - [9427]={ + [9989]={ [1]={ [1]={ limit={ @@ -208287,7 +219061,7 @@ return { [1]="spell_damage_+%_per_100_max_mana_with_non_channelling_skills" } }, - [9428]={ + [9990]={ [1]={ [1]={ limit={ @@ -208316,7 +219090,7 @@ return { [1]="spell_damage_+%_per_500_maximum_mana" } }, - [9429]={ + [9991]={ [1]={ [1]={ limit={ @@ -208341,7 +219115,36 @@ return { [1]="spell_damage_+%_per_rage" } }, - [9430]={ + [9992]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spell Damage while your Companion is in your Presence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spell Damage while your Companion is in your Presence" + } + }, + stats={ + [1]="spell_damage_+%_while_companion_in_presence" + } + }, + [9993]={ [1]={ [1]={ limit={ @@ -208370,7 +219173,7 @@ return { [1]="spell_damage_+%_while_wielding_melee_weapon" } }, - [9431]={ + [9994]={ [1]={ [1]={ limit={ @@ -208399,7 +219202,7 @@ return { [1]="spell_damage_+%_with_spells_that_cost_life" } }, - [9432]={ + [9995]={ [1]={ [1]={ limit={ @@ -208428,7 +219231,7 @@ return { [1]="spell_damage_+%_during_flask_effect" } }, - [9433]={ + [9996]={ [1]={ [1]={ limit={ @@ -208457,7 +219260,7 @@ return { [1]="spell_damage_+%_if_have_crit_in_past_8_seconds" } }, - [9434]={ + [9997]={ [1]={ [1]={ limit={ @@ -208486,7 +219289,7 @@ return { [1]="spell_damage_+%_if_you_have_blocked_recently" } }, - [9435]={ + [9998]={ [1]={ [1]={ limit={ @@ -208515,7 +219318,7 @@ return { [1]="spell_damage_+%_per_100_max_life" } }, - [9436]={ + [9999]={ [1]={ [1]={ limit={ @@ -208540,7 +219343,7 @@ return { [1]="spell_damage_+%_per_100_max_life_with_non_channelling_skills" } }, - [9437]={ + [10000]={ [1]={ [1]={ limit={ @@ -208569,7 +219372,7 @@ return { [1]="spell_damage_+%_per_100_maximum_mana" } }, - [9438]={ + [10001]={ [1]={ [1]={ limit={ @@ -208585,7 +219388,7 @@ return { [1]="spell_damage_+%_per_10_spirit" } }, - [9439]={ + [10002]={ [1]={ [1]={ limit={ @@ -208614,7 +219417,7 @@ return { [1]="spell_damage_+%_per_10_strength" } }, - [9440]={ + [10003]={ [1]={ [1]={ limit={ @@ -208643,7 +219446,7 @@ return { [1]="spell_damage_+%_per_16_dex" } }, - [9441]={ + [10004]={ [1]={ [1]={ limit={ @@ -208672,7 +219475,7 @@ return { [1]="spell_damage_+%_per_16_int" } }, - [9442]={ + [10005]={ [1]={ [1]={ limit={ @@ -208701,7 +219504,7 @@ return { [1]="spell_damage_+%_per_16_strength" } }, - [9443]={ + [10006]={ [1]={ [1]={ limit={ @@ -208730,7 +219533,7 @@ return { [1]="spell_damage_+%_while_shocked" } }, - [9444]={ + [10007]={ [1]={ [1]={ limit={ @@ -208759,7 +219562,36 @@ return { [1]="spell_damage_+%_while_you_have_arcane_surge" } }, - [9445]={ + [10008]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Magnitude of Elemental Ailments you inflict with Spells" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Magnitude of Elemental Ailments you inflict with Spells" + } + }, + stats={ + [1]="spell_elemental_ailment_magnitude_+%" + } + }, + [10009]={ [1]={ [1]={ limit={ @@ -208784,7 +219616,7 @@ return { [1]="spell_hits_against_you_inflict_poison_%" } }, - [9446]={ + [10010]={ [1]={ [1]={ limit={ @@ -208813,7 +219645,7 @@ return { [1]="spell_impale_magnitude_+%" } }, - [9447]={ + [10011]={ [1]={ [1]={ limit={ @@ -208838,7 +219670,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [9448]={ + [10012]={ [1]={ [1]={ limit={ @@ -208854,7 +219686,7 @@ return { [1]="spell_projectile_skills_fire_X_additional_projectiles_in_a_circle" } }, - [9449]={ + [10013]={ [1]={ [1]={ limit={ @@ -208870,7 +219702,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [9450]={ + [10014]={ [1]={ [1]={ limit={ @@ -208899,7 +219731,7 @@ return { [1]="spell_skill_projectile_speed_+%" } }, - [9451]={ + [10015]={ [1]={ [1]={ limit={ @@ -208915,52 +219747,7 @@ return { [1]="spell_skills_additional_totems_allowed" } }, - [9452]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Spell Skills always deal Critical Hits on final Repeat" - } - }, - stats={ - [1]="spell_skills_always_crit_on_final_repeat" - } - }, - [9453]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Spell Skills have {0}% increased Critical Damage Bonus on final Repeat" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Spell Skills have {0}% reduced Critical Damage Bonus on final Repeat" - } - }, - stats={ - [1]="spell_skills_critical_strike_multiplier_+_on_final_repeat" - } - }, - [9454]={ + [10016]={ [1]={ [1]={ limit={ @@ -208976,7 +219763,7 @@ return { [1]="spell_skills_deal_no_damage" } }, - [9455]={ + [10017]={ [1]={ [1]={ limit={ @@ -208992,23 +219779,7 @@ return { [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [9456]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Spell Skills cannot deal Critical Hits except on final Repeat" - } - }, - stats={ - [1]="spell_skills_never_crit_except_on_final_repeat" - } - }, - [9457]={ + [10018]={ [1]={ [1]={ limit={ @@ -209033,7 +219804,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [9458]={ + [10019]={ [1]={ [1]={ limit={ @@ -209049,7 +219820,7 @@ return { [1]="spells_chance_to_knockback_on_hit_%" } }, - [9459]={ + [10020]={ [1]={ [1]={ limit={ @@ -209065,7 +219836,7 @@ return { [1]="spells_chance_to_poison_on_hit_%" } }, - [9460]={ + [10021]={ [1]={ [1]={ limit={ @@ -209081,7 +219852,7 @@ return { [1]="spells_cost_life_instead_of_mana_%" } }, - [9461]={ + [10022]={ [1]={ [1]={ limit={ @@ -209097,7 +219868,7 @@ return { [1]="spells_gain_%_physical_damage_if_they_cost_life" } }, - [9462]={ + [10023]={ [1]={ [1]={ limit={ @@ -209122,7 +219893,7 @@ return { [1]="spells_have_x%_chance_inflict_withered_on_hit" } }, - [9463]={ + [10024]={ [1]={ [1]={ limit={ @@ -209147,7 +219918,23 @@ return { [1]="spells_impale_on_hit_%_chance" } }, - [9464]={ + [10025]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spell damage Penetrates {0}% of enemy Elemental Resistances while on Low Runic Ward" + } + }, + stats={ + [1]="spells_penetrates_elemental_resist_%_while_on_low_ward" + } + }, + [10026]={ [1]={ [1]={ limit={ @@ -209163,7 +219950,7 @@ return { [1]="spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage" } }, - [9465]={ + [10027]={ [1]={ [1]={ limit={ @@ -209179,7 +219966,7 @@ return { [1]="spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage" } }, - [9466]={ + [10028]={ [1]={ [1]={ limit={ @@ -209208,7 +219995,7 @@ return { [1]="spellslinger_cooldown_duration_+%" } }, - [9467]={ + [10029]={ [1]={ [1]={ [1]={ @@ -209245,7 +220032,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_-2%_per_1" } }, - [9468]={ + [10030]={ [1]={ [1]={ limit={ @@ -209274,7 +220061,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_+%" } }, - [9469]={ + [10031]={ [1]={ [1]={ limit={ @@ -209307,7 +220094,7 @@ return { [1]="spellslinger_mana_reservation_+%" } }, - [9470]={ + [10032]={ [1]={ [1]={ limit={ @@ -209323,7 +220110,7 @@ return { [1]="spending_energy_shield_does_not_interrupt_recharge" } }, - [9471]={ + [10033]={ [1]={ [1]={ limit={ @@ -209352,7 +220139,7 @@ return { [1]="spider_aspect_debuff_duration_+%" } }, - [9472]={ + [10034]={ [1]={ [1]={ limit={ @@ -209381,7 +220168,7 @@ return { [1]="spider_aspect_skill_area_of_effect_+%" } }, - [9473]={ + [10035]={ [1]={ [1]={ [1]={ @@ -209401,7 +220188,7 @@ return { [1]="spider_aspect_web_interval_ms_override" } }, - [9474]={ + [10036]={ [1]={ [1]={ limit={ @@ -209426,7 +220213,7 @@ return { [1]="spike_slam_num_spikes" } }, - [9475]={ + [10037]={ [1]={ [1]={ limit={ @@ -209455,7 +220242,7 @@ return { [1]="spirit_+%_if_you_have_at_least_100_tribute" } }, - [9476]={ + [10038]={ [1]={ [1]={ limit={ @@ -209471,7 +220258,7 @@ return { [1]="spirit_+_if_at_least_200_dexterity" } }, - [9477]={ + [10039]={ [1]={ [1]={ limit={ @@ -209487,7 +220274,7 @@ return { [1]="spirit_+_if_at_least_200_intelligence" } }, - [9478]={ + [10040]={ [1]={ [1]={ limit={ @@ -209503,7 +220290,23 @@ return { [1]="spirit_+_if_at_least_200_strength" } }, - [9479]={ + [10041]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Spirit per 2 Levels" + } + }, + stats={ + [1]="spirit_+_per_2_levels" + } + }, + [10042]={ [1]={ [1]={ limit={ @@ -209519,7 +220322,7 @@ return { [1]="spirit_+_per_empty_charm_slot" } }, - [9480]={ + [10043]={ [1]={ [1]={ limit={ @@ -209535,7 +220338,7 @@ return { [1]="spirit_does_not_exist" } }, - [9481]={ + [10044]={ [1]={ [1]={ limit={ @@ -209564,7 +220367,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [9482]={ + [10045]={ [1]={ [1]={ limit={ @@ -209580,7 +220383,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [9483]={ + [10046]={ [1]={ [1]={ limit={ @@ -209596,7 +220399,7 @@ return { [1]="spirit_+%_per_stackable_unique_jewel" } }, - [9484]={ + [10047]={ [1]={ [1]={ limit={ @@ -209612,7 +220415,7 @@ return { [1]="split_arrow_projectiles_fire_in_parallel_x_dist" } }, - [9485]={ + [10048]={ [1]={ [1]={ limit={ @@ -209641,7 +220444,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9486]={ + [10049]={ [1]={ [1]={ limit={ @@ -209670,7 +220473,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9487]={ + [10050]={ [1]={ [1]={ limit={ @@ -209699,7 +220502,7 @@ return { [1]="splitting_steel_damage_+%" } }, - [9488]={ + [10051]={ [1]={ [1]={ [1]={ @@ -209719,7 +220522,7 @@ return { [1]="spread_ignite_from_killed_enemies_range" } }, - [9489]={ + [10052]={ [1]={ [1]={ limit={ @@ -209748,7 +220551,36 @@ return { [1]="sprint_movement_speed_+%" } }, - [9490]={ + [10053]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed while Sprinting per Persistent Minion" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed while Sprinting per Persistent Minion" + } + }, + stats={ + [1]="sprint_movement_speed_+%_per_active_persistent_minion" + } + }, + [10054]={ [1]={ [1]={ [1]={ @@ -209768,7 +220600,7 @@ return { [1]="life_regeneration_per_minute_in_blood_stance" } }, - [9491]={ + [10055]={ [1]={ [1]={ limit={ @@ -209797,7 +220629,7 @@ return { [1]="projectile_damage_+%_in_blood_stance" } }, - [9492]={ + [10056]={ [1]={ [1]={ limit={ @@ -209826,7 +220658,7 @@ return { [1]="evasion_rating_plus_in_sand_stance" } }, - [9493]={ + [10057]={ [1]={ [1]={ limit={ @@ -209855,7 +220687,7 @@ return { [1]="stance_skill_cooldown_speed_+%" } }, - [9494]={ + [10058]={ [1]={ [1]={ limit={ @@ -209884,7 +220716,7 @@ return { [1]="stance_skills_mana_reservation_efficiency_+%" } }, - [9495]={ + [10059]={ [1]={ [1]={ limit={ @@ -209913,7 +220745,7 @@ return { [1]="stance_skill_reservation_+%" } }, - [9496]={ + [10060]={ [1]={ [1]={ limit={ @@ -209942,7 +220774,7 @@ return { [1]="skill_area_of_effect_+%_in_sand_stance" } }, - [9497]={ + [10061]={ [1]={ [1]={ [1]={ @@ -209962,7 +220794,7 @@ return { [1]="stance_swap_cooldown_modifier_ms" } }, - [9498]={ + [10062]={ [1]={ [1]={ limit={ @@ -209991,7 +220823,7 @@ return { [1]="attack_speed_+%_if_changed_stance_recently" } }, - [9499]={ + [10063]={ [1]={ [1]={ limit={ @@ -210007,7 +220839,7 @@ return { [1]="start_at_zero_energy_shield" } }, - [9500]={ + [10064]={ [1]={ [1]={ limit={ @@ -210023,7 +220855,7 @@ return { [1]="start_energy_shield_recharge_when_you_use_a_mana_flask" } }, - [9501]={ + [10065]={ [1]={ [1]={ limit={ @@ -210039,7 +220871,7 @@ return { [1]="static_strike_additional_number_of_beam_targets" } }, - [9502]={ + [10066]={ [1]={ [1]={ limit={ @@ -210068,7 +220900,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_while_focused" } }, - [9503]={ + [10067]={ [1]={ [1]={ limit={ @@ -210097,7 +220929,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_with_bows" } }, - [9504]={ + [10068]={ [1]={ [1]={ limit={ @@ -210126,7 +220958,7 @@ return { [1]="stealth_+%" } }, - [9505]={ + [10069]={ [1]={ [1]={ limit={ @@ -210155,7 +220987,7 @@ return { [1]="stealth_+%_if_have_hit_with_claw_recently" } }, - [9506]={ + [10070]={ [1]={ [1]={ limit={ @@ -210184,7 +221016,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [9507]={ + [10071]={ [1]={ [1]={ limit={ @@ -210213,7 +221045,7 @@ return { [1]="steel_steal_cast_speed_+%" } }, - [9508]={ + [10072]={ [1]={ [1]={ limit={ @@ -210242,7 +221074,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [9509]={ + [10073]={ [1]={ [1]={ limit={ @@ -210271,7 +221103,7 @@ return { [1]="steelskin_damage_limit_+%" } }, - [9510]={ + [10074]={ [1]={ [1]={ limit={ @@ -210300,7 +221132,7 @@ return { [1]="stibnite_flask_evasion_rating_+%_final" } }, - [9511]={ + [10075]={ [1]={ [1]={ limit={ @@ -210316,7 +221148,7 @@ return { [1]="stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems" } }, - [9512]={ + [10076]={ [1]={ [1]={ limit={ @@ -210332,7 +221164,7 @@ return { [1]="storm_armageddon_sigils_can_target_reaper_minions" } }, - [9513]={ + [10077]={ [1]={ [1]={ limit={ @@ -210361,7 +221193,7 @@ return { [1]="storm_barrier_effect_+%" } }, - [9514]={ + [10078]={ [1]={ [1]={ limit={ @@ -210390,7 +221222,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [9515]={ + [10079]={ [1]={ [1]={ limit={ @@ -210406,7 +221238,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [9516]={ + [10080]={ [1]={ [1]={ limit={ @@ -210422,7 +221254,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [9517]={ + [10081]={ [1]={ [1]={ limit={ @@ -210451,7 +221283,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [9518]={ + [10082]={ [1]={ [1]={ limit={ @@ -210467,7 +221299,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [9519]={ + [10083]={ [1]={ [1]={ limit={ @@ -210483,7 +221315,7 @@ return { [1]="storm_brand_additional_chain_chance_%" } }, - [9520]={ + [10084]={ [1]={ [1]={ limit={ @@ -210499,7 +221331,7 @@ return { [1]="storm_brand_attached_target_lightning_penetration_%" } }, - [9521]={ + [10085]={ [1]={ [1]={ limit={ @@ -210528,7 +221360,7 @@ return { [1]="storm_brand_damage_+%" } }, - [9522]={ + [10086]={ [1]={ [1]={ limit={ @@ -210544,7 +221376,7 @@ return { [1]="storm_burst_15_%_chance_to_create_additional_orb" } }, - [9523]={ + [10087]={ [1]={ [1]={ limit={ @@ -210560,7 +221392,7 @@ return { [1]="storm_burst_additional_object_chance_%" } }, - [9524]={ + [10088]={ [1]={ [1]={ limit={ @@ -210589,7 +221421,7 @@ return { [1]="storm_burst_area_of_effect_+%" } }, - [9525]={ + [10089]={ [1]={ [1]={ limit={ @@ -210605,7 +221437,7 @@ return { [1]="storm_burst_avoid_interruption_while_casting_%" } }, - [9526]={ + [10090]={ [1]={ [1]={ limit={ @@ -210630,7 +221462,7 @@ return { [1]="storm_burst_number_of_additional_projectiles" } }, - [9527]={ + [10091]={ [1]={ [1]={ limit={ @@ -210659,7 +221491,7 @@ return { [1]="storm_rain_damage_+%" } }, - [9528]={ + [10092]={ [1]={ [1]={ limit={ @@ -210684,7 +221516,7 @@ return { [1]="storm_rain_num_additional_arrows" } }, - [9529]={ + [10093]={ [1]={ [1]={ limit={ @@ -210700,7 +221532,7 @@ return { [1]="storm_skill_limit_+" } }, - [9530]={ + [10094]={ [1]={ [1]={ limit={ @@ -210729,7 +221561,7 @@ return { [1]="stormbind_skill_area_of_effect_+%" } }, - [9531]={ + [10095]={ [1]={ [1]={ limit={ @@ -210758,7 +221590,7 @@ return { [1]="stormbind_skill_damage_+%" } }, - [9532]={ + [10096]={ [1]={ [1]={ limit={ @@ -210787,7 +221619,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_aura_effect_+%" } }, - [9533]={ + [10097]={ [1]={ [1]={ limit={ @@ -210803,7 +221635,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_base_deal_no_damage" } }, - [9534]={ + [10098]={ [1]={ [1]={ limit={ @@ -210832,7 +221664,7 @@ return { [1]="stormweaver_chill_effect_+%_final" } }, - [9535]={ + [10099]={ [1]={ [1]={ limit={ @@ -210861,7 +221693,7 @@ return { [1]="stormweaver_shock_effect_+%_final" } }, - [9536]={ + [10100]={ [1]={ [1]={ limit={ @@ -210877,7 +221709,7 @@ return { [1]="strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills" } }, - [9537]={ + [10101]={ [1]={ [1]={ limit={ @@ -210886,14 +221718,14 @@ return { [2]="#" } }, - text="{0:+d} to Level of all Skills with a Strength requirement" + text="Melee Hits with Strike Skills always Knockback" } }, stats={ - [1]="strength_skill_gem_level_+" + [1]="strike_skills_knockback_on_melee_hit" } }, - [9538]={ + [10102]={ [1]={ [1]={ limit={ @@ -210902,14 +221734,14 @@ return { [2]="#" } }, - text="Melee Hits with Strike Skills always Knockback" + text="DNT-UNUSED Strike Skills used while you have Finality always perform a Final Strike is they have one" } }, stats={ - [1]="strike_skills_knockback_on_melee_hit" + [1]="strike_skills_used_with_finality_perform_a_final_strike_if_they_have_one" } }, - [9539]={ + [10103]={ [1]={ [1]={ limit={ @@ -210934,7 +221766,7 @@ return { [1]="stun_and_ailment_threshold_+%_while_surrounded" } }, - [9540]={ + [10104]={ [1]={ [1]={ limit={ @@ -210950,7 +221782,7 @@ return { [1]="stun_duration_on_critical_strike_+%" } }, - [9541]={ + [10105]={ [1]={ [1]={ limit={ @@ -210979,7 +221811,7 @@ return { [1]="stun_duration_+%_per_15_strength" } }, - [9542]={ + [10106]={ [1]={ [1]={ limit={ @@ -211008,7 +221840,7 @@ return { [1]="stun_duration_+%_per_endurance_charge" } }, - [9543]={ + [10107]={ [1]={ [1]={ limit={ @@ -211024,7 +221856,7 @@ return { [1]="stun_nearby_enemies_when_stunned_chance_%" } }, - [9544]={ + [10108]={ [1]={ [1]={ limit={ @@ -211053,7 +221885,7 @@ return { [1]="stun_threshold_+%_during_empowered_attacks" } }, - [9545]={ + [10109]={ [1]={ [1]={ limit={ @@ -211069,7 +221901,7 @@ return { [1]="stun_threshold_+%_for_each_time_hit_recently_up_to_100%" } }, - [9546]={ + [10110]={ [1]={ [1]={ limit={ @@ -211098,7 +221930,7 @@ return { [1]="stun_threshold_+%_if_youve_shapeshifted_to_animal_recently" } }, - [9547]={ + [10111]={ [1]={ [1]={ limit={ @@ -211127,7 +221959,7 @@ return { [1]="stun_threshold_+%_per_25_tribute" } }, - [9548]={ + [10112]={ [1]={ [1]={ limit={ @@ -211156,7 +221988,7 @@ return { [1]="stun_threshold_+%_per_number_of_times_stunned_recently" } }, - [9549]={ + [10113]={ [1]={ [1]={ limit={ @@ -211181,7 +222013,7 @@ return { [1]="stun_threshold_+%_while_channelling" } }, - [9550]={ + [10114]={ [1]={ [1]={ limit={ @@ -211210,7 +222042,36 @@ return { [1]="stun_threshold_+%_while_shapeshifted" } }, - [9551]={ + [10115]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Stun Threshold if you've been Stunned Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Stun Threshold if you've been Stunned Recently" + } + }, + stats={ + [1]="stun_threshold_+%_if_stunned_recently" + } + }, + [10116]={ [1]={ [1]={ limit={ @@ -211226,7 +222087,32 @@ return { [1]="stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour" } }, - [9552]={ + [10117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="+{0} to Stun Threshold per 10 maximum Runic Ward" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="-{0} to Stun Threshold per 10 maximum Runic Ward" + } + }, + stats={ + [1]="stun_threshold_+_per_10_maximum_ward" + } + }, + [10118]={ [1]={ [1]={ limit={ @@ -211242,7 +222128,7 @@ return { [1]="stun_threshold_+_per_dexterity" } }, - [9553]={ + [10119]={ [1]={ [1]={ limit={ @@ -211258,7 +222144,7 @@ return { [1]="stun_threshold_+_per_strength" } }, - [9554]={ + [10120]={ [1]={ [1]={ limit={ @@ -211274,7 +222160,7 @@ return { [1]="stun_threshold_based_on_%_energy_shield_instead_of_life" } }, - [9555]={ + [10121]={ [1]={ [1]={ limit={ @@ -211290,7 +222176,7 @@ return { [1]="stun_threshold_+_from_%_maximum_energy_shield" } }, - [9556]={ + [10122]={ [1]={ [1]={ limit={ @@ -211306,7 +222192,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [9557]={ + [10123]={ [1]={ [1]={ limit={ @@ -211335,7 +222221,7 @@ return { [1]="stun_threshold_+%_when_not_stunned_recently" } }, - [9558]={ + [10124]={ [1]={ [1]={ limit={ @@ -211364,7 +222250,7 @@ return { [1]="stun_threshold_+%_when_on_full_life" } }, - [9559]={ + [10125]={ [1]={ [1]={ limit={ @@ -211380,7 +222266,7 @@ return { [1]="stun_threshold_reduction_+%_with_500_or_more_strength" } }, - [9560]={ + [10126]={ [1]={ [1]={ limit={ @@ -211396,7 +222282,7 @@ return { [1]="summon_2_totems" } }, - [9561]={ + [10127]={ [1]={ [1]={ limit={ @@ -211425,7 +222311,7 @@ return { [1]="summon_arbalist_attack_speed_+%" } }, - [9562]={ + [10128]={ [1]={ [1]={ limit={ @@ -211441,7 +222327,7 @@ return { [1]="summon_arbalist_chains_+" } }, - [9563]={ + [10129]={ [1]={ [1]={ limit={ @@ -211457,7 +222343,7 @@ return { [1]="summon_arbalist_chance_to_bleed_%" } }, - [9564]={ + [10130]={ [1]={ [1]={ limit={ @@ -211473,7 +222359,7 @@ return { [1]="summon_arbalist_chance_to_crush_on_hit_%" } }, - [9565]={ + [10131]={ [1]={ [1]={ limit={ @@ -211489,7 +222375,7 @@ return { [1]="summon_arbalist_chance_to_deal_double_damage_%" } }, - [9566]={ + [10132]={ [1]={ [1]={ limit={ @@ -211505,7 +222391,7 @@ return { [1]="summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%" } }, - [9567]={ + [10133]={ [1]={ [1]={ limit={ @@ -211521,7 +222407,7 @@ return { [1]="summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%" } }, - [9568]={ + [10134]={ [1]={ [1]={ limit={ @@ -211537,7 +222423,7 @@ return { [1]="summon_arbalist_chance_to_poison_%" } }, - [9569]={ + [10135]={ [1]={ [1]={ limit={ @@ -211553,7 +222439,7 @@ return { [1]="summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%" } }, - [9570]={ + [10136]={ [1]={ [1]={ limit={ @@ -211569,7 +222455,7 @@ return { [1]="summon_arbalist_number_of_additional_projectiles" } }, - [9571]={ + [10137]={ [1]={ [1]={ limit={ @@ -211585,7 +222471,7 @@ return { [1]="summon_arbalist_number_of_splits" } }, - [9572]={ + [10138]={ [1]={ [1]={ limit={ @@ -211601,7 +222487,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_cold" } }, - [9573]={ + [10139]={ [1]={ [1]={ limit={ @@ -211617,7 +222503,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_fire" } }, - [9574]={ + [10140]={ [1]={ [1]={ limit={ @@ -211633,7 +222519,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_lightning" } }, - [9575]={ + [10141]={ [1]={ [1]={ limit={ @@ -211649,7 +222535,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_cold" } }, - [9576]={ + [10142]={ [1]={ [1]={ limit={ @@ -211665,7 +222551,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_fire" } }, - [9577]={ + [10143]={ [1]={ [1]={ limit={ @@ -211681,7 +222567,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_lightning" } }, - [9578]={ + [10144]={ [1]={ [1]={ limit={ @@ -211697,7 +222583,7 @@ return { [1]="summon_arbalist_projectiles_fork" } }, - [9579]={ + [10145]={ [1]={ [1]={ limit={ @@ -211713,7 +222599,7 @@ return { [1]="summon_arbalist_targets_to_pierce" } }, - [9580]={ + [10146]={ [1]={ [1]={ limit={ @@ -211729,7 +222615,7 @@ return { [1]="summon_arbalist_chance_to_freeze_%" } }, - [9581]={ + [10147]={ [1]={ [1]={ limit={ @@ -211745,7 +222631,7 @@ return { [1]="summon_arbalist_chance_to_shock_%" } }, - [9582]={ + [10148]={ [1]={ [1]={ limit={ @@ -211761,7 +222647,7 @@ return { [1]="summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%" } }, - [9583]={ + [10149]={ [1]={ [1]={ limit={ @@ -211777,7 +222663,7 @@ return { [1]="summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%" } }, - [9584]={ + [10150]={ [1]={ [1]={ limit={ @@ -211793,7 +222679,7 @@ return { [1]="summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%" } }, - [9585]={ + [10151]={ [1]={ [1]={ limit={ @@ -211809,7 +222695,7 @@ return { [1]="summon_raging_spirit_melee_splash_fire_damage_only" } }, - [9586]={ + [10152]={ [1]={ [1]={ limit={ @@ -211838,7 +222724,7 @@ return { [1]="summon_reaper_cooldown_speed_+%" } }, - [9587]={ + [10153]={ [1]={ [1]={ limit={ @@ -211890,7 +222776,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance" } }, - [9588]={ + [10154]={ [1]={ [1]={ limit={ @@ -211906,7 +222792,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_%_chance" } }, - [9589]={ + [10155]={ [1]={ [1]={ [1]={ @@ -211939,7 +222825,7 @@ return { [1]="summon_skeletons_cooldown_modifier_ms" } }, - [9590]={ + [10156]={ [1]={ [1]={ limit={ @@ -211968,7 +222854,7 @@ return { [1]="summon_skitterbots_area_of_effect_+%" } }, - [9591]={ + [10157]={ [1]={ [1]={ limit={ @@ -212001,7 +222887,7 @@ return { [1]="summon_skitterbots_mana_reservation_+%" } }, - [9592]={ + [10158]={ [1]={ [1]={ limit={ @@ -212017,7 +222903,7 @@ return { [1]="summoned_phantasms_grant_buff" } }, - [9593]={ + [10159]={ [1]={ [1]={ limit={ @@ -212033,7 +222919,7 @@ return { [1]="summoned_phantasms_have_no_duration" } }, - [9594]={ + [10160]={ [1]={ [1]={ limit={ @@ -212049,7 +222935,7 @@ return { [1]="summoned_raging_spirits_have_diamond_and_massive_shrine_buff" } }, - [9595]={ + [10161]={ [1]={ [1]={ limit={ @@ -212078,7 +222964,7 @@ return { [1]="summoned_reaper_damage_+%" } }, - [9596]={ + [10162]={ [1]={ [1]={ limit={ @@ -212094,7 +222980,7 @@ return { [1]="summoned_reaper_physical_dot_multiplier_+" } }, - [9597]={ + [10163]={ [1]={ [1]={ limit={ @@ -212110,7 +222996,7 @@ return { [1]="summoned_skeleton_%_chance_to_wither_for_2_seconds" } }, - [9598]={ + [10164]={ [1]={ [1]={ limit={ @@ -212126,7 +223012,7 @@ return { [1]="summoned_skeleton_%_physical_to_chaos" } }, - [9599]={ + [10165]={ [1]={ [1]={ limit={ @@ -212151,7 +223037,7 @@ return { [1]="summoned_skeletons_cover_in_ash_on_hit_%" } }, - [9600]={ + [10166]={ [1]={ [1]={ [1]={ @@ -212171,7 +223057,7 @@ return { [1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9601]={ + [10167]={ [1]={ [1]={ limit={ @@ -212187,7 +223073,7 @@ return { [1]="summoned_skeletons_hits_cant_be_evaded" } }, - [9602]={ + [10168]={ [1]={ [1]={ limit={ @@ -212216,7 +223102,7 @@ return { [1]="summoned_skitterbots_cooldown_recovery_+%" } }, - [9603]={ + [10169]={ [1]={ [1]={ limit={ @@ -212232,7 +223118,7 @@ return { [1]="summoned_support_ghosts_have_diamond_and_massive_shrine_buff" } }, - [9604]={ + [10170]={ [1]={ [1]={ limit={ @@ -212248,36 +223134,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [9605]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Skills Supported by Unleash have {0}% increased Seal gain frequency" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="Skills Supported by Unleash have {0}% reduced Seal gain frequency" - } - }, - stats={ - [1]="support_anticipation_charge_gain_frequency_+%" - } - }, - [9606]={ + [10171]={ [1]={ [1]={ [1]={ @@ -212306,7 +223163,7 @@ return { [1]="support_approaching_storms_area_of_effect_+%_final" } }, - [9607]={ + [10172]={ [1]={ [1]={ [1]={ @@ -212335,7 +223192,7 @@ return { [1]="support_approaching_storms_damage_+%_final" } }, - [9608]={ + [10173]={ [1]={ [1]={ [1]={ @@ -212364,7 +223221,7 @@ return { [1]="support_approaching_storms_movement_speed_+%_final" } }, - [9609]={ + [10174]={ [1]={ [1]={ limit={ @@ -212393,7 +223250,7 @@ return { [1]="support_buffed_heralds_buff_effect_+%_final" } }, - [9610]={ + [10175]={ [1]={ [1]={ limit={ @@ -212431,7 +223288,7 @@ return { [1]="support_deadly_heralds_buff_effect_+%_final" } }, - [9611]={ + [10176]={ [1]={ [1]={ limit={ @@ -212460,7 +223317,7 @@ return { [1]="support_deadly_heralds_damage_+%_final" } }, - [9612]={ + [10177]={ [1]={ [1]={ limit={ @@ -212489,7 +223346,7 @@ return { [1]="support_fast_forward_detonation_time_+%_final" } }, - [9613]={ + [10178]={ [1]={ [1]={ limit={ @@ -212514,7 +223371,7 @@ return { [1]="support_hourglass_damage_+%_final" } }, - [9614]={ + [10179]={ [1]={ [1]={ limit={ @@ -212530,14 +223387,14 @@ return { [1]="support_jagged_ground_chance_%" } }, - [9615]={ + [10180]={ [1]={ }, stats={ [1]="support_last_gasp_duration_ms" } }, - [9616]={ + [10181]={ [1]={ [1]={ limit={ @@ -212566,7 +223423,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [9617]={ + [10182]={ [1]={ [1]={ limit={ @@ -212587,7 +223444,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [9618]={ + [10183]={ [1]={ [1]={ [1]={ @@ -212607,7 +223464,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [9619]={ + [10184]={ [1]={ [1]={ limit={ @@ -212636,55 +223493,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [9620]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Aura Skill Gems" - } - }, - stats={ - [1]="supported_aura_skill_gem_level_+" - } - }, - [9621]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Cold Skills" - } - }, - stats={ - [1]="supported_cold_skill_gem_level_+" - } - }, - [9622]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Elemental Skill Gems" - } - }, - stats={ - [1]="supported_elemental_skill_gem_level_+" - } - }, - [9623]={ + [10185]={ [1]={ [1]={ limit={ @@ -212693,30 +223502,14 @@ return { [2]="#" } }, - text="{0:+d} to Level of Supported Fire Skills" + text="{0}% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" } }, stats={ - [1]="supported_fire_skill_gem_level_+" + [1]="surpassing_chance_%_to_gain_1_puppeteer_stack_on_using_command_skill" } }, - [9624]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of Supported Lightning Skills" - } - }, - stats={ - [1]="supported_lightning_skill_gem_level_+" - } - }, - [9625]={ + [10186]={ [1]={ [1]={ limit={ @@ -212741,7 +223534,7 @@ return { [1]="surrounded_area_of_effect_+%" } }, - [9626]={ + [10187]={ [1]={ [1]={ limit={ @@ -212757,7 +223550,7 @@ return { [1]="synthesis_map_adjacent_nodes_global_mod_values_doubled" } }, - [9627]={ + [10188]={ [1]={ [1]={ limit={ @@ -212773,7 +223566,7 @@ return { [1]="synthesis_map_global_mod_values_doubled_on_this_node" } }, - [9628]={ + [10189]={ [1]={ [1]={ limit={ @@ -212789,7 +223582,7 @@ return { [1]="synthesis_map_global_mod_values_tripled_on_this_node" } }, - [9629]={ + [10190]={ [1]={ [1]={ limit={ @@ -212805,7 +223598,7 @@ return { [1]="synthesis_map_memories_do_not_collapse_on_this_node" } }, - [9630]={ + [10191]={ [1]={ [1]={ limit={ @@ -212834,7 +223627,7 @@ return { [1]="synthesis_map_monster_slain_experience_+%_on_this_node" } }, - [9631]={ + [10192]={ [1]={ [1]={ limit={ @@ -212850,7 +223643,7 @@ return { [1]="synthesis_map_nearby_memories_have_bonus" } }, - [9632]={ + [10193]={ [1]={ [1]={ limit={ @@ -212875,7 +223668,7 @@ return { [1]="synthesis_map_node_additional_uses_+" } }, - [9633]={ + [10194]={ [1]={ [1]={ limit={ @@ -212891,7 +223684,7 @@ return { [1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories" } }, - [9634]={ + [10195]={ [1]={ [1]={ limit={ @@ -212916,7 +223709,7 @@ return { [1]="synthesis_map_node_grants_additional_global_mod" } }, - [9635]={ + [10196]={ [1]={ [1]={ limit={ @@ -212932,7 +223725,7 @@ return { [1]="synthesis_map_node_grants_no_global_mod" } }, - [9636]={ + [10197]={ [1]={ [1]={ limit={ @@ -212948,7 +223741,7 @@ return { [1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters" } }, - [9637]={ + [10198]={ [1]={ [1]={ limit={ @@ -212964,7 +223757,7 @@ return { [1]="synthesis_map_node_item_quantity_increases_doubled" } }, - [9638]={ + [10199]={ [1]={ [1]={ limit={ @@ -212980,7 +223773,7 @@ return { [1]="synthesis_map_node_item_rarity_increases_doubled" } }, - [9639]={ + [10200]={ [1]={ [1]={ limit={ @@ -213005,7 +223798,7 @@ return { [1]="synthesis_map_node_level_+" } }, - [9640]={ + [10201]={ [1]={ [1]={ limit={ @@ -213021,7 +223814,7 @@ return { [1]="synthesis_map_node_monsters_drop_no_items" } }, - [9641]={ + [10202]={ [1]={ [1]={ limit={ @@ -213037,7 +223830,7 @@ return { [1]="synthesis_map_node_pack_size_increases_doubled" } }, - [9642]={ + [10203]={ [1]={ [1]={ limit={ @@ -213066,7 +223859,7 @@ return { [1]="tactician_spirit_reservation_+%_final_for_permanent_buffs" } }, - [9643]={ + [10204]={ [1]={ [1]={ limit={ @@ -213095,7 +223888,7 @@ return { [1]="tailwind_effect_on_self_+%" } }, - [9644]={ + [10205]={ [1]={ [1]={ limit={ @@ -213124,7 +223917,7 @@ return { [1]="tailwind_effect_on_self_+%_per_gale_force" } }, - [9645]={ + [10206]={ [1]={ [1]={ limit={ @@ -213140,7 +223933,7 @@ return { [1]="tailwind_if_have_crit_recently" } }, - [9646]={ + [10207]={ [1]={ [1]={ limit={ @@ -213156,7 +223949,7 @@ return { [1]="take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy" } }, - [9647]={ + [10208]={ [1]={ [1]={ limit={ @@ -213172,7 +223965,7 @@ return { [1]="take_half_area_damage_from_hit_%_chance" } }, - [9648]={ + [10209]={ [1]={ [1]={ limit={ @@ -213188,7 +223981,7 @@ return { [1]="take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds" } }, - [9649]={ + [10210]={ [1]={ [1]={ limit={ @@ -213213,7 +224006,7 @@ return { [1]="take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack" } }, - [9650]={ + [10211]={ [1]={ [1]={ [1]={ @@ -213246,7 +224039,139 @@ return { [1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10" } }, - [9651]={ + [10212]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Tame Beast can capture Unique Beasts\nCan have up to one Unique Tamed Beast summoned" + } + }, + stats={ + [1]="tame_beast_can_target_unique_beasts" + } + }, + [10213]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Unique Tamed Beasts deal {0}% more damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Unique Tamed Beasts deal {0}% less damage" + } + }, + stats={ + [1]="tame_beasts_unique_damage_+%_final" + } + }, + [10214]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Unique Tamed Beasts have {0}% increased movement speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Unique Tamed Beasts have {0}% reduced movement speed" + } + }, + stats={ + [1]="tame_beasts_unique_movement_velocity_+%" + } + }, + [10215]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Unique Tamed Beasts have {0}% increased Skill Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Unique Tamed Beasts have {0}% reduced Skill Speed" + } + }, + stats={ + [1]="tame_beasts_unique_skill_speed_+%" + } + }, + [10216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every {0} seconds" + } + }, + stats={ + [1]="tamed_beasts_randomly_possessed_every_x_ms" + } + }, + [10217]={ [1]={ [1]={ limit={ @@ -213262,7 +224187,7 @@ return { [1]="taunt_on_projectile_hit_chance_%" } }, - [9652]={ + [10218]={ [1]={ [1]={ limit={ @@ -213291,7 +224216,7 @@ return { [1]="taunted_enemies_by_warcry_damage_taken_+%" } }, - [9653]={ + [10219]={ [1]={ [1]={ [1]={ @@ -213311,7 +224236,7 @@ return { [1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value" } }, - [9654]={ + [10220]={ [1]={ [1]={ limit={ @@ -213327,7 +224252,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [9655]={ + [10221]={ [1]={ [1]={ limit={ @@ -213343,7 +224268,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating" } }, - [9656]={ + [10222]={ [1]={ [1]={ limit={ @@ -213372,7 +224297,7 @@ return { [1]="tectonic_slam_area_of_effect_+%" } }, - [9657]={ + [10223]={ [1]={ [1]={ limit={ @@ -213401,7 +224326,7 @@ return { [1]="tectonic_slam_damage_+%" } }, - [9658]={ + [10224]={ [1]={ [1]={ limit={ @@ -213417,7 +224342,7 @@ return { [1]="tectonic_slam_%_chance_to_do_charged_slam" } }, - [9659]={ + [10225]={ [1]={ [1]={ [1]={ @@ -213437,7 +224362,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [9660]={ + [10226]={ [1]={ [1]={ limit={ @@ -213453,7 +224378,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [9661]={ + [10227]={ [1]={ [1]={ limit={ @@ -213482,7 +224407,7 @@ return { [1]="tempest_shield_buff_effect_+%" } }, - [9662]={ + [10228]={ [1]={ [1]={ limit={ @@ -213498,7 +224423,7 @@ return { [1]="temporal_chains_no_reservation" } }, - [9663]={ + [10229]={ [1]={ [1]={ limit={ @@ -213514,7 +224439,7 @@ return { [1]="temporal_rift_cooldown_speed_+%" } }, - [9664]={ + [10230]={ [1]={ [1]={ limit={ @@ -213530,7 +224455,7 @@ return { [1]="temporary_minion_limit_+" } }, - [9665]={ + [10231]={ [1]={ [1]={ limit={ @@ -213546,7 +224471,7 @@ return { [1]="thaumaturgy_rotation_active" } }, - [9666]={ + [10232]={ [1]={ [1]={ limit={ @@ -213575,7 +224500,7 @@ return { [1]="thorns_critical_strike_chance_+%" } }, - [9667]={ + [10233]={ [1]={ [1]={ limit={ @@ -213604,7 +224529,7 @@ return { [1]="thorns_damage_+%_if_consumed_endurance_charge_recently" } }, - [9668]={ + [10234]={ [1]={ [1]={ limit={ @@ -213633,7 +224558,7 @@ return { [1]="thorns_damage_+%_per_10_tribute" } }, - [9669]={ + [10235]={ [1]={ [1]={ limit={ @@ -213649,7 +224574,23 @@ return { [1]="thorns_damage_has_%_chance_to_ignore_armour" } }, - [9670]={ + [10236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Thorns Damage is Lucky against targets with Fully Broken Armour" + } + }, + stats={ + [1]="thorns_damage_is_lucky_against_enemies_with_fully_broken_armour" + } + }, + [10237]={ [1]={ [1]={ limit={ @@ -213678,7 +224619,7 @@ return { [1]="thorns_damage_+%" } }, - [9671]={ + [10238]={ [1]={ [1]={ limit={ @@ -213707,7 +224648,7 @@ return { [1]="thorns_damage_+%_if_blocked_recently" } }, - [9672]={ + [10239]={ [1]={ [1]={ limit={ @@ -213728,7 +224669,7 @@ return { [2]="thorns_minimum_fire_damage_per_100_life" } }, - [9673]={ + [10240]={ [1]={ [1]={ limit={ @@ -213749,7 +224690,7 @@ return { [2]="thorns_maximum_base_chaos_damage" } }, - [9674]={ + [10241]={ [1]={ [1]={ limit={ @@ -213770,7 +224711,7 @@ return { [2]="thorns_maximum_base_cold_damage" } }, - [9675]={ + [10242]={ [1]={ [1]={ limit={ @@ -213791,7 +224732,7 @@ return { [2]="thorns_maximum_base_fire_damage" } }, - [9676]={ + [10243]={ [1]={ [1]={ limit={ @@ -213812,7 +224753,7 @@ return { [2]="thorns_maximum_base_lightning_damage" } }, - [9677]={ + [10244]={ [1]={ [1]={ limit={ @@ -213833,7 +224774,7 @@ return { [2]="thorns_maximum_base_physical_damage" } }, - [9678]={ + [10245]={ [1]={ [1]={ limit={ @@ -213862,7 +224803,7 @@ return { [1]="thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute" } }, - [9679]={ + [10246]={ [1]={ [1]={ limit={ @@ -213878,7 +224819,55 @@ return { [1]="thorns_proc_off_any_hit" } }, - [9680]={ + [10247]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to deal your Thorns Damage to Enemies you Hit" + } + }, + stats={ + [1]="base_deal_thorns_damage_chance_%_on_hit" + } + }, + [10248]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" + } + }, + stats={ + [1]="melee_attack_deal_thorns_damage_chance_%_on_hit" + } + }, + [10249]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to deal your Thorns Damage to Enemies you Hit with Parry" + } + }, + stats={ + [1]="parry_deal_thorns_damage_chance_%_on_hit" + } + }, + [10250]={ [1]={ [1]={ limit={ @@ -213907,7 +224896,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final" } }, - [9681]={ + [10251]={ [1]={ [1]={ limit={ @@ -213936,7 +224925,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final_per_chain" } }, - [9682]={ + [10252]={ [1]={ [1]={ limit={ @@ -213965,7 +224954,7 @@ return { [1]="threshold_jewel_molten_strike_damage_projectile_count_+%_final" } }, - [9683]={ + [10253]={ [1]={ [1]={ limit={ @@ -213994,7 +224983,7 @@ return { [1]="thrown_shield_secondary_projectile_damage_+%_final" } }, - [9684]={ + [10254]={ [1]={ [1]={ limit={ @@ -214010,7 +224999,7 @@ return { [1]="titan_additional_inventory" } }, - [9685]={ + [10255]={ [1]={ [1]={ limit={ @@ -214039,7 +225028,7 @@ return { [1]="titan_damage_+%_final_against_heavy_stunned_enemies" } }, - [9686]={ + [10256]={ [1]={ [1]={ limit={ @@ -214055,7 +225044,7 @@ return { [1]="titan_expanded_main_inventory" } }, - [9687]={ + [10257]={ [1]={ [1]={ limit={ @@ -214084,7 +225073,7 @@ return { [1]="titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies" } }, - [9688]={ + [10258]={ [1]={ [1]={ limit={ @@ -214113,7 +225102,7 @@ return { [1]="titan_maximum_life_+%_final" } }, - [9689]={ + [10259]={ [1]={ [1]={ limit={ @@ -214142,7 +225131,7 @@ return { [1]="tornado_damage_frequency_+%" } }, - [9690]={ + [10260]={ [1]={ [1]={ limit={ @@ -214171,7 +225160,7 @@ return { [1]="tornado_damage_+%" } }, - [9691]={ + [10261]={ [1]={ [1]={ limit={ @@ -214200,7 +225189,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [9692]={ + [10262]={ [1]={ [1]={ limit={ @@ -214229,7 +225218,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [9693]={ + [10263]={ [1]={ [1]={ limit={ @@ -214258,7 +225247,7 @@ return { [1]="tornado_skill_area_of_effect_+%" } }, - [9694]={ + [10264]={ [1]={ [1]={ limit={ @@ -214274,7 +225263,7 @@ return { [1]="totems_action_speed_cannot_be_modified_below_base" } }, - [9695]={ + [10265]={ [1]={ [1]={ limit={ @@ -214290,7 +225279,7 @@ return { [1]="totem_chaos_immunity" } }, - [9696]={ + [10266]={ [1]={ [1]={ limit={ @@ -214319,7 +225308,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [9697]={ + [10267]={ [1]={ [1]={ limit={ @@ -214348,7 +225337,7 @@ return { [1]="totem_damage_+%_per_active_curse_on_self" } }, - [9698]={ + [10268]={ [1]={ [1]={ limit={ @@ -214377,7 +225366,7 @@ return { [1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds" } }, - [9699]={ + [10269]={ [1]={ [1]={ limit={ @@ -214406,7 +225395,7 @@ return { [1]="totem_damage_+%_per_10_devotion" } }, - [9700]={ + [10270]={ [1]={ [1]={ limit={ @@ -214422,7 +225411,7 @@ return { [1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed" } }, - [9701]={ + [10271]={ [1]={ [1]={ limit={ @@ -214438,7 +225427,7 @@ return { [1]="totem_maximum_energy_shield" } }, - [9702]={ + [10272]={ [1]={ [1]={ limit={ @@ -214454,7 +225443,7 @@ return { [1]="totem_only_uses_skill_when_owner_attacks" } }, - [9703]={ + [10273]={ [1]={ [1]={ limit={ @@ -214483,23 +225472,7 @@ return { [1]="totem_placement_range_+%" } }, - [9704]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d} to Level of all Totem Skill Gems" - } - }, - stats={ - [1]="totem_skill_gem_level_+" - } - }, - [9705]={ + [10274]={ [1]={ [1]={ limit={ @@ -214528,7 +225501,7 @@ return { [1]="totem_spells_damage_+%" } }, - [9706]={ + [10275]={ [1]={ [1]={ limit={ @@ -214544,7 +225517,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [9707]={ + [10276]={ [1]={ [1]={ limit={ @@ -214573,7 +225546,7 @@ return { [1]="totems_nearby_enemies_damage_taken_+%" } }, - [9708]={ + [10277]={ [1]={ [1]={ [1]={ @@ -214593,7 +225566,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [9709]={ + [10278]={ [1]={ [1]={ limit={ @@ -214618,7 +225591,7 @@ return { [1]="totems_taunt_enemies_around_them_for_x_seconds_when_summoned" } }, - [9710]={ + [10279]={ [1]={ [1]={ limit={ @@ -214643,7 +225616,7 @@ return { [1]="tower_add_abyss_to_X_maps" } }, - [9711]={ + [10280]={ [1]={ [1]={ limit={ @@ -214668,7 +225641,7 @@ return { [1]="tower_add_breach_to_X_maps" } }, - [9712]={ + [10281]={ [1]={ [1]={ limit={ @@ -214693,7 +225666,7 @@ return { [1]="tower_add_delirium_to_X_maps" } }, - [9713]={ + [10282]={ [1]={ [1]={ limit={ @@ -214718,7 +225691,32 @@ return { [1]="tower_add_expedition_to_X_maps" } }, - [9714]={ + [10283]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Adds Vaal Beacons to a Map \n{0} use remaining" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Adds Vaal Beacons to a Map \n{0} uses remaining" + } + }, + stats={ + [1]="tower_add_incursion_to_X_maps" + } + }, + [10284]={ [1]={ [1]={ limit={ @@ -214743,7 +225741,7 @@ return { [1]="tower_add_irradiated_to_X_maps" } }, - [9715]={ + [10285]={ [1]={ [1]={ limit={ @@ -214768,7 +225766,7 @@ return { [1]="tower_add_map_bosses_to_X_maps" } }, - [9716]={ + [10286]={ [1]={ [1]={ limit={ @@ -214793,7 +225791,7 @@ return { [1]="tower_add_ritual_to_X_maps" } }, - [9717]={ + [10287]={ [1]={ [1]={ limit={ @@ -214822,7 +225820,7 @@ return { [1]="toxic_rain_damage_+%" } }, - [9718]={ + [10288]={ [1]={ [1]={ limit={ @@ -214847,7 +225845,7 @@ return { [1]="toxic_rain_num_of_additional_projectiles" } }, - [9719]={ + [10289]={ [1]={ [1]={ limit={ @@ -214863,7 +225861,7 @@ return { [1]="toxic_rain_physical_damage_%_to_gain_as_chaos" } }, - [9720]={ + [10290]={ [1]={ [1]={ limit={ @@ -214892,7 +225890,7 @@ return { [1]="trap_and_mine_damage_+%_if_armed_for_4_seconds" } }, - [9721]={ + [10291]={ [1]={ [1]={ limit={ @@ -214921,7 +225919,7 @@ return { [1]="trap_and_mine_throwing_speed_+%" } }, - [9722]={ + [10292]={ [1]={ [1]={ limit={ @@ -214946,7 +225944,7 @@ return { [1]="trap_skill_added_cooldown_count" } }, - [9723]={ + [10293]={ [1]={ [1]={ limit={ @@ -214975,7 +225973,7 @@ return { [1]="trap_spread_+%" } }, - [9724]={ + [10294]={ [1]={ [1]={ limit={ @@ -215004,7 +226002,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [9725]={ + [10295]={ [1]={ [1]={ limit={ @@ -215020,7 +226018,7 @@ return { [1]="traps_cannot_be_triggered_by_enemies" } }, - [9726]={ + [10296]={ [1]={ [1]={ limit={ @@ -215036,7 +226034,7 @@ return { [1]="traps_invulnerable" } }, - [9727]={ + [10297]={ [1]={ [1]={ limit={ @@ -215052,7 +226050,7 @@ return { [1]="travel_skills_cannot_be_exerted" } }, - [9728]={ + [10298]={ [1]={ [1]={ limit={ @@ -215068,7 +226066,7 @@ return { [1]="travel_skills_poison_reflected_to_self_up_to_5_poisons" } }, - [9729]={ + [10299]={ [1]={ [1]={ limit={ @@ -215093,7 +226091,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [9730]={ + [10300]={ [1]={ [1]={ [1]={ @@ -215126,7 +226124,7 @@ return { [1]="trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds" } }, - [9731]={ + [10301]={ [1]={ [1]={ limit={ @@ -215155,7 +226153,7 @@ return { [1]="trickster_damage_over_time_+%_final" } }, - [9732]={ + [10302]={ [1]={ [1]={ limit={ @@ -215171,7 +226169,7 @@ return { [1]="trigger_elemental_storm_on_crit" } }, - [9733]={ + [10303]={ [1]={ [1]={ limit={ @@ -215196,7 +226194,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [9734]={ + [10304]={ [1]={ [1]={ limit={ @@ -215212,7 +226210,7 @@ return { [1]="trigger_wild_strike_on_attack_crit" } }, - [9735]={ + [10305]={ [1]={ [1]={ limit={ @@ -215241,7 +226239,7 @@ return { [1]="triggerbots_damage_+%_final_with_triggered_spells" } }, - [9736]={ + [10306]={ [1]={ [1]={ limit={ @@ -215270,7 +226268,7 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [9737]={ + [10307]={ [1]={ [1]={ limit={ @@ -215286,7 +226284,7 @@ return { [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [9738]={ + [10308]={ [1]={ [1]={ limit={ @@ -215302,7 +226300,7 @@ return { [1]="triggers_soulbreaker_on_breaking_enemy_energy_shield" } }, - [9739]={ + [10309]={ [1]={ [1]={ limit={ @@ -215315,7 +226313,7 @@ return { [2]=0 } }, - text="{0:+d}% more Elemental Damage per 30 Resonance of any type" + text="{0:+d}% more Elemental Damage per 30 Affinity of any type" }, [2]={ limit={ @@ -215328,7 +226326,7 @@ return { [2]="#" } }, - text="{0}% more Elemental Damage per 30 Resonance of any type" + text="{0}% more Elemental Damage per 30 Affinity of any type" }, [3]={ [1]={ @@ -215345,7 +226343,7 @@ return { [2]="#" } }, - text="{0}% less Elemental Damage per 30 Resonance of any type" + text="{0}% less Elemental Damage per 30 Affinity of any type" } }, stats={ @@ -215353,7 +226351,7 @@ return { [2]="quality_display_trinity_is_gem" } }, - [9740]={ + [10310]={ [1]={ [1]={ limit={ @@ -215366,7 +226364,7 @@ return { [2]="#" } }, - text="On dealing Elemental Damage with a Hit, gain {0} Resonance of the highest Elemental Damage type and lose {1} Resonance of the other types" + text="On dealing Elemental Damage with a Hit, gain {0} Affinity of the highest Elemental Damage type and lose {1} Affinity of the other types" } }, stats={ @@ -215374,7 +226372,7 @@ return { [2]="trinity_loss_per_hit" } }, - [9741]={ + [10311]={ [1]={ [1]={ limit={ @@ -215403,7 +226401,7 @@ return { [1]="two_handed_melee_area_damage_+%" } }, - [9742]={ + [10312]={ [1]={ [1]={ limit={ @@ -215432,7 +226430,7 @@ return { [1]="two_handed_melee_area_of_effect_+%" } }, - [9743]={ + [10313]={ [1]={ [1]={ limit={ @@ -215448,7 +226446,7 @@ return { [1]="uber_domain_monster_additional_physical_damage_reduction_%_per_revival" } }, - [9744]={ + [10314]={ [1]={ [1]={ limit={ @@ -215464,7 +226462,7 @@ return { [1]="uber_domain_monster_all_resistances_+%_per_revival" } }, - [9745]={ + [10315]={ [1]={ [1]={ limit={ @@ -215493,7 +226491,7 @@ return { [1]="uber_domain_monster_attack_and_cast_speed_+%_per_revival" } }, - [9746]={ + [10316]={ [1]={ [1]={ limit={ @@ -215509,7 +226507,7 @@ return { [1]="uber_domain_monster_avoid_stun_%_per_revival" } }, - [9747]={ + [10317]={ [1]={ [1]={ limit={ @@ -215538,7 +226536,7 @@ return { [1]="uber_domain_monster_critical_strike_chance_+%_per_revival" } }, - [9748]={ + [10318]={ [1]={ [1]={ limit={ @@ -215554,7 +226552,7 @@ return { [1]="uber_domain_monster_critical_strike_multiplier_+%_per_revival" } }, - [9749]={ + [10319]={ [1]={ [1]={ limit={ @@ -215570,7 +226568,7 @@ return { [1]="uber_domain_monster_deal_double_damage_chance_%_per_revival" } }, - [9750]={ + [10320]={ [1]={ [1]={ [1]={ @@ -215590,7 +226588,7 @@ return { [1]="uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival" } }, - [9751]={ + [10321]={ [1]={ [1]={ limit={ @@ -215619,7 +226617,7 @@ return { [1]="uber_domain_monster_maximum_life_+%_per_revival" } }, - [9752]={ + [10322]={ [1]={ [1]={ limit={ @@ -215648,7 +226646,7 @@ return { [1]="uber_domain_monster_movement_speed_+%_per_revival" } }, - [9753]={ + [10323]={ [1]={ [1]={ limit={ @@ -215664,7 +226662,7 @@ return { [1]="uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival" } }, - [9754]={ + [10324]={ [1]={ [1]={ limit={ @@ -215680,7 +226678,7 @@ return { [1]="uber_domain_monster_penetrate_all_resistances_%_per_revival" } }, - [9755]={ + [10325]={ [1]={ [1]={ limit={ @@ -215709,7 +226707,7 @@ return { [1]="uber_domain_monster_physical_damage_reduction_rating_+%_per_revival" } }, - [9756]={ + [10326]={ [1]={ [1]={ limit={ @@ -215734,7 +226732,7 @@ return { [1]="uber_domain_monster_reward_chance_+%" } }, - [9757]={ + [10327]={ [1]={ [1]={ limit={ @@ -215750,7 +226748,7 @@ return { [1]="unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds" } }, - [9758]={ + [10328]={ [1]={ [1]={ limit={ @@ -215766,7 +226764,7 @@ return { [1]="unaffected_by_bleeding_while_affected_by_malevolence" } }, - [9759]={ + [10329]={ [1]={ [1]={ limit={ @@ -215782,7 +226780,7 @@ return { [1]="unaffected_by_bleeding_while_leeching" } }, - [9760]={ + [10330]={ [1]={ [1]={ limit={ @@ -215798,7 +226796,7 @@ return { [1]="unaffected_by_blind" } }, - [9761]={ + [10331]={ [1]={ [1]={ limit={ @@ -215814,7 +226812,7 @@ return { [1]="unaffected_by_burning_ground" } }, - [9762]={ + [10332]={ [1]={ [1]={ limit={ @@ -215830,7 +226828,7 @@ return { [1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire" } }, - [9763]={ + [10333]={ [1]={ [1]={ limit={ @@ -215846,7 +226844,7 @@ return { [1]="unaffected_by_chill" } }, - [9764]={ + [10334]={ [1]={ [1]={ limit={ @@ -215862,7 +226860,7 @@ return { [1]="unaffected_by_chill_during_dodge_roll" } }, - [9765]={ + [10335]={ [1]={ [1]={ limit={ @@ -215878,7 +226876,7 @@ return { [1]="unaffected_by_chill_while_channelling" } }, - [9766]={ + [10336]={ [1]={ [1]={ limit={ @@ -215894,7 +226892,7 @@ return { [1]="unaffected_by_chill_while_mana_leeching" } }, - [9767]={ + [10337]={ [1]={ [1]={ limit={ @@ -215910,7 +226908,7 @@ return { [1]="unaffected_by_chilled_ground" } }, - [9768]={ + [10338]={ [1]={ [1]={ limit={ @@ -215926,7 +226924,7 @@ return { [1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice" } }, - [9769]={ + [10339]={ [1]={ [1]={ limit={ @@ -215942,7 +226940,7 @@ return { [1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning" } }, - [9770]={ + [10340]={ [1]={ [1]={ limit={ @@ -215958,7 +226956,7 @@ return { [1]="unaffected_by_corrupted_blood_while_leeching" } }, - [9771]={ + [10341]={ [1]={ [1]={ limit={ @@ -215974,7 +226972,7 @@ return { [1]="unaffected_by_curses_while_affected_by_zealotry" } }, - [9772]={ + [10342]={ [1]={ [1]={ limit={ @@ -215990,7 +226988,7 @@ return { [1]="unaffected_by_damaging_ailments" } }, - [9773]={ + [10343]={ [1]={ [1]={ limit={ @@ -216006,7 +227004,23 @@ return { [1]="unaffected_by_desecrated_ground" } }, - [9774]={ + [10344]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unaffected by Elemental Weakness" + } + }, + stats={ + [1]="unaffected_by_elemental_weakness" + } + }, + [10345]={ [1]={ [1]={ limit={ @@ -216022,7 +227036,7 @@ return { [1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements" } }, - [9775]={ + [10346]={ [1]={ [1]={ limit={ @@ -216038,7 +227052,7 @@ return { [1]="unaffected_by_enfeeble_while_affected_by_grace" } }, - [9776]={ + [10347]={ [1]={ [1]={ limit={ @@ -216054,7 +227068,7 @@ return { [1]="unaffected_by_flammability_while_affected_by_purity_of_fire" } }, - [9777]={ + [10348]={ [1]={ [1]={ limit={ @@ -216070,7 +227084,7 @@ return { [1]="unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds" } }, - [9778]={ + [10349]={ [1]={ [1]={ limit={ @@ -216086,7 +227100,7 @@ return { [1]="unaffected_by_frostbite_while_affected_by_purity_of_ice" } }, - [9779]={ + [10350]={ [1]={ [1]={ limit={ @@ -216102,7 +227116,7 @@ return { [1]="unaffected_by_ignite" } }, - [9780]={ + [10351]={ [1]={ [1]={ limit={ @@ -216118,7 +227132,7 @@ return { [1]="unaffected_by_ignite_and_shock_while_max_life_mana_within_500" } }, - [9781]={ + [10352]={ [1]={ [1]={ limit={ @@ -216134,7 +227148,7 @@ return { [1]="unaffected_by_ignite_if_cast_flammability_in_past_10_seconds" } }, - [9782]={ + [10353]={ [1]={ [1]={ limit={ @@ -216150,7 +227164,7 @@ return { [1]="unaffected_by_poison_while_affected_by_malevolence" } }, - [9783]={ + [10354]={ [1]={ [1]={ limit={ @@ -216166,7 +227180,7 @@ return { [1]="unaffected_by_shock" } }, - [9784]={ + [10355]={ [1]={ [1]={ limit={ @@ -216182,7 +227196,7 @@ return { [1]="unaffected_by_shock_if_cast_conductivity_in_past_10_seconds" } }, - [9785]={ + [10356]={ [1]={ [1]={ limit={ @@ -216198,7 +227212,7 @@ return { [1]="unaffected_by_shock_while_channelling" } }, - [9786]={ + [10357]={ [1]={ [1]={ limit={ @@ -216214,7 +227228,7 @@ return { [1]="unaffected_by_shocked_ground" } }, - [9787]={ + [10358]={ [1]={ [1]={ limit={ @@ -216230,7 +227244,7 @@ return { [1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning" } }, - [9788]={ + [10359]={ [1]={ [1]={ limit={ @@ -216246,7 +227260,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [9789]={ + [10360]={ [1]={ [1]={ limit={ @@ -216262,7 +227276,7 @@ return { [1]="unaffected_by_temporal_chains_while_affected_by_haste" } }, - [9790]={ + [10361]={ [1]={ [1]={ limit={ @@ -216278,7 +227292,23 @@ return { [1]="unaffected_by_vulnerability_while_affected_by_determination" } }, - [9791]={ + [10362]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="1% increased Area of Effect for Unarmed Attacks per {0} Intelligence" + } + }, + stats={ + [1]="unarmed_attack_area_of_effect_+1%_per_X_intelligence" + } + }, + [10363]={ [1]={ [1]={ limit={ @@ -216307,7 +227337,7 @@ return { [1]="unarmed_attack_skill_melee_dash_range_+%" } }, - [9792]={ + [10364]={ [1]={ [1]={ limit={ @@ -216336,7 +227366,7 @@ return { [1]="unarmed_attack_speed_+%" } }, - [9793]={ + [10365]={ [1]={ [1]={ limit={ @@ -216365,7 +227395,7 @@ return { [1]="unattached_sigil_attachment_range_+%_per_second" } }, - [9794]={ + [10366]={ [1]={ [1]={ limit={ @@ -216394,7 +227424,7 @@ return { [1]="unbound_ailment_elemental_ailment_chance_+%_final" } }, - [9795]={ + [10367]={ [1]={ [1]={ limit={ @@ -216423,7 +227453,7 @@ return { [1]="unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final" } }, - [9796]={ + [10368]={ [1]={ [1]={ limit={ @@ -216452,7 +227482,7 @@ return { [1]="reservation_efficiency_+%_of_undead_minion_skills" } }, - [9797]={ + [10369]={ [1]={ [1]={ limit={ @@ -216485,7 +227515,7 @@ return { [1]="undead_minion_reservation_+%" } }, - [9798]={ + [10370]={ [1]={ [1]={ limit={ @@ -216501,7 +227531,7 @@ return { [1]="unearth_additional_corpse_level" } }, - [9799]={ + [10371]={ [1]={ [1]={ limit={ @@ -216530,7 +227560,7 @@ return { [1]="unholy_might_granted_magnitude_+%_per_100_maximum_mana" } }, - [9800]={ + [10372]={ [1]={ [1]={ limit={ @@ -216546,7 +227576,7 @@ return { [1]="unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell" } }, - [9801]={ + [10373]={ [1]={ [1]={ [1]={ @@ -216655,23 +227685,52 @@ return { [3]="unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life" } }, - [9802]={ + [10374]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Damage over Time bypasses your Energy Shield\nWhile not on Full Life, Sacrifice {0}% of maximum Mana per Second to Recover that much Life" + text="Enemies in your Presence have at least {0}% of Life Reserved" } }, stats={ - [1]="unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es" + [1]="unique_blood_price_enemies_in_presence_have_at_least_%_life_reserved" } }, - [9803]={ + [10375]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Life Flask Recovery" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Life Flask Recovery" + } + }, + stats={ + [1]="unique_body_armour_life_flask_life_recovery_+%_final" + } + }, + [10376]={ [1]={ [1]={ limit={ @@ -216680,14 +227739,14 @@ return { [2]="#" } }, - text="Damage cannot bypass Energy Shield" + text="Damage over Time cannot bypass your Energy Shield" } }, stats={ - [1]="unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield" + [1]="unique_body_armour_unfaltering_faith_damage_over_time_does_not_bypass_energy_shield" } }, - [9804]={ + [10377]={ [1]={ [1]={ [1]={ @@ -216707,7 +227766,7 @@ return { [1]="unique_cooldown_modifier_ms" } }, - [9805]={ + [10378]={ [1]={ [1]={ limit={ @@ -216736,7 +227795,7 @@ return { [1]="unique_crowd_controlled_enemy_damage_taken_-%_final" } }, - [9806]={ + [10379]={ [1]={ [1]={ limit={ @@ -216752,7 +227811,7 @@ return { [1]="unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max" } }, - [9807]={ + [10380]={ [1]={ [1]={ limit={ @@ -216768,7 +227827,23 @@ return { [1]="unique_double_presence_radius" } }, - [9808]={ + [10381]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can Attack as though using a One Handed Mace while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" + } + }, + stats={ + [1]="unique_facebreaker_can_use_mace_attacks_with_both_hands_empty_using_facebreaker_base_damage" + } + }, + [10382]={ [1]={ [1]={ limit={ @@ -216784,7 +227859,23 @@ return { [1]="unique_gain_soul_eater" } }, - [9809]={ + [10383]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0} Guard for 0.5 seconds per Combo expended when using Skills" + } + }, + stats={ + [1]="unique_gain_x_guard_for_500_ms_per_combo_lost_using_skills" + } + }, + [10384]={ [1]={ [1]={ limit={ @@ -216809,7 +227900,7 @@ return { [1]="unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [9810]={ + [10385]={ [1]={ [1]={ limit={ @@ -216838,7 +227929,7 @@ return { [1]="unique_helmet_damage_+%_final_per_warcry_exerting_action" } }, - [9811]={ + [10386]={ [1]={ [1]={ limit={ @@ -216867,7 +227958,7 @@ return { [1]="unique_jewel_flask_charges_gained_+%_final_from_kills" } }, - [9812]={ + [10387]={ [1]={ [1]={ limit={ @@ -216896,7 +227987,7 @@ return { [1]="unique_jewel_flask_duration_+%_final" } }, - [9813]={ + [10388]={ [1]={ [1]={ [1]={ @@ -216916,7 +228007,7 @@ return { [1]="unique_jewel_grants_notable_hash_1" } }, - [9814]={ + [10389]={ [1]={ [1]={ [1]={ @@ -216936,7 +228027,7 @@ return { [1]="unique_jewel_grants_notable_hash_2" } }, - [9815]={ + [10390]={ [1]={ [1]={ [1]={ @@ -216956,7 +228047,7 @@ return { [1]="unique_jewel_grants_notable_hash_3" } }, - [9816]={ + [10391]={ [1]={ [1]={ [1]={ @@ -216976,7 +228067,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_1" } }, - [9817]={ + [10392]={ [1]={ [1]={ [1]={ @@ -216996,7 +228087,32 @@ return { [1]="unique_jewel_grants_notable_hash_part_2" } }, - [9818]={ + [10393]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Allocates {0} Sinister Jewel sockets" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Allocates {0} Sinister Jewel socket" + } + }, + stats={ + [1]="unique_jewel_grants_x_voices_jewel_sockets" + } + }, + [10394]={ [1]={ [1]={ limit={ @@ -217025,7 +228141,7 @@ return { [1]="unique_jewel_reserved_blood_maximum_life_+%_final" } }, - [9819]={ + [10395]={ [1]={ [1]={ [1]={ @@ -217067,7 +228183,7 @@ return { [2]="unique_jewel_specific_skill_level_+_skill" } }, - [9820]={ + [10396]={ [1]={ [1]={ limit={ @@ -217083,7 +228199,7 @@ return { [1]="local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time" } }, - [9821]={ + [10397]={ [1]={ [1]={ limit={ @@ -217099,7 +228215,23 @@ return { [1]="unique_lose_a_power_charge_when_hit" } }, - [9822]={ + [10398]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Convert {0}% of Fire Damage with Mace Skills to Cold Damage" + } + }, + stats={ + [1]="unique_mace_fire_damage_with_mace_skills_%_to_convert_to_cold" + } + }, + [10399]={ [1]={ [1]={ limit={ @@ -217115,7 +228247,7 @@ return { [1]="unique_minions_in_presence_gain_and_lose_life_when_you_do" } }, - [9823]={ + [10400]={ [1]={ [1]={ limit={ @@ -217144,7 +228276,7 @@ return { [1]="unique_monster_dropped_item_rarity_+%" } }, - [9824]={ + [10401]={ [1]={ [1]={ limit={ @@ -217173,7 +228305,7 @@ return { [1]="unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds" } }, - [9825]={ + [10402]={ [1]={ [1]={ limit={ @@ -217189,7 +228321,7 @@ return { [1]="unique_no_curse_delay" } }, - [9826]={ + [10403]={ [1]={ [1]={ limit={ @@ -217205,7 +228337,7 @@ return { [1]="unique_prism_guardian_spirit_+_per_X_maximum_life" } }, - [9827]={ + [10404]={ [1]={ [1]={ limit={ @@ -217221,7 +228353,7 @@ return { [1]="unique_recover_%_maximum_life_on_x_altenator" } }, - [9828]={ + [10405]={ [1]={ [1]={ limit={ @@ -217259,7 +228391,7 @@ return { [1]="unique_redblade_banner_enemies_in_presence_monster_power_+%_final" } }, - [9829]={ + [10406]={ [1]={ [1]={ limit={ @@ -217288,7 +228420,7 @@ return { [1]="unique_replica_volkuurs_guidance_ignite_duration_+%_final" } }, - [9830]={ + [10407]={ [1]={ [1]={ limit={ @@ -217304,7 +228436,7 @@ return { [1]="unique_revive_permanent_minions_on_mana_flask_use" } }, - [9831]={ + [10408]={ [1]={ [1]={ limit={ @@ -217320,7 +228452,7 @@ return { [1]="unique_shield_window_of_paradise_apply_elemental_exposure_while_raised" } }, - [9832]={ + [10409]={ [1]={ [1]={ limit={ @@ -217349,7 +228481,7 @@ return { [1]="unique_soulless_elegance_energy_shield_recharge_rate_+%_final" } }, - [9833]={ + [10410]={ [1]={ [1]={ limit={ @@ -217365,7 +228497,7 @@ return { [1]="unique_spirit_reservations_are_halved" } }, - [9834]={ + [10411]={ [1]={ [1]={ limit={ @@ -217381,7 +228513,7 @@ return { [1]="unique_sunblast_throw_traps_in_circle_radius" } }, - [9835]={ + [10412]={ [1]={ [1]={ limit={ @@ -217406,7 +228538,7 @@ return { [1]="unique_two_handed_weapon_lightning_stun_multiplier_+%_final" } }, - [9836]={ + [10413]={ [1]={ [1]={ limit={ @@ -217422,7 +228554,7 @@ return { [1]="unique_voltaxic_rift_shock_maximum_magnitude_override" } }, - [9837]={ + [10414]={ [1]={ [1]={ limit={ @@ -217438,7 +228570,7 @@ return { [1]="unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below" } }, - [9838]={ + [10415]={ [1]={ [1]={ limit={ @@ -217454,7 +228586,7 @@ return { [1]="unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below" } }, - [9839]={ + [10416]={ [1]={ [1]={ limit={ @@ -217470,7 +228602,7 @@ return { [1]="unnerve_for_4_seconds_on_hit_with_wands" } }, - [9840]={ + [10417]={ [1]={ [1]={ [1]={ @@ -217490,7 +228622,23 @@ return { [1]="unnerve_nearby_enemies_on_use_for_ms" } }, - [9841]={ + [10418]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Using a Mana Flask grants Guard equal to {0}% of Flask's recovery amount for 4 seconds" + } + }, + stats={ + [1]="using_mana_flask_grants_%_recovery_amount_as_guard_for_4s" + } + }, + [10419]={ [1]={ [1]={ limit={ @@ -217515,7 +228663,7 @@ return { [1]="utility_flask_charges_recovered_per_3_seconds" } }, - [9842]={ + [10420]={ [1]={ [1]={ limit={ @@ -217544,7 +228692,7 @@ return { [1]="utility_flask_cold_damage_taken_+%_final" } }, - [9843]={ + [10421]={ [1]={ [1]={ limit={ @@ -217573,7 +228721,7 @@ return { [1]="utility_flask_fire_damage_taken_+%_final" } }, - [9844]={ + [10422]={ [1]={ [1]={ limit={ @@ -217602,7 +228750,7 @@ return { [1]="utility_flask_lightning_damage_taken_+%_final" } }, - [9845]={ + [10423]={ [1]={ [1]={ limit={ @@ -217618,7 +228766,7 @@ return { [1]="vaal_skill_gem_level_+" } }, - [9846]={ + [10424]={ [1]={ [1]={ limit={ @@ -217651,7 +228799,7 @@ return { [1]="vaal_skill_soul_cost_+%" } }, - [9847]={ + [10425]={ [1]={ [1]={ limit={ @@ -217667,7 +228815,7 @@ return { [1]="vaal_skill_soul_refund_chance_%" } }, - [9848]={ + [10426]={ [1]={ [1]={ limit={ @@ -217696,7 +228844,7 @@ return { [1]="vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%" } }, - [9849]={ + [10427]={ [1]={ [1]={ limit={ @@ -217725,7 +228873,7 @@ return { [1]="vampiric_link_duration_+%" } }, - [9850]={ + [10428]={ [1]={ [1]={ limit={ @@ -217741,7 +228889,7 @@ return { [1]="vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [9851]={ + [10429]={ [1]={ [1]={ limit={ @@ -217770,7 +228918,7 @@ return { [1]="viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge" } }, - [9852]={ + [10430]={ [1]={ [1]={ limit={ @@ -217799,7 +228947,7 @@ return { [1]="viper_strike_dual_wield_damage_+%_final" } }, - [9853]={ + [10431]={ [1]={ [1]={ limit={ @@ -217824,77 +228972,84 @@ return { [1]="virtual_block_%_damage_taken" } }, - [9854]={ + [10432]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_endurance_charge_%" } }, - [9855]={ + [10433]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_frenzy_charge_%" } }, - [9856]={ + [10434]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_power_charge_%" } }, - [9857]={ + [10435]={ [1]={ }, stats={ [1]="virtual_glory_generation_+%" } }, - [9858]={ + [10436]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break" } }, - [9859]={ + [10437]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit" } }, - [9860]={ + [10438]={ + [1]={ + }, + stats={ + [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_chaos_hit" + } + }, + [10439]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun" } }, - [9861]={ + [10440]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite" } }, - [9862]={ + [10441]={ [1]={ }, stats={ [1]="virtual_maximum_curse_zones_allowed" } }, - [9863]={ + [10442]={ [1]={ }, stats={ [1]="virtual_number_of_banners_allowed" } }, - [9864]={ + [10443]={ [1]={ [1]={ limit={ @@ -217919,7 +229074,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [9865]={ + [10444]={ [1]={ [1]={ limit={ @@ -217935,7 +229090,7 @@ return { [1]="virulent_arrow_chance_to_poison_%_per_stage" } }, - [9866]={ + [10445]={ [1]={ [1]={ [1]={ @@ -217972,7 +229127,7 @@ return { [1]="vitality_mana_reservation_efficiency_-2%_per_1" } }, - [9867]={ + [10446]={ [1]={ [1]={ limit={ @@ -218001,7 +229156,7 @@ return { [1]="vitality_mana_reservation_efficiency_+%" } }, - [9868]={ + [10447]={ [1]={ [1]={ limit={ @@ -218017,7 +229172,99 @@ return { [1]="vitality_reserves_no_mana" } }, - [9869]={ + [10448]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Stags deal {0}% more damage per leap" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Stags deal {0}% less damage per leap" + } + }, + stats={ + [1]="vivid_stag_damage_%_final_per_cascade" + } + }, + [10449]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gain a Vivid Wisp for every metre you move, up to a maximum of {1}\nExpend all Vivid Wisps to trigger Vivid Stampede when you Attack" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Gain a Vivid Wisp for every {0} metres you move, up to a maximum of {1}\nExpend all Vivid Wisps to trigger Vivid Stampede when you Attack" + } + }, + stats={ + [1]="vivid_stag_metres_travled_per_wisp_gain", + [2]="vivid_stag_maximum_stag_wisps_allowed" + } + }, + [10450]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Stags have {0}% more Shock Magnitude per leap" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Stags have {0}% less Shock Magnitude per leap" + } + }, + stats={ + [1]="vivid_stag_shock_effect_%_final_per_cascade" + } + }, + [10451]={ [1]={ [1]={ [1]={ @@ -218046,7 +229293,7 @@ return { [1]="vivisection_damage_+%_final" } }, - [9870]={ + [10452]={ [1]={ [1]={ [1]={ @@ -218059,7 +229306,7 @@ return { [2]=-1 } }, - text="{0}% less Defences" + text="{0}% less Armour, Evasion and Energy Shield" }, [2]={ limit={ @@ -218068,14 +229315,14 @@ return { [2]="#" } }, - text="{0}% more Defences" + text="{0}% more Armour, Evasion and Energy Shield" } }, stats={ - [1]="vivisection_defences_+%_final" + [1]="vivisection_armour_evasion_energy_shield_+%_final" } }, - [9871]={ + [10453]={ [1]={ [1]={ [1]={ @@ -218104,7 +229351,7 @@ return { [1]="vivisection_maximum_life_+%_final" } }, - [9872]={ + [10454]={ [1]={ [1]={ [1]={ @@ -218133,7 +229380,7 @@ return { [1]="vivisection_maximum_mana_+%_final" } }, - [9873]={ + [10455]={ [1]={ [1]={ [1]={ @@ -218162,7 +229409,7 @@ return { [1]="vivisection_movement_speed_+%_final" } }, - [9874]={ + [10456]={ [1]={ [1]={ [1]={ @@ -218191,7 +229438,7 @@ return { [1]="vivisection_spirit_+%_final" } }, - [9875]={ + [10457]={ [1]={ [1]={ limit={ @@ -218207,7 +229454,7 @@ return { [1]="void_sphere_cooldown_speed_+%" } }, - [9876]={ + [10458]={ [1]={ [1]={ limit={ @@ -218223,7 +229470,7 @@ return { [1]="volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity" } }, - [9877]={ + [10459]={ [1]={ [1]={ limit={ @@ -218248,7 +229495,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [9878]={ + [10460]={ [1]={ [1]={ limit={ @@ -218277,7 +229524,7 @@ return { [1]="volatile_dead_cast_speed_+%" } }, - [9879]={ + [10461]={ [1]={ [1]={ limit={ @@ -218293,7 +229540,7 @@ return { [1]="volatile_dead_consume_additional_corpse" } }, - [9880]={ + [10462]={ [1]={ [1]={ limit={ @@ -218322,7 +229569,7 @@ return { [1]="volatile_dead_damage_+%" } }, - [9881]={ + [10463]={ [1]={ [1]={ limit={ @@ -218338,7 +229585,7 @@ return { [1]="volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant" } }, - [9882]={ + [10464]={ [1]={ [1]={ limit={ @@ -218354,7 +229601,7 @@ return { [1]="volatility_critical_strike_chance_+%_to_grant" } }, - [9883]={ + [10465]={ [1]={ [1]={ limit={ @@ -218383,7 +229630,7 @@ return { [1]="volatility_detonation_delay_+%" } }, - [9884]={ + [10466]={ [1]={ [1]={ limit={ @@ -218408,23 +229655,7 @@ return { [1]="volatility_on_kill_%_chance" } }, - [9885]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0}% of Volatility Physical Damage Taken as Cold Damage" - } - }, - stats={ - [1]="volatility_physical_damage_taken_%_as_cold" - } - }, - [9886]={ + [10467]={ [1]={ [1]={ limit={ @@ -218449,7 +229680,7 @@ return { [1]="volatility_refresh_%_chance" } }, - [9887]={ + [10468]={ [1]={ [1]={ limit={ @@ -218474,7 +229705,7 @@ return { [1]="volatility_when_stunned_%_chance" } }, - [9888]={ + [10469]={ [1]={ [1]={ limit={ @@ -218503,7 +229734,7 @@ return { [1]="volcanic_fissure_damage_+%" } }, - [9889]={ + [10470]={ [1]={ [1]={ limit={ @@ -218528,7 +229759,7 @@ return { [1]="volcanic_fissure_number_of_additional_projectiles" } }, - [9890]={ + [10471]={ [1]={ [1]={ limit={ @@ -218557,7 +229788,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [9891]={ + [10472]={ [1]={ [1]={ limit={ @@ -218586,7 +229817,7 @@ return { [1]="voltaxic_burst_damage_+%" } }, - [9892]={ + [10473]={ [1]={ [1]={ limit={ @@ -218615,7 +229846,7 @@ return { [1]="voltaxic_burst_damage_+%_per_100ms_duration" } }, - [9893]={ + [10474]={ [1]={ [1]={ limit={ @@ -218644,7 +229875,7 @@ return { [1]="voltaxic_burst_skill_area_of_effect_+%" } }, - [9894]={ + [10475]={ [1]={ [1]={ [1]={ @@ -218664,7 +229895,7 @@ return { [1]="vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [9895]={ + [10476]={ [1]={ [1]={ limit={ @@ -218693,7 +229924,7 @@ return { [1]="vortex_area_of_effect_+%_when_cast_on_frostbolt" } }, - [9896]={ + [10477]={ [1]={ [1]={ limit={ @@ -218709,7 +229940,7 @@ return { [1]="vulnerability_no_reservation" } }, - [9897]={ + [10478]={ [1]={ [1]={ limit={ @@ -218738,7 +229969,7 @@ return { [1]="wand_damage_+%_if_crit_recently" } }, - [9898]={ + [10479]={ [1]={ [1]={ limit={ @@ -218767,7 +229998,7 @@ return { [1]="war_banner_aura_effect_+%" } }, - [9899]={ + [10480]={ [1]={ [1]={ limit={ @@ -218796,7 +230027,7 @@ return { [1]="war_banner_mana_reservation_efficiency_+%" } }, - [9900]={ + [10481]={ [1]={ [1]={ limit={ @@ -218812,7 +230043,7 @@ return { [1]="warbringer_overbreak_armour" } }, - [9901]={ + [10482]={ [1]={ [1]={ limit={ @@ -218828,7 +230059,7 @@ return { [1]="warcries_apply_fire_exposure" } }, - [9902]={ + [10483]={ [1]={ [1]={ limit={ @@ -218844,7 +230075,7 @@ return { [1]="warcries_bypass_cooldown" } }, - [9903]={ + [10484]={ [1]={ [1]={ limit={ @@ -218860,7 +230091,7 @@ return { [1]="warcries_debilitate_enemies_for_1_second" } }, - [9904]={ + [10485]={ [1]={ [1]={ limit={ @@ -218876,7 +230107,7 @@ return { [1]="warcries_have_minimum_10_power" } }, - [9905]={ + [10486]={ [1]={ [1]={ limit={ @@ -218892,7 +230123,7 @@ return { [1]="warcries_inflict_x_critical_weakness_on_enemies" } }, - [9906]={ + [10487]={ [1]={ [1]={ limit={ @@ -218908,7 +230139,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [9907]={ + [10488]={ [1]={ [1]={ limit={ @@ -218937,7 +230168,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [9908]={ + [10489]={ [1]={ [1]={ limit={ @@ -218953,7 +230184,7 @@ return { [1]="warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power" } }, - [9909]={ + [10490]={ [1]={ [1]={ [1]={ @@ -218973,7 +230204,7 @@ return { [1]="warcry_cooldown_modifier_ms" } }, - [9910]={ + [10491]={ [1]={ [1]={ limit={ @@ -219002,7 +230233,7 @@ return { [1]="warcry_damage_+%" } }, - [9911]={ + [10492]={ [1]={ [1]={ limit={ @@ -219027,7 +230258,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks" } }, - [9912]={ + [10493]={ [1]={ [1]={ limit={ @@ -219052,7 +230283,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute" } }, - [9913]={ + [10494]={ [1]={ [1]={ limit={ @@ -219081,7 +230312,7 @@ return { [1]="warcry_monster_power_+%" } }, - [9914]={ + [10495]={ [1]={ [1]={ limit={ @@ -219110,7 +230341,7 @@ return { [1]="warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds" } }, - [9915]={ + [10496]={ [1]={ [1]={ limit={ @@ -219139,7 +230370,7 @@ return { [1]="warcry_skill_area_of_effect_+%" } }, - [9916]={ + [10497]={ [1]={ [1]={ limit={ @@ -219155,7 +230386,7 @@ return { [1]="warcry_skills_cooldown_is_4_seconds" } }, - [9917]={ + [10498]={ [1]={ [1]={ limit={ @@ -219184,7 +230415,312 @@ return { [1]="warcry_speed_+%_per_25_tribute" } }, - [9918]={ + [10499]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0}% of maximum Runic Ward on Kill" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of maximum Runic Ward on Kill" + } + }, + stats={ + [1]="ward_%_gained_on_kill" + } + }, + [10500]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Recover {0}% of maximum Runic Ward on reaching Maximum Rage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lose {0}% of maximum Runic Ward on reaching Maximum Rage" + } + }, + stats={ + [1]="ward_%_to_recover_on_reaching_maximum_rage" + } + }, + [10501]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Runic Ward recovery can can Overflow maximum Runic Ward" + } + }, + stats={ + [1]="ward_can_overcap" + } + }, + [10502]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Runic Ward Regeneration Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Runic Ward Regeneration Rate" + } + }, + stats={ + [1]="ward_regeneration_rate_+%" + } + }, + [10503]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently" + } + }, + stats={ + [1]="ward_regeneration_rate_+%_if_have_crit_recently" + } + }, + [10504]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Runic Ward Regeneration Rate while Sprinting" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Runic Ward Regeneration Rate while Sprinting" + } + }, + stats={ + [1]="ward_regeneration_rate_+%_while_sprinting" + } + }, + [10505]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="1% more Runic Ward Regeneration rate per {0}% of maximum Runic Ward lost from Hits Recently, up to 100% more" + } + }, + stats={ + [1]="ward_regeneration_rate_+1%_final_per_x%_ward_lost_from_hits_up_to_100%" + } + }, + [10506]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="1% reduced Runic Ward Regeneration rate per {0} maximum Runic Ward" + } + }, + stats={ + [1]="ward_regeneration_rate_-1%_per_X_maximum_ward" + } + }, + [10507]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Runic Ward Regeneration Rate is doubled" + } + }, + stats={ + [1]="ward_regeneration_rate_is_doubled" + } + }, + [10508]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Chronomancy modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_1" + } + }, + [10509]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Soul modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_2" + } + }, + [10510]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Berserking modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_3" + } + }, + [10511]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Marksman modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_4" + } + }, + [10512]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Decay modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_5" + } + }, + [10513]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Can roll Destruction modifiers" + } + }, + stats={ + [1]="warping_rune_add_item_tag_6" + } + }, + [10514]={ [1]={ [1]={ limit={ @@ -219200,7 +230736,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [9919]={ + [10515]={ [1]={ [1]={ limit={ @@ -219229,7 +230765,7 @@ return { [1]="water_sphere_damage_+%" } }, - [9920]={ + [10516]={ [1]={ [1]={ limit={ @@ -219258,7 +230794,7 @@ return { [1]="weapon_damage_+%_per_10_str" } }, - [9921]={ + [10517]={ [1]={ [1]={ limit={ @@ -219287,7 +230823,7 @@ return { [1]="weapon_swap_speed_+%" } }, - [9922]={ + [10518]={ [1]={ [1]={ limit={ @@ -219312,7 +230848,7 @@ return { [1]="while_curse_is_25%_expired_hinder_enemy_%" } }, - [9923]={ + [10519]={ [1]={ [1]={ limit={ @@ -219328,7 +230864,7 @@ return { [1]="while_curse_is_33%_expired_malediction" } }, - [9924]={ + [10520]={ [1]={ [1]={ limit={ @@ -219357,7 +230893,7 @@ return { [1]="while_curse_is_50%_expired_curse_effect_+%" } }, - [9925]={ + [10521]={ [1]={ [1]={ limit={ @@ -219386,7 +230922,7 @@ return { [1]="while_curse_is_75%_expired_enemy_damage_taken_+%" } }, - [9926]={ + [10522]={ [1]={ [1]={ limit={ @@ -219402,7 +230938,7 @@ return { [1]="while_stationary_gain_additional_physical_damage_reduction_%" } }, - [9927]={ + [10523]={ [1]={ [1]={ [1]={ @@ -219422,7 +230958,167 @@ return { [1]="while_stationary_gain_life_regeneration_rate_per_minute_%" } }, - [9928]={ + [10524]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" + } + }, + stats={ + [1]="wind_skills_can_be_empowered_by_multiple_elements" + } + }, + [10525]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Chilled Ground" + }, + [2]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited Ground" + }, + [3]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Shocked Ground" + }, + [4]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited and Chilled Ground" + }, + [5]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Shocked and Chilled Ground" + }, + [6]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited and Shocked Ground" + }, + [7]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]="!", + [2]=0 + } + }, + text="Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Ignited, Shocked, and Chilled Ground" + } + }, + stats={ + [1]="wind_skills_count_as_empowered_by_chilled_ground", + [2]="wind_skills_count_as_empowered_by_ignited_ground", + [3]="wind_skills_count_as_empowered_by_shocked_ground" + } + }, + [10526]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT-UNUSEDWind Skills cannot deal non-Elemental Damage" + } + }, + stats={ + [1]="wind_skills_deal_no_non_elemental_damage" + } + }, + [10527]={ [1]={ [1]={ limit={ @@ -219451,7 +231147,7 @@ return { [1]="winter_brand_chill_effect_+%" } }, - [9929]={ + [10528]={ [1]={ [1]={ limit={ @@ -219480,7 +231176,7 @@ return { [1]="winter_brand_damage_+%" } }, - [9930]={ + [10529]={ [1]={ [1]={ limit={ @@ -219496,7 +231192,7 @@ return { [1]="winter_brand_max_number_of_stages_+" } }, - [9931]={ + [10530]={ [1]={ [1]={ limit={ @@ -219512,7 +231208,7 @@ return { [1]="wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [9932]={ + [10531]={ [1]={ [1]={ limit={ @@ -219541,7 +231237,7 @@ return { [1]="witch_passive_maximum_lightning_damage_+%_final" } }, - [9933]={ + [10532]={ [1]={ [1]={ limit={ @@ -219570,7 +231266,7 @@ return { [1]="witchhunter_armour_evasion_+%_final" } }, - [9934]={ + [10533]={ [1]={ [1]={ limit={ @@ -219586,7 +231282,7 @@ return { [1]="witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical" } }, - [9935]={ + [10534]={ [1]={ [1]={ limit={ @@ -219602,7 +231298,7 @@ return { [1]="witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus" } }, - [9936]={ + [10535]={ [1]={ [1]={ limit={ @@ -219618,7 +231314,7 @@ return { [1]="wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [9937]={ + [10536]={ [1]={ [1]={ limit={ @@ -219627,7 +231323,7 @@ return { [2]="#" } }, - text="Withered you Inflict expires {0}% faster" + text="{0}% increased effect of Withered on you" }, [2]={ [1]={ @@ -219640,25 +231336,16 @@ return { [2]=-1 } }, - text="Withered you Inflict expires {0}% slower" + text="{0}% reduced effect of Withered on you" } }, stats={ - [1]="wither_expire_speed_+%" + [1]="withered_effect_on_self_+%" } }, - [9938]={ + [10537]={ [1]={ [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased effect of Withered on you" - }, - [2]={ [1]={ k="negate", v=1 @@ -219666,17 +231353,17 @@ return { limit={ [1]={ [1]="#", - [2]=-1 + [2]="#" } }, - text="{0}% reduced effect of Withered on you" + text="Withered also causes enemies to deal {0}% reduced Damage" } }, stats={ - [1]="withered_effect_on_self_+%" + [1]="withered_enemies_deal_+%_damage" } }, - [9939]={ + [10538]={ [1]={ [1]={ limit={ @@ -219705,7 +231392,7 @@ return { [1]="withered_magnitude_+%" } }, - [9940]={ + [10539]={ [1]={ [1]={ limit={ @@ -219730,7 +231417,7 @@ return { [1]="withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%" } }, - [9941]={ + [10540]={ [1]={ [1]={ limit={ @@ -219755,7 +231442,7 @@ return { [1]="withered_on_hit_for_4_seconds_%_chance" } }, - [9942]={ + [10541]={ [1]={ [1]={ [1]={ @@ -219792,7 +231479,7 @@ return { [1]="wrath_mana_reservation_efficiency_-2%_per_1" } }, - [9943]={ + [10542]={ [1]={ [1]={ limit={ @@ -219821,7 +231508,7 @@ return { [1]="wrath_mana_reservation_efficiency_+%" } }, - [9944]={ + [10543]={ [1]={ [1]={ limit={ @@ -219837,7 +231524,23 @@ return { [1]="wrath_reserves_no_mana" } }, - [9945]={ + [10544]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Every 5 Rage also grants {0}% of Damage taken Recouped as Life" + } + }, + stats={ + [1]="x%_damage_taken_recouped_as_life_per_5_rage" + } + }, + [10545]={ [1]={ [1]={ limit={ @@ -219866,7 +231569,7 @@ return { [1]="x%_faster_start_of_sorcery_ward_recovery" } }, - [9946]={ + [10546]={ [1]={ [1]={ limit={ @@ -219882,7 +231585,7 @@ return { [1]="x%_of_armour_applies_to_elemental_damage_while_shapeshifted" } }, - [9947]={ + [10547]={ [1]={ [1]={ limit={ @@ -219898,7 +231601,59 @@ return { [1]="x%_of_damage_taken_while_channelling_recouped_as_life" } }, - [9948]={ + [10548]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Off-hand Hits inflict Runefather's Challenge" + } + }, + stats={ + [1]="off_hand_apply_ancients_challenge_on_hit" + } + }, + [10549]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflicts Runefather's Challenge on enemies {0} metres in front of you when raised, no more than once every 2 seconds" + } + }, + stats={ + [1]="apply_ancients_challenge_in_front_facing_radius_on_raise_shield" + } + }, + [10550]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" + } + }, + stats={ + [1]="runefathers_boast_maximum_stacks" + } + }, + [10551]={ [1]={ [1]={ limit={ @@ -219914,7 +231669,7 @@ return { [1]="you_and_allies_additional_block_%_if_have_attacked_recently" } }, - [9949]={ + [10552]={ [1]={ [1]={ limit={ @@ -219943,7 +231698,7 @@ return { [1]="you_and_allies_in_presence_accuracy_rating_+%" } }, - [9950]={ + [10553]={ [1]={ [1]={ limit={ @@ -219959,7 +231714,7 @@ return { [1]="you_and_allies_in_presence_all_damage_can_ignite" } }, - [9951]={ + [10554]={ [1]={ [1]={ limit={ @@ -219988,7 +231743,7 @@ return { [1]="you_and_allies_in_presence_attack_speed_+%" } }, - [9952]={ + [10555]={ [1]={ [1]={ limit={ @@ -220017,7 +231772,7 @@ return { [1]="you_and_allies_in_presence_cast_speed_+%" } }, - [9953]={ + [10556]={ [1]={ [1]={ limit={ @@ -220033,7 +231788,7 @@ return { [1]="you_and_allies_in_presence_chaos_damage_resistance_%" } }, - [9954]={ + [10557]={ [1]={ [1]={ limit={ @@ -220062,7 +231817,7 @@ return { [1]="you_and_allies_in_presence_cooldown_speed_+%" } }, - [9955]={ + [10558]={ [1]={ [1]={ limit={ @@ -220078,7 +231833,7 @@ return { [1]="you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame" } }, - [9956]={ + [10559]={ [1]={ [1]={ limit={ @@ -220094,7 +231849,7 @@ return { [1]="you_and_nearby_allies_armour_+_if_have_impaled_recently" } }, - [9957]={ + [10560]={ [1]={ [1]={ limit={ @@ -220123,7 +231878,7 @@ return { [1]="you_and_nearby_allies_critical_strike_chance_+%" } }, - [9958]={ + [10561]={ [1]={ [1]={ limit={ @@ -220139,7 +231894,7 @@ return { [1]="you_and_nearby_allies_critical_strike_multiplier_+" } }, - [9959]={ + [10562]={ [1]={ [1]={ [1]={ @@ -220159,7 +231914,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently" } }, - [9960]={ + [10563]={ [1]={ [1]={ [1]={ @@ -220179,7 +231934,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently" } }, - [9961]={ + [10564]={ [1]={ [1]={ [1]={ @@ -220199,7 +231954,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently" } }, - [9962]={ + [10565]={ [1]={ [1]={ limit={ @@ -220215,7 +231970,7 @@ return { [1]="you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry" } }, - [9963]={ + [10566]={ [1]={ [1]={ limit={ @@ -220231,7 +231986,7 @@ return { [1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry" } }, - [9964]={ + [10567]={ [1]={ [1]={ [1]={ @@ -220251,7 +232006,7 @@ return { [1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem" } }, - [9965]={ + [10568]={ [1]={ [1]={ limit={ @@ -220267,7 +232022,7 @@ return { [1]="you_are_cursed_with_despair" } }, - [9966]={ + [10569]={ [1]={ [1]={ limit={ @@ -220283,7 +232038,7 @@ return { [1]="you_are_cursed_with_elemental_weakness" } }, - [9967]={ + [10570]={ [1]={ [1]={ limit={ @@ -220299,7 +232054,7 @@ return { [1]="you_are_cursed_with_enfeeble" } }, - [9968]={ + [10571]={ [1]={ [1]={ limit={ @@ -220315,7 +232070,7 @@ return { [1]="you_are_cursed_with_temporal_chains" } }, - [9969]={ + [10572]={ [1]={ [1]={ limit={ @@ -220331,7 +232086,7 @@ return { [1]="you_are_cursed_with_vulnerability" } }, - [9970]={ + [10573]={ [1]={ [1]={ limit={ @@ -220347,7 +232102,7 @@ return { [1]="you_cannot_be_hindered" } }, - [9971]={ + [10574]={ [1]={ [1]={ limit={ @@ -220363,7 +232118,7 @@ return { [1]="you_cannot_have_non_animated_minions" } }, - [9972]={ + [10575]={ [1]={ [1]={ limit={ @@ -220379,7 +232134,7 @@ return { [1]="you_cannot_have_non_spectre_minions" } }, - [9973]={ + [10576]={ [1]={ [1]={ limit={ @@ -220395,7 +232150,7 @@ return { [1]="you_cannot_inflict_curses" } }, - [9974]={ + [10577]={ [1]={ [1]={ limit={ @@ -220411,7 +232166,7 @@ return { [1]="you_count_as_low_life_while_not_on_full_life" } }, - [9975]={ + [10578]={ [1]={ [1]={ limit={ @@ -220427,7 +232182,7 @@ return { [1]="you_gain_%_life_when_one_of_your_minions_is_revived" } }, - [9976]={ + [10579]={ [1]={ [1]={ limit={ @@ -220456,7 +232211,7 @@ return { [1]="your_aftershock_area_of_effect_+%" } }, - [9977]={ + [10580]={ [1]={ [1]={ limit={ @@ -220472,7 +232227,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [9978]={ + [10581]={ [1]={ [1]={ limit={ @@ -220488,7 +232243,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [9979]={ + [10582]={ [1]={ [1]={ limit={ @@ -220504,7 +232259,7 @@ return { [1]="your_auras_except_anger_are_disabled" } }, - [9980]={ + [10583]={ [1]={ [1]={ limit={ @@ -220520,7 +232275,7 @@ return { [1]="your_auras_except_clarity_are_disabled" } }, - [9981]={ + [10584]={ [1]={ [1]={ limit={ @@ -220536,7 +232291,7 @@ return { [1]="your_auras_except_determination_are_disabled" } }, - [9982]={ + [10585]={ [1]={ [1]={ limit={ @@ -220552,7 +232307,7 @@ return { [1]="your_auras_except_discipline_are_disabled" } }, - [9983]={ + [10586]={ [1]={ [1]={ limit={ @@ -220568,7 +232323,7 @@ return { [1]="your_auras_except_grace_are_disabled" } }, - [9984]={ + [10587]={ [1]={ [1]={ limit={ @@ -220584,7 +232339,7 @@ return { [1]="your_auras_except_haste_are_disabled" } }, - [9985]={ + [10588]={ [1]={ [1]={ limit={ @@ -220600,7 +232355,7 @@ return { [1]="your_auras_except_hatred_are_disabled" } }, - [9986]={ + [10589]={ [1]={ [1]={ limit={ @@ -220616,7 +232371,7 @@ return { [1]="your_auras_except_malevolence_are_disabled" } }, - [9987]={ + [10590]={ [1]={ [1]={ limit={ @@ -220632,7 +232387,7 @@ return { [1]="your_auras_except_precision_are_disabled" } }, - [9988]={ + [10591]={ [1]={ [1]={ limit={ @@ -220648,7 +232403,7 @@ return { [1]="your_auras_except_pride_are_disabled" } }, - [9989]={ + [10592]={ [1]={ [1]={ limit={ @@ -220664,7 +232419,7 @@ return { [1]="your_auras_except_purity_of_elements_are_disabled" } }, - [9990]={ + [10593]={ [1]={ [1]={ limit={ @@ -220680,7 +232435,7 @@ return { [1]="your_auras_except_purity_of_fire_are_disabled" } }, - [9991]={ + [10594]={ [1]={ [1]={ limit={ @@ -220696,7 +232451,7 @@ return { [1]="your_auras_except_purity_of_ice_are_disabled" } }, - [9992]={ + [10595]={ [1]={ [1]={ limit={ @@ -220712,7 +232467,7 @@ return { [1]="your_auras_except_purity_of_lightning_are_disabled" } }, - [9993]={ + [10596]={ [1]={ [1]={ limit={ @@ -220728,7 +232483,7 @@ return { [1]="your_auras_except_vitality_are_disabled" } }, - [9994]={ + [10597]={ [1]={ [1]={ limit={ @@ -220744,7 +232499,7 @@ return { [1]="your_auras_except_wrath_are_disabled" } }, - [9995]={ + [10598]={ [1]={ [1]={ limit={ @@ -220760,7 +232515,7 @@ return { [1]="your_auras_except_zealotry_are_disabled" } }, - [9996]={ + [10599]={ [1]={ [1]={ limit={ @@ -220789,7 +232544,7 @@ return { [1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [9997]={ + [10600]={ [1]={ [1]={ limit={ @@ -220805,7 +232560,7 @@ return { [1]="your_es_takes_%_hit_damage_from_allies_in_presence_before_them" } }, - [9998]={ + [10601]={ [1]={ [1]={ limit={ @@ -220821,7 +232576,7 @@ return { [1]="your_life_cannot_change_while_you_have_energy_shield" } }, - [9999]={ + [10602]={ [1]={ [1]={ limit={ @@ -220846,7 +232601,7 @@ return { [1]="your_mace_slam_aftershock_chance_%" } }, - [10000]={ + [10603]={ [1]={ [1]={ limit={ @@ -220862,7 +232617,7 @@ return { [1]="your_mace_strike_melee_splash_chance_%" } }, - [10001]={ + [10604]={ [1]={ [1]={ limit={ @@ -220878,7 +232633,7 @@ return { [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" } }, - [10002]={ + [10605]={ [1]={ [1]={ limit={ @@ -220894,7 +232649,7 @@ return { [1]="your_movement_skills_are_disabled" } }, - [10003]={ + [10606]={ [1]={ [1]={ [1]={ @@ -220927,7 +232682,7 @@ return { [1]="your_profane_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10004]={ + [10607]={ [1]={ [1]={ limit={ @@ -220943,7 +232698,7 @@ return { [1]="your_shield_skills_are_disabled" } }, - [10005]={ + [10608]={ [1]={ [1]={ limit={ @@ -220968,7 +232723,7 @@ return { [1]="your_slam_aftershock_chance_%" } }, - [10006]={ + [10609]={ [1]={ [1]={ limit={ @@ -220984,7 +232739,7 @@ return { [1]="your_spells_are_disabled" } }, - [10007]={ + [10610]={ [1]={ [1]={ limit={ @@ -221000,7 +232755,7 @@ return { [1]="your_travel_skills_are_disabled" } }, - [10008]={ + [10611]={ [1]={ [1]={ limit={ @@ -221016,7 +232771,39 @@ return { [1]="your_travel_skills_except_dash_are_disabled" } }, - [10009]={ + [10612]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You are Blind" + } + }, + stats={ + [1]="blind_from_sightless_conviction_unique" + } + }, + [10613]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="The Effect of Blind on you is reversed" + } + }, + stats={ + [1]="effects_from_blinded_are_inverted" + } + }, + [10614]={ [1]={ [1]={ limit={ @@ -221032,7 +232819,7 @@ return { [1]="all_damage_can_poison_while_affected_by_glorious_madness" } }, - [10010]={ + [10615]={ [1]={ [1]={ limit={ @@ -221048,7 +232835,7 @@ return { [1]="attack_minimum_added_lightning_damage_%_of_maximum_mana" } }, - [10011]={ + [10616]={ [1]={ [1]={ limit={ @@ -221064,7 +232851,7 @@ return { [1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%" } }, - [10012]={ + [10617]={ [1]={ [1]={ limit={ @@ -221080,7 +232867,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%" } }, - [10013]={ + [10618]={ [1]={ [1]={ limit={ @@ -221096,7 +232883,7 @@ return { [1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness" } }, - [10014]={ + [10619]={ [1]={ [1]={ [1]={ @@ -221116,7 +232903,7 @@ return { [1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy" } }, - [10015]={ + [10620]={ [1]={ [1]={ limit={ @@ -221132,7 +232919,7 @@ return { [1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness" } }, - [10016]={ + [10621]={ [1]={ [1]={ limit={ @@ -221148,7 +232935,7 @@ return { [1]="local_apply_extra_herald_mod_when_synthesised" } }, - [10017]={ + [10622]={ [1]={ [1]={ limit={ @@ -221164,7 +232951,7 @@ return { [1]="local_is_alternate_tree_jewel" } }, - [10018]={ + [10623]={ [1]={ [1]={ limit={ @@ -221180,7 +232967,7 @@ return { [1]="local_is_survival_jewel" } }, - [10019]={ + [10624]={ [1]={ [1]={ [1]={ @@ -221200,7 +232987,7 @@ return { [1]="max_fortification_while_affected_by_glorious_madness_+1_per_4" } }, - [10020]={ + [10625]={ [1]={ [1]={ limit={ @@ -221216,7 +233003,7 @@ return { [1]="primordial_jewel_count" } }, - [10021]={ + [10626]={ [1]={ [1]={ limit={ @@ -221232,7 +233019,7 @@ return { [1]="armour_+%_per_rage" } }, - [10022]={ + [10627]={ [1]={ [1]={ limit={ @@ -221261,7 +233048,7 @@ return { [1]="zealotry_aura_effect_+%" } }, - [10023]={ + [10628]={ [1]={ [1]={ [1]={ @@ -221298,7 +233085,7 @@ return { [1]="zealotry_mana_reservation_efficiency_-2%_per_1" } }, - [10024]={ + [10629]={ [1]={ [1]={ limit={ @@ -221327,7 +233114,7 @@ return { [1]="zealotry_mana_reservation_efficiency_+%" } }, - [10025]={ + [10630]={ [1]={ [1]={ limit={ @@ -221360,7 +233147,7 @@ return { [1]="zealotry_mana_reservation_+%" } }, - [10026]={ + [10631]={ [1]={ [1]={ limit={ @@ -221376,7 +233163,7 @@ return { [1]="zealotry_reserves_no_mana" } }, - [10027]={ + [10632]={ [1]={ [1]={ limit={ @@ -221392,7 +233179,7 @@ return { [1]="zero_chaos_resistance" } }, - [10028]={ + [10633]={ [1]={ [1]={ [1]={ @@ -221412,7 +233199,7 @@ return { [1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [10029]={ + [10634]={ [1]={ [1]={ limit={ @@ -221441,7 +233228,7 @@ return { [1]="zombie_physical_damage_+%_final" } }, - [10030]={ + [10635]={ [1]={ [1]={ limit={ @@ -221470,7 +233257,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [10031]={ + [10636]={ [1]={ [1]={ limit={ @@ -221486,7 +233273,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [10032]={ + [10637]={ [1]={ [1]={ limit={ @@ -221502,7 +233289,7 @@ return { [1]="zombie_slam_damage_+%" } }, - [10033]={ + [10638]={ [1]={ [1]={ limit={ @@ -221518,7 +233305,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [10034]={ + [10639]={ [1]={ [1]={ limit={ @@ -221534,7 +233321,7 @@ return { [1]="golems_larger_aggro_radius" } }, - [10035]={ + [10640]={ [1]={ [1]={ limit={ @@ -221550,7 +233337,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [10036]={ + [10641]={ [1]={ [1]={ limit={ @@ -221571,7 +233358,7 @@ return { [2]="local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%" } }, - [10037]={ + [10642]={ [1]={ [1]={ limit={ @@ -221600,7 +233387,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%" } }, - [10038]={ + [10643]={ [1]={ [1]={ limit={ @@ -221629,7 +233416,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%" } }, - [10039]={ + [10644]={ [1]={ [1]={ limit={ @@ -221650,7 +233437,7 @@ return { [2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage" } }, - [10040]={ + [10645]={ [1]={ [1]={ limit={ @@ -221666,7 +233453,7 @@ return { [1]="attack_maximum_added_lightning_damage_%_of_maximum_mana" } }, - [10041]={ + [10646]={ [1]={ [1]={ limit={ @@ -221682,7 +233469,7 @@ return { [1]="melee_hits_grant_rampage_stacks" } }, - [10042]={ + [10647]={ [1]={ [1]={ limit={ @@ -221698,7 +233485,87 @@ return { [1]="player_gain_rampage_stacks" } }, - [10043]={ + [10648]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can have two Companions of different types" + } + }, + stats={ + [1]="can_have_2_companions" + } + }, + [10649]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can have any number of Companions of different types" + } + }, + stats={ + [1]="can_have_unlimited_companions" + } + }, + [10650]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage over Time bypasses your Energy Shield\nWhile not on Full Life, Sacrifice {0}% of maximum Mana per Second to Recover that much Life" + } + }, + stats={ + [1]="unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es" + } + }, + [10651]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Convert All Armour to Evasion Rating" + } + }, + stats={ + [1]="converts_all_armour_to_evasion_rating" + } + }, + [10652]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="The Bodach haunts your Presence" + } + }, + stats={ + [1]="the_wendigo_manifests_every_x_seconds" + } + }, + [10653]={ [1]={ [1]={ [1]={ @@ -221718,7 +233585,7 @@ return { [1]="local_additional_vivisection_random_keystone_index" } }, - [10044]={ + [10654]={ [1]={ [1]={ [1]={ @@ -221738,7 +233605,7 @@ return { [1]="local_vivisection_random_keystone_index" } }, - [10045]={ + [10655]={ [1]={ [1]={ [1]={ @@ -221758,7 +233625,7 @@ return { [1]="local_additional_vivisection_random_keystone_index" } }, - [10046]={ + [10656]={ [1]={ [1]={ limit={ @@ -221774,7 +233641,7 @@ return { [1]="demigods_virtue" } }, - [10047]={ + [10657]={ [1]={ [1]={ limit={ @@ -221790,7 +233657,7 @@ return { [1]="keystone_2_companions" } }, - [10048]={ + [10658]={ [1]={ [1]={ limit={ @@ -221806,7 +233673,7 @@ return { [1]="keystone_acrobatics" } }, - [10049]={ + [10659]={ [1]={ [1]={ limit={ @@ -221822,7 +233689,7 @@ return { [1]="keystone_alternate_dexterity_bonus" } }, - [10050]={ + [10660]={ [1]={ [1]={ limit={ @@ -221838,7 +233705,7 @@ return { [1]="keystone_alternate_es_recovery" } }, - [10051]={ + [10661]={ [1]={ [1]={ limit={ @@ -221854,7 +233721,7 @@ return { [1]="keystone_alternate_intelligence_bonus" } }, - [10052]={ + [10662]={ [1]={ [1]={ limit={ @@ -221870,7 +233737,7 @@ return { [1]="keystone_alternate_strength_bonus" } }, - [10053]={ + [10663]={ [1]={ [1]={ limit={ @@ -221886,7 +233753,7 @@ return { [1]="keystone_ancestral_bond" } }, - [10054]={ + [10664]={ [1]={ [1]={ limit={ @@ -221902,7 +233769,7 @@ return { [1]="keystone_auto_invocation" } }, - [10055]={ + [10665]={ [1]={ [1]={ limit={ @@ -221918,7 +233785,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [10056]={ + [10666]={ [1]={ [1]={ limit={ @@ -221934,7 +233801,7 @@ return { [1]="keystone_battlemage" } }, - [10057]={ + [10667]={ [1]={ [1]={ limit={ @@ -221950,7 +233817,7 @@ return { [1]="keystone_blood_magic" } }, - [10058]={ + [10668]={ [1]={ [1]={ limit={ @@ -221966,7 +233833,7 @@ return { [1]="keystone_bulwark" } }, - [10059]={ + [10669]={ [1]={ [1]={ limit={ @@ -221982,7 +233849,7 @@ return { [1]="keystone_call_to_arms" } }, - [10060]={ + [10670]={ [1]={ [1]={ limit={ @@ -221998,7 +233865,7 @@ return { [1]="keystone_chaos_inoculation" } }, - [10061]={ + [10671]={ [1]={ [1]={ limit={ @@ -222007,14 +233874,14 @@ return { [2]="#" } }, - text="Resonance" + text="Affinity" } }, stats={ [1]="keystone_charge_cycle" } }, - [10062]={ + [10672]={ [1]={ [1]={ limit={ @@ -222030,7 +233897,7 @@ return { [1]="keystone_conduit" } }, - [10063]={ + [10673]={ [1]={ [1]={ limit={ @@ -222046,7 +233913,7 @@ return { [1]="keystone_crimson_assault" } }, - [10064]={ + [10674]={ [1]={ [1]={ limit={ @@ -222062,7 +233929,7 @@ return { [1]="keystone_crimson_dance" } }, - [10065]={ + [10675]={ [1]={ [1]={ limit={ @@ -222078,7 +233945,7 @@ return { [1]="keystone_dance_with_death" } }, - [10066]={ + [10676]={ [1]={ [1]={ limit={ @@ -222094,7 +233961,7 @@ return { [1]="keystone_divine_flesh" } }, - [10067]={ + [10677]={ [1]={ [1]={ limit={ @@ -222110,7 +233977,7 @@ return { [1]="keystone_divine_shield" } }, - [10068]={ + [10678]={ [1]={ [1]={ limit={ @@ -222126,7 +233993,7 @@ return { [1]="keystone_druidic_rage" } }, - [10069]={ + [10679]={ [1]={ [1]={ limit={ @@ -222142,7 +234009,7 @@ return { [1]="keystone_eldritch_battery" } }, - [10070]={ + [10680]={ [1]={ [1]={ limit={ @@ -222158,7 +234025,7 @@ return { [1]="keystone_elemental_equilibrium" } }, - [10071]={ + [10681]={ [1]={ [1]={ limit={ @@ -222174,7 +234041,7 @@ return { [1]="keystone_elemental_overload" } }, - [10072]={ + [10682]={ [1]={ [1]={ limit={ @@ -222190,7 +234057,7 @@ return { [1]="keystone_emperors_heart" } }, - [10073]={ + [10683]={ [1]={ [1]={ limit={ @@ -222206,7 +234073,7 @@ return { [1]="keystone_eternal_youth" } }, - [10074]={ + [10684]={ [1]={ [1]={ limit={ @@ -222222,7 +234089,7 @@ return { [1]="keystone_everlasting_sacrifice" } }, - [10075]={ + [10685]={ [1]={ [1]={ limit={ @@ -222238,7 +234105,7 @@ return { [1]="keystone_fire_spells_become_chaos_spells" } }, - [10076]={ + [10686]={ [1]={ [1]={ limit={ @@ -222254,7 +234121,7 @@ return { [1]="keystone_giants_blood" } }, - [10077]={ + [10687]={ [1]={ [1]={ limit={ @@ -222270,7 +234137,7 @@ return { [1]="keystone_glancing_blows" } }, - [10078]={ + [10688]={ [1]={ [1]={ limit={ @@ -222286,7 +234153,7 @@ return { [1]="keystone_heartstopper" } }, - [10079]={ + [10689]={ [1]={ [1]={ limit={ @@ -222302,7 +234169,7 @@ return { [1]="keystone_hex_master" } }, - [10080]={ + [10690]={ [1]={ [1]={ limit={ @@ -222318,7 +234185,7 @@ return { [1]="keystone_hollow_palm_technique" } }, - [10081]={ + [10691]={ [1]={ [1]={ limit={ @@ -222334,7 +234201,7 @@ return { [1]="keystone_impale" } }, - [10082]={ + [10692]={ [1]={ [1]={ limit={ @@ -222350,7 +234217,7 @@ return { [1]="keystone_iron_grip" } }, - [10083]={ + [10693]={ [1]={ [1]={ limit={ @@ -222366,7 +234233,7 @@ return { [1]="keystone_iron_reflexes" } }, - [10084]={ + [10694]={ [1]={ [1]={ limit={ @@ -222382,7 +234249,7 @@ return { [1]="keystone_iron_will" } }, - [10085]={ + [10695]={ [1]={ [1]={ limit={ @@ -222398,7 +234265,7 @@ return { [1]="keystone_lord_of_the_wilds" } }, - [10086]={ + [10696]={ [1]={ [1]={ limit={ @@ -222414,7 +234281,7 @@ return { [1]="keystone_mana_shield" } }, - [10087]={ + [10697]={ [1]={ [1]={ limit={ @@ -222430,7 +234297,7 @@ return { [1]="keystone_minion_instability" } }, - [10088]={ + [10698]={ [1]={ [1]={ limit={ @@ -222446,7 +234313,7 @@ return { [1]="keystone_oasis" } }, - [10089]={ + [10699]={ [1]={ [1]={ limit={ @@ -222462,7 +234329,7 @@ return { [1]="keystone_pain_attunement" } }, - [10090]={ + [10700]={ [1]={ [1]={ limit={ @@ -222478,7 +234345,7 @@ return { [1]="keystone_point_blank" } }, - [10091]={ + [10701]={ [1]={ [1]={ limit={ @@ -222494,7 +234361,7 @@ return { [1]="keystone_precise_technique" } }, - [10092]={ + [10702]={ [1]={ [1]={ limit={ @@ -222510,7 +234377,7 @@ return { [1]="keystone_quiet_might" } }, - [10093]={ + [10703]={ [1]={ [1]={ limit={ @@ -222526,7 +234393,7 @@ return { [1]="keystone_runebinder" } }, - [10094]={ + [10704]={ [1]={ [1]={ limit={ @@ -222542,7 +234409,7 @@ return { [1]="keystone_sacred_bastion" } }, - [10095]={ + [10705]={ [1]={ [1]={ limit={ @@ -222558,7 +234425,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [10096]={ + [10706]={ [1]={ [1]={ limit={ @@ -222574,7 +234441,7 @@ return { [1]="keystone_unwavering_stance" } }, - [10097]={ + [10707]={ [1]={ [1]={ limit={ @@ -222590,7 +234457,7 @@ return { [1]="keystone_vaal_pact" } }, - [10098]={ + [10708]={ [1]={ [1]={ limit={ @@ -222606,7 +234473,7 @@ return { [1]="keystone_versatile_combatant" } }, - [10099]={ + [10709]={ [1]={ [1]={ limit={ @@ -222622,7 +234489,7 @@ return { [1]="keystone_wildsurge_incantation" } }, - [10100]={ + [10710]={ [1]={ [1]={ limit={ @@ -222638,7 +234505,7 @@ return { [1]="keystone_zealots_oath" } }, - [10101]={ + [10711]={ [1]={ [1]={ limit={ @@ -222654,7 +234521,7 @@ return { [1]="player_far_shot" } }, - [10102]={ + [10712]={ [1]={ [1]={ limit={ @@ -222670,7 +234537,7 @@ return { [1]="resolute_technique" } }, - [10103]={ + [10713]={ [1]={ [1]={ limit={ @@ -222686,7 +234553,7 @@ return { [1]="summoned_skeletons_have_avatar_of_fire" } }, - [10104]={ + [10714]={ [1]={ [1]={ limit={ @@ -222702,7 +234569,7 @@ return { [1]="attacks_use_life_in_place_of_mana" } }, - [10105]={ + [10715]={ [1]={ [1]={ limit={ @@ -222718,7 +234585,7 @@ return { [1]="gain_crimson_dance_if_have_dealt_critical_strike_recently" } }, - [10106]={ + [10716]={ [1]={ [1]={ limit={ @@ -222734,7 +234601,7 @@ return { [1]="gain_crimson_dance_while_you_have_cat_stealth" } }, - [10107]={ + [10717]={ [1]={ [1]={ limit={ @@ -222750,7 +234617,7 @@ return { [1]="gain_iron_reflexes_while_at_maximum_frenzy_charges" } }, - [10108]={ + [10718]={ [1]={ [1]={ limit={ @@ -222766,7 +234633,7 @@ return { [1]="gain_mind_over_matter_while_at_maximum_power_charges" } }, - [10109]={ + [10719]={ [1]={ [1]={ limit={ @@ -222782,7 +234649,7 @@ return { [1]="avatar_of_fire_rotation_active" } }, - [10110]={ + [10720]={ [1]={ [1]={ limit={ @@ -222798,7 +234665,7 @@ return { [1]="elemental_overload_rotation_active" } }, - [10111]={ + [10721]={ [1]={ [1]={ limit={ @@ -222814,7 +234681,7 @@ return { [1]="gain_iron_reflexes_while_stationary" } }, - [10112]={ + [10722]={ [1]={ [1]={ limit={ @@ -222830,7 +234697,7 @@ return { [1]="gain_resolute_technique_while_do_not_have_elemental_overload" } }, - [10113]={ + [10723]={ [1]={ [1]={ limit={ @@ -222846,7 +234713,7 @@ return { [1]="iron_reflexes_rotation_active" } }, - [10114]={ + [10724]={ [1]={ [1]={ limit={ @@ -222862,7 +234729,7 @@ return { [1]="trap_throw_skills_have_blood_magic" } }, - [10115]={ + [10725]={ [1]={ [1]={ limit={ @@ -222891,7 +234758,7 @@ return { [1]="physical_damage_+%_while_you_have_resolute_technique" } }, - [10116]={ + [10726]={ [1]={ [1]={ limit={ @@ -222920,7 +234787,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_avatar_of_fire" } }, - [10117]={ + [10727]={ [1]={ [1]={ limit={ @@ -222936,7 +234803,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire" } }, - [10118]={ + [10728]={ [1]={ [1]={ limit={ @@ -222952,7 +234819,7 @@ return { [1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes" } }, - [10119]={ + [10729]={ [1]={ [1]={ limit={ @@ -222968,7 +234835,7 @@ return { [1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire" } }, - [10120]={ + [10730]={ [1]={ [1]={ limit={ @@ -222984,7 +234851,7 @@ return { [1]="armour_while_you_do_not_have_avatar_of_fire" } }, - [10121]={ + [10731]={ [1]={ [1]={ limit={ @@ -223013,7 +234880,7 @@ return { [1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes" } }, - [10122]={ + [10732]={ [1]={ [1]={ limit={ @@ -223029,7 +234896,7 @@ return { [1]="gain_player_far_shot_while_do_not_have_iron_reflexes" } }, - [10123]={ + [10733]={ [1]={ [1]={ limit={ @@ -223045,7 +234912,7 @@ return { [1]="blood_footprints_from_item" } }, - [10124]={ + [10734]={ [1]={ [1]={ limit={ @@ -223061,7 +234928,7 @@ return { [1]="celestial_footprints_from_item" } }, - [10125]={ + [10735]={ [1]={ [1]={ limit={ @@ -223077,7 +234944,23 @@ return { [1]="demigod_footprints_from_item" } }, - [10126]={ + [10736]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Divine Flight" + } + }, + stats={ + [1]="enable_unfettered_authority_roll_variation" + } + }, + [10737]={ [1]={ [1]={ limit={ @@ -223093,7 +234976,7 @@ return { [1]="extra_gore" } }, - [10127]={ + [10738]={ [1]={ [1]={ limit={ @@ -223109,7 +234992,23 @@ return { [1]="goat_footprints_from_item" } }, - [10128]={ + [10739]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Raven-Touched" + } + }, + stats={ + [1]="local_item_can_be_instilled" + } + }, + [10740]={ [1]={ [1]={ limit={ @@ -223127,10377 +235026,11005 @@ return { }, ["%_attack_damage_per_glory_consumed_for_6_seconds_up_to_100"]=1, ["%_chance_for_crossbow_reload_to_be_instant"]=2, - ["%_chance_to_blind_on_critical_strike"]=3848, - ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=3945, - ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3389, - ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3655, - ["%_chance_to_deal_150%_area_damage_+%_final"]=8859, - ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=8860, - ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3200, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3199, - ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3653, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1820, - ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3639, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1819, - ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=8861, + ["%_chance_to_apply_hounded_by_wisps_on_hit"]=3990, + ["%_chance_to_blind_on_critical_strike"]=3945, + ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4046, + ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3493, + ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3752, + ["%_chance_to_deal_150%_area_damage_+%_final"]=9402, + ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9403, + ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3304, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3303, + ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3750, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1893, + ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3736, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1892, + ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9404, ["%_maximum_life_as_focus"]=3, - ["%_number_of_raging_spirits_allowed"]=8862, + ["%_number_of_raging_spirits_allowed"]=9405, ["%_of_life_regeneration_applies_to_totems"]=4, - ["%_physical_damage_bypasses_energy_shield"]=5, + ["%_of_physical_hit_damage_you_deal_causes_additional_blood_loss"]=9406, + ["%_physical_damage_bypasses_energy_shield"]=1478, + ["+%_faster_start_of_energy_shield_recharge_per_X_maximum_ward"]=5, ["+1_max_charged_attack_stages"]=6, ["+1_spirit_per_X_energy_shield_on_body_armour"]=7, ["+1_spirit_per_X_evasion_rating_on_body_armour"]=8, - ["X_accuracy_per_2_intelligence"]=1713, - ["X_armour_if_you_have_blocked_recently"]=4019, - ["X_armour_per_active_totem"]=4020, - ["X_armour_per_stackable_unique_jewel"]=3736, - ["X_life_per_4_dexterity"]=1714, - ["X_mana_per_4_strength"]=1715, - ["X_mana_per_stackable_unique_jewel"]=3735, - ["X_to_armour_per_2_strength"]=4021, - ["absolution_cast_speed_+%"]=4024, - ["absolution_duration_+%"]=4025, - ["absolution_minion_area_of_effect_+%"]=4026, - ["abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%"]=8617, - ["abyssal_cry_damage_+%"]=3320, - ["abyssal_cry_duration_+%"]=3509, - ["abyssal_wasting_cold_resistance_%"]=4027, - ["abyssal_wasting_effect_+%"]=4028, - ["abyssal_wasting_fire_resistance_%"]=4029, - ["abyssal_wasting_infinite_duration"]=4030, - ["abyssal_wasting_instant_life_leech_%"]=4031, - ["abyssal_wasting_instant_mana_leech_%"]=4032, - ["abyssal_wasting_lightning_resistance_%"]=4033, - ["abyssal_wasting_on_hit"]=4034, - ["accuracy_rating"]=886, - ["accuracy_rating_+%"]=1292, - ["accuracy_rating_+%_during_onslaught"]=4052, - ["accuracy_rating_+%_equal_to_%_attack_critical_strike_chance"]=4035, - ["accuracy_rating_+%_final_at_max_distance_scaled"]=4036, - ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4053, - ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4054, - ["accuracy_rating_+%_per_10_tribute"]=4037, - ["accuracy_rating_+%_per_25_tribute"]=4038, - ["accuracy_rating_+%_per_frenzy_charge"]=1734, - ["accuracy_rating_+%_vs_abyssal_wasting_afflicted"]=4039, - ["accuracy_rating_+%_vs_enemies_in_close_range"]=4040, - ["accuracy_rating_+%_vs_rare_or_unique_enemy"]=4041, - ["accuracy_rating_+%_vs_unique_enemies"]=4042, - ["accuracy_rating_+%_when_on_low_life"]=2280, - ["accuracy_rating_+%_while_moving"]=4043, - ["accuracy_rating_+%_while_shapeshifted"]=4044, - ["accuracy_rating_+%_while_surrounded"]=4045, - ["accuracy_rating_+_per_evasion_rating_on_helmet"]=4046, - ["accuracy_rating_+_per_frenzy_charge"]=4050, - ["accuracy_rating_+_per_green_socket_on_bow"]=4051, - ["accuracy_rating_against_marked_enemies_+%"]=4047, - ["accuracy_rating_is_doubled"]=4048, - ["accuracy_rating_per_level"]=4049, - ["accuracy_rating_vs_bleeding_enemies"]=4055, - ["accuracy_rating_while_at_maximum_frenzy_charges"]=4056, - ["accuracy_rating_while_dual_wielding_+%"]=1293, - ["action_speed_-%"]=4058, - ["action_speed_cannot_be_reduced_below_base"]=2832, - ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4057, - ["active_block_maximum_distance_+%"]=4059, - ["active_skill_additional_projectiles_description_mode"]=1501, - ["active_skill_attack_speed_+%_final"]=1271, - ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3379, - ["active_skill_generates_mp_%_glory_per_armour_break"]=4060, - ["active_skill_generates_mp_%_glory_per_attack_hit"]=4061, - ["active_skill_generates_mp_%_glory_per_heavy_stun"]=4062, - ["active_skill_generates_mp_%_glory_per_ignite"]=4063, - ["active_skill_impale_magnitude_+%_final"]=4064, - ["active_skill_level_+"]=1579, - ["active_skill_life_gained_on_cull"]=4065, - ["active_skill_mana_gained_on_cull"]=4066, - ["active_skill_poison_effect_+%_final"]=4067, - ["adaptation_duration_+%"]=1382, - ["add_%_base_armour_on_equipment_to_stun_threshold"]=4068, - ["add_1_stage_to_banners_on_melee_hit_up_to_5_per_second"]=4517, - ["add_X_guard_on_trigger_per_100_ms_total_use_time_of_triggered_skill_up_to_maximum_mana"]=4069, - ["add_X_ms_to_energy_shield_recharge_delay_per_combo_spent"]=4070, - ["add_endurance_charge_on_critical_strike"]=1524, - ["add_endurance_charge_on_enemy_critical_strike"]=1541, - ["add_endurance_charge_on_gain_power_charge_%"]=3206, - ["add_endurance_charge_on_kill"]=2506, - ["add_endurance_charge_on_skill_hit_%"]=1538, - ["add_endurance_charge_on_status_ailment"]=1542, - ["add_frenzy_charge_every_50_rampage_stacks"]=3958, - ["add_frenzy_charge_on_critical_strike"]=1534, - ["add_frenzy_charge_on_enemy_block"]=1814, - ["add_frenzy_charge_on_kill_%_chance"]=2319, - ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4071, - ["add_frenzy_charge_on_skill_hit_%"]=1539, - ["add_frenzy_charge_when_hit_%"]=4072, - ["add_power_charge_on_critical_strike"]=1535, - ["add_power_charge_on_critical_strike_%"]=1536, - ["add_power_charge_on_hit_%"]=3201, - ["add_power_charge_on_hit_while_poisoned_%"]=4073, - ["add_power_charge_on_kill_%_chance"]=2321, - ["add_power_charge_on_melee_critical_strike"]=1537, - ["add_power_charge_on_minion_death"]=1742, - ["add_power_charge_on_skill_hit_%"]=1540, - ["add_power_charge_when_interrupted_while_casting"]=1838, - ["add_power_charge_when_kill_shocked_enemy"]=1831, - ["add_x_grasping_vines_on_hit"]=4074, - ["added_cooldown_count_if_not_instant_and_you_have_at_least_100_tribute"]=4075, - ["added_thorns_cold_base_damage_%_of_maximum_mana"]=4076, - ["additional_all_attributes"]=970, - ["additional_attack_block_%_if_used_shield_skill_recently"]=4077, - ["additional_attack_block_%_per_endurance_charge"]=4078, - ["additional_attack_block_%_per_frenzy_charge"]=4079, - ["additional_attack_block_%_per_power_charge"]=4080, - ["additional_attack_block_%_per_summoned_skeleton"]=4081, - ["additional_ballista_totems_allowed"]=4082, - ["additional_base_critical_strike_chance"]=1315, - ["additional_beam_only_chains"]=4083, - ["additional_block_%"]=2154, - ["additional_block_%_against_frontal_attacks"]=4085, - ["additional_block_%_if_you_have_crit_recently"]=4086, - ["additional_block_%_per_endurance_charge"]=4087, - ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4088, - ["additional_block_%_while_not_cursed"]=4089, - ["additional_block_%_while_on_consecrated_ground"]=4090, - ["additional_block_%_while_you_have_at_least_10_crab_charges"]=3934, - ["additional_block_%_while_you_have_at_least_5_crab_charges"]=3933, - ["additional_block_%_with_5_or_more_nearby_enemies"]=4091, - ["additional_block_chance_%_for_1_second_every_5_seconds"]=2155, - ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3645, - ["additional_block_chance_%_when_in_off_hand"]=3762, - ["additional_block_chance_%_while_holding_focus"]=4084, - ["additional_block_chance_against_projectiles_%"]=2158, - ["additional_chance_to_freeze_chilled_enemies_%"]=1721, - ["additional_chaos_resistance_against_damage_over_time_%"]=5228, - ["additional_combo_gain_chance_%"]=4092, - ["additional_combo_gain_on_hit"]=4093, - ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4094, - ["additional_critical_strike_chance_per_power_charge_permyriad"]=4095, - ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4096, - ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=3944, - ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4097, - ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3077, - ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4098, - ["additional_deflection_rating"]=4099, - ["additional_dexterity"]=972, - ["additional_dexterity_and_intelligence"]=1101, - ["additional_dexterity_per_allocated_mastery"]=4100, - ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3646, - ["additional_infusion_gain_chance_%"]=4101, - ["additional_intelligence"]=973, - ["additional_intelligence_per_allocated_mastery"]=4102, - ["additional_max_mirage_archers"]=3996, - ["additional_max_number_of_dominated_magic_monsters"]=4103, - ["additional_max_number_of_dominated_rare_monsters"]=4104, - ["additional_maximum_all_elemental_resistances_%"]=976, - ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4109, - ["additional_maximum_all_elemental_resistances_%_if_at_least_5_red_green_blue_supports_socketed"]=4105, - ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4106, - ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4107, - ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4108, - ["additional_maximum_all_resistances_%"]=1444, - ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4112, - ["additional_maximum_all_resistances_%_if_you_have_at_least_100_tribute"]=4110, - ["additional_maximum_all_resistances_%_while_poisoned"]=4111, - ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4113, - ["additional_maximum_block_%"]=1683, - ["additional_maximum_infusion_stacks"]=8348, - ["additional_number_of_brands_to_create"]=4114, - ["additional_off_hand_critical_strike_chance_permyriad"]=4115, - ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4116, - ["additional_physical_damage_reduction_%_during_flask_effect"]=3838, - ["additional_physical_damage_reduction_%_during_focus"]=4118, - ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4119, - ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4120, - ["additional_physical_damage_reduction_%_per_keystone"]=4121, - ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4122, - ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4123, - ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4124, - ["additional_physical_damage_reduction_%_when_on_low_life"]=1930, - ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4125, - ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4126, - ["additional_physical_damage_reduction_%_while_bleeding"]=4127, - ["additional_physical_damage_reduction_%_while_channelling"]=4128, - ["additional_physical_damage_reduction_%_while_frozen"]=4129, - ["additional_physical_damage_reduction_%_while_moving"]=4130, - ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4117, - ["additional_scroll_of_wisdom_drop_chance_%"]=2289, - ["additional_staff_block_%"]=1083, - ["additional_strength"]=971, - ["additional_strength_and_dexterity"]=1099, - ["additional_strength_and_intelligence"]=1100, - ["additional_strength_per_allocated_mastery"]=4131, - ["additional_thorns_critical_strike_chance_permyriad_per_50_tribute"]=4132, - ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4133, - ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4134, - ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4135, - ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4136, - ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4137, - ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=4138, - ["additive_modifiers_to_life_regeneration_also_apply_to_mana_regeneration_rate"]=4139, - ["additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate"]=4140, - ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3346, - ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2372, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2374, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2373, - ["additive_spell_damage_modifiers_apply_to_attack_damage_while_shapeshifted"]=4141, - ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2375, - ["aftershock_area_of_effect_+%"]=4142, - ["aggravate_bleeding_older_than_ms_on_hit"]=4143, - ["aggravate_bleeding_on_attack_crit_chance_%"]=4144, - ["aggravate_bleeding_on_attack_knockback_chance_%"]=4146, - ["aggravate_bleeding_on_enemies_when_they_enter_your_presence"]=4147, - ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4148, - ["aggravate_bleeding_when_inflicted_vs_cursed_enemy"]=4149, - ["aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%"]=4150, - ["aggravate_bleeding_when_inflicted_vs_pinned_enemy"]=4151, - ["aggravate_inflicted_bleeding"]=4152, - ["agony_crawler_damage_+%"]=4154, - ["ailment_bearer_always_freeze_shock_ignite"]=4155, - ["ailment_bearer_elemental_damage_+%_final"]=4156, - ["ailment_chance_+%"]=4160, - ["ailment_chance_+%_vs_abyssal_wasting_afflicted"]=4157, - ["ailment_chance_+%_vs_exposed"]=4158, - ["ailment_chance_+%_vs_rare_or_unique_enemy"]=4159, - ["ailment_duration_+%_vs_beasts"]=4161, - ["ailment_duration_+%_vs_cursed_enemy"]=4162, - ["ailment_duration_+%_vs_exposed"]=4163, - ["ailment_effect_+%"]=4164, - ["ailment_magnitude_+%_vs_marked_enemies"]=4165, - ["ailment_threshold_+"]=4169, - ["ailment_threshold_+%"]=4171, - ["ailment_threshold_+_from_%_maximum_energy_shield"]=4170, - ["ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour"]=4166, - ["ailment_threshold_+_per_dexterity"]=4167, - ["ailment_threshold_increased_by_uncapped_chaos_resistance"]=4168, - ["alchemists_mark_curse_effect_+%"]=4172, - ["all_attacks_count_as_exerted"]=4173, - ["all_attributes_+%"]=1103, - ["all_attributes_+%_per_assigned_keystone"]=2729, - ["all_damage_can_chill"]=2536, - ["all_damage_can_electrocute"]=4174, - ["all_damage_can_freeze"]=4175, - ["all_damage_can_ignite"]=4176, - ["all_damage_can_poison"]=4177, - ["all_damage_can_poison_while_affected_by_glorious_madness"]=10009, - ["all_damage_can_shock"]=4178, - ["all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame"]=4179, - ["all_damage_taken_%_as_chaos_damage"]=4180, - ["all_damage_taken_can_ignite"]=4181, - ["all_damage_taken_can_sap"]=4182, - ["all_damage_taken_can_scorch"]=4183, - ["all_damage_taken_chills_you_while_bleeding"]=4184, - ["all_damage_taken_chills_you_while_poisoned"]=4185, - ["all_damage_to_bleeding_enemies_contributes_to_chill"]=4186, - ["all_damage_to_poisoned_enemies_contributes_to_chill"]=4187, - ["all_exposure_on_hit_magnitude"]=4188, - ["all_projectile_damage_can_pin"]=4189, - ["all_resistances_%_per_equipped_corrupted_item"]=2745, - ["all_skill_gem_level_+"]=4190, - ["all_skill_gem_quality_+"]=4191, - ["allies_in_presence_accuracy_rating"]=914, - ["allies_in_presence_attack_maximum_added_chaos_damage"]=910, - ["allies_in_presence_attack_maximum_added_cold_damage"]=908, - ["allies_in_presence_attack_maximum_added_fire_damage"]=907, - ["allies_in_presence_attack_maximum_added_lightning_damage"]=909, - ["allies_in_presence_attack_maximum_added_physical_damage"]=906, - ["allies_in_presence_attack_minimum_added_chaos_damage"]=910, - ["allies_in_presence_attack_minimum_added_cold_damage"]=908, - ["allies_in_presence_attack_minimum_added_fire_damage"]=907, - ["allies_in_presence_attack_minimum_added_lightning_damage"]=909, - ["allies_in_presence_attack_minimum_added_physical_damage"]=906, - ["allies_in_presence_attack_speed_+%"]=917, - ["allies_in_presence_cast_speed_+%"]=918, - ["allies_in_presence_chaos_damage_+%"]=913, - ["allies_in_presence_critical_strike_chance_+%"]=915, - ["allies_in_presence_critical_strike_multiplier_+"]=916, - ["allies_in_presence_damage_%_to_gain_as_fire"]=4192, - ["allies_in_presence_damage_+%"]=905, - ["allies_in_presence_elemental_damage_+%"]=912, - ["allies_in_presence_glory_generation_+%"]=4193, - ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2931, - ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6120, - ["allies_in_presence_have_unholy_might_while_you_not_on_low_mana"]=2693, - ["allies_in_presence_life_regeneration_rate_per_minute"]=920, - ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%"]=921, - ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%"]=922, - ["allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=4194, - ["allies_in_presence_physical_damage_+%"]=911, - ["allies_in_presence_regenerate_X_rage_per_minute_if_you_gained_rage_recently"]=4195, - ["allies_in_presence_resist_all_elements_%"]=919, - ["allow_2_active_banners"]=2668, - ["allow_hellscaping_unique_items"]=4196, - ["allow_multiple_offerings"]=4197, - ["always_crit_shocked_enemies"]=3714, - ["always_freeze"]=1013, - ["always_frostburn_while_affected_by_hatred"]=4198, - ["always_ignite"]=1559, - ["always_ignite_while_burning"]=4199, - ["always_pierce"]=4200, - ["always_pierce_burning_enemies"]=4201, - ["always_sap_while_affected_by_wrath"]=4202, - ["always_scorch_while_affected_by_anger"]=4203, - ["always_shock"]=1560, - ["always_stun"]=1561, - ["always_stun_enemies_that_are_on_full_life"]=2956, - ["ambush_buff_critical_strike_multiplier_+"]=4204, - ["ambush_cooldown_speed_+%"]=4205, - ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3049, - ["ancestor_totem_buff_effect_+%"]=4206, - ["ancestor_totem_buff_linger_time_ms"]=4207, - ["ancestor_totem_parent_activation_range_+%"]=4208, - ["ancestral_boosted_area_of_effect_+%"]=4209, - ["ancestral_boosted_attack_damage_+%"]=4210, - ["ancestral_boosted_attack_hit_damage_stun_multiplier_+%"]=4211, - ["ancestral_cry_attacks_exerted_+"]=4212, - ["ancestral_cry_exerted_attack_damage_+%"]=4213, - ["ancestral_cry_minimum_power"]=4214, - ["ancestral_slam_every_other_slam"]=4215, - ["ancestral_slam_strike_every_other_strike_or_slam_while_shapeshifted"]=4216, - ["anger_aura_effect_+%"]=2978, - ["anger_mana_reservation_+%"]=3033, - ["anger_mana_reservation_efficiency_+%"]=4218, - ["anger_mana_reservation_efficiency_-2%_per_1"]=4217, - ["anger_reserves_no_mana"]=4219, - ["animate_guardian_damage_+%"]=3301, - ["animate_guardian_damage_+%_per_animated_weapon"]=4220, - ["animate_guardian_elemental_resistances_%"]=3573, - ["animate_weapon_can_animate_bows"]=2803, - ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2886, - ["animate_weapon_can_animate_wands"]=2804, - ["animate_weapon_chance_to_create_additional_copy_%"]=3578, - ["animate_weapon_damage_+%"]=3223, - ["animate_weapon_duration_+%"]=2476, - ["animate_weapon_number_of_additional_copies"]=2477, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4221, - ["animated_guardian_damage_taken_+%_final"]=4222, - ["animated_minions_melee_splash"]=4223, - ["aoe_+%_per_second_while_stationary_up_to_50"]=4224, - ["apply_X_armour_break_on_hit"]=4225, - ["apply_X_incision_on_thorns_hit"]=4226, - ["apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells"]=4227, - ["apply_X_stacks_of_critical_weakness_on_hit"]=4228, - ["apply_X_stacks_of_critical_weakness_on_parry"]=4229, - ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4230, - ["apply_covered_in_ash_to_attacker_when_hit_%"]=4231, - ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4232, - ["apply_poison_on_hit_vs_bleeding_enemies_%"]=2910, - ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4233, - ["arc_and_crackling_lance_base_cost_+%"]=4234, - ["arc_damage_+%"]=3256, - ["arc_damage_+%_per_chain"]=4235, - ["arc_num_of_additional_projectiles_in_chain"]=3540, - ["arc_shock_chance_%"]=3553, - ["arcane_cloak_consume_%_of_mana"]=4236, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4237, - ["arcane_surge_effect_+1%_per_X_maximum_mana"]=4238, - ["arcane_surge_effect_on_self_+%"]=2915, - ["arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%"]=2916, - ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=2914, - ["arcane_surge_effect_on_self_+%_while_affected_by_clarity"]=4239, - ["arcane_surge_mana_regen_modifier_on_you_applies_to_life_regen_instead"]=4240, - ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4241, - ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4242, - ["arcanist_brand_cast_speed_+%"]=4243, - ["arcanist_brand_unnerve_on_hit"]=4244, - ["archon_delay_expires_x%_faster"]=4245, - ["archon_duration_+%"]=4246, - ["archon_effect_on_you_+%"]=4247, - ["archon_grants_all_elemental_resistance_+%"]=4248, - ["archon_grants_base_critical_strike_multiplier_+"]=4249, - ["archon_grants_critical_strike_chance_+%"]=4250, - ["archon_grants_movement_speed_+%"]=4251, - ["arctic_armour_buff_effect_+%"]=3604, - ["arctic_armour_chill_when_hit_duration"]=4252, - ["arctic_armour_mana_reservation_+%"]=3611, - ["arctic_armour_mana_reservation_efficiency_+%"]=4254, - ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4253, - ["arctic_armour_maximum_added_cold_damage_per_stack"]=4255, - ["arctic_armour_minimum_added_cold_damage_per_stack"]=4255, - ["arctic_armour_no_reservation"]=4256, - ["arctic_breath_chilling_area_movement_velocity_+%"]=4257, - ["arctic_breath_damage_+%"]=3274, - ["arctic_breath_duration_+%"]=3520, - ["arctic_breath_radius_+%"]=3411, - ["area_damage_+%"]=1723, - ["area_damage_+%_per_10_devotion"]=4258, - ["area_damage_+%_per_12_strength"]=4259, - ["area_damage_taken_from_hits_+%"]=1913, - ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4261, - ["area_of_effect_+%_if_below_100_intelligence"]=4260, - ["area_of_effect_+%_if_culled_recently"]=4262, - ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4263, - ["area_of_effect_+%_if_have_crit_recently"]=4264, - ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4265, - ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4266, - ["area_of_effect_+%_if_you_have_blocked_recently"]=4267, - ["area_of_effect_+%_per_20_int"]=2236, - ["area_of_effect_+%_per_25_rampage_stacks"]=3957, - ["area_of_effect_+%_per_50_strength"]=4268, - ["area_of_effect_+%_per_active_herald_of_light_minion"]=4269, - ["area_of_effect_+%_per_endurance_charge"]=4270, - ["area_of_effect_+%_per_enemy_killed_recently"]=4271, - ["area_of_effect_+%_while_fortified"]=4272, - ["area_of_effect_+%_while_totem_active"]=4273, - ["area_of_effect_+%_while_wielding_bow"]=4274, - ["area_of_effect_+%_while_wielding_staff"]=4275, - ["area_of_effect_+%_while_you_do_not_have_convergence"]=4018, - ["area_of_effect_+%_while_you_have_arcane_surge"]=4276, - ["area_of_effect_+%_with_500_or_more_strength"]=4277, - ["area_of_effect_+%_with_bow_skills"]=4278, - ["area_of_effect_+%_with_herald_skills"]=4279, - ["area_skill_accuracy_rating_+%"]=4280, - ["area_skill_knockback_chance_%"]=4281, - ["armageddon_brand_attached_target_fire_penetration_%"]=4282, - ["armageddon_brand_damage_+%"]=4283, - ["armageddon_brand_repeat_frequency_+%"]=4284, - ["armour_%_also_applies_to_chaos_damage_while_at_full_es"]=4285, - ["armour_%_applies_to_fire_cold_lightning_damage"]=987, - ["armour_%_applies_to_fire_cold_lightning_damage_if_you_have_at_least_100_tribute"]=4286, - ["armour_%_to_gain_as_stun_threshold"]=4287, - ["armour_+%_final_vs_hits_per_1%_current_energy_shield"]=4323, - ["armour_+%_if_consumed_endurance_charge_recently"]=4288, - ["armour_+%_if_enemy_not_killed_recently"]=4324, - ["armour_+%_if_have_been_hit_recently"]=4289, - ["armour_+%_if_hit_enemy_with_melee_attack_recently"]=4290, - ["armour_+%_if_not_dodge_rolled_recently"]=4291, - ["armour_+%_if_you_havent_been_hit_recently"]=4292, - ["armour_+%_per_50_str"]=4325, - ["armour_+%_per_defiance"]=3854, - ["armour_+%_per_rage"]=10021, - ["armour_+%_per_red_socket_on_main_hand_weapon"]=4327, - ["armour_+%_per_second_while_stationary_up_to_100"]=4328, - ["armour_+%_while_bleeding"]=4329, - ["armour_+%_while_ignited"]=4293, - ["armour_+%_while_no_energy_shield"]=2416, - ["armour_+%_while_shapeshifted"]=4294, - ["armour_+%_while_stationary"]=4330, - ["armour_+%_while_surrounded"]=4295, - ["armour_+_from_%_strength_requirements_from_boots_gloves_helmets"]=4296, - ["armour_+_per_10_unreserved_max_mana"]=4297, - ["armour_+_per_1_boots_energy_shield"]=4298, - ["armour_+_per_1_helmet_maximum_energy_shield"]=4319, - ["armour_+_per_1_spirit"]=4299, - ["armour_+_while_affected_by_determination"]=4320, - ["armour_+_while_affected_by_guard_skill"]=4321, - ["armour_+_while_you_have_fortify"]=4322, - ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4300, - ["armour_and_evasion_+%_during_onslaught"]=4301, - ["armour_and_evasion_+%_while_fortified"]=3823, - ["armour_and_evasion_on_low_life_+%"]=2849, - ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3769, - ["armour_and_evasion_rating_+%_per_active_totem_in_presence"]=4302, - ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4303, - ["armour_and_evasion_rating_+_while_fortified"]=4304, - ["armour_break_%_of_armour_on_critical_strike_with_spells"]=4305, - ["armour_break_%_of_armour_on_heavy_stunning"]=4306, - ["armour_break_amount_+%"]=4307, - ["armour_break_amount_+%_vs_enemies_affected_by_ailments"]=4308, - ["armour_break_and_sundered_armour_duration_+%"]=4309, - ["armour_break_damage_%_dealt_as_armour_break"]=4310, - ["armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells"]=4311, - ["armour_break_equal_to_%_physical_damage_dealt_spells"]=4312, - ["armour_break_fire_damage_%_dealt_as_armour_break"]=4313, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=4314, - ["armour_evasion_+%_while_leeching"]=4315, - ["armour_from_gloves_and_boots_+%"]=4316, - ["armour_from_helmet_and_gloves_+%"]=4317, - ["armour_hellscaping_speed_+%"]=6713, - ["armour_increased_by_uncapped_fire_resistance"]=4318, - ["armour_while_stationary"]=3905, - ["armour_while_you_do_not_have_avatar_of_fire"]=10120, - ["arrow_base_number_of_targets_to_pierce"]=1500, - ["arrow_chains_+"]=1497, - ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4331, - ["arrow_damage_+%_max_as_distance_travelled_increases"]=4334, - ["arrow_damage_+%_vs_pierced_targets"]=4332, - ["arrow_damage_+50%_vs_pierced_targets"]=4333, - ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4336, - ["arrows_always_pierce_after_chaining"]=3896, - ["arrows_always_pierce_after_forking"]=4337, - ["arrows_fork"]=3183, - ["arrows_from_first_firing_point_always_pierce"]=3988, - ["arrows_from_fourth_firing_point_additional_chains"]=3991, - ["arrows_from_second_firing_point_fork"]=3989, - ["arrows_from_third_firing_point_return"]=3990, - ["arrows_pierce_additional_target"]=4338, - ["arrows_that_pierce_also_return"]=4339, - ["arrows_that_pierce_cause_bleeding"]=3894, - ["arrows_that_pierce_chance_to_bleed_25%"]=3895, - ["artillery_ballista_cross_strafe_pattern"]=4340, - ["artillery_ballista_fire_pen_+%"]=4341, - ["artillery_ballista_num_additional_arrows"]=4342, - ["ascendancy_assasin_critical_hit_poison_effect_+%_final"]=3821, - ["ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final"]=2488, - ["ascendancy_beidats_gaze_mana_+_per_X_maximum_life"]=4343, - ["ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life"]=4344, - ["ascendancy_beidats_will_spirit_+_per_X_maximum_life"]=4345, - ["ascendancy_energy_generated_+%_final"]=6012, - ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4346, - ["ascendancy_pathfinder_flask_charges_gained_+%_final"]=4347, - ["ascendancy_shaman_gain_additional_socketable_mods"]=4348, - ["ascendancy_shaman_reactive_growth_elemental_damage_taken_+%_final"]=4349, - ["ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final"]=4350, - ["ascendancy_warbringer_block_chance_+%_final"]=4351, - ["ascendency_tactician_totem_skill_speed_+%_final"]=4352, - ["aspect_of_the_avian_buff_effect_+%"]=4353, - ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4354, - ["aspect_of_the_cat_base_secondary_duration"]=4355, - ["aspect_of_the_spider_web_count_+"]=4356, - ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3051, - ["assassins_mark_curse_effect_+%"]=3591, - ["assassins_mark_duration_+%"]=3506, - ["attack_added_chaos_damage_%_of_maximum_life"]=4357, - ["attack_added_physical_damage_%_of_maximum_life"]=4358, - ["attack_additional_critical_strike_chance_permyriad"]=4359, - ["attack_additional_critical_strike_chance_permyriad_vs_parried_enemies_if_you_have_at_least_100_tribute"]=4360, - ["attack_always_crit"]=3370, - ["attack_and_cast_speed_+%"]=1730, - ["attack_and_cast_speed_+%_during_flask_effect"]=3844, - ["attack_and_cast_speed_+%_during_onslaught"]=2678, - ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4364, - ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3133, - ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3080, - ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3647, - ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4365, - ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4366, - ["attack_and_cast_speed_+%_on_placing_totem"]=2844, - ["attack_and_cast_speed_+%_per_cold_adaptation"]=3999, - ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3827, - ["attack_and_cast_speed_+%_per_endurance_charge"]=4367, - ["attack_and_cast_speed_+%_per_frenzy_charge"]=1732, - ["attack_and_cast_speed_+%_per_power_charge"]=4368, - ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4369, - ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4370, - ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4361, - ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4362, - ["attack_and_cast_speed_+%_while_channelling"]=4371, - ["attack_and_cast_speed_+%_while_focused"]=4372, - ["attack_and_cast_speed_+%_while_leeching"]=3668, - ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3804, - ["attack_and_cast_speed_+%_while_totem_active"]=3208, - ["attack_and_cast_speed_+%_while_using_flask"]=4373, - ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4374, - ["attack_and_cast_speed_+%_while_you_have_fortify"]=1965, - ["attack_and_cast_speed_+%_with_channelling_skills"]=4375, - ["attack_and_cast_speed_+%_with_chaos_skills"]=4376, - ["attack_and_cast_speed_+%_with_cold_skills"]=4377, - ["attack_and_cast_speed_+%_with_elemental_skills"]=4378, - ["attack_and_cast_speed_+%_with_fire_skills"]=4379, - ["attack_and_cast_speed_+%_with_lightning_skills"]=4380, - ["attack_and_cast_speed_+%_with_physical_skills"]=4381, - ["attack_and_cast_speed_+%_with_shield_skills"]=4382, - ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4363, - ["attack_and_cast_speed_when_hit_+%"]=2856, - ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4383, - ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=3914, - ["attack_area_damage_+%"]=4384, - ["attack_area_of_effect_+%"]=4387, - ["attack_area_of_effect_+%_per_10_int"]=4388, - ["attack_area_of_effect_+%_per_enemy_ignited_last_8_seconds"]=4385, - ["attack_area_of_effect_+%_while_wielding_quarterstaff"]=4386, - ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4389, - ["attack_block_%_while_at_max_endurance_charges"]=4390, - ["attack_cast_and_movement_speed_+%_during_onslaught"]=4391, - ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10121, - ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3648, - ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4392, - ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4393, - ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4394, - ["attack_consume_endurance_charge_to_always_crit"]=4395, - ["attack_critical_strike_chance_+%"]=958, - ["attack_critical_strike_chance_+%_per_10_tribute"]=4396, - ["attack_critical_strike_multiplier_+"]=962, - ["attack_critical_strikes_ignore_elemental_resistances"]=4397, - ["attack_damage_+%"]=1117, - ["attack_damage_+%_for_4_seconds_on_cast"]=3136, - ["attack_damage_+%_for_each_different_non_instant_spell_youve_cast_in_the_past_8_seconds"]=4398, - ["attack_damage_+%_if_been_heavy_stunned_recently"]=4399, - ["attack_damage_+%_if_other_ring_is_shaper_item"]=3915, - ["attack_damage_+%_if_youve_shapeshifted_to_animal_recently"]=4400, - ["attack_damage_+%_per_10_tribute"]=4401, - ["attack_damage_+%_per_16_strength"]=4416, - ["attack_damage_+%_per_450_evasion"]=2605, - ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4417, - ["attack_damage_+%_per_5%_block_chance"]=4402, - ["attack_damage_+%_per_500_maximum_mana"]=4403, - ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4418, - ["attack_damage_+%_per_active_totem_in_presence"]=4404, - ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4405, - ["attack_damage_+%_per_frenzy_charge"]=2912, - ["attack_damage_+%_per_level"]=2621, - ["attack_damage_+%_vs_maimed_enemies"]=4419, - ["attack_damage_+%_vs_rare_or_unique_enemy"]=4406, - ["attack_damage_+%_when_no_remaining_life_flask_uses"]=4407, - ["attack_damage_+%_when_on_full_life"]=4420, - ["attack_damage_+%_when_on_low_life"]=4421, - ["attack_damage_+%_while_affected_by_precision"]=4422, - ["attack_damage_+%_while_ally_in_presence"]=4408, - ["attack_damage_+%_while_channelling"]=4423, - ["attack_damage_+%_while_holding_a_shield"]=1125, - ["attack_damage_+%_while_in_blood_stance"]=4409, - ["attack_damage_+%_while_leeching"]=4424, - ["attack_damage_+%_while_moving"]=4410, - ["attack_damage_+%_while_not_on_low_mana"]=4425, - ["attack_damage_+%_while_onslaught_active"]=2918, - ["attack_damage_+%_while_shapeshifted"]=4411, - ["attack_damage_+%_while_surrounded"]=4412, - ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4413, - ["attack_damage_+%_while_you_have_fortify"]=4426, - ["attack_damage_+%_with_channelling_skills"]=4427, - ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4415, - ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4414, - ["attack_damage_that_stuns_also_chills"]=2661, - ["attack_damage_vs_bleeding_enemies_+%"]=2185, - ["attack_mana_cost_+%"]=4429, - ["attack_mana_cost_efficiency_+%_during_mana_flask"]=4428, - ["attack_maximum_added_chaos_damage"]=1249, - ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=3913, - ["attack_maximum_added_chaos_damage_with_bows"]=1787, - ["attack_maximum_added_chaos_damage_with_claws"]=1788, - ["attack_maximum_added_chaos_damage_with_daggers"]=1789, - ["attack_maximum_added_cold_damage"]=869, - ["attack_maximum_added_cold_damage_with_axes"]=1771, - ["attack_maximum_added_cold_damage_with_bows"]=1772, - ["attack_maximum_added_cold_damage_with_claws"]=1773, - ["attack_maximum_added_cold_damage_with_crossbows"]=3881, - ["attack_maximum_added_cold_damage_with_daggers"]=1774, - ["attack_maximum_added_cold_damage_with_flails"]=3869, - ["attack_maximum_added_cold_damage_with_maces"]=1775, - ["attack_maximum_added_cold_damage_with_spears"]=1790, - ["attack_maximum_added_cold_damage_with_staves"]=1776, - ["attack_maximum_added_cold_damage_with_swords"]=1777, - ["attack_maximum_added_cold_damage_with_wand"]=1778, - ["attack_maximum_added_fire_damage"]=868, - ["attack_maximum_added_fire_damage_per_10_strength"]=4430, - ["attack_maximum_added_fire_damage_with_axes"]=1763, - ["attack_maximum_added_fire_damage_with_bow"]=1764, - ["attack_maximum_added_fire_damage_with_claws"]=1765, - ["attack_maximum_added_fire_damage_with_crossbows"]=3882, - ["attack_maximum_added_fire_damage_with_daggers"]=1766, - ["attack_maximum_added_fire_damage_with_flails"]=3870, - ["attack_maximum_added_fire_damage_with_maces"]=1767, - ["attack_maximum_added_fire_damage_with_spears"]=1791, - ["attack_maximum_added_fire_damage_with_staves"]=1768, - ["attack_maximum_added_fire_damage_with_swords"]=1769, - ["attack_maximum_added_fire_damage_with_wand"]=1770, - ["attack_maximum_added_lightning_damage"]=870, - ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=10040, - ["attack_maximum_added_lightning_damage_per_10_dex"]=4432, - ["attack_maximum_added_lightning_damage_per_10_int"]=4433, - ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4434, - ["attack_maximum_added_lightning_damage_with_axes"]=1779, - ["attack_maximum_added_lightning_damage_with_bows"]=1780, - ["attack_maximum_added_lightning_damage_with_claws"]=1781, - ["attack_maximum_added_lightning_damage_with_crossbows"]=3883, - ["attack_maximum_added_lightning_damage_with_daggers"]=1782, - ["attack_maximum_added_lightning_damage_with_flails"]=3871, - ["attack_maximum_added_lightning_damage_with_maces"]=1783, - ["attack_maximum_added_lightning_damage_with_spears"]=1792, - ["attack_maximum_added_lightning_damage_with_staves"]=1784, - ["attack_maximum_added_lightning_damage_with_swords"]=1785, - ["attack_maximum_added_lightning_damage_with_wand"]=1786, - ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2134, - ["attack_maximum_added_physical_damage"]=867, - ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4435, - ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=3912, - ["attack_maximum_added_physical_damage_per_25_dexterity"]=3011, - ["attack_maximum_added_physical_damage_per_25_strength"]=4436, - ["attack_maximum_added_physical_damage_per_level"]=4437, - ["attack_maximum_added_physical_damage_while_holding_a_shield"]=1762, - ["attack_maximum_added_physical_damage_while_unarmed"]=1761, - ["attack_maximum_added_physical_damage_with_axes"]=1753, - ["attack_maximum_added_physical_damage_with_bow"]=1754, - ["attack_maximum_added_physical_damage_with_claws"]=1755, - ["attack_maximum_added_physical_damage_with_crossbows"]=3884, - ["attack_maximum_added_physical_damage_with_daggers"]=1756, - ["attack_maximum_added_physical_damage_with_flails"]=3872, - ["attack_maximum_added_physical_damage_with_maces"]=1757, - ["attack_maximum_added_physical_damage_with_spears"]=1793, - ["attack_maximum_added_physical_damage_with_staves"]=1758, - ["attack_maximum_added_physical_damage_with_swords"]=1759, - ["attack_maximum_added_physical_damage_with_wands"]=1760, - ["attack_maximum_added_physical_damage_with_weapons"]=1170, - ["attack_minimum_added_chaos_damage"]=1249, - ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=3913, - ["attack_minimum_added_chaos_damage_with_bows"]=1787, - ["attack_minimum_added_chaos_damage_with_claws"]=1788, - ["attack_minimum_added_chaos_damage_with_daggers"]=1789, - ["attack_minimum_added_cold_damage"]=869, - ["attack_minimum_added_cold_damage_with_axes"]=1771, - ["attack_minimum_added_cold_damage_with_bows"]=1772, - ["attack_minimum_added_cold_damage_with_claws"]=1773, - ["attack_minimum_added_cold_damage_with_crossbows"]=3881, - ["attack_minimum_added_cold_damage_with_daggers"]=1774, - ["attack_minimum_added_cold_damage_with_flails"]=3869, - ["attack_minimum_added_cold_damage_with_maces"]=1775, - ["attack_minimum_added_cold_damage_with_spears"]=1790, - ["attack_minimum_added_cold_damage_with_staves"]=1776, - ["attack_minimum_added_cold_damage_with_swords"]=1777, - ["attack_minimum_added_cold_damage_with_wand"]=1778, - ["attack_minimum_added_fire_damage"]=868, - ["attack_minimum_added_fire_damage_per_10_strength"]=4430, - ["attack_minimum_added_fire_damage_with_axes"]=1763, - ["attack_minimum_added_fire_damage_with_bow"]=1764, - ["attack_minimum_added_fire_damage_with_claws"]=1765, - ["attack_minimum_added_fire_damage_with_crossbows"]=3882, - ["attack_minimum_added_fire_damage_with_daggers"]=1766, - ["attack_minimum_added_fire_damage_with_flails"]=3870, - ["attack_minimum_added_fire_damage_with_maces"]=1767, - ["attack_minimum_added_fire_damage_with_spears"]=1791, - ["attack_minimum_added_fire_damage_with_staves"]=1768, - ["attack_minimum_added_fire_damage_with_swords"]=1769, - ["attack_minimum_added_fire_damage_with_wand"]=1770, - ["attack_minimum_added_lightning_damage"]=870, - ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=10010, - ["attack_minimum_added_lightning_damage_per_10_dex"]=4432, - ["attack_minimum_added_lightning_damage_per_10_int"]=4433, - ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4434, - ["attack_minimum_added_lightning_damage_with_axes"]=1779, - ["attack_minimum_added_lightning_damage_with_bows"]=1780, - ["attack_minimum_added_lightning_damage_with_claws"]=1781, - ["attack_minimum_added_lightning_damage_with_crossbows"]=3883, - ["attack_minimum_added_lightning_damage_with_daggers"]=1782, - ["attack_minimum_added_lightning_damage_with_flails"]=3871, - ["attack_minimum_added_lightning_damage_with_maces"]=1783, - ["attack_minimum_added_lightning_damage_with_spears"]=1792, - ["attack_minimum_added_lightning_damage_with_staves"]=1784, - ["attack_minimum_added_lightning_damage_with_swords"]=1785, - ["attack_minimum_added_lightning_damage_with_wand"]=1786, - ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2134, - ["attack_minimum_added_physical_damage"]=867, - ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4435, - ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=3912, - ["attack_minimum_added_physical_damage_per_25_dexterity"]=3011, - ["attack_minimum_added_physical_damage_per_25_strength"]=4436, - ["attack_minimum_added_physical_damage_per_level"]=4437, - ["attack_minimum_added_physical_damage_while_holding_a_shield"]=1762, - ["attack_minimum_added_physical_damage_while_unarmed"]=1761, - ["attack_minimum_added_physical_damage_with_axes"]=1753, - ["attack_minimum_added_physical_damage_with_bow"]=1754, - ["attack_minimum_added_physical_damage_with_claws"]=1755, - ["attack_minimum_added_physical_damage_with_crossbows"]=3884, - ["attack_minimum_added_physical_damage_with_daggers"]=1756, - ["attack_minimum_added_physical_damage_with_flails"]=3872, - ["attack_minimum_added_physical_damage_with_maces"]=1757, - ["attack_minimum_added_physical_damage_with_spears"]=1793, - ["attack_minimum_added_physical_damage_with_staves"]=1758, - ["attack_minimum_added_physical_damage_with_swords"]=1759, - ["attack_minimum_added_physical_damage_with_wands"]=1760, - ["attack_minimum_added_physical_damage_with_weapons"]=1170, - ["attack_projectiles_fork"]=4439, - ["attack_projectiles_fork_additional_times"]=4440, - ["attack_projectiles_return"]=2501, - ["attack_projectiles_return_after_piercing_X_times"]=2502, - ["attack_repeat_count"]=1600, - ["attack_skill_gem_level_+"]=953, - ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2401, - ["attack_skills_additional_ballista_totems_allowed"]=3819, - ["attack_skills_additional_totems_allowed"]=3820, - ["attack_skills_damage_+%_while_dual_wielding"]=1177, - ["attack_skills_damage_+%_while_holding_shield"]=1126, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4441, - ["attack_speed_+%"]=965, - ["attack_speed_+%_during_flask_effect"]=2925, - ["attack_speed_+%_final_per_blitz_charge"]=4450, - ["attack_speed_+%_for_4_seconds_on_attack"]=3137, - ["attack_speed_+%_if_changed_stance_recently"]=9498, - ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4451, - ["attack_speed_+%_if_enemy_killed_recently"]=4452, - ["attack_speed_+%_if_enemy_not_killed_recently"]=3809, - ["attack_speed_+%_if_have_been_hit_recently"]=4453, - ["attack_speed_+%_if_have_blocked_recently"]=4454, - ["attack_speed_+%_if_have_crit_recently"]=4455, - ["attack_speed_+%_if_havent_cast_dash_recently"]=4456, - ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4457, - ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4458, - ["attack_speed_+%_if_used_a_mark_recently"]=4459, - ["attack_speed_+%_if_you_have_at_least_600_strength"]=4460, - ["attack_speed_+%_if_you_have_not_attacked_recently"]=4442, - ["attack_speed_+%_if_you_have_used_a_life_flask_recently"]=4461, - ["attack_speed_+%_per_1%_overcapped_block_chance"]=4462, - ["attack_speed_+%_per_10_dex"]=4463, - ["attack_speed_+%_per_200_accuracy_rating"]=3812, - ["attack_speed_+%_per_20_dex"]=2237, - ["attack_speed_+%_per_20_spirit"]=4443, - ["attack_speed_+%_per_25_dex"]=4464, - ["attack_speed_+%_per_enemy_in_close_range"]=4444, - ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4445, - ["attack_speed_+%_per_frenzy_charge"]=1731, - ["attack_speed_+%_when_hit"]=2840, - ["attack_speed_+%_when_on_full_life"]=1139, - ["attack_speed_+%_when_on_low_life"]=1138, - ["attack_speed_+%_while_affected_by_precision"]=4465, - ["attack_speed_+%_while_chilled"]=4466, - ["attack_speed_+%_while_holding_shield"]=1276, - ["attack_speed_+%_while_ignited"]=2601, - ["attack_speed_+%_while_in_presence_of_companion"]=4446, - ["attack_speed_+%_while_in_sand_stance"]=4447, - ["attack_speed_+%_while_leeching"]=2846, - ["attack_speed_+%_while_not_on_low_mana"]=4467, - ["attack_speed_+%_while_on_full_mana"]=4448, - ["attack_speed_+%_while_phasing"]=4468, - ["attack_speed_+%_while_surrounded"]=4449, - ["attack_speed_+%_with_channelling_skills"]=4469, - ["attack_speed_+%_with_movement_skills"]=1291, - ["attack_speed_while_dual_wielding_+%"]=1274, - ["attack_speed_while_fortified_+%"]=2852, - ["attacks_base_mana_cost_+_%_of_maximum_mana"]=4471, - ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4472, - ["attacks_cause_bleeding_vs_cursed_enemies"]=4473, - ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4475, - ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4476, - ["attacks_chance_to_blind_on_hit_%"]=4477, - ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1737, - ["attacks_chance_to_taunt_on_hit_%"]=4478, - ["attacks_deal_no_physical_damage"]=2173, - ["attacks_do_not_cost_mana"]=1593, - ["attacks_impale_on_hit_%_chance"]=4479, - ["attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike"]=4480, - ["attacks_inflict_bleeding_on_hit"]=2183, - ["attacks_intimidate_on_hit_%"]=4481, - ["attacks_num_of_additional_chains"]=3708, - ["attacks_num_of_additional_chains_when_in_main_hand"]=3772, - ["attacks_number_of_additional_projectiles"]=3773, - ["attacks_number_of_additional_projectiles_when_in_off_hand"]=3775, - ["attacks_poison_while_at_max_frenzy_charges"]=1736, - ["attacks_use_life_in_place_of_mana"]=10104, - ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4482, - ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4483, - ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4482, - ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4483, - ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4484, - ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1110, - ["aura_effect_+%"]=2496, - ["aura_effect_+%_if_you_have_at_least_100_tribute"]=4485, - ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4486, - ["aura_effect_on_self_from_your_skills_+%"]=3171, - ["aura_grant_%_base_main_hand_attack_damage_to_nearby_allies"]=4487, - ["aura_grant_shield_defences_to_nearby_allies"]=3071, - ["aura_melee_physical_damage_+%_per_10_strength"]=3061, - ["avatar_of_fire_rotation_active"]=10109, - ["avians_flight_duration_ms_+"]=4488, - ["avians_might_duration_ms_+"]=4489, - ["avoid_ailments_%_from_crit"]=4490, - ["avoid_ailments_%_on_consecrated_ground"]=3158, - ["avoid_ailments_%_while_holding_shield"]=4491, - ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4492, - ["avoid_all_elemental_status_%"]=1550, - ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=3737, - ["avoid_blind_%"]=2271, - ["avoid_chained_projectile_%_chance"]=4493, - ["avoid_chaos_damage_%"]=2998, - ["avoid_chill_freeze_while_casting_%"]=4494, - ["avoid_cold_damage_%"]=2996, - ["avoid_corrupted_blood_%_chance"]=4495, - ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4496, - ["avoid_elemental_ailments_%_while_phasing"]=4497, - ["avoid_elemental_damage_%_per_frenzy_charge"]=2994, - ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4498, - ["avoid_elemental_damage_while_phasing_%"]=4499, - ["avoid_fire_damage_%"]=2995, - ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4500, - ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2685, - ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3663, - ["avoid_ignite_%_when_on_low_life"]=1554, - ["avoid_impale_%"]=4501, - ["avoid_interruption_while_casting_%"]=1599, - ["avoid_knockback_%"]=1370, - ["avoid_lightning_damage_%"]=2997, - ["avoid_maim_%_chance"]=4502, - ["avoid_physical_damage_%"]=2993, - ["avoid_physical_damage_%_while_phasing"]=4503, - ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4504, - ["avoid_projectiles_while_phasing_%_chance"]=4505, - ["avoid_shock_%_while_chilled"]=4506, - ["avoid_status_ailments_%_during_flask_effect"]=2924, - ["avoid_stun_%"]=1557, - ["avoid_stun_%_for_4_seconds_on_kill"]=2950, - ["avoid_stun_%_while_channeling_snipe"]=4508, - ["avoid_stun_%_while_channelling"]=4509, - ["avoid_stun_%_while_holding_shield"]=4510, - ["avoid_stun_35%_per_active_herald"]=4507, - ["axe_accuracy_rating"]=1698, - ["axe_accuracy_rating_+%"]=1296, - ["axe_attack_speed_+%"]=1279, - ["axe_critical_strike_chance_+%"]=1328, - ["axe_critical_strike_multiplier_+"]=1346, - ["axe_damage_+%"]=1194, - ["ball_lightning_damage_+%"]=2809, - ["ball_lightning_number_of_additional_projectiles"]=4511, - ["ball_lightning_projectile_speed_+%"]=3479, - ["ball_lightning_radius_+%"]=3412, - ["ballista_attack_speed_+%"]=4512, - ["ballista_critical_damage_+%"]=4513, - ["ballista_critical_hit_chance_+%"]=4514, - ["ballista_damage_+%"]=4515, - ["ballista_hit_damage_immobilisation_multiplier_+%"]=4516, - ["banner_adrenaline_duration_+%"]=4518, - ["banner_area_of_effect_+%"]=4519, - ["banner_aura_effect_+%"]=2984, - ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4520, - ["banner_duration_+%"]=4521, - ["banner_fortify_duration_+%"]=4522, - ["banner_mana_reservation_+%"]=4523, - ["banner_resource_maximum_+"]=4524, - ["banner_skills_mana_reservation_efficiency_+%"]=4526, - ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4525, - ["banner_skills_reserve_no_mana"]=4527, - ["banner_taunt_duration_+%"]=4528, - ["banners_always_have_max_valour"]=4529, - ["banners_gain_X_glory_per_second"]=4530, - ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=4531, - ["barrage_attack_speed_+%"]=3448, - ["barrage_damage_+%"]=3257, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2895, - ["barrage_num_of_additional_projectiles"]=3537, - ["basalt_flask_armour_+%_final"]=4532, - ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3377, - ["base_actor_scale_+%"]=1741, - ["base_additional_physical_damage_reduction_%"]=975, - ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4145, - ["base_all_ailment_duration_+%"]=1567, - ["base_all_ailment_duration_on_self_+%"]=4533, - ["base_all_attributes"]=1102, - ["base_all_damage_bypass_energy_shield_%"]=4534, - ["base_all_damage_taken_can_chill"]=2539, - ["base_armour_%_applies_to_chaos_damage"]=4535, - ["base_armour_%_applies_to_cold_damage"]=4536, - ["base_armour_%_applies_to_fire_damage"]=4537, - ["base_armour_%_applies_to_lightning_damage"]=4538, - ["base_armour_applies_to_chaos_damage"]=4539, - ["base_armour_applies_to_lightning_damage"]=4540, - ["base_arrow_speed_+%"]=1503, - ["base_arrows_always_pierce"]=4541, - ["base_attack_critical_strike_chance_permyriad_+_per_1_percent_enemy_missing_life"]=4542, - ["base_attack_damage_penetrates_chaos_resist_%"]=3166, - ["base_attack_damage_penetrates_cold_resist_%"]=3164, - ["base_attack_damage_penetrates_elemental_resist_%"]=3161, - ["base_attack_damage_penetrates_fire_resist_%"]=3163, - ["base_attack_damage_penetrates_lightning_resist_%"]=3165, - ["base_attack_skill_cost_efficiency_+%"]=4543, - ["base_attack_speed_+%_per_frenzy_charge"]=1733, - ["base_aura_area_of_effect_+%"]=1898, - ["base_avoid_bleed_%"]=3794, - ["base_avoid_chill_%"]=1551, - ["base_avoid_chill_%_while_have_onslaught"]=2679, - ["base_avoid_freeze_%"]=1552, - ["base_avoid_ignite_%"]=1553, - ["base_avoid_poison_%"]=1556, - ["base_avoid_projectiles_%_chance"]=4544, - ["base_avoid_shock_%"]=1555, - ["base_avoid_stun_%"]=1558, - ["base_banner_resist_all_elements_%_to_apply"]=4545, - ["base_bleed_duration_+%"]=4546, - ["base_bleeding_effect_+%"]=4686, - ["base_bleeding_magnitude_+%_on_self"]=4547, - ["base_block_%_damage_taken"]=4549, - ["base_block_chance_luck"]=4548, - ["base_body_armour_permyriad_to_gain_as_physical_thorns_damage"]=4550, - ["base_bone_golem_granted_buff_effect_+%"]=4551, - ["base_cannot_be_chilled"]=1543, - ["base_cannot_be_chilled_or_frozen"]=1544, - ["base_cannot_be_frozen"]=1545, - ["base_cannot_be_ignited"]=1546, - ["base_cannot_be_shocked"]=1548, - ["base_cannot_be_stunned"]=1862, - ["base_cannot_evade"]=1611, - ["base_cannot_gain_bleeding"]=3793, - ["base_cannot_gain_endurance_charges"]=4552, - ["base_cannot_leech"]=2159, - ["base_cannot_leech_energy_shield"]=4553, - ["base_cannot_leech_life"]=2263, - ["base_cannot_leech_mana"]=2264, - ["base_cast_speed_+%"]=966, - ["base_chance_to_daze_%"]=4554, - ["base_chance_to_deal_triple_damage_%"]=4555, - ["base_chance_to_freeze_%"]=1013, - ["base_chance_to_inflict_bleeding_%"]=4556, - ["base_chance_to_not_consume_corpse_%"]=5207, - ["base_chance_to_pierce_%"]=1025, - ["base_chance_to_poison_on_hit_%"]=2813, - ["base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies"]=4557, - ["base_chance_to_shock_%"]=1015, - ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1643, - ["base_chaos_damage_bypass_energy_shield_%"]=4558, - ["base_chaos_damage_can_electrocute"]=4559, - ["base_chaos_damage_can_ignite"]=4560, - ["base_chaos_damage_does_not_damage_energy_shield_extra_hard"]=2203, - ["base_chaos_damage_resistance_%"]=985, - ["base_chaos_damage_taken_per_minute"]=1644, - ["base_chaos_golem_granted_buff_effect_+%"]=3680, - ["base_charge_duration_+%"]=4561, - ["base_cold_damage_can_poison"]=2540, - ["base_cold_damage_heals"]=2682, - ["base_cold_damage_resistance_%"]=983, - ["base_cold_immunity"]=3682, - ["base_cooldown_speed_+%"]=4563, - ["base_cooldown_speed_+%_per_10_tribute"]=4562, - ["base_cost_+%"]=1582, - ["base_critical_strike_multiplier_+"]=961, - ["base_curse_duration_+%"]=1490, - ["base_damage_%_deflected"]=4565, - ["base_damage_%_deflected_vs_crit"]=4566, - ["base_damage_bypass_ward_%"]=4564, - ["base_damage_removed_from_mana_before_life_%"]=2386, - ["base_damage_removed_from_mana_before_life_%_when_not_on_low_mana"]=4567, - ["base_damage_taken_+%"]=1912, - ["base_damage_taken_+%_per_10_tribute"]=4568, - ["base_damaging_ailment_effect_+%"]=5694, - ["base_damaging_ailment_effect_+%_per_10_tribute"]=4569, - ["base_darkness"]=4570, - ["base_darkness_refresh_rate_ms"]=4571, - ["base_deal_no_chaos_damage"]=4572, - ["base_deal_no_cold_damage"]=2471, - ["base_deal_no_fire_damage"]=4573, - ["base_deal_no_lightning_damage"]=4574, - ["base_deal_no_physical_damage"]=2469, - ["base_deal_no_thorns_damage"]=4575, - ["base_debuff_slow_magnitude_+%"]=4576, - ["base_deflect_chance_luck"]=4578, - ["base_deflection_rating_%_of_armour"]=989, - ["base_deflection_rating_%_of_evasion_rating"]=988, - ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"]=4579, - ["base_dexterity_per_25_tribute"]=4580, - ["base_elemental_damage_heals"]=2684, - ["base_elemental_hit_damage_bypass_energy_shield_%"]=4581, - ["base_elemental_status_ailment_duration_+%"]=1568, - ["base_endurance_charge_skip_consume_chance_%"]=4582, - ["base_enemies_in_your_presence_are_hindered"]=4583, - ["base_enemy_critical_strike_chance_+%_against_self"]=2771, - ["base_energy_shield_gained_on_enemy_death"]=2267, - ["base_energy_shield_leech_rate_+%"]=1848, - ["base_energy_shield_regeneration_rate_per_minute"]=2333, - ["base_energy_shield_regeneration_rate_per_minute_%"]=2334, - ["base_es_cost_+"]=1588, - ["base_evasion_rating"]=889, - ["base_extra_damage_rolls"]=4584, - ["base_fire_damage_can_poison"]=2541, - ["base_fire_damage_heals"]=2681, - ["base_fire_damage_resistance_%"]=982, - ["base_fire_elemental_maximum_life_+%"]=1481, - ["base_fire_golem_granted_buff_effect_+%"]=3677, - ["base_fire_hit_damage_taken_%_as_physical"]=2141, - ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2142, - ["base_fire_immunity"]=1424, - ["base_freezing_enemy_chills_enemies_in_radius"]=6272, - ["base_frenzy_charge_duration_+%"]=1815, - ["base_frenzy_charge_skip_consume_chance_%"]=4585, - ["base_frozen_effect_on_self_+%"]=4586, - ["base_gain_x_rage_on_hit"]=4587, - ["base_global_chance_to_knockback_%"]=1686, - ["base_ice_golem_granted_buff_effect_+%"]=3678, - ["base_ignite_effect_+%"]=1033, - ["base_immune_to_chill"]=2567, - ["base_immune_to_cold_ailments"]=4588, - ["base_immune_to_freeze"]=4589, - ["base_immune_to_ignite"]=4590, - ["base_immune_to_shock"]=4591, - ["base_inflict_cold_exposure_on_hit_%_chance"]=4592, - ["base_inflict_fire_exposure_on_hit_%_chance"]=4593, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=4594, - ["base_intelligence_per_25_tribute"]=4595, - ["base_item_found_quantity_+%"]=1411, - ["base_item_found_rarity_+%"]=940, - ["base_killed_monster_dropped_item_quantity_+%"]=1705, - ["base_killed_monster_dropped_item_rarity_+%"]=1704, - ["base_leech_amount_+%"]=1842, - ["base_leech_is_instant_on_critical"]=2232, - ["base_life_cost_+"]=1589, - ["base_life_cost_+%"]=1583, - ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4597, - ["base_life_cost_efficiency_+%"]=4596, - ["base_life_flasks_do_not_recover_life"]=4598, - ["base_life_gain_per_target"]=997, - ["base_life_gained_on_enemy_death"]=999, - ["base_life_gained_on_spell_hit"]=1453, - ["base_life_leech_amount_+%"]=1844, - ["base_life_leech_does_not_stop_at_full_life"]=2847, - ["base_life_leech_from_all_spell_damage_permyriad"]=4599, - ["base_life_leech_from_all_thorns_damage_permyriad"]=4600, - ["base_life_leech_from_physical_attack_damage_permyriad"]=995, - ["base_life_leech_is_instant"]=2229, - ["base_life_leech_rate_+%"]=1845, - ["base_life_recharges_like_energy_shield"]=4601, - ["base_life_regeneration_rate_per_minute"]=992, - ["base_life_reservation_+%"]=1901, - ["base_life_reservation_efficiency_+%"]=1900, - ["base_lightning_damage_can_electrocute"]=4602, - ["base_lightning_damage_can_poison"]=2542, - ["base_lightning_damage_heals"]=2683, - ["base_lightning_damage_resistance_%"]=984, - ["base_lightning_golem_granted_buff_effect_+%"]=3679, - ["base_lightning_immunity"]=3683, - ["base_limit_+"]=4603, - ["base_main_hand_damage_+%"]=1182, - ["base_main_hand_maim_on_hit_%"]=4604, - ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=4605, - ["base_mana_cost_+"]=1590, - ["base_mana_cost_+_with_channelling_skills"]=9334, - ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4611, - ["base_mana_cost_+_with_non_channelling_skills"]=9336, - ["base_mana_cost_-%"]=1584, - ["base_mana_cost_efficiency_+%"]=4606, - ["base_mana_cost_efficiency_+%_of_curse_skills"]=4607, - ["base_mana_cost_efficiency_+%_of_mark_skills"]=4608, - ["base_mana_cost_efficiency_+%_per_10_tribute"]=4609, - ["base_mana_cost_efficiency_+%_while_on_low_mana"]=4610, - ["base_mana_gained_on_enemy_death"]=1004, - ["base_mana_leech_amount_+%"]=1846, - ["base_mana_leech_from_physical_attack_damage_permyriad"]=1003, - ["base_mana_leech_is_instant"]=2230, - ["base_mana_leech_rate_+%"]=1847, - ["base_mana_regeneration_rate_per_minute"]=1402, - ["base_mana_reservation_+%"]=1903, - ["base_mana_reservation_efficiency_+%"]=1902, - ["base_max_fortification"]=4612, - ["base_maximum_chaos_damage_resistance_%"]=980, - ["base_maximum_cold_damage_resistance_%"]=978, - ["base_maximum_energy_shield"]=891, - ["base_maximum_energy_shield_per_blue_socket_on_item"]=2408, - ["base_maximum_fire_damage_resistance_%"]=977, - ["base_maximum_fire_damage_resistance_%_while_ignited"]=4613, - ["base_maximum_fragile_regrowth"]=3980, - ["base_maximum_life"]=893, - ["base_maximum_life_per_red_socket_on_item"]=2402, - ["base_maximum_lightning_damage_on_charge_expiry"]=2253, - ["base_maximum_lightning_damage_resistance_%"]=979, - ["base_maximum_mana"]=895, - ["base_maximum_mana_per_green_socket_on_item"]=2405, - ["base_melee_critical_strike_chance_while_unarmed_%"]=3173, - ["base_minimum_endurance_charges"]=1509, - ["base_minimum_frenzy_charges"]=1514, - ["base_minimum_lightning_damage_on_charge_expiry"]=2253, - ["base_minimum_power_charges"]=1519, - ["base_minion_duration_+%"]=4614, - ["base_movement_velocity_+%"]=851, - ["base_no_energy_shield_recovery"]=2759, - ["base_number_of_arbalists"]=8780, - ["base_number_of_champions_of_light_allowed"]=4615, - ["base_number_of_crossbow_bolts"]=967, - ["base_number_of_essence_spirits_allowed"]=557, - ["base_number_of_golems_allowed"]=3286, - ["base_number_of_herald_scorpions_allowed"]=4616, - ["base_number_of_raging_spirits_allowed"]=1851, - ["base_number_of_relics_allowed"]=4617, - ["base_number_of_remote_mines_allowed"]=1926, - ["base_number_of_sigils_allowed_per_target"]=4618, - ["base_number_of_skeletons_allowed"]=1850, - ["base_number_of_spectres_allowed"]=1849, - ["base_number_of_support_ghosts_allowed"]=4619, - ["base_number_of_totems_allowed"]=1924, - ["base_number_of_traps_allowed"]=1925, - ["base_off_hand_attack_speed_+%"]=1275, - ["base_off_hand_chance_to_blind_on_hit_%"]=4620, - ["base_off_hand_damage_+%"]=1183, - ["base_onlsaught_on_hit_%_chance"]=4621, - ["base_penetrate_elemental_resistances_%"]=3162, - ["base_physical_damage_can_pin"]=4622, - ["base_physical_damage_over_time_taken_+%"]=4623, - ["base_physical_damage_reduction_rating"]=887, - ["base_poison_duration_+%"]=2810, - ["base_poison_effect_+%"]=8949, - ["base_poison_effect_+%_while_poisoned"]=4624, - ["base_power_charge_skip_consume_chance_%"]=4625, - ["base_projectile_speed_+%"]=899, - ["base_rage_cost_+%"]=1585, - ["base_rage_regeneration_per_minute"]=4626, - ["base_raven_maximum_life_+%"]=1482, - ["base_reduce_enemy_cold_resistance_%"]=2638, - ["base_reduce_enemy_fire_resistance_%"]=2637, - ["base_reduce_enemy_lightning_resistance_%"]=2639, - ["base_reservation_+%"]=1905, - ["base_reservation_efficiency_+%"]=1904, - ["base_resist_all_elements_%"]=981, - ["base_self_chill_duration_-%"]=1021, - ["base_self_critical_strike_multiplier_-%"]=974, - ["base_self_freeze_duration_-%"]=1022, - ["base_self_ignite_duration_-%"]=1020, - ["base_self_shock_duration_-%"]=1023, - ["base_should_have_arcane_surge_from_stat"]=4627, - ["base_should_have_onslaught_from_stat"]=3196, - ["base_skill_area_of_effect_+%"]=1581, - ["base_skill_cost_efficiency_+%"]=4628, - ["base_skill_cost_life_instead_of_mana_%"]=4629, - ["base_skill_detonation_time"]=4630, - ["base_skill_gain_life_cost_%_of_mana_cost"]=4631, - ["base_slow_potency_+%"]=4632, - ["base_spectre_maximum_life_+%"]=1479, - ["base_spell_cooldown_speed_+%"]=4633, - ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4634, - ["base_spell_critical_strike_chance"]=1314, - ["base_spell_critical_strike_chance_override_permyriad"]=4635, - ["base_spell_critical_strike_multiplier_+"]=963, - ["base_spell_projectile_block_%"]=4636, - ["base_spirit"]=897, - ["base_spirit_from_equipment"]=898, - ["base_spirit_reservation_efficiency_+%"]=4637, - ["base_spirit_reservation_efficiency_+%_per_20_tribute"]=4638, - ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2642, - ["base_stone_golem_granted_buff_effect_+%"]=3676, - ["base_strength_per_25_tribute"]=4639, - ["base_stun_duration_+%"]=1010, - ["base_stun_recovery_+%"]=1017, - ["base_stun_threshold_reduction_+%"]=1007, - ["base_thorns_critical_strike_chance"]=4640, - ["base_thorns_critical_strike_multiplier_+"]=4641, - ["base_total_number_of_sigils_allowed"]=4642, - ["base_unaffected_by_poison"]=4643, - ["base_unholy_might_granted_magnitude_+%"]=4644, - ["base_ward"]=1375, - ["base_weapon_trap_rotation_speed_+%"]=4645, - ["base_weapon_trap_total_rotation_%"]=4646, - ["base_zombie_maximum_life_+%"]=1480, - ["battlemages_cry_buff_effect_+%"]=4647, - ["battlemages_cry_exerts_x_additional_attacks"]=4648, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4649, - ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4650, - ["bear_trap_cooldown_speed_+%"]=3466, - ["bear_trap_damage_+%"]=3302, - ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4651, - ["bear_trap_movement_speed_+%_final"]=4652, - ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4653, - ["berserk_buff_effect_+%"]=4655, - ["berserk_rage_loss_+%"]=4656, - ["berserker_damage_+%_final"]=3636, - ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4657, - ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4658, - ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4659, - ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4660, - ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4661, - ["blackhole_damage_taken_+%"]=4662, - ["blackhole_pulse_frequency_+%"]=4663, - ["blackstar_moonlight_cold_damage_taken_+%_final"]=4664, - ["blackstar_moonlight_fire_damage_taken_+%_final"]=4665, - ["blackstar_sunlight_cold_damage_taken_+%_final"]=4666, - ["blackstar_sunlight_fire_damage_taken_+%_final"]=4667, - ["blade_blase_damage_+%"]=4668, - ["blade_blast_skill_area_of_effect_+%"]=4669, - ["blade_blast_trigger_detonation_area_of_effect_+%"]=4670, - ["blade_trap_damage_+%"]=4671, - ["blade_trap_skill_area_of_effect_+%"]=4672, - ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4673, - ["blade_vortex_blade_deal_no_non_physical_damage"]=4674, - ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4675, - ["blade_vortex_damage_+%"]=3325, - ["blade_vortex_duration_+%"]=3513, - ["blade_vortex_radius_+%"]=3429, - ["bladefall_critical_strike_chance_+%"]=3532, - ["bladefall_damage_+%"]=3326, - ["bladefall_number_of_volleys"]=4676, - ["bladefall_radius_+%"]=3430, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4677, - ["bladestorm_damage_+%"]=4678, - ["bladestorm_maximum_number_of_storms_allowed"]=4679, - ["bladestorm_sandstorm_movement_speed_+%"]=4680, - ["blast_rain_%_chance_for_additional_blast"]=3688, - ["blast_rain_damage_+%"]=3322, - ["blast_rain_number_of_blasts"]=3575, - ["blast_rain_radius_+%"]=3426, - ["blast_rain_single_additional_projectile"]=3576, - ["blazing_salvo_damage_+%"]=4681, - ["blazing_salvo_number_of_additional_projectiles"]=4682, - ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4683, - ["bleed_chance_+%"]=4684, - ["bleed_duration_per_12_intelligence_+%"]=3388, - ["bleed_on_bow_attack_chance_%"]=2182, - ["bleed_on_crit_%"]=4685, - ["bleed_on_crit_%_with_attacks"]=2179, - ["bleed_on_hit_with_attacks_%"]=2183, - ["bleed_on_melee_attack_chance_%"]=2181, - ["bleed_on_melee_crit_chance_%"]=2180, - ["bleed_on_melee_critical_strike"]=3849, - ["bleed_on_stun"]=2178, - ["bleeding_damage_on_self_taken_as_fire_instead"]=2147, - ["bleeding_effect_+%_per_endurance_charge"]=4687, - ["bleeding_effect_+%_per_frenzy_charge"]=4688, - ["bleeding_effect_+%_per_impale_on_enemy"]=4689, - ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4690, - ["bleeding_effect_+%_vs_poisoned_enemies"]=4691, - ["bleeding_effect_+%_when_consuming_incision"]=4692, - ["bleeding_enemies_cannot_regenerate_life"]=4693, - ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3087, - ["bleeding_magnitude_+%_against_pinned_enemies"]=4694, - ["bleeding_monsters_movement_velocity_+%"]=2624, - ["bleeding_no_extra_damage_while_target_is_moving"]=4695, - ["bleeding_on_self_expire_speed_+%_while_moving"]=4696, - ["bleeding_reflected_to_self"]=4697, - ["bleeding_stacks_up_to_x_times"]=4698, - ["blight_arc_tower_additional_chains"]=4699, - ["blight_arc_tower_additional_repeats"]=4700, - ["blight_arc_tower_chance_to_sap_%"]=4701, - ["blight_arc_tower_damage_+%"]=4702, - ["blight_arc_tower_range_+%"]=4703, - ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4704, - ["blight_cast_speed_+%"]=4705, - ["blight_chilling_tower_chill_effect_+%"]=4706, - ["blight_chilling_tower_damage_+%"]=4707, - ["blight_chilling_tower_duration_+%"]=4708, - ["blight_chilling_tower_range_+%"]=4709, - ["blight_damage_+%"]=3335, - ["blight_duration_+%"]=3515, - ["blight_empowering_tower_buff_effect_+%"]=4710, - ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4713, - ["blight_empowering_tower_grant_cast_speed_+%"]=4711, - ["blight_empowering_tower_grant_damage_+%"]=4712, - ["blight_empowering_tower_range_+%"]=4714, - ["blight_fireball_tower_additional_projectiles_+"]=4715, - ["blight_fireball_tower_cast_speed_+%"]=4716, - ["blight_fireball_tower_damage_+%"]=4717, - ["blight_fireball_tower_projectiles_nova"]=4718, - ["blight_fireball_tower_range_+%"]=4719, - ["blight_flamethrower_tower_cast_speed_+%"]=4720, - ["blight_flamethrower_tower_chance_to_scorch_%"]=4721, - ["blight_flamethrower_tower_damage_+%"]=4722, - ["blight_flamethrower_tower_full_damage_fire_enemies"]=4723, - ["blight_flamethrower_tower_range_+%"]=4724, - ["blight_freezebolt_tower_chance_to_brittle_%"]=4725, - ["blight_freezebolt_tower_damage_+%"]=4726, - ["blight_freezebolt_tower_full_damage_cold_enemies"]=4727, - ["blight_freezebolt_tower_projectiles_+"]=4728, - ["blight_freezebolt_tower_range_+%"]=4729, - ["blight_glacialcage_tower_area_of_effect_+%"]=4730, - ["blight_glacialcage_tower_cooldown_recovery_+%"]=4731, - ["blight_glacialcage_tower_duration_+%"]=4732, - ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4733, - ["blight_glacialcage_tower_range_+%"]=4734, - ["blight_hinder_enemy_chaos_damage_taken_+%"]=4735, - ["blight_imbuing_tower_buff_effect_+%"]=4736, - ["blight_imbuing_tower_grant_critical_strike_+%"]=4737, - ["blight_imbuing_tower_grant_damage_+%"]=4738, - ["blight_imbuing_tower_grants_onslaught"]=4739, - ["blight_imbuing_tower_range_+%"]=4740, - ["blight_lightningstorm_tower_area_of_effect_+%"]=4741, - ["blight_lightningstorm_tower_damage_+%"]=4742, - ["blight_lightningstorm_tower_delay_+%"]=4743, - ["blight_lightningstorm_tower_range_+%"]=4744, - ["blight_lightningstorm_tower_storms_on_enemies"]=4745, - ["blight_meteor_tower_additional_meteor_+"]=4746, - ["blight_meteor_tower_always_stun"]=4747, - ["blight_meteor_tower_creates_burning_ground_ms"]=4748, - ["blight_meteor_tower_damage_+%"]=4749, - ["blight_meteor_tower_range_+%"]=4750, - ["blight_radius_+%"]=3435, - ["blight_scout_tower_additional_minions_+"]=4751, - ["blight_scout_tower_minion_damage_+%"]=4752, - ["blight_scout_tower_minion_life_+%"]=4753, - ["blight_scout_tower_minion_movement_speed_+%"]=4754, - ["blight_scout_tower_minions_inflict_malediction"]=4755, - ["blight_scout_tower_range_+%"]=4756, - ["blight_secondary_skill_effect_duration_+%"]=4757, - ["blight_seismic_tower_additional_cascades_+"]=4758, - ["blight_seismic_tower_cascade_range_+%"]=4759, - ["blight_seismic_tower_damage_+%"]=4760, - ["blight_seismic_tower_range_+%"]=4761, - ["blight_seismic_tower_stun_duration_+%"]=4762, - ["blight_sentinel_tower_minion_damage_+%"]=4763, - ["blight_sentinel_tower_minion_life_+%"]=4764, - ["blight_sentinel_tower_minion_movement_speed_+%"]=4765, - ["blight_sentinel_tower_range_+%"]=4766, - ["blight_shocking_tower_damage_+%"]=4767, - ["blight_shocking_tower_range_+%"]=4768, - ["blight_shocknova_tower_full_damage_lightning_enemies"]=4769, - ["blight_shocknova_tower_shock_additional_repeats"]=4770, - ["blight_shocknova_tower_shock_effect_+%"]=4771, - ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4772, - ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4773, - ["blight_smothering_tower_buff_effect_+%"]=4774, - ["blight_smothering_tower_freeze_shock_ignite_%"]=4775, - ["blight_smothering_tower_grant_damage_+%"]=4776, - ["blight_smothering_tower_grant_movement_speed_+%"]=4777, - ["blight_smothering_tower_range_+%"]=4778, - ["blight_stonegaze_tower_cooldown_recovery_+%"]=4779, - ["blight_stonegaze_tower_duration_+%"]=4780, - ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4781, - ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4782, - ["blight_stonegaze_tower_range_+%"]=4783, - ["blight_summoning_tower_minion_damage_+%"]=4784, - ["blight_summoning_tower_minion_life_+%"]=4785, - ["blight_summoning_tower_minion_movement_speed_+%"]=4786, - ["blight_summoning_tower_minions_summoned_+"]=4787, - ["blight_summoning_tower_range_+%"]=4788, - ["blight_temporal_tower_buff_effect_+%"]=4789, - ["blight_temporal_tower_grant_you_action_speed_-%"]=4790, - ["blight_temporal_tower_grants_stun_immunity"]=4791, - ["blight_temporal_tower_range_+%"]=4792, - ["blight_temporal_tower_tick_speed_+%"]=4793, - ["blight_tertiary_skill_effect_duration"]=4794, - ["blight_tower_arc_damage_+%"]=4795, - ["blight_tower_chilling_cost_+%"]=4796, - ["blight_tower_damage_per_tower_type_+%"]=4797, - ["blight_tower_fireball_additional_projectile"]=4798, - ["blighted_map_chest_reward_lucky_count"]=4799, - ["blighted_map_tower_damage_+%_final"]=4800, - ["blind_chance_+%"]=4801, - ["blind_chilled_enemies_on_hit_%"]=4802, - ["blind_does_not_affect_chance_to_hit"]=4803, - ["blind_does_not_affect_light_radius"]=4804, - ["blind_duration_+%"]=3050, - ["blind_effect_+%"]=4805, - ["blind_enemies_when_hit_%_chance"]=4806, - ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4807, - ["blind_enemies_when_they_stun_you"]=4808, - ["blind_nearby_enemies_when_ignited_%"]=2688, - ["blind_on_poison_inflicted"]=4809, - ["blind_reflected_to_self"]=4810, - ["blink_and_mirror_arrow_cooldown_speed_+%"]=4811, - ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3455, - ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3315, - ["blink_arrow_cooldown_speed_+%"]=3471, - ["block_%_damage_taken_from_elemental"]=4818, - ["block_%_damage_taken_while_active_blocking"]=4819, - ["block_%_if_blocked_an_attack_recently"]=4820, - ["block_%_while_affected_by_determination"]=4821, - ["block_and_stun_+%_recovery_per_fortification"]=4812, - ["block_causes_monster_flee_%"]=2618, - ["block_chance_%_per_50_strength"]=1082, - ["block_chance_%_while_holding_shield"]=1086, - ["block_chance_+%"]=1088, - ["block_chance_+%_against_projectiles"]=4813, - ["block_chance_+%_if_blocked_with_active_block_recently"]=4814, - ["block_chance_+%_if_you_have_at_least_100_tribute"]=4815, - ["block_chance_+%_while_surrounded"]=4816, - ["block_chance_from_equipped_shield_is_%"]=4817, - ["block_chance_on_damage_taken_%"]=2853, - ["block_recovery_+%"]=1089, - ["block_while_dual_wielding_%"]=1084, - ["block_while_dual_wielding_claws_%"]=1085, - ["blood_footprints_from_item"]=10123, - ["blood_mage_flask_life_to_recover_+%_final"]=4822, - ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3685, - ["blood_rage_grants_additional_attack_speed_+%"]=3684, - ["blood_sand_armour_mana_reservation_+%"]=4823, - ["blood_sand_mana_reservation_efficiency_+%"]=4825, - ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4824, - ["blood_sand_stance_buff_effect_+%"]=4826, - ["blood_spears_area_of_effect_+%"]=4827, - ["blood_spears_base_number_of_spears"]=4828, - ["blood_spears_damage_+%"]=4829, - ["bloodlust_zone_%_of_max_health"]=4830, - ["bloodreap_damage_+%"]=4831, - ["bloodreap_skill_area_of_effect_+%"]=4832, - ["body_armour_+%"]=4833, - ["body_armour_evasion_rating_+%"]=4834, - ["body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage"]=4835, - ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4836, - ["body_armour_grants_glory_generation_+%"]=4837, - ["body_armour_grants_spirit_+%"]=4838, - ["body_armour_grants_thorns_damage_+%"]=4839, - ["body_armour_grants_unaffected_by_damaging_ailments"]=4840, - ["body_armour_grants_unaffected_by_ignite"]=4841, - ["body_armour_grants_x_base_cold_damage_resistance_%"]=4842, - ["body_armour_grants_x_base_fire_damage_resistance_%"]=4843, - ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4844, - ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4845, - ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4846, - ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4847, - ["body_armour_grants_x_maximum_life_+%"]=4848, - ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4849, - ["body_armour_grants_x_strength_+%"]=4850, - ["body_armour_grants_x_stun_threshold_+%"]=4851, - ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4852, - ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4853, - ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4854, - ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=4855, - ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=4856, - ["body_armour_implicit_gain_power_charge_every_x_ms"]=4857, - ["bone_golem_damage_+%"]=4858, - ["bone_golem_elemental_resistances_%"]=4859, - ["bone_lance_cast_speed_+%"]=4860, - ["bone_lance_damage_+%"]=4861, - ["bone_offering_block_chance_+%"]=3700, - ["bone_offering_duration_+%"]=3489, - ["bone_offering_effect_+%"]=1095, - ["boneshatter_chance_to_gain_+1_trauma"]=4862, - ["boneshatter_damage_+%"]=4864, - ["boneshatter_damage_+%_final_if_created_from_unique"]=4863, - ["boneshatter_stun_duration_+%"]=4865, - ["boots_implicit_accuracy_rating_+%_final"]=4866, - ["boss_maximum_life_+%_final"]=4867, - ["bow_accuracy_rating"]=1696, - ["bow_accuracy_rating_+%"]=1301, - ["bow_attack_speed_+%"]=1284, - ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5396, - ["bow_attacks_have_culling_strike"]=4868, - ["bow_critical_strike_chance_+%"]=1321, - ["bow_critical_strike_multiplier_+"]=1347, - ["bow_damage_+%"]=1214, - ["bow_elemental_damage_+%"]=1218, - ["bow_physical_damage_+%_while_holding_shield"]=1682, - ["bow_skill_gem_level_+"]=4869, - ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2611, - ["bow_stun_duration_+%"]=1571, - ["bow_stun_threshold_reduction_+%"]=1367, - ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=4870, - ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=4871, - ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=4872, - ["brands_reattach_on_activation"]=4873, - ["breach_flame_effects_doubled"]=4874, - ["breachstone_commanders_%_drop_additional_fragments"]=4875, - ["breachstone_commanders_%_drop_additional_maps"]=4876, - ["breachstone_commanders_%_drop_additional_scarabs"]=4877, - ["breachstone_commanders_%_drop_additional_unique_items"]=4878, - ["breachstone_commanders_drop_additional_catalysts"]=4879, - ["breachstone_commanders_drop_additional_currency_items"]=4880, - ["breachstone_commanders_drop_additional_delirium_items"]=4881, - ["breachstone_commanders_drop_additional_divination_cards"]=4882, - ["breachstone_commanders_drop_additional_enchanted_items"]=4883, - ["breachstone_commanders_drop_additional_essences"]=4884, - ["breachstone_commanders_drop_additional_fossils"]=4885, - ["breachstone_commanders_drop_additional_gem_items"]=4886, - ["breachstone_commanders_drop_additional_harbinger_shards"]=4887, - ["breachstone_commanders_drop_additional_incubators"]=4888, - ["breachstone_commanders_drop_additional_legion_splinters"]=4889, - ["breachstone_commanders_drop_additional_oils"]=4890, - ["break_%_armour_on_pin"]=4891, - ["broken_armour_and_sundered_armour_debuff_effect_+%"]=4892, - ["broken_armour_enemies_cannot_regenerate_life"]=4893, - ["buff_affects_party"]=1494, - ["buff_auras_dont_affect_allies"]=2669, - ["buff_duration_+%"]=1489, - ["buff_effect_+%_on_low_energy_shield"]=4894, - ["buff_effect_on_self_+%"]=1832, - ["buff_party_effect_radius_+%"]=1495, - ["buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life"]=4895, - ["buff_time_passed_+%"]=4897, - ["buff_time_passed_+%_only_buff_category"]=4896, - ["buildup_jade_every_x_ms"]=4898, - ["burn_damage_+%"]=1578, - ["burning_and_explosive_arrow_shatter_on_killing_blow"]=4899, - ["burning_arrow_damage_+%"]=3224, - ["burning_arrow_debuff_effect_+%"]=4900, - ["burning_arrow_physical_damage_%_to_gain_as_fire_damage"]=3544, - ["burning_damage_+%_if_ignited_an_enemy_recently"]=3890, - ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=4901, - ["burning_damage_taken_+%"]=2240, - ["can_apply_additional_chill"]=4902, - ["can_apply_additional_shock"]=4903, - ["can_block_from_all_directions"]=4904, - ["can_catch_corrupted_fish"]=2531, - ["can_catch_exotic_fish"]=2530, - ["can_catch_scourged_fish"]=4905, - ["can_have_2_companions"]=4906, - ["can_only_have_one_ancestor_totem_buff"]=4907, - ["can_place_multiple_banners"]=4908, - ["can_use_one_hand_mace_skills_while_unarmed"]=4909, - ["can_use_quarterstaff_skills_while_unarmed"]=4910, - ["can_wield_2h_axe_sword_mace_in_one_hand"]=4911, - ["cannot_adapt_to_cold"]=4912, - ["cannot_adapt_to_fire"]=4913, - ["cannot_adapt_to_lightning"]=4914, - ["cannot_be_affected_by_flasks"]=3343, - ["cannot_be_blinded"]=2632, - ["cannot_be_blinded_while_affected_by_precision"]=4915, - ["cannot_be_blinded_while_on_full_life"]=4916, - ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=4917, - ["cannot_be_chilled_or_frozen_while_moving"]=4918, - ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=4919, - ["cannot_be_chilled_while_burning"]=4920, - ["cannot_be_crit_if_you_have_been_stunned_recently"]=4921, - ["cannot_be_cursed_with_silence"]=2736, - ["cannot_be_damaged"]=1409, - ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=4922, - ["cannot_be_frozen_if_you_have_been_frozen_recently"]=4923, - ["cannot_be_frozen_with_dex_higher_than_int"]=4924, - ["cannot_be_heavy_stunned_while_sprinting"]=4925, - ["cannot_be_ignited_if_you_have_been_ignited_recently"]=4926, - ["cannot_be_ignited_while_at_maximum_endurance_charges"]=4927, - ["cannot_be_ignited_while_flame_golem_summoned"]=4928, - ["cannot_be_ignited_with_strength_higher_than_dex"]=4929, - ["cannot_be_inflicted_by_corrupted_blood"]=4930, - ["cannot_be_killed_by_elemental_reflect"]=2362, - ["cannot_be_knocked_back"]=1369, - ["cannot_be_light_stunned"]=4931, - ["cannot_be_light_stunned_by_deflected_hits"]=4932, - ["cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds"]=4933, - ["cannot_be_light_stunned_if_have_not_been_hit_recently"]=4934, - ["cannot_be_light_stunned_if_you_have_been_stunned_recently"]=4935, - ["cannot_be_poisoned"]=2991, - ["cannot_be_poisoned_if_x_poisons_on_you"]=4936, - ["cannot_be_poisoned_while_bleeding"]=4937, - ["cannot_be_shocked_if_you_have_been_shocked_recently"]=4938, - ["cannot_be_shocked_or_ignited_while_moving"]=4939, - ["cannot_be_shocked_while_at_maximum_endurance_charges"]=3757, - ["cannot_be_shocked_while_at_maximum_power_charges"]=4940, - ["cannot_be_shocked_while_frozen"]=2571, - ["cannot_be_shocked_while_lightning_golem_summoned"]=4941, - ["cannot_be_shocked_with_int_higher_than_strength"]=4942, - ["cannot_be_stunned"]=1861, - ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=3918, - ["cannot_be_stunned_by_blocked_hits"]=4943, - ["cannot_be_stunned_by_hits_of_only_physical_damage"]=4944, - ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=3917, - ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=3928, - ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=4945, - ["cannot_be_stunned_if_you_have_ghost_dance"]=4946, - ["cannot_be_stunned_when_on_low_life"]=1863, - ["cannot_be_stunned_while_at_max_endurance_charges"]=3633, - ["cannot_be_stunned_while_bleeding"]=4947, - ["cannot_be_stunned_while_fortified"]=4948, - ["cannot_be_stunned_while_leeching"]=2848, - ["cannot_be_stunned_while_using_chaos_skill"]=4949, - ["cannot_be_stunned_with_25_rage"]=9062, - ["cannot_block"]=2896, - ["cannot_block_while_no_energy_shield"]=2414, - ["cannot_cast_curses"]=2369, - ["cannot_cast_spells"]=4950, - ["cannot_cause_bleeding"]=2183, - ["cannot_consume_power_frenzy_endurance_charges"]=4951, - ["cannot_crit_non_shocked_enemies"]=3715, - ["cannot_critical_strike_with_attacks"]=4952, - ["cannot_fish_from_water"]=4953, - ["cannot_freeze_shock_ignite_on_critical"]=2363, - ["cannot_gain_charges"]=4954, - ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=4955, - ["cannot_gain_endurance_charges_while_have_onslaught"]=2434, - ["cannot_gain_power_charges"]=2664, - ["cannot_gain_rage_during_soul_gain_prevention"]=4956, - ["cannot_gain_spirit_from_equipment"]=4957, - ["cannot_have_current_energy_shield"]=2758, - ["cannot_have_energy_shield_leeched_from"]=4958, - ["cannot_have_life_leeched_from"]=2137, - ["cannot_have_mana_leeched_from"]=2138, - ["cannot_have_more_than_1_damaging_ailment"]=4959, - ["cannot_have_more_than_1_non_damaging_ailment"]=4960, - ["cannot_immobilise_enemies"]=4961, - ["cannot_increase_quantity_of_dropped_items"]=2242, - ["cannot_increase_rarity_of_dropped_items"]=2241, - ["cannot_inflict_elemental_ailments"]=1569, - ["cannot_kill_enemies_with_hits"]=4962, - ["cannot_knockback"]=2660, - ["cannot_leech_life_from_critical_strikes"]=3847, - ["cannot_leech_or_regenerate_mana"]=2265, - ["cannot_leech_when_on_low_life"]=2266, - ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=3929, - ["cannot_penetrate_or_ignore_elemental_resistances"]=4963, - ["cannot_pierce"]=4964, - ["cannot_pin"]=4965, - ["cannot_receive_elemental_ailments_from_cursed_enemies"]=4966, - ["cannot_recharge_energy_shield"]=4967, - ["cannot_recover_above_low_life_except_flasks"]=4968, - ["cannot_recover_life_or_energy_shield_above_%"]=4969, - ["cannot_recover_mana_except_regeneration"]=4970, - ["cannot_regenerate_energy_shield"]=4971, - ["cannot_resist_cold_damage"]=1874, - ["cannot_sprint"]=4972, - ["cannot_stun"]=1562, - ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=3997, - ["cannot_take_reflected_elemental_damage"]=4973, - ["cannot_take_reflected_physical_damage"]=4974, - ["cannot_taunt_enemies"]=4975, - ["cannot_use_flask_in_fifth_slot"]=4976, - ["cannot_use_non_normal_body_armour"]=4977, - ["cannot_use_warcries"]=4978, - ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=4979, - ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=4980, - ["cast_blink_arrow_on_attack_with_mirror_arrow"]=4981, - ["cast_body_swap_on_detonate_dead_cast"]=4982, - ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=4983, - ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=4984, - ["cast_hydrosphere_while_channeling_winter_orb"]=4985, - ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=4986, - ["cast_linked_spells_on_shocked_enemy_kill_%"]=558, - ["cast_mirror_arrow_on_attack_with_blink_arrow"]=4987, - ["cast_socketed_minion_skills_on_bow_kill_%"]=559, - ["cast_socketed_spells_on_X_mana_spent"]=560, - ["cast_socketed_spells_on_mana_spent_%_chance"]=560, - ["cast_speed_+%_during_flask_effect"]=4992, - ["cast_speed_+%_for_4_seconds_on_attack"]=3138, - ["cast_speed_+%_if_enemy_killed_recently"]=4993, - ["cast_speed_+%_if_have_crit_recently"]=4994, - ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=4995, - ["cast_speed_+%_if_you_have_used_a_mana_flask_recently"]=4996, - ["cast_speed_+%_per_20_spirit"]=4988, - ["cast_speed_+%_per_corpse_consumed_recently"]=4997, - ["cast_speed_+%_per_frenzy_charge"]=1692, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=4989, - ["cast_speed_+%_per_power_charge"]=1309, - ["cast_speed_+%_when_on_full_life"]=1691, - ["cast_speed_+%_when_on_low_life"]=1690, - ["cast_speed_+%_while_affected_by_zealotry"]=4998, - ["cast_speed_+%_while_chilled"]=4999, - ["cast_speed_+%_while_holding_bow"]=1308, - ["cast_speed_+%_while_holding_shield"]=1306, - ["cast_speed_+%_while_holding_staff"]=1307, - ["cast_speed_+%_while_ignited"]=2602, - ["cast_speed_+%_while_on_full_mana"]=5000, - ["cast_speed_for_brand_skills_+%"]=4990, - ["cast_speed_for_chaos_skills_+%"]=1253, - ["cast_speed_for_cold_skills_+%"]=1242, - ["cast_speed_for_elemental_skills_+%"]=4991, - ["cast_speed_for_fire_skills_+%"]=1234, - ["cast_speed_for_lightning_skills_+%"]=1247, - ["cast_speed_while_dual_wielding_+%"]=1305, - ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5001, - ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5002, - ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5003, - ["cat_aspect_reserves_no_mana"]=5004, - ["cats_stealth_duration_ms_+"]=5005, - ["cause_maim_on_critical_strike_attack"]=3654, - ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5006, - ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5007, - ["caustic_arrow_damage_+%"]=3284, - ["caustic_arrow_damage_over_time_+%"]=5008, - ["caustic_arrow_duration_+%"]=3523, - ["caustic_arrow_hit_damage_+%"]=5009, - ["caustic_arrow_radius_+%"]=3420, - ["caustic_arrow_withered_base_duration_ms"]=3285, - ["caustic_arrow_withered_on_hit_%"]=3285, - ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3053, - ["celestial_footprints_from_item"]=10124, - ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5010, - ["chain_strike_cone_radius_+_per_12_rage"]=5011, - ["chain_strike_cone_radius_+_per_x_rage"]=5012, - ["chain_strike_damage_+%"]=5013, - ["chain_strike_gain_rage_on_hit_%_chance"]=5014, - ["chaining_range_+%"]=5015, - ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5016, - ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=5017, - ["chance_%_to_create_additional_remnant"]=5057, - ["chance_%_to_create_shocking_ground_on_shock"]=5018, - ["chance_%_to_double_effect_of_removing_frenzy_charges"]=5019, - ["chance_%_to_drop_additional_awakened_sextant"]=5020, - ["chance_%_to_drop_additional_blessed_orb"]=5021, - ["chance_%_to_drop_additional_cartographers_chisel"]=5022, - ["chance_%_to_drop_additional_chaos_orb"]=5023, - ["chance_%_to_drop_additional_chromatic_orb"]=5024, - ["chance_%_to_drop_additional_cleansing_currency"]=5058, - ["chance_%_to_drop_additional_cleansing_influenced_item"]=5059, - ["chance_%_to_drop_additional_currency"]=5060, - ["chance_%_to_drop_additional_divination_cards"]=5061, - ["chance_%_to_drop_additional_divination_cards_corrupted"]=5062, - ["chance_%_to_drop_additional_divination_cards_currency"]=5063, - ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5064, - ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5065, - ["chance_%_to_drop_additional_divination_cards_currency_league"]=5066, - ["chance_%_to_drop_additional_divination_cards_gems"]=5067, - ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5068, - ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5069, - ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5070, - ["chance_%_to_drop_additional_divination_cards_map"]=5071, - ["chance_%_to_drop_additional_divination_cards_map_unique"]=5072, - ["chance_%_to_drop_additional_divination_cards_unique"]=5073, - ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5074, - ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5075, - ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5076, - ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5077, - ["chance_%_to_drop_additional_divine_orb"]=5025, - ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5026, - ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5027, - ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5028, - ["chance_%_to_drop_additional_enkindling_orb"]=5029, - ["chance_%_to_drop_additional_exalted_orb"]=5030, - ["chance_%_to_drop_additional_fusing_orb"]=5031, - ["chance_%_to_drop_additional_gem"]=5078, - ["chance_%_to_drop_additional_gemcutters_prism"]=5032, - ["chance_%_to_drop_additional_glassblowers_bauble"]=5033, - ["chance_%_to_drop_additional_grand_eldritch_ember"]=5034, - ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5035, - ["chance_%_to_drop_additional_greater_eldritch_ember"]=5036, - ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5037, - ["chance_%_to_drop_additional_instilling_orb"]=5038, - ["chance_%_to_drop_additional_jewellers_orb"]=5039, - ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5040, - ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5041, - ["chance_%_to_drop_additional_map_currency"]=5080, - ["chance_%_to_drop_additional_maps"]=5079, - ["chance_%_to_drop_additional_orb_of_alteration"]=5042, - ["chance_%_to_drop_additional_orb_of_annulment"]=5043, - ["chance_%_to_drop_additional_orb_of_binding"]=5044, - ["chance_%_to_drop_additional_orb_of_horizons"]=5045, - ["chance_%_to_drop_additional_orb_of_regret"]=5046, - ["chance_%_to_drop_additional_orb_of_scouring"]=5047, - ["chance_%_to_drop_additional_orb_of_unmaking"]=5048, - ["chance_%_to_drop_additional_regal_orb"]=5049, - ["chance_%_to_drop_additional_scarab"]=5081, - ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5082, - ["chance_%_to_drop_additional_scarab_abyss_polished"]=5083, - ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5084, - ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5085, - ["chance_%_to_drop_additional_scarab_beasts_polished"]=5086, - ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5087, - ["chance_%_to_drop_additional_scarab_blight_gilded"]=5088, - ["chance_%_to_drop_additional_scarab_blight_polished"]=5089, - ["chance_%_to_drop_additional_scarab_blight_rusted"]=5090, - ["chance_%_to_drop_additional_scarab_breach_gilded"]=5091, - ["chance_%_to_drop_additional_scarab_breach_polished"]=5092, - ["chance_%_to_drop_additional_scarab_breach_rusted"]=5093, - ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5094, - ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5095, - ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5096, - ["chance_%_to_drop_additional_scarab_elder_gilded"]=5097, - ["chance_%_to_drop_additional_scarab_elder_polished"]=5098, - ["chance_%_to_drop_additional_scarab_elder_rusted"]=5099, - ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5100, - ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5101, - ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5102, - ["chance_%_to_drop_additional_scarab_legion_gilded"]=5103, - ["chance_%_to_drop_additional_scarab_legion_polished"]=5104, - ["chance_%_to_drop_additional_scarab_legion_rusted"]=5105, - ["chance_%_to_drop_additional_scarab_maps_gilded"]=5106, - ["chance_%_to_drop_additional_scarab_maps_polished"]=5107, - ["chance_%_to_drop_additional_scarab_maps_rusted"]=5108, - ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5109, - ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5110, - ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5111, - ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5112, - ["chance_%_to_drop_additional_scarab_perandus_polished"]=5113, - ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5114, - ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5115, - ["chance_%_to_drop_additional_scarab_shaper_polished"]=5116, - ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5117, - ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5118, - ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5119, - ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5120, - ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5121, - ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5122, - ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5123, - ["chance_%_to_drop_additional_scarab_torment_gilded"]=5124, - ["chance_%_to_drop_additional_scarab_torment_polished"]=5125, - ["chance_%_to_drop_additional_scarab_torment_rusted"]=5126, - ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5127, - ["chance_%_to_drop_additional_scarab_uniques_polished"]=5128, - ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5129, - ["chance_%_to_drop_additional_tangled_currency"]=5130, - ["chance_%_to_drop_additional_tangled_influenced_item"]=5131, - ["chance_%_to_drop_additional_unique"]=5132, - ["chance_%_to_drop_additional_vaal_orb"]=5050, - ["chance_for_double_items_from_heist_chests_%"]=5051, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5052, - ["chance_for_extra_damage_roll_with_lightning_damage_%"]=5053, - ["chance_for_plants_to_be_overgrown_%"]=5054, - ["chance_for_skills_to_avoid_cooldown_%"]=5055, - ["chance_for_spells_to_not_pay_costs_%"]=5056, - ["chance_per_second_of_fire_spreading_between_enemies_%"]=1577, - ["chance_to_avoid_death_%"]=5133, - ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=2939, - ["chance_to_be_frozen_%"]=2606, - ["chance_to_be_frozen_shocked_ignited_%"]=2609, - ["chance_to_be_hindered_when_hit_by_spells_%"]=5134, - ["chance_to_be_ignited_%"]=2607, - ["chance_to_be_inflicted_with_an_ailment_+%"]=5135, - ["chance_to_be_maimed_when_hit_%"]=5136, - ["chance_to_be_poisoned_%"]=2992, - ["chance_to_be_sapped_when_hit_%"]=5137, - ["chance_to_be_scorched_when_hit_%"]=5138, - ["chance_to_be_shocked_%"]=2608, - ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5139, - ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5140, - ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5141, - ["chance_to_block_attacks_%_while_channelling"]=5142, - ["chance_to_counter_strike_when_hit_%"]=2507, - ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5143, - ["chance_to_crush_on_hit_%"]=5144, - ["chance_to_curse_self_with_punishment_on_kill_%"]=2762, - ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5145, - ["chance_to_deal_double_damage_%"]=5148, - ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5149, - ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5150, - ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5151, - ["chance_to_deal_double_damage_%_per_4_rage"]=5152, - ["chance_to_deal_double_damage_%_per_500_strength"]=5153, - ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5146, - ["chance_to_deal_double_damage_%_while_focused"]=5154, - ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5155, - ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5147, - ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10011, - ["chance_to_deal_double_damage_while_on_full_life_%"]=5156, - ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5157, - ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5158, - ["chance_to_double_armour_effect_on_hit_%"]=5159, - ["chance_to_double_stun_duration_%"]=3167, - ["chance_to_fire_1_additional_projectile_%_with_rollover"]=5160, - ["chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks"]=5161, - ["chance_to_fork_extra_projectile_%"]=5163, - ["chance_to_fork_extra_projectile_%_per_10_tribute"]=5162, - ["chance_to_fortify_on_melee_hit_+%"]=1962, - ["chance_to_fortify_on_melee_stun_%"]=5164, - ["chance_to_gain_1_more_charge_%"]=5166, - ["chance_to_gain_1_more_charge_%_per_10_tribute"]=5165, - ["chance_to_gain_1_more_endurance_charge_%"]=5167, - ["chance_to_gain_1_more_frenzy_charge_%"]=5168, - ["chance_to_gain_1_more_power_charge_%"]=5169, - ["chance_to_gain_1_more_random_charge_%"]=5170, - ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5171, - ["chance_to_gain_3_additional_exerted_attacks_%"]=5172, - ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5173, - ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5174, - ["chance_to_gain_endurance_charge_on_block_%"]=1812, - ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1528, - ["chance_to_gain_endurance_charge_on_crit_%"]=1525, - ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5175, - ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1526, - ["chance_to_gain_endurance_charge_when_hit_%"]=2431, - ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5176, - ["chance_to_gain_frenzy_charge_on_block_%"]=5178, - ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5177, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1529, - ["chance_to_gain_frenzy_charge_on_stun_%"]=5179, - ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=3935, - ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5180, - ["chance_to_gain_onslaught_on_flask_use_%"]=5181, - ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5182, - ["chance_to_gain_onslaught_on_kill_%"]=2643, - ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5183, - ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2999, - ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5184, - ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5185, - ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1530, - ["chance_to_gain_power_charge_on_melee_stun_%"]=2449, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5186, - ["chance_to_gain_power_charge_on_stun_%"]=2450, - ["chance_to_gain_power_charge_when_block_%"]=1816, - ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2443, - ["chance_to_gain_random_standard_charge_on_hit_%"]=5187, - ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5188, - ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2751, - ["chance_to_gain_vaal_soul_on_kill_%"]=2746, - ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5189, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3003, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5190, - ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3001, - ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5191, - ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3002, - ["chance_to_ignite_is_doubled"]=5192, - ["chance_to_ignore_hexproof_%"]=5193, - ["chance_to_inflict_10_incision_on_attack_hit_%"]=5194, - ["chance_to_inflict_additional_impale_%"]=5195, - ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5196, - ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5197, - ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5198, - ["chance_to_inflict_frostburn_%"]=1720, - ["chance_to_inflict_incision_on_attack_hit_%"]=5199, - ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5200, - ["chance_to_inflict_sap_on_enemy_on_block_%"]=5201, - ["chance_to_inflict_sapped_%"]=1722, - ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5202, - ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5203, - ["chance_to_intimidate_on_hit_%"]=5204, - ["chance_to_leave_2_ground_blades_%"]=5205, - ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5206, - ["chance_to_not_consume_glory_%"]=5208, - ["chance_to_not_consume_infusion_%"]=5209, - ["chance_to_not_consume_instilling_%"]=5210, - ["chance_to_place_an_additional_mine_%"]=3151, - ["chance_to_poison_%_vs_cursed_enemies"]=3786, - ["chance_to_poison_on_critical_strike_with_bow_%"]=1311, - ["chance_to_poison_on_critical_strike_with_dagger_%"]=1312, - ["chance_to_poison_on_hit_%_per_power_charge"]=5213, - ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5211, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5212, - ["chance_to_poison_on_hit_with_attacks_%"]=2815, - ["chance_to_poison_on_melee_hit_%"]=3831, - ["chance_to_retain_40%_of_glory_on_use_%"]=5214, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5215, - ["chance_to_scorch_%"]=1718, - ["chance_to_shock_%_while_using_flask"]=2586, - ["chance_to_shock_chilled_enemies_%"]=5216, - ["chance_to_start_energy_shield_recharge_%_on_gaining_infusion"]=5217, - ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5218, - ["chance_to_summon_two_totems_%"]=5219, - ["chance_to_taunt_on_hit_%"]=3045, - ["chance_to_throw_4_additional_traps_%"]=5220, - ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=561, - ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=414, - ["chance_to_unnerve_on_hit_%"]=5221, - ["channelled_skill_damage_+%"]=5222, - ["channelled_skill_damage_+%_per_10_devotion"]=5223, - ["chaos_critical_strike_chance_+%"]=1341, - ["chaos_critical_strike_multiplier_+"]=1362, - ["chaos_damage_%_taken_from_mana_before_life"]=5229, - ["chaos_damage_+%"]=882, - ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5230, - ["chaos_damage_+%_per_equipped_corrupted_item"]=2741, - ["chaos_damage_+%_per_level"]=2634, - ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5231, - ["chaos_damage_+%_while_affected_by_herald_of_plague"]=5224, - ["chaos_damage_can_chill"]=2543, - ["chaos_damage_can_freeze"]=2544, - ["chaos_damage_can_ignite_chill_and_shock"]=2561, - ["chaos_damage_can_shock"]=2545, - ["chaos_damage_cannot_poison"]=2562, - ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5225, - ["chaos_damage_does_not_damage_minions_energy_shield_extra_hard"]=3985, - ["chaos_damage_over_time_+%"]=1132, - ["chaos_damage_over_time_heals_while_leeching_life"]=5226, - ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5227, - ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1165, - ["chaos_damage_over_time_multiplier_+_with_attacks"]=1167, - ["chaos_damage_resistance_%_per_endurance_charge"]=5232, - ["chaos_damage_resistance_%_per_poison_stack"]=5234, - ["chaos_damage_resistance_%_when_on_low_life"]=2251, - ["chaos_damage_resistance_%_when_stationary"]=5235, - ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5236, - ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5237, - ["chaos_damage_resistance_is_doubled"]=5233, - ["chaos_damage_resisted_by_lowest_resistance"]=5238, - ["chaos_damage_taken_+"]=2517, - ["chaos_damage_taken_+%"]=1917, - ["chaos_damage_taken_over_time_+%"]=1645, - ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5239, - ["chaos_damage_to_return_to_melee_attacker"]=1887, - ["chaos_damage_to_return_when_hit"]=1892, - ["chaos_damage_with_attack_skills_+%"]=5240, - ["chaos_damage_with_spell_skills_+%"]=5241, - ["chaos_dot_multiplier_+"]=1166, - ["chaos_golem_damage_+%"]=3293, - ["chaos_golem_elemental_resistances_%"]=3572, - ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5242, - ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5243, - ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5244, - ["chaos_immunity"]=1856, - ["chaos_inoculation_keystone_energy_shield_+%_final"]=1876, - ["chaos_resist_unnaffected_by_area_penalites"]=5245, - ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3649, - ["chaos_resistance_+_while_using_flask"]=2926, - ["chaos_skill_chance_to_hinder_on_hit_%"]=5246, - ["chaos_skill_effect_duration_+%"]=1597, - ["chaos_skill_gem_level_+"]=5247, - ["chaos_skills_area_of_effect_+%"]=5248, - ["chaos_spell_skill_gem_level_+"]=951, - ["chaos_weakness_ignores_hexproof"]=2294, - ["chaos_weakness_mana_reservation_+%"]=3627, - ["charge_duration_+%"]=2675, - ["charge_skip_consume_chance_%"]=5249, - ["charged_attack_damage_+%"]=3719, - ["charged_attack_damage_per_stack_+%_final"]=3728, - ["charged_attack_radius_+%"]=3726, - ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3439, - ["charged_dash_damage_+%"]=3328, - ["charged_dash_movement_speed_+%_final"]=5250, - ["charges_gained_+%"]=1005, - ["charm_charges_gained_+%"]=5251, - ["charm_charges_used_%_granted_to_life_flasks"]=5252, - ["charm_charges_used_+%"]=5253, - ["charm_create_consecrated_ground_when_used"]=5254, - ["charm_defend_with_double_armour_during_effect"]=5255, - ["charm_duration_+%"]=902, - ["charm_duration_+%_per_25_tribute"]=5256, - ["charm_effect_+%"]=5258, - ["charm_effect_+%_per_10_tribute"]=5257, - ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5259, - ["charm_energy_shield_recharge_starts_when_used"]=5260, - ["charm_gain_X_guard_for_duration"]=924, - ["charm_gain_onslaught_during_effect"]=5261, - ["charm_grants_frenzy_charge_when_used"]=5262, - ["charm_grants_power_charge_when_used"]=5263, - ["charm_grants_up_to_your_maximum_rage_when_used"]=5264, - ["charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5265, - ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5266, - ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5267, - ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5268, - ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5269, - ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5270, - ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5271, - ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5272, - ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5273, - ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5274, - ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5275, - ["charm_recover_X_life_when_used"]=925, - ["charm_recover_X_mana_when_used"]=926, - ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5276, - ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5277, - ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5278, - ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5279, - ["charms_%_chance_to_not_consume_charges"]=5280, - ["charms_use_no_charges"]=5281, - ["chest_drop_additional_corrupted_item_divination_cards"]=5282, - ["chest_drop_additional_currency_item_divination_cards"]=5283, - ["chest_drop_additional_divination_cards_from_current_world_area"]=5284, - ["chest_drop_additional_divination_cards_from_same_set"]=5285, - ["chest_drop_additional_unique_item_divination_cards"]=5286, - ["chest_item_quantity_+%"]=1413, - ["chest_item_rarity_+%"]=1418, - ["chest_number_of_additional_pirate_uniques_to_drop"]=5287, - ["chest_trap_defuse_%"]=1604, - ["chieftain_burning_damage_+%_final"]=1719, - ["chill_and_freeze_duration_+%"]=5288, - ["chill_and_freeze_duration_based_on_%_energy_shield"]=2286, - ["chill_attackers_for_4_seconds_on_block_%_chance"]=5289, - ["chill_chance_based_on_damage_fixed_magnitude"]=5290, - ["chill_duration_+%"]=1563, - ["chill_effect_+%"]=5293, - ["chill_effect_+%_while_mana_leeching"]=5291, - ["chill_effect_+%_with_critical_strikes"]=5294, - ["chill_effect_is_reversed"]=5292, - ["chill_effectiveness_on_self_+%"]=1446, - ["chill_enemy_when_hit_duration_ms"]=2781, - ["chill_minimum_slow_%"]=4015, - ["chill_minimum_slow_%_from_mastery"]=5295, - ["chill_nearby_enemies_when_you_focus"]=5296, - ["chill_prevention_ms_when_chilled"]=2566, - ["chilled_effect_on_self_+%_while_shapeshifted"]=5297, - ["chilled_enemies_have_no_elemental_resistance"]=5298, - ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3023, - ["chilled_ground_when_hit_with_attack_%"]=5299, - ["chilled_monsters_take_+%_burning_damage"]=2446, - ["chilling_areas_also_grant_curse_effect_+%"]=5300, - ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5301, - ["chills_from_your_hits_cause_shattering"]=5302, - ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5303, - ["chronomancer_reserves_no_mana"]=5304, - ["clarity_mana_reservation_+%"]=3615, - ["clarity_mana_reservation_efficiency_+%"]=5306, - ["clarity_mana_reservation_efficiency_-2%_per_1"]=5305, - ["clarity_reserves_no_mana"]=5307, - ["claw_accuracy_rating"]=1699, - ["claw_accuracy_rating_+%"]=1298, - ["claw_attack_speed_+%"]=1281, - ["claw_critical_strike_chance_+%"]=1322, - ["claw_critical_strike_multiplier_+"]=1350, - ["claw_damage_+%"]=1202, - ["claw_damage_+%_while_on_low_life"]=5309, - ["claw_damage_against_enemies_on_low_life_+%"]=5308, - ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2610, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5311, - ["cleave_attack_speed_+%"]=3440, - ["cleave_damage_+%"]=3225, - ["cleave_fortify_on_hit"]=5310, - ["cleave_radius_+%"]=3394, - ["close_range_enemies_avoid_your_projectiles"]=8655, - ["cluster_burst_spawn_amount"]=3691, - ["cobra_lash_damage_+%"]=5312, - ["cobra_lash_number_of_additional_chains"]=5313, - ["cobra_lash_projectile_speed_+%"]=5314, - ["cold_ailment_duration_+%"]=5315, - ["cold_ailment_effect_+%"]=5317, - ["cold_ailment_effect_+%_against_shocked_enemies"]=5316, - ["cold_and_chaos_damage_resistance_%"]=5318, - ["cold_and_lightning_damage_resistance_%"]=2480, - ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5319, - ["cold_attack_damage_+%"]=1120, - ["cold_attack_damage_+%_while_holding_a_shield"]=1123, - ["cold_axe_damage_+%"]=1197, - ["cold_bow_damage_+%"]=1217, - ["cold_claw_damage_+%"]=1205, - ["cold_critical_strike_chance_+%"]=1339, - ["cold_critical_strike_multiplier_+"]=1360, - ["cold_dagger_damage_+%"]=1209, - ["cold_damage_+%"]=880, - ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5321, - ["cold_damage_+%_per_1%_block_chance"]=3186, - ["cold_damage_+%_per_25_dexterity"]=5322, - ["cold_damage_+%_per_25_intelligence"]=5323, - ["cold_damage_+%_per_25_strength"]=5324, - ["cold_damage_+%_per_cold_resistance_above_75"]=5320, - ["cold_damage_+%_per_frenzy_charge"]=5325, - ["cold_damage_+%_per_missing_cold_resistance"]=5326, - ["cold_damage_+%_while_affected_by_hatred"]=5327, - ["cold_damage_+%_while_affected_by_herald_of_ice"]=5328, - ["cold_damage_+%_while_off_hand_is_empty"]=5329, - ["cold_damage_can_ignite"]=2546, - ["cold_damage_can_shock"]=2547, - ["cold_damage_cannot_chill"]=2560, - ["cold_damage_cannot_freeze"]=2559, - ["cold_damage_over_time_+%"]=1131, - ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1162, - ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5330, - ["cold_damage_resistance_+%"]=1440, - ["cold_damage_resistance_is_%"]=1438, - ["cold_damage_taken_%_as_fire"]=2818, - ["cold_damage_taken_%_as_lightning"]=2819, - ["cold_damage_taken_+"]=5332, - ["cold_damage_taken_+%"]=3007, - ["cold_damage_taken_+%_if_have_been_hit_recently"]=5333, - ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5331, - ["cold_damage_to_return_to_melee_attacker"]=1884, - ["cold_damage_to_return_when_hit"]=1890, - ["cold_damage_while_dual_wielding_+%"]=1181, - ["cold_damage_with_attack_skills_+%"]=5334, - ["cold_damage_with_spell_skills_+%"]=5335, - ["cold_dot_multiplier_+"]=1163, - ["cold_exposure_effect_+%"]=5336, - ["cold_exposure_on_hit_magnitude"]=5337, - ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5338, - ["cold_hit_and_dot_damage_%_taken_as_fire"]=5339, - ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5340, - ["cold_hit_damage_+%_vs_shocked_enemies"]=5341, - ["cold_mace_damage_+%"]=1213, - ["cold_penetration_%_vs_chilled_enemies"]=5342, - ["cold_projectile_mine_critical_multiplier_+"]=5343, - ["cold_projectile_mine_damage_+%"]=5344, - ["cold_projectile_mine_throwing_speed_+%"]=5346, - ["cold_projectile_mine_throwing_speed_negated_+%"]=5345, - ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5347, - ["cold_resist_unaffected_by_area_penalties"]=5348, - ["cold_skill_chance_to_inflict_cold_exposure_%"]=5349, - ["cold_skill_gem_level_+"]=5350, - ["cold_skills_chance_to_poison_on_hit_%"]=5351, - ["cold_snap_cooldown_speed_+%"]=3464, - ["cold_snap_damage_+%"]=3299, - ["cold_snap_gain_power_charge_on_kill_%"]=2891, - ["cold_snap_radius_+%"]=3421, - ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5352, - ["cold_spell_skill_gem_level_+"]=949, - ["cold_staff_damage_+%"]=1201, - ["cold_sword_damage_+%"]=1222, - ["cold_wand_damage_+%"]=1226, - ["cold_weakness_ignores_hexproof"]=2295, - ["combo_falloff_speed_+%"]=5353, - ["combo_finisher_damage_+%_up_to_40%"]=5354, - ["combust_area_of_effect_+%"]=5355, - ["combust_is_disabled"]=5356, - ["companion_accuracy_rating_+%"]=5357, - ["companion_area_of_effect_+%"]=5358, - ["companion_attack_speed_+%"]=5359, - ["companion_chaos_resistance_%"]=5360, - ["companion_damage_+%"]=5363, - ["companion_damage_+%_vs_immobilised_enemies"]=5361, - ["companion_damage_increases_and_reductions_also_affects_you"]=5362, - ["companion_elemental_resistance_%"]=5364, - ["companion_maim_on_hit_%"]=5365, - ["companion_maximum_life_+%"]=5366, - ["companion_reservation_+%"]=5367, - ["companion_takes_%_damage_before_you"]=5368, - ["companion_takes_%_damage_before_you_from_support"]=5369, - ["companions_gain_your_dexterity"]=5370, - ["companions_gain_your_strength"]=5371, - ["companions_in_presence_damage_+%_while_you_are_shapeshifted"]=5372, - ["companions_in_presence_have_onslaught_while_you_are_shapeshifted"]=5373, - ["conductivity_curse_effect_+%"]=3592, - ["conductivity_duration_+%"]=3505, - ["conductivity_mana_reservation_+%"]=3628, - ["conductivity_no_reservation"]=5374, - ["connected_notables_grant_armour_display"]=5375, - ["consecrate_ground_for_3_seconds_when_hit_%"]=3156, - ["consecrate_ground_on_kill_%_for_3_seconds"]=3024, - ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3706, - ["consecrate_on_block_%_chance_to_create"]=2269, - ["consecrate_on_crit_%_chance_to_create"]=2327, - ["consecrated_ground_additional_physical_damage_reduction_%"]=5376, - ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5377, - ["consecrated_ground_area_+%"]=5378, - ["consecrated_ground_effect_+%"]=5379, - ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5384, - ["consecrated_ground_enemy_damage_taken_+%"]=5380, - ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5381, - ["consecrated_ground_immune_to_curses"]=5382, - ["consecrated_ground_immune_to_status_ailments"]=5383, - ["consecrated_ground_on_death"]=5385, - ["consecrated_ground_on_hit"]=5386, - ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5387, - ["consecrated_ground_while_stationary_radius"]=5388, - ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5389, - ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5390, - ["consecrated_path_area_of_effect_+%"]=5391, - ["consecrated_path_damage_+%"]=5392, - ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5396, - ["consume_X_life_instead_of_last_crossbow_bolt"]=5393, - ["consume_enemy_freeze_to_guarantee_crit"]=5394, - ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5395, - ["consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage"]=5397, - ["contagion_damage_+%"]=3324, - ["contagion_duration_+%"]=3510, - ["contagion_radius_+%"]=3427, - ["contagion_spread_on_hit_affected_enemy_%"]=5398, - ["conversation_trap_converted_enemy_damage_+%"]=5399, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5400, - ["conversion_trap_cooldown_speed_+%"]=3477, - ["convert_all_life_leech_to_energy_shield_leech"]=5401, - ["converted_enemies_damage_+%"]=3319, - ["convocation_buff_effect_+%"]=3605, - ["convocation_cooldown_speed_+%"]=3465, - ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5402, - ["cooldown_recovery_+%_per_power_charge"]=5403, - ["cooldown_speed_+%_per_brand_up_to_40%"]=5404, - ["corpse_erruption_base_maximum_number_of_geyers"]=5405, - ["corpse_eruption_cast_speed_+%"]=5406, - ["corpse_eruption_damage_+%"]=5407, - ["corpse_warp_cast_speed_+%"]=5408, - ["corpse_warp_damage_+%"]=5409, - ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5410, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5411, - ["corrupted_gem_experience_gain_+%"]=2753, - ["corrupted_skill_gem_level_+"]=5412, - ["corrupted_spell_skill_gem_level_+"]=947, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=5413, - ["corrupting_fever_damage_+%"]=5414, - ["corrupting_fever_duration_+%"]=5415, - ["counter_attacks_maximum_added_cold_damage"]=3783, - ["counter_attacks_maximum_added_physical_damage"]=3776, - ["counter_attacks_minimum_added_cold_damage"]=3783, - ["counter_attacks_minimum_added_physical_damage"]=3776, - ["counterattacks_cooldown_recovery_+%"]=5416, - ["counterattacks_deal_double_damage"]=5417, - ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5418, - ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5419, - ["cover_in_ash_on_hit_%"]=5420, - ["cover_in_ash_on_hit_%_while_you_are_burning"]=5421, - ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5422, - ["cover_in_frost_on_hit"]=5423, - ["crab_aspect_crab_barrier_max_+"]=3930, - ["crackling_lance_cast_speed_+%"]=5424, - ["crackling_lance_damage_+%"]=5425, - ["create_additional_brand_%_chance"]=5426, - ["create_blighted_spore_on_killing_rare_enemy"]=5427, - ["create_chilling_ground_on_freeze"]=5428, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5429, - ["create_consecrated_ground_on_kill_%"]=5430, - ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5431, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=5432, - ["create_profane_ground_instead_of_consecrated_ground"]=5433, - ["create_smoke_cloud_on_kill_%_chance"]=5434, - ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=5435, - ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5436, - ["cremation_base_fires_projectile_every_x_ms"]=5437, - ["critical_chance_luck_against_parry_debuffed_enemies"]=5439, - ["critical_damage_+1%_per_X_current_life"]=5440, - ["critical_hit_bleeding_effect_+%"]=5441, - ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5442, - ["critical_hit_chance_+%_vs_humanoids"]=5443, - ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5444, - ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5445, - ["critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance"]=5446, - ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5447, - ["critical_hit_damaging_ailment_effect_+%"]=5448, - ["critical_hit_ignite_effect_+%"]=5449, - ["critical_hit_poison_effect_+%"]=5450, - ["critical_hits_always_apply_impale"]=5451, - ["critical_hits_cannot_consume_impale"]=5452, - ["critical_hits_ignore_armour"]=5453, - ["critical_multiplier_+%_per_10_max_es_on_shield"]=5454, - ["critical_strike_%_chance_to_deal_double_damage"]=5523, - ["critical_strike_chance_+%"]=957, - ["critical_strike_chance_+%_against_enemies_marked_by_you"]=5455, - ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5470, - ["critical_strike_chance_+%_during_any_flask_effect"]=5471, - ["critical_strike_chance_+%_final_while_affected_by_precision"]=5456, - ["critical_strike_chance_+%_final_while_unhinged"]=5472, - ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3064, - ["critical_strike_chance_+%_for_forking_arrows"]=3893, - ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5473, - ["critical_strike_chance_+%_if_enemy_killed_recently"]=5474, - ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5475, - ["critical_strike_chance_+%_if_have_not_crit_recently"]=5476, - ["critical_strike_chance_+%_if_havent_blocked_recently"]=5477, - ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5478, - ["critical_strike_chance_+%_if_triggered_skill_recently"]=5457, - ["critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently"]=5458, - ["critical_strike_chance_+%_per_10_strength"]=5479, - ["critical_strike_chance_+%_per_25_intelligence"]=5480, - ["critical_strike_chance_+%_per_8_strength"]=2600, - ["critical_strike_chance_+%_per_blitz_charge"]=5481, - ["critical_strike_chance_+%_per_brand"]=5482, - ["critical_strike_chance_+%_per_endurance_charge"]=5483, - ["critical_strike_chance_+%_per_frenzy_charge"]=5484, - ["critical_strike_chance_+%_per_intensity"]=5485, - ["critical_strike_chance_+%_per_level"]=2620, - ["critical_strike_chance_+%_per_lightning_adaptation"]=4000, - ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5486, - ["critical_strike_chance_+%_per_power_charge"]=2807, - ["critical_strike_chance_+%_per_righteous_charge"]=5487, - ["critical_strike_chance_+%_per_stackable_unique_jewel"]=3738, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=2828, - ["critical_strike_chance_+%_vs_blinded_enemies"]=3022, - ["critical_strike_chance_+%_vs_dazed_enemies"]=5459, - ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5460, - ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3638, - ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3134, - ["critical_strike_chance_+%_vs_exposed"]=5461, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=5462, - ["critical_strike_chance_+%_vs_marked_enemies"]=5463, - ["critical_strike_chance_+%_vs_poisoned_enemies"]=2919, - ["critical_strike_chance_+%_vs_shocked_enemies"]=5438, - ["critical_strike_chance_+%_vs_taunted_enemies"]=5488, - ["critical_strike_chance_+%_when_in_main_hand"]=3761, - ["critical_strike_chance_+%_while_affected_by_wrath"]=5489, - ["critical_strike_chance_+%_while_channelling"]=5490, - ["critical_strike_chance_+%_while_shapeshifted"]=5464, - ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10116, - ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5494, - ["critical_strike_chance_+%_with_at_least_200_int"]=3948, - ["critical_strike_chance_+%_with_unarmed_attacks"]=5465, - ["critical_strike_chance_against_cursed_enemies_+%"]=5466, - ["critical_strike_chance_against_enemies_on_full_life_+%"]=3359, - ["critical_strike_chance_cannot_be_rerolled"]=5467, - ["critical_strike_chance_increased_by_lightning_resistance"]=5468, - ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5469, - ["critical_strike_chance_while_dual_wielding_+%"]=1336, - ["critical_strike_chance_while_wielding_shield_+%"]=1330, - ["critical_strike_damage_cannot_be_reflected"]=5495, - ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5521, - ["critical_strike_multiplier_+%_with_claws_daggers"]=5522, - ["critical_strike_multiplier_+_during_any_flask_effect"]=5500, - ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5501, - ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5502, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5503, - ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5504, - ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5505, - ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5506, - ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5496, - ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5507, - ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5508, - ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5509, - ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5510, - ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5511, - ["critical_strike_multiplier_+_per_1%_block_chance"]=2827, - ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5512, - ["critical_strike_multiplier_+_per_power_charge"]=2909, - ["critical_strike_multiplier_+_vs_bleeding_enemies"]=2825, - ["critical_strike_multiplier_+_vs_burning_enemies"]=2826, - ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3159, - ["critical_strike_multiplier_+_vs_stunned_enemies"]=5497, - ["critical_strike_multiplier_+_vs_taunted_enemies"]=5513, - ["critical_strike_multiplier_+_vs_unique_enemies"]=5514, - ["critical_strike_multiplier_+_while_affected_by_anger"]=5515, - ["critical_strike_multiplier_+_while_affected_by_precision"]=5516, - ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1738, - ["critical_strike_multiplier_+_with_herald_skills"]=5520, - ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5498, - ["critical_strike_multiplier_is_250"]=5499, - ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3048, - ["critical_strike_multiplier_while_dual_wielding_+"]=1355, - ["critical_strike_multiplier_with_dagger_+"]=1344, - ["critical_strikes_always_knockback_shocked_enemies"]=5524, - ["critical_strikes_deal_no_damage"]=5525, - ["critical_strikes_do_not_always_ignite"]=5526, - ["critical_strikes_from_spells_have_no_multiplier"]=5527, - ["critical_strikes_ignore_elemental_resistances"]=3062, - ["critical_strikes_ignore_lightning_resistance"]=5528, - ["critical_strikes_ignore_positive_elemental_resistances"]=5529, - ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5530, - ["critical_support_gem_level_+"]=5531, - ["crits_have_culling_strike"]=3052, - ["crossbow_accuracy_rating"]=3875, - ["crossbow_accuracy_rating_+%"]=3876, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=5532, - ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5533, - ["crossbow_attack_speed_+%"]=3877, - ["crossbow_critical_strike_chance_+%"]=3878, - ["crossbow_critical_strike_multiplier_+"]=3879, - ["crossbow_damage_+%"]=3873, - ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5534, - ["crossbow_elemental_damage_+%"]=3874, - ["crossbow_physical_damage_+%"]=3880, - ["crossbow_skill_gem_level_+"]=5535, - ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5536, - ["cruelty_effect_+%"]=5537, - ["crush_for_2_seconds_on_hit_%_chance"]=5538, - ["crush_on_hit_ms_vs_full_life_enemies"]=5539, - ["culling_strike_enemies_on_block"]=5540, - ["culling_strike_on_burning_enemies"]=2514, - ["culling_strike_on_enemies_affected_by_poachers_mark"]=5541, - ["culling_strike_threshold_+%"]=5544, - ["culling_strike_threshold_+%_vs_immobilised_enemies"]=5542, - ["culling_strike_threshold_+%_vs_rare_or_unique_monsters"]=5543, - ["culling_strike_vs_beasts_while_in_presence_of_beast_companion"]=5545, - ["culling_strike_vs_cursed_enemies"]=5546, - ["culling_strike_vs_marked_enemy"]=5547, - ["current_endurance_charges"]=13, - ["current_energy_shield_%_as_elemental_damage_reduction"]=5549, - ["current_energy_shield_%_as_physical_damage_reduction"]=5548, - ["current_frenzy_charges"]=14, - ["current_power_charges"]=15, - ["curse_area_of_effect_+%"]=1899, - ["curse_aura_skill_area_of_effect_+%"]=5550, - ["curse_aura_skills_mana_reservation_efficiency_+%"]=5553, - ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5552, - ["curse_aura_skills_reservation_efficiency_+%"]=5551, - ["curse_cast_speed_+%"]=1893, - ["curse_delay_+%"]=5554, - ["curse_delay_+%_per_20_tribute"]=5555, - ["curse_duration_+%_if_you_have_at_least_100_tribute"]=5556, - ["curse_duration_+%_per_10_tribute"]=5557, - ["curse_effect_+%"]=2290, - ["curse_effect_+%_if_200_mana_spent_recently"]=5560, - ["curse_effect_on_self_+%"]=1859, - ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5558, - ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5559, - ["curse_mana_cost_+%"]=5561, - ["curse_on_block_enfeeble_chance_%"]=5562, - ["curse_on_hit_%_conductivity"]=2207, - ["curse_on_hit_%_despair"]=2208, - ["curse_on_hit_%_elemental_weakness"]=2209, - ["curse_on_hit_%_enfeeble"]=2206, - ["curse_on_hit_%_flammability"]=2210, - ["curse_on_hit_%_frostbite"]=2211, - ["curse_on_hit_%_temporal_chains"]=2212, - ["curse_on_hit_%_vulnerability"]=2213, - ["curse_on_hit_level_10_vulnerability_%"]=2217, - ["curse_on_hit_level_assassins_mark"]=562, - ["curse_on_hit_level_cold_weakness"]=2219, - ["curse_on_hit_level_conductivity"]=2220, - ["curse_on_hit_level_despair"]=2221, - ["curse_on_hit_level_elemental_weakness"]=2218, - ["curse_on_hit_level_enfeeble"]=2222, - ["curse_on_hit_level_flammability"]=2223, - ["curse_on_hit_level_frostbite"]=2224, - ["curse_on_hit_level_poachers_mark"]=563, - ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=564, - ["curse_on_hit_level_temporal_chains"]=2215, - ["curse_on_hit_level_vulnerability"]=2216, - ["curse_on_hit_level_warlords_mark"]=565, - ["curse_pillar_curse_effect_+%_final"]=2291, - ["curse_skill_effect_duration_+%"]=5563, - ["curse_skill_gem_level_+"]=5564, - ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2214, - ["curse_with_punishment_on_hit_%"]=5565, - ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5567, - ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5568, - ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5569, - ["cursed_enemies_are_exorcised_on_kill"]=5566, - ["cursed_with_silence_when_hit_%_chance"]=5570, - ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5571, - ["curses_never_expire"]=1852, - ["curses_reflected_to_self"]=5572, - ["curses_you_inflict_remain_after_death"]=5573, - ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5574, - ["cyclone_and_sweep_melee_knockback"]=5575, - ["cyclone_attack_speed_+%"]=3450, - ["cyclone_damage_+%"]=3272, - ["cyclone_max_stages_movement_speed_+%"]=5576, - ["dagger_accuracy_rating"]=1697, - ["dagger_accuracy_rating_+%"]=1299, - ["dagger_attack_speed_+%"]=1282, - ["dagger_critical_strike_chance_+%"]=1323, - ["dagger_damage_+%"]=1206, - ["damage_+%"]=1111, - ["damage_+%_against_enemies_marked_by_you"]=5607, - ["damage_+%_against_enemies_with_fully_broken_armour"]=5577, - ["damage_+%_during_flask_effect"]=3662, - ["damage_+%_final_against_bloodlusting_enemies"]=5578, - ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5608, - ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5579, - ["damage_+%_final_with_at_least_1_nearby_ally"]=5609, - ["damage_+%_for_4_seconds_on_crit"]=3063, - ["damage_+%_for_4_seconds_on_detonation"]=3084, - ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3665, - ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3642, - ["damage_+%_for_each_herald_affecting_you"]=5610, - ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3770, - ["damage_+%_for_each_trap_and_mine_active"]=3656, - ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5611, - ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3650, - ["damage_+%_if_consumed_frenzy_charge_recently"]=5580, - ["damage_+%_if_enemy_killed_recently"]=5612, - ["damage_+%_if_enemy_killed_recently_final"]=3795, - ["damage_+%_if_enemy_shattered_recently"]=5613, - ["damage_+%_if_firing_atleast_7_projectiles"]=5614, - ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3294, - ["damage_+%_if_have_been_ignited_recently"]=5615, - ["damage_+%_if_have_crit_in_past_8_seconds"]=5616, - ["damage_+%_if_only_one_enemy_nearby"]=5617, - ["damage_+%_if_skill_costs_life"]=5618, - ["damage_+%_if_triggered_skill_recently"]=5581, - ["damage_+%_if_used_travel_skill_recently"]=5619, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=3826, - ["damage_+%_if_you_have_frozen_enemy_recently"]=5620, - ["damage_+%_if_you_have_shocked_recently"]=5621, - ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3671, - ["damage_+%_on_consecrated_ground"]=3155, - ["damage_+%_on_full_energy_shield"]=5646, - ["damage_+%_per_1%_block_chance"]=5629, - ["damage_+%_per_1%_increased_item_found_quantity"]=5630, - ["damage_+%_per_100_dexterity"]=5622, - ["damage_+%_per_100_intelligence"]=5623, - ["damage_+%_per_100_strength"]=5624, - ["damage_+%_per_10_dex"]=5625, - ["damage_+%_per_10_levels"]=2516, - ["damage_+%_per_15_dex"]=5626, - ["damage_+%_per_15_int"]=5627, - ["damage_+%_per_15_strength"]=5628, - ["damage_+%_per_5_of_your_lowest_attribute"]=5631, - ["damage_+%_per_abyss_jewel_type"]=3746, - ["damage_+%_per_active_curse_on_self"]=1134, - ["damage_+%_per_active_golem"]=5632, - ["damage_+%_per_active_link"]=5633, - ["damage_+%_per_active_minion"]=5582, - ["damage_+%_per_active_trap"]=3073, - ["damage_+%_per_crab_charge"]=3931, - ["damage_+%_per_different_warcry_used_recently"]=5634, - ["damage_+%_per_endurance_charge"]=2836, - ["damage_+%_per_enemy_elemental_ailment"]=5583, - ["damage_+%_per_equipped_magic_item"]=2723, - ["damage_+%_per_fire_adaptation"]=3998, - ["damage_+%_per_frenzy_charge"]=2913, - ["damage_+%_per_frenzy_power_or_endurance_charge"]=5635, - ["damage_+%_per_poison_stack"]=5584, - ["damage_+%_per_poison_up_to_75%"]=5636, - ["damage_+%_per_power_charge"]=5637, - ["damage_+%_per_raised_zombie"]=5585, - ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=5638, - ["damage_+%_per_shock"]=2454, - ["damage_+%_per_warcry_used_recently"]=5639, - ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=5640, - ["damage_+%_to_rare_and_unique_enemies"]=2845, - ["damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute"]=5586, - ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3666, - ["damage_+%_vs_abyssal_monsters"]=5641, - ["damage_+%_vs_blinded_enemies"]=2490, - ["damage_+%_vs_burning_enemies"]=3059, - ["damage_+%_vs_dazed_enemies"]=5587, - ["damage_+%_vs_demons"]=2445, - ["damage_+%_vs_enemies_affected_by_status_ailments"]=3069, - ["damage_+%_vs_enemies_on_full_life"]=5642, - ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2489, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1154, - ["damage_+%_vs_frozen_enemies"]=1150, - ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1155, - ["damage_+%_vs_hindered_enemies"]=3687, - ["damage_+%_vs_immobilised_enemies"]=5588, - ["damage_+%_vs_immobilised_enemies_while_shapeshifted"]=5589, - ["damage_+%_vs_magic_monsters"]=5644, - ["damage_+%_vs_rare_monsters"]=2486, - ["damage_+%_vs_taunted_enemies"]=5645, - ["damage_+%_when_currently_has_no_energy_shield"]=2415, - ["damage_+%_when_not_on_low_life"]=2841, - ["damage_+%_when_on_burning_ground"]=1835, - ["damage_+%_when_on_full_life"]=5647, - ["damage_+%_when_on_low_life"]=1133, - ["damage_+%_while_affected_by_a_herald"]=5648, - ["damage_+%_while_channelling"]=5649, - ["damage_+%_while_dead"]=2738, - ["damage_+%_while_es_not_full"]=3658, - ["damage_+%_while_fortified"]=2834, - ["damage_+%_while_ignited"]=2481, - ["damage_+%_while_in_blood_stance"]=5650, - ["damage_+%_while_in_presence_of_companion"]=5590, - ["damage_+%_while_leeching"]=2709, - ["damage_+%_while_life_leeching"]=1135, - ["damage_+%_while_mana_leeching"]=1137, - ["damage_+%_while_shapeshifted"]=5591, - ["damage_+%_while_totem_active"]=2842, - ["damage_+%_while_unarmed"]=3177, - ["damage_+%_while_using_charm"]=5651, - ["damage_+%_while_wielding_bow_if_totem_summoned"]=5652, - ["damage_+%_while_wielding_two_different_weapon_types"]=5653, - ["damage_+%_while_wielding_wand"]=1223, - ["damage_+%_while_you_have_a_summoned_golem"]=5654, - ["damage_+%_with_bow_skills"]=885, - ["damage_+%_with_daggers_against_full_life_enemies"]=5655, - ["damage_+%_with_herald_skills"]=5656, - ["damage_+%_with_maces_sceptres_staves"]=5657, - ["damage_+%_with_melee_weapons"]=1185, - ["damage_+%_with_movement_skills"]=1290, - ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=5658, - ["damage_+%_with_one_handed_melee_weapons"]=1184, - ["damage_+%_with_one_handed_weapons"]=2959, - ["damage_+%_with_shield_skills"]=5659, - ["damage_+%_with_shield_skills_per_2%_attack_block"]=5660, - ["damage_+%_with_two_handed_melee_weapons"]=1190, - ["damage_+%_with_two_handed_weapons"]=2960, - ["damage_+1%_per_X_strength_when_in_main_hand"]=2455, - ["damage_against_undead_+%"]=5592, - ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3065, - ["damage_blocked_%_recouped_as_mana"]=5593, - ["damage_over_time_+%"]=1128, - ["damage_over_time_+%_per_frenzy_charge"]=1821, - ["damage_over_time_+%_per_power_charge"]=1822, - ["damage_over_time_+%_while_affected_by_a_herald"]=5595, - ["damage_over_time_+%_while_dual_wielding"]=1823, - ["damage_over_time_+%_while_holding_a_shield"]=1824, - ["damage_over_time_+%_while_wielding_two_handed_weapon"]=1825, - ["damage_over_time_+%_with_attack_skills"]=5596, - ["damage_over_time_+%_with_bow_skills"]=5597, - ["damage_over_time_+%_with_herald_skills"]=5598, - ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5594, - ["damage_over_time_multiplier_+_with_attacks"]=1157, - ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5599, - ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5600, - ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5601, - ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5602, - ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5603, - ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5604, - ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5605, - ["damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds"]=5606, - ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=5661, - ["damage_reduction_rating_%_with_active_totem"]=2962, - ["damage_reduction_rating_from_body_armour_doubled"]=2961, - ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=5662, - ["damage_removed_from_mana_before_life_%_while_focused"]=5663, - ["damage_removed_from_spectres_before_life_or_es_%"]=5664, - ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=5665, - ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=5679, - ["damage_taken_%_recovered_as_life_from_stunning_hits"]=5680, - ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=5681, - ["damage_taken_+%_final_per_tailwind"]=5682, - ["damage_taken_+%_final_per_totem"]=5683, - ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=5666, - ["damage_taken_+%_for_4_seconds_on_kill"]=2949, - ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3047, - ["damage_taken_+%_from_bleeding_enemies"]=2940, - ["damage_taken_+%_from_blinded_enemies"]=2911, - ["damage_taken_+%_from_ghosts"]=1922, - ["damage_taken_+%_from_hits"]=1914, - ["damage_taken_+%_from_skeletons"]=1921, - ["damage_taken_+%_from_taunted_enemies"]=3667, - ["damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute"]=5667, - ["damage_taken_+%_if_have_been_frozen_recently"]=5684, - ["damage_taken_+%_if_have_not_been_hit_recently"]=5685, - ["damage_taken_+%_if_not_hit_recently_final"]=3764, - ["damage_taken_+%_if_taunted_an_enemy_recently"]=3799, - ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=5668, - ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3752, - ["damage_taken_+%_on_full_life"]=5686, - ["damage_taken_+%_on_low_life"]=5687, - ["damage_taken_+%_per_frenzy_charge"]=2592, - ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3214, - ["damage_taken_+%_vs_demons"]=2444, - ["damage_taken_+%_while_affected_by_elusive"]=5669, - ["damage_taken_+%_while_es_full"]=1918, - ["damage_taken_+%_while_leeching"]=5688, - ["damage_taken_+%_while_phasing"]=5689, - ["damage_taken_from_traps_and_mines_+%"]=2921, - ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=5670, - ["damage_taken_goes_to_life_over_4_seconds_%"]=994, - ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"]=5671, - ["damage_taken_goes_to_mana_%"]=1001, - ["damage_taken_goes_to_mana_%_per_10_tribute"]=5672, - ["damage_taken_goes_to_mana_%_per_power_charge"]=2806, - ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=5673, - ["damage_taken_over_time_+%_final_during_life_flask_effect"]=5674, - ["damage_taken_per_250_dexterity_+%"]=5675, - ["damage_taken_per_250_intelligence_+%"]=5676, - ["damage_taken_per_250_strength_+%"]=5677, - ["damage_taken_per_ghost_dance_stack_+%"]=5678, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2663, - ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2646, - ["damage_vs_enemies_on_low_life_+%"]=2487, - ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2647, - ["damage_vs_shocked_enemies_+%"]=1152, - ["damage_while_dual_wielding_+%"]=1178, - ["damage_while_no_damage_taken_+%"]=2854, - ["damage_while_no_frenzy_charges_+%"]=3358, - ["damage_with_cold_skills_+%"]=1241, - ["damage_with_fire_skills_+%"]=1233, - ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=5690, - ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=5691, - ["damage_with_lightning_skills_+%"]=1246, - ["damaging_ailment_duration_+%"]=5692, - ["damaging_ailment_duration_+%_per_10_tribute"]=5693, - ["damaging_ailments_deal_damage_+%_faster"]=5695, - ["dark_pact_minions_recover_%_life_on_hit"]=5696, - ["dark_ritual_area_of_effect_+%"]=5697, - ["dark_ritual_damage_+%"]=5698, - ["dark_ritual_linked_curse_effect_+%"]=5699, - ["darkness_per_level"]=5700, - ["darkness_refresh_rate_+%"]=5701, - ["daytime_fish_caught_size_+%"]=5702, - ["daze_build_up_+%"]=5703, - ["daze_duration_+%"]=5704, - ["daze_magnitude_+%"]=5705, - ["deadeye_accuracy_unaffected_by_range"]=5706, - ["deadeye_damage_taken_+%_final_from_marked_enemy"]=5707, - ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=5708, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=5709, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=5710, - ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=5711, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=5712, - ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=5713, - ["deal_double_damage_to_enemies_on_full_life"]=5714, - ["deal_no_damage_when_not_on_low_life"]=5715, - ["deal_no_damage_yourself"]=1923, - ["deal_no_elemental_damage"]=5716, - ["deal_no_elemental_physical_damage"]=5717, - ["deal_no_non_chaos_damage"]=5718, - ["deal_no_non_cold_damage"]=2474, - ["deal_no_non_elemental_damage"]=5719, - ["deal_no_non_fire_damage"]=2472, - ["deal_no_non_lightning_damage"]=2473, - ["deal_no_non_physical_damage"]=2470, - ["deal_thorns_damage_chance_%_on_hit"]=5720, - ["deal_thorns_damage_on_hit"]=5721, - ["deal_thorns_damage_on_stun"]=5722, - ["deathgrip_presence"]=5723, - ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2380, - ["deaths_oath_debuff_on_kill_duration_ms"]=2380, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=5724, - ["debilitate_enemies_within_X_metres_while_active_blocking"]=5725, - ["debuff_time_passed_+%"]=5727, - ["debuff_time_passed_-%_while_affected_by_haste"]=5726, - ["decimating_strike"]=5728, - ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=5729, - ["decoy_totem_life_+%"]=3579, - ["decoy_totem_radius_+%"]=3422, - ["defences_+%_while_channelling"]=5730, - ["defences_+%_while_on_low_life"]=5731, - ["defences_+%_while_wielding_quarterstaff"]=5732, - ["defences_+%_while_you_have_four_linked_targets"]=5733, - ["defences_are_zero"]=5734, - ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=5735, - ["defend_with_%_armour_against_critical_strikes"]=5736, - ["defend_with_%_armour_against_hits_from_distance_greater_than_6m"]=5737, - ["defend_with_%_armour_against_ranged_attacks"]=5738, - ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=5739, - ["defiance_banner_aura_effect_+%"]=5740, - ["defiance_banner_mana_reservation_efficiency_+%"]=5741, - ["deflected_hit_damage_taken_%_recouped_as_life"]=5742, - ["deflected_hits_cannot_directly_inflict_maim_on_self"]=5743, - ["deflected_hits_cannot_inflict_bleeding_on_self"]=5744, - ["deflection_rating_+%"]=5745, - ["deflection_rating_+%_while_moving"]=5746, - ["deflection_rating_+%_while_surrounded"]=5747, - ["degen_effect_+%"]=1919, - ["delirium_aura_effect_+%"]=5748, - ["delirium_mana_reservation_+%"]=5749, - ["delirium_reserves_no_mana"]=5750, - ["delve_biome_area_contains_x_extra_packs_of_insects"]=5751, - ["delve_biome_azurite_collected_+%"]=1983, - ["delve_biome_boss_drops_additional_unique_item"]=1974, - ["delve_biome_boss_drops_extra_precursor_component_ring"]=1975, - ["delve_biome_boss_drops_x_additional_fossils"]=1976, - ["delve_biome_boss_hits_always_crit"]=1977, - ["delve_biome_boss_life_+%_final"]=1978, - ["delve_biome_boss_physical_damage_%_to_gain_as_cold"]=1979, - ["delve_biome_boss_physical_damage_%_to_gain_as_fire"]=1980, - ["delve_biome_boss_physical_damage_%_to_gain_as_lightning"]=1981, - ["delve_biome_city_chambers_can_contain_special_delve_chest"]=1985, - ["delve_biome_contains_delve_boss"]=1973, - ["delve_biome_encounters_extra_reward_chest_%_chance"]=1986, - ["delve_biome_monster_drop_fossil_chance_%"]=1987, - ["delve_biome_monster_projectiles_always_pierce"]=5752, - ["delve_biome_node_tier_upgrade_+%"]=1989, - ["delve_biome_off_path_reward_chests_always_azurite"]=1991, - ["delve_biome_off_path_reward_chests_always_currency"]=1992, - ["delve_biome_off_path_reward_chests_always_fossils"]=1993, - ["delve_biome_off_path_reward_chests_always_resonators"]=1994, - ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=1995, - ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=1996, - ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=1997, - ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=1998, - ["delve_biome_sulphite_cost_+%_final"]=1984, - ["delve_boss_life_+%_final_from_biome"]=5753, - ["demigod_footprints_from_item"]=10125, - ["demigods_virtue"]=10046, - ["demon_form_has_no_max_stacks"]=5754, - ["demon_minion_reservation_+%"]=9404, - ["desecrate_cooldown_speed_+%"]=3470, - ["desecrate_creates_X_additional_corpses"]=3825, - ["desecrate_damage_+%"]=3314, - ["desecrate_duration_+%"]=3507, - ["desecrate_maximum_number_of_corpses"]=5756, - ["desecrate_number_of_corpses_to_create"]=3701, - ["desecrate_on_block_%_chance_to_create"]=2270, - ["desecrated_ground_effect_on_self_+%"]=1837, - ["despair_curse_effect_+%"]=5757, - ["despair_duration_+%"]=5758, - ["despair_gem_level_+"]=1931, - ["despair_no_reservation"]=5759, - ["destructive_link_duration_+%"]=5760, - ["determination_aura_effect_+%"]=2989, - ["determination_mana_reservation_+%"]=3618, - ["determination_mana_reservation_efficiency_+%"]=5762, - ["determination_mana_reservation_efficiency_-2%_per_1"]=5761, - ["determination_reserves_no_mana"]=5763, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3577, - ["detonate_dead_damage_+%"]=3283, - ["detonate_dead_radius_+%"]=3417, - ["detonator_skill_area_of_effect_+%"]=5764, - ["detonator_skill_damage_+%"]=5765, - ["devouring_totem_%_chance_to_consume_additional_corpse"]=3585, - ["dexterity_+%"]=1105, - ["dexterity_+%_if_strength_higher_than_intelligence"]=5766, - ["dexterity_inherently_grants_mana_instead_of_accuracy"]=1708, - ["dexterity_skill_gem_level_+"]=5767, - ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=403, - ["disable_chest_slot"]=2278, - ["disable_skill_if_melee_attack"]=2190, - ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=5768, - ["discharge_area_of_effect_+%_final"]=5769, - ["discharge_chance_not_to_consume_charges_%"]=3032, - ["discharge_cooldown_override_ms"]=5770, - ["discharge_damage_+%"]=3030, - ["discharge_damage_+%_final"]=5771, - ["discharge_radius_+"]=5772, - ["discharge_radius_+%"]=3031, - ["discharge_triggered_damage_+%_final"]=5773, - ["discipline_aura_effect_+%"]=2990, - ["discipline_mana_reservation_+%"]=3619, - ["discipline_mana_reservation_efficiency_+%"]=5775, - ["discipline_mana_reservation_efficiency_-2%_per_1"]=5774, - ["discipline_reserves_no_mana"]=5776, - ["disintegrate_secondary_beam_angle_+%"]=5777, - ["dispel_bleed_on_guard_skill_use"]=5778, - ["dispel_corrupted_blood_on_guard_skill_use"]=5779, - ["dispel_status_ailments_on_flask_use"]=2923, - ["dispel_status_ailments_on_rampage_threshold"]=2613, - ["display_abberaths_hooves_skill_level"]=566, - ["display_ailment_bearer_charge_interval"]=4010, - ["display_altar_chaos_aura"]=5780, - ["display_altar_cold_aura"]=5781, - ["display_altar_fire_aura"]=5782, - ["display_altar_lightning_aura"]=5783, - ["display_altar_tangle_tentalces_daemon"]=5784, - ["display_area_contains_alluring_vaal_side_area"]=5785, - ["display_area_contains_corrupting_tempest"]=5786, - ["display_area_contains_improved_labyrinth_trial"]=5787, - ["display_attack_with_commandment_of_force_on_hit_%"]=3116, - ["display_attack_with_commandment_of_fury_on_hit_%"]=3128, - ["display_attack_with_commandment_of_ire_when_hit_%"]=3603, - ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3120, - ["display_attack_with_commandment_of_spite_when_hit_%"]=3132, - ["display_attack_with_decree_of_force_on_hit_%"]=3115, - ["display_attack_with_decree_of_fury_on_hit_%"]=3127, - ["display_attack_with_decree_of_ire_when_hit_%"]=3602, - ["display_attack_with_decree_of_light_when_critically_hit_%"]=3119, - ["display_attack_with_decree_of_spite_when_hit_%"]=3131, - ["display_attack_with_edict_of_force_on_hit_%"]=3114, - ["display_attack_with_edict_of_fury_on_hit_%"]=3126, - ["display_attack_with_edict_of_ire_when_hit_%"]=3601, - ["display_attack_with_edict_of_light_when_critically_hit_%"]=3118, - ["display_attack_with_edict_of_spite_when_hit_%"]=3130, - ["display_attack_with_word_of_force_on_hit_%"]=3113, - ["display_attack_with_word_of_fury_on_hit_%"]=3125, - ["display_attack_with_word_of_ire_when_hit_%"]=3600, - ["display_attack_with_word_of_light_when_critically_hit_%"]=3117, - ["display_attack_with_word_of_spite_when_hit_%"]=3129, - ["display_bow_range_+"]=2710, - ["display_cast_commandment_of_blades_on_hit_%_"]=3092, - ["display_cast_commandment_of_flames_on_hit_%"]=3142, - ["display_cast_commandment_of_frost_on_kill_%"]=3146, - ["display_cast_commandment_of_inferno_on_kill_%"]=3100, - ["display_cast_commandment_of_reflection_when_hit_%"]=3112, - ["display_cast_commandment_of_tempest_on_hit_%"]=3104, - ["display_cast_commandment_of_the_grave_on_kill_%"]=3108, - ["display_cast_commandment_of_thunder_on_kill_%"]=3150, - ["display_cast_commandment_of_war_on_kill_%"]=3124, - ["display_cast_commandment_of_winter_when_hit_%"]=3096, - ["display_cast_decree_of_blades_on_hit_%__"]=3091, - ["display_cast_decree_of_flames_on_hit_%"]=3141, - ["display_cast_decree_of_frost_on_kill_%"]=3145, - ["display_cast_decree_of_inferno_on_kill_%"]=3099, - ["display_cast_decree_of_reflection_when_hit_%"]=3111, - ["display_cast_decree_of_tempest_on_hit_%"]=3103, - ["display_cast_decree_of_the_grave_on_kill_%"]=3107, - ["display_cast_decree_of_thunder_on_kill_%"]=3149, - ["display_cast_decree_of_war_on_kill_%"]=3123, - ["display_cast_decree_of_winter_when_hit_%"]=3095, - ["display_cast_edict_of_blades_on_hit_%_"]=3090, - ["display_cast_edict_of_flames_on_hit_%"]=3140, - ["display_cast_edict_of_frost_on_kill_%"]=3144, - ["display_cast_edict_of_inferno_on_kill_%"]=3098, - ["display_cast_edict_of_reflection_when_hit_%"]=3110, - ["display_cast_edict_of_tempest_on_hit_%"]=3102, - ["display_cast_edict_of_the_grave_on_kill_%"]=3106, - ["display_cast_edict_of_thunder_on_kill_%"]=3148, - ["display_cast_edict_of_war_on_kill_%"]=3122, - ["display_cast_edict_of_winter_when_hit_%"]=3094, - ["display_cast_fire_burst_on_kill"]=567, - ["display_cast_word_of_blades_on_hit_%"]=3089, - ["display_cast_word_of_flames_on_hit_%"]=3139, - ["display_cast_word_of_frost_on_kill_%"]=3143, - ["display_cast_word_of_inferno_on_kill_%"]=3097, - ["display_cast_word_of_reflection_when_hit_%"]=3109, - ["display_cast_word_of_tempest_on_hit_%"]=3101, - ["display_cast_word_of_the_grave_on_kill_%"]=3105, - ["display_cast_word_of_thunder_on_kill_%"]=3147, - ["display_cast_word_of_war_on_kill_%"]=3121, - ["display_cast_word_of_winter_when_hit_%"]=3093, - ["display_cowards_trial_waves_of_monsters"]=5788, - ["display_cowards_trial_waves_of_undead_monsters"]=5789, - ["display_dark_ritual_curse_max_skill_level_requirement"]=5790, - ["display_golden_radiance"]=2189, - ["display_heist_contract_lockdown_timer_+%"]=5791, - ["display_herald_of_thunder_storm"]=5432, - ["display_item_generation_can_roll_minion_affixes"]=42, - ["display_item_generation_can_roll_totem_affixes"]=43, - ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=5792, - ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=5793, - ["display_legion_uber_fragment_improved_rewards_+%"]=5794, - ["display_link_stuff"]=7138, - ["display_mana_cost_reduction_%"]=1646, - ["display_map_augmentable_boss"]=5795, - ["display_map_boss_gives_experience_+%"]=2519, - ["display_map_final_boss_drops_higher_level_gear"]=2518, - ["display_map_has_oxygen"]=2640, - ["display_map_inhabited_by_lunaris_fanatics"]=5796, - ["display_map_inhabited_by_solaris_fanatics"]=5797, - ["display_map_inhabited_by_wild_beasts"]=2027, - ["display_map_labyrinth_chests_fortune"]=5798, - ["display_map_labyrinth_enchant_belts"]=5799, - ["display_map_large_chest"]=2235, - ["display_map_larger_maze"]=2234, - ["display_map_mission_id"]=5800, - ["display_map_no_monsters"]=2132, - ["display_map_restless_dead"]=2233, - ["display_memory_line_abyss_beyond_monsters_from_cracks"]=5801, - ["display_memory_line_ambush_contains_standalone_map_boss"]=5802, - ["display_memory_line_ambush_strongbox_chain"]=5803, - ["display_memory_line_anarchy_rogue_exiles_in_packs"]=5804, - ["display_memory_line_bestiary_capturable_harvest_monsters"]=5805, - ["display_memory_line_breach_area_is_breached"]=5806, - ["display_memory_line_breach_miniature_flash_breaches"]=5807, - ["display_memory_line_domination_multiple_modded_shrines"]=5808, - ["display_memory_line_domination_shrines_to_pantheon_gods"]=5809, - ["display_memory_line_essence_multiple_rare_monsters"]=5810, - ["display_memory_line_essence_rogue_exiles"]=5811, - ["display_memory_line_harbinger_player_is_a_harbinger"]=5812, - ["display_memory_line_harbinger_portals_everywhere"]=5813, - ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=5814, - ["display_memory_line_torment_player_is_possessed"]=5815, - ["display_memory_line_torment_rares_uniques_are_possessed"]=5816, - ["display_minion_maximum_life"]=1647, - ["display_modifiers_to_totem_life_effect_these_minions"]=5817, - ["display_passive_attribute_text"]=5818, - ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=398, - ["display_stat_coming_soon"]=5819, - ["display_strongbox_drops_additional_shaper_or_elder_cards"]=5820, - ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=568, - ["distance_scaled_accuracy_rating_penalty_+%"]=5821, - ["divine_tempest_beam_width_+%"]=5822, - ["divine_tempest_damage_+%"]=5823, - ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=5824, - ["do_not_chain"]=1496, - ["dodge_roll_base_travel_distance"]=5825, - ["dodge_roll_can_avoid_all_damage"]=5826, - ["dodge_roll_phasing_without_visual"]=5827, - ["dodge_roll_travel_distance_+_if_dodge_rolled_recently"]=4012, - ["dodge_roll_travel_distance_+_if_not_dodge_rolled_recently"]=4011, - ["dodge_roll_travel_distance_+_while_surrounded"]=5828, - ["doedre_aura_damage_+%_final"]=5829, - ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2650, - ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2653, - ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2652, - ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2651, - ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=5830, - ["dominating_blow_duration_+%"]=3486, - ["dominating_blow_minion_damage_+%"]=3297, - ["dominating_blow_skill_attack_damage_+%"]=3298, - ["dot_multiplier_+"]=1156, - ["dot_multiplier_+_if_crit_in_past_8_seconds"]=5831, - ["dot_multiplier_+_while_affected_by_malevolence"]=5832, - ["dot_multiplier_+_with_bow_skills"]=5833, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=5834, - ["double_armour_effect"]=5835, - ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=5837, - ["double_damage_chance_%_if_below_100_strength"]=5836, - ["double_effect_of_consuming_frenzy_charges"]=5838, - ["double_evasion_rating_from_gloves_helmets_boots"]=5839, - ["double_evasion_rating_if_you_havent_been_hit_recently"]=5840, - ["double_number_of_poison_you_can_inflict"]=5841, - ["double_slash_critical_strike_chance_+%"]=3725, - ["double_slash_damage_+%"]=3718, - ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=5842, - ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=5842, - ["double_slash_radius_+%"]=3727, - ["double_strike_attack_speed_+%"]=3441, - ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=5843, - ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2867, - ["double_strike_critical_strike_chance_+%"]=3524, - ["double_strike_damage_+%"]=3226, - ["drain_%_max_mana_to_activate_expended_charms"]=5844, - ["drain_focus_%_of_damage_dealt_on_hit"]=5845, - ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=5846, - ["dread_banner_aura_effect_+%"]=5847, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=5848, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=5849, - ["dread_banner_mana_reservation_efficiency_+%"]=5850, - ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=5851, - ["dual_strike_attack_speed_+%"]=3442, - ["dual_strike_attack_speed_+%_while_wielding_claw"]=5852, - ["dual_strike_critical_strike_chance_+%"]=3525, - ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=5853, - ["dual_strike_damage_+%"]=3227, - ["dual_strike_intimidate_on_hit_while_wielding_axe"]=5854, - ["dual_strike_main_hand_deals_double_damage_%"]=5855, - ["dual_strike_melee_splash_while_wielding_mace"]=5856, - ["dual_strike_melee_splash_with_off_hand_weapon"]=5857, - ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=5858, - ["dual_wield_or_shield_block_%"]=1087, - ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=5859, - ["duration_of_ailments_on_self_+%_per_fortification"]=5860, - ["each_arrow_fired_gains_random_perdandus_prefix"]=5861, - ["earthquake_and_earthshatter_shatter_on_killing_blow"]=5862, - ["earthquake_damage_+%"]=3329, - ["earthquake_damage_+%_per_100ms_duration"]=5863, - ["earthquake_duration_+%"]=3514, - ["earthquake_radius_+%"]=3432, - ["earthshatter_area_of_effect_+%"]=5864, - ["earthshatter_damage_+%"]=5865, - ["electrocuted_enemy_damage_taken_+%"]=5866, - ["elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently"]=5867, - ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=5868, - ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=5869, - ["elemental_ailment_types_apply_damage_taken_+%"]=5870, - ["elemental_ailments_reflected_to_self"]=5871, - ["elemental_critical_strike_chance_+%"]=1340, - ["elemental_critical_strike_multiplier_+"]=1361, - ["elemental_damage_+%"]=1675, - ["elemental_damage_+%_during_flask_effect"]=3802, - ["elemental_damage_+%_final_per_righteous_charge"]=5877, - ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=5878, - ["elemental_damage_+%_if_enemy_chilled_recently"]=5879, - ["elemental_damage_+%_if_enemy_ignited_recently"]=5880, - ["elemental_damage_+%_if_enemy_shocked_recently"]=5881, - ["elemental_damage_+%_if_have_crit_recently"]=5882, - ["elemental_damage_+%_if_used_a_warcry_recently"]=5883, - ["elemental_damage_+%_per_10_devotion"]=5884, - ["elemental_damage_+%_per_10_dexterity"]=5885, - ["elemental_damage_+%_per_12_int"]=5886, - ["elemental_damage_+%_per_12_strength"]=5887, - ["elemental_damage_+%_per_divine_charge"]=3971, - ["elemental_damage_+%_per_frenzy_charge"]=1826, - ["elemental_damage_+%_per_level"]=2633, - ["elemental_damage_+%_per_power_charge"]=5888, - ["elemental_damage_+%_per_sextant_affecting_area"]=5889, - ["elemental_damage_+%_per_stackable_unique_jewel"]=3739, - ["elemental_damage_+%_while_affected_by_a_herald"]=5890, - ["elemental_damage_+%_while_in_area_affected_by_sextant"]=5891, - ["elemental_damage_+%_while_shapeshifted"]=5872, - ["elemental_damage_additional_rolls_lucky_shocked"]=5873, - ["elemental_damage_can_freeze"]=5874, - ["elemental_damage_can_ignite"]=5875, - ["elemental_damage_can_inflict_bleeding"]=5876, - ["elemental_damage_can_shock"]=2548, - ["elemental_damage_reduction_%_from_evasion_rating"]=5892, - ["elemental_damage_resistance_+%"]=5893, - ["elemental_damage_resisted_by_lowest_elemental_resistance"]=5894, - ["elemental_damage_taken_%_as_chaos"]=2150, - ["elemental_damage_taken_%_recouped_as_life"]=5895, - ["elemental_damage_taken_+%"]=2920, - ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=2945, - ["elemental_damage_taken_+%_during_flask_effect"]=3664, - ["elemental_damage_taken_+%_final_per_raised_zombie"]=5896, - ["elemental_damage_taken_+%_if_been_hit_recently"]=5898, - ["elemental_damage_taken_+%_if_not_hit_recently"]=5899, - ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=5900, - ["elemental_damage_taken_+%_per_endurance_charge"]=5901, - ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3637, - ["elemental_damage_taken_+%_while_stationary"]=5902, - ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=5897, - ["elemental_damage_with_attack_skills_+%"]=883, - ["elemental_damage_with_attack_skills_+%_per_power_charge"]=5903, - ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2437, - ["elemental_golem_granted_buff_effect_+%"]=3675, - ["elemental_golem_immunity_to_elemental_damage"]=3672, - ["elemental_golems_maximum_life_is_doubled"]=5904, - ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=5905, - ["elemental_hit_attack_speed_+%"]=3449, - ["elemental_hit_cannot_roll_cold_damage"]=5906, - ["elemental_hit_cannot_roll_fire_damage"]=5907, - ["elemental_hit_cannot_roll_lightning_damage"]=5908, - ["elemental_hit_damage_+%"]=3271, - ["elemental_hit_damage_taken_%_as_physical"]=5909, - ["elemental_hit_deals_50%_less_cold_damage"]=5910, - ["elemental_hit_deals_50%_less_fire_damage"]=5911, - ["elemental_hit_deals_50%_less_lightning_damage"]=5912, - ["elemental_overload_rotation_active"]=10110, - ["elemental_penetration_%_during_flask_effect"]=3837, - ["elemental_penetration_%_if_you_have_a_power_charge"]=5914, - ["elemental_penetration_%_while_chilled"]=5915, - ["elemental_penetration_can_go_down_to_override"]=5913, - ["elemental_reflect_damage_taken_+%"]=2394, - ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=5917, - ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=5916, - ["elemental_resistance_%_per_10_devotion"]=5920, - ["elemental_resistance_%_per_minion_up_to_30%"]=5918, - ["elemental_resistance_%_per_stackable_unique_jewel"]=3740, - ["elemental_resistance_%_when_on_low_life"]=1433, - ["elemental_resistance_+%_per_15_ascendance"]=1108, - ["elemental_resistance_cannot_be_lowered_by_curses"]=5919, - ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3651, - ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=5921, - ["elemental_skill_chance_to_blind_nearby_enemies_%"]=5922, - ["elemental_skill_gem_level_+"]=5923, - ["elemental_skills_deal_triple_damage"]=5924, - ["elemental_storm_cooldown_recovery_speed_+%_final"]=5925, - ["elemental_sundering_damage_+%_final_if_created_from_unique"]=5926, - ["elemental_weakness_curse_effect_+%"]=3593, - ["elemental_weakness_duration_+%"]=3504, - ["elemental_weakness_gem_level_+"]=1932, - ["elemental_weakness_ignores_hexproof"]=2296, - ["elemental_weakness_no_reservation"]=5927, - ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3220, - ["elementalist_area_of_effect_+%_for_5_seconds"]=5928, - ["elementalist_chill_maximum_magnitude_override"]=5929, - ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3216, - ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3213, - ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3215, - ["elementalist_elemental_damage_+%_for_5_seconds"]=5930, - ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3218, - ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=5931, - ["elementalist_ignite_effect_+%_final"]=5932, - ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3217, - ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3814, - ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3219, - ["elusive_effect_+%"]=5933, - ["elusive_effect_on_self_+%_per_power_charge"]=3974, - ["ember_projectile_spread_area_+%"]=5934, - ["empowered_attack_damage_+%"]=5936, - ["empowered_attack_damage_+%_per_10_tribute"]=5935, - ["empowered_attack_double_damage_%_chance"]=5937, - ["empowered_attack_hit_damage_stun_multiplier_+%"]=5938, - ["empowered_attack_physical_damage_%_to_gain_as_fire"]=5939, - ["enable_ring_slot_3"]=5940, - ["enchantment_boots_added_cold_damage_when_hit_maximum"]=2872, - ["enchantment_boots_added_cold_damage_when_hit_minimum"]=2872, - ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2871, - ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=2932, - ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2808, - ["enchantment_boots_mana_costs_when_hit_+%"]=2869, - ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=5941, - ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2934, - ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2874, - ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2873, - ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2934, - ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2874, - ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2873, - ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2875, - ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=2933, - ["enchantment_boots_stun_avoid_%_on_kill"]=2870, - ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3154, - ["endurance_charge_duration_+%"]=1813, - ["endurance_charge_on_hit_%_vs_no_armour"]=5942, - ["endurance_charge_on_kill_%"]=2317, - ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=5943, - ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=5944, - ["endurance_charge_on_off_hand_kill_%"]=3060, - ["endurance_only_conduit"]=1958, - ["enduring_cry_buff_effect_+%"]=3690, - ["enduring_cry_cooldown_speed_+%"]=3475, - ["enduring_cry_grants_x_additional_endurance_charges"]=5945, - ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=5946, - ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=5947, - ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=5948, - ["enemies_blinded_by_you_while_blinded_have_malediction"]=5949, - ["enemies_chaos_resistance_%_while_cursed"]=3641, - ["enemies_chill_as_unfrozen"]=1605, - ["enemies_chilled_by_bane_and_contagion"]=5950, - ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=5951, - ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=5952, - ["enemies_damage_taken_+%_while_cursed"]=3351, - ["enemies_explode_for_%_life_as_physical_damage"]=5953, - ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=5954, - ["enemies_explode_on_kill"]=5955, - ["enemies_explode_on_kill_while_unhinged"]=5956, - ["enemies_extra_damage_rolls_with_lightning_damage"]=5957, - ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=5958, - ["enemies_hitting_you_drop_burning_ground_%"]=5959, - ["enemies_hitting_you_drop_chilled_ground_%"]=5960, - ["enemies_hitting_you_drop_shocked_ground_%"]=5961, - ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=5962, - ["enemies_in_presence_are_blinded"]=5963, - ["enemies_in_presence_are_intimidated"]=5964, - ["enemies_in_presence_cooldown_recovery_+%"]=5965, - ["enemies_in_presence_count_as_low_life"]=5966, - ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=5967, - ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=5968, - ["enemies_in_presence_have_exposure"]=5969, - ["enemies_in_presence_have_fire_resistance_%"]=5970, - ["enemies_in_presence_have_life_reserved_%"]=5971, - ["enemies_in_presence_have_no_elemental_resistances"]=5972, - ["enemies_in_presence_life_regeneration_+%"]=5973, - ["enemies_in_presence_lightning_resist_equal_to_yours"]=5974, - ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5975, - ["enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted"]=5976, - ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=5977, - ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=5978, - ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=5979, - ["enemies_near_link_skill_target_have_exposure"]=5980, - ["enemies_near_marked_enemy_are_blinded"]=5981, - ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=5982, - ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=5983, - ["enemies_taunted_by_you_cannot_evade_attacks"]=5984, - ["enemies_taunted_by_your_warcies_are_intimidated"]=5985, - ["enemies_taunted_by_your_warcries_are_unnerved"]=5986, - ["enemies_that_hit_you_inflict_temporal_chains"]=5987, - ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=5988, - ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=3978, - ["enemies_you_bleed_grant_flask_charges_+%"]=2187, - ["enemies_you_blind_have_critical_strike_chance_+%"]=5989, - ["enemies_you_curse_are_intimidated"]=5990, - ["enemies_you_curse_are_unnerved"]=5991, - ["enemies_you_curse_cannot_recharge_energy_shield"]=5992, - ["enemies_you_curse_have_15%_hinder"]=5993, - ["enemies_you_curse_have_malediction"]=3352, - ["enemies_you_expose_have_self_elemental_status_duration_+%"]=5994, - ["enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds"]=5995, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=5996, - ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=5997, - ["enemies_you_ignite_wither_does_not_expire"]=5998, - ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=5999, - ["enemies_you_maim_have_damage_taken_over_time_+%"]=6000, - ["enemies_you_shock_cast_speed_+%"]=3857, - ["enemies_you_shock_movement_speed_+%"]=3858, - ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6001, - ["enemies_you_wither_have_all_resistances_%"]=6002, - ["enemy_additional_critical_strike_chance_permyriad_against_self"]=2772, - ["enemy_aggro_radius_+%"]=2784, - ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2773, - ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6003, - ["enemy_extra_damage_rolls_chance_%"]=6005, - ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6006, - ["enemy_extra_damage_rolls_when_on_full_life"]=6007, - ["enemy_extra_damage_rolls_when_on_low_life"]=2252, - ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2757, - ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=6008, - ["enemy_hits_roll_low_damage"]=2249, - ["enemy_knockback_direction_is_reversed"]=2666, - ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6009, - ["enemy_non_skill_physical_damage_%_as_extra_fire_vs_you"]=1627, - ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2325, - ["enemy_phys_reduction_%_penalty_vs_hit"]=2635, - ["enemy_shock_on_kill"]=1606, - ["enemy_spell_critical_strike_chance_+%_against_self"]=6010, - ["energy_generated_+%"]=6011, - ["energy_generated_+%_if_crit_recently"]=6013, - ["energy_generated_+%_on_full_mana"]=6014, - ["energy_generation_is_doubled"]=6015, - ["energy_shield_%_gained_on_block"]=2161, - ["energy_shield_%_of_armour_rating_gained_on_block"]=2162, - ["energy_shield_%_to_lose_on_block"]=2420, - ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6016, - ["energy_shield_+%_if_consumed_power_charge_recently"]=6017, - ["energy_shield_+%_per_10_strength"]=6034, - ["energy_shield_+%_per_power_charge"]=6035, - ["energy_shield_+_per_8_evasion_on_boots"]=6018, - ["energy_shield_+_per_8_helmet_armour"]=6019, - ["energy_shield_additive_modifiers_instead_apply_to_ward"]=6020, - ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2335, - ["energy_shield_delay_-%"]=991, - ["energy_shield_delay_-%_if_stunned_recently"]=6021, - ["energy_shield_delay_-%_when_not_on_full_life"]=6022, - ["energy_shield_delay_-%_while_affected_by_archon"]=6023, - ["energy_shield_delay_-%_while_affected_by_discipline"]=6025, - ["energy_shield_delay_-%_while_shapeshifted"]=6024, - ["energy_shield_delay_during_flask_effect_-%"]=3179, - ["energy_shield_from_focus_+%"]=6026, - ["energy_shield_from_gloves_and_boots_+%"]=6027, - ["energy_shield_from_helmet_+%"]=6028, - ["energy_shield_gain_per_target"]=1460, - ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6029, - ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6030, - ["energy_shield_gained_on_block"]=1471, - ["energy_shield_gained_on_enemy_death_per_level"]=2631, - ["energy_shield_increased_by_uncapped_cold_resistance"]=6031, - ["energy_shield_lost_per_minute_%"]=6032, - ["energy_shield_per_level"]=6033, - ["energy_shield_protects_mana"]=2756, - ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6036, - ["energy_shield_recharge_delay_override_ms"]=6037, - ["energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently"]=3340, - ["energy_shield_recharge_not_delayed_by_damage"]=1390, - ["energy_shield_recharge_rate_+%"]=990, - ["energy_shield_recharge_rate_+%_if_blocked_recently"]=6044, - ["energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently"]=6038, - ["energy_shield_recharge_rate_+%_per_25_tribute"]=6039, - ["energy_shield_recharge_rate_+%_per_4_dexterity"]=6040, - ["energy_shield_recharge_rate_+%_per_4_strength"]=6041, - ["energy_shield_recharge_rate_+%_while_affected_by_archon"]=6042, - ["energy_shield_recharge_rate_+%_while_shapeshifted"]=6043, - ["energy_shield_recharge_rate_during_flask_effect_+%"]=3181, - ["energy_shield_recharge_rate_per_minute_%"]=1391, - ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3781, - ["energy_shield_recharge_start_when_minions_reform"]=6045, - ["energy_shield_recharge_start_when_stunned"]=6046, - ["energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds"]=6047, - ["energy_shield_recharges_on_block_%"]=3038, - ["energy_shield_recharges_on_kill_%"]=6048, - ["energy_shield_recharges_on_skill_use_chance_%"]=6049, - ["energy_shield_recovery_rate_+%"]=1394, - ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6050, - ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6051, - ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6052, - ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6053, - ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6054, - ["energy_shield_regeneration_%_per_minute_while_shocked"]=2674, - ["energy_shield_regeneration_rate_+%"]=6061, - ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6057, - ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6058, - ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1507, - ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6055, - ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6056, - ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6059, - ["energy_shield_regeneration_rate_per_second"]=6060, - ["enfeeble_curse_effect_+%"]=3594, - ["enfeeble_duration_+%"]=3503, - ["enfeeble_gem_level_+"]=1933, - ["enfeeble_ignores_hexproof"]=2297, - ["enfeeble_no_reservation"]=6062, - ["ensnaring_arrow_area_of_effect_+%"]=6063, - ["ensnaring_arrow_debuff_effect_+%"]=6064, - ["envy_reserves_no_mana"]=6065, - ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6066, - ["equipped_jewellery_effect_of_bonuses_+%"]=6067, - ["equipped_ring1_effect_of_bonuses_+%"]=6068, - ["equipped_ring2_effect_of_bonuses_+%"]=6069, - ["equipped_rings_effect_of_bonuses_+%"]=6070, - ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3803, - ["es_regeneration_per_minute_%_while_stationary"]=6071, - ["essence_abyss_guaranteed_pick"]=6072, - ["essence_buff_ground_fire_damage_to_deal_per_second"]=3900, - ["essence_buff_ground_fire_duration_ms"]=3900, - ["essence_display_elemental_damage_taken_while_not_moving_+%"]=3903, - ["essence_drain_damage_+%"]=3323, - ["essence_drain_soulrend_base_projectile_speed_+%"]=6073, - ["essence_drain_soulrend_number_of_additional_projectiles"]=6074, - ["essence_grants_additional_attributes"]=6075, - ["essence_grants_additional_attributes_increase"]=6076, - ["essence_grants_defences_+%"]=6077, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6078, - ["ethereal_knives_damage_+%"]=3244, - ["ethereal_knives_number_of_additional_projectiles"]=6079, - ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6080, - ["ethereal_knives_projectile_speed_+%"]=3483, - ["ethereal_knives_projectiles_nova"]=6081, - ["evasion_+%_if_hit_recently"]=3765, - ["evasion_+%_per_10_intelligence"]=6084, - ["evasion_and_physical_damage_reduction_rating_+%"]=1384, - ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6098, - ["evasion_rating_%_to_gain_as_ailment_threshold"]=6085, - ["evasion_rating_%_to_gain_as_armour"]=6099, - ["evasion_rating_+%"]=890, - ["evasion_rating_+%_during_focus"]=6086, - ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=6087, - ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6082, - ["evasion_rating_+%_if_have_cast_dash_recently"]=6103, - ["evasion_rating_+%_if_have_not_been_hit_recently"]=6104, - ["evasion_rating_+%_if_not_dodge_rolled_recently"]=6088, - ["evasion_rating_+%_if_sprinting"]=6089, - ["evasion_rating_+%_if_you_dodge_rolled_recently"]=6105, - ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6106, - ["evasion_rating_+%_per_10_tribute"]=6090, - ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=6091, - ["evasion_rating_+%_per_5_intelligence"]=6083, - ["evasion_rating_+%_per_frenzy_charge"]=1389, - ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6107, - ["evasion_rating_+%_when_on_full_life"]=6108, - ["evasion_rating_+%_when_on_low_life"]=2228, - ["evasion_rating_+%_while_leeching"]=6109, - ["evasion_rating_+%_while_moving"]=6110, - ["evasion_rating_+%_while_onslaught_is_active"]=1388, - ["evasion_rating_+%_while_phasing"]=2198, - ["evasion_rating_+%_while_surrounded"]=6092, - ["evasion_rating_+%_while_you_have_energy_shield"]=6111, - ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6100, - ["evasion_rating_+_per_1_armour_on_gloves"]=6093, - ["evasion_rating_+_per_1_helmet_energy_shield"]=1387, - ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=3961, - ["evasion_rating_+_when_on_full_life"]=1386, - ["evasion_rating_+_when_on_low_life"]=1385, - ["evasion_rating_+_while_phasing"]=6101, - ["evasion_rating_+_while_you_have_tailwind"]=6102, - ["evasion_rating_also_reduces_physical_damage"]=6094, - ["evasion_rating_from_helmet_and_boots_+%"]=6095, - ["evasion_rating_increased_by_overcapped_cold_resistance"]=6096, - ["evasion_rating_increased_by_uncapped_lightning_resistance"]=6097, - ["evasion_rating_plus_in_sand_stance"]=9492, - ["evasion_rating_while_es_full_+%_final"]=3657, - ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6112, - ["exerted_attack_knockback_chance_%"]=6113, - ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6114, - ["expanding_fire_cone_additional_maximum_number_of_stages"]=6115, - ["expanding_fire_cone_area_of_effect_+%"]=6116, - ["expedition_chest_logbook_chance_%"]=6117, - ["expedition_monsters_logbook_chance_+%"]=6118, - ["experience_gain_+%"]=1421, - ["experience_loss_on_death_-%"]=1422, - ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6119, - ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2931, - ["explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6120, - ["explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%"]=6121, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=2929, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6122, - ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2930, - ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10012, - ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6123, - ["explode_on_kill_%_chaos_damage_to_deal"]=2928, - ["explode_on_kill_%_fire_damage_to_deal"]=2391, - ["explosive_arrow_attack_speed_+%"]=3709, - ["explosive_arrow_damage_+%"]=3275, - ["explosive_arrow_duration_+%"]=6124, - ["explosive_arrow_radius_+%"]=3413, - ["explosive_concoction_damage_+%"]=6125, - ["explosive_concoction_flask_charges_consumed_+%"]=6126, - ["explosive_concoction_skill_area_of_effect_+%"]=6127, - ["exposure_effect_+%"]=6130, - ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=6128, - ["exposure_effect_on_you_+%"]=6129, - ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=6131, - ["exsanguinate_additional_chain_chance_%"]=6132, - ["exsanguinate_damage_+%"]=6133, - ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6134, - ["exsanguinate_duration_+%"]=6135, - ["extinguish_on_hit_%_chance"]=6136, - ["extra_critical_rolls"]=2360, - ["extra_critical_rolls_during_focus"]=6137, - ["extra_critical_rolls_while_on_low_life"]=6138, - ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6139, - ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4004, - ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4005, - ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6140, - ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=2876, - ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6141, - ["extra_gore"]=10126, - ["extra_target_targeting_distance_+%"]=6142, - ["eye_of_winter_damage_+%"]=6143, - ["eye_of_winter_projectile_speed_+%"]=6144, - ["eye_of_winter_spiral_fire_frequency_+%"]=6145, - ["faster_bleed_%"]=6147, - ["faster_bleed_per_frenzy_charge_%"]=6146, - ["faster_burn_%"]=2260, - ["faster_burn_from_attacks_%"]=2262, - ["faster_poison_%"]=6148, - ["final_repeat_of_spells_area_of_effect_+%"]=6149, - ["fire_ailment_duration_+%"]=6150, - ["fire_and_chaos_damage_resistance_%"]=6151, - ["fire_and_cold_damage_resistance_%"]=2478, - ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6152, - ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6153, - ["fire_and_lightning_damage_resistance_%"]=2479, - ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6154, - ["fire_attack_damage_+%"]=1121, - ["fire_attack_damage_+%_while_holding_a_shield"]=1124, - ["fire_axe_damage_+%"]=1196, - ["fire_beam_cast_speed_+%"]=6155, - ["fire_beam_damage_+%"]=6156, - ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6157, - ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6158, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=6159, - ["fire_beam_length_+%"]=6160, - ["fire_bow_damage_+%"]=1216, - ["fire_claw_damage_+%"]=1204, - ["fire_critical_strike_chance_+%"]=1337, - ["fire_critical_strike_multiplier_+"]=1358, - ["fire_dagger_damage_+%"]=1208, - ["fire_damage_+%"]=879, - ["fire_damage_+%_if_you_have_been_hit_recently"]=6165, - ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6166, - ["fire_damage_+%_per_10%_armour_break"]=6161, - ["fire_damage_+%_per_20_strength"]=6167, - ["fire_damage_+%_per_endurance_charge"]=6168, - ["fire_damage_+%_per_missing_fire_resistance"]=6169, - ["fire_damage_+%_per_rage"]=6162, - ["fire_damage_+%_to_blinded_enemies"]=2857, - ["fire_damage_+%_vs_bleeding_enemies"]=6170, - ["fire_damage_+%_while_affected_by_anger"]=6171, - ["fire_damage_+%_while_affected_by_herald_of_ash"]=6172, - ["fire_damage_+%_while_ignited"]=6163, - ["fire_damage_can_chill"]=2549, - ["fire_damage_can_freeze"]=2550, - ["fire_damage_can_shock"]=2551, - ["fire_damage_cannot_ignite"]=2558, - ["fire_damage_over_time_+%"]=1130, - ["fire_damage_over_time_multiplier_+%_while_burning"]=6164, - ["fire_damage_over_time_multiplier_+_with_attacks"]=1161, - ["fire_damage_resistance_%_when_on_low_life"]=1436, - ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6173, - ["fire_damage_resistance_+%"]=1437, - ["fire_damage_resistance_is_%"]=1434, - ["fire_damage_taken_%_as_cold"]=2816, - ["fire_damage_taken_%_as_lightning"]=2817, - ["fire_damage_taken_%_causes_additional_physical_damage"]=2151, - ["fire_damage_taken_+"]=1911, - ["fire_damage_taken_+%"]=1916, - ["fire_damage_taken_+%_while_moving"]=6176, - ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6174, - ["fire_damage_taken_per_second_while_flame_touched"]=6175, - ["fire_damage_taken_when_enemy_ignited"]=6177, - ["fire_damage_to_return_on_block"]=6178, - ["fire_damage_to_return_to_melee_attacker"]=1885, - ["fire_damage_to_return_when_hit"]=1889, - ["fire_damage_while_dual_wielding_+%"]=1180, - ["fire_damage_with_attack_skills_+%"]=6179, - ["fire_damage_with_spell_skills_+%"]=6180, - ["fire_dot_multiplier_+"]=1160, - ["fire_exposure_effect_+%"]=6181, - ["fire_exposure_on_hit_magnitude"]=6182, - ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6183, - ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6184, - ["fire_mace_damage_+%"]=1212, - ["fire_nova_mine_cast_speed_+%"]=3460, - ["fire_nova_mine_damage_+%"]=3258, - ["fire_nova_mine_num_of_additional_repeats"]=3554, - ["fire_penetration_%_if_you_have_blocked_recently"]=6185, - ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6186, - ["fire_resist_unaffected_by_area_penalties"]=6187, - ["fire_skill_chance_to_inflict_fire_exposure_%"]=6188, - ["fire_skill_gem_level_+"]=6189, - ["fire_skills_chance_to_poison_on_hit_%"]=6190, - ["fire_spell_skill_gem_level_+"]=948, - ["fire_staff_damage_+%"]=1200, - ["fire_storm_damage_+%"]=3259, - ["fire_sword_damage_+%"]=1221, - ["fire_trap_burning_damage_+%"]=3546, - ["fire_trap_burning_ground_duration_+%"]=6191, - ["fire_trap_cooldown_speed_+%"]=3462, - ["fire_trap_damage_+%"]=3228, - ["fire_trap_number_of_additional_traps_to_throw"]=6192, - ["fire_wand_damage_+%"]=1225, - ["fire_weakness_ignores_hexproof"]=2298, - ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6193, - ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6194, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=2884, - ["fireball_cannot_ignite"]=6195, - ["fireball_cast_speed_+%"]=3459, - ["fireball_chance_to_scorch_%"]=6196, - ["fireball_damage_+%"]=3229, - ["fireball_radius_up_to_+%_at_longer_ranges"]=2883, - ["firestorm_duration_+%"]=3517, - ["firestorm_explosion_area_of_effect_+%"]=3555, - ["first_X_minions_have_0_base_spirit_reservation"]=6197, - ["fish_quantity_+%"]=2527, - ["fish_rarity_+%"]=2528, - ["fish_rot_when_caught"]=6198, - ["fishing_bestiary_lures_at_fishing_holes"]=6199, - ["fishing_bite_sensitivity_+%"]=3185, - ["fishing_can_catch_divine_fish"]=6200, - ["fishing_chance_to_catch_boots_+%"]=6201, - ["fishing_chance_to_catch_divine_orb_+%"]=6202, - ["fishing_corrupted_fish_cleansed_chance_%"]=6203, - ["fishing_fish_always_tell_truth_with_this_rod"]=6204, - ["fishing_ghastly_fisherman_cannot_spawn"]=6205, - ["fishing_ghastly_fisherman_spawns_behind_you"]=6206, - ["fishing_hook_type"]=2525, - ["fishing_krillson_affection_per_fish_gifted_+%"]=6207, - ["fishing_life_of_fish_with_this_rod_+%"]=6208, - ["fishing_line_strength_+%"]=2522, - ["fishing_lure_type"]=2524, - ["fishing_magmatic_fish_are_cooked"]=6209, - ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6210, - ["fishing_pool_consumption_+%"]=2523, - ["fishing_range_+%"]=2526, - ["fishing_reeling_stability_+%"]=6211, - ["fishing_tasalio_ire_per_fish_caught_+%"]=6212, - ["fishing_valako_aid_per_stormy_day_+%"]=6213, - ["fishing_wish_effect_of_ancient_fish_+%"]=6214, - ["fishing_wish_per_fish_+"]=6215, - ["fissure_skills_limit_+"]=6216, - ["flail_accuracy_rating"]=3864, - ["flail_accuracy_rating_+%"]=3865, - ["flail_attack_speed_+%"]=3866, - ["flail_critical_strike_chance_+%"]=3867, - ["flail_critical_strike_multiplier_+"]=3868, - ["flail_damage_+%"]=3862, - ["flail_elemental_damage_+%"]=3863, - ["flame_dash_cooldown_speed_+%"]=3469, - ["flame_dash_damage_+%"]=3308, - ["flame_golem_damage_+%"]=3290, - ["flame_golem_elemental_resistances_%"]=3569, - ["flame_link_duration_+%"]=6217, - ["flame_surge_critical_strike_chance_+%"]=3529, - ["flame_surge_damage_+%"]=3260, - ["flame_surge_damage_+%_vs_burning_enemies"]=3556, - ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6218, - ["flame_totem_damage_+%"]=3300, - ["flame_totem_num_of_additional_projectiles"]=3541, - ["flame_totem_projectile_speed_+%"]=3484, - ["flame_wall_damage_+%"]=6219, - ["flame_wall_maximum_added_fire_damage"]=6220, - ["flame_wall_minimum_added_fire_damage"]=6220, - ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6221, - ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6222, - ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6223, - ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6224, - ["flameblast_critical_strike_chance_+%"]=3528, - ["flameblast_damage_+%"]=3276, - ["flameblast_radius_+%"]=3414, - ["flameblast_starts_with_X_additional_stages"]=6225, - ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6226, - ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6227, - ["flamethrower_tower_trap_cast_speed_+%"]=6228, - ["flamethrower_tower_trap_cooldown_speed_+%"]=6229, - ["flamethrower_tower_trap_damage_+%"]=6230, - ["flamethrower_tower_trap_duration_+%"]=6231, - ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6232, - ["flamethrower_tower_trap_throwing_speed_+%"]=6233, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6234, - ["flammability_curse_effect_+%"]=3595, - ["flammability_duration_+%"]=3502, - ["flammability_mana_reservation_+%"]=3629, - ["flammability_no_reservation"]=6235, - ["flask_charge_recovery_is_doubled"]=6236, - ["flask_charges_+%_from_enemies_with_status_ailments"]=3822, - ["flask_charges_gained_+%"]=6240, - ["flask_charges_gained_+%_during_flask_effect"]=2822, - ["flask_charges_gained_+%_if_crit_recently"]=6237, - ["flask_charges_gained_from_kills_+%_final_from_unique"]=6238, - ["flask_charges_gained_from_marked_enemy_+%"]=6239, - ["flask_charges_recovered_per_3_seconds"]=3085, - ["flask_charges_used_+%"]=1006, - ["flask_duration_+%"]=903, - ["flask_duration_+%_per_25_tribute"]=6241, - ["flask_duration_on_minions_+%"]=1873, - ["flask_effect_+%"]=2422, - ["flask_life_and_mana_recovery_+%_while_using_charm"]=6242, - ["flask_life_and_mana_to_recover_+%"]=6244, - ["flask_life_and_mana_to_recover_+%_per_10_tribute"]=6243, - ["flask_life_recovery_+%_while_affected_by_vitality"]=6245, - ["flask_life_recovery_rate_+%"]=900, - ["flask_life_to_recover_+%"]=1743, - ["flask_mana_charges_used_+%"]=1871, - ["flask_mana_recovery_rate_+%"]=901, - ["flask_mana_to_recover_+%"]=1744, - ["flask_minion_heal_%"]=2575, - ["flask_recovery_amount_%_to_recover_instantly"]=6246, - ["flask_recovery_is_instant"]=6247, - ["flask_recovery_speed_+%"]=1745, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6248, - ["flasks_%_chance_to_not_consume_charges"]=3806, - ["flasks_apply_to_your_linked_targets"]=6249, - ["flasks_apply_to_your_zombies_and_spectres"]=3344, - ["flasks_dispel_burning"]=2435, - ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6250, - ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6251, - ["flesh_and_stone_area_of_effect_+%"]=6252, - ["flesh_offering_attack_speed_+%"]=3702, - ["flesh_offering_duration_+%"]=3490, - ["flesh_offering_effect_+%"]=1096, - ["flesh_stone_mana_reservation_efficiency_+%"]=6254, - ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6253, - ["flesh_stone_no_reservation"]=6255, - ["flicker_strike_cooldown_speed_+%"]=3463, - ["flicker_strike_damage_+%"]=3249, - ["flicker_strike_damage_+%_per_frenzy_charge"]=3551, - ["flicker_strike_more_attack_speed_+%_final"]=1272, - ["focus_cooldown_modifier_ms"]=6256, - ["focus_cooldown_speed_+%"]=6257, - ["focus_decay_%_per_minute"]=6258, - ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6259, - ["forbidden_rite_damage_+%"]=6260, - ["forbidden_rite_number_of_additional_projectiles"]=6261, - ["forbidden_rite_projectile_speed_+%"]=6262, - ["forking_angle_+%"]=6263, - ["fortification_gained_from_hits_+%"]=6264, - ["fortification_gained_from_hits_+%_against_unique_enemies"]=6265, - ["fortify_duration_+%"]=1963, - ["fortify_duration_+%_per_10_strength"]=6266, - ["fortify_on_hit"]=6267, - ["frag_rounds_damage_+%_final_if_created_from_unique"]=6268, - ["freeze_applies_cold_damage_taken_+%"]=6269, - ["freeze_applies_cold_resistance_+"]=6270, - ["freeze_duration_+%"]=1565, - ["freeze_duration_against_cursed_enemies_+%"]=6271, - ["freeze_mine_cold_resistance_+_while_frozen"]=2457, - ["freeze_mine_damage_+%"]=3309, - ["freeze_mine_radius_+%"]=3424, - ["freeze_prevention_ms_when_frozen"]=2568, - ["freeze_threshold_+%"]=2903, - ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6273, - ["freezing_pulse_cast_speed_+%"]=3458, - ["freezing_pulse_damage_+%"]=3230, - ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6274, - ["freezing_pulse_number_of_additional_projectiles"]=6275, - ["freezing_pulse_projectile_speed_+%"]=3480, - ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3563, - ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6276, - ["frenzy_charge_duration_+%_per_frenzy_charge"]=1735, - ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6277, - ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6278, - ["frenzy_damage_+%"]=3269, - ["frenzy_damage_+%_per_frenzy_charge"]=3562, - ["frenzy_only_conduit"]=1959, - ["from_self_maximum_added_attack_chaos_damage_taken"]=1250, - ["from_self_maximum_added_attack_cold_damage_taken"]=1237, - ["from_self_maximum_added_attack_fire_damage_taken"]=1231, - ["from_self_maximum_added_attack_lightning_damage_taken"]=1245, - ["from_self_maximum_added_attack_physical_damage_taken"]=1169, - ["from_self_maximum_added_cold_damage_taken"]=1235, - ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=3842, - ["from_self_maximum_added_fire_damage_taken"]=1229, - ["from_self_maximum_added_lightning_damage_taken"]=1243, - ["from_self_minimum_added_attack_chaos_damage_taken"]=1250, - ["from_self_minimum_added_attack_cold_damage_taken"]=1237, - ["from_self_minimum_added_attack_fire_damage_taken"]=1231, - ["from_self_minimum_added_attack_lightning_damage_taken"]=1245, - ["from_self_minimum_added_attack_physical_damage_taken"]=1169, - ["from_self_minimum_added_cold_damage_taken"]=1235, - ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=3842, - ["from_self_minimum_added_fire_damage_taken"]=1229, - ["from_self_minimum_added_lightning_damage_taken"]=1243, - ["frost_blades_damage_+%"]=3025, - ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6279, - ["frost_blades_number_of_additional_projectiles_in_chain"]=3027, - ["frost_blades_projectile_speed_+%"]=3026, - ["frost_bolt_cast_speed_+%"]=3729, - ["frost_bolt_damage_+%"]=3716, - ["frost_bolt_freeze_chance_%"]=3730, - ["frost_bolt_nova_cooldown_speed_+%"]=6280, - ["frost_bolt_nova_damage_+%"]=3717, - ["frost_bolt_nova_duration_+%"]=3731, - ["frost_bolt_nova_radius_+%"]=3724, - ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6282, - ["frost_bomb_buff_duration_+%"]=6281, - ["frost_bomb_cooldown_speed_+%"]=3476, - ["frost_bomb_damage_+%"]=3332, - ["frost_bomb_radius_+%"]=3433, - ["frost_fury_additional_max_number_of_stages"]=6283, - ["frost_fury_area_of_effect_+%_per_stage"]=6284, - ["frost_fury_damage_+%"]=6285, - ["frost_globe_added_cooldown_count"]=6286, - ["frost_globe_health_per_stage"]=6287, - ["frost_wall_cooldown_speed_+%"]=3467, - ["frost_wall_damage_+%"]=3303, - ["frost_wall_duration_+%"]=3493, - ["frostbite_curse_effect_+%"]=3596, - ["frostbite_duration_+%"]=3501, - ["frostbite_mana_reservation_+%"]=3630, - ["frostbite_no_reservation"]=6288, - ["frostbolt_number_of_additional_projectiles"]=6289, - ["frostbolt_projectile_acceleration"]=6290, - ["frozen_legion_%_chance_to_summon_additional_statue"]=6294, - ["frozen_legion_added_cooldown_count"]=6291, - ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6292, - ["frozen_legion_cooldown_speed_+%"]=6293, - ["frozen_monsters_take_increased_damage"]=2157, - ["frozen_sweep_damage_+%"]=6295, - ["frozen_sweep_damage_+%_final"]=6296, - ["full_life_threshold_%_override"]=6297, - ["full_mana_threshold_%_override"]=6298, - ["fully_break_enemies_armour_on_heavy_stun_with_shield_skills"]=6299, - ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage"]=6300, - ["fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage"]=6301, - ["fungal_ground_while_stationary_radius"]=6302, - ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6303, - ["gain_%_es_when_spirit_charge_expires_or_consumed"]=3968, - ["gain_%_life_from_body_es"]=6304, - ["gain_%_life_when_spirit_charge_expires_or_consumed"]=3967, - ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6305, - ["gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use"]=6306, - ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6420, - ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6426, - ["gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence"]=6307, - ["gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms"]=6308, - ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6309, - ["gain_X%_armour_per_50_mana_reserved"]=6310, - ["gain_X_energy_shield_on_killing_shocked_enemy"]=2268, - ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6311, - ["gain_X_frenzy_charges_after_spending_200_mana"]=6312, - ["gain_X_instilling_chaos_when_any_charge_is_consumed"]=6316, - ["gain_X_instilling_cold_on_reload"]=6317, - ["gain_X_instilling_cold_when_charge_is_consumed"]=6314, - ["gain_X_instilling_fire_on_reload"]=6317, - ["gain_X_instilling_fire_when_charge_is_consumed"]=6313, - ["gain_X_instilling_lightning_when_charge_is_consumed"]=6315, - ["gain_X_life_on_stun"]=6318, - ["gain_X_max_mana_per_2_es_on_equipped_helmet"]=6319, - ["gain_X_power_charges_on_using_a_warcry"]=6320, - ["gain_X_rage_on_hit_per_enemy_power"]=6321, - ["gain_X_rage_on_ignite_hit"]=6322, - ["gain_X_random_charges_every_6_seconds"]=6323, - ["gain_X_random_rare_monster_mods_on_kill"]=2705, - ["gain_X_vaal_souls_on_rampage_threshold"]=2615, - ["gain_X_volatility_on_persistent_minion_death"]=6324, - ["gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms"]=6325, - ["gain_a_power_charge_when_you_consume_an_elemental_infusion"]=6326, - ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3713, - ["gain_absorption_charges_instead_of_power_charges"]=6327, - ["gain_accuracy_rating_equal_to_2_times_strength"]=6328, - ["gain_accuracy_rating_equal_to_intelligence"]=6329, - ["gain_accuracy_rating_equal_to_strength"]=6330, - ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6331, - ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6332, - ["gain_adrenaline_for_X_seconds_on_kill"]=6333, - ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6334, - ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6335, - ["gain_adrenaline_on_gaining_flame_touched"]=6336, - ["gain_adrenaline_when_ward_breaks_ms"]=6337, - ["gain_affliction_charges_instead_of_frenzy_charges"]=6338, - ["gain_alchemists_genius_on_flask_use_%"]=6339, - ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6340, - ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6341, - ["gain_arcane_surge_for_4_seconds_on_minion_death"]=6342, - ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6343, - ["gain_arcane_surge_on_crit_%_chance"]=6344, - ["gain_arcane_surge_on_hit_%_chance"]=6347, - ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6345, - ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6346, - ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6348, - ["gain_arcane_surge_on_kill_chance_%"]=6349, - ["gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds"]=6350, - ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6351, - ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6352, - ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6353, - ["gain_arcane_surge_when_you_summon_a_totem"]=6354, - ["gain_archon_cold_when_energy_shield_recharge_starts"]=6355, - ["gain_archon_elemental_after_spending_100%_of_your_maximum_mana"]=6356, - ["gain_archon_elemental_when_energy_shield_recharge_starts"]=6357, - ["gain_archon_elemental_when_you_ignite_enemy_chance_%"]=6358, - ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=6359, - ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6360, - ["gain_armour_from_%_life_loss_from_hits_lasting_8_seconds"]=6361, - ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3635, - ["gain_attack_damage_+%_for_each_your_minion_in_presence_capped"]=6362, - ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6363, - ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3058, - ["gain_blitz_charge_%_chance_on_crit"]=6364, - ["gain_brutal_charges_instead_of_endurance_charges"]=6365, - ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3393, - ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6366, - ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6367, - ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10013, - ["gain_convergence_on_hitting_unique_enemy"]=4017, - ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10105, - ["gain_crimson_dance_while_you_have_cat_stealth"]=10106, - ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6368, - ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3057, - ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10014, - ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=3853, - ["gain_divine_charge_on_hit_%"]=3970, - ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=3972, - ["gain_druidic_prowess_per_X_rage_spent"]=6369, - ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3640, - ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3681, - ["gain_elusive_on_crit_%_chance"]=3850, - ["gain_elusive_on_kill_chance_%"]=3851, - ["gain_elusive_on_reaching_low_life"]=6371, - ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1527, - ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6376, - ["gain_endurance_charge_%_when_hit_while_channelling"]=6377, - ["gain_endurance_charge_if_attack_freezes"]=6372, - ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6373, - ["gain_endurance_charge_on_main_hand_kill_%"]=2948, - ["gain_endurance_charge_on_melee_stun"]=2448, - ["gain_endurance_charge_on_melee_stun_%"]=2448, - ["gain_endurance_charge_on_power_charge_expiry"]=2324, - ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6374, - ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6375, - ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6378, - ["gain_fire_damage_+%_per_endurance_charge_consumed_recently"]=6379, - ["gain_flask_chance_on_crit_%"]=3009, - ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6380, - ["gain_flask_charge_when_crit_%"]=1746, - ["gain_flask_charge_when_crit_amount"]=1746, - ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6381, - ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6382, - ["gain_frenzy_and_power_charge_on_kill_%"]=2323, - ["gain_frenzy_charge_%_when_hit_while_channelling"]=6393, - ["gain_frenzy_charge_if_attack_ignites"]=2515, - ["gain_frenzy_charge_on_critical_strike_%"]=6384, - ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6383, - ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6385, - ["gain_frenzy_charge_on_hit_%_while_blinded"]=6386, - ["gain_frenzy_charge_on_hit_while_bleeding"]=6387, - ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6388, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6389, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6390, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6391, - ["gain_frenzy_charge_on_main_hand_kill_%"]=2947, - ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3204, - ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6392, - ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6394, - ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6395, - ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10107, - ["gain_iron_reflexes_while_stationary"]=10111, - ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3756, - ["gain_lightning_archon_after_spending_100%_of_your_maximum_mana"]=6396, - ["gain_magic_monster_mods_on_kill_%_chance"]=6397, - ["gain_max_rage_on_losing_temporal_chains_debuff"]=6398, - ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6399, - ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3813, - ["gain_maximum_endurance_charges_when_crit_chance_%"]=6400, - ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6401, - ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6402, - ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6403, - ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6404, - ["gain_maximum_power_charges_on_vaal_skill_use"]=6405, - ["gain_mind_over_matter_while_at_maximum_power_charges"]=10108, - ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6406, - ["gain_no_inherent_bonus_from_dexterity"]=1710, - ["gain_no_inherent_bonus_from_intelligence"]=1711, - ["gain_no_inherent_bonus_from_strength"]=1712, - ["gain_onslaught_during_soul_gain_prevention"]=6407, - ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6408, - ["gain_onslaught_for_4_seconds_on_minion_death"]=6409, - ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3789, - ["gain_onslaught_if_you_have_swapped_stance_recently"]=6410, - ["gain_onslaught_ms_on_using_a_warcry"]=6411, - ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2433, - ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6412, - ["gain_onslaught_on_hit_duration_ms"]=6413, - ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6414, - ["gain_onslaught_on_stun_duration_ms"]=2430, - ["gain_onslaught_when_ignited_ms"]=2687, - ["gain_onslaught_while_at_maximum_endurance_charges"]=6415, - ["gain_onslaught_while_frenzy_charges_full"]=3660, - ["gain_onslaught_while_not_on_low_mana"]=6416, - ["gain_onslaught_while_on_low_life"]=6417, - ["gain_onslaught_while_you_have_cats_agility"]=6418, - ["gain_onslaught_while_you_have_fortify"]=6419, - ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2197, - ["gain_phasing_if_enemy_killed_recently"]=6421, - ["gain_phasing_while_affected_by_haste"]=6422, - ["gain_phasing_while_at_maximum_frenzy_charges"]=2195, - ["gain_phasing_while_you_have_cats_stealth"]=6423, - ["gain_phasing_while_you_have_low_life"]=6424, - ["gain_phasing_while_you_have_onslaught"]=2196, - ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2614, - ["gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6425, - ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10122, - ["gain_power_charge_on_critical_strike_with_wands_%"]=6427, - ["gain_power_charge_on_curse_cast_%"]=6428, - ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6429, - ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6430, - ["gain_power_charge_on_mana_flask_use_%_chance"]=6431, - ["gain_power_charge_on_non_critical_strike_%"]=3021, - ["gain_power_charge_on_vaal_skill_use_%"]=6432, - ["gain_power_charge_per_enemy_you_crit"]=2239, - ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6433, - ["gain_power_charge_when_throwing_trap_%"]=2599, - ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6434, - ["gain_rage_on_hitting_rare_unique_enemy_%"]=9060, - ["gain_rage_on_kill"]=9059, - ["gain_rage_when_you_use_a_warcry"]=9061, - ["gain_rampage_while_at_maximum_endurance_charges"]=2898, - ["gain_random_charge_on_block"]=6436, - ["gain_random_charge_per_second_while_stationary"]=6437, - ["gain_rare_monster_mods_on_kill_ms"]=2494, - ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10112, - ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6438, - ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6439, - ["gain_shrine_buff_every_10_seconds"]=6440, - ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6441, - ["gain_soul_eater_during_flask_effect"]=3042, - ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6442, - ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6443, - ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2754, - ["gain_spell_cost_as_mana_every_fifth_cast"]=6444, - ["gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration"]=6445, - ["gain_spirit_charge_every_x_ms"]=3964, - ["gain_spirit_charge_on_kill_%_chance"]=3965, - ["gain_stormsurge_on_hit"]=6370, - ["gain_tailwind_on_critical_hit"]=6447, - ["gain_tailwind_stack_on_skill_use"]=6448, - ["gain_unholy_might_on_block_ms"]=2694, - ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6449, - ["gain_vaal_soul_on_hit_cooldown_ms"]=6450, - ["gain_x_es_on_trap_triggered_by_an_enemy"]=3818, - ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6451, - ["gain_x_fragile_regrowth_per_second"]=6452, - ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4001, - ["gain_x_life_on_trap_triggered_by_an_enemy"]=3817, - ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2662, - ["gain_x_rage_on_hit"]=9063, - ["gain_x_rage_on_hit_with_axes"]=6453, - ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6454, - ["gain_x_rage_on_melee_hit"]=6455, - ["gain_x_rage_per_200_mana_spent"]=6456, - ["gain_x_rage_when_hit"]=6457, - ["gain_x_rage_when_taken_crit"]=6458, - ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6459, - ["galvanic_arrow_area_damage_+%"]=9293, - ["galvanic_arrow_projectile_speed_+%"]=6460, - ["galvanic_field_beam_frequency_+%"]=6461, - ["galvanic_field_cast_speed_+%"]=6462, - ["galvanic_field_damage_+%"]=6463, - ["galvanic_field_number_of_chains"]=6464, - ["gem_experience_gain_+%"]=1580, - ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6465, - ["gemling_all_attributes_+%_final"]=6466, - ["gemling_double_basic_attribute_bonuses"]=6467, - ["gemling_skill_cost_+%_final"]=6468, - ["generals_cry_cooldown_speed_+%"]=6469, - ["generals_cry_maximum_warriors_+"]=6470, - ["generate_endurance_charges_for_allies_in_your_presence"]=1839, - ["generate_frenzy_charges_for_allies_in_your_presence"]=1840, - ["generate_power_charges_for_allies_in_your_presence"]=1841, - ["generate_x_charges_for_any_flask_per_minute"]=6471, - ["generate_x_charges_for_charms_per_minute"]=6472, - ["generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute"]=6473, - ["generate_x_charges_for_guard_flasks_per_minute"]=6474, - ["generate_x_charges_for_life_flasks_per_minute"]=6475, - ["generate_x_charges_for_mana_flasks_per_minute"]=6476, - ["ghostflame_on_hit_duration_ms"]=6477, - ["gifts_from_above_consecrated_ground_while_stationary"]=6478, - ["glacial_cascade_damage_+%"]=3277, - ["glacial_cascade_number_of_additional_bursts"]=6479, - ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6480, - ["glacial_cascade_radius_+%"]=3415, - ["glacial_hammer_damage_+%"]=3231, - ["glacial_hammer_freeze_chance_%"]=3547, - ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2865, - ["glacial_hammer_melee_splash_with_cold_damage"]=6481, - ["glacial_hammer_physical_damage_%_to_gain_as_cold_damage"]=3564, - ["global_added_chaos_damage_%_of_ward"]=1752, - ["global_always_hit"]=1729, - ["global_attack_speed_+%_per_green_socket_on_item"]=2406, - ["global_attack_speed_+%_per_level"]=6482, - ["global_bleed_on_hit"]=6483, - ["global_cannot_crit"]=1866, - ["global_chance_to_blind_on_hit_%"]=2616, - ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6484, - ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6485, - ["global_critical_strike_chance_+%_while_holding_bow"]=2168, - ["global_critical_strike_chance_+%_while_holding_staff"]=2166, - ["global_critical_strike_chance_while_dual_wielding_+%"]=3836, - ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2407, - ["global_critical_strike_multiplier_+_while_holding_bow"]=2169, - ["global_critical_strike_multiplier_+_while_holding_staff"]=2167, - ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1739, - ["global_critical_strike_multiplier_while_dual_wielding_+"]=3835, - ["global_defences_+%"]=2510, - ["global_defences_+%_per_frenzy_charge"]=6486, - ["global_defences_+%_per_white_socket_on_item"]=2412, - ["global_defences_while_in_presence_of_companion_+%"]=6487, - ["global_equipment_attribute_requirements_+%"]=2246, - ["global_equipment_no_attribute_requirements"]=2244, - ["global_evasion_rating_+_while_moving"]=6488, - ["global_gem_attribute_requirements_+%"]=2247, - ["global_gem_attribute_requirements_+%_final_from_gemling"]=6489, - ["global_hit_causes_monster_flee_%"]=1727, - ["global_item_attribute_requirements_+%"]=2248, - ["global_knockback"]=1368, - ["global_knockback_on_crit"]=1648, - ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2403, - ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2409, - ["global_maximum_added_chaos_damage"]=1248, - ["global_maximum_added_cold_damage"]=1236, - ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6490, - ["global_maximum_added_fire_damage"]=1230, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=9617, - ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6491, - ["global_maximum_added_lightning_damage"]=1244, - ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6492, - ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6493, - ["global_maximum_added_physical_damage"]=1168, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6494, - ["global_melee_range_+_per_white_socket_on_item"]=2413, - ["global_minimum_added_chaos_damage"]=1248, - ["global_minimum_added_cold_damage"]=1236, - ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6490, - ["global_minimum_added_fire_damage"]=1230, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=9617, - ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6491, - ["global_minimum_added_lightning_damage"]=1244, - ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6492, - ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6493, - ["global_minimum_added_physical_damage"]=1168, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6494, - ["global_physical_damage_reduction_rating_while_moving"]=6495, - ["global_poison_on_hit"]=2812, - ["global_skill_gems_no_attribute_requirements"]=2245, - ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2404, - ["glory_generation_+%"]=6497, - ["glory_generation_+%_for_banners"]=6498, - ["glory_generation_+%_if_you_have_at_least_100_tribute"]=6496, - ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6499, - ["glows_in_area_with_unique_fish"]=3707, - ["goat_footprints_from_item"]=10127, - ["gold_+%_from_enemies"]=6500, - ["golem_attack_and_cast_speed_+%"]=6501, - ["golem_attack_maximum_added_physical_damage"]=6502, - ["golem_attack_minimum_added_physical_damage"]=6502, - ["golem_buff_effect_+%"]=6503, - ["golem_buff_effect_+%_per_summoned_golem"]=6504, - ["golem_cooldown_recovery_+%"]=2955, - ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3295, - ["golem_damage_+%_per_active_golem"]=3778, - ["golem_damage_+%_per_active_golem_type"]=3777, - ["golem_immunity_to_elemental_damage"]=3673, - ["golem_life_regeneration_per_minute_%"]=6505, - ["golem_maximum_life_+%"]=6506, - ["golem_maximum_mana_+%"]=6507, - ["golem_movement_speed_+%"]=6508, - ["golem_physical_damage_reduction_rating"]=6509, - ["golem_scale_+%"]=3288, - ["golem_skill_cooldown_recovery_+%"]=2954, - ["golems_larger_aggro_radius"]=10034, - ["grace_aura_effect_+%"]=2985, - ["grace_mana_reservation_+%"]=3625, - ["grace_mana_reservation_efficiency_+%"]=6511, - ["grace_mana_reservation_efficiency_-2%_per_1"]=6510, - ["grace_reserves_no_mana"]=6512, - ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2572, - ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6513, - ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6514, - ["grant_unholy_might_to_self_while_not_on_low_mana"]=2693, - ["grant_void_arrow_every_x_ms"]=6515, - ["gratuitous_violence_physical_damage_over_time_+%_final"]=6516, - ["grenade_fuse_duration_+%"]=6517, - ["grenade_projectile_speed_+%"]=6518, - ["grenade_skill_%_chance_to_explode_twice"]=6519, - ["grenade_skill_area_of_effect_+%"]=6520, - ["grenade_skill_cooldown_count_+"]=6521, - ["grenade_skill_cooldown_speed_+%"]=6522, - ["grenade_skill_damage_+%"]=6523, - ["grenade_skill_duration_+%"]=6524, - ["grenade_skill_number_of_additional_projectiles"]=6525, - ["ground_effect_duration_+%"]=6526, - ["ground_slam_angle_+%"]=2889, - ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6527, - ["ground_slam_damage_+%"]=3232, - ["ground_slam_radius_+%"]=3395, - ["ground_smoke_on_rampage_threshold_ms"]=2625, - ["ground_smoke_when_hit_%"]=2272, - ["ground_tar_on_block_base_area_of_effect_radius"]=6528, - ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2204, - ["ground_tar_when_hit_%_chance"]=6529, - ["guard_flask_effect_+%"]=6530, - ["guard_gained_+%"]=6531, - ["guard_skill_cooldown_recovery_+%"]=6532, - ["guard_skill_effect_duration_+%"]=6533, - ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3376, - ["guardian_nearby_allies_share_charges"]=3697, - ["guardian_nearby_enemies_cannot_gain_charges"]=3372, - ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3375, - ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3373, - ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3374, - ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=2938, - ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6534, - ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6535, - ["halve_evasion_rating_from_body"]=6537, - ["harvest_encounter_fluid_granted_+%"]=6538, - ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6539, - ["has_curse_limit_equal_to_maximum_power_charges"]=6540, - ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6541, - ["has_onslaught_if_totem_summoned_recently"]=6542, - ["has_stun_prevention_flask"]=6543, - ["has_trickster_alternating_damage_taken_+%_final"]=6544, - ["has_unique_brutal_shrine_effect"]=6545, - ["has_unique_chaos_shrine_effect"]=6546, - ["has_unique_cold_shrine_effect"]=6547, - ["has_unique_fire_shrine_effect"]=6548, - ["has_unique_lightning_shrine_effect"]=6549, - ["has_unique_massive_shrine_effect"]=6550, - ["haste_aura_effect_+%"]=2986, - ["haste_mana_reservation_+%"]=3626, - ["haste_mana_reservation_efficiency_+%"]=6552, - ["haste_mana_reservation_efficiency_-2%_per_1"]=6551, - ["haste_reserves_no_mana"]=6553, - ["hatred_aura_effect_+%"]=2988, - ["hatred_mana_reservation_+%"]=3616, - ["hatred_mana_reservation_efficiency_+%"]=6555, - ["hatred_mana_reservation_efficiency_-2%_per_1"]=6554, - ["hatred_reserves_no_mana"]=6556, - ["have_unholy_might"]=6557, - ["hazard_area_of_effect_+%"]=6558, - ["hazard_base_debuff_slow_magnitude_+%"]=6559, - ["hazard_damage_+%"]=6560, - ["hazard_duration_+%"]=1618, - ["hazard_hit_damage_immobilisation_multiplier_+%"]=6561, - ["hazard_rearm_%_chance"]=6562, - ["hazards_cant_trigger_x_seconds_after_creation"]=6563, - ["head_hunt_without_a_corpse"]=6564, - ["heat_loss_%_slower"]=6565, - ["heavy_strike_attack_speed_+%"]=3443, - ["heavy_strike_chance_to_deal_double_damage_%"]=2868, - ["heavy_strike_damage_+%"]=3233, - ["heavy_stun_poise_decay_rate_+%"]=6567, - ["heavy_stun_poise_decay_rate_+%_per_10_tribute"]=6566, - ["heavy_stun_threshold_+"]=6568, - ["heavy_stuns_have_culling_strike"]=6569, - ["heist_additional_abyss_rewards_from_reward_chests_%"]=6570, - ["heist_additional_armour_rewards_from_reward_chests_%"]=6571, - ["heist_additional_blight_rewards_from_reward_chests_%"]=6572, - ["heist_additional_breach_rewards_from_reward_chests_%"]=6573, - ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6574, - ["heist_additional_delirium_rewards_from_reward_chests_%"]=6575, - ["heist_additional_delve_rewards_from_reward_chests_%"]=6576, - ["heist_additional_divination_rewards_from_reward_chests_%"]=6577, - ["heist_additional_essences_rewards_from_reward_chests_%"]=6578, - ["heist_additional_gems_rewards_from_reward_chests_%"]=6579, - ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6580, - ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6581, - ["heist_additional_legion_rewards_from_reward_chests_%"]=6582, - ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6583, - ["heist_additional_perandus_rewards_from_reward_chests_%"]=6584, - ["heist_additional_talisman_rewards_from_reward_chests_%"]=6585, - ["heist_additional_uniques_rewards_from_reward_chests_%"]=6586, - ["heist_additional_weapons_rewards_from_reward_chests_%"]=6587, - ["heist_alert_level_gained_on_monster_death"]=6588, - ["heist_alert_level_gained_per_10_sec"]=6589, - ["heist_chests_chance_for_secondary_objectives_%"]=6590, - ["heist_chests_double_blighted_maps_and_catalysts_%"]=6591, - ["heist_chests_double_breach_splinters_%"]=6592, - ["heist_chests_double_catalysts_%"]=6593, - ["heist_chests_double_currency_%"]=6594, - ["heist_chests_double_delirium_orbs_and_splinters_%"]=6595, - ["heist_chests_double_divination_cards_%"]=6596, - ["heist_chests_double_essences_%"]=6597, - ["heist_chests_double_jewels_%"]=6598, - ["heist_chests_double_legion_splinters_%"]=6599, - ["heist_chests_double_map_fragments_%"]=6600, - ["heist_chests_double_maps_%"]=6601, - ["heist_chests_double_oils_%"]=6602, - ["heist_chests_double_scarabs_%"]=6603, - ["heist_chests_double_sextants_%"]=6604, - ["heist_chests_double_uniques_%"]=6605, - ["heist_chests_unique_rarity_%"]=6606, - ["heist_coins_dropped_by_monsters_double_%"]=6608, - ["heist_coins_from_monsters_+%"]=33, - ["heist_coins_from_world_chests_double_%"]=6607, - ["heist_contract_alert_level_+%"]=6611, - ["heist_contract_alert_level_from_chests_+%"]=6609, - ["heist_contract_alert_level_from_monsters_+%"]=6610, - ["heist_contract_gang_cost_+%"]=6612, - ["heist_contract_gang_takes_no_cut"]=6613, - ["heist_contract_generate_secondary_objectives_chance_%"]=6614, - ["heist_contract_guarding_monsters_damage_+%"]=6615, - ["heist_contract_guarding_monsters_take_damage_+%"]=6616, - ["heist_contract_magical_unlock_count"]=6618, - ["heist_contract_mechanical_unlock_count"]=6617, - ["heist_contract_no_travel_cost"]=6619, - ["heist_contract_npc_cost_+%"]=6620, - ["heist_contract_objective_completion_time_+%"]=6621, - ["heist_contract_patrol_additional_elite_chance_+%"]=6622, - ["heist_contract_patrol_damage_+%"]=6623, - ["heist_contract_patrol_take_damage_+%"]=6624, - ["heist_contract_side_area_monsters_damage_+%"]=6625, - ["heist_contract_side_area_monsters_take_damage_+%"]=6626, - ["heist_contract_total_cost_+%_final"]=6627, - ["heist_contract_travel_cost_+%"]=6628, - ["heist_currency_alchemy_drops_as_blessed_%"]=6629, - ["heist_currency_alchemy_drops_as_divine_%"]=6630, - ["heist_currency_alchemy_drops_as_exalted_%"]=6631, - ["heist_currency_alteration_drops_as_alchemy_%"]=6632, - ["heist_currency_alteration_drops_as_chaos_%"]=6633, - ["heist_currency_alteration_drops_as_regal_%"]=6634, - ["heist_currency_augmentation_drops_as_alchemy_%"]=6635, - ["heist_currency_augmentation_drops_as_chaos_%"]=6636, - ["heist_currency_augmentation_drops_as_regal_%"]=6637, - ["heist_currency_chaos_drops_as_blessed_%"]=6638, - ["heist_currency_chaos_drops_as_divine_%"]=6639, - ["heist_currency_chaos_drops_as_exalted_%"]=6640, - ["heist_currency_chromatic_drops_as_fusing_%"]=6641, - ["heist_currency_chromatic_drops_as_jewellers_%"]=6642, - ["heist_currency_jewellers_drops_as_fusing_%"]=6643, - ["heist_currency_regal_drops_as_blessed_%"]=6644, - ["heist_currency_regal_drops_as_divine_%"]=6645, - ["heist_currency_regal_drops_as_exalted_%"]=6646, - ["heist_currency_regret_drops_as_annulment_%"]=6647, - ["heist_currency_scouring_drops_as_annulment_%"]=6648, - ["heist_currency_scouring_drops_as_regret_%"]=6649, - ["heist_currency_transmutation_drops_as_alchemy_%"]=6650, - ["heist_currency_transmutation_drops_as_chaos_%"]=6651, - ["heist_currency_transmutation_drops_as_regal_%"]=6652, - ["heist_drops_double_currency_%"]=6653, - ["heist_enchantment_ailment_mod_effect_+%"]=53, - ["heist_enchantment_attribute_mod_effect_+%"]=54, - ["heist_enchantment_casterdamage_mod_effect_+%"]=55, - ["heist_enchantment_chaos_mod_effect_+%"]=56, - ["heist_enchantment_cold_mod_effect_+%"]=57, - ["heist_enchantment_critical_mod_effect_+%"]=58, - ["heist_enchantment_damage_mod_effect_+%"]=59, - ["heist_enchantment_defence_mod_effect_+%"]=60, - ["heist_enchantment_fire_mod_effect_+%"]=61, - ["heist_enchantment_life_mod_effect_+%"]=62, - ["heist_enchantment_lightning_mod_effect_+%"]=63, - ["heist_enchantment_mana_mod_effect_+%"]=64, - ["heist_enchantment_physical_mod_effect_+%"]=65, - ["heist_enchantment_resistance_mod_effect_+%"]=66, - ["heist_enchantment_speed_mod_effect_+%"]=67, - ["heist_guards_are_magic"]=6654, - ["heist_guards_are_rare"]=6655, - ["heist_interruption_resistance_%"]=6656, - ["heist_item_quantity_+%"]=6657, - ["heist_item_rarity_+%"]=6658, - ["heist_items_are_fully_linked_%"]=6659, - ["heist_items_drop_corrupted_%"]=6660, - ["heist_items_drop_identified_%"]=6661, - ["heist_items_have_elder_influence_%"]=6662, - ["heist_items_have_one_additional_socket_%"]=6663, - ["heist_items_have_shaper_influence_%"]=6664, - ["heist_job_agility_level_+"]=6665, - ["heist_job_brute_force_level_+"]=6666, - ["heist_job_counter_thaumaturgy_level_+"]=6667, - ["heist_job_deception_level_+"]=6668, - ["heist_job_demolition_level_+"]=6669, - ["heist_job_demolition_speed_+%"]=6670, - ["heist_job_engineering_level_+"]=6671, - ["heist_job_lockpicking_level_+"]=6672, - ["heist_job_lockpicking_speed_+%"]=6673, - ["heist_job_perception_level_+"]=6674, - ["heist_job_trap_disarmament_level_+"]=6675, - ["heist_job_trap_disarmament_speed_+%"]=6676, - ["heist_lockdown_is_instant"]=6677, - ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=6678, - ["heist_npc_blueprint_reveal_cost_+%"]=6679, - ["heist_npc_contract_generates_gianna_intelligence"]=6680, - ["heist_npc_contract_generates_niles_intelligence"]=6681, - ["heist_npc_display_huck_combat"]=6682, - ["heist_npc_karst_alert_level_from_chests_+%_final"]=6683, - ["heist_npc_nenet_alert_level_+%_final"]=6684, - ["heist_npc_tullina_alert_level_+%_final"]=6685, - ["heist_npc_vinderi_alert_level_+%_final"]=6686, - ["heist_patrols_are_magic"]=6687, - ["heist_patrols_are_rare"]=6688, - ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=6689, - ["heist_player_armour_+%_final_per_25%_alert_level"]=6690, - ["heist_player_cold_resistance_%_per_25%_alert_level"]=6691, - ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=6692, - ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=6693, - ["heist_player_experience_gain_+%"]=6694, - ["heist_player_fire_resistance_%_per_25%_alert_level"]=6695, - ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=6696, - ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=6697, - ["heist_player_lightning_resistance_%_per_25%_alert_level"]=6698, - ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=6699, - ["heist_reinforcements_attack_speed_+%"]=6700, - ["heist_reinforcements_cast_speed_+%"]=6701, - ["heist_reinforcements_movements_speed_+%"]=6702, - ["heist_side_reward_room_monsters_+%"]=6703, - ["hellscape_extra_item_slots"]=6704, - ["hellscape_extra_map_slots"]=6705, - ["hellscaping_add_corruption_implicit_chance_%"]=6706, - ["hellscaping_add_explicit_mod_chance_%"]=6707, - ["hellscaping_additional_link_chance_%"]=6708, - ["hellscaping_additional_socket_chance_%"]=6709, - ["hellscaping_additional_upside_chance_%"]=6710, - ["hellscaping_downsides_tier_downgrade_chance_%"]=6711, - ["hellscaping_speed_+%_per_map_hellscape_tier"]=6712, - ["hellscaping_upgrade_mod_tier_chance_%"]=6718, - ["hellscaping_upsides_tier_upgrade_chance_%"]=6719, - ["helmet_mod_freeze_as_though_damage_+%_final"]=6720, - ["helmet_mod_shock_as_though_damage_+%_final"]=6721, - ["herald_effect_on_self_+%"]=6722, - ["herald_mana_reservation_override_45%"]=6723, - ["herald_of_agony_buff_drop_off_speed_+%"]=6724, - ["herald_of_agony_buff_effect_+%"]=6725, - ["herald_of_agony_mana_reservation_+%"]=6728, - ["herald_of_agony_mana_reservation_efficiency_+%"]=6727, - ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=6726, - ["herald_of_ash_buff_effect_+%"]=6729, - ["herald_of_ash_damage_+%"]=3310, - ["herald_of_ash_mana_reservation_+%"]=3612, - ["herald_of_ash_mana_reservation_efficiency_+%"]=6731, - ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=6730, - ["herald_of_ice_buff_effect_+%"]=6732, - ["herald_of_ice_damage_+%"]=3311, - ["herald_of_ice_mana_reservation_+%"]=3613, - ["herald_of_ice_mana_reservation_efficiency_+%"]=6734, - ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=6733, - ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=6735, - ["herald_of_light_buff_effect_+%"]=6736, - ["herald_of_light_minion_area_of_effect_+%"]=6737, - ["herald_of_purity_mana_reservation_+%"]=6740, - ["herald_of_purity_mana_reservation_efficiency_+%"]=6739, - ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=6738, - ["herald_of_thunder_bolt_frequency_+%"]=6741, - ["herald_of_thunder_buff_effect_+%"]=6742, - ["herald_of_thunder_damage_+%"]=3312, - ["herald_of_thunder_mana_reservation_+%"]=3614, - ["herald_of_thunder_mana_reservation_efficiency_+%"]=6744, - ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=6743, - ["herald_scorpion_number_of_additional_projectiles"]=6745, - ["herald_skills_mana_reservation_+%"]=6748, - ["herald_skills_mana_reservation_efficiency_+%"]=6747, - ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=6746, - ["hex_remove_at_effect_variance"]=6753, - ["hex_skill_cast_speed_+%"]=1894, - ["hex_skill_duration_+%"]=6749, - ["hexblast_%_chance_to_not_consume_hex"]=6751, - ["hexblast_damage_+%"]=6750, - ["hexblast_skill_area_of_effect_+%"]=6752, - ["hexes_expire_on_reaching_200%_effect"]=6753, - ["hexproof_if_right_ring_is_magic_item"]=6754, - ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=6755, - ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=6756, - ["hierophant_gloves_supported_by_increased_area_of_effect"]=467, - ["hierophant_helmet_supported_by_elemental_penetration"]=466, - ["hierophant_mana_cost_+%_final"]=6757, - ["hierophant_mana_reservation_+%_final"]=6758, - ["hierophant_passive_damage_+%_final_per_totem"]=3341, - ["hinder_chance_%_on_spreading_poioson"]=6759, - ["hinder_duration_+%"]=6760, - ["hinder_effect_on_self_+%"]=6761, - ["hinder_enemy_chaos_damage_+%"]=6762, - ["hinder_enemy_chaos_damage_taken_+%"]=6763, - ["hinder_enemy_elemental_damage_taken_+%"]=6764, - ["hinder_enemy_physical_damage_taken_+%"]=6765, - ["hit_%_chance_to_gain_100%_damage_as_chaos"]=3942, - ["hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos"]=3943, - ["hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos"]=3153, - ["hit_%_chance_to_gain_25%_damage_as_chaos"]=3938, - ["hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos"]=3939, - ["hit_%_chance_to_gain_50%_damage_as_chaos"]=3940, - ["hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos"]=3941, - ["hit_damage_+%"]=6775, - ["hit_damage_+%_vs_bleeding_enemies"]=6776, - ["hit_damage_+%_vs_blinded_enemies"]=6777, - ["hit_damage_+%_vs_chilled_enemies"]=6778, - ["hit_damage_+%_vs_cursed_enemies"]=6779, - ["hit_damage_+%_vs_enemies_affected_by_ailments"]=6780, - ["hit_damage_+%_vs_ignited_enemies"]=6766, - ["hit_damage_+%_vs_unique_enemies"]=6781, - ["hit_damage_electrocute_multiplier_+%"]=6767, - ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=6768, - ["hit_damage_freeze_multiplier_+%"]=1014, - ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=6770, - ["hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently"]=6771, - ["hit_damage_freeze_multiplier_+%_with_empowered_attacks"]=6769, - ["hit_damage_immobilisation_multiplier_+%"]=6772, - ["hit_damage_immobilisation_multiplier_+%_vs_constructs"]=6773, - ["hit_damage_pin_multiplier_+%"]=6774, - ["hit_damage_stun_multiplier_+%"]=1008, - ["hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently"]=6782, - ["hit_damage_stun_multiplier_+%_per_10_tribute"]=6783, - ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=6785, - ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=6786, - ["hit_damage_stun_multiplier_+%_while_shapeshifted"]=6784, - ["hit_for_%_max_life_es_on_max_infernal_flame"]=6787, - ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=6788, - ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=6789, - ["hits_can_only_kill_frozen_enemies"]=2670, - ["hits_cannot_be_evaded_vs_blinded_enemies"]=6790, - ["hits_cannot_be_evaded_vs_heavy_stunned_enemies"]=6791, - ["hits_from_maces_and_sceptres_crush_enemies"]=6792, - ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=6793, - ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=6794, - ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=6795, - ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=6796, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=6798, - ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=6797, - ["hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%"]=6799, - ["hits_treat_enemy_cold_resistance_as_x%"]=6800, - ["hits_treat_enemy_fire_resistance_as_x%"]=6801, - ["hits_treat_enemy_lightning_resistance_as_x%"]=6802, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=6803, - ["holy_path_teleport_range_+%"]=6804, - ["holy_relic_area_of_effect_+%"]=6805, - ["holy_relic_buff_effect_+%"]=6806, - ["holy_relic_cooldown_recovery_+%"]=6807, - ["holy_relic_damage_+%"]=6808, - ["husk_of_dreams_flask_charges_used_-%_final"]=6809, - ["hydro_sphere_pulse_frequency_+%"]=6810, - ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=6811, - ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=6812, - ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=6813, - ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=6814, - ["ice_crash_damage_+%"]=3278, - ["ice_crash_first_stage_damage_+%_final"]=6815, - ["ice_crash_physical_damage_%_to_gain_as_cold_damage"]=3565, - ["ice_crash_radius_+%"]=3418, - ["ice_crystal_maximum_life_+%"]=6816, - ["ice_dash_cooldown_speed_+%"]=6817, - ["ice_dash_duration_+%"]=6818, - ["ice_dash_travel_distance_+%"]=6819, - ["ice_golem_damage_+%"]=3291, - ["ice_golem_elemental_resistances_%"]=3570, - ["ice_nova_chill_minimum_slow_%"]=6820, - ["ice_nova_damage_+%"]=3261, - ["ice_nova_freeze_chance_%"]=3548, - ["ice_nova_radius_+%"]=3405, - ["ice_shot_additional_pierce_per_10_old"]=6821, - ["ice_shot_area_angle_+%"]=6822, - ["ice_shot_damage_+%"]=3245, - ["ice_shot_duration_+%"]=3522, - ["ice_shot_pierce_+"]=6823, - ["ice_shot_radius_+%"]=3401, - ["ice_siphon_trap_chill_effect_+%"]=6824, - ["ice_siphon_trap_damage_+%"]=6825, - ["ice_siphon_trap_damage_taken_+%_per_beam"]=6826, - ["ice_siphon_trap_duration_+%"]=6827, - ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3557, - ["ice_spear_and_ball_lightning_projectiles_nova"]=6828, - ["ice_spear_and_ball_lightning_projectiles_return"]=6829, - ["ice_spear_damage_+%"]=3262, - ["ice_spear_distance_before_form_change_+%"]=6830, - ["ice_spear_number_of_additional_projectiles"]=6831, - ["ice_spear_second_form_critical_strike_chance_+%"]=3703, - ["ice_spear_second_form_critical_strike_multiplier_+"]=3704, - ["ice_spear_second_form_projectile_speed_+%_final"]=3705, - ["ice_trap_cold_resistance_penetration_%"]=6832, - ["ice_trap_cooldown_speed_+%"]=3478, - ["ice_trap_damage_+%"]=3327, - ["ice_trap_radius_+%"]=3431, - ["ignite_as_though_dealing_X_damage_in_your_presence"]=6836, - ["ignite_chance_+%"]=1012, - ["ignite_duration_+%"]=1566, - ["ignite_effect_+%_against_frozen_enemies"]=6839, - ["ignite_effect_+%_if_consumed_endurance_charge_recently"]=6840, - ["ignite_effect_on_self_+%"]=6838, - ["ignite_effect_on_self_+%_while_shapeshifted"]=6837, - ["ignite_magnitude_+%_against_poisoned_enemies"]=6841, - ["ignite_prevention_ms_when_ignited"]=2569, - ["ignite_proliferation_radius_15"]=1896, - ["ignite_shock_chill_duration_+%"]=6842, - ["ignite_slower_burn_%"]=2261, - ["ignited_enemies_explode_on_kill"]=2288, - ["ignites_and_chill_apply_elemental_resistance_+"]=6843, - ["ignites_apply_fire_resistance_+"]=6844, - ["ignites_reflected_to_self"]=2686, - ["ignore_armour_movement_penalties"]=1867, - ["ignore_armour_movement_penalties_if_you_have_at_least_100_tribute"]=6845, - ["ignore_hexproof"]=2293, - ["ignore_strength_requirements_of_melee_weapons_and_skills"]=6846, - ["ignores_enemy_cold_resistance"]=6847, - ["ignores_enemy_fire_resistance"]=6848, - ["ignores_enemy_lightning_resistance"]=6849, - ["imbue_weapon_max_exerts"]=6850, - ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3607, - ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=6851, - ["immortal_call_duration_+%"]=3488, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=6852, - ["immune_to_ally_buff_auras"]=2667, - ["immune_to_bleeding"]=3792, - ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=6853, - ["immune_to_burning_shocks_and_chilled_ground"]=6854, - ["immune_to_chill_if_majority_blue_supports_socketed"]=6855, - ["immune_to_corrupted_blood"]=6856, - ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=6857, - ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=6858, - ["immune_to_curses_while_at_least_X_rage"]=6859, - ["immune_to_curses_while_channelling"]=6860, - ["immune_to_elemental_ailments_while_on_consecrated_ground"]=6861, - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=6862, - ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=6863, - ["immune_to_elemental_status_ailments_during_flask_effect"]=3801, - ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10015, - ["immune_to_exposure"]=6864, - ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=6865, - ["immune_to_freeze_and_chill_while_ignited"]=6866, - ["immune_to_freeze_chill_while_archon"]=6867, - ["immune_to_freeze_while_affected_by_purity_of_ice"]=6868, - ["immune_to_hinder"]=6869, - ["immune_to_ignite_and_shock"]=6870, - ["immune_to_ignite_if_majority_red_supports_socketed"]=6871, - ["immune_to_ignite_while_affected_by_purity_of_fire"]=6872, - ["immune_to_ignite_while_archon"]=6873, - ["immune_to_maim"]=6874, - ["immune_to_poison"]=3212, - ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=6875, - ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=6876, - ["immune_to_shock_if_majority_green_supports_socketed"]=6877, - ["immune_to_shock_while_affected_by_purity_of_lightning"]=6878, - ["immune_to_shock_while_archon"]=6879, - ["immune_to_status_ailments_while_focused"]=6880, - ["immune_to_status_ailments_while_phased"]=3075, - ["immune_to_thorns_damage"]=6881, - ["immune_to_wither"]=6882, - ["impacting_steel_%_chance_to_not_consume_ammo"]=6883, - ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=6884, - ["impale_magnitude_+%"]=6885, - ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=6886, - ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=6887, - ["impale_on_hit_%_chance"]=6888, - ["impale_on_hit_%_chance_with_axes_swords"]=6889, - ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=6890, - ["impurity_cold_damage_taken_+%_final"]=6891, - ["impurity_fire_damage_taken_+%_final"]=6892, - ["impurity_lightning_damage_taken_+%_final"]=6893, - ["incinerate_damage_+%"]=3263, - ["incinerate_damage_+%_per_stage"]=3587, - ["incinerate_projectile_speed_+%"]=3485, - ["incinerate_starts_with_X_additional_stages"]=6894, - ["incision_effect_+%"]=6895, - ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=6896, - ["increase_crit_chance_by_lowest_of_str_or_int"]=6897, - ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1343, - ["increases_and_reductions_to_move_speed_apply_to_es_recharge_rate"]=6898, - ["infernal_blow_damage_+%"]=3234, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=6899, - ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=6900, - ["infernal_blow_physical_damage_%_to_gain_as_fire_damage"]=3545, - ["infernal_blow_radius_+%"]=3396, - ["infernal_cry_area_of_effect_+%"]=6901, - ["infernal_cry_cooldown_speed_+%"]=6902, - ["infernal_familiar_burn_damage"]=6903, - ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=6904, - ["infernal_familiar_revive_if_killed_by_enemies_ms"]=6905, - ["infernal_familiar_total_burn_radius"]=6903, - ["infernal_flame_instead_of_mana_at_%_ratio"]=6536, - ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=6906, - ["infernalist_critical_strike_chance_+%_final"]=6907, - ["infernalist_critical_strike_multiplier_+%_final"]=6908, - ["infinite_active_block_distance"]=6909, - ["inflict_all_exposure_on_hit"]=6910, - ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=6911, - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=6912, - ["inflict_cold_exposure_on_ignite"]=6913, - ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=6914, - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=6915, - ["inflict_fire_exposure_on_hits_that_heavy_stun"]=6916, - ["inflict_fire_exposure_on_shock"]=6917, - ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=6918, - ["inflict_lightning_exposure_on_crit"]=6919, - ["inflict_lightning_exposure_on_electrocute_for_x_seconds"]=6920, - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=6921, - ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=6922, - ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=6923, - ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=6924, - ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=6925, - ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=6926, - ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=6927, - ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=6928, - ["infusion_blast_area_of_effect_+%"]=6929, - ["infusion_blast_damage_+%"]=6930, - ["infusion_duration_+%"]=6931, - ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=6932, - ["inquisitor_aura_elemental_damage_+%_final"]=3192, - ["inspiration_charge_duration_+%"]=6933, - ["instability_on_critical_%_chance"]=6934, - ["instilling_%_chance_to_gain_additional_instilling_stack"]=6935, - ["intelligence_+%"]=1106, - ["intelligence_+%_per_equipped_unique"]=2287, - ["intelligence_inherently_grants_life_instead_of_mana"]=1709, - ["intelligence_is_0"]=6936, - ["intelligence_skill_gem_level_+"]=6937, - ["intensity_loss_frequency_while_moving_+%"]=6938, - ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=6939, - ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=6940, - ["intimidate_enemy_on_block_for_duration_ms"]=6941, - ["intimidate_nearby_enemies_on_use_for_ms"]=6942, - ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=6943, - ["intimidating_cry_area_of_effect_+%"]=6944, - ["intimidating_cry_cooldown_speed_+%"]=6945, - ["intuitive_link_duration_+%"]=6946, - ["invocation_skill_maximum_energy_+%"]=6947, - ["invocation_spell_chance_to_cost_half_energy_%"]=6948, - ["invocation_spell_critical_strike_chance_+%"]=6949, - ["invocation_spell_critical_strike_multiplier_+"]=6950, - ["invocation_spell_damage_+%"]=6951, - ["iron_reflexes_rotation_active"]=10113, - ["is_blighted_map"]=6952, - ["is_hindered"]=3686, - ["is_petrified"]=3205, - ["item_drop_slots"]=10, - ["item_drops_on_death"]=2254, - ["item_found_quality_+%"]=1419, - ["item_found_quantity_+%"]=1410, - ["item_found_quantity_+%_if_wearing_a_magic_item"]=3788, - ["item_found_quantity_+%_per_chest_opened_recently"]=6953, - ["item_found_quantity_+%_per_white_socket_on_item"]=2410, - ["item_found_quantity_+%_when_on_low_life"]=1412, - ["item_found_rarity_+%"]=1414, - ["item_found_rarity_+%_if_wearing_a_normal_item"]=3787, - ["item_found_rarity_+%_per_white_socket_on_item"]=2411, - ["item_found_rarity_+%_when_on_low_life"]=1417, - ["item_found_rarity_+%_while_phasing"]=2199, - ["item_found_rarity_+1%_per_X_rampage_stacks"]=6954, - ["item_found_relevancy_+%"]=1420, - ["item_generation_can_have_multiple_crafted_mods"]=50, - ["item_generation_cannot_change_prefixes"]=45, - ["item_generation_cannot_change_suffixes"]=47, - ["item_generation_cannot_roll_attack_affixes"]=49, - ["item_generation_cannot_roll_caster_affixes"]=48, - ["item_generation_local_maximum_mod_required_level_override"]=52, - ["item_rarity_+%_while_using_flask"]=2436, - ["jagged_ground_duration_+%"]=6955, - ["jagged_ground_effect_+%"]=6956, - ["jagged_ground_enemy_damage_taken_+%"]=6957, - ["jewellery_hellscaping_speed_+%"]=6714, - ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2475, - ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=6958, - ["keystone_2_companions"]=10047, - ["keystone_acrobatics"]=10048, - ["keystone_alternate_dexterity_bonus"]=10049, - ["keystone_alternate_es_recovery"]=10050, - ["keystone_alternate_intelligence_bonus"]=10051, - ["keystone_alternate_strength_bonus"]=10052, - ["keystone_ancestral_bond"]=10053, - ["keystone_auto_invocation"]=10054, - ["keystone_avatar_of_fire"]=10055, - ["keystone_battlemage"]=10056, - ["keystone_blood_magic"]=10057, - ["keystone_bulwark"]=10058, - ["keystone_call_to_arms"]=10059, - ["keystone_chaos_inoculation"]=10060, - ["keystone_charge_cycle"]=10061, - ["keystone_conduit"]=10062, - ["keystone_crimson_assault"]=10063, - ["keystone_crimson_dance"]=10064, - ["keystone_dance_with_death"]=10065, - ["keystone_divine_flesh"]=10066, - ["keystone_divine_shield"]=10067, - ["keystone_druidic_rage"]=10068, - ["keystone_eldritch_battery"]=10069, - ["keystone_elemental_equilibrium"]=10070, - ["keystone_elemental_overload"]=10071, - ["keystone_emperors_heart"]=10072, - ["keystone_eternal_youth"]=10073, - ["keystone_everlasting_sacrifice"]=10074, - ["keystone_fire_spells_become_chaos_spells"]=10075, - ["keystone_giants_blood"]=10076, - ["keystone_glancing_blows"]=10077, - ["keystone_heartstopper"]=10078, - ["keystone_hex_master"]=10079, - ["keystone_hollow_palm_technique"]=10080, - ["keystone_impale"]=10081, - ["keystone_iron_grip"]=10082, - ["keystone_iron_reflexes"]=10083, - ["keystone_iron_will"]=10084, - ["keystone_lord_of_the_wilds"]=10085, - ["keystone_mana_shield"]=10086, - ["keystone_minion_instability"]=10087, - ["keystone_oasis"]=10088, - ["keystone_pain_attunement"]=10089, - ["keystone_point_blank"]=10090, - ["keystone_precise_technique"]=10091, - ["keystone_quiet_might"]=10092, - ["keystone_runebinder"]=10093, - ["keystone_sacred_bastion"]=10094, - ["keystone_secrets_of_suffering"]=10095, - ["keystone_shepherd_of_souls"]=6959, - ["keystone_unwavering_stance"]=10096, - ["keystone_vaal_pact"]=10097, - ["keystone_versatile_combatant"]=10098, - ["keystone_wildsurge_incantation"]=10099, - ["keystone_zealots_oath"]=10100, - ["kill_enemy_on_hit_if_under_10%_life"]=1724, - ["kill_enemy_on_hit_if_under_15%_life"]=3790, - ["kill_enemy_on_hit_if_under_20%_life"]=3791, - ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=6960, - ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2381, - ["killed_monster_dropped_item_rarity_+%_on_crit"]=2330, - ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2384, - ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2382, - ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3178, - ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2383, - ["kills_count_twice_for_rampage_%"]=6961, - ["kinetic_blast_%_chance_for_additional_blast"]=3696, - ["kinetic_blast_damage_+%"]=3279, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=6962, - ["kinetic_blast_radius_+%"]=3419, - ["kinetic_bolt_attack_speed_+%"]=6963, - ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=6964, - ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=6965, - ["kinetic_bolt_projectile_speed_+%"]=6966, - ["kinetic_wand_base_number_of_zig_zags"]=6967, - ["knockback_chance_%_against_bleeding_enemies_with_hits"]=6968, - ["knockback_chance_%_at_close_range"]=6969, - ["knockback_distance_+%"]=1693, - ["knockback_distance_+%_final_vs_unique_enemies"]=6970, - ["knockback_on_counterattack_%"]=3221, - ["knockback_on_crit_with_bow"]=1649, - ["knockback_on_crit_with_projectile_damage"]=6971, - ["knockback_on_crit_with_quarterstaff"]=1650, - ["knockback_on_crit_with_wand"]=1651, - ["knockback_with_bow"]=1371, - ["knockback_with_staff"]=1372, - ["knockback_with_wand"]=1373, - ["labyrinth_darkshrine_additional_divine_font_use_display"]=6972, - ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=6973, - ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=6974, - ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=6975, - ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=6976, - ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=6977, - ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=6978, - ["labyrinth_owner_x_addition_enchants"]=6979, - ["lancing_steel_%_chance_to_not_consume_ammo"]=6983, - ["lancing_steel_damage_+%"]=6980, - ["lancing_steel_impale_chance_%"]=6981, - ["lancing_steel_number_of_additional_projectiles"]=6982, - ["lancing_steel_primary_proj_pierce_num"]=6984, - ["last_tremor_duration_ms"]=6985, - ["leap_slam_attack_speed_+%"]=3446, - ["leap_slam_damage_+%"]=3250, - ["leap_slam_radius_+%"]=3403, - ["leech_%_is_instant"]=6986, - ["leech_rate_+%"]=1843, - level=9, - ["lich_mana_cost_+%_final_if_you_have_no_energy_shield"]=145, - ["life_%_gained_on_kill_if_spent_life_recently"]=2595, - ["life_+%_with_no_corrupted_equipped_items"]=3779, - ["life_and_energy_shield_recovery_rate_+%"]=6987, - ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=6988, - ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=6989, - ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=6990, - ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=6991, - ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=6992, - ["life_and_mana_gain_per_hit"]=1454, - ["life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped"]=6993, - ["life_degeneration_%_per_minute_not_in_grace"]=1640, - ["life_degeneration_per_minute_not_in_grace"]=1398, - ["life_flask_charges_gained_+%"]=6994, - ["life_flask_charges_recovered_per_3_seconds"]=6995, - ["life_flask_effects_are_not_removed_at_full_life"]=6996, - ["life_flask_recovery_can_overcap_life"]=6997, - ["life_flask_recovery_is_instant"]=6998, - ["life_flask_recovery_is_instant_while_on_low_life"]=6999, - ["life_flasks_do_not_recover_life"]=7000, - ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7001, - ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7002, - ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7003, - ["life_gain_on_ignited_enemy_hit"]=1456, - ["life_gain_per_target"]=1452, - ["life_gain_per_target_hit_while_affected_by_vitality"]=7004, - ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7005, - ["life_gained_on_attack_hit_vs_cursed_enemies"]=7006, - ["life_gained_on_bleeding_enemy_hit"]=3172, - ["life_gained_on_block"]=1469, - ["life_gained_on_cull"]=7007, - ["life_gained_on_enemy_death_per_frenzy_charge"]=2594, - ["life_gained_on_enemy_death_per_level"]=2629, - ["life_gained_on_hit_per_enemy_status_ailment"]=2718, - ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7008, - ["life_gained_on_killing_ignited_enemies"]=1465, - ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2719, - ["life_gained_on_taunting_enemy"]=1492, - ["life_leech_%_is_instant_if_you_have_at_least_200_tribute"]=7009, - ["life_leech_%_is_instant_per_defiance"]=7017, - ["life_leech_%_maximum_life_on_spell_cast"]=7018, - ["life_leech_also_recovers_based_on_elemental_damage_types"]=7010, - ["life_leech_amount_+%_if_consumed_frenzy_charge_recently"]=7011, - ["life_leech_amount_+%_while_shapeshifted"]=7012, - ["life_leech_can_overcap_life"]=7013, - ["life_leech_excess_goes_to_energy_shield"]=7014, - ["life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute"]=7015, - ["life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies"]=1451, - ["life_leech_is_instant_for_empowered_attacks"]=7016, - ["life_leech_rate_+%_if_you_have_at_least_100_tribute"]=7019, - ["life_leech_rate_+%_per_equipped_corrupted_item"]=2742, - ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=7020, - ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=7021, - ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=7022, - ["life_loss_%_per_minute_if_have_been_hit_recently"]=7024, - ["life_loss_%_per_minute_while_sprinting"]=7023, - ["life_lost_%_per_minute_nonlethal"]=7025, - ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7026, - ["life_mana_flasks_restore_mana_life"]=7027, - ["life_mastery_count_maximum_life_+%_final"]=7028, - ["life_per_level"]=7029, - ["life_recoup_also_applies_to_energy_shield"]=7030, - ["life_recoup_applies_to_energy_shield_instead"]=7031, - ["life_recovery_+%_from_flasks_while_on_low_life"]=7037, - ["life_recovery_from_flasks_also_recovers_energy_shield"]=7032, - ["life_recovery_from_flasks_applies_to_companions"]=7033, - ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=7034, - ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7035, - ["life_recovery_from_regeneration_is_not_applied"]=7036, - ["life_recovery_rate_+%"]=1400, - ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7040, - ["life_recovery_rate_+%_if_havent_killed_recently"]=7041, - ["life_recovery_rate_+%_per_10_tribute"]=7038, - ["life_recovery_rate_+%_per_5%_missing_life"]=7039, - ["life_recovery_rate_+%_while_affected_by_vitality"]=7042, - ["life_recovery_rate_while_in_presence_of_companion_+%"]=7043, - ["life_regen_per_minute_per_endurance_charge"]=2659, - ["life_regenerate_rate_per_second_%_while_totem_active"]=3634, - ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7058, - ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7059, - ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7044, - ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7050, - ["life_regeneration_per_minute_%_per_fortification"]=7051, - ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7052, - ["life_regeneration_per_minute_%_while_channelling"]=7053, - ["life_regeneration_per_minute_%_while_fortified"]=2835, - ["life_regeneration_per_minute_%_while_frozen"]=3337, - ["life_regeneration_per_minute_%_while_ignited"]=7045, - ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=3955, - ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=3956, - ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=3954, - ["life_regeneration_per_minute_in_blood_stance"]=9490, - ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7046, - ["life_regeneration_per_minute_per_active_buff"]=7047, - ["life_regeneration_per_minute_per_maximum_energy_shield"]=7048, - ["life_regeneration_per_minute_per_nearby_corpse"]=7049, - ["life_regeneration_per_minute_while_affected_by_vitality"]=7054, - ["life_regeneration_per_minute_while_ignited"]=7055, - ["life_regeneration_per_minute_while_moving"]=7056, - ["life_regeneration_per_minute_while_you_have_avians_flight"]=7057, - ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3780, - ["life_regeneration_rate_+%"]=993, - ["life_regeneration_rate_+%_while_es_full"]=2720, - ["life_regeneration_rate_+%_while_ignited"]=7060, - ["life_regeneration_rate_+%_while_moving"]=7085, - ["life_regeneration_rate_+%_while_on_low_life"]=7086, - ["life_regeneration_rate_+%_while_shapeshifted"]=7061, - ["life_regeneration_rate_+%_while_stationary"]=7087, - ["life_regeneration_rate_+%_while_surrounded"]=7062, - ["life_regeneration_rate_+%_while_using_life_flask"]=7063, - ["life_regeneration_rate_per_minute_%"]=1641, - ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7068, - ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7069, - ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7070, - ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=7071, - ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7072, - ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7064, - ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3800, - ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7073, - ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7074, - ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1399, - ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=3981, - ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2316, - ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7075, - ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7076, - ["life_regeneration_rate_per_minute_%_per_power_charge"]=7077, - ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7078, - ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7079, - ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1836, - ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1642, - ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=7065, - ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7066, - ["life_regeneration_rate_per_minute_%_while_moving"]=7080, - ["life_regeneration_rate_per_minute_%_while_stationary"]=7081, - ["life_regeneration_rate_per_minute_%_while_surrounded"]=7067, - ["life_regeneration_rate_per_minute_%_while_using_flask"]=7082, - ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7083, - ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2743, - ["life_regeneration_rate_per_minute_per_level"]=2619, - ["life_regeneration_rate_per_minute_while_on_low_life"]=7084, - ["life_reserved_by_stat_%"]=2136, - ["light_radius_+%"]=1027, - ["light_radius_+%_per_10_tribute"]=7088, - ["light_radius_+%_while_phased"]=2202, - ["light_radius_additive_modifiers_apply_to_area_%_value"]=2192, - ["light_radius_additive_modifiers_apply_to_damage"]=2193, - ["light_radius_increases_apply_to_accuracy"]=7089, - ["light_radius_increases_apply_to_area_of_effect"]=7090, - ["light_radius_scales_with_energy_shield"]=2421, - ["lightning_ailment_duration_+%"]=7091, - ["lightning_ailment_effect_+%"]=7093, - ["lightning_ailment_effect_+%_against_chilled_enemies"]=7092, - ["lightning_and_chaos_damage_resistance_%"]=7094, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7095, - ["lightning_arrow_damage_+%"]=3251, - ["lightning_arrow_radius_+%"]=3404, - ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7096, - ["lightning_conduit_area_of_effect_+%"]=7097, - ["lightning_conduit_cast_speed_+%"]=7098, - ["lightning_conduit_damage_+%"]=7099, - ["lightning_critical_strike_chance_+%"]=1338, - ["lightning_critical_strike_multiplier_+"]=1359, - ["lightning_damage_%_taken_from_mana_before_life"]=3747, - ["lightning_damage_+%"]=881, - ["lightning_damage_+%_per_10_intelligence"]=3710, - ["lightning_damage_+%_per_frenzy_charge"]=2593, - ["lightning_damage_+%_per_lightning_resistance_above_75"]=7101, - ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7102, - ["lightning_damage_+%_while_affected_by_wrath"]=7103, - ["lightning_damage_can_chill"]=2552, - ["lightning_damage_can_freeze"]=2557, - ["lightning_damage_can_ignite"]=7100, - ["lightning_damage_cannot_shock"]=2563, - ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7104, - ["lightning_damage_resistance_+%"]=1443, - ["lightning_damage_resistance_is_%"]=1441, - ["lightning_damage_taken_%_as_cold"]=2821, - ["lightning_damage_taken_%_as_fire"]=2820, - ["lightning_damage_taken_+"]=7106, - ["lightning_damage_taken_+%"]=3006, - ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7105, - ["lightning_damage_to_return_to_melee_attacker"]=1886, - ["lightning_damage_to_return_when_hit"]=1891, - ["lightning_damage_with_attack_skills_+%"]=7107, - ["lightning_damage_with_spell_skills_+%"]=7108, - ["lightning_dot_multiplier_+"]=1164, - ["lightning_explosion_mine_aura_effect_+%"]=7109, - ["lightning_explosion_mine_damage_+%"]=7110, - ["lightning_explosion_mine_throwing_speed_+%"]=7111, - ["lightning_exposure_effect_+%"]=7112, - ["lightning_exposure_on_hit_magnitude"]=7113, - ["lightning_golem_damage_+%"]=3292, - ["lightning_golem_elemental_resistances_%"]=3571, - ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7114, - ["lightning_hit_damage_+%_vs_chilled_enemies"]=7115, - ["lightning_penetration_%_while_on_low_mana"]=738, - ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7116, - ["lightning_resist_unaffected_by_area_penalties"]=7117, - ["lightning_resistance_does_not_apply_to_lighting_damage"]=7118, - ["lightning_skill_additional_chain_chance_%"]=7119, - ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7120, - ["lightning_skill_gem_level_+"]=7121, - ["lightning_skill_stun_threshold_+%"]=7122, - ["lightning_skills_chance_to_poison_on_hit_%"]=7123, - ["lightning_spell_skill_gem_level_+"]=950, - ["lightning_strike_additional_pierce"]=3542, - ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7124, - ["lightning_strike_damage_+%"]=3235, - ["lightning_strike_num_of_additional_projectiles"]=3533, - ["lightning_tendrils_critical_strike_chance_+%"]=3692, - ["lightning_tendrils_damage_+%"]=3236, - ["lightning_tendrils_radius_+%"]=3397, - ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7125, - ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7126, - ["lightning_tower_trap_additional_number_of_beams"]=7127, - ["lightning_tower_trap_cast_speed_+%"]=7128, - ["lightning_tower_trap_cooldown_speed_+%"]=7129, - ["lightning_tower_trap_damage_+%"]=7130, - ["lightning_tower_trap_duration_+%"]=7131, - ["lightning_tower_trap_throwing_speed_+%"]=7132, - ["lightning_trap_additional_pierce"]=3543, - ["lightning_trap_cooldown_speed_+%"]=3036, - ["lightning_trap_damage_+%"]=3034, - ["lightning_trap_lightning_resistance_penetration_%"]=7133, - ["lightning_trap_number_of_additional_projectiles"]=3035, - ["lightning_trap_shock_effect_+%"]=7134, - ["lightning_warp_cast_speed_+%"]=3461, - ["lightning_warp_damage_+%"]=3252, - ["lightning_warp_duration_+%"]=3521, - ["lightning_weakness_ignores_hexproof"]=2299, - ["lineage_support_gem_limit_+"]=7135, - ["link_buff_effect_+%_on_animate_guardian"]=7136, - ["link_effect_+%_when_50%_expired"]=7137, - ["link_grace_period_8_second_override"]=7138, - ["link_skill_buff_effect_+%"]=7139, - ["link_skill_buff_effect_+%_if_linked_target_recently"]=7140, - ["link_skill_cast_speed_+%"]=7141, - ["link_skill_duration_+%"]=7142, - ["link_skill_gem_level_+"]=7143, - ["link_skill_link_target_cannot_die_for_X_seconds"]=7144, - ["link_skill_lose_no_experience_on_link_target_death"]=7145, - ["link_skill_mana_cost_+%"]=7146, - ["link_skills_can_target_animate_guardian"]=7147, - ["link_skills_can_target_minions"]=7148, - ["link_skills_grant_damage_+%"]=7149, - ["link_skills_grant_damage_taken_+%"]=7150, - ["link_skills_grant_redirect_curses_to_link_source"]=7151, - ["link_to_X_additional_random_allies"]=7152, - ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7153, - ["local_%_chance_to_gain_flask_charge_on_kill"]=1028, - ["local_%_chance_to_gain_flask_charge_when_hit"]=7154, - ["local_+%_weapon_range"]=7155, - ["local_X_additional_chains"]=7156, - ["local_accuracy_rating"]=850, - ["local_accuracy_rating_+%"]=1717, - ["local_accuracy_rating_+%_per_2%_quality"]=7157, - ["local_additional_attack_chain_chance_%"]=7158, - ["local_additional_block_chance_%"]=853, - ["local_additional_charm_slots"]=968, - ["local_additional_vivisection_random_keystone_index"]=10045, - ["local_aggravate_bleeding_on_hit_chance_%"]=7159, - ["local_aggravating_bleeds_also_causes_you_to_aggravate_ignites"]=4153, - ["local_all_attributes_+%_per_rune_or_soul_core"]=7162, - ["local_all_attributes_+_per_rune_or_soul_core"]=7160, - ["local_all_attributes_-_per_level"]=7161, - ["local_all_damage_can_chill"]=7163, - ["local_all_damage_can_electrocute"]=7164, - ["local_all_damage_can_freeze"]=7165, - ["local_all_damage_can_pin"]=7166, - ["local_all_damage_can_poison"]=2164, - ["local_always_crit_heavy_stunned_enemies"]=7167, - ["local_always_freeze_on_full_life"]=7168, - ["local_always_heavy_stun_on_full_life"]=1090, - ["local_always_hit"]=1728, - ["local_always_maim_on_crit"]=7169, - ["local_apply_X_armour_break_on_crit"]=7170, - ["local_apply_X_armour_break_on_hit"]=7171, - ["local_apply_X_armour_break_on_stun"]=7172, - ["local_apply_extra_herald_mod_when_synthesised"]=10016, - ["local_apply_fire_exposure_on_full_armour_break"]=7173, - ["local_area_of_effect_+%_per_4%_quality"]=7174, - ["local_armour_and_energy_shield_+%"]=862, - ["local_armour_and_evasion_+%"]=861, - ["local_armour_and_evasion_and_energy_shield_+%"]=864, - ["local_armour_break_damage_%_dealt_as_armour_break"]=7175, - ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7176, - ["local_attack_cast_movement_speed_+%_during_flask_effect"]=819, - ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=820, - ["local_attack_damage_+%_if_item_corrupted"]=7177, - ["local_attack_maximum_added_physical_damage_per_3_levels"]=1171, - ["local_attack_minimum_added_physical_damage_per_3_levels"]=1171, - ["local_attack_speed_+%"]=943, - ["local_attack_speed_+%_per_8%_quality"]=7178, - ["local_attacks_cannot_be_blocked"]=7179, - ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7180, - ["local_attacks_impale_on_hit_%_chance"]=7181, - ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7182, - ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7183, - ["local_attacks_with_this_weapon_elemental_damage_+%"]=2591, - ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2604, - ["local_attribute_requirements_+%"]=945, - ["local_avoid_chill_%_during_flask_effect"]=747, - ["local_avoid_freeze_%_during_flask_effect"]=748, - ["local_avoid_ignite_%_during_flask_effect"]=749, - ["local_avoid_shock_%_during_flask_effect"]=750, - ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=7184, - ["local_base_evasion_rating"]=856, - ["local_base_evasion_rating_per_level"]=7185, - ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=7186, - ["local_base_maximum_life_+_per_rune_or_soul_core"]=7187, - ["local_base_maximum_mana_+_per_rune_or_soul_core"]=7188, - ["local_base_physical_damage_reduction_rating"]=855, - ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=7189, - ["local_base_stun_duration_+%"]=1011, - ["local_bleed_on_critical_strike_chance_%"]=7190, - ["local_bleed_on_hit"]=2174, - ["local_bleeding_effect_+%"]=832, - ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7191, - ["local_block_chance_+%"]=854, - ["local_can_have_additional_crafted_mods"]=51, - ["local_can_only_deal_damage_with_this_weapon"]=2398, - ["local_can_only_socket_corrupted_gems"]=7192, - ["local_can_only_socket_emerald_gems"]=7193, - ["local_can_only_socket_ruby_gems"]=7194, - ["local_can_only_socket_sapphire_gems"]=7195, - ["local_can_only_socket_soul_cores"]=80, - ["local_can_socket_gems_ignoring_colour"]=92, - ["local_cannot_be_thrown"]=7196, - ["local_cannot_be_used_with_chaos_innoculation"]=833, - ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4474, - ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10119, - ["local_chance_to_bleed_on_crit_50%"]=7197, - ["local_chance_to_bleed_on_hit_%"]=2177, - ["local_chance_to_bleed_on_hit_25%"]=2175, - ["local_chance_to_bleed_on_hit_50%"]=2176, - ["local_chance_to_blind_on_hit_%"]=1961, - ["local_chance_to_gain_onslaught_on_killing_blow_%"]=7198, - ["local_chance_to_intimidate_on_hit_%"]=7199, - ["local_chance_to_poison_on_hit_%_during_flask_effect"]=751, - ["local_chaos_damage_taken_per_minute_during_flask_effect"]=814, - ["local_chaos_penetration_%"]=7200, - ["local_charges_added_+%"]=1029, - ["local_charges_used_+%"]=1030, - ["local_charm_duration_+%"]=927, - ["local_charm_effect_+%"]=7201, - ["local_charm_slots"]=4654, - ["local_charm_trigger_when_cursed"]=700, - ["local_chill_on_hit_ms_if_in_off_hand"]=7202, - ["local_cold_penetration_%"]=3356, - ["local_cold_resistance_%_per_2%_quality"]=7203, - ["local_concoction_can_consume_sulphur_flasks"]=7204, - ["local_connectivity_of_sockets_+%"]=1615, - ["local_consecrate_ground_on_flask_use_radius"]=661, - ["local_critical_strike_chance"]=941, - ["local_critical_strike_chance_+%"]=1320, - ["local_critical_strike_chance_+%_if_item_corrupted"]=7205, - ["local_critical_strike_chance_+%_per_4%_quality"]=7206, - ["local_critical_strike_multiplier_+"]=942, - ["local_crits_have_culling_strike"]=7207, - ["local_crush_on_hit"]=7208, - ["local_cull_frozen_enemies_on_hit"]=7209, - ["local_culling_strike"]=7210, - ["local_culling_strike_if_crit_recently"]=7211, - ["local_culling_strike_vs_bleeding_enemies"]=7212, - ["local_damage_+%_if_item_corrupted"]=7213, - ["local_damage_roll_always_min_or_max"]=7214, - ["local_damage_taken_+%_if_item_corrupted"]=7215, - ["local_destroy_corpses_with_critical_strikes"]=7216, - ["local_dexterity_per_2%_quality"]=7217, - ["local_dexterity_requirement_+"]=834, - ["local_dexterity_requirement_+%"]=835, - ["local_disable_gem_experience_gain"]=1612, - ["local_disable_rare_mod_on_hit_%_chance"]=7218, - ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=569, - ["local_display_aura_allies_have_culling_strike"]=2226, - ["local_display_aura_allies_have_increased_item_rarity_+%"]=1415, - ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2379, - ["local_display_aura_curse_effect_on_self_+%"]=2388, - ["local_display_aura_damage_+%"]=2387, - ["local_display_aura_damage_+%_allies_only"]=2578, - ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=415, - ["local_display_cast_animate_weapon_on_kill_%_chance"]=570, - ["local_display_cast_cold_aegis_on_gain_skill"]=571, - ["local_display_cast_elemental_aegis_on_gain_skill"]=572, - ["local_display_cast_fire_aegis_on_gain_skill"]=573, - ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=509, - ["local_display_cast_level_X_consecrate_on_crit"]=510, - ["local_display_cast_level_x_manifest_dancing_dervish"]=2963, - ["local_display_cast_level_x_shock_ground_when_hit"]=511, - ["local_display_cast_lightning_aegis_on_gain_skill"]=574, - ["local_display_cast_lightning_on_critical_strike"]=575, - ["local_display_cast_physical_aegis_on_gain_skill"]=576, - ["local_display_cast_primal_aegis_on_gain_skill"]=577, - ["local_display_cast_summon_arbalists_on_gain_skill"]=578, - ["local_display_cast_triggerbots_on_gain_skill"]=579, - ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7219, - ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7220, - ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=7221, - ["local_display_fire_and_cold_resist_debuff"]=7222, - ["local_display_fire_burst_on_hit_%"]=580, - ["local_display_gain_fragile_growth_each_second"]=3979, - ["local_display_gain_power_charge_on_spending_mana"]=7223, - ["local_display_grant_level_x_petrification_statue"]=512, - ["local_display_grant_level_x_snipe_skill"]=74, - ["local_display_grants_level_X_envy"]=500, - ["local_display_grants_level_X_queens_demand_skill"]=556, - ["local_display_grants_level_X_reckoning"]=501, - ["local_display_grants_level_X_spell_aegis"]=75, - ["local_display_grants_level_X_vengeance"]=475, - ["local_display_grants_level_x_blood_offering_skill"]=514, - ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=515, - ["local_display_grants_level_x_curse_pillar_skill"]=516, - ["local_display_grants_level_x_despair"]=476, - ["local_display_grants_level_x_hidden_blade"]=581, - ["local_display_grants_level_x_summon_stone_golem"]=474, - ["local_display_grants_level_x_wintertide_brand"]=517, - ["local_display_grants_skill_abyssal_cry_level"]=518, - ["local_display_grants_skill_accuracy_crits_aura_level"]=519, - ["local_display_grants_skill_anger_level"]=495, - ["local_display_grants_skill_bear_trap_level"]=473, - ["local_display_grants_skill_bird_aspect_level"]=520, - ["local_display_grants_skill_blight_level"]=502, - ["local_display_grants_skill_blood_sacrament_level"]=488, - ["local_display_grants_skill_bone_armour"]=521, - ["local_display_grants_skill_brand_detonate_level"]=522, - ["local_display_grants_skill_call_of_steel"]=523, - ["local_display_grants_skill_cat_aspect_level"]=524, - ["local_display_grants_skill_clarity_level"]=487, - ["local_display_grants_skill_conductivity_level"]=482, - ["local_display_grants_skill_crab_aspect_level"]=525, - ["local_display_grants_skill_critical_weakness_level"]=492, - ["local_display_grants_skill_dash_level"]=526, - ["local_display_grants_skill_death_aura_level"]=507, - ["local_display_grants_skill_death_wish_level"]=527, - ["local_display_grants_skill_decoy_totem_level"]=528, - ["local_display_grants_skill_determination_level"]=496, - ["local_display_grants_skill_discipline_level"]=499, - ["local_display_grants_skill_doryanis_touch_level"]=505, - ["local_display_grants_skill_elemental_weakness_level"]=504, - ["local_display_grants_skill_embrace_madness_level"]=529, - ["local_display_grants_skill_enduring_cry_level"]=530, - ["local_display_grants_skill_flammability_level"]=480, - ["local_display_grants_skill_frostbite_level"]=483, - ["local_display_grants_skill_frostblink_level"]=470, - ["local_display_grants_skill_frostbolt_level"]=7224, - ["local_display_grants_skill_gluttony_of_elements_level"]=491, - ["local_display_grants_skill_grace_level"]=497, - ["local_display_grants_skill_haste_level"]=485, - ["local_display_grants_skill_hatred_level"]=494, - ["local_display_grants_skill_herald_of_agony_level"]=531, - ["local_display_grants_skill_herald_of_ash_level"]=532, - ["local_display_grants_skill_herald_of_ice_level"]=533, - ["local_display_grants_skill_herald_of_purity_level"]=534, - ["local_display_grants_skill_herald_of_thunder_level"]=535, - ["local_display_grants_skill_icestorm_level"]=508, - ["local_display_grants_skill_intimidating_cry_level"]=536, - ["local_display_grants_skill_lightning_warp_level"]=537, - ["local_display_grants_skill_malevolence_level"]=538, - ["local_display_grants_skill_mirage_chieftain"]=539, - ["local_display_grants_skill_pride_level"]=540, - ["local_display_grants_skill_projectile_weakness_level"]=503, - ["local_display_grants_skill_purity_level"]=490, - ["local_display_grants_skill_purity_of_cold_level"]=477, - ["local_display_grants_skill_purity_of_fire_level"]=471, - ["local_display_grants_skill_purity_of_lightning_level"]=479, - ["local_display_grants_skill_rallying_cry_level"]=541, - ["local_display_grants_skill_scorching_ray_level"]=498, - ["local_display_grants_skill_smite_level"]=542, - ["local_display_grants_skill_spider_aspect_level"]=543, - ["local_display_grants_skill_temporal_chains_level"]=484, - ["local_display_grants_skill_touch_of_fire_level"]=544, - ["local_display_grants_skill_unhinge_level"]=545, - ["local_display_grants_skill_vaal_impurity_of_fire_level"]=546, - ["local_display_grants_skill_vaal_impurity_of_ice_level"]=547, - ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=548, - ["local_display_grants_skill_vampiric_icon_level"]=549, - ["local_display_grants_skill_vitality_level"]=489, - ["local_display_grants_skill_vulnerability_level"]=506, - ["local_display_grants_skill_wrath_level"]=493, - ["local_display_grants_skill_zealotry_level"]=550, - ["local_display_grants_summon_beast_companion"]=478, - ["local_display_has_additional_implicit_mod"]=486, - ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3016, - ["local_display_illusory_warp_level"]=472, - ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1416, - ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7481, - ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=2965, - ["local_display_manifest_dancing_dervish_disables_weapons"]=2964, - ["local_display_minions_grant_onslaught"]=2966, - ["local_display_mod_aura_mana_regeration_rate_+%"]=7225, - ["local_display_molten_burst_on_melee_hit_%"]=582, - ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7226, - ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7227, - ["local_display_nearby_allies_critical_strike_multiplier_+"]=7228, - ["local_display_nearby_allies_extra_damage_rolls"]=7229, - ["local_display_nearby_allies_have_fortify"]=7230, - ["local_display_nearby_enemies_all_resistances_%"]=2648, - ["local_display_nearby_enemies_are_blinded"]=3012, - ["local_display_nearby_enemies_are_chilled"]=7231, - ["local_display_nearby_enemies_are_covered_in_ash"]=7232, - ["local_display_nearby_enemies_are_crushed"]=3013, - ["local_display_nearby_enemies_are_intimidated"]=7233, - ["local_display_nearby_enemies_cannot_crit"]=7234, - ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3017, - ["local_display_nearby_enemies_flask_charges_granted_+%"]=3018, - ["local_display_nearby_enemies_have_fire_exposure"]=7235, - ["local_display_nearby_enemies_have_malediction"]=3014, - ["local_display_nearby_enemies_movement_speed_+%"]=3019, - ["local_display_nearby_enemies_scorched"]=3015, - ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3020, - ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3782, - ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2805, - ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7236, - ["local_display_nearby_enemy_cold_damage_resistance_%"]=7237, - ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7238, - ["local_display_nearby_enemy_fire_damage_resistance_%"]=7239, - ["local_display_nearby_enemy_life_reserved_by_stat_%"]=7240, - ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7241, - ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7242, - ["local_display_nearby_enemy_physical_damage_taken_+%"]=7243, - ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4002, - ["local_display_raise_spider_on_kill_%_chance"]=583, - ["local_display_self_crushed"]=7244, - ["local_display_socketed_attack_damage_+%_final"]=416, - ["local_display_socketed_attacks_additional_critical_strike_chance"]=417, - ["local_display_socketed_attacks_critical_strike_multiplier_+"]=418, - ["local_display_socketed_attacks_mana_cost_+"]=419, - ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=465, - ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=394, - ["local_display_socketed_gems_additional_critical_strike_chance_%"]=412, - ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=420, - ["local_display_socketed_gems_chain_X_additional_times"]=411, - ["local_display_socketed_gems_curse_auras_also_affect_you"]=421, - ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=422, - ["local_display_socketed_gems_damage_over_time_+%_final"]=454, - ["local_display_socketed_gems_elemental_damage_+%_final"]=423, - ["local_display_socketed_gems_exposure_on_hit"]=424, - ["local_display_socketed_gems_get_added_chaos_damage_level"]=347, - ["local_display_socketed_gems_get_added_fire_damage_level"]=350, - ["local_display_socketed_gems_get_added_lightning_damage_level"]=355, - ["local_display_socketed_gems_get_additional_accuracy_level"]=364, - ["local_display_socketed_gems_get_blind_level"]=358, - ["local_display_socketed_gems_get_blood_magic_level"]=348, - ["local_display_socketed_gems_get_cast_on_crit_level"]=360, - ["local_display_socketed_gems_get_cast_on_death_level"]=362, - ["local_display_socketed_gems_get_cast_when_stunned_level"]=361, - ["local_display_socketed_gems_get_chance_to_bleed_level"]=368, - ["local_display_socketed_gems_get_cold_to_fire_level"]=351, - ["local_display_socketed_gems_get_concentrated_area_level"]=342, - ["local_display_socketed_gems_get_curse_reflection"]=409, - ["local_display_socketed_gems_get_echo_level"]=372, - ["local_display_socketed_gems_get_elemental_proliferation_level"]=354, - ["local_display_socketed_gems_get_faster_attacks_level"]=357, - ["local_display_socketed_gems_get_faster_cast_level"]=378, - ["local_display_socketed_gems_get_faster_projectiles_level"]=366, - ["local_display_socketed_gems_get_fire_penetration_level"]=353, - ["local_display_socketed_gems_get_flee_level"]=377, - ["local_display_socketed_gems_get_fork_level"]=370, - ["local_display_socketed_gems_get_generosity_level"]=374, - ["local_display_socketed_gems_get_increased_area_level"]=194, - ["local_display_socketed_gems_get_increased_critical_damage_level"]=369, - ["local_display_socketed_gems_get_increased_duration_level"]=349, - ["local_display_socketed_gems_get_iron_will_level"]=379, - ["local_display_socketed_gems_get_item_quantity_+%"]=408, - ["local_display_socketed_gems_get_life_leech_level"]=367, - ["local_display_socketed_gems_get_mana_multplier_%"]=404, - ["local_display_socketed_gems_get_melee_physical_damage_level"]=356, - ["local_display_socketed_gems_get_melee_splash_level"]=359, - ["local_display_socketed_gems_get_multistrike_level"]=365, - ["local_display_socketed_gems_get_pierce_level"]=387, - ["local_display_socketed_gems_get_reduced_mana_cost_level"]=373, - ["local_display_socketed_gems_get_remote_mine_level"]=376, - ["local_display_socketed_gems_get_spell_totem_level"]=352, - ["local_display_socketed_gems_get_stun_level"]=363, - ["local_display_socketed_gems_get_trap_level"]=343, - ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=371, - ["local_display_socketed_gems_have_blood_magic"]=401, - ["local_display_socketed_gems_have_chance_to_flee_%"]=407, - ["local_display_socketed_gems_have_elemental_equilibrium"]=455, - ["local_display_socketed_gems_have_iron_will"]=410, - ["local_display_socketed_gems_have_mana_reservation_+%"]=402, - ["local_display_socketed_gems_have_number_of_additional_projectiles"]=458, - ["local_display_socketed_gems_have_secrets_of_suffering"]=457, - ["local_display_socketed_gems_mana_cost_-%"]=425, - ["local_display_socketed_gems_maximum_added_fire_damage"]=426, - ["local_display_socketed_gems_minimum_added_fire_damage"]=426, - ["local_display_socketed_gems_projectile_damage_+%_final"]=427, - ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=428, - ["local_display_socketed_gems_projectiles_nova"]=460, - ["local_display_socketed_gems_skill_effect_duration_+%"]=462, - ["local_display_socketed_gems_supported_by_X_lesser_poison"]=397, - ["local_display_socketed_gems_supported_by_X_vile_toxins"]=396, - ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=195, - ["local_display_socketed_gems_supported_by_level_x_archmage"]=196, - ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=197, - ["local_display_socketed_gems_supported_by_level_x_barrage"]=198, - ["local_display_socketed_gems_supported_by_level_x_behead"]=199, - ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=200, - ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=201, - ["local_display_socketed_gems_supported_by_level_x_brutality"]=202, - ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=203, - ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=204, - ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=205, - ["local_display_socketed_gems_supported_by_level_x_chain"]=206, - ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=207, - ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=208, - ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=297, - ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=209, - ["local_display_socketed_gems_supported_by_level_x_close_combat"]=210, - ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=344, - ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=211, - ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=212, - ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=213, - ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=214, - ["local_display_socketed_gems_supported_by_level_x_deathmark"]=215, - ["local_display_socketed_gems_supported_by_level_x_decay"]=216, - ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=217, - ["local_display_socketed_gems_supported_by_level_x_efficacy"]=218, - ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=219, - ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=220, - ["local_display_socketed_gems_supported_by_level_x_empower"]=221, - ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=400, - ["local_display_socketed_gems_supported_by_level_x_enhance"]=222, - ["local_display_socketed_gems_supported_by_level_x_enlighten"]=223, - ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=224, - ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=225, - ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=226, - ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=227, - ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=228, - ["local_display_socketed_gems_supported_by_level_x_fortify"]=375, - ["local_display_socketed_gems_supported_by_level_x_fragility"]=229, - ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=230, - ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=231, - ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=232, - ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=233, - ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=234, - ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=235, - ["local_display_socketed_gems_supported_by_level_x_immolate"]=236, - ["local_display_socketed_gems_supported_by_level_x_impale"]=237, - ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=238, - ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=239, - ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=240, - ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=241, - ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=242, - ["local_display_socketed_gems_supported_by_level_x_intensify"]=243, - ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=244, - ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=245, - ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=246, - ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=247, - ["local_display_socketed_gems_supported_by_level_x_lifetap"]=248, - ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=249, - ["local_display_socketed_gems_supported_by_level_x_maim"]=250, - ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=251, - ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=252, - ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=253, - ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=254, - ["local_display_socketed_gems_supported_by_level_x_minefield"]=255, - ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=256, - ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=257, - ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=345, - ["local_display_socketed_gems_supported_by_level_x_multicast"]=258, - ["local_display_socketed_gems_supported_by_level_x_nightblade"]=259, - ["local_display_socketed_gems_supported_by_level_x_onslaught"]=260, - ["local_display_socketed_gems_supported_by_level_x_overcharge"]=261, - ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=262, - ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=263, - ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=264, - ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=265, - ["local_display_socketed_gems_supported_by_level_x_point_blank"]=266, - ["local_display_socketed_gems_supported_by_level_x_poison"]=267, - ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=268, - ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=269, - ["local_display_socketed_gems_supported_by_level_x_pulverise"]=270, - ["local_display_socketed_gems_supported_by_level_x_rage"]=271, - ["local_display_socketed_gems_supported_by_level_x_rain"]=272, - ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=273, - ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=274, - ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=275, - ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=276, - ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=277, - ["local_display_socketed_gems_supported_by_level_x_ruthless"]=278, - ["local_display_socketed_gems_supported_by_level_x_second_wind"]=279, - ["local_display_socketed_gems_supported_by_level_x_shockwave"]=280, - ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=281, - ["local_display_socketed_gems_supported_by_level_x_snipe"]=282, - ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=283, - ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=284, - ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=285, - ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=286, - ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=287, - ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=288, - ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=289, - ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=290, - ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=346, - ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=291, - ["local_display_socketed_gems_supported_by_level_x_trinity"]=292, - ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=293, - ["local_display_socketed_gems_supported_by_level_x_unleash"]=294, - ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=295, - ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=296, - ["local_display_socketed_gems_supported_by_pierce_level"]=386, - ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=392, - ["local_display_socketed_gems_supported_by_x_cold_penetration"]=390, - ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=399, - ["local_display_socketed_gems_supported_by_x_hypothermia"]=388, - ["local_display_socketed_gems_supported_by_x_ice_bite"]=389, - ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=384, - ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=383, - ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=381, - ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=385, - ["local_display_socketed_gems_supported_by_x_innervate_level"]=395, - ["local_display_socketed_gems_supported_by_x_knockback_level"]=380, - ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=382, - ["local_display_socketed_gems_supported_by_x_mana_leech"]=391, - ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=393, - ["local_display_socketed_golem_attack_and_cast_speed_+%"]=168, - ["local_display_socketed_golem_buff_effect_+%"]=169, - ["local_display_socketed_golem_chance_to_taunt_%"]=170, - ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=171, - ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=172, - ["local_display_socketed_melee_gems_have_area_radius_+%"]=405, - ["local_display_socketed_movement_skills_have_no_mana_cost"]=429, - ["local_display_socketed_non_curse_aura_gems_effect_+%"]=456, - ["local_display_socketed_projectile_spells_duration_+%_final"]=463, - ["local_display_socketed_skills_attack_speed_+%"]=430, - ["local_display_socketed_skills_cast_speed_+%"]=431, - ["local_display_socketed_skills_deal_double_damage"]=432, - ["local_display_socketed_skills_fork"]=433, - ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=406, - ["local_display_socketed_spell_damage_+%_final"]=434, - ["local_display_socketed_spells_additional_critical_strike_chance"]=435, - ["local_display_socketed_spells_additional_projectiles"]=459, - ["local_display_socketed_spells_critical_strike_multiplier_+"]=436, - ["local_display_socketed_spells_mana_cost_+%"]=437, - ["local_display_socketed_spells_projectiles_circle"]=461, - ["local_display_socketed_spells_repeat_count"]=413, - ["local_display_socketed_trap_skills_create_smoke_cloud"]=464, - ["local_display_socketed_travel_skills_damage_+%_final"]=438, - ["local_display_socketed_triggered_skills_deal_double_damage"]=298, - ["local_display_socketed_vaal_skills_area_of_effect_+%"]=439, - ["local_display_socketed_vaal_skills_aura_effect_+%"]=440, - ["local_display_socketed_vaal_skills_damage_+%_final"]=441, - ["local_display_socketed_vaal_skills_effect_duration_+%"]=442, - ["local_display_socketed_vaal_skills_elusive_on_use"]=443, - ["local_display_socketed_vaal_skills_extra_damage_rolls"]=444, - ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=445, - ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=446, - ["local_display_socketed_vaal_skills_projectile_speed_+%"]=447, - ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=448, - ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=449, - ["local_display_socketed_vaal_skills_store_uses_+"]=450, - ["local_display_socketed_warcry_skills_cooldown_use_+"]=451, - ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=452, - ["local_display_summon_harbinger_x_on_equip"]=481, - ["local_display_summon_raging_spirit_on_kill_%"]=584, - ["local_display_summon_wolf_on_kill_%"]=585, - ["local_display_supported_by_level_10_controlled_destruction"]=299, - ["local_display_supported_by_level_10_intensify"]=300, - ["local_display_supported_by_level_10_spell_echo"]=301, - ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=302, - ["local_display_supported_by_level_x_awakened_added_cold_damage"]=303, - ["local_display_supported_by_level_x_awakened_added_fire_damage"]=304, - ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=305, - ["local_display_supported_by_level_x_awakened_ancestral_call"]=306, - ["local_display_supported_by_level_x_awakened_arrow_nova"]=307, - ["local_display_supported_by_level_x_awakened_blasphemy"]=308, - ["local_display_supported_by_level_x_awakened_brutality"]=309, - ["local_display_supported_by_level_x_awakened_burning_damage"]=310, - ["local_display_supported_by_level_x_awakened_cast_on_crit"]=311, - ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=312, - ["local_display_supported_by_level_x_awakened_chain"]=313, - ["local_display_supported_by_level_x_awakened_cold_penetration"]=314, - ["local_display_supported_by_level_x_awakened_controlled_destruction"]=315, - ["local_display_supported_by_level_x_awakened_curse_on_hit"]=316, - ["local_display_supported_by_level_x_awakened_deadly_ailments"]=317, - ["local_display_supported_by_level_x_awakened_elemental_focus"]=318, - ["local_display_supported_by_level_x_awakened_empower"]=319, - ["local_display_supported_by_level_x_awakened_enhance"]=320, - ["local_display_supported_by_level_x_awakened_enlighten"]=321, - ["local_display_supported_by_level_x_awakened_fire_penetration"]=322, - ["local_display_supported_by_level_x_awakened_fork"]=323, - ["local_display_supported_by_level_x_awakened_generosity"]=324, - ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=325, - ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=326, - ["local_display_supported_by_level_x_awakened_lightning_penetration"]=327, - ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=328, - ["local_display_supported_by_level_x_awakened_melee_splash"]=329, - ["local_display_supported_by_level_x_awakened_minion_damage"]=330, - ["local_display_supported_by_level_x_awakened_multistrike"]=331, - ["local_display_supported_by_level_x_awakened_spell_cascade"]=332, - ["local_display_supported_by_level_x_awakened_spell_echo"]=333, - ["local_display_supported_by_level_x_awakened_swift_affliction"]=334, - ["local_display_supported_by_level_x_awakened_unbound_ailments"]=335, - ["local_display_supported_by_level_x_awakened_unleash"]=336, - ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=337, - ["local_display_supported_by_level_x_awakened_void_manipulation"]=338, - ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=339, - ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=453, - ["local_display_trigger_commandment_of_inferno_on_crit_%"]=586, - ["local_display_trigger_corpse_walk_on_equip_level"]=587, - ["local_display_trigger_death_walk_on_equip_level"]=589, - ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=590, - ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=591, - ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=592, - ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=593, - ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=594, - ["local_display_trigger_level_20_shade_form_when_hit_%"]=595, - ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=551, - ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=596, - ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=597, - ["local_display_trigger_level_X_atziri_flameblast"]=598, - ["local_display_trigger_level_X_atziri_storm_call"]=599, - ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=513, - ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=552, - ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=600, - ["local_display_trigger_level_X_offering_every_5_seconds"]=601, - ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=602, - ["local_display_trigger_level_X_shield_shatter_on_block"]=603, - ["local_display_trigger_level_X_void_gaze_on_skill_use"]=553, - ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=604, - ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=588, - ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=605, - ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=606, - ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=607, - ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=608, - ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=609, - ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=610, - ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=554, - ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=611, - ["local_display_trigger_level_x_reflection_skill_on_equip"]=612, - ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=613, - ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=614, - ["local_display_trigger_level_x_stalking_pustule_on_kill"]=615, - ["local_display_trigger_level_x_storm_cascade_on_attack"]=555, - ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=616, - ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=631, - ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=617, - ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=619, - ["local_display_trigger_summon_infernal_familiar_when_allocated"]=7245, - ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=618, - ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=620, - ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=621, - ["local_display_trigger_void_sphere_on_kill_%_chance"]=622, - ["local_display_triggers_corpse_cloud_on_12_units_travelled"]=7246, - ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=7247, - ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=7248, - ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=7249, - ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=7250, - ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7251, - ["local_display_use_level_X_abyssal_cry_on_hit"]=623, - ["local_double_damage_to_chilled_enemies"]=3353, - ["local_double_damage_with_attacks"]=7252, - ["local_double_damage_with_attacks_chance_%"]=7253, - ["local_double_hit_damage_stun_build_up"]=7254, - ["local_edict_declaration_gain_per_mod_disabled"]=7255, - ["local_elemental_damage_+%_per_2%_quality"]=7256, - ["local_elemental_penetration_%"]=3354, - ["local_energy_shield"]=857, - ["local_energy_shield_+%"]=860, - ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7257, - ["local_evasion_and_energy_shield_+%"]=863, - ["local_evasion_rating_+%"]=859, - ["local_evasion_rating_and_energy_shield"]=7258, - ["local_explicit_elemental_damage_mod_effect_+%"]=68, - ["local_explicit_minion_mod_effect_+%"]=69, - ["local_explicit_mod_effect_+%"]=72, - ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=70, - ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7259, - ["local_extra_max_charges"]=1031, - ["local_extra_socket"]=1610, - ["local_fire_penetration_%"]=3355, - ["local_fire_resistance_%_per_2%_quality"]=7260, - ["local_flask_accuracy_rating_+%_during_effect"]=731, - ["local_flask_adaptations_apply_to_all_elements_during_effect"]=730, - ["local_flask_additional_physical_damage_reduction_%"]=752, - ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=681, - ["local_flask_adds_knockback_during_flask_effect"]=753, - ["local_flask_adds_knockback_while_healing"]=740, - ["local_flask_always_drinking"]=633, - ["local_flask_amount_to_recover_+%"]=929, - ["local_flask_amount_to_recover_+%_when_on_low_life"]=930, - ["local_flask_amount_to_recover_+%_when_on_low_mana"]=928, - ["local_flask_area_of_consecrated_ground_+%"]=663, - ["local_flask_area_of_effect_+%_during_flask_effect"]=754, - ["local_flask_armour_+%_while_healing"]=725, - ["local_flask_attack_speed_+%_while_healing"]=732, - ["local_flask_avoid_stun_chance_%_during_flask_effect"]=755, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=682, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=683, - ["local_flask_cannot_be_stunned_during_flask_effect"]=756, - ["local_flask_cannot_gain_charges_during_flask_effect"]=824, - ["local_flask_cast_speed_+%_while_healing"]=733, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=684, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=685, - ["local_flask_chilled_ground_on_flask_use_radius"]=662, - ["local_flask_consume_charges_used_+%_when_used"]=1030, - ["local_flask_consume_extra_max_charges_when_used"]=1031, - ["local_flask_consume_flask_duration_+%_when_used"]=931, - ["local_flask_consume_flask_effect_+%_when_used"]=724, - ["local_flask_consumes_max_charges_on_use"]=664, - ["local_flask_consumes_x_endurance_charges_on_use"]=665, - ["local_flask_consumes_x_frenzy_charges_on_use"]=666, - ["local_flask_consumes_x_power_charges_on_use"]=667, - ["local_flask_critical_strike_chance_+%_during_flask_effect"]=758, - ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=757, - ["local_flask_culling_strike_during_flask_effect"]=759, - ["local_flask_damage_taken_goes_to_life_over_4_seconds_%_during_effect"]=760, - ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=658, - ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=650, - ["local_flask_deciseconds_to_recover"]=646, - ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=697, - ["local_flask_dispels_freeze_and_chill"]=696, - ["local_flask_duration_+%"]=931, - ["local_flask_duration_+%_final"]=647, - ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=761, - ["local_flask_effect_+%"]=724, - ["local_flask_effect_ends_when_hit_by_player"]=651, - ["local_flask_effect_not_removed_at_full_life"]=652, - ["local_flask_effect_not_removed_at_full_mana"]=653, - ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=815, - ["local_flask_energy_shield_+%_while_healing"]=727, - ["local_flask_evasion_+%_while_healing"]=726, - ["local_flask_gain_X_charges_every_minute"]=634, - ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=635, - ["local_flask_gain_X_charges_when_hit"]=636, - ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=668, - ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=762, - ["local_flask_gain_endurance_charges_on_use"]=669, - ["local_flask_gain_frenzy_charges_on_use"]=670, - ["local_flask_gain_power_charges_on_use"]=671, - ["local_flask_gain_x_rage_when_hit_during_effect"]=763, - ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=672, - ["local_flask_gain_x_vaal_souls_on_use"]=673, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=694, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=695, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=686, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=687, - ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=764, - ["local_flask_immune_to_damage"]=765, - ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=766, - ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=688, - ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=689, - ["local_flask_immune_to_poison_during_flask_effect"]=767, - ["local_flask_immune_to_shock_during_flask_effect"]=768, - ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=674, - ["local_flask_is_petrified"]=769, - ["local_flask_item_found_rarity_+%_during_flask_effect"]=770, - ["local_flask_life_gain_on_skill_use_%_mana_cost"]=746, - ["local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing"]=737, - ["local_flask_life_leech_is_instant_during_flask_effect"]=771, - ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=644, - ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=772, - ["local_flask_life_to_recover"]=642, - ["local_flask_life_to_recover_+%"]=932, - ["local_flask_life_to_recover_+%_final"]=643, - ["local_flask_lose_all_charges_on_entering_new_area"]=641, - ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=675, - ["local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing"]=739, - ["local_flask_mana_to_recover"]=645, - ["local_flask_mana_to_recover_+%"]=933, - ["local_flask_minion_heal_%"]=934, - ["local_flask_movement_speed_+%_while_healing"]=734, - ["local_flask_no_inherent_rage_loss_during_effect"]=773, - ["local_flask_no_mana_recovery_during_effect"]=774, - ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=775, - ["local_flask_number_of_additional_projectiles_during_flask_effect"]=776, - ["local_flask_poison_immunity_if_poisoned"]=690, - ["local_flask_poison_immunity_if_poisoned_s"]=691, - ["local_flask_prevents_death_while_healing"]=821, - ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=818, - ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=816, - ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=817, - ["local_flask_recover_instantly_when_on_low_life"]=648, - ["local_flask_recover_instantly_when_on_low_mana"]=649, - ["local_flask_recovers_instantly"]=935, - ["local_flask_recovery_amount_%_to_recover_instantly"]=936, - ["local_flask_recovery_occurs_instantly_at_end_of_flask_effect"]=654, - ["local_flask_recovery_speed_+%"]=937, - ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=777, - ["local_flask_remove_curses_on_use"]=680, - ["local_flask_remove_effect_when_ward_breaks"]=655, - ["local_flask_removes_%_maximum_energy_shield_on_use"]=657, - ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=656, - ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=938, - ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=939, - ["local_flask_resistances_+%_while_healing"]=736, - ["local_flask_restore_ward"]=698, - ["local_flask_shock_immunity_if_shocked"]=692, - ["local_flask_shock_immunity_if_shocked_s"]=693, - ["local_flask_skill_mana_cost_+%_during_flask_effect"]=778, - ["local_flask_stun_recovery_+%_while_healing"]=735, - ["local_flask_taunt_enemies_on_use_radius"]=676, - ["local_flask_use_causes_area_knockback"]=677, - ["local_flask_use_causes_monster_flee_chance_%"]=678, - ["local_flask_use_on_adjacent_flask_use"]=701, - ["local_flask_use_on_affected_by_bleed"]=702, - ["local_flask_use_on_affected_by_chill"]=703, - ["local_flask_use_on_affected_by_freeze"]=704, - ["local_flask_use_on_affected_by_ignite"]=705, - ["local_flask_use_on_affected_by_poison"]=706, - ["local_flask_use_on_affected_by_shock"]=707, - ["local_flask_use_on_affected_by_slow"]=708, - ["local_flask_use_on_chaos_damage_taken"]=709, - ["local_flask_use_on_cold_damage_taken"]=710, - ["local_flask_use_on_damage_blocked"]=711, - ["local_flask_use_on_fire_damage_taken"]=712, - ["local_flask_use_on_flask_effect_ended"]=713, - ["local_flask_use_on_full_charges"]=714, - ["local_flask_use_on_guard_skill_expired"]=715, - ["local_flask_use_on_guard_skill_used"]=716, - ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=717, - ["local_flask_use_on_killing_rare_or_unique_enemy"]=718, - ["local_flask_use_on_lightning_damage_taken"]=719, - ["local_flask_use_on_stunned"]=720, - ["local_flask_use_on_taking_savage_hit"]=721, - ["local_flask_use_on_travel_skill_used"]=722, - ["local_flask_use_on_using_a_life_flask"]=723, - ["local_flask_vaal_souls_gained_per_minute_during_effect"]=779, - ["local_flask_ward_+%_during_effect"]=728, - ["local_flask_ward_does_not_break_during_effect"]=729, - ["local_flask_zealots_oath"]=827, - ["local_force_corruption_outcome_two_enchants"]=7261, - ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7262, - ["local_gain_X_rage_on_hit"]=7263, - ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7264, - ["local_gain_shrine_buff_every_10_seconds"]=7265, - ["local_gem_experience_gain_+%"]=1613, - ["local_gem_level_+"]=133, - ["local_global_defences_+%_per_rune_or_soul_core"]=7266, - ["local_grant_eldritch_battery_during_flask_effect"]=828, - ["local_grant_skeleton_warriors_triple_damage_on_hit"]=3994, - ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2658, - ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2656, - ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2655, - ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2657, - ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2658, - ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2656, - ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2655, - ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2657, - ["local_has_X_abyss_sockets"]=77, - ["local_has_X_sockets"]=78, - ["local_has_no_sockets"]=76, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes"]=7267, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity"]=7268, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence"]=7269, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_strength"]=7270, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute"]=7271, - ["local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%"]=7272, - ["local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%"]=7273, - ["local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%"]=7274, - ["local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%"]=7275, - ["local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%"]=7276, - ["local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%"]=7277, - ["local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%"]=7278, - ["local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%"]=7279, - ["local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%"]=7280, - ["local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%"]=7281, - ["local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%"]=7282, - ["local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%"]=7283, - ["local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%"]=7284, - ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_1"]=7285, - ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_2"]=7286, - ["local_hit_causes_monster_flee_%"]=1726, - ["local_hit_damage_+%_vs_frozen_enemies"]=3952, - ["local_hit_damage_+%_vs_ignited_enemies"]=3951, - ["local_hit_damage_+%_vs_shocked_enemies"]=3953, - ["local_hit_damage_stun_multiplier_+%"]=1009, - ["local_hits_always_inflict_elemental_ailments"]=3950, - ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7287, - ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7288, - ["local_hits_with_this_weapon_ignore_poison_limit"]=7289, - ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7290, - ["local_ignite_effect_+%_final_with_this_weapon"]=7291, - ["local_immune_to_curses_if_item_corrupted"]=7292, - ["local_implicit_mod_cannot_be_changed"]=46, - ["local_implicit_stat_magnitude_+%"]=73, - ["local_inflict_exposure_on_hit_%_chance"]=7293, - ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7294, - ["local_intelligence_per_2%_quality"]=7295, - ["local_intelligence_requirement_+"]=836, - ["local_intelligence_requirement_+%"]=837, - ["local_is_alternate_tree_jewel"]=10017, - ["local_is_max_quality"]=1607, - ["local_is_survival_jewel"]=10018, - ["local_item_additional_skill_slots"]=79, - ["local_item_allow_modification_while_corrupted"]=36, - ["local_item_benefit_socketable_as_if_body_armour"]=7296, - ["local_item_benefit_socketable_as_if_boots"]=7297, - ["local_item_benefit_socketable_as_if_gloves"]=7298, - ["local_item_benefit_socketable_as_if_helmet"]=7299, - ["local_item_benefit_socketable_as_if_shield"]=7300, - ["local_item_can_have_x_additional_enchantments"]=38, - ["local_item_can_roll_all_influences"]=7301, - ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2255, - ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7302, - ["local_item_implicit_modifier_limit"]=39, - ["local_item_quality_+"]=7303, - ["local_item_sell_price_doubled"]=7304, - ["local_item_stats_are_doubled_in_breach"]=7305, - ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=34, - ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7306, - ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7307, - ["local_jewel_disable_combust_with_40_strength_in_radius"]=7308, - ["local_jewel_display_radius_change"]=7309, - ["local_jewel_expansion_jewels_count"]=7310, - ["local_jewel_expansion_jewels_count_override"]=7311, - ["local_jewel_expansion_keystone_disciple_of_kitava"]=7312, - ["local_jewel_expansion_keystone_hollow_palm_technique"]=7313, - ["local_jewel_expansion_keystone_kineticism"]=7314, - ["local_jewel_expansion_keystone_lone_messenger"]=7315, - ["local_jewel_expansion_keystone_natures_patience"]=7316, - ["local_jewel_expansion_keystone_pitfighter"]=7317, - ["local_jewel_expansion_keystone_secrets_of_suffering"]=7318, - ["local_jewel_expansion_keystone_veterans_awareness"]=7319, - ["local_jewel_expansion_passive_node_count"]=4022, - ["local_jewel_expansion_passive_node_index"]=7320, - ["local_jewel_fireball_cannot_ignite"]=7321, - ["local_jewel_fireball_chance_to_scorch_%"]=7322, - ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7324, - ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7323, - ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7326, - ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7325, - ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7327, - ["local_jewel_nearby_passives_dex_to_int"]=2698, - ["local_jewel_nearby_passives_dex_to_str"]=2697, - ["local_jewel_nearby_passives_int_to_dex"]=2700, - ["local_jewel_nearby_passives_int_to_str"]=2699, - ["local_jewel_nearby_passives_str_to_dex"]=2695, - ["local_jewel_nearby_passives_str_to_int"]=2696, - ["local_jewel_notable_passive_in_radius_effect_+%"]=7328, - ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7329, - ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7330, - ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7331, - ["local_jewel_small_passive_in_radius_effect_+%"]=7332, - ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7333, - ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7334, - ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7335, - ["local_jewel_variable_ring_radius_value"]=37, - ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7336, - ["local_knockback"]=1374, - ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2341, - ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2342, - ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7337, - ["local_left_ring_slot_curse_effect_on_self_+%"]=2343, - ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2396, - ["local_left_ring_slot_energy_shield"]=2358, - ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2344, - ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2345, - ["local_left_ring_slot_mana_regeneration_rate_+%"]=2347, - ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2346, - ["local_left_ring_slot_maximum_mana"]=2357, - ["local_left_ring_slot_minion_damage_taken_+%"]=2348, - ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2340, - ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7338, - ["local_left_ring_slot_projectiles_from_spells_fork"]=7339, - ["local_left_ring_slot_skill_effect_duration_+%"]=2349, - ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7340, - ["local_level_requirement_-"]=838, - ["local_life_and_mana_gain_per_target"]=1455, - ["local_life_gain_per_target"]=998, - ["local_life_gain_per_target_vs_blinded_enemies"]=7341, - ["local_life_gain_per_target_while_leeching"]=7342, - ["local_life_leech_from_physical_damage_permyriad"]=996, - ["local_life_leech_is_instant"]=2231, - ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=9820, - ["local_lightning_penetration_%"]=3357, - ["local_lightning_resistance_%_per_2%_quality"]=7343, - ["local_maim_on_hit"]=3711, - ["local_maim_on_hit_%"]=7344, - ["local_mana_gain_per_target"]=1458, - ["local_mana_leech_from_physical_damage_permyriad"]=1002, - ["local_max_charges_+%"]=1032, - ["local_maximum_added_chaos_damage"]=1251, - ["local_maximum_added_cold_damage"]=848, - ["local_maximum_added_fire_damage"]=847, - ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4431, - ["local_maximum_added_lightning_damage"]=849, - ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7345, - ["local_maximum_added_physical_damage"]=846, - ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4438, - ["local_maximum_energy_shield_+%_if_item_corrupted"]=7346, - ["local_maximum_life_+%_if_item_corrupted"]=7348, - ["local_maximum_life_+%_per_rune_or_soul_core"]=7349, - ["local_maximum_life_per_2%_quality"]=7347, - ["local_maximum_mana_+%_per_rune_or_soul_core"]=7351, - ["local_maximum_mana_per_2%_quality"]=7350, - ["local_maximum_prefixes_allowed_+"]=40, - ["local_maximum_quality_+"]=7353, - ["local_maximum_quality_is_%"]=7352, - ["local_maximum_sockets_+"]=81, - ["local_maximum_suffixes_allowed_+"]=41, - ["local_minimum_added_chaos_damage"]=1251, - ["local_minimum_added_cold_damage"]=848, - ["local_minimum_added_fire_damage"]=847, - ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4431, - ["local_minimum_added_lightning_damage"]=849, - ["local_minimum_added_physical_damage"]=846, - ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4438, - ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7354, - ["local_movement_speed_+%_if_item_corrupted"]=7355, - ["local_no_attribute_requirements"]=839, - ["local_no_critical_strike_multiplier"]=7356, - ["local_no_critical_strike_multiplier_during_flask_effect"]=780, - ["local_no_energy_shield"]=840, - ["local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon"]=3833, - ["local_number_of_bloodworms_to_spawn_on_flask_use"]=699, - ["local_one_socket_each_colour_only"]=82, - ["local_physical_damage_%_to_convert_to_a_random_element"]=3949, - ["local_physical_damage_+%"]=845, - ["local_physical_damage_reduction_rating_+%"]=858, - ["local_poison_duration_+%_during_flask_effect"]=781, - ["local_poison_effect_+%"]=841, - ["local_poison_on_critical_strike_chance_%"]=7357, - ["local_poison_on_hit"]=2163, - ["local_poison_on_hit_%"]=7358, - ["local_projectile_speed_+%"]=7359, - ["local_quality_does_not_increase_damage"]=1608, - ["local_quality_does_not_increase_defences"]=1609, - ["local_quantity_of_sockets_+%"]=1614, - ["local_random_support_gem_index"]=340, - ["local_random_support_gem_index_1"]=341, - ["local_random_support_gem_level"]=340, - ["local_random_support_gem_level_1"]=341, - ["local_recharge_on_crit"]=637, - ["local_recharge_on_crit_%"]=638, - ["local_recharge_on_demon_killed"]=639, - ["local_recharge_on_take_crit"]=640, - ["local_reload_speed_+%"]=944, - ["local_requirements_%_to_convert_to_dexterity"]=7360, - ["local_requirements_%_to_convert_to_intelligence"]=7361, - ["local_requirements_%_to_convert_to_strength"]=7362, - ["local_resist_all_elements_%_if_item_corrupted"]=7363, - ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7364, - ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2350, - ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2337, - ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2351, - ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7365, - ["local_right_ring_slot_curse_effect_on_self_+%"]=2352, - ["local_right_ring_slot_energy_shield"]=2339, - ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2353, - ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2354, - ["local_right_ring_slot_maximum_mana"]=2338, - ["local_right_ring_slot_minion_damage_taken_+%"]=2355, - ["local_right_ring_slot_no_mana_regeneration"]=2336, - ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7366, - ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2397, - ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7367, - ["local_right_ring_slot_skill_effect_duration_+%"]=2356, - ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7368, - ["local_ring_attack_speed_+%_final"]=7369, - ["local_ring_burning_damage_+%_final"]=7370, - ["local_ring_disable_other_ring"]=1423, - ["local_ring_duplicate_other_ring"]=2529, - ["local_ring_nova_spells_area_of_effect_+%_final"]=7371, - ["local_rune_effect_+%"]=7372, - ["local_self_bleed_duration_+%_during_flask_effect"]=782, - ["local_self_chill_effect_+%_during_flask_effect"]=783, - ["local_self_curse_effect_+%_during_flask_effect"]=784, - ["local_self_freeze_duration_+%_during_flask_effect"]=785, - ["local_self_ignite_duration_+%_during_flask_effect"]=786, - ["local_self_poison_duration_+%_during_flask_effect"]=787, - ["local_self_shock_effect_+%_during_flask_effect"]=788, - ["local_sentinel_drone_difficulty_+%"]=7373, - ["local_shield_double_stun_threshold_while_active_blocking"]=7374, - ["local_smoke_ground_on_flask_use_radius"]=679, - ["local_socketed_abyss_jewel_effect_+%"]=191, - ["local_socketed_active_skill_gem_level_+"]=165, - ["local_socketed_active_skill_gem_quality_+"]=176, - ["local_socketed_area_of_effect_gem_level_+"]=151, - ["local_socketed_area_of_effect_gem_quality_+"]=177, - ["local_socketed_aura_gem_level_+"]=156, - ["local_socketed_aura_gem_quality_+"]=178, - ["local_socketed_bow_gem_level_+"]=153, - ["local_socketed_bow_gem_quality_+"]=179, - ["local_socketed_chaos_gem_level_+"]=148, - ["local_socketed_chaos_gem_quality_+"]=180, - ["local_socketed_cold_gem_level_+"]=146, - ["local_socketed_cold_gem_quality_+"]=181, - ["local_socketed_curse_gem_level_+"]=159, - ["local_socketed_dexterity_gem_level_+"]=135, - ["local_socketed_dexterity_gem_quality_+"]=182, - ["local_socketed_duration_gem_level_+"]=150, - ["local_socketed_elemental_gem_level_+"]=183, - ["local_socketed_fire_gem_level_+"]=144, - ["local_socketed_fire_gem_quality_+"]=184, - ["local_socketed_gem_level_+"]=139, - ["local_socketed_gem_quality_+"]=174, - ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=143, - ["local_socketed_gems_in_green_sockets_get_quality_%"]=142, - ["local_socketed_gems_in_red_sockets_get_level_+"]=141, - ["local_socketed_golem_gem_level_+"]=173, - ["local_socketed_herald_gem_level_+"]=157, - ["local_socketed_hex_gem_level_+"]=160, - ["local_socketed_intelligence_gem_level_+"]=137, - ["local_socketed_intelligence_gem_quality_+"]=185, - ["local_socketed_items_effect_+%"]=7375, - ["local_socketed_lightning_gem_level_+"]=147, - ["local_socketed_lightning_gem_quality_+"]=186, - ["local_socketed_melee_gem_level_+"]=154, - ["local_socketed_melee_gem_quality_+"]=187, - ["local_socketed_minion_gem_level_+"]=155, - ["local_socketed_minion_gem_quality_+"]=188, - ["local_socketed_movement_gem_level_+"]=158, - ["local_socketed_non_vaal_gem_level_+"]=166, - ["local_socketed_projectile_gem_level_+"]=152, - ["local_socketed_projectile_gem_quality_+"]=189, - ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=140, - ["local_socketed_spell_gem_level_+"]=149, - ["local_socketed_strength_gem_level_+"]=134, - ["local_socketed_strength_gem_quality_+"]=190, - ["local_socketed_support_gem_level_+"]=164, - ["local_socketed_support_gem_quality_+"]=175, - ["local_socketed_trap_and_mine_gem_level_+"]=162, - ["local_socketed_trap_gem_level_+"]=161, - ["local_socketed_vaal_gem_level_+"]=163, - ["local_socketed_warcry_gem_level_+"]=167, - ["local_soul_core_effect_+%"]=7376, - ["local_soul_core_gain_benefits_from_boots_as_well"]=93, - ["local_soul_core_gain_benefits_from_gloves_as_well"]=94, - ["local_soul_core_gain_benefits_from_helmet_as_well"]=95, - ["local_soul_core_gain_benefits_from_shield_as_well"]=96, - ["local_spell_damage_+%_if_item_corrupted"]=7377, - ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7378, - ["local_spirit"]=865, - ["local_spirit_+%"]=866, - ["local_spirit_+_per_rune_or_soul_core"]=7379, - ["local_strength_and_intelligence_requirement_+"]=842, - ["local_strength_per_2%_quality"]=7380, - ["local_strength_requirement_+"]=843, - ["local_strength_requirement_+%"]=844, - ["local_stun_threshold_+_per_rune_or_soul_core"]=7381, - ["local_stun_threshold_reduction_+%"]=2191, - ["local_support_gem_max_skill_level_requirement_to_support"]=2499, - ["local_tablet_make_maps_in_radius_available"]=7382, - ["local_unique_attacks_cast_socketed_lightning_spells_%"]=624, - ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=625, - ["local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect"]=744, - ["local_unique_counts_as_dual_wielding"]=2385, - ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=789, - ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=790, - ["local_unique_flask_avoid_chill_%_while_healing"]=743, - ["local_unique_flask_avoid_freeze_%_while_healing"]=745, - ["local_unique_flask_block_%_while_healing"]=791, - ["local_unique_flask_cannot_recover_life_while_healing"]=792, - ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=660, - ["local_unique_flask_charges_gained_+%_during_flask_effect"]=793, - ["local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect"]=794, - ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=795, - ["local_unique_flask_damage_+%_vs_demons_while_healing"]=797, - ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=796, - ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=798, - ["local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing"]=799, - ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=822, - ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=823, - ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7383, - ["local_unique_flask_instantly_recovers_%_maximum_life"]=659, - ["local_unique_flask_item_quantity_+%_while_healing"]=800, - ["local_unique_flask_item_rarity_+%_while_healing"]=801, - ["local_unique_flask_kiaras_determination"]=802, - ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7384, - ["local_unique_flask_light_radius_+%_while_healing"]=803, - ["local_unique_flask_maximum_rage_is_doubled_during_effect"]=7385, - ["local_unique_flask_no_mana_cost_while_healing"]=804, - ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7386, - ["local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing"]=805, - ["local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing"]=742, - ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=741, - ["local_unique_flask_recover_all_mana_on_use"]=7387, - ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=806, - ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7388, - ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=807, - ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=808, - ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=809, - ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=810, - ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=811, - ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=812, - ["local_unique_hungry_loop_has_consumed_gem"]=106, - ["local_unique_hungry_loop_number_of_gems_to_consume"]=106, - ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2712, - ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2713, - ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2714, - ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7389, - ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2799, - ["local_unique_jewel_additional_life_per_X_int_in_radius"]=2775, - ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2792, - ["local_unique_jewel_alternate_tree_internal_revision"]=35, - ["local_unique_jewel_alternate_tree_keystone"]=35, - ["local_unique_jewel_alternate_tree_seed"]=35, - ["local_unique_jewel_alternate_tree_version"]=35, - ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2797, - ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2885, - ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2894, - ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7390, - ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7391, - ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7392, - ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7393, - ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7394, - ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7395, - ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7396, - ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7397, - ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7398, - ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2715, - ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2776, - ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2777, - ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2765, - ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=2969, - ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=2968, - ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7399, - ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2789, - ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2768, - ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7400, - ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2890, - ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7401, - ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2800, - ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2766, - ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2779, - ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7402, - ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7403, - ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7404, - ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7405, - ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7406, - ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2863, - ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7407, - ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7408, - ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7409, - ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7410, - ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7411, - ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7412, - ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7413, - ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7414, - ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7415, - ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7416, - ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7417, - ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7418, - ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7419, - ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2769, - ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2793, - ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=2970, - ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=2971, - ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2764, - ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7420, - ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7421, - ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2788, - ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7422, - ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7423, - ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7424, - ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2882, - ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2881, - ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2787, - ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=2977, - ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=2976, - ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7425, - ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7426, - ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7427, - ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7428, - ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7449, - ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2796, - ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7429, - ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2861, - ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=2972, - ["local_unique_jewel_grants_x_empty_passives"]=7430, - ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2888, - ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2887, - ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2864, - ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7431, - ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7432, - ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7433, - ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2733, - ["local_unique_jewel_life_increases_applies_to_energy_shield"]=2770, - ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2778, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7434, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7435, - ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7436, - ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7437, - ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7438, - ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7439, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7440, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7441, - ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2801, - ["local_unique_jewel_melee_applies_to_bow"]=2711, - ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7442, - ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7443, - ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2794, - ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7444, - ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=830, - ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7445, - ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7446, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10036, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10037, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10038, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10036, - ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2774, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7448, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed"]=7447, - ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2716, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10039, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10039, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2791, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2786, - ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2790, - ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2767, - ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2795, - ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=2973, - ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7450, - ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=2974, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7451, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=2975, - ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7452, - ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7453, - ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7454, - ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2862, - ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7455, - ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7456, - ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2798, - ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7457, - ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2703, - ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2780, - ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2879, - ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=2892, - ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2704, - ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2877, - ["local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%"]=2734, - ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2735, - ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2721, - ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7458, - ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7459, - ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=813, - ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=825, - ["local_unique_regen_es_from_removed_life_duration_ms"]=2785, - ["local_unique_remove_life_and_regen_es_from_removed_life"]=2785, - ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=826, - ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3371, - ["local_vivisection_random_keystone_index"]=10044, - ["local_ward"]=1376, - ["local_ward_+%"]=1378, - ["local_weapon_accuracy_is_unaffected_by_distance"]=7460, - ["local_weapon_base_crit_chance_permyriad_override"]=3384, - ["local_weapon_crit_chance_is_%"]=7461, - ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7462, - ["local_weapon_daze_chance_%"]=7463, - ["local_weapon_enemy_phys_reduction_%_penalty"]=1147, - ["local_weapon_no_physical_damage"]=845, - ["local_weapon_range_+"]=2425, - ["local_weapon_range_+_per_10%_quality"]=7464, - ["local_weapon_roll_crits_twice"]=1316, - ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=628, - ["local_weapon_uses_both_hands"]=831, - ["local_withered_on_hit_for_2_seconds_%_chance"]=3992, - ["lose_%_of_es_on_crit"]=7474, - ["lose_%_of_infernal_flame_on_reaching_max"]=7465, - ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7475, - ["lose_%_of_life_loss_over_4_seconds_instead"]=7466, - ["lose_%_of_life_on_crit"]=7476, - ["lose_%_of_mana_when_you_use_an_attack_skill"]=7477, - ["lose_%_of_max_infernal_flame_per_minute"]=7467, - ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3081, - ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=3975, - ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=3976, - ["lose_adrenaline_on_losing_flame_touched"]=7468, - ["lose_all_charges_on_starting_movement"]=7469, - ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=3855, - ["lose_all_endurance_charges_when_reaching_maximum"]=2432, - ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7470, - ["lose_all_fragile_regrowth_when_hit"]=3983, - ["lose_all_power_charges_on_block"]=7471, - ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3202, - ["lose_all_rage_on_reaching_maximum_rage"]=7472, - ["lose_all_tailwind_when_hit"]=7473, - ["lose_endurance_charge_on_kill_%"]=2318, - ["lose_endurance_charges_on_rampage_end"]=2899, - ["lose_frenzy_charge_on_kill_%"]=2320, - ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7478, - ["lose_power_charge_on_kill_%"]=2322, - ["lose_soul_eater_souls_on_flask_use"]=3043, - ["lose_spirit_charges_on_savage_hit_taken"]=3966, - ["lose_x_life_when_you_use_skill"]=7479, - ["lose_x_mana_when_you_use_skill"]=7480, - ["low_life_threshold_%_override"]=7482, - ["mace_accuracy_rating"]=1701, - ["mace_accuracy_rating_+%"]=1300, - ["mace_attack_speed_+%"]=1283, - ["mace_critical_strike_chance_+%"]=1325, - ["mace_critical_strike_multiplier_+"]=1345, - ["mace_damage_+%"]=1210, - ["mace_elemental_damage_+%"]=1811, - ["mace_hit_damage_stun_multiplier_+%"]=7483, - ["mace_slam_aftershock_chance_%"]=7484, - ["mace_strike_melee_splash_chance_%"]=7485, - ["magic_charm_effect_+%"]=2423, - ["magic_items_drop_identified"]=3734, - ["magic_monster_dropped_item_rarity_+%"]=7486, - ["magma_orb_damage_+%"]=3237, - ["magma_orb_num_of_additional_projectiles_in_chain"]=3539, - ["magma_orb_number_of_additional_projectiles"]=7487, - ["magma_orb_radius_+%"]=3398, - ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7488, - ["maim_bleeding_enemies_on_hit_%"]=2941, - ["maim_chance_+%"]=7489, - ["maim_effect_+%"]=7490, - ["maim_enemy_on_full_armour_break"]=7491, - ["maim_on_crit_%_with_attacks"]=7492, - ["maim_on_hit_%"]=7493, - ["maim_on_hit_%_vs_poisoned_enemies"]=2922, - ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7494, - ["main_hand_attack_speed_+%_final"]=7495, - ["main_hand_base_weapon_attack_duration_ms"]=22, - ["main_hand_claw_life_gain_on_hit"]=7496, - ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7497, - ["main_hand_damage_+%_while_dual_wielding"]=7498, - ["main_hand_maximum_attack_distance"]=26, - ["main_hand_minimum_attack_distance"]=24, - ["main_hand_quality"]=19, - ["main_hand_weapon_type"]=11, - ["malediction_on_hit"]=7499, - ["malevolence_mana_reservation_efficiency_+%"]=7501, - ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7500, - ["mamba_strike_area_of_effect_+%"]=7502, - ["mamba_strike_damage_+%"]=7503, - ["mamba_strike_duration_+%"]=7504, - ["mana_%_gained_on_block"]=7527, - ["mana_%_to_gain_as_armour"]=7505, - ["mana_%_to_gain_as_energy_shield"]=1864, - ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"]=7528, - ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3008, - ["mana_cost_+%_for_channelling_skills"]=7508, - ["mana_cost_+%_for_trap_and_mine_skills"]=7509, - ["mana_cost_+%_for_trap_skills"]=7510, - ["mana_cost_+%_on_consecrated_ground"]=3157, - ["mana_cost_+%_on_totemified_aura_skills"]=2752, - ["mana_cost_+%_per_10_devotion"]=7511, - ["mana_cost_+%_per_200_mana_spent_recently"]=3926, - ["mana_cost_+%_when_on_low_life"]=1587, - ["mana_cost_+%_while_not_low_mana"]=2728, - ["mana_cost_+%_while_on_full_energy_shield"]=1586, - ["mana_cost_-%_per_endurance_charge"]=2897, - ["mana_cost_efficiency_+%_if_dodge_rolled_recently"]=7506, - ["mana_cost_efficiency_+%_if_not_dodge_rolled_recently"]=7507, - ["mana_degeneration_%_per_minute_not_in_grace"]=7512, - ["mana_degeneration_per_minute"]=7513, - ["mana_degeneration_per_minute_%"]=7514, - ["mana_degeneration_per_minute_not_in_grace"]=1403, - ["mana_flask_charges_gained_+%"]=7515, - ["mana_flask_effects_not_removed_at_full_mana"]=7516, - ["mana_flask_recovery_is_instant_while_on_low_mana"]=7517, - ["mana_flasks_gain_X_charges_every_3_seconds"]=7518, - ["mana_gain_per_target"]=1457, - ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=7519, - ["mana_gained_on_attack_hit_vs_cursed_enemies"]=7520, - ["mana_gained_on_block"]=1470, - ["mana_gained_on_cull"]=7521, - ["mana_gained_on_enemy_death_per_level"]=2630, - ["mana_gained_on_hitting_taunted_enemy"]=1493, - ["mana_gained_on_spell_hit"]=7522, - ["mana_gained_on_spell_hit_vs_cursed_enemies"]=7523, - ["mana_gained_when_hit"]=2393, - ["mana_leech_also_recovers_based_on_other_damage_types"]=7524, - ["mana_leech_applies_recovery_to_energy_shield_also"]=7525, - ["mana_leech_rate_+%_per_equipped_corrupted_item"]=2744, - ["mana_per_level"]=7526, - ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=7529, - ["mana_recovery_from_regeneration_is_not_applied"]=7530, - ["mana_recovery_rate_+%"]=1405, - ["mana_recovery_rate_+%_if_havent_killed_recently"]=7533, - ["mana_recovery_rate_+%_per_10_tribute"]=7531, - ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=7532, - ["mana_recovery_rate_+%_while_affected_by_clarity"]=7534, - ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3659, - ["mana_regeneration_rate_+%"]=1000, - ["mana_regeneration_rate_+%_during_flask_effect"]=2823, - ["mana_regeneration_rate_+%_if_crit_recently"]=7551, - ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=7552, - ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=7553, - ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=7554, - ["mana_regeneration_rate_+%_on_full_life"]=7535, - ["mana_regeneration_rate_+%_per_fragile_regrowth"]=3982, - ["mana_regeneration_rate_+%_per_power_charge"]=1674, - ["mana_regeneration_rate_+%_per_raised_spectre"]=7555, - ["mana_regeneration_rate_+%_while_moving"]=7556, - ["mana_regeneration_rate_+%_while_not_on_low_mana"]=7536, - ["mana_regeneration_rate_+%_while_phasing"]=2200, - ["mana_regeneration_rate_+%_while_shapeshifted"]=7537, - ["mana_regeneration_rate_+%_while_shocked"]=2201, - ["mana_regeneration_rate_+%_while_stationary"]=3907, - ["mana_regeneration_rate_+%_while_surrounded"]=7538, - ["mana_regeneration_rate_per_minute_%"]=1401, - ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=7543, - ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=7544, - ["mana_regeneration_rate_per_minute_%_per_active_totem"]=7545, - ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1404, - ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=7539, - ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=7540, - ["mana_regeneration_rate_per_minute_per_10_devotion"]=7541, - ["mana_regeneration_rate_per_minute_per_power_charge"]=7542, - ["mana_regeneration_rate_per_minute_while_dual_wielding"]=7546, - ["mana_regeneration_rate_per_minute_while_holding_shield"]=7547, - ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=7548, - ["mana_regeneration_rate_per_minute_while_wielding_staff"]=7549, - ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=7550, - ["mana_reservation_+%_per_250_total_attributes"]=7562, - ["mana_reservation_+%_with_curse_skills"]=7563, - ["mana_reservation_+%_with_skills_that_throw_mines"]=7557, - ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=7558, - ["mana_reservation_efficiency_+%_per_250_total_attributes"]=7561, - ["mana_reservation_efficiency_-2%_per_1"]=1906, - ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=7559, - ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=7560, - ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=7564, - ["manabond_damage_+%"]=7565, - ["manabond_lightning_penetration_%_while_on_low_mana"]=7566, - ["manabond_skill_area_of_effect_+%"]=7567, - ["manifest_dancing_dervish_number_of_additional_copies"]=7568, - ["map_X_bestiary_packs_are_harvest_beasts"]=7569, - ["map_abyss_%_chance_chasm_spawns_at_least_magic_monsters"]=7570, - ["map_abyss_%_chance_path_spawns_at_least_magic_monsters"]=7571, - ["map_abyss_chance_to_be_amanamu_+%"]=7572, - ["map_abyss_chance_to_be_kurgal_+%"]=7573, - ["map_abyss_chance_to_be_ulaman_+%"]=7574, - ["map_abyss_depths_chance_+%"]=7575, - ["map_abyss_exile_interaction_chance_+%"]=7576, - ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=107, - ["map_abyss_monster_experience_+%"]=7577, - ["map_abyss_monster_lichborn_modifier_chance_+%"]=7578, - ["map_abyss_monster_potency_+%"]=7579, - ["map_abyss_monster_spawn_amount_+%"]=7580, - ["map_abyss_monsters_enhanced_per_chasm_closed"]=7581, - ["map_abyss_no_reward_chance_+%"]=7582, - ["map_abyss_num_additional_rare_monsters"]=7583, - ["map_abyss_overrun_extra_pits"]=7584, - ["map_abyss_overrun_no_monsters"]=7585, - ["map_abyss_pits_spread_apart"]=7586, - ["map_add_irradiation_instead_of_completing"]=7587, - ["map_additional_number_of_packs_to_choose"]=1990, - ["map_additional_player_maximum_resistances_%"]=2061, - ["map_additional_rare_in_rare_pack_%_chance"]=7588, - ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=7589, - ["map_additional_red_beasts"]=7590, - ["map_adds_X_extra_synthesis_mods"]=7591, - ["map_adds_X_extra_synthesis_special_mods"]=7592, - ["map_addtional_magic_chest_amount"]=1934, - ["map_addtional_rare_chest_amount"]=1935, - ["map_affliction_encounter_boss_chance_+%"]=7593, - ["map_affliction_encounter_monster_depth_+%"]=7594, - ["map_affliction_pack_size_+%"]=7595, - ["map_affliction_reward_kills_+%"]=7596, - ["map_affliction_reward_progress_on_kill_+%"]=7597, - ["map_affliction_secondary_wave_acceleration_+%"]=7598, - ["map_affliction_secondary_wave_delay_ms_+"]=7599, - ["map_affliction_secondary_wave_delay_seconds_+"]=7600, - ["map_all_items_drop_as_gold"]=1938, - ["map_allow_shrines"]=2312, - ["map_always_has_weather"]=2311, - ["map_ambush_chests"]=2305, - ["map_area_contains_arcanists_strongbox"]=7602, - ["map_area_contains_avatar_of_ambush"]=7603, - ["map_area_contains_avatar_of_anarchy"]=7604, - ["map_area_contains_avatar_of_beyond"]=7605, - ["map_area_contains_avatar_of_bloodlines"]=7606, - ["map_area_contains_avatar_of_breach"]=7607, - ["map_area_contains_avatar_of_domination"]=7608, - ["map_area_contains_avatar_of_essence"]=7609, - ["map_area_contains_avatar_of_invasion"]=7610, - ["map_area_contains_avatar_of_nemesis"]=7611, - ["map_area_contains_avatar_of_onslaught"]=7612, - ["map_area_contains_avatar_of_perandus"]=7613, - ["map_area_contains_avatar_of_prophecy"]=7614, - ["map_area_contains_avatar_of_rampage"]=7615, - ["map_area_contains_avatar_of_talisman"]=7616, - ["map_area_contains_avatar_of_tempest"]=7617, - ["map_area_contains_avatar_of_torment"]=7618, - ["map_area_contains_avatar_of_warbands"]=7619, - ["map_area_contains_cartographers_strongbox"]=7620, - ["map_area_contains_currency_chest"]=7621, - ["map_area_contains_gemcutters_strongbox"]=7622, - ["map_area_contains_jewellery_chest"]=7623, - ["map_area_contains_map_chest"]=7624, - ["map_area_contains_metamorphs"]=7625, - ["map_area_contains_perandus_coin_chest"]=7626, - ["map_area_contains_rituals"]=7627, - ["map_area_contains_tormented_embezzler"]=7628, - ["map_area_contains_tormented_seditionist"]=7629, - ["map_area_contains_tormented_vaal_cultist"]=7630, - ["map_area_contains_unique_item_chest"]=7631, - ["map_area_contains_unique_strongbox"]=7632, - ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=7633, - ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=7634, - ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=7635, - ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=7636, - ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=7637, - ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=7638, - ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=7639, - ["map_area_contains_x_rare_monsters_with_inner_treasure"]=7735, - ["map_area_ritual_additional_chance_%"]=7640, - ["map_atlas_influence_type"]=7601, - ["map_base_ground_desecration_damage_to_deal_per_minute"]=2007, - ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2000, - ["map_base_ground_fire_damage_to_deal_per_minute"]=1999, - ["map_bestiary_monster_damage_+%_final"]=7641, - ["map_bestiary_monster_life_+%_final"]=7642, - ["map_betrayal_intelligence_+%"]=7643, - ["map_beyond_demon_always_elite"]=7644, - ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=7645, - ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=7645, - ["map_beyond_portal_chance_+%"]=7646, - ["map_beyond_portal_spawn_additional_demon_%_chance"]=7647, - ["map_beyond_rules"]=2314, - ["map_blight_chest_%_chance_for_additional_drop"]=7648, - ["map_blight_chests_repeat_drops_count"]=7649, - ["map_blight_encounter_spawn_rate_+%"]=7650, - ["map_blight_lane_additional_chest_chance_%"]=7651, - ["map_blight_lane_additional_chests"]=7652, - ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=7653, - ["map_blight_tower_cost_+%"]=7654, - ["map_blight_tower_cost_doubled"]=7655, - ["map_blight_up_to_X_additional_bosses"]=7656, - ["map_blighted_map_encounter_duration_-_sec"]=7657, - ["map_bloodline_packs_drop_x_additional_currency_items"]=7658, - ["map_bloodline_packs_drop_x_additional_rare_items"]=7659, - ["map_blueprint_drop_revealed_chance_%"]=7660, - ["map_boss_accompanied_by_bodyguards"]=7661, - ["map_boss_accompanied_by_harbinger"]=7662, - ["map_boss_area_of_effect_+%"]=2127, - ["map_boss_attack_and_cast_speed_+%"]=2125, - ["map_boss_damage_+%"]=2119, - ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2120, - ["map_boss_dropped_item_quantity_+%"]=7663, - ["map_boss_dropped_unique_items_+"]=7664, - ["map_boss_drops_additional_conqueror_map"]=2122, - ["map_boss_drops_additional_currency_shards"]=7665, - ["map_boss_drops_additional_elder_guardian_map"]=2123, - ["map_boss_drops_additional_shaper_guardian_map"]=2124, - ["map_boss_drops_corrupted_items"]=7666, - ["map_boss_drops_x_additional_vaal_items"]=7671, - ["map_boss_experience_+%_final"]=7667, - ["map_boss_is_possessed"]=7668, - ["map_boss_item_rarity_+%"]=7669, - ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2121, - ["map_boss_maximum_life_+%"]=2126, - ["map_boss_surrounded_by_tormented_spirits"]=7670, - ["map_breach_%_chance_for_1_additional_breach"]=7672, - ["map_breach_%_chance_for_3_additional_breach"]=7673, - ["map_breach_X_additional_rare_monsters"]=7674, - ["map_breach_chance_to_be_esh_+%"]=7675, - ["map_breach_chance_to_be_tul_+%"]=7676, - ["map_breach_chance_to_be_uul_netol_+%"]=7677, - ["map_breach_chance_to_be_xoph_+%"]=7678, - ["map_breach_hands_are_small"]=97, - ["map_breach_has_boss"]=7679, - ["map_breach_has_large_chest"]=7680, - ["map_breach_minimum_radius"]=7681, - ["map_breach_monster_quantity_+%"]=7682, - ["map_breach_monster_splinter_quantity_+%"]=7683, - ["map_breach_monsters_damage_+%"]=128, - ["map_breach_monsters_life_+%"]=120, - ["map_breach_number_of_magic_packs_+%"]=7684, - ["map_breach_rules"]=2306, - ["map_breach_size_+%"]=114, - ["map_breach_splinters_drop_as_stones_permyriad"]=115, - ["map_breach_time_passed_+%"]=108, - ["map_breach_type_override"]=7685, - ["map_breaches_num_additional_chests_to_spawn"]=7686, - ["map_chance_for_4_additional_abysses_%"]=7687, - ["map_chance_for_area_%_to_contain_harvest"]=7688, - ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=116, - ["map_chance_to_not_consume_sextant_use_%"]=7689, - ["map_chest_item_quantity_+%"]=2128, - ["map_chest_item_rarity_+%"]=2129, - ["map_chest_item_rarity_+%_final"]=7690, - ["map_chests_all_magic_or_rare"]=7691, - ["map_construct_monster_potency_+%"]=7692, - ["map_contains_abyss_boss"]=7693, - ["map_contains_abyss_depths"]=7694, - ["map_contains_abyss_depths_with_no_boss"]=7695, - ["map_contains_additional_breaches"]=7696, - ["map_contains_additional_chrysalis_talisman"]=7697, - ["map_contains_additional_clutching_talisman"]=7698, - ["map_contains_additional_fangjaw_talisman"]=7699, - ["map_contains_additional_mandible_talisman"]=7700, - ["map_contains_additional_packs_of_chaos_monsters"]=7701, - ["map_contains_additional_packs_of_cold_monsters"]=7702, - ["map_contains_additional_packs_of_fire_monsters"]=7703, - ["map_contains_additional_packs_of_lightning_monsters"]=7704, - ["map_contains_additional_packs_of_physical_monsters"]=7705, - ["map_contains_additional_packs_of_vaal_monsters"]=7706, - ["map_contains_additional_three_rat_talisman"]=7707, - ["map_contains_additional_tormented_betrayers"]=7708, - ["map_contains_additional_tormented_graverobbers"]=7709, - ["map_contains_additional_tormented_heretics"]=7710, - ["map_contains_additional_unique_talisman"]=7711, - ["map_contains_additional_writhing_talisman"]=7712, - ["map_contains_buried_treasure"]=1936, - ["map_contains_chayula_breach"]=7713, - ["map_contains_citadel"]=7714, - ["map_contains_cleansed_boss"]=7715, - ["map_contains_corrupted_strongbox"]=7716, - ["map_contains_creeping_agony"]=7717, - ["map_contains_keepers_of_the_trove_bloodline_pack"]=7718, - ["map_contains_master"]=7719, - ["map_contains_nevalis_monkey"]=7720, - ["map_contains_perandus_boss"]=7721, - ["map_contains_talisman_boss_with_higher_tier"]=7722, - ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=7723, - ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=7723, - ["map_contains_uul_netol_breach"]=7724, - ["map_contains_wealthy_pack"]=7725, - ["map_contains_x_additional_animated_weapon_packs"]=7726, - ["map_contains_x_additional_healing_packs"]=7727, - ["map_contains_x_additional_magic_packs"]=7728, - ["map_contains_x_additional_normal_packs"]=7729, - ["map_contains_x_additional_packs_on_their_own_team"]=7730, - ["map_contains_x_additional_packs_that_convert_on_death"]=7731, - ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=1937, - ["map_contains_x_additional_poison_packs"]=7732, - ["map_contains_x_additional_rare_packs"]=7733, - ["map_contains_x_fewer_portals"]=7734, - ["map_contracts_drop_with_additional_special_implicit_%_chance"]=7736, - ["map_cowards_trial_extra_ghosts"]=7737, - ["map_cowards_trial_extra_oriath_citizens"]=7738, - ["map_cowards_trial_extra_phantasms"]=7739, - ["map_cowards_trial_extra_raging_spirits"]=7740, - ["map_cowards_trial_extra_rhoas"]=7741, - ["map_cowards_trial_extra_skeleton_cannons"]=7742, - ["map_cowards_trial_extra_zombies"]=7743, - ["map_custom_league_damage_taken_+%_final"]=7744, - ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=7746, - ["map_damage_+%_per_poison_stack"]=7745, - ["map_damage_taken_+%_from_beyond_monsters"]=7747, - ["map_damage_taken_while_stationary_+%"]=7748, - ["map_damage_while_stationary_+%"]=7749, - ["map_death_and_taxes_boss_drops_additional_currency"]=7750, - ["map_delirium_additional_reward_type_chance_%"]=7751, - ["map_delirium_doodads_+%_final"]=7752, - ["map_delirium_fog_never_dissipates"]=7753, - ["map_delirium_splinter_stack_size_+%"]=7754, - ["map_delve_rules"]=7755, - ["map_display_area_contains_unbridged_gaps_to_cross"]=1988, - ["map_display_strongbox_monsters_are_enraged"]=7757, - ["map_display_unique_boss_drops_X_maps"]=2028, - ["map_divination_card_drop_chance_+%"]=7758, - ["map_doesnt_consume_sextant_use"]=7759, - ["map_dropped_maps_are_corrupted_with_8_mods"]=7760, - ["map_dropped_maps_are_duplicated_chance_permillage"]=7761, - ["map_duplicate_all_rare_monsters"]=1939, - ["map_duplicate_captured_beasts_chance_%"]=7762, - ["map_duplicate_essence_monsters_with_shrieking_essence"]=129, - ["map_duplicate_x_rare_monsters"]=7763, - ["map_duplicate_x_synthesised_rare_monsters"]=7764, - ["map_elder_boss_variation"]=7765, - ["map_elder_rare_chance_+%"]=7766, - ["map_elemental_weakness_curse_zones"]=2053, - ["map_endgame_affliction_reward_1"]=7767, - ["map_endgame_affliction_reward_2"]=7768, - ["map_endgame_affliction_reward_3"]=7769, - ["map_endgame_affliction_reward_4"]=7770, - ["map_endgame_affliction_reward_5"]=7771, - ["map_endgame_affliction_reward_6"]=7772, - ["map_endgame_affliction_reward_7"]=7773, - ["map_endgame_affliction_reward_8"]=7774, - ["map_endgame_affliction_reward_9"]=7775, - ["map_endgame_fog_depth"]=7776, - ["map_enfeeble_curse_zones"]=2049, - ["map_equipment_drops_identified"]=7777, - ["map_essence_abyss_chance_+%"]=7778, - ["map_essence_corruption_cannot_release_monsters"]=121, - ["map_essence_monolith_contains_additional_essence_of_corruption"]=7779, - ["map_essence_monolith_contains_essence_of_corruption_%"]=7780, - ["map_essence_monsters_are_corrupted"]=7781, - ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=131, - ["map_essence_monsters_have_additional_essences"]=7782, - ["map_essence_monsters_higher_tier"]=7783, - ["map_essences_are_1_tier_higher_chance_%"]=117, - ["map_essences_contains_rogue_exiles"]=109, - ["map_expedition_artifact_quantity_+%"]=7784, - ["map_expedition_chest_double_drops_chance_%"]=7785, - ["map_expedition_chest_marker_count_+"]=7786, - ["map_expedition_common_chest_marker_count_+"]=7787, - ["map_expedition_elite_marker_count_+%"]=7788, - ["map_expedition_encounter_additional_chance_%"]=7789, - ["map_expedition_epic_chest_marker_count_+"]=7790, - ["map_expedition_explosion_radius_+%"]=7791, - ["map_expedition_explosives_+%"]=7792, - ["map_expedition_extra_relic_suffix_chance_%"]=7793, - ["map_expedition_league"]=7794, - ["map_expedition_maximum_placement_distance_+%"]=7795, - ["map_expedition_monster_spawn_with_half_life"]=7796, - ["map_expedition_number_of_monster_markers_+%"]=7797, - ["map_expedition_rare_monsters_+%"]=7798, - ["map_expedition_relic_mod_effect_+%"]=7799, - ["map_expedition_relics_+"]=7800, - ["map_expedition_relics_+%"]=7801, - ["map_expedition_saga_additional_terrain_features"]=7802, - ["map_expedition_saga_contains_boss"]=7803, - ["map_expedition_twinned_elites"]=7804, - ["map_expedition_uncommon_chest_marker_count_+"]=7805, - ["map_expedition_vendor_reroll_currency_quantity_+%"]=7806, - ["map_expedition_x_extra_relic_suffixes"]=7807, - ["map_experience_gain_+%"]=1940, - ["map_extra_gold_piles_chance_%"]=1941, - ["map_extra_monoliths"]=7808, - ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=7809, - ["map_first_invasion_boss_killed_drops_x_additional_currency"]=7810, - ["map_first_strongbox_contains_x_additional_rare_monsters"]=7811, - ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=7812, - ["map_fishy_effect_0"]=7756, - ["map_fishy_effect_1"]=7756, - ["map_fishy_effect_2"]=7756, - ["map_fishy_effect_3"]=7756, - ["map_fixed_seed"]=2013, - ["map_flask_charges_recovered_per_3_seconds_%"]=7813, - ["map_force_side_area"]=7814, - ["map_force_stone_circle"]=2037, - ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=7815, - ["map_gauntlet_unique_monster_life_+%"]=7816, - ["map_gold_+%"]=1942, - ["map_golemworks_increased_effect_of_incursion_temple_rooms"]=7817, - ["map_grants_players_level_20_dash_skill"]=7818, - ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=7819, - ["map_ground_haste_action_speed_+%"]=7820, - ["map_ground_ice"]=2001, - ["map_ground_ice_base_magnitude"]=2002, - ["map_ground_lightning"]=2003, - ["map_ground_lightning_base_magnitude"]=2005, - ["map_ground_mana_siphoning"]=2004, - ["map_ground_tar_movement_speed_+%"]=2006, - ["map_harbinger_additional_currency_shard_stack_chance_%"]=7821, - ["map_harbinger_cooldown_speed_+%"]=98, - ["map_harbinger_portal_drops_additional_fragments"]=7822, - ["map_harbingers_drops_additional_currency_shards"]=7823, - ["map_harvest_crafting_outcomes_X_lucky_rolls"]=7824, - ["map_harvest_double_lifeforce_dropped"]=7825, - ["map_harvest_monster_life_+%_final_from_sextant"]=7826, - ["map_harvest_seed_t2_upgrade_%_chance"]=118, - ["map_harvest_seed_t3_upgrade_%_chance"]=122, - ["map_harvest_seeds_1_of_every_2_plot_type_override"]=7827, - ["map_harvest_seeds_are_at_least_t2"]=110, - ["map_has_X_seconds_between_waves"]=2131, - ["map_has_X_waves_of_monsters"]=2130, - ["map_has_monoliths"]=7828, - ["map_has_x%_quality"]=7829, - ["map_heist_contract_additional_reveals_granted"]=7830, - ["map_heist_contract_chest_no_rewards_%_chance"]=7831, - ["map_heist_contract_npc_items_cannot_drop"]=7832, - ["map_heist_contract_primary_target_value_+%_final"]=7833, - ["map_heist_monster_life_+%_final_from_sextant"]=7834, - ["map_heist_npc_perks_effect_+%_final"]=7835, - ["map_hellscape_additional_boss"]=1052, - ["map_hellscape_blood_consumed_+%_final"]=1034, - ["map_hellscape_fire_damage_taken_when_switching"]=1040, - ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1036, - ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1035, - ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1037, - ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1038, - ["map_hellscape_gimmick_shift_randomly"]=1039, - ["map_hellscape_item_drop_quantity_+%"]=1053, - ["map_hellscape_item_drop_rarity_+%"]=1054, - ["map_hellscape_lightning_damage_taken_when_switching"]=1041, - ["map_hellscape_monster_damage_+%_final"]=1042, - ["map_hellscape_monster_damage_taken_+%_final"]=1043, - ["map_hellscape_monster_life_+%_final"]=1044, - ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1045, - ["map_hellscape_monster_slain_experience_+%_final"]=1055, - ["map_hellscape_pack_size_+%"]=1056, - ["map_hellscape_physical_damage_taken_when_switching"]=1046, - ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1057, - ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1058, - ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1059, - ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1060, - ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1061, - ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1062, - ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1063, - ["map_hellscape_rare_monster_drop_additional_essence"]=1064, - ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1065, - ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1066, - ["map_hellscape_rare_monster_drop_additional_gem"]=1067, - ["map_hellscape_rare_monster_drop_additional_incubator"]=1068, - ["map_hellscape_rare_monster_drop_additional_influence_item"]=1069, - ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1070, - ["map_hellscape_rare_monster_drop_additional_map_item"]=1071, - ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1072, - ["map_hellscape_rare_monster_drop_additional_scarab"]=1073, - ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1074, - ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1075, - ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1076, - ["map_hellscape_rare_monster_drop_additional_unique_item"]=1077, - ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1078, - ["map_hellscaping_speed_+%"]=6715, - ["map_humanoid_monster_potency_+%"]=7836, - ["map_imprisoned_monsters_action_speed_+%"]=7837, - ["map_imprisoned_monsters_damage_+%"]=7838, - ["map_imprisoned_monsters_damage_taken_+%"]=7839, - ["map_invasion_bosses_are_twinned"]=7840, - ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=7841, - ["map_invasion_bosses_dropped_items_are_fully_linked"]=7842, - ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=7843, - ["map_invasion_monster_packs"]=2308, - ["map_invasion_monsters_guarded_by_x_magic_packs"]=7844, - ["map_is_branchy"]=1982, - ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=7845, - ["map_item_drop_quantity_+%"]=29, - ["map_item_drop_rarity_+%"]=30, - ["map_item_found_rarity_+%_per_15_rampage_stacks"]=7846, - ["map_item_level_override"]=829, - ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=7847, - ["map_items_drop_corrupted"]=2690, - ["map_items_drop_corrupted_%"]=2691, - ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=7848, - ["map_labyrinth_izaro_area_of_effect_+%"]=7849, - ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=7850, - ["map_labyrinth_izaro_damage_+%"]=7851, - ["map_labyrinth_izaro_life_+%"]=7852, - ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=7853, - ["map_labyrinth_monsters_damage_+%"]=7854, - ["map_labyrinth_monsters_life_+%"]=7855, - ["map_leaguestone_area_contains_x_additional_leaguestones"]=7856, - ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=7857, - ["map_leaguestone_contains_warband_leader"]=7858, - ["map_leaguestone_explicit_warband_type_override"]=7859, - ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=7860, - ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=7861, - ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=7862, - ["map_leaguestone_monolith_contains_essence_type"]=7863, - ["map_leaguestone_override_base_num_breaches"]=7864, - ["map_leaguestone_override_base_num_invasion_bosses"]=7865, - ["map_leaguestone_override_base_num_monoliths"]=7866, - ["map_leaguestone_override_base_num_perandus_chests"]=7867, - ["map_leaguestone_override_base_num_prophecy_coins"]=7868, - ["map_leaguestone_override_base_num_rogue_exiles"]=7869, - ["map_leaguestone_override_base_num_shrines"]=7870, - ["map_leaguestone_override_base_num_strongboxes"]=7871, - ["map_leaguestone_override_base_num_talismans"]=7872, - ["map_leaguestone_override_base_num_tormented_spirits"]=7873, - ["map_leaguestone_override_base_num_warband_packs"]=7874, - ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=7875, - ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=7876, - ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=7877, - ["map_leaguestone_shrine_monster_rarity_override"]=7878, - ["map_leaguestone_shrine_override_type"]=7879, - ["map_leaguestone_strongboxes_rarity_override"]=7880, - ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=7882, - ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=7883, - ["map_leaguestone_x_monsters_spawn_abaxoth"]=7884, - ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=7885, - ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=7886, - ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=7887, - ["map_legion_league_extra_spawns"]=7888, - ["map_legion_league_force_general"]=7889, - ["map_legion_league_force_war_chest"]=7890, - ["map_legion_monster_life_+%_final_from_sextant"]=7891, - ["map_legion_monster_splinter_emblem_drops_duplicated"]=7892, - ["map_level_+"]=7893, - ["map_magic_chest_amount_+%"]=1943, - ["map_magic_items_drop_as_normal"]=7894, - ["map_magic_monster_life_regeneration_rate_per_minute_%"]=3860, - ["map_magic_monster_potency_+%"]=7895, - ["map_magic_monsters_are_maimed"]=7896, - ["map_magic_monsters_damage_taken_+%"]=7897, - ["map_magic_pack_size_+%"]=1944, - ["map_metamorph_all_metamorphs_have_rewards"]=7898, - ["map_metamorph_boss_drops_additional_itemised_organs"]=7899, - ["map_metamorph_catalyst_drops_duplicated"]=7900, - ["map_metamorph_itemised_boss_min_rewards"]=7901, - ["map_metamorph_itemised_boss_more_difficult"]=7902, - ["map_metamorph_life_+%_final_from_sextant"]=7903, - ["map_metamorphosis_league"]=7904, - ["map_mini_monolith_monsters_are_magic"]=7905, - ["map_minimap_revealed"]=2014, - ["map_monolith_chance_%"]=7907, - ["map_monolith_chance_+%"]=7906, - ["map_monster_add_x_grasping_vines_on_hit"]=7922, - ["map_monster_additional_abyssal_monolithic_slug_packs"]=7908, - ["map_monster_additional_baron_packs"]=1945, - ["map_monster_additional_beasts_packs"]=1946, - ["map_monster_additional_bramble_packs"]=1947, - ["map_monster_additional_doryani_packs"]=1948, - ["map_monster_additional_ezomyte_packs"]=1949, - ["map_monster_additional_faridun_packs"]=1950, - ["map_monster_additional_incursion_ChainedBeastBoss_packs"]=7909, - ["map_monster_additional_incursion_SoulCoreQuadrilla_packs"]=7910, - ["map_monster_additional_incursion_SoulcoreFusedSkeleton_packs"]=7911, - ["map_monster_additional_incursion_VaalColossusBoss_packs"]=7912, - ["map_monster_additional_incursion_VaalSentinelBoss_packs"]=7913, - ["map_monster_additional_incursion_VaalSunPriestBoss_packs"]=7914, - ["map_monster_additional_perennial_packs"]=1951, - ["map_monster_additional_sanctified_packs"]=7915, - ["map_monster_additional_undead_packs"]=1952, - ["map_monster_additional_vaal_packs"]=1953, - ["map_monster_and_player_onslaught_effect_+%"]=7916, - ["map_monster_attack_cast_and_movement_speed_+%"]=7917, - ["map_monster_beyond_portal_chance_+%"]=7918, - ["map_monster_curse_effect_on_self_+%"]=7919, - ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=7920, - ["map_monster_damage_taken_+%_while_possessed"]=7921, - ["map_monster_defences_+%"]=2511, - ["map_monster_drop_higher_level_gear"]=3194, - ["map_monster_item_rarity_+%_final"]=7923, - ["map_monster_melee_attacks_apply_random_curses"]=2109, - ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2110, - ["map_monster_no_drops"]=2117, - ["map_monster_non_damaging_ailment_effect_+%_on_self"]=7924, - ["map_monster_potency_+%"]=7925, - ["map_monster_skills_chain_X_additional_times"]=2112, - ["map_monster_slain_experience_+%"]=7927, - ["map_monster_tre_+%"]=1954, - ["map_monster_unaffected_by_shock"]=2070, - ["map_monsters_%_all_damage_to_gain_as_chaos"]=2102, - ["map_monsters_%_all_damage_to_gain_as_cold"]=2098, - ["map_monsters_%_all_damage_to_gain_as_fire"]=2096, - ["map_monsters_%_all_damage_to_gain_as_lightning"]=2100, - ["map_monsters_%_chance_to_inflict_status_ailments"]=7979, - ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2095, - ["map_monsters_%_physical_damage_to_convert_to_cold"]=2093, - ["map_monsters_%_physical_damage_to_convert_to_fire"]=2092, - ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2094, - ["map_monsters_%_physical_damage_to_gain_as_chaos"]=2103, - ["map_monsters_%_physical_damage_to_gain_as_cold"]=2099, - ["map_monsters_%_physical_damage_to_gain_as_fire"]=2097, - ["map_monsters_%_physical_damage_to_gain_as_lightning"]=2101, - ["map_monsters_accuracy_rating_+%"]=7928, - ["map_monsters_action_speed_-%"]=7929, - ["map_monsters_add_endurance_charge_on_hit_%"]=7930, - ["map_monsters_add_frenzy_charge_on_hit_%"]=7931, - ["map_monsters_add_power_charge_on_hit_%"]=7932, - ["map_monsters_additional_chaos_resistance"]=7933, - ["map_monsters_additional_cold_resistance"]=2087, - ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=7934, - ["map_monsters_additional_elemental_resistance"]=7935, - ["map_monsters_additional_fire_resistance"]=2086, - ["map_monsters_additional_lightning_resistance"]=2088, - ["map_monsters_additional_maximum_all_elemental_resistances_%"]=7936, - ["map_monsters_additional_number_of_projecitles"]=2085, - ["map_monsters_additional_physical_damage_reduction"]=2089, - ["map_monsters_additional_strength_ratio_%_for_armour"]=7937, - ["map_monsters_ailment_threshold_+%"]=7938, - ["map_monsters_all_damage_can_chill"]=7939, - ["map_monsters_all_damage_can_freeze"]=7940, - ["map_monsters_all_damage_can_ignite"]=7941, - ["map_monsters_all_damage_can_poison"]=7942, - ["map_monsters_all_damage_can_shock"]=7943, - ["map_monsters_always_crit"]=7944, - ["map_monsters_always_hit"]=7945, - ["map_monsters_always_ignite"]=7946, - ["map_monsters_are_converted_on_kill"]=7947, - ["map_monsters_are_hexproof"]=2115, - ["map_monsters_are_immune_to_curses"]=2114, - ["map_monsters_area_of_effect_+%"]=2066, - ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=7948, - ["map_monsters_attack_speed_+%"]=2081, - ["map_monsters_attacks_inflict_bleeding_on_hit"]=7968, - ["map_monsters_avoid_ailments_%"]=2071, - ["map_monsters_avoid_elemental_ailments_%"]=2072, - ["map_monsters_avoid_freeze_and_chill_%"]=2067, - ["map_monsters_avoid_ignite_%"]=2068, - ["map_monsters_avoid_poison_bleed_impale_%"]=7949, - ["map_monsters_avoid_shock_%"]=2069, - ["map_monsters_base_bleed_duration_+%"]=7950, - ["map_monsters_base_block_%"]=7951, - ["map_monsters_base_chance_to_freeze_%"]=7952, - ["map_monsters_base_chance_to_shock_%"]=7953, - ["map_monsters_base_poison_duration_+%"]=7954, - ["map_monsters_base_self_critical_strike_multiplier_-%"]=3210, - ["map_monsters_cannot_be_leeched_from"]=2075, - ["map_monsters_cannot_be_stunned"]=2090, - ["map_monsters_cannot_be_taunted"]=7955, - ["map_monsters_cast_speed_+%"]=2082, - ["map_monsters_chance_to_blind_on_hit_%"]=7956, - ["map_monsters_chance_to_impale_%"]=7957, - ["map_monsters_chance_to_inflict_bleeding_%"]=7958, - ["map_monsters_chance_to_inflict_brittle_%"]=7959, - ["map_monsters_chance_to_inflict_sapped_%"]=7960, - ["map_monsters_chance_to_poison_on_hit_%"]=7961, - ["map_monsters_chance_to_scorch_%"]=7962, - ["map_monsters_critical_strike_chance_+%"]=2073, - ["map_monsters_critical_strike_multiplier_+"]=2074, - ["map_monsters_curse_effect_+%"]=2116, - ["map_monsters_curse_effect_on_self_+%_final"]=7963, - ["map_monsters_damage_+%"]=2078, - ["map_monsters_damage_taken_+%"]=7964, - ["map_monsters_drop_ground_fire_on_death_base_radius"]=2113, - ["map_monsters_drop_no_equipment"]=7965, - ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=7966, - ["map_monsters_energy_shield_leech_resistance_permyriad"]=3889, - ["map_monsters_freeze_duration_+%"]=7967, - ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2106, - ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2105, - ["map_monsters_gain_x_power_charges_every_20_seconds"]=2107, - ["map_monsters_global_poison_on_hit"]=7969, - ["map_monsters_have_onslaught"]=2079, - ["map_monsters_hit_damage_freeze_multiplier_+%"]=7970, - ["map_monsters_hit_damage_stun_multiplier_+%"]=7971, - ["map_monsters_ignite_chance_+%"]=7972, - ["map_monsters_ignite_duration_+%"]=7973, - ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2108, - ["map_monsters_life_+%"]=2065, - ["map_monsters_life_leech_resistance_permyriad"]=2076, - ["map_monsters_maim_on_hit_%_chance"]=7974, - ["map_monsters_mana_leech_resistance_permyriad"]=2077, - ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=7975, - ["map_monsters_monster_difficulty_tankiness_+%_granted_to_pack_members_on_death"]=7976, - ["map_monsters_movement_speed_+%"]=2080, - ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=7977, - ["map_monsters_penetrate_elemental_resistances_%"]=7978, - ["map_monsters_physical_damage_%_to_gain_as_random_element"]=2104, - ["map_monsters_poison_on_hit"]=2091, - ["map_monsters_reduce_enemy_chaos_resistance_%"]=7980, - ["map_monsters_reduce_enemy_cold_resistance_%"]=7981, - ["map_monsters_reduce_enemy_fire_resistance_%"]=7982, - ["map_monsters_reduce_enemy_lightning_resistance_%"]=7983, - ["map_monsters_reflect_%_elemental_damage"]=2084, - ["map_monsters_reflect_%_physical_damage"]=2083, - ["map_monsters_reflect_curses"]=2111, - ["map_monsters_remove_%_of_mana_on_hit"]=7986, - ["map_monsters_remove_charges_on_hit_%"]=7984, - ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=7985, - ["map_monsters_shock_chance_+%"]=7987, - ["map_monsters_shock_effect_+%"]=7988, - ["map_monsters_skill_speed_+%"]=7926, - ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=7989, - ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=7990, - ["map_monsters_steal_charges"]=7991, - ["map_monsters_stun_threshold_+%"]=7992, - ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=7993, - ["map_monsters_unaffected_by_curses"]=7994, - ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=7995, - ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=7996, - ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=7997, - ["map_monstrous_treasure_no_monsters"]=7998, - ["map_movement_velocity_+%_per_poison_stack"]=7999, - ["map_natural_rare_monsters_have_soul_eater"]=8000, - ["map_natural_rare_monsters_have_x_additional_abyssal_modifiers"]=8001, - ["map_natural_rare_monsters_in_union_of_souls_with_boss"]=8002, - ["map_nemesis_dropped_items_+"]=8003, - ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8004, - ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8005, - ["map_no_experience"]=8056, - ["map_no_magic_items_drop"]=8006, - ["map_no_rare_items_drop"]=8007, - ["map_no_refills_in_town"]=2015, - ["map_no_stashes"]=8008, - ["map_no_uniques_drop_randomly"]=8009, - ["map_no_vendors"]=8010, - ["map_non_unique_equipment_drops_as_sell_price"]=2689, - ["map_non_unique_items_drop_normal"]=8011, - ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8012, - ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2042, - ["map_normal_items_drop_as_magic"]=8013, - ["map_normal_monster_life_regeneration_rate_per_minute_%"]=3859, - ["map_normal_monster_potency_+%"]=8014, - ["map_nuke_everything"]=8015, - ["map_num_extra_abysses"]=8016, - ["map_num_extra_blights_"]=8017, - ["map_num_extra_gloom_shrines"]=8018, - ["map_num_extra_harbingers"]=8019, - ["map_num_extra_invasion_bosses"]=2309, - ["map_num_extra_resonating_shrines"]=8020, - ["map_num_extra_shrines"]=2031, - ["map_num_extra_stone_circles"]=8021, - ["map_num_extra_strongboxes"]=2039, - ["map_number_of_additional_mods"]=8022, - ["map_number_of_additional_prefixes"]=8023, - ["map_number_of_additional_silver_coin_drops"]=8024, - ["map_number_of_additional_suffixes"]=8025, - ["map_number_of_harbinger_portals"]=83, - ["map_number_of_magic_packs_+%"]=2040, - ["map_number_of_rare_packs_+%"]=2041, - ["map_on_complete_drop_x_additional_maps"]=8026, - ["map_owner_sulphite_gained_+%"]=8027, - ["map_packs_are_abomination_monsters"]=8028, - ["map_packs_are_animals"]=2021, - ["map_packs_are_bandits"]=2019, - ["map_packs_are_blackguards"]=8029, - ["map_packs_are_demons"]=2022, - ["map_packs_are_ghosts"]=8030, - ["map_packs_are_goatmen"]=2020, - ["map_packs_are_humanoids"]=2023, - ["map_packs_are_kitava"]=8031, - ["map_packs_are_lunaris"]=8032, - ["map_packs_are_sea_witches_and_spawn"]=2024, - ["map_packs_are_skeletons"]=2018, - ["map_packs_are_solaris"]=8033, - ["map_packs_are_spiders"]=8034, - ["map_packs_are_str_mission_totems"]=2017, - ["map_packs_are_totems"]=2016, - ["map_packs_are_undead_and_necromancers"]=2025, - ["map_packs_are_vaal"]=8035, - ["map_packs_fire_projectiles"]=2026, - ["map_packs_have_pop_up_traps"]=3852, - ["map_perandus_guards_are_rare"]=8036, - ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8037, - ["map_player_accuracy_rating_+%_final"]=8038, - ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1047, - ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8039, - ["map_player_base_chaos_damage_taken_per_minute"]=2043, - ["map_player_block_chance_%_in_hellscape"]=1048, - ["map_player_buff_time_passed_+%_only_buff_category"]=8040, - ["map_player_cannot_block_attacks"]=8041, - ["map_player_cannot_expose"]=2045, - ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8042, - ["map_player_charges_gained_+%"]=8043, - ["map_player_cooldown_speed_+%_final"]=8044, - ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2831, - ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8045, - ["map_player_curse_effect_on_self_+%"]=8046, - ["map_player_damage_+%_vs_breach_monsters"]=8047, - ["map_player_damage_taken_+%_vs_breach_monsters"]=8048, - ["map_player_damage_taken_+%_while_rampaging"]=8049, - ["map_player_death_mark_on_rare_unique_kill_ms"]=8050, - ["map_player_disable_soul_gain_prevention"]=8051, - ["map_player_es_loss_per_second_in_hellscape"]=1049, - ["map_player_flask_recovery_is_instant"]=8052, - ["map_player_global_defences_+%_final_from_sanctum_boon"]=2512, - ["map_player_has_blood_magic_keystone"]=2044, - ["map_player_has_chaos_inoculation_keystone"]=2046, - ["map_player_has_level_X_conductivity"]=2057, - ["map_player_has_level_X_despair"]=2058, - ["map_player_has_level_X_elemental_weakness"]=2052, - ["map_player_has_level_X_enfeeble"]=2048, - ["map_player_has_level_X_flammability"]=2055, - ["map_player_has_level_X_frostbite"]=2056, - ["map_player_has_level_X_punishment"]=2054, - ["map_player_has_level_X_silence"]=2059, - ["map_player_has_level_X_temporal_chains"]=2050, - ["map_player_has_level_X_vulnerability"]=2047, - ["map_player_has_random_level_X_curse_every_10_seconds"]=8053, - ["map_player_life_and_es_recovery_speed_+%_final"]=8054, - ["map_player_life_loss_per_second_in_hellscape"]=1050, - ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8055, - ["map_player_lose_no_experience_on_death"]=8056, - ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=8057, - ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=8058, - ["map_player_movement_speed_+%_final_in_hellscape"]=1051, - ["map_player_movement_velocity_+%"]=8059, - ["map_player_no_regeneration"]=2060, - ["map_player_non_curse_aura_effect_+%"]=8060, - ["map_player_onslaught_on_kill_%"]=8061, - ["map_player_projectile_damage_+%_final"]=2063, - ["map_player_shrine_buff_effect_on_self_+%"]=8062, - ["map_player_shrine_effect_duration_+%"]=8063, - ["map_player_soul_eater_souls_stolen_on_rare_kill"]=8064, - ["map_player_speed_+%_final_per_recent_skill_use"]=8065, - ["map_player_status_recovery_speed_+%"]=2062, - ["map_players_additional_number_of_projectiles"]=2085, - ["map_players_and_monsters_chaos_damage_taken_+%"]=8066, - ["map_players_and_monsters_cold_damage_taken_+%"]=8067, - ["map_players_and_monsters_critical_strike_chance_+%"]=8068, - ["map_players_and_monsters_curses_are_reflected"]=8069, - ["map_players_and_monsters_damage_+%_per_curse"]=8070, - ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8071, - ["map_players_and_monsters_fire_damage_taken_+%"]=8072, - ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8073, - ["map_players_and_monsters_have_resolute_technique"]=8074, - ["map_players_and_monsters_lightning_damage_taken_+%"]=8075, - ["map_players_and_monsters_movement_speed_+%"]=8076, - ["map_players_and_monsters_physical_damage_taken_+%"]=8077, - ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8078, - ["map_players_armour_+%_final"]=8079, - ["map_players_block_chance_+%"]=8080, - ["map_players_cannot_gain_endurance_charges"]=8081, - ["map_players_cannot_gain_flask_charges"]=8082, - ["map_players_cannot_gain_frenzy_charges"]=8083, - ["map_players_cannot_gain_power_charges"]=8084, - ["map_players_cannot_take_reflected_damage"]=8085, - ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8086, - ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8087, - ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8088, - ["map_players_gain_onslaught_during_flask_effect"]=8089, - ["map_players_gain_rampage_stacks"]=2313, - ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8090, - ["map_players_gain_rare_monster_mods_on_kill_ms"]=3039, - ["map_players_gain_soul_eater_on_rare_kill_ms"]=3041, - ["map_players_have_decay_rarity_buff"]=8091, - ["map_players_have_point_blank"]=8092, - ["map_players_movement_skills_cooldown_speed_+%"]=8093, - ["map_players_movement_speed_+%"]=8094, - ["map_players_no_regeneration_including_es"]=8095, - ["map_players_resist_all_%"]=8096, - ["map_players_skill_area_of_effect_+%_final"]=8097, - ["map_portals_do_not_expire"]=8098, - ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8099, - ["map_possessed_monsters_drop_map_chance_%"]=8100, - ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8101, - ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8102, - ["map_possessed_monsters_drop_unique_chance_%"]=8103, - ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8104, - ["map_prefix_mod_effect_+%_final"]=8105, - ["map_projectile_speed_+%"]=2064, - ["map_rampage_time_+%"]=8106, - ["map_random_unique_monster_is_possessed"]=8107, - ["map_random_zana_mod"]=8108, - ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8109, - ["map_rare_breach_monsters_drop_additional_shards"]=8110, - ["map_rare_chest_amount_+%"]=1955, - ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=8111, - ["map_rare_monster_life_regeneration_rate_per_minute_%"]=3861, - ["map_rare_monster_num_additional_modifiers"]=8112, - ["map_rare_monster_potency_+%"]=8113, - ["map_rare_monsters_are_hindered"]=8114, - ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8115, - ["map_rare_monsters_drop_x_additional_rare_items"]=8116, - ["map_rare_monsters_have_inner_treasure"]=8117, - ["map_reliquary_set"]=8118, - ["map_ritual_additional_reward_rerolls"]=8119, - ["map_ritual_defer_reward_tribute_cost_+%"]=8120, - ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=8121, - ["map_ritual_magic_monsters_+%"]=8122, - ["map_ritual_number_of_free_rerolls"]=8123, - ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=8124, - ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=8125, - ["map_ritual_omen_chance_+%"]=8126, - ["map_ritual_rare_monsters_+%"]=8127, - ["map_ritual_rewards_reroll_cost_+%_final"]=8128, - ["map_ritual_tribute_+%"]=8129, - ["map_ritual_uber_rune_type_weighting_+%"]=8130, - ["map_ritual_unlimited_reward_rerolls"]=8131, - ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8132, - ["map_rogue_exile_chance_%"]=8134, - ["map_rogue_exile_chance_+%"]=8133, - ["map_rogue_exile_drop_skill_gem_with_quality"]=8135, - ["map_rogue_exiles_are_doubled"]=8136, - ["map_rogue_exiles_damage_+%"]=8137, - ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8138, - ["map_rogue_exiles_drop_x_additional_jewels"]=8139, - ["map_rogue_exiles_dropped_items_are_corrupted"]=8140, - ["map_rogue_exiles_dropped_items_are_duplicated"]=8141, - ["map_rogue_exiles_dropped_items_are_fully_linked"]=8142, - ["map_rogue_exiles_maximum_life_+%"]=8143, - ["map_shaper_rare_chance_+%"]=8144, - ["map_shrine_chance_%"]=8146, - ["map_shrine_chance_+%"]=8145, - ["map_shrine_granted_player_buff_duration_+%"]=8147, - ["map_shrine_granted_player_buff_effect_+%"]=8148, - ["map_shrine_monster_life_+%_final"]=8149, - ["map_shrines_are_darkshrines"]=2032, - ["map_shrines_drop_x_currency_items_on_activation"]=8150, - ["map_shrines_grant_a_random_additional_effect"]=8151, - ["map_simulacrum_reward_level_+"]=8152, - ["map_size_+%"]=1972, - ["map_spawn_affliction_mirror"]=8153, - ["map_spawn_bestiary_encounters"]=8154, - ["map_spawn_betrayals"]=2307, - ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8155, - ["map_spawn_cadiro_%_chance"]=8156, - ["map_spawn_exile_per_area_%"]=2304, - ["map_spawn_extra_exiles"]=2029, - ["map_spawn_extra_perandus_chests"]=8157, - ["map_spawn_extra_talismans"]=2036, - ["map_spawn_extra_torment_spirits"]=2038, - ["map_spawn_extra_warbands"]=2030, - ["map_spawn_harbingers"]=2033, - ["map_spawn_heist_smugglers_cache"]=8158, - ["map_spawn_perandus_chests"]=2035, - ["map_spawn_talismans"]=2034, - ["map_spawn_tormented_spirits"]=2310, - ["map_spawn_two_bosses"]=2118, - ["map_spawn_x_additional_heist_smugglers_caches"]=8159, - ["map_spawn_x_random_map_bosses"]=8160, - ["map_spymaster_increased_effect_of_incursion_temple_rooms"]=8161, - ["map_stone_circle_chance_%"]=8162, - ["map_storm_area_of_effect_+%"]=8163, - ["map_strongbox_chain_length"]=99, - ["map_strongbox_chance_%"]=8164, - ["map_strongbox_chance_+%"]=8165, - ["map_strongbox_items_dropped_are_mirrored"]=8166, - ["map_strongbox_monsters_attack_speed_+%"]=8167, - ["map_strongbox_monsters_damage_+%"]=130, - ["map_strongbox_monsters_item_quantity_+%"]=8168, - ["map_strongbox_monsters_life_+%"]=123, - ["map_strongboxes_additional_pack_chance_%"]=119, - ["map_strongboxes_are_corrupted"]=8169, - ["map_strongboxes_at_least_rare"]=8170, - ["map_strongboxes_drop_x_additional_rare_items"]=8171, - ["map_strongboxes_minimum_rarity"]=8172, - ["map_strongboxes_vaal_orb_drop_chance_%"]=7881, - ["map_suffix_mod_effect_+%_final"]=8173, - ["map_synthesis_league"]=8174, - ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8175, - ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8176, - ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8177, - ["map_synthesis_spawn_additional_magic_ambush_chest"]=8178, - ["map_synthesis_spawn_additional_normal_ambush_chest"]=8179, - ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8180, - ["map_synthesis_spawn_additional_rare_ambush_chest"]=8181, - ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8182, - ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8183, - ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8184, - ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8185, - ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8186, - ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8187, - ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8188, - ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8189, - ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8190, - ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8191, - ["map_synthesised_magic_monster_drop_additional_currency"]=8192, - ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8193, - ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8194, - ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8195, - ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8196, - ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8197, - ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8198, - ["map_synthesised_magic_monster_map_drop_chance_+%"]=8199, - ["map_synthesised_magic_monster_slain_experience_+%"]=8200, - ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8201, - ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8202, - ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8203, - ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8204, - ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8205, - ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8206, - ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8207, - ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8208, - ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8209, - ["map_synthesised_monster_dropped_item_quantity_+%"]=8210, - ["map_synthesised_monster_dropped_item_rarity_+%"]=8211, - ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8212, - ["map_synthesised_monster_items_drop_corrupted_%"]=8213, - ["map_synthesised_monster_map_drop_chance_+%"]=8214, - ["map_synthesised_monster_pack_size_+%"]=8215, - ["map_synthesised_monster_slain_experience_+%"]=8216, - ["map_synthesised_monster_unique_item_drop_chance_+%"]=8217, - ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8218, - ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8219, - ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8220, - ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8221, - ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8222, - ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8223, - ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8224, - ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8225, - ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8226, - ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8227, - ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8228, - ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8229, - ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8230, - ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8231, - ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8232, - ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8233, - ["map_synthesised_rare_monster_drop_additional_currency"]=8234, - ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8235, - ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8236, - ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8237, - ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8238, - ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8239, - ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8240, - ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8241, - ["map_synthesised_rare_monster_map_drop_chance_+%"]=8242, - ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8243, - ["map_synthesised_rare_monster_slain_experience_+%"]=8244, - ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8245, - ["map_talismans_dropped_as_rare"]=8246, - ["map_talismans_higher_tier"]=8247, - ["map_tempest_area_of_effect_+%_visible"]=8248, - ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2012, - ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2008, - ["map_tempest_corruption_weight"]=8249, - ["map_tempest_display_prefix"]=31, - ["map_tempest_display_suffix"]=32, - ["map_tempest_frequency_+%"]=8250, - ["map_tempest_ground_ice"]=2009, - ["map_tempest_ground_lightning"]=2010, - ["map_tempest_ground_tar_movement_speed_+%"]=2011, - ["map_tempest_radiant_weight"]=8251, - ["map_temporal_chains_curse_zones"]=2051, - ["map_thaumaturge_increased_effect_of_incursion_temple_rooms"]=8252, - ["map_tormented_spirit_chance_%"]=8253, - ["map_tormented_spirit_chance_+%"]=8254, - ["map_tormented_spirits_drop_x_additional_rare_items"]=8255, - ["map_tormented_spirits_duration_+%"]=8256, - ["map_tormented_spirits_movement_speed_+%"]=8257, - ["map_tower_augment_quantity_+%"]=8258, - ["map_uber_map_player_damage_cycle"]=8259, - ["map_unique_boss_drops_divination_cards"]=8260, - ["map_unique_boss_num_additional_modifiers"]=8261, - ["map_unique_item_drop_chance_+%"]=8262, - ["map_unique_monster_num_additional_modifiers"]=8263, - ["map_unique_monster_potency_+%"]=8264, - ["map_unique_monsters_drop_corrupted_items"]=8265, - ["map_upgrade_pack_to_magic_%_chance"]=8266, - ["map_upgrade_pack_to_rare_%_chance"]=8267, - ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8268, - ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8269, - ["map_vaal_monster_items_drop_corrupted_%"]=8270, - ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8271, - ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8272, - ["map_vaal_temple_spawn_additional_vaal_vessels"]=8273, - ["map_vaal_vessel_drop_X_divination_cards"]=8274, - ["map_vaal_vessel_drop_X_fossils"]=8275, - ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8276, - ["map_vaal_vessel_drop_X_mortal_fragments"]=8277, - ["map_vaal_vessel_drop_X_prophecies"]=8278, - ["map_vaal_vessel_drop_X_rare_temple_items"]=8279, - ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8280, - ["map_vaal_vessel_drop_X_vaal_orbs"]=8281, - ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8282, - ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8283, - ["map_vaal_vessel_item_drop_quantity_+%"]=8284, - ["map_vaal_vessel_item_drop_rarity_+%"]=8285, - ["map_warbands_packs_have_additional_elites"]=8286, - ["map_warbands_packs_have_additional_grunts"]=8287, - ["map_warbands_packs_have_additional_supports"]=8288, - ["map_watchstone_additional_packs_of_elder_monsters"]=8289, - ["map_watchstone_additional_packs_of_shaper_monsters"]=8290, - ["map_watchstone_monsters_damage_+%_final"]=8291, - ["map_watchstone_monsters_life_+%_final"]=8292, - ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=124, - ["map_weapon_and_shields_drop_fractured_%_chance"]=125, - ["map_weapon_and_shields_drop_fully_linked_%_chance"]=126, - ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=127, - ["map_weapons_drop_animated"]=2692, - ["maps_with_powerful_bosses_additional_essence_+"]=8293, - ["maps_with_powerful_bosses_additional_shrine_+"]=8294, - ["maps_with_powerful_bosses_additional_spirit_+"]=8295, - ["maps_with_powerful_bosses_additional_strongbox_+"]=8296, - ["marauder_hidden_ascendancy_damage_+%_final"]=8297, - ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8298, - ["mark_effect_+%"]=2292, - ["mark_grants_%_max_glory_to_random_skill_on_activate"]=8299, - ["mark_skill_duration_+%"]=8300, - ["mark_skill_mana_cost_+%"]=8301, - ["mark_use_speed_+%"]=1895, - ["marked_enemies_cannot_deal_critical_strikes"]=8302, - ["marked_enemies_cannot_regenerate_life"]=8303, - ["marked_enemy_accuracy_rating_+%"]=8304, - ["marked_enemy_damage_taken_+%"]=8305, - ["marks_avoid_consumption_when_first_activated"]=8306, - ["marks_you_inflict_remain_after_death"]=8307, - ["master_of_elements_evasion_rating_+%_final"]=8308, - ["maven_fight_layout_override"]=8309, - ["max_adaptations_+"]=1381, - ["max_chance_to_block_attacks_if_not_blocked_recently"]=8310, - ["max_charged_attack_stacks"]=3797, - ["max_endurance_charges"]=1510, - ["max_fortification_+1_per_5"]=8311, - ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10019, - ["max_fortification_while_focused_+1_per_5"]=8312, - ["max_fortification_while_stationary_+1_per_5"]=8313, - ["max_frenzy_charges"]=1515, - ["max_life_%_as_mana"]=8314, - ["max_life_%_as_spirit"]=8315, - ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8316, - ["max_power_charges"]=1520, - ["max_rage_+_per_glory_skill_used_in_last_6_seconds"]=8317, - ["max_steel_ammo"]=8318, - ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1523, - ["maximum_added_chaos_damage_if_have_crit_recently"]=8427, - ["maximum_added_chaos_damage_per_curse_on_enemy"]=8428, - ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8429, - ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8430, - ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8431, - ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8432, - ["maximum_added_cold_damage_if_have_crit_recently"]=8433, - ["maximum_added_cold_damage_per_frenzy_charge"]=3843, - ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8434, - ["maximum_added_cold_damage_vs_chilled_enemies"]=8435, - ["maximum_added_cold_damage_while_affected_by_hatred"]=8436, - ["maximum_added_cold_damage_while_you_have_avians_might"]=8437, - ["maximum_added_fire_attack_damage_per_active_buff"]=1174, - ["maximum_added_fire_damage_if_blocked_recently"]=3845, - ["maximum_added_fire_damage_if_have_crit_recently"]=8438, - ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8439, - ["maximum_added_fire_damage_per_active_buff"]=1176, - ["maximum_added_fire_damage_per_endurance_charge"]=8440, - ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8441, - ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8442, - ["maximum_added_fire_damage_vs_ignited_enemies"]=1173, - ["maximum_added_fire_spell_damage_per_active_buff"]=1175, - ["maximum_added_lightning_damage_if_have_crit_recently"]=8443, - ["maximum_added_lightning_damage_per_10_int"]=8319, - ["maximum_added_lightning_damage_per_power_charge"]=8444, - ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8445, - ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8446, - ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8447, - ["maximum_added_lightning_damage_while_you_have_avians_might"]=8448, - ["maximum_added_physical_damage_if_have_crit_recently"]=8449, - ["maximum_added_physical_damage_per_endurance_charge"]=8450, - ["maximum_added_physical_damage_per_impaled_on_enemy"]=8451, - ["maximum_added_physical_damage_vs_bleeding_enemies"]=2188, - ["maximum_added_physical_damage_vs_frozen_enemies"]=1172, - ["maximum_added_physical_damage_vs_poisoned_enemies"]=8452, - ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8453, - ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=8454, - ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=8455, - ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1518, - ["maximum_arrow_fire_damage_added_for_each_pierce"]=4335, - ["maximum_blitz_charges"]=8320, - ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8321, - ["maximum_blood_scythe_charges"]=3936, - ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1513, - ["maximum_caltrops_allowed"]=8322, - ["maximum_challenger_charges"]=8323, - ["maximum_chance_to_evade_is_50%"]=8324, - ["maximum_chaos_damage_to_return_to_melee_attacker"]=1883, - ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8326, - ["maximum_cold_damage_resistance_+%_while_shapeshifted"]=8325, - ["maximum_cold_damage_to_return_to_melee_attacker"]=1881, - ["maximum_cold_infusion_stacks"]=8327, - ["maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed"]=8328, - ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8329, - ["maximum_critical_strike_chance"]=2427, - ["maximum_critical_strike_chance_is_%_from_support_garukhans_resolve"]=8330, - ["maximum_darkness_+%"]=8331, - ["maximum_divine_charges"]=3969, - ["maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently"]=8332, - ["maximum_endurance_charges_+_if_you_have_at_least_100_tribute"]=8333, - ["maximum_endurance_charges_+_while_affected_by_determination"]=8334, - ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1511, - ["maximum_energy_shield_%_lost_on_kill"]=1468, - ["maximum_energy_shield_+%"]=892, - ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1408, - ["maximum_energy_shield_+%_per_10_tribute"]=8335, - ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8336, - ["maximum_energy_shield_+_per_100_life_reserved"]=1392, - ["maximum_energy_shield_+_per_5_armour_on_shield"]=3959, - ["maximum_energy_shield_+_per_5_strength"]=3369, - ["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=1393, - ["maximum_energy_shield_from_body_armour_+%"]=8337, - ["maximum_es_+%_per_equipped_corrupted_item"]=2740, - ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2672, - ["maximum_fanaticism_charges"]=8338, - ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8341, - ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8339, - ["maximum_fire_damage_resistance_+%_while_shapeshifted"]=8340, - ["maximum_fire_damage_to_return_to_melee_attacker"]=1880, - ["maximum_fire_infusion_stacks"]=8342, - ["maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed"]=8343, - ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8344, - ["maximum_frenzy_charges_+_if_you_have_at_least_100_tribute"]=8345, - ["maximum_frenzy_charges_+_while_affected_by_grace"]=8346, - ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1516, - ["maximum_frenzy_power_endurance_charges"]=8347, - ["maximum_intensify_stacks"]=8349, - ["maximum_life_%_lost_on_kill"]=1466, - ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8356, - ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"]=8350, - ["maximum_life_%_to_gain_as_armour"]=8357, - ["maximum_life_%_to_gain_as_maximum_energy_shield"]=8358, - ["maximum_life_+%"]=894, - ["maximum_life_+%_and_fire_resistance_-%"]=1406, - ["maximum_life_+%_for_corpses_you_create"]=8359, - ["maximum_life_+%_if_10_red_supports_socketed"]=8351, - ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8360, - ["maximum_life_+%_if_you_have_at_least_100_tribute"]=8352, - ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8361, - ["maximum_life_+%_per_equipped_corrupted_item"]=2739, - ["maximum_life_+%_per_stackable_unique_jewel"]=3741, - ["maximum_life_mana_and_energy_shield_+%"]=1395, - ["maximum_life_per_10_dexterity"]=8353, - ["maximum_life_per_10_intelligence"]=8354, - ["maximum_life_per_10_levels"]=2441, - ["maximum_life_per_2%_increased_item_found_rarity"]=8355, - ["maximum_life_per_equipped_elder_item"]=3919, - ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2671, - ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8363, - ["maximum_lightning_damage_resistance_+%_while_shapeshifted"]=8362, - ["maximum_lightning_damage_to_return_on_block"]=2282, - ["maximum_lightning_damage_to_return_to_melee_attacker"]=1882, - ["maximum_lightning_infusion_stacks"]=8364, - ["maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed"]=8365, - ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8366, - ["maximum_mana_%_gained_on_kill"]=1467, - ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=8369, - ["maximum_mana_+%"]=896, - ["maximum_mana_+%_and_cold_resistance_-%"]=1407, - ["maximum_mana_+%_if_10_blue_supports_socketed"]=8367, - ["maximum_mana_+%_if_you_have_at_least_100_tribute"]=8368, - ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8370, - ["maximum_number_of_blades_left_in_ground"]=8371, - ["maximum_physical_attack_damage_on_crit_+%_final"]=8372, - ["maximum_physical_damage_reduction_%"]=1383, - ["maximum_physical_damage_reduction_is_50%"]=8373, - ["maximum_physical_damage_to_reflect_to_self_on_attack"]=1878, - ["maximum_physical_damage_to_return_on_block"]=2281, - ["maximum_physical_damage_to_return_to_melee_attacker"]=1879, - ["maximum_power_and_endurance_charges_+"]=8374, - ["maximum_power_and_frenzy_charges_+"]=1521, - ["maximum_power_charges_+_if_you_have_at_least_100_tribute"]=8375, - ["maximum_power_charges_+_while_affected_by_discipline"]=8376, - ["maximum_rage"]=9056, - ["maximum_rage_+_while_shapeshifted"]=8377, - ["maximum_rage_+_while_wielding_axe"]=8378, - ["maximum_rage_per_50_tribute"]=8379, - ["maximum_rage_per_equipped_one_handed_sword"]=8380, - ["maximum_random_movement_velocity_+%_when_hit"]=8381, - ["maximum_spirit_charges_per_abyss_jewel_equipped"]=3962, - ["maximum_virulence_stacks"]=8382, - ["maximum_void_arrows"]=3937, - ["maximum_volatility_allowed"]=8383, - ["melee_ancestor_totem_damage_+%"]=3222, - ["melee_ancestor_totem_elemental_resistance_%"]=3695, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3390, - ["melee_ancestor_totem_placement_speed_+%"]=3559, - ["melee_attack_number_of_spirit_strikes"]=8384, - ["melee_attack_skills_additional_totems_allowed"]=8385, - ["melee_attack_speed_+%"]=1273, - ["melee_attacks_number_of_additional_projectiles"]=3774, - ["melee_attacks_usable_without_mana_cost"]=2370, - ["melee_cold_damage_+%"]=1678, - ["melee_cold_damage_+%_while_fortify_is_active"]=1966, - ["melee_cold_damage_+%_while_holding_shield"]=1681, - ["melee_critical_strike_chance_+%"]=1335, - ["melee_critical_strike_chance_+%_if_warcried_recently"]=8386, - ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8387, - ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1356, - ["melee_damage_+%"]=1148, - ["melee_damage_+%_at_close_range"]=8391, - ["melee_damage_+%_during_flask_effect"]=8392, - ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8388, - ["melee_damage_+%_per_endurance_charge"]=3754, - ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8393, - ["melee_damage_+%_vs_burning_enemies"]=1153, - ["melee_damage_+%_vs_frozen_enemies"]=1149, - ["melee_damage_+%_vs_heavy_stunned_enemies"]=8394, - ["melee_damage_+%_vs_immobilised_enemies"]=8389, - ["melee_damage_+%_vs_shocked_enemies"]=1151, - ["melee_damage_+%_when_on_full_life"]=2326, - ["melee_damage_+%_while_fortified"]=3824, - ["melee_damage_+%_with_spears_while_surrounded"]=8390, - ["melee_damage_taken_%_to_deal_to_attacker"]=2392, - ["melee_damage_taken_+%"]=2428, - ["melee_damage_vs_bleeding_enemies_+%"]=2186, - ["melee_fire_damage_+%"]=1677, - ["melee_fire_damage_+%_while_holding_shield"]=1680, - ["melee_hit_damage_stun_multiplier_+%"]=8395, - ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8396, - ["melee_hits_grant_rampage_stacks"]=10041, - ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8397, - ["melee_physical_damage_+%"]=1676, - ["melee_physical_damage_+%_per_10_dexterity"]=8398, - ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8399, - ["melee_physical_damage_+%_vs_ignited_enemies"]=3892, - ["melee_physical_damage_+%_while_fortify_is_active"]=1967, - ["melee_physical_damage_+%_while_holding_shield"]=1679, - ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2153, - ["melee_range_+"]=2227, - ["melee_range_+_while_at_least_5_enemies_nearby"]=8400, - ["melee_range_+_while_dual_wielding"]=8402, - ["melee_range_+_while_unarmed"]=2722, - ["melee_range_+_while_wielding_shield"]=8401, - ["melee_range_+_with_axe"]=8403, - ["melee_range_+_with_claw"]=8404, - ["melee_range_+_with_dagger"]=8405, - ["melee_range_+_with_flail"]=8406, - ["melee_range_+_with_mace"]=8407, - ["melee_range_+_with_one_handed"]=8408, - ["melee_range_+_with_spear"]=8409, - ["melee_range_+_with_staff"]=8410, - ["melee_range_+_with_sword"]=8411, - ["melee_range_+_with_two_handed"]=8412, - ["melee_skill_gem_level_+"]=952, - ["melee_skills_area_of_effect_+%"]=8413, - ["melee_splash"]=1091, - ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8414, - ["melee_strike_skill_strike_previous_location"]=8415, - ["melee_weapon_critical_strike_multiplier_+"]=1354, - ["melee_weapon_range_+_if_you_have_killed_recently"]=8416, - ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8417, - ["melee_weapon_range_+_while_fortified"]=8418, - ["memory_line_abyss_scourge_spawn_boss_chance_%"]=100, - ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=111, - ["memory_line_big_harvest"]=101, - ["memory_line_breach_boss_spawn_chance_%"]=112, - ["memory_line_breach_covers_map"]=84, - ["memory_line_essence_monster_number_of_essences"]=102, - ["memory_line_maximum_possessions_of_rare_unique_monsters"]=103, - ["memory_line_minimum_possessions_of_rare_unique_monsters"]=85, - ["memory_line_num_harvest_plots"]=86, - ["memory_line_number_of_abyss_scourge_cracks"]=87, - ["memory_line_number_of_breaches"]=88, - ["memory_line_number_of_essences"]=89, - ["memory_line_number_of_large_breach_chests"]=104, - ["memory_line_number_of_pantheon_shrines"]=3887, - ["memory_line_number_of_shrines"]=3886, - ["memory_line_number_of_strongboxes"]=90, - ["memory_line_player_is_harbinger"]=91, - ["memory_line_strongboxes_chance_to_be_operatives_%"]=113, - ["mine_%_chance_to_detonate_twice"]=8424, - ["mine_area_damage_+%_if_detonated_mine_recently"]=8419, - ["mine_area_of_effect_+%"]=8420, - ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8421, - ["mine_arming_speed_+%"]=3805, - ["mine_aura_effect_+%"]=8422, - ["mine_critical_strike_chance_+%"]=1331, - ["mine_critical_strike_multiplier_+"]=1357, - ["mine_damage_+%"]=1115, - ["mine_damage_penetrates_%_elemental_resistance"]=2462, - ["mine_detonation_is_instant"]=2460, - ["mine_detonation_radius_+%"]=1620, - ["mine_detonation_speed_+%"]=8423, - ["mine_duration_+%"]=1617, - ["mine_extra_uses"]=2680, - ["mine_laying_speed_+%"]=1622, - ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3083, - ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8425, - ["mines_invulnerable"]=8426, - ["mines_invulnerable_for_duration_ms"]=2465, - ["minimum_added_chaos_damage_if_have_crit_recently"]=8427, - ["minimum_added_chaos_damage_per_curse_on_enemy"]=8428, - ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8429, - ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8430, - ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8431, - ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8432, - ["minimum_added_cold_damage_if_have_crit_recently"]=8433, - ["minimum_added_cold_damage_per_frenzy_charge"]=3843, - ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8434, - ["minimum_added_cold_damage_vs_chilled_enemies"]=8435, - ["minimum_added_cold_damage_while_affected_by_hatred"]=8436, - ["minimum_added_cold_damage_while_you_have_avians_might"]=8437, - ["minimum_added_fire_attack_damage_per_active_buff"]=1174, - ["minimum_added_fire_damage_if_blocked_recently"]=3845, - ["minimum_added_fire_damage_if_have_crit_recently"]=8438, - ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8439, - ["minimum_added_fire_damage_per_active_buff"]=1176, - ["minimum_added_fire_damage_per_endurance_charge"]=8440, - ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8441, - ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8442, - ["minimum_added_fire_damage_vs_ignited_enemies"]=1173, - ["minimum_added_fire_spell_damage_per_active_buff"]=1175, - ["minimum_added_lightning_damage_if_have_crit_recently"]=8443, - ["minimum_added_lightning_damage_per_power_charge"]=8444, - ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8445, - ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8446, - ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8447, - ["minimum_added_lightning_damage_while_you_have_avians_might"]=8448, - ["minimum_added_physical_damage_if_have_crit_recently"]=8449, - ["minimum_added_physical_damage_per_endurance_charge"]=8450, - ["minimum_added_physical_damage_per_impaled_on_enemy"]=8451, - ["minimum_added_physical_damage_vs_bleeding_enemies"]=2188, - ["minimum_added_physical_damage_vs_frozen_enemies"]=1172, - ["minimum_added_physical_damage_vs_poisoned_enemies"]=8452, - ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8453, - ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=8454, - ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=8455, - ["minimum_arrow_fire_damage_added_for_each_pierce"]=4335, - ["minimum_chaos_damage_to_return_to_melee_attacker"]=1883, - ["minimum_cold_damage_to_return_to_melee_attacker"]=1881, - ["minimum_endurance_charges_at_devotion_threshold"]=8456, - ["minimum_endurance_charges_per_stackable_unique_jewel"]=3742, - ["minimum_endurance_charges_while_on_low_life_+"]=8457, - ["minimum_fire_damage_to_return_to_melee_attacker"]=1880, - ["minimum_frenzy_charges_at_devotion_threshold"]=8458, - ["minimum_frenzy_charges_per_stackable_unique_jewel"]=3743, - ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=8459, - ["minimum_frenzy_power_endurance_charges"]=8460, - ["minimum_lightning_damage_to_return_on_block"]=2282, - ["minimum_lightning_damage_to_return_to_melee_attacker"]=1882, - ["minimum_physical_attack_damage_on_crit_+%_final"]=8461, - ["minimum_physical_damage_to_reflect_to_self_on_attack"]=1878, - ["minimum_physical_damage_to_return_on_block"]=2281, - ["minimum_physical_damage_to_return_to_melee_attacker"]=1879, - ["minimum_power_charges_at_devotion_threshold"]=8462, - ["minimum_power_charges_per_stackable_unique_jewel"]=3744, - ["minimum_power_charges_while_on_low_life_+"]=8463, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=8540, - ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=8464, - ["minion_1%_area_of_effect_+%_per_X_player_dexterity"]=8465, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"]=8466, - ["minion_1%_damage_+%_per_X_player_strength"]=8467, - ["minion_accuracy_rating"]=8468, - ["minion_accuracy_rating_+%"]=8470, - ["minion_accuracy_rating_per_10_devotion"]=8469, - ["minion_actor_scale_+%"]=8471, - ["minion_additional_base_critical_strike_chance"]=8472, - ["minion_additional_physical_damage_reduction_%"]=1970, - ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=8473, - ["minion_armour_break_physical_damage_%_dealt_as_armour_break"]=8474, - ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=8475, - ["minion_attack_and_cast_speed_+%"]=8477, - ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=8478, - ["minion_attack_and_cast_speed_+%_per_10_devotion"]=8479, - ["minion_attack_and_cast_speed_+%_per_50_tribute"]=8476, - ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=2904, - ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=8480, - ["minion_attack_hits_knockback_chance_%"]=8481, - ["minion_attack_maximum_added_physical_damage"]=3360, - ["minion_attack_minimum_added_physical_damage"]=3360, - ["minion_attack_speed_+%"]=2579, - ["minion_attack_speed_+%_per_50_dex"]=8483, - ["minion_attack_speed_+%_per_rage"]=8482, - ["minion_attacks_chance_to_blind_on_hit_%"]=8484, - ["minion_attacks_chance_to_taunt_on_hit_%"]=3046, - ["minion_base_maximum_cold_damage_resistance_%"]=8485, - ["minion_base_maximum_fire_damage_resistance_%"]=8486, - ["minion_base_maximum_lightning_damage_resistance_%"]=8487, - ["minion_base_physical_damage_%_to_convert_to_chaos"]=1661, - ["minion_base_physical_damage_%_to_convert_to_cold"]=1656, - ["minion_base_physical_damage_%_to_convert_to_fire"]=1654, - ["minion_base_physical_damage_%_to_convert_to_lightning"]=1658, - ["minion_bleed_on_hit_with_attacks_%"]=2184, - ["minion_block_%"]=2576, - ["minion_cannot_crit"]=8488, - ["minion_cast_speed_+%"]=2580, - ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3054, - ["minion_chance_to_deal_double_damage_%"]=8489, - ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=8490, - ["minion_chance_to_freeze_%"]=8491, - ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3000, - ["minion_chance_to_gain_power_charge_on_hit_%"]=8492, - ["minion_chance_to_impale_on_attack_hit_%"]=8493, - ["minion_chance_to_shock_%"]=8494, - ["minion_chaos_resistance_%"]=2583, - ["minion_cold_damage_resistance_%"]=3766, - ["minion_command_skill_cooldown_speed_+%"]=8495, - ["minion_commanded_skill_damage_+%"]=8497, - ["minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence"]=8496, - ["minion_cooldown_recovery_+%"]=8499, - ["minion_cooldown_recovery_+%_per_10_tribute"]=8498, - ["minion_critical_strike_chance_+%"]=8500, - ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=8501, - ["minion_critical_strike_multiplier_+"]=8502, - ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=3745, - ["minion_damage_+%"]=1670, - ["minion_damage_+%_if_enemy_hit_recently"]=8508, - ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1671, - ["minion_damage_+%_per_10_tribute"]=8503, - ["minion_damage_+%_per_5_dex"]=1673, - ["minion_damage_+%_per_active_spectre"]=2906, - ["minion_damage_+%_per_rage"]=8504, - ["minion_damage_+%_vs_abyssal_monsters"]=8509, - ["minion_damage_+%_while_affected_by_a_herald"]=8510, - ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=8505, - ["minion_damage_against_ignited_enemies_+%"]=8506, - ["minion_damage_increases_and_reductions_also_affects_you"]=3898, - ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=8507, - ["minion_damage_taken_%_recouped_as_their_life"]=8511, - ["minion_damage_taken_+%"]=8512, - ["minion_deal_no_non_cold_damage"]=8513, - ["minion_demon_add_fury_charge_on_hit_%"]=8514, - ["minion_demon_attack_speed_+%_per_fury_charge"]=8515, - ["minion_demon_damage_+%_final_per_fury_charge"]=8516, - ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=8517, - ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=8518, - ["minion_demon_maximum_fury_charges"]=8519, - ["minion_duration_+%_per_active_zombie"]=2905, - ["minion_elemental_resistance_%"]=2582, - ["minion_elemental_resistance_30%"]=8520, - ["minion_energy_shield_delay_-%"]=3986, - ["minion_evasion_rating_+%"]=8521, - ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=8522, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=8523, - ["minion_fire_damage_resistance_%"]=8524, - ["minion_flask_charges_used_+%"]=1872, - ["minion_global_always_hit"]=8525, - ["minion_global_maximum_added_chaos_damage"]=3361, - ["minion_global_maximum_added_cold_damage"]=3362, - ["minion_global_maximum_added_fire_damage"]=3363, - ["minion_global_maximum_added_lightning_damage"]=3364, - ["minion_global_maximum_added_physical_damage"]=3365, - ["minion_global_minimum_added_chaos_damage"]=3361, - ["minion_global_minimum_added_cold_damage"]=3362, - ["minion_global_minimum_added_fire_damage"]=3363, - ["minion_global_minimum_added_lightning_damage"]=3364, - ["minion_global_minimum_added_physical_damage"]=3365, - ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=8526, - ["minion_hit_damage_stun_multiplier_+%"]=8527, - ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=3987, - ["minion_larger_aggro_radius"]=10035, - ["minion_life_increased_by_overcapped_fire_resistance"]=8528, - ["minion_life_recovery_rate_+%"]=1475, - ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=2907, - ["minion_life_regeneration_rate_per_minute_%"]=2581, - ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=8529, - ["minion_life_regeneration_rate_per_second"]=8530, - ["minion_lightning_damage_resistance_%"]=3767, - ["minion_maim_on_hit_%"]=8531, - ["minion_malediction_on_hit"]=8532, - ["minion_maximum_all_elemental_resistances_%"]=8533, - ["minion_maximum_energy_shield_+%"]=1477, - ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=3984, - ["minion_maximum_life_%_to_gain_as_maximum_energy_shield"]=8534, - ["minion_maximum_life_+%"]=986, - ["minion_maximum_mana_+%"]=1476, - ["minion_melee_damage_+%"]=8535, - ["minion_minimum_power_charges"]=8536, - ["minion_movement_speed_+%"]=1478, - ["minion_movement_speed_+%_per_50_dex"]=8537, - ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=8538, - ["minion_no_critical_strike_multiplier"]=8539, - ["minion_no_extra_bleeding_damage_while_moving"]=2829, - ["minion_physical_damage_%_to_gain_as_cold"]=3768, - ["minion_physical_damage_%_to_gain_as_fire"]=8541, - ["minion_physical_damage_%_to_gain_as_lightning"]=8542, - ["minion_physical_damage_reduction_rating"]=2577, - ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=8543, - ["minion_projectile_speed_+%"]=8544, - ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=8546, - ["minion_raging_spirit_maximum_life_+%"]=8545, - ["minion_recover_%_maximum_life_on_minion_death"]=8547, - ["minion_recover_%_of_maximum_life_on_block"]=2707, - ["minion_recover_X_life_on_block"]=1473, - ["minion_reservation_+%"]=8549, - ["minion_resistances_equal_yours"]=8550, - ["minion_resummon_speed_+%"]=8553, - ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=8551, - ["minion_resummon_speed_+%_if_you_have_at_least_100_tribute"]=8552, - ["minion_skill_area_of_effect_+%"]=2673, - ["minion_skill_gem_level_+"]=955, - ["minion_skill_mana_cost_+%"]=8554, - ["minion_skill_physical_damage_%_to_convert_to_fire"]=8555, - ["minion_spells_chance_to_hinder_on_hit_%"]=8556, - ["minion_stun_threshold_reduction_+%"]=8557, - ["minion_summoned_recently_attack_and_cast_speed_+%"]=8558, - ["minion_summoned_recently_cannot_be_damaged"]=8559, - ["minion_summoned_recently_movement_speed_+%"]=8560, - ["minion_undead_minions_are_demons_instead"]=8561, - ["minions_%_chance_to_blind_on_hit"]=3733, - ["minions_accuracy_is_equal_to_yours"]=8562, - ["minions_are_gigantic"]=8563, - ["minions_attacks_overwhelm_%_physical_damage_reduction"]=8564, - ["minions_cannot_be_blinded"]=3732, - ["minions_cannot_be_damaged_after_summoned_ms"]=8565, - ["minions_cannot_die_while_affected_by_life_flask"]=1870, - ["minions_cannot_taunt_enemies"]=8566, - ["minions_chance_to_intimidate_on_hit_%"]=8567, - ["minions_chance_to_poison_on_hit_%"]=2814, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=8568, - ["minions_gain_your_dexterity"]=8569, - ["minions_gain_your_strength"]=8570, - ["minions_get_amulet_stats_instead_of_you"]=1875, - ["minions_go_crazy_on_crit_ms"]=8571, - ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=2952, - ["minions_have_%_chance_to_inflict_wither_on_hit"]=8572, - ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=8573, - ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=1833, - ["minions_have_unholy_might"]=8574, - ["minions_hits_can_only_kill_ignited_enemies"]=8575, - ["minions_lose_%_life_when_following_commands_per_10_tribute"]=8576, - ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=8577, - ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=8578, - ["minions_recover_%_maximum_life_when_you_focus"]=8579, - ["minions_reflected_damage_taken_+%"]=8580, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=8581, - ["minions_use_parents_flasks_on_summon"]=1868, - ["mirage_archer_duration_+%"]=8582, - ["mirage_archers_do_not_attach"]=3995, - ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3454, - ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3316, - ["mirror_arrow_cooldown_speed_+%"]=3472, - ["missing_life_%_gained_as_life_before_hit"]=8583, - ["mod_granted_passive_hash"]=8584, - ["mod_granted_passive_hash_2"]=8585, - ["mod_granted_passive_hash_3"]=8586, - ["mod_granted_passive_hash_4"]=8587, - ["mod_granted_passive_hash_essence"]=8588, - ["modifiers_to_attributes_instead_apply_to_ascendance"]=1107, - ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3175, - ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3176, - ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3174, - ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=8589, - ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3195, - ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=8590, - ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1512, - ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1517, - ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1522, - ["modifiers_to_minion_cast_speed_also_affect_you"]=3347, - ["modifiers_to_minion_damage_also_affect_you"]=3345, - ["modifiers_to_minion_life_regeneration_also_affect_you"]=3348, - ["modifiers_to_minion_movement_speed_also_affect_you"]=3349, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=8591, - ["molten_shell_buff_effect_+%"]=3606, - ["molten_shell_damage_+%"]=3304, - ["molten_shell_duration_+%"]=8592, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=8593, - ["molten_strike_chain_count_+"]=8595, - ["molten_strike_damage_+%"]=3238, - ["molten_strike_num_of_additional_projectiles"]=3534, - ["molten_strike_projectiles_chain_when_impacting_ground"]=8594, - ["molten_strike_radius_+%"]=3400, - ["monster_base_block_%"]=1079, - ["monster_dropped_item_quantity_+%"]=18, - ["monster_dropped_item_rarity_+%"]=17, - ["monster_life_+%_final_from_map"]=1397, - ["monster_life_+%_final_from_rarity"]=1396, - ["monster_slain_experience_+%"]=16, - ["mortar_barrage_mine_damage_+%"]=8598, - ["mortar_barrage_mine_num_projectiles"]=8599, - ["mortar_barrage_mine_throwing_speed_+%"]=8601, - ["mortar_barrage_mine_throwing_speed_halved_+%"]=8600, - ["movement_attack_skills_attack_speed_+%"]=8602, - ["movement_skills_cooldown_speed_+%"]=8603, - ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=8604, - ["movement_skills_cost_no_mana"]=3079, - ["movement_skills_deal_no_physical_damage"]=8605, - ["movement_skills_mana_cost_+%"]=3760, - ["movement_speed_+%_against_bloodlusting_enemies"]=8606, - ["movement_speed_+%_during_flask_effect"]=2824, - ["movement_speed_+%_for_4_seconds_on_block"]=2943, - ["movement_speed_+%_if_10_green_supports_socketed"]=8607, - ["movement_speed_+%_if_below_100_dexterity"]=8608, - ["movement_speed_+%_if_crit_recently"]=8619, - ["movement_speed_+%_if_enemy_hit_recently"]=8620, - ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=8621, - ["movement_speed_+%_if_enemy_killed_recently"]=3832, - ["movement_speed_+%_if_have_cast_dash_recently"]=8622, - ["movement_speed_+%_if_have_not_taken_damage_recently"]=8623, - ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=8624, - ["movement_speed_+%_if_pierced_recently"]=3784, - ["movement_speed_+%_if_pinned_enemy_recently"]=8609, - ["movement_speed_+%_if_placed_trap_or_mine_recently"]=8610, - ["movement_speed_+%_if_used_a_mark_recently"]=8625, - ["movement_speed_+%_if_used_a_warcry_recently"]=3758, - ["movement_speed_+%_on_throwing_trap"]=2451, - ["movement_speed_+%_per_chest_opened_recently"]=8626, - ["movement_speed_+%_per_endurance_charge"]=8627, - ["movement_speed_+%_per_nearby_corpse"]=8611, - ["movement_speed_+%_per_nearby_enemy"]=8628, - ["movement_speed_+%_per_poison_up_to_50%"]=8629, - ["movement_speed_+%_per_power_charge"]=8630, - ["movement_speed_+%_while_affected_by_ailment"]=8612, - ["movement_speed_+%_while_affected_by_grace"]=8631, - ["movement_speed_+%_while_bleeding"]=8632, - ["movement_speed_+%_while_dual_wielding"]=8633, - ["movement_speed_+%_while_fortified"]=2944, - ["movement_speed_+%_while_holding_shield"]=8634, - ["movement_speed_+%_while_not_affected_by_status_ailments"]=2935, - ["movement_speed_+%_while_not_using_flask"]=8635, - ["movement_speed_+%_while_off_hand_is_empty"]=8636, - ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=8637, - ["movement_speed_+%_while_on_burning_ground"]=8638, - ["movement_speed_+%_while_poisoned"]=8639, - ["movement_speed_+%_while_surrounded"]=8613, - ["movement_speed_+%_while_using_charm"]=8640, - ["movement_speed_+%_while_you_have_cats_stealth"]=8641, - ["movement_speed_+%_while_you_have_energy_shield"]=8642, - ["movement_speed_+%_while_you_have_storm_barrier_support"]=8643, - ["movement_speed_+%_while_you_have_two_linked_targets"]=8614, - ["movement_speed_bonus_when_throwing_trap_ms"]=2451, - ["movement_speed_cannot_be_reduced_below_base"]=2833, - ["movement_speed_is_equal_to_highest_linked_party_member"]=8615, - ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=8616, - ["movement_speed_penalty_+%_while_performing_action"]=8618, - ["movement_velocity_+%_on_full_energy_shield"]=2627, - ["movement_velocity_+%_per_frenzy_charge"]=1508, - ["movement_velocity_+%_per_poison_stack"]=8644, - ["movement_velocity_+%_per_shock"]=2485, - ["movement_velocity_+%_per_totem"]=8646, - ["movement_velocity_+%_when_on_full_life"]=1506, - ["movement_velocity_+%_when_on_low_life"]=1505, - ["movement_velocity_+%_when_on_shocked_ground"]=1834, - ["movement_velocity_+%_while_at_maximum_power_charges"]=8647, - ["movement_velocity_+%_while_chilled"]=8648, - ["movement_velocity_+%_while_cursed"]=2315, - ["movement_velocity_+%_while_ignited"]=2484, - ["movement_velocity_+%_while_phasing"]=2303, - ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=8645, - ["movement_velocity_+1%_per_X_evasion_rating"]=2361, - ["movement_velocity_while_not_hit_+%"]=2859, - ["nearby_allies_have_onslaught"]=8649, - ["nearby_enemies_all_exposure_%_while_phasing"]=8650, - ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=8651, - ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=8652, - ["nearby_enemies_are_crushed_while_you_have_X_rage"]=8653, - ["nearby_enemies_are_intimidated_while_you_have_rage"]=8654, - ["nearby_enemies_chilled_on_block"]=3841, - ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=8656, - ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=8657, - ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=8658, - ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=8659, - ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3088, - ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=8660, - ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=8661, - ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=8662, - ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=8663, - ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=8664, - ["necrotic_footprints_from_item"]=8665, - ["never_freeze"]=2257, - ["never_freeze_or_chill"]=2258, - ["never_ignite"]=2256, - ["never_ignite_chill_freeze_shock"]=8666, - ["never_shock"]=2259, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2783, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2782, - ["next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy"]=8667, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=8668, - ["no_critical_strike_multiplier"]=1364, - ["no_energy_shield"]=1854, - ["no_energy_shield_recharge_or_regeneration"]=2359, - ["no_evasion_rating"]=1855, - ["no_extra_bleeding_damage_while_moving"]=2830, - ["no_inherent_chance_to_block_while_dual_wielding"]=8669, - ["no_inherent_mana_regeneration"]=8670, - ["no_inherent_rage_loss"]=8671, - ["no_life_regeneration"]=1968, - ["no_mana_regeneration"]=1969, - ["no_mana_regeneration_if_not_crit_recently"]=8672, - ["no_maximum_power_charges"]=2665, - ["no_movement_penalty_while_shield_is_raised"]=8673, - ["no_physical_damage_reduction_rating"]=1853, - ["non_aura_hexes_gain_20%_effect_per_second"]=8674, - ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=8675, - ["non_channelling_spells_cost_x%_of_your_energy_shield"]=8676, - ["non_channelling_spells_deal_x%_more_damage"]=8677, - ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=8678, - ["non_critical_damage_multiplier_+%"]=2399, - ["non_critical_strikes_deal_no_damage"]=8679, - ["non_critical_strikes_penetrate_elemental_resistances_%"]=3160, - ["non_curse_aura_effect_+%"]=3169, - ["non_curse_aura_effect_+%_per_10_devotion"]=8680, - ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=8681, - ["non_cursed_enemies_you_curse_gain_x_withered_stacks"]=8682, - ["non_damaging_ailment_effect_+%"]=8683, - ["non_damaging_ailment_effect_+%_on_self"]=8684, - ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=8685, - ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=3920, - ["non_damaging_ailment_effect_+%_per_10_devotion"]=8686, - ["non_damaging_ailment_effect_+%_with_critical_strikes"]=8687, - ["non_damaging_ailments_as_though_damage_+%_final"]=8688, - ["non_damaging_ailments_reflected_to_self"]=8689, - ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=3925, - ["non_piercing_projectiles_critical_strike_chance_+%"]=8690, - ["non_projectile_chaining_lightning_skill_additional_chains"]=8691, - ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=8692, - ["non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance"]=8693, - ["non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed"]=8694, - ["non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed"]=8695, - ["non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed"]=8696, - ["non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed"]=8697, - ["non_skill_base_all_damage_%_to_gain_as_chaos"]=1626, - ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=8698, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=8699, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_spells"]=8700, - ["non_skill_base_all_damage_%_to_gain_as_cold"]=873, - ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=8715, - ["non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently"]=8701, - ["non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill"]=8702, - ["non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted"]=8703, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=8716, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks"]=8704, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells"]=874, - ["non_skill_base_all_damage_%_to_gain_as_fire"]=871, - ["non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently"]=8705, - ["non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds"]=8706, - ["non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently"]=8707, - ["non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn"]=8708, - ["non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted"]=8709, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=8717, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_spells"]=872, - ["non_skill_base_all_damage_%_to_gain_as_lightning"]=875, - ["non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently"]=8710, - ["non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock"]=8711, - ["non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted"]=8712, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=8718, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells"]=876, - ["non_skill_base_all_damage_%_to_gain_as_physical"]=1625, - ["non_skill_base_all_damage_%_to_gain_as_random_element"]=8713, - ["non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted"]=8714, - ["non_skill_base_cold_damage_%_to_convert_to_chaos"]=1667, - ["non_skill_base_cold_damage_%_to_convert_to_fire"]=1665, - ["non_skill_base_cold_damage_%_to_convert_to_lightning"]=1666, - ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=1636, - ["non_skill_base_cold_damage_%_to_gain_as_fire"]=1635, - ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=8722, - ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=8723, - ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=8724, - ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=8725, - ["non_skill_base_elemental_damage_%_to_gain_as_chaos"]=1638, - ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=8719, - ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=8720, - ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=8721, - ["non_skill_base_fire_damage_%_to_convert_to_chaos"]=1668, - ["non_skill_base_fire_damage_%_to_convert_to_cold"]=8726, - ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=8727, - ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=1637, - ["non_skill_base_lightning_damage_%_to_convert_to_chaos"]=1664, - ["non_skill_base_lightning_damage_%_to_convert_to_cold"]=1663, - ["non_skill_base_lightning_damage_%_to_convert_to_fire"]=1662, - ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=1634, - ["non_skill_base_lightning_damage_%_to_gain_as_cold"]=1633, - ["non_skill_base_lightning_damage_%_to_gain_as_fire"]=1632, - ["non_skill_base_non_chaos_damage_%_to_gain_as_chaos"]=1639, - ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=1660, - ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=8732, - ["non_skill_base_physical_damage_%_to_convert_to_cold"]=1655, - ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=8743, - ["non_skill_base_physical_damage_%_to_convert_to_fire"]=1652, - ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=8745, - ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=1657, - ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=8747, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1659, - ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=1631, - ["non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3078, - ["non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks"]=8733, - ["non_skill_base_physical_damage_%_to_gain_as_cold"]=1629, - ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies"]=8728, - ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies"]=8729, - ["non_skill_base_physical_damage_%_to_gain_as_fire"]=1628, - ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=1630, - ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies"]=8730, - ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies"]=8731, - ["non_skill_base_physical_damage_%_to_gain_as_random_element"]=2597, - ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=8736, - ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=8734, - ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=8735, - ["non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped"]=3922, - ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=8737, - ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=8738, - ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=8739, - ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=8740, - ["non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds"]=3350, - ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=8742, - ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=8744, - ["non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies"]=1865, - ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10117, - ["non_skill_physical_damage_%_to_convert_to_fire_with_bear_skills"]=1653, - ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=8746, - ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=8741, - ["non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies"]=3815, - ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=8748, - ["non_skill_physical_damage_%_to_gain_as_cold_with_attacks"]=3367, - ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=8749, - ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=8750, - ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=8751, - ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=8752, - ["non_skill_physical_damage_%_to_gain_as_fire_with_attacks"]=3366, - ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=8753, - ["non_skill_physical_damage_%_to_gain_as_lightning_with_attacks"]=3368, - ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=8754, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=8755, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=8756, - ["non_travel_attack_skill_repeat_count"]=8757, - ["non_unique_flask_effect_+%"]=2424, - ["normal_monster_dropped_item_quantity_+%"]=8758, - ["notable_knockback_distance_+%_final_for_blocked_hits"]=8759, - ["nova_spells_cast_at_target_location"]=8760, - ["num_additional_skill_slots"]=8761, - ["num_cascade_aftershocks_every_third_slam"]=8762, - ["num_charm_slots"]=8763, - ["num_charm_slots_+_if_you_have_at_least_100_tribute"]=8764, - ["num_of_additional_chains_at_max_frenzy_charges"]=1532, - ["number_of_additional_arrows"]=969, - ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1502, - ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=8765, - ["number_of_additional_banners_allowed"]=8766, - ["number_of_additional_chains_for_projectiles_while_phasing"]=8767, - ["number_of_additional_clones"]=2730, - ["number_of_additional_curses_allowed"]=1857, - ["number_of_additional_curses_allowed_on_self"]=1858, - ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=8768, - ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=8769, - ["number_of_additional_ignites_allowed"]=8770, - ["number_of_additional_mines_to_place"]=3152, - ["number_of_additional_mines_to_place_with_at_least_500_dex"]=8771, - ["number_of_additional_mines_to_place_with_at_least_500_int"]=8772, - ["number_of_additional_poison_stacks"]=8773, - ["number_of_additional_poison_stacks_if_you_have_at_least_100_tribute"]=8774, - ["number_of_additional_projectiles"]=1501, - ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=8775, - ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=8776, - ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=8777, - ["number_of_additional_remote_mines_allowed"]=1929, - ["number_of_additional_totems_allowed"]=1927, - ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3209, - ["number_of_additional_traps_allowed"]=1928, - ["number_of_additional_traps_to_throw"]=8778, - ["number_of_animated_weapons_allowed"]=8779, - ["number_of_chains"]=1498, - ["number_of_crab_charges_lost_when_hit"]=3932, - ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=8781, - ["number_of_golems_allowed_with_3_primordial_jewels"]=8782, - ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2878, - ["number_of_poison_cloud_allowed"]=8783, - ["number_of_projectiles_+%_final_from_skill"]=8784, - ["number_of_raging_spirits_is_limited_to_3"]=8785, - ["number_of_skeletons_allowed_per_2_old"]=8786, - ["number_of_support_ghosts_is_limited_to_3"]=8787, - ["number_of_vine_arrow_pod_allowed"]=8788, - ["number_of_zombies_allowed_+%"]=2283, - ["number_of_zombies_allowed_+1_per_X_strength"]=8789, - ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2731, - ["occultist_chaos_damage_+%_final"]=8790, - ["occultist_cold_damage_+%_final"]=8791, - ["occultist_immune_to_stun_while_has_energy_shield"]=3339, - ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3338, - ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=8792, - ["off_hand_attack_speed_+%_while_dual_wielding"]=8793, - ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=8794, - ["off_hand_base_weapon_attack_duration_ms"]=23, - ["off_hand_claw_mana_gain_on_hit"]=8795, - ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=8796, - ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=8797, - ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=8798, - ["off_hand_maximum_attack_distance"]=27, - ["off_hand_minimum_attack_distance"]=25, - ["off_hand_quality"]=20, - ["off_hand_weapon_type"]=12, - ["offering_area_of_effect_+%"]=8799, - ["offering_duration_+%"]=8800, - ["offering_life_+%"]=8801, - ["offering_spells_effect_+%"]=3644, - ["offerings_also_buff_you"]=1092, - ["offerings_cannot_be_damaged_if_created_recently"]=8802, - ["old_dagger_implicit_critical_strike_chance_+30%"]=1317, - ["old_dagger_implicit_critical_strike_chance_+40%"]=1318, - ["old_dagger_implicit_critical_strike_chance_+50%"]=1319, - ["on_banner_expiry_recover_%_of_required_glory"]=8803, - ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=8804, - ["on_casting_banner_recover_%_of_planted_banner_stages"]=8805, - ["on_kill_effects_occur_twice"]=8806, - ["on_weapon_global_damage_+%"]=1112, - ["one_handed_attack_ailment_chance_+%"]=8807, - ["one_handed_attack_speed_+%"]=2942, - ["one_handed_melee_accuracy_rating_+%"]=1294, - ["one_handed_melee_attack_speed_+%"]=1278, - ["one_handed_melee_cold_damage_+%"]=1188, - ["one_handed_melee_critical_strike_chance_+%"]=1334, - ["one_handed_melee_critical_strike_multiplier_+"]=1353, - ["one_handed_melee_fire_damage_+%"]=1187, - ["one_handed_melee_physical_damage_+%"]=1186, - ["onslaught_buff_duration_on_culling_strike_ms"]=2677, - ["onslaught_buff_duration_on_kill_ms"]=2331, - ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2332, - ["onslaught_effect_+%"]=2917, - ["onslaught_on_crit_duration_ms"]=2364, - ["onslaught_on_vaal_skill_use_duration_ms"]=2584, - ["onslaught_time_granted_on_kill_ms"]=2643, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2644, - ["open_nearby_chests_on_cast_chance_%"]=8808, - ["orb_of_storm_strike_rate_while_channelling_+%"]=8809, - ["orb_of_storms_cast_speed_+%"]=8810, - ["orb_of_storms_damage_+%"]=3333, - ["orb_skill_limit_+"]=8811, - ["overkill_damage_%_as_physical_to_nearby_enemies"]=8812, - ["override_block_chance_for_allies_in_your_presence"]=8813, - ["override_maximum_damage_resistance_%"]=8814, - ["override_weapon_base_critical_strike_chance"]=8815, - ["pain_attunement_keystone_critical_strike_multiplier_+%_final"]=1877, - ["pantheon_abberath_ignite_duration_on_self_+%_final"]=8816, - ["pantheon_shakari_self_poison_duration_+%_final"]=8817, - ["parried_magnitude_+%"]=8818, - ["parry_applies_spell_damage_debuff_instead"]=8819, - ["parry_area_of_effect_+%"]=8820, - ["parry_attack_speed_+%_if_youve_parried_recently"]=8821, - ["parry_cannot_be_critically_hit_during_parry"]=8822, - ["parry_damage_+%"]=8823, - ["parry_deal_thorns_damage_chance_%_on_hit"]=8824, - ["parry_evasion_rating_+%_during_parry"]=8825, - ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=8826, - ["parry_hit_damage_stun_multiplier_+%"]=8827, - ["parry_modifiers_to_stun_buildup_instead_apply_to_freeze"]=8828, - ["parry_movement_speed_+%_if_youve_parried_recently"]=8829, - ["parry_physical_damage_%_to_convert_to_cold"]=8830, - ["parry_skill_effect_duration_+%"]=8832, - ["parry_skill_effect_duration_+%_per_10_tribute"]=8831, - ["parry_stun_threshold_+%_during_parry"]=8833, - ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=8834, - ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=8835, - ["passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=8836, - ["passive_applies_to_minions"]=2717, - ["passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value"]=8837, - ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=8838, - ["passive_mastery_damage_taken_over_time_+%_final"]=8839, - ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=8840, - ["passive_mastery_less_projectile_speed_+%_final"]=8841, - ["passive_mastery_less_skill_effect_duration_+%_final"]=8842, - ["passive_mastery_more_projectile_speed_+%_final"]=8843, - ["passive_mastery_more_skill_effect_duration_+%_final"]=8844, - ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=8845, - ["passive_notable_ignite_proliferation_radius"]=1897, - ["passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits"]=8846, - ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=8847, - ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=8848, - ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=8849, - ["pathfinder_flask_amount_to_recover_+%_final"]=8850, - ["pathfinder_flask_life_to_recover_+%_final"]=8851, - ["pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask"]=4009, - ["pathfinder_poison_duration_+%_final"]=8852, - ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4006, - ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4007, - ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4008, - ["penance_brand_area_of_effect_+%"]=8853, - ["penance_brand_cast_speed_+%"]=8854, - ["penance_brand_damage_+%"]=8855, - ["penetrate_elemental_resistance_%_per_15_ascendance"]=1109, - ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=8856, - ["penetrate_elemental_resistance_%_while_shapeshifted"]=8857, - ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2645, - ["perandus_double_number_of_coins_found"]=8858, - ["perfect_timing_window_ms_+%"]=8863, - ["permanent_damage_+%_per_second_of_chill"]=8864, - ["permanent_damage_+%_per_second_of_freeze"]=8865, - ["permanent_fire_damage_+%_per_second_of_ignite_up_to_10%"]=8866, - ["permanently_intimidate_enemies_you_hit_on_full_life"]=3828, - ["permanently_intimidate_enemy_on_block"]=8867, - ["petrified_blood_mana_reservation_efficiency_+%"]=8869, - ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=8868, - ["petrified_blood_reservation_+%"]=8870, - ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=8871, - ["phase_on_vaal_skill_use_duration_ms"]=2585, - ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3608, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=8872, - ["phase_run_skill_effect_duration_+%"]=3698, - ["phase_through_objects"]=2498, - ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3816, - ["phasing_for_4_seconds_on_kill_%"]=3072, - ["phasing_if_blocked_recently"]=8873, - ["phasing_on_rampage_threshold_ms"]=2626, - ["phasing_on_trap_triggered_by_an_enemy_ms"]=3816, - ["phylactery_can_only_contain_non_unique_jewel"]=136, - ["phylactery_jewel_mod_effect_+%"]=138, - ["phys_cascade_trap_cooldown_speed_+%"]=8874, - ["phys_cascade_trap_damage_+%"]=8875, - ["phys_cascade_trap_duration_+%"]=8876, - ["phys_cascade_trap_number_of_additional_cascades"]=8877, - ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=8878, - ["physical_attack_damage_+%"]=1122, - ["physical_attack_damage_+%_while_holding_a_shield"]=1127, - ["physical_attack_damage_taken_+"]=1908, - ["physical_axe_damage_+%"]=1195, - ["physical_bow_damage_+%"]=1215, - ["physical_claw_damage_+%"]=1203, - ["physical_claw_damage_+%_when_on_low_life"]=2279, - ["physical_dagger_damage_+%"]=1207, - ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3834, - ["physical_damage_%_added_as_fire_damage_on_kill"]=2843, - ["physical_damage_%_taken_from_mana_before_life"]=3748, - ["physical_damage_%_to_gain_as_fire_vs_heavy_stunned"]=8879, - ["physical_damage_%_to_gain_as_lightning_vs_electrocuted"]=8880, - ["physical_damage_+%"]=1146, - ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3807, - ["physical_damage_+%_if_skill_costs_life"]=8886, - ["physical_damage_+%_per_10_rage"]=8887, - ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=8881, - ["physical_damage_+%_vs_ignited_enemies"]=8888, - ["physical_damage_+%_vs_poisoned_enemies"]=2617, - ["physical_damage_+%_while_affected_by_herald_of_blood"]=8882, - ["physical_damage_+%_while_affected_by_herald_of_purity"]=8889, - ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3810, - ["physical_damage_+%_while_frozen"]=2967, - ["physical_damage_+%_while_life_leeching"]=1136, - ["physical_damage_+%_while_shapeshifted"]=8883, - ["physical_damage_+%_while_you_have_resolute_technique"]=10115, - ["physical_damage_+%_with_axes_swords"]=8890, - ["physical_damage_can_chill"]=2554, - ["physical_damage_can_freeze"]=2555, - ["physical_damage_can_shock"]=2556, - ["physical_damage_cannot_poison"]=2564, - ["physical_damage_from_hits_%_taken_as_random_element"]=8884, - ["physical_damage_on_block_+%"]=2855, - ["physical_damage_over_time_+%"]=1129, - ["physical_damage_over_time_multiplier_+_with_attacks"]=1159, - ["physical_damage_over_time_per_10_dexterity_+%"]=3387, - ["physical_damage_over_time_taken_+%_while_moving"]=8885, - ["physical_damage_per_endurance_charge_+%"]=1827, - ["physical_damage_prevented_recouped_as_life_%"]=8891, - ["physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute"]=8892, - ["physical_damage_reduction_%_at_devotion_threshold"]=8893, - ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=8902, - ["physical_damage_reduction_%_per_endurance_charge"]=1971, - ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=8895, - ["physical_damage_reduction_%_per_nearby_enemy"]=8904, - ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=8897, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3643, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3066, - ["physical_damage_reduction_percent_per_frenzy_charge"]=8894, - ["physical_damage_reduction_percent_per_power_charge"]=8896, - ["physical_damage_reduction_rating_%_while_not_moving"]=3904, - ["physical_damage_reduction_rating_+%"]=888, - ["physical_damage_reduction_rating_+%_per_10_tribute"]=8898, - ["physical_damage_reduction_rating_+%_per_endurance_charge"]=8903, - ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3187, - ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2495, - ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2456, - ["physical_damage_reduction_rating_during_soul_gain_prevention"]=8899, - ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=8900, - ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=3960, - ["physical_damage_reduction_rating_per_endurance_charge"]=8901, - ["physical_damage_reduction_rating_per_level"]=2440, - ["physical_damage_reduction_rating_while_frozen"]=2482, - ["physical_damage_taken_%_as_chaos"]=2148, - ["physical_damage_taken_%_as_cold"]=2144, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=8906, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=8907, - ["physical_damage_taken_%_as_fire"]=2143, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=8908, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=8909, - ["physical_damage_taken_%_as_lightning"]=2145, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=8910, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=8911, - ["physical_damage_taken_+"]=1909, - ["physical_damage_taken_+%"]=1915, - ["physical_damage_taken_+%_from_hits"]=8905, - ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3811, - ["physical_damage_taken_+%_while_frozen"]=2483, - ["physical_damage_taken_+%_while_moving"]=3906, - ["physical_damage_taken_+_per_level"]=1910, - ["physical_damage_taken_+_vs_beasts"]=2590, - ["physical_damage_taken_on_minion_death"]=2676, - ["physical_damage_taken_recouped_as_life_%"]=8912, - ["physical_damage_to_return_to_melee_attacker"]=904, - ["physical_damage_to_return_when_hit"]=1888, - ["physical_damage_while_dual_wielding_+%"]=1179, - ["physical_damage_with_attack_skills_+%"]=8913, - ["physical_damage_with_spell_skills_+%"]=8914, - ["physical_dot_multiplier_+"]=1158, - ["physical_dot_multiplier_+_if_crit_recently"]=8915, - ["physical_dot_multiplier_+_if_spent_life_recently"]=8916, - ["physical_dot_multiplier_+_while_wielding_axes_swords"]=8917, - ["physical_hit_and_dot_damage_%_taken_as_chaos"]=8921, - ["physical_hit_and_dot_damage_%_taken_as_cold"]=8918, - ["physical_hit_and_dot_damage_%_taken_as_fire"]=8919, - ["physical_hit_and_dot_damage_%_taken_as_lightning"]=8920, - ["physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking"]=8922, - ["physical_mace_damage_+%"]=1211, - ["physical_ranged_attack_damage_taken_+"]=1920, - ["physical_reflect_damage_taken_+%"]=2395, - ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=8923, - ["physical_skill_gem_level_+"]=8924, - ["physical_spell_damage_can_pin_on_critical_hit"]=8925, - ["physical_spell_skill_gem_level_+"]=1426, - ["physical_staff_damage_+%"]=1198, - ["physical_sword_damage_+%"]=1219, - ["physical_wand_damage_+%"]=1224, - ["physical_weapon_damage_+%_per_10_str"]=2238, - ["piercing_attacks_cause_bleeding"]=3037, - ["piercing_projectiles_critical_strike_chance_+%"]=8926, - ["pin_almost_pinned_enemies"]=8927, - ["pin_duration_+%"]=8928, - ["pin_stops_enemies"]=8929, - ["pinned_enemies_cannot_crit"]=8930, - ["pinned_enemies_cannot_evade_your_attacks"]=8931, - ["placed_banner_attack_damage_+%"]=8932, - ["placing_traps_cooldown_recovery_+%"]=3068, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=8933, - ["plague_bearer_maximum_stored_poison_damage_+%"]=8934, - ["plague_bearer_movement_speed_+%_while_infecting"]=8935, - ["plague_bearer_poison_effect_+%_while_infecting"]=8936, - ["plant_skill_armour_break_amount_+%_when_wet"]=8937, - ["plant_skill_damage_+%"]=8938, - ["player_can_be_touched_by_tormented_spirits"]=8939, - ["player_far_shot"]=10101, - ["player_gain_rampage_stacks"]=10042, - ["player_is_harbinger_spawn_pack_on_kill_chance"]=105, - ["poachers_mark_curse_effect_+%"]=3588, - ["poachers_mark_duration_+%"]=3495, - ["poison_as_though_dealing_X_damage_on_block"]=8940, - ["poison_chance_+%"]=8941, - ["poison_cursed_enemies_on_hit"]=3785, - ["poison_duration_+%_against_slowed_enemies"]=8942, - ["poison_duration_+%_if_consumed_frenzy_charge_recently"]=8943, - ["poison_duration_+%_per_poison_applied_recently"]=8944, - ["poison_duration_+%_per_power_charge"]=8945, - ["poison_duration_+%_with_over_150_intelligence"]=8946, - ["poison_effect_+%_per_frenzy_charge"]=8950, - ["poison_effect_+%_vs_bleeding_enemies"]=8951, - ["poison_effect_+%_vs_non_poisoned_enemies"]=8947, - ["poison_effect_+%_with_spells"]=8952, - ["poison_effect_+100%_final_chance_during_flask_effect"]=8948, - ["poison_on_critical_strike"]=8953, - ["poison_on_critical_strike_with_bow"]=1313, - ["poison_on_critical_strike_with_dagger"]=1310, - ["poison_on_hit_during_flask_effect_%"]=2927, - ["poison_on_melee_critical_strike_%"]=2452, - ["poison_on_melee_hit"]=3830, - ["poison_reflected_to_self"]=8954, - ["poison_time_passed_+%"]=8955, - ["poisonous_concoction_damage_+%"]=8956, - ["poisonous_concoction_flask_charges_consumed_+%"]=8957, - ["poisonous_concoction_skill_area_of_effect_+%"]=8958, - ["poisons_you_inflict_can_stack_infintely"]=8959, - ["portal_alternate_destination_chance_permyriad"]=8960, - ["power_charge_duration_+%"]=1830, - ["power_charge_duration_+%_final"]=8961, - ["power_charge_on_block_%_chance"]=3840, - ["power_charge_on_kill_percent_chance_while_holding_shield"]=8962, - ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=8963, - ["power_frenzy_or_endurance_charge_on_kill_%"]=3211, - ["power_only_conduit"]=1960, - ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3558, - ["power_siphon_attack_speed_+%"]=3451, - ["power_siphon_damage_+%"]=3264, - ["power_siphon_number_of_additional_projectiles"]=8964, - ["precision_aura_effect_+%"]=2987, - ["precision_mana_reservation_+%"]=8969, - ["precision_mana_reservation_-50%_final"]=8968, - ["precision_mana_reservation_efficiency_+%"]=8967, - ["precision_mana_reservation_efficiency_+100%"]=8966, - ["precision_mana_reservation_efficiency_-2%_per_1"]=8965, - ["precision_reserves_no_mana"]=8970, - ["presence_area_+%"]=1026, - ["presence_area_+%_per_10_tribute"]=8971, - ["prevent_monster_heal"]=1602, - ["prevent_monster_heal_duration_+%"]=1603, - ["prevent_projectile_chaining_%_chance"]=8972, - ["pride_aura_effect_+%"]=8973, - ["pride_chance_to_deal_double_damage_%"]=8974, - ["pride_chance_to_impale_with_attacks_%"]=8975, - ["pride_intimidate_enemy_for_4_seconds_on_hit"]=8976, - ["pride_mana_reservation_+%"]=8979, - ["pride_mana_reservation_efficiency_+%"]=8978, - ["pride_mana_reservation_efficiency_-2%_per_1"]=8977, - ["pride_physical_damage_+%"]=8980, - ["pride_reserves_no_mana"]=8981, - ["pride_your_impaled_debuff_lasts_+_additional_hits"]=8982, - ["primalist_charm_charges_gained_+%_final"]=8983, - ["primordial_altar_burning_ground_on_death_%"]=8596, - ["primordial_altar_chilled_ground_on_death_%"]=8597, - ["primordial_jewel_count"]=10020, - ["prismatic_rain_beam_frequency_+%"]=8984, - ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=8985, - ["projectile_ailment_chance_+%"]=8986, - ["projectile_all_damage_%_to_gain_as_instilling_type"]=8987, - ["projectile_attack_damage_+%"]=1688, - ["projectile_attack_damage_+%_during_flask_effect"]=8988, - ["projectile_attack_damage_+%_per_200_accuracy"]=3899, - ["projectile_attack_damage_+%_with_at_least_200_dex"]=3947, - ["projectile_attack_damage_+%_with_claw_or_dagger"]=8989, - ["projectile_attack_range_+%"]=8990, - ["projectile_attack_skill_critical_strike_chance_+%"]=3908, - ["projectile_attack_skill_critical_strike_multiplier_+"]=8991, - ["projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving"]=8992, - ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=3909, - ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=3910, - ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=3911, - ["projectile_base_number_of_targets_to_pierce"]=1499, - ["projectile_chain_from_terrain_chance_%"]=1533, - ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=8993, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=8994, - ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=8995, - ["projectile_damage_+%"]=1687, - ["projectile_damage_+%_against_heavy_stunned_enemies"]=8996, - ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=8997, - ["projectile_damage_+%_in_blood_stance"]=9491, - ["projectile_damage_+%_max_as_distance_travelled_increases"]=3661, - ["projectile_damage_+%_max_before_distance_increase"]=9001, - ["projectile_damage_+%_per_16_dexterity"]=9002, - ["projectile_damage_+%_per_chain"]=9003, - ["projectile_damage_+%_per_pierced_enemy"]=9004, - ["projectile_damage_+%_per_power_charge"]=2329, - ["projectile_damage_+%_per_remaining_chain"]=9005, - ["projectile_damage_+%_vs_chained_enemy"]=9006, - ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=8998, - ["projectile_damage_+%_vs_enemies_within_2m_distance"]=8999, - ["projectile_damage_+%_vs_nearby_enemies"]=9007, - ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=9000, - ["projectile_damage_modifiers_apply_to_skill_dot"]=2378, - ["projectile_damage_taken_+%"]=2429, - ["projectile_daze_chance_%_vs_enemies_further_than_6m"]=9008, - ["projectile_freeze_chance_%"]=2389, - ["projectile_hit_damage_stun_multiplier_+%"]=9009, - ["projectile_number_to_split"]=9010, - ["projectile_return_%_chance"]=2500, - ["projectile_shock_chance_%"]=2390, - ["projectile_skill_gem_level_+"]=954, - ["projectile_speed_+%_per_frenzy_charge"]=2328, - ["projectile_speed_+%_with_crossbow_skills"]=1504, - ["projectile_speed_+%_with_daggers"]=9011, - ["projectile_spell_cooldown_modifier_ms"]=9012, - ["projectile_weakness_curse_effect_+%"]=3589, - ["projectile_weakness_duration_+%"]=3496, - ["projectiles_always_pierce_you"]=9013, - ["projectiles_crit_chance_+%_for_each_time_they_have_pierced"]=9014, - ["projectiles_fork"]=3184, - ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=9015, - ["projectiles_from_spells_cannot_pierce"]=9016, - ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9017, - ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9018, - ["projectiles_pierce_all_nearby_targets"]=9019, - ["projectiles_pierce_enemies_with_fully_broken_armour"]=9020, - ["projectiles_pierce_while_phasing"]=9021, - ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9022, - ["projectiles_return"]=2500, - ["protective_link_duration_+%"]=9023, - ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9024, - ["puncture_damage_+%"]=3253, - ["puncture_duration_+%"]=3487, - ["puncture_maim_on_hit_%_chance"]=3552, - ["punishment_curse_effect_+%"]=3597, - ["punishment_duration_+%"]=3500, - ["punishment_ignores_hexproof"]=2300, - ["punishment_no_reservation"]=9025, - ["puppet_master_base_duration_ms"]=9026, - ["purge_damage_+%"]=9027, - ["purge_duration_+%"]=9028, - ["purge_expose_resist_%_matching_highest_element_damage"]=9029, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9030, - ["purity_of_elements_aura_effect_+%"]=2979, - ["purity_of_elements_mana_reservation_+%"]=3620, - ["purity_of_elements_mana_reservation_efficiency_+%"]=9032, - ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9031, - ["purity_of_elements_reserves_no_mana"]=9033, - ["purity_of_fire_aura_effect_+%"]=2980, - ["purity_of_fire_mana_reservation_+%"]=3621, - ["purity_of_fire_mana_reservation_efficiency_+%"]=9035, - ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9034, - ["purity_of_fire_reserves_no_mana"]=9036, - ["purity_of_ice_aura_effect_+%"]=2981, - ["purity_of_ice_mana_reservation_+%"]=3617, - ["purity_of_ice_mana_reservation_efficiency_+%"]=9038, - ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9037, - ["purity_of_ice_reserves_no_mana"]=9039, - ["purity_of_lightning_aura_effect_+%"]=2982, - ["purity_of_lightning_mana_reservation_+%"]=3622, - ["purity_of_lightning_mana_reservation_efficiency_+%"]=9041, - ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9040, - ["purity_of_lightning_reserves_no_mana"]=9042, - ["quality_display_base_number_of_crossbow_bolts_is_gem"]=967, - ["quality_display_trinity_is_gem"]=9739, - ["quantity_of_items_dropped_by_maimed_enemies_+%"]=3750, - ["quarterstaff_accuracy_rating_+%"]=1297, - ["quarterstaff_attack_speed_+%"]=1280, - ["quarterstaff_critical_strike_chance_+%"]=1326, - ["quarterstaff_critical_strike_multiplier_+"]=1351, - ["quarterstaff_damage_+%"]=1199, - ["quarterstaff_daze_build_up_+%"]=9043, - ["quarterstaff_hit_damage_freeze_multiplier_+%"]=9044, - ["quarterstaff_hit_damage_stun_multiplier_+%"]=9045, - ["quarterstaff_shock_chance_+%"]=9046, - ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=9047, - ["quick_dodge_added_cooldown_count"]=9048, - ["quick_dodge_travel_distance_+%"]=9049, - ["quick_guard_additional_physical_damage_reduction_%"]=9050, - ["quicksilver_flasks_apply_to_nearby_allies"]=9051, - ["quiver_hellscaping_speed_+%"]=6717, - ["quiver_mod_effect_+%"]=9052, - ["quiver_projectiles_pierce_1_additional_target"]=9053, - ["quiver_projectiles_pierce_2_additional_targets"]=9054, - ["quiver_projectiles_pierce_3_additional_targets"]=9055, - ["rage_decay_speed_+%"]=9064, - ["rage_decay_speed_+%_per_10_tribute"]=9065, - ["rage_effects_doubled"]=9058, - ["rage_effects_tripled"]=9057, - ["rage_gained_on_life_flask_use"]=9066, - ["rage_generated_also_granted_to_allies_in_presence"]=9067, - ["rage_grants_spell_damage_instead"]=9068, - ["rage_loss_delay_ms"]=9069, - ["rage_loss_delay_recovery_rate_+%"]=9070, - ["rage_slash_sacrifice_rage_%"]=9071, - ["rage_vortex_area_of_effect_+%"]=9072, - ["rage_vortex_damage_+%"]=9073, - ["raging_spirit_damage_+%"]=3247, - ["raging_spirits_always_ignite"]=9074, - ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=9075, - ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9076, - ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9077, - ["rain_of_arrows_additional_sequence_chance_%"]=9078, - ["rain_of_arrows_attack_speed_+%"]=3445, - ["rain_of_arrows_damage_+%"]=3246, - ["rain_of_arrows_radius_+%"]=3402, - ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9079, - ["raise_spectre_gem_level_+"]=1428, - ["raise_spectre_mana_cost_+%"]=9080, - ["raise_zombie_does_not_use_corpses"]=9081, - ["raise_zombie_gem_level_+"]=1427, - ["raised_zombie_%_chance_to_taunt"]=9082, - ["raised_zombies_are_usable_as_corpses_when_alive"]=9083, - ["raised_zombies_cover_in_ash_on_hit_%"]=9084, - ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9085, - ["raised_zombies_have_avatar_of_fire"]=9086, - ["rallying_cry_buff_effect_+%"]=3694, - ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9087, - ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9088, - ["rallying_cry_duration_+%"]=3508, - ["rallying_cry_exerts_x_additional_attacks"]=9089, - ["random_curse_on_hit_%"]=2205, - ["random_curse_on_hit_%_against_uncursed_enemies"]=9090, - ["random_curse_when_hit_%_ignoring_curse_limit"]=9091, - ["random_projectile_direction"]=9092, - ["randomly_cursed_when_totems_die_curse_level"]=2243, - ["ranged_weapon_physical_damage_+%"]=1689, - ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9093, - ["rapid_assault_attached_spear_limit"]=9094, - ["rare_or_unique_monster_dropped_item_rarity_+%"]=9095, - ["rarity_of_items_dropped_by_maimed_enemies_+%"]=3751, - ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=9096, - ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9097, - ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=9098, - ["reave_attack_speed_per_reave_stack_+%"]=3549, - ["reave_damage_+%"]=3240, - ["reave_radius_+%"]=3399, - ["recall_sigil_target_search_range_+%"]=9099, - ["receive_bleeding_chance_%_when_hit"]=9100, - ["receive_bleeding_chance_%_when_hit_by_attack"]=9101, - ["received_attack_hits_have_impale_chance_%"]=9102, - ["recharge_flasks_on_crit"]=2623, - ["recharge_flasks_on_crit_while_affected_by_precision"]=9103, - ["reckoning_cooldown_speed_+%"]=3468, - ["reckoning_damage_+%"]=3305, - ["recoup_%_elemental_damage_as_energy_shield"]=9104, - ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9105, - ["recoup_effects_apply_over_4_seconds_instead"]=9106, - ["recoup_life_effects_apply_over_3_seconds_instead"]=9107, - ["recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings"]=9129, - ["recoup_speed_+%"]=9108, - ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9109, - ["recover_%_es_on_kill_per_different_mastery"]=1449, - ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=9110, - ["recover_%_life_on_kill_per_different_mastery"]=1448, - ["recover_%_life_per_endurance_charge_consumed"]=9111, - ["recover_%_life_when_gaining_adrenaline"]=9132, - ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9133, - ["recover_%_life_when_you_create_an_offering"]=9112, - ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9134, - ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9135, - ["recover_%_mana_on_kill_per_different_mastery"]=1450, - ["recover_%_mana_when_attached_brand_expires"]=9136, - ["recover_%_mana_when_you_invoke_a_spell"]=9113, - ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9114, - ["recover_%_maximum_life_on_enemy_ignited"]=3891, - ["recover_%_maximum_life_on_flask_use"]=3923, - ["recover_%_maximum_life_on_kill"]=1461, - ["recover_%_maximum_life_on_kill_per_50_tribute"]=9115, - ["recover_%_maximum_life_on_killing_chilled_enemy"]=9137, - ["recover_%_maximum_life_on_killing_cursed_enemy"]=9116, - ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9138, - ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9139, - ["recover_%_maximum_life_on_mana_flask_use"]=3924, - ["recover_%_maximum_life_on_rampage_threshold"]=2612, - ["recover_%_maximum_life_per_glory_consumed"]=9117, - ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2702, - ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9118, - ["recover_%_maximum_life_when_spending_at_least_10_combo"]=9140, - ["recover_%_maximum_mana_on_charm_use"]=9141, - ["recover_%_maximum_mana_on_kill"]=1463, - ["recover_%_maximum_mana_on_kill_per_50_tribute"]=9119, - ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1464, - ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9120, - ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9142, - ["recover_%_maximum_mana_when_enemy_shocked"]=3749, - ["recover_%_maximum_mana_when_spending_at_least_10_combo"]=9143, - ["recover_%_of_maximum_life_on_block"]=2706, - ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9144, - ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9121, - ["recover_10%_of_maximum_mana_on_skill_use_%"]=3082, - ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9122, - ["recover_X_life_on_block"]=1472, - ["recover_X_life_on_enemy_ignited"]=9123, - ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9124, - ["recover_X_mana_on_killing_frozen_enemy"]=9125, - ["recover_energy_shield_%_on_consuming_steel_shard"]=9126, - ["recover_energy_shield_%_on_kill"]=1462, - ["recover_es_as_well_as_life_from_life_regeneration"]=9127, - ["recover_life_%_on_enemy_death_in_presence"]=9128, - ["recover_mana_%_on_enemy_death_in_presence"]=9130, - ["recover_maximum_life_on_enemy_killed_chance_%"]=9131, - ["recover_permyriad_life_on_skill_use"]=9145, - ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9146, - ["recover_x%_of_maximum_mana_when_you_consume_a_power_charge"]=9147, - ["reduce_enemy_chaos_resistance_%"]=9148, - ["reduce_enemy_chaos_resistance_with_weapons_%"]=3191, - ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9149, - ["reduce_enemy_cold_resistance_with_weapons_%"]=3188, - ["reduce_enemy_elemental_resistance_%"]=2636, - ["reduce_enemy_elemental_resistance_with_weapons_%"]=3198, - ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9150, - ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9151, - ["reduce_enemy_fire_resistance_with_weapons_%"]=3189, - ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9152, - ["reduce_enemy_lightning_resistance_with_weapons_%"]=3190, - ["reflect_%_of_physical_damage_prevented"]=9153, - ["reflect_curses"]=2170, - ["reflect_damage_taken_+%"]=3839, - ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9154, - ["reflect_hexes_chance_%"]=2171, - ["reflect_shocks"]=9155, - ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9156, - ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9157, - ["refresh_endurance_charges_duration_when_hit_chance_%"]=9158, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=9159, - ["regenerate_%_armour_as_life_over_1_second_on_block"]=2509, - ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9160, - ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9161, - ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9169, - ["regenerate_%_life_over_1_second_when_stunned"]=9162, - ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9170, - ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9171, - ["regenerate_%_of_curse_mana_cost_per_second_while_in_delay"]=9163, - ["regenerate_1_rage_per_x_life_regeneration"]=9164, - ["regenerate_1_rage_per_x_mana_regeneration"]=9165, - ["regenerate_X_life_over_1_second_on_cast"]=2508, - ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9166, - ["regenerate_energy_shield_instead_of_life"]=9167, - ["regenerate_mana_equal_to_x%_of_life_per_minute"]=9168, - ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9172, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3580, - ["rejuvenation_totem_aura_effect_+%"]=3581, - ["reload_speed_+%"]=9173, - ["remnant_effect_+%"]=9175, - ["remnant_effect_+%_per_10_tribute"]=9174, - ["remnant_pickup_range_+%"]=9177, - ["remnant_pickup_range_+%_if_you_have_at_least_100_tribute"]=9176, - ["remnant_recover_%_life_on_pickup"]=9178, - ["remnant_recover_%_mana_on_pickup"]=9179, - ["remove_%_of_mana_on_hit"]=9192, - ["remove_ailments_and_burning_on_gaining_adrenaline"]=9180, - ["remove_all_damaging_ailments_on_warcry"]=9181, - ["remove_bleed_on_flask_use"]=3004, - ["remove_bleed_on_life_flask_use"]=9182, - ["remove_bleeding_on_warcry"]=9183, - ["remove_chill_and_freeze_on_flask_use"]=9184, - ["remove_corrupted_blood_when_you_use_a_flask"]=3005, - ["remove_curse_on_mana_flask_use"]=9185, - ["remove_damaging_ailment_on_using_command_skill"]=9186, - ["remove_damaging_ailments_on_swapping_stance"]=9187, - ["remove_elemental_ailments_on_curse_cast_%"]=9188, - ["remove_ignite_and_burning_on_flask_use"]=9189, - ["remove_ignite_on_warcry"]=9190, - ["remove_maim_and_hinder_on_flask_use"]=9191, - ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9193, - ["remove_random_ailment_when_you_warcry"]=9194, - ["remove_random_charge_on_hit_%"]=9195, - ["remove_random_elemental_ailment_on_mana_flask_use"]=9196, - ["remove_random_non_elemental_ailment_on_life_flask_use"]=9197, - ["remove_shock_on_flask_use"]=9198, - ["remove_x_curses_after_channelling_for_2_seconds"]=9199, - ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9200, - ["required_enemies_to_be_considered_surrounded_offset"]=9201, - ["reservation_efficiency_+%_of_companion_skills"]=9202, - ["reservation_efficiency_+%_of_herald_skills"]=9203, - ["reservation_efficiency_+%_of_meta_skills"]=9204, - ["reservation_efficiency_+%_of_minion_skills"]=8548, - ["reservation_efficiency_+%_of_skeleton_minion_skills"]=9314, - ["reservation_efficiency_+%_of_undead_minion_skills"]=9796, - ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9205, - ["reservation_efficiency_-2%_per_1"]=1907, - ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9206, - ["resist_all_%"]=9207, - ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9208, - ["resist_all_elements_%_per_10_levels"]=2442, - ["resist_all_elements_%_per_endurance_charge"]=1430, - ["resist_all_elements_%_per_power_charge"]=1431, - ["resist_all_elements_%_with_200_or_more_strength"]=3946, - ["resist_all_elements_+%_while_holding_shield"]=1432, - ["resolute_technique"]=10102, - ["restore_energy_shield_and_mana_when_you_focus_%"]=9209, - ["restore_life_and_mana_on_warcry_%"]=2837, - ["restore_life_on_warcry_%"]=2838, - ["returning_projectiles_always_pierce"]=9210, - ["revive_golems_if_killed_by_enemies_ms"]=9211, - ["revive_random_persistent_minion_on_offering_expiration"]=9212, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9213, - ["righteous_fire_damage_+%"]=3270, - ["righteous_fire_radius_+%"]=3410, - ["righteous_fire_spell_damage_+%"]=3693, - ["riposte_cooldown_speed_+%"]=3473, - ["riposte_damage_+%"]=3317, - ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9214, - ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9215, - ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9216, - ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9217, - ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9218, - ["sacrifice_%_life_on_spell_skill"]=9220, - ["sacrifice_%_life_to_gain_as_guard_on_dodge_roll"]=9219, - ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9221, - ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9222, - ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9223, - ["sanctify_damage_+%"]=9224, - ["sap_on_critical_strike_with_lightning_skills"]=9225, - ["scion_helmet_skill_maximum_totems_+"]=469, - ["scorch_effect_+%"]=9226, - ["scorch_enemies_in_close_range_on_block"]=9227, - ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9228, - ["scourge_arrow_damage_+%"]=9229, - ["searing_bond_damage_+%"]=3265, - ["searing_bond_totem_placement_speed_+%"]=3560, - ["searing_totem_elemental_resistance_+%"]=3699, - ["secondary_maximum_base_chaos_damage"]=1263, - ["secondary_maximum_base_cold_damage"]=1261, - ["secondary_maximum_base_fire_damage"]=1260, - ["secondary_maximum_base_lightning_damage"]=1262, - ["secondary_maximum_base_physical_damage"]=1259, - ["secondary_minimum_base_chaos_damage"]=1263, - ["secondary_minimum_base_cold_damage"]=1261, - ["secondary_minimum_base_fire_damage"]=1260, - ["secondary_minimum_base_lightning_damage"]=1262, - ["secondary_minimum_base_physical_damage"]=1259, - ["secondary_skill_effect_duration_+%"]=9230, - ["seismic_cry_exerted_attack_damage_+%"]=9231, - ["seismic_cry_minimum_power"]=9232, - ["self_bleed_duration_+%"]=9233, - ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=9234, - ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=9235, - ["self_chill_duration_-%"]=1574, - ["self_cold_damage_on_reaching_maximum_power_charges"]=9236, - ["self_critical_strike_multiplier_+%_while_ignited"]=9237, - ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1363, - ["self_curse_duration_+%"]=1860, - ["self_curse_duration_+%_per_10_devotion"]=9238, - ["self_cursed_with_level_x_vulnerability"]=2763, - ["self_elemental_status_duration_-%"]=1573, - ["self_elemental_status_duration_-%_per_10_devotion"]=9239, - ["self_freeze_duration_-%"]=1575, - ["self_ignite_duration_-%"]=1576, - ["self_offering_effect_+%"]=1093, - ["self_physical_damage_on_movement_skill_use"]=9240, - ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9241, - ["self_poison_duration_+%"]=1024, - ["self_take_no_extra_damage_from_critical_strikes"]=3856, - ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9242, - ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9243, - ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9244, - ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9245, - ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9246, - ["sentinel_minion_cooldown_speed_+%"]=9247, - ["sentinel_of_purity_damage_+%"]=9248, - ["serpent_strike_maximum_snakes"]=9249, - ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2649, - ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2654, - ["shapeshift_slam_skill_aftershock_chance_%"]=9250, - ["share_charges_with_allies_in_your_presence"]=9251, - ["shatter_has_%_chance_to_cover_in_frost"]=9252, - ["shatter_on_kill_if_fully_broken_armour"]=9253, - ["shatter_on_kill_vs_bleeding_enemies"]=9254, - ["shatter_on_kill_vs_poisoned_enemies"]=9255, - ["shattering_steel_%_chance_to_not_consume_ammo"]=9259, - ["shattering_steel_damage_+%"]=9256, - ["shattering_steel_fortify_on_hit_close_range"]=9257, - ["shattering_steel_number_of_additional_projectiles"]=9258, - ["shield_attack_speed_+%"]=1288, - ["shield_block_%"]=1080, - ["shield_charge_attack_speed_+%"]=3447, - ["shield_charge_damage_+%"]=3254, - ["shield_charge_damage_per_target_hit_+%"]=3669, - ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9260, - ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9261, - ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9261, - ["shield_crush_attack_speed_+%"]=9262, - ["shield_crush_damage_+%"]=9263, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=9264, - ["shield_defences_+%"]=9265, - ["shield_defences_+%_per_10_devotion"]=9267, - ["shield_defences_+%_per_25_tribute"]=9266, - ["shield_evasion_rating_+%"]=1684, - ["shield_maximum_energy_shield_+%"]=1669, - ["shield_physical_damage_reduction_rating_+%"]=1685, - ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9268, - ["shock_attackers_for_4_seconds_on_block_%_chance"]=9269, - ["shock_chance_+%"]=1016, - ["shock_chance_+%_vs_electrocuted_enemies"]=9270, - ["shock_duration_+%"]=1564, - ["shock_effect_+%"]=9272, - ["shock_effect_+%_if_consumed_frenzy_charge_recently"]=9273, - ["shock_effect_+%_with_critical_strikes"]=9274, - ["shock_effect_against_cursed_enemies_+%"]=9271, - ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=9275, - ["shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy"]=2493, - ["shock_magnitude_calculated_from_damage"]=9276, - ["shock_maximum_magnitude_+"]=9278, - ["shock_maximum_magnitude_is_60%"]=9277, - ["shock_minimum_damage_taken_increase_%"]=4016, - ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9280, - ["shock_nova_damage_+%"]=3280, - ["shock_nova_radius_+%"]=3423, - ["shock_nova_ring_chance_to_shock_+%"]=9281, - ["shock_nova_ring_damage_+%"]=3574, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9282, - ["shock_prevention_ms_when_shocked"]=2570, - ["shock_self_for_x_ms_when_you_focus"]=9279, - ["shocked_chilled_effect_on_self_+%"]=9283, - ["shocked_effect_on_self_+%"]=9285, - ["shocked_effect_on_self_+%_while_shapeshifted"]=9284, - ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9286, - ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3203, - ["shocked_ground_base_magnitude_override"]=9287, - ["shocked_ground_on_death_%"]=9288, - ["shocked_ground_when_hit_%"]=2273, - ["shocks_reflected_to_self"]=2453, - ["shockwave_slam_attack_speed_+%"]=3453, - ["shockwave_slam_damage_+%"]=3336, - ["shockwave_slam_explosion_damage_+%_final"]=3168, - ["shockwave_slam_radius_+%"]=3436, - ["shockwave_totem_cast_speed_+%"]=3584, - ["shockwave_totem_damage_+%"]=3281, - ["shockwave_totem_radius_+%"]=3438, - ["should_use_alternate_fortify"]=1964, - ["shrapnel_ballista_num_additional_arrows"]=9289, - ["shrapnel_ballista_num_pierce"]=9290, - ["shrapnel_ballista_projectile_speed_+%"]=9291, - ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9292, - ["shrapnel_shot_damage_+%"]=3321, - ["shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage"]=3609, - ["shrapnel_shot_radius_+%"]=3425, - ["shrapnel_trap_area_of_effect_+%"]=9294, - ["shrapnel_trap_damage_+%"]=9295, - ["shrapnel_trap_number_of_additional_secondary_explosions"]=9296, - ["shrine_buff_effect_on_self_+%"]=2491, - ["shrine_effect_duration_+%"]=2492, - ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=3885, - ["siege_ballista_attack_speed_+%"]=3452, - ["siege_ballista_damage_+%"]=3334, - ["siege_ballista_totem_placement_speed_+%"]=3586, - ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9297, - ["sigil_attached_target_damage_+%"]=9298, - ["sigil_attached_target_damage_taken_+%"]=9299, - ["sigil_critical_strike_chance_+%"]=9300, - ["sigil_critical_strike_multiplier_+"]=9301, - ["sigil_damage_+%"]=9302, - ["sigil_damage_+%_per_10_devotion"]=9303, - ["sigil_duration_+%"]=9304, - ["sigil_recall_cooldown_speed_+%"]=9305, - ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9306, - ["sigil_repeat_frequency_+%"]=9307, - ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9308, - ["sigil_target_search_range_+%"]=9309, - ["silver_flask_display_onslaught"]=3197, - ["silver_footprints_from_item"]=10128, - ["siphon_duration_+%"]=3511, - ["skeletal_chains_area_of_effect_+%"]=9310, - ["skeletal_chains_cast_speed_+%"]=9311, - ["skeletal_chains_damage_+%"]=3330, - ["skeleton_attack_speed_+%"]=9312, - ["skeleton_cast_speed_+%"]=9313, - ["skeleton_duration_+%"]=1488, - ["skeleton_minion_reservation_+%"]=9315, - ["skeleton_movement_speed_+%"]=9316, - ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9318, - ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9317, - ["skeletons_are_permanent_minions"]=9319, - ["skeletons_damage_+%"]=3255, - ["skill_additional_fissure_chance_%"]=9320, - ["skill_area_of_effect_+%_if_enemy_killed_recently"]=3796, - ["skill_area_of_effect_+%_in_sand_stance"]=9496, - ["skill_area_of_effect_+%_per_active_mine"]=3074, - ["skill_area_of_effect_+%_per_power_charge"]=1817, - ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=1818, - ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1740, - ["skill_area_of_effect_when_unarmed_+%"]=2701, - ["skill_can_see_monster_categories"]=9321, - ["skill_cooldown_-%"]=1598, - ["skill_cost_base_life_equal_to_base_mana"]=9322, - ["skill_cost_efficiency_+%_if_consumed_power_charge_recently"]=9323, - ["skill_detonation_time_+%"]=9324, - ["skill_effect_duration_+%"]=1596, - ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3798, - ["skill_effect_duration_+%_per_10_strength"]=1706, - ["skill_effect_duration_+%_per_enemy_frozen_last_8_seconds"]=9325, - ["skill_effect_duration_+%_when_using_shapeshift_skills"]=9326, - ["skill_effect_duration_+%_while_affected_by_malevolence"]=9327, - ["skill_effect_duration_+%_with_bow_skills"]=9328, - ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9329, - ["skill_effect_duration_per_100_int"]=2732, - ["skill_glory_gain_per_2_seconds"]=4023, - ["skill_internal_monster_responsiveness_+%"]=1623, - ["skill_life_cost_+"]=1591, - ["skill_life_cost_+_with_channelling_skills"]=9330, - ["skill_life_cost_+_with_non_channelling_skills"]=9331, - ["skill_mana_cost_+"]=1592, - ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=3921, - ["skill_mana_cost_+_while_affected_by_clarity"]=9332, - ["skill_mana_cost_+_with_channelling_skills"]=9333, - ["skill_mana_cost_+_with_non_channelling_skills"]=9335, - ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9337, - ["skill_mana_costs_converted_to_life_costs_%_during_life_flask"]=9338, - ["skill_range_+%"]=1624, - ["skill_repeat_count"]=1594, - ["skill_speed_+%"]=852, - ["skill_speed_+%_against_bloodlusting_enemies"]=9339, - ["skill_speed_+%_if_consumed_frenzy_charge_recently"]=9340, - ["skill_speed_+%_while_shapeshifted"]=9341, - ["skill_speed_+%_with_channelling_skills"]=9342, - ["skill_visual_scale_+%"]=21, - ["skills_cost_no_mana_while_focused"]=9343, - ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=9344, - ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=9345, - ["skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost"]=9346, - ["skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem"]=6835, - ["skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem"]=6833, - ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9347, - ["skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem"]=6834, - ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9348, - ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9349, - ["skitterbots_mana_reservation_efficiency_+%"]=9351, - ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9350, - ["slam_aftershock_chance_%"]=9352, - ["slam_ancestor_totem_damage_+%"]=3720, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3392, - ["slam_ancestor_totem_radius_+%"]=3723, - ["slam_skill_area_of_effect_+%"]=9353, - ["slams_always_ancestral_slam"]=9354, - ["slash_ancestor_totem_damage_+%"]=3721, - ["slash_ancestor_totem_elemental_resistance_%"]=2467, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3391, - ["slash_ancestor_totem_radius_+%"]=3722, - ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9355, - ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1098, - ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9356, - ["slayer_damage_+%_final_against_unique_enemies"]=9357, - ["slayer_damage_+%_final_from_distance"]=9358, - ["slither_elusive_effect_+%"]=9359, - ["slither_wither_stacks"]=9360, - ["slow_potency_+%_if_you_have_used_a_charm_recently"]=9361, - ["slows_have_no_potency_on_you"]=9362, - ["small_passives_effect_+%"]=9363, - ["smite_aura_effect_+%"]=9364, - ["smite_chance_for_lighting_to_strike_extra_target_%"]=9365, - ["smite_damage_+%"]=9366, - ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9367, - ["smoke_cloud_while_stationary_radius"]=9368, - ["smoke_mine_base_movement_velocity_+%"]=3689, - ["smoke_mine_duration_+%"]=3492, - ["snap_damage_+%_final_if_created_from_unique"]=9369, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9371, - ["snapping_adder_damage_+%"]=9370, - ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9372, - ["snipe_attack_speed_+%"]=9373, - ["snipe_damage_+%_final_if_created_from_unique"]=9374, - ["solaris_spear_number_of_pulses"]=9375, - ["solaris_spear_pulse_delay_ms"]=9375, - ["sorcery_ward_+%_strength"]=9376, - ["sorcery_ward_applies_to_physical_chaos"]=9377, - ["soul_eater_maximum_stacks"]=9378, - ["soul_eater_on_rare_kill_ms"]=3040, - ["soul_link_duration_+%"]=9379, - ["soulfeast_number_of_secondary_projectiles"]=9380, - ["soulrend_applies_hinder_movement_speed_+%"]=9381, - ["soulrend_damage_+%"]=9382, - ["soulrend_number_of_additional_projectiles"]=9383, - ["spark_damage_+%"]=3241, - ["spark_num_of_additional_projectiles"]=3535, - ["spark_number_of_additional_projectiles"]=9384, - ["spark_projectile_speed_+%"]=3481, - ["spark_projectiles_nova"]=9385, - ["spark_skill_effect_duration_+%"]=9386, - ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9387, - ["spawn_defender_with_totem"]=9388, - ["spear_accuracy_rating"]=1703, - ["spear_accuracy_rating_+%"]=1304, - ["spear_attack_speed_+%"]=1287, - ["spear_critical_strike_chance_+%"]=1329, - ["spear_critical_strike_multiplier_+"]=1352, - ["spear_damage_+%"]=1228, - ["spear_skills_inflict_bloodstone_lance_on_hit"]=9389, - ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=9390, - ["spectral_helix_damage_+%"]=9391, - ["spectral_helix_projectile_speed_+%"]=9392, - ["spectral_helix_rotations_%"]=9393, - ["spectral_shield_throw_additional_chains"]=9394, - ["spectral_shield_throw_damage_+%"]=9395, - ["spectral_shield_throw_num_of_additional_projectiles"]=9396, - ["spectral_shield_throw_projectile_speed_+%"]=9397, - ["spectral_shield_throw_secondary_projectiles_pierce"]=9398, - ["spectral_shield_throw_shard_projectiles_+%_final"]=9399, - ["spectral_spiral_weapon_base_number_of_bounces"]=9400, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9401, - ["spectral_throw_damage_+%"]=3242, - ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2866, - ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9402, - ["spectral_throw_projectile_deceleration_+%"]=3550, - ["spectral_throw_projectile_speed_+%"]=3482, - ["spectre_attack_and_cast_speed_+%"]=3457, - ["spectre_damage_+%"]=3067, - ["spectre_elemental_resistances_%"]=3566, - ["spectre_maximum_life_+"]=9403, - ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9405, - ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=9406, - ["spectres_critical_strike_chance_+%"]=9407, - ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=9408, - ["spectres_have_base_duration_ms"]=9409, - ["spell_additional_critical_strike_chance_permyriad"]=9410, - ["spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills"]=9411, - ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=9412, - ["spell_and_attack_maximum_added_cold_damage"]=1240, - ["spell_and_attack_maximum_added_fire_damage"]=1239, - ["spell_and_attack_maximum_added_lightning_damage"]=1270, - ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=9412, - ["spell_and_attack_minimum_added_cold_damage"]=1240, - ["spell_and_attack_minimum_added_fire_damage"]=1239, - ["spell_and_attack_minimum_added_lightning_damage"]=1270, - ["spell_area_damage_+%"]=9413, - ["spell_area_of_effect_+%"]=9414, - ["spell_bow_damage_+%"]=1143, - ["spell_chance_to_deal_double_damage_%"]=9415, - ["spell_chance_to_shock_frozen_enemies_%"]=2588, - ["spell_cold_damage_+%"]=1141, - ["spell_critical_strike_chance_+%"]=959, - ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=9417, - ["spell_critical_strike_chance_+%_per_100_max_life"]=9419, - ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=9418, - ["spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills"]=9416, - ["spell_critical_strike_chance_+%_per_raised_spectre"]=9420, - ["spell_critical_strike_chance_+%_while_dual_wielding"]=5491, - ["spell_critical_strike_chance_+%_while_holding_shield"]=5492, - ["spell_critical_strike_chance_+%_while_wielding_staff"]=5493, - ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5517, - ["spell_critical_strike_multiplier_+_while_holding_shield"]=5518, - ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5519, - ["spell_damage_+%"]=877, - ["spell_damage_+%_during_flask_effect"]=9432, - ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=9421, - ["spell_damage_+%_for_4_seconds_on_cast"]=3135, - ["spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds"]=9422, - ["spell_damage_+%_if_have_consumed_infusion_recently"]=9423, - ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=9433, - ["spell_damage_+%_if_have_crit_recently"]=9424, - ["spell_damage_+%_if_minion_died_recently"]=9425, - ["spell_damage_+%_if_other_ring_is_elder_item"]=3916, - ["spell_damage_+%_if_you_have_blocked_recently"]=9434, - ["spell_damage_+%_if_youve_reverted_recently"]=9426, - ["spell_damage_+%_per_100_max_life"]=9435, - ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=9436, - ["spell_damage_+%_per_100_max_mana_with_non_channelling_skills"]=9427, - ["spell_damage_+%_per_100_maximum_mana"]=9437, - ["spell_damage_+%_per_10_int"]=2419, - ["spell_damage_+%_per_10_spirit"]=9438, - ["spell_damage_+%_per_10_strength"]=9439, - ["spell_damage_+%_per_16_dex"]=9440, - ["spell_damage_+%_per_16_int"]=9441, - ["spell_damage_+%_per_16_strength"]=9442, - ["spell_damage_+%_per_200_mana_spent_recently"]=3927, - ["spell_damage_+%_per_5%_block_chance"]=2418, - ["spell_damage_+%_per_500_maximum_mana"]=9428, - ["spell_damage_+%_per_level"]=2622, - ["spell_damage_+%_per_power_charge"]=1828, - ["spell_damage_+%_per_rage"]=9429, - ["spell_damage_+%_while_dual_wielding"]=1145, - ["spell_damage_+%_while_es_full"]=2724, - ["spell_damage_+%_while_holding_shield"]=1144, - ["spell_damage_+%_while_no_mana_reserved"]=2726, - ["spell_damage_+%_while_not_low_mana"]=2727, - ["spell_damage_+%_while_shocked"]=9443, - ["spell_damage_+%_while_wielding_melee_weapon"]=9430, - ["spell_damage_+%_while_you_have_arcane_surge"]=9444, - ["spell_damage_+%_with_spells_that_cost_life"]=9431, - ["spell_damage_modifiers_apply_to_attack_damage"]=2371, - ["spell_damage_modifiers_apply_to_skill_dot"]=2377, - ["spell_damage_taken_+%_from_blinded_enemies"]=2858, - ["spell_damage_taken_+%_when_on_low_mana"]=2165, - ["spell_elemental_damage_+%"]=1751, - ["spell_fire_damage_+%"]=1140, - ["spell_hits_against_you_inflict_poison_%"]=9445, - ["spell_impale_magnitude_+%"]=9446, - ["spell_impale_on_crit_%_chance"]=9447, - ["spell_maximum_added_chaos_damage"]=1268, - ["spell_maximum_added_chaos_damage_while_dual_wielding"]=1794, - ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1795, - ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1796, - ["spell_maximum_added_cold_damage"]=1266, - ["spell_maximum_added_cold_damage_per_power_charge"]=1531, - ["spell_maximum_added_cold_damage_while_dual_wielding"]=1797, - ["spell_maximum_added_cold_damage_while_holding_a_shield"]=1798, - ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1799, - ["spell_maximum_added_fire_damage"]=1265, - ["spell_maximum_added_fire_damage_while_dual_wielding"]=1800, - ["spell_maximum_added_fire_damage_while_holding_a_shield"]=1801, - ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1802, - ["spell_maximum_added_lightning_damage"]=1267, - ["spell_maximum_added_lightning_damage_while_dual_wielding"]=1803, - ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1804, - ["spell_maximum_added_lightning_damage_while_unarmed"]=2135, - ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1805, - ["spell_maximum_added_physical_damage"]=1264, - ["spell_maximum_added_physical_damage_while_dual_wielding"]=1806, - ["spell_maximum_added_physical_damage_while_holding_a_shield"]=1807, - ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1808, - ["spell_maximum_base_chaos_damage"]=1258, - ["spell_maximum_base_cold_damage"]=1256, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1269, - ["spell_maximum_base_fire_damage"]=1255, - ["spell_maximum_base_lightning_damage"]=1257, - ["spell_maximum_base_physical_damage"]=1254, - ["spell_minimum_added_chaos_damage"]=1268, - ["spell_minimum_added_chaos_damage_while_dual_wielding"]=1794, - ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1795, - ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1796, - ["spell_minimum_added_cold_damage"]=1266, - ["spell_minimum_added_cold_damage_per_power_charge"]=1531, - ["spell_minimum_added_cold_damage_while_dual_wielding"]=1797, - ["spell_minimum_added_cold_damage_while_holding_a_shield"]=1798, - ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1799, - ["spell_minimum_added_fire_damage"]=1265, - ["spell_minimum_added_fire_damage_while_dual_wielding"]=1800, - ["spell_minimum_added_fire_damage_while_holding_a_shield"]=1801, - ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1802, - ["spell_minimum_added_lightning_damage"]=1267, - ["spell_minimum_added_lightning_damage_while_dual_wielding"]=1803, - ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1804, - ["spell_minimum_added_lightning_damage_while_unarmed"]=2135, - ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1805, - ["spell_minimum_added_physical_damage"]=1264, - ["spell_minimum_added_physical_damage_while_dual_wielding"]=1806, - ["spell_minimum_added_physical_damage_while_holding_a_shield"]=1807, - ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1808, - ["spell_minimum_base_chaos_damage"]=1258, - ["spell_minimum_base_cold_damage"]=1256, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1269, - ["spell_minimum_base_fire_damage"]=1255, - ["spell_minimum_base_lightning_damage"]=1257, - ["spell_minimum_base_physical_damage"]=1254, - ["spell_physical_damage_+%"]=884, - ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=9448, - ["spell_repeat_count"]=1595, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=9449, - ["spell_skill_gem_level_+"]=946, - ["spell_skill_projectile_speed_+%"]=9450, - ["spell_skills_additional_totems_allowed"]=9451, - ["spell_skills_always_crit_on_final_repeat"]=9452, - ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=9453, - ["spell_skills_deal_no_damage"]=9454, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=9455, - ["spell_skills_never_crit_except_on_final_repeat"]=9456, - ["spell_staff_damage_+%"]=1142, - ["spells_chance_to_hinder_on_hit_%"]=9457, - ["spells_chance_to_knockback_on_hit_%"]=9458, - ["spells_chance_to_poison_on_hit_%"]=9459, - ["spells_cost_life_instead_of_mana_%"]=9460, - ["spells_gain_%_physical_damage_if_they_cost_life"]=9461, - ["spells_have_culling_strike"]=2225, - ["spells_have_x%_chance_inflict_withered_on_hit"]=9462, - ["spells_impale_on_hit_%_chance"]=9463, - ["spells_number_of_additional_projectiles"]=3897, - ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=9465, - ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=9464, - ["spellslinger_cooldown_duration_+%"]=9466, - ["spellslinger_mana_reservation_+%"]=9469, - ["spellslinger_mana_reservation_efficiency_+%"]=9468, - ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=9467, - ["spend_energy_shield_for_costs_before_mana"]=2755, - ["spending_energy_shield_does_not_interrupt_recharge"]=9470, - ["spider_aspect_debuff_duration_+%"]=9471, - ["spider_aspect_skill_area_of_effect_+%"]=9472, - ["spider_aspect_web_interval_ms_override"]=9473, - ["spike_slam_num_spikes"]=9474, - ["spirit_+%"]=1380, - ["spirit_+%_if_you_have_at_least_100_tribute"]=9475, - ["spirit_+%_per_stackable_unique_jewel"]=9483, - ["spirit_+_if_at_least_200_dexterity"]=9476, - ["spirit_+_if_at_least_200_intelligence"]=9477, - ["spirit_+_if_at_least_200_strength"]=9478, - ["spirit_+_per_empty_charm_slot"]=9479, - ["spirit_does_not_exist"]=9480, - ["spirit_offering_critical_strike_chance_+%"]=9481, - ["spirit_offering_critical_strike_multiplier_+"]=9482, - ["spirit_offering_duration_+%"]=3491, - ["spirit_offering_effect_+%"]=1097, - ["spirit_offering_physical_damage_%_to_gain_as_chaos"]=3763, - ["split_arrow_critical_strike_chance_+%"]=3526, - ["split_arrow_damage_+%"]=3243, - ["split_arrow_num_of_additional_projectiles"]=3536, - ["split_arrow_number_of_additional_arrows"]=2802, - ["split_arrow_projectiles_fire_in_parallel_x_dist"]=9484, - ["splitting_steel_area_of_effect_+%"]=9486, - ["splitting_steel_damage_+%"]=9487, - ["spread_ignite_from_killed_enemies_range"]=9488, - ["sprint_movement_speed_+%"]=9489, - ["stacking_damage_+%_on_kill_for_4_seconds"]=3207, - ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=2936, - ["staff_accuracy_rating"]=1700, - ["staff_block_%"]=1081, - ["staff_elemental_damage_+%"]=1810, - ["staff_stun_duration_+%"]=1572, - ["stance_skill_cooldown_speed_+%"]=9493, - ["stance_skill_reservation_+%"]=9495, - ["stance_skills_mana_reservation_efficiency_+%"]=9494, - ["stance_swap_cooldown_modifier_ms"]=9497, - ["start_at_zero_energy_shield"]=9499, - ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=9500, - ["static_strike_additional_number_of_beam_targets"]=9501, - ["static_strike_damage_+%"]=3266, - ["static_strike_duration_+%"]=3518, - ["static_strike_radius_+%"]=3406, - ["status_ailments_removed_at_low_life"]=2946, - ["status_ailments_you_inflict_duration_+%_while_focused"]=9502, - ["status_ailments_you_inflict_duration_+%_with_bows"]=9503, - ["stealth_+%"]=9504, - ["stealth_+%_if_have_hit_with_claw_recently"]=9505, - ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4470, - ["steel_steal_area_of_effect_+%"]=9506, - ["steel_steal_cast_speed_+%"]=9507, - ["steel_steal_reflect_damage_+%"]=9508, - ["steelskin_damage_limit_+%"]=9509, - ["stibnite_flask_evasion_rating_+%_final"]=9510, - ["stone_golem_damage_+%"]=3289, - ["stone_golem_elemental_resistances_%"]=3568, - ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=9511, - ["storm_armageddon_sigils_can_target_reaper_minions"]=9512, - ["storm_barrier_effect_+%"]=9513, - ["storm_blade_has_local_attack_speed_+%"]=9514, - ["storm_blade_has_local_lightning_penetration_%"]=9515, - ["storm_blade_quality_chance_to_shock_%"]=9516, - ["storm_blade_quality_local_critical_strike_chance_+%"]=9517, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9518, - ["storm_brand_additional_chain_chance_%"]=9519, - ["storm_brand_attached_target_lightning_penetration_%"]=9520, - ["storm_brand_damage_+%"]=9521, - ["storm_burst_15_%_chance_to_create_additional_orb"]=9522, - ["storm_burst_additional_object_chance_%"]=9523, - ["storm_burst_area_of_effect_+%"]=9524, - ["storm_burst_avoid_interruption_while_casting_%"]=9525, - ["storm_burst_damage_+%"]=3331, - ["storm_burst_number_of_additional_projectiles"]=9526, - ["storm_call_damage_+%"]=3267, - ["storm_call_duration_+%"]=3519, - ["storm_call_radius_+%"]=3407, - ["storm_cloud_charge_count"]=3055, - ["storm_cloud_charged_damage_+%_final"]=3056, - ["storm_cloud_critical_strike_chance_+%"]=3531, - ["storm_cloud_radius_+%"]=3434, - ["storm_rain_damage_+%"]=9527, - ["storm_rain_num_additional_arrows"]=9528, - ["storm_skill_limit_+"]=9529, - ["stormbind_skill_area_of_effect_+%"]=9530, - ["stormbind_skill_damage_+%"]=9531, - ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=9532, - ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=9533, - ["stormweaver_chill_effect_+%_final"]=9534, - ["stormweaver_shock_effect_+%_final"]=9535, - ["strength_+%"]=1104, - ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=9536, - ["strength_inherently_grants_accuracy_instead_of_life"]=1707, - ["strength_skill_gem_level_+"]=9537, - ["strike_skills_knockback_on_melee_hit"]=9538, - ["stun_and_ailment_threshold_+%_while_surrounded"]=9539, - ["stun_duration_+%"]=1694, - ["stun_duration_+%_per_15_strength"]=9541, - ["stun_duration_+%_per_endurance_charge"]=9542, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=2957, - ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=2958, - ["stun_duration_on_critical_strike_+%"]=9540, - ["stun_duration_on_self_+%"]=3753, - ["stun_nearby_enemies_when_stunned_chance_%"]=9543, - ["stun_recovery_+%_per_frenzy_charge"]=1601, - ["stun_threshold_+"]=1018, - ["stun_threshold_+%"]=2902, - ["stun_threshold_+%_during_empowered_attacks"]=9544, - ["stun_threshold_+%_for_each_time_hit_recently_up_to_100%"]=9545, - ["stun_threshold_+%_if_youve_shapeshifted_to_animal_recently"]=9546, - ["stun_threshold_+%_per_25_tribute"]=9547, - ["stun_threshold_+%_per_number_of_times_stunned_recently"]=9548, - ["stun_threshold_+%_per_rage"]=10033, - ["stun_threshold_+%_when_not_stunned_recently"]=9557, - ["stun_threshold_+%_when_on_full_life"]=9558, - ["stun_threshold_+%_while_channelling"]=9549, - ["stun_threshold_+%_while_shapeshifted"]=9550, - ["stun_threshold_+_from_%_maximum_energy_shield"]=9555, - ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=9551, - ["stun_threshold_+_per_dexterity"]=9552, - ["stun_threshold_+_per_strength"]=9553, - ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=9554, - ["stun_threshold_based_on_%_mana_instead_of_life"]=2901, - ["stun_threshold_based_on_energy_shield_instead_of_life"]=3846, - ["stun_threshold_reduction_+%_while_using_flask"]=2589, - ["stun_threshold_reduction_+%_with_500_or_more_strength"]=9559, - ["stuns_have_culling_strike"]=1725, - ["summon_2_totems"]=9560, - ["summon_arbalist_attack_speed_+%"]=9561, - ["summon_arbalist_chains_+"]=9562, - ["summon_arbalist_chance_to_bleed_%"]=9563, - ["summon_arbalist_chance_to_crush_on_hit_%"]=9564, - ["summon_arbalist_chance_to_deal_double_damage_%"]=9565, - ["summon_arbalist_chance_to_freeze_%"]=9580, - ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=9582, - ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=9583, - ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=9584, - ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=9566, - ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=9567, - ["summon_arbalist_chance_to_poison_%"]=9568, - ["summon_arbalist_chance_to_shock_%"]=9581, - ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=9569, - ["summon_arbalist_number_of_additional_projectiles"]=9570, - ["summon_arbalist_number_of_splits"]=9571, - ["summon_arbalist_projectiles_fork"]=9578, - ["summon_arbalist_targets_to_pierce"]=9579, - ["summon_raging_spirit_melee_splash_fire_damage_only"]=9585, - ["summon_reaper_cooldown_speed_+%"]=9586, - ["summon_skeleton_gem_level_+"]=1429, - ["summon_skeletons_additional_warrior_skeleton_%_chance"]=9588, - ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=9587, - ["summon_skeletons_cooldown_modifier_ms"]=9589, - ["summon_skeletons_num_additional_warrior_skeletons"]=3583, - ["summon_skitterbots_area_of_effect_+%"]=9590, - ["summon_skitterbots_mana_reservation_+%"]=9591, - ["summon_totem_cast_speed_+%"]=2274, - ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=9572, - ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=9573, - ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=9574, - ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=9575, - ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=9576, - ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=9577, - ["summoned_phantasms_grant_buff"]=9592, - ["summoned_phantasms_have_no_duration"]=9593, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3029, - ["summoned_raging_spirit_duration_+%"]=3028, - ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=9594, - ["summoned_reaper_damage_+%"]=9595, - ["summoned_reaper_physical_dot_multiplier_+"]=9596, - ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=9597, - ["summoned_skeleton_%_physical_to_chaos"]=9598, - ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=3993, - ["summoned_skeletons_cover_in_ash_on_hit_%"]=9599, - ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=9600, - ["summoned_skeletons_have_avatar_of_fire"]=10103, - ["summoned_skeletons_hits_cant_be_evaded"]=9601, - ["summoned_skitterbots_cooldown_recovery_+%"]=9602, - ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=9603, - ["sunder_wave_delay_+%"]=3437, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=9604, - ["support_anticipation_charge_gain_frequency_+%"]=9605, - ["support_approaching_storms_area_of_effect_+%_final"]=9606, - ["support_approaching_storms_damage_+%_final"]=9607, - ["support_approaching_storms_movement_speed_+%_final"]=9608, - ["support_buffed_heralds_buff_effect_+%_final"]=9609, - ["support_deadly_heralds_buff_effect_+%_final"]=9610, - ["support_deadly_heralds_damage_+%_final"]=9611, - ["support_fast_forward_detonation_time_+%_final"]=9612, - ["support_gem_elemental_damage_+%_final"]=3193, - ["support_gems_socketed_in_amulet_also_support_body_skills"]=192, - ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=193, - ["support_hourglass_damage_+%_final"]=9613, - ["support_jagged_ground_chance_%"]=9614, - ["support_last_gasp_duration_ms"]=9615, - ["support_maimed_enemies_physical_damage_taken_+%"]=9616, - ["support_minion_maximum_life_+%_final"]=1474, - ["support_mirage_archer_base_duration"]=9618, - ["support_slashing_damage_+%_final_from_distance"]=9619, - ["support_slower_projectiles_damage_+%_final"]=2521, - ["supported_active_skill_gem_expereince_gained_+%"]=2565, - ["supported_active_skill_gem_level_+"]=2439, - ["supported_active_skill_gem_quality_%"]=2497, - ["supported_aura_skill_gem_level_+"]=9620, - ["supported_cold_skill_gem_level_+"]=9621, - ["supported_elemental_skill_gem_level_+"]=9622, - ["supported_fire_skill_gem_level_+"]=9623, - ["supported_lightning_skill_gem_level_+"]=9624, - ["surrounded_area_of_effect_+%"]=9625, - ["sweep_add_endurance_charge_on_hit_%"]=3408, - ["sweep_damage_+%"]=3268, - ["sweep_knockback_chance_%"]=3561, - ["sweep_radius_+%"]=3409, - ["sword_accuracy_rating"]=1695, - ["sword_accuracy_rating_+%"]=1302, - ["sword_attack_speed_+%"]=1285, - ["sword_critical_strike_chance_+%"]=1324, - ["sword_critical_strike_multiplier_+"]=1348, - ["sword_damage_+%"]=1220, - ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=9626, - ["synthesis_map_global_mod_values_doubled_on_this_node"]=9627, - ["synthesis_map_global_mod_values_tripled_on_this_node"]=9628, - ["synthesis_map_memories_do_not_collapse_on_this_node"]=9629, - ["synthesis_map_monster_slain_experience_+%_on_this_node"]=9630, - ["synthesis_map_nearby_memories_have_bonus"]=9631, - ["synthesis_map_node_additional_uses_+"]=9632, - ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=9633, - ["synthesis_map_node_grants_additional_global_mod"]=9634, - ["synthesis_map_node_grants_no_global_mod"]=9635, - ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=9636, - ["synthesis_map_node_item_quantity_increases_doubled"]=9637, - ["synthesis_map_node_item_rarity_increases_doubled"]=9638, - ["synthesis_map_node_level_+"]=9639, - ["synthesis_map_node_monsters_drop_no_items"]=9640, - ["synthesis_map_node_pack_size_increases_doubled"]=9641, - ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=9642, - ["tailwind_effect_on_self_+%"]=9643, - ["tailwind_effect_on_self_+%_per_gale_force"]=9644, - ["tailwind_if_have_crit_recently"]=9645, - ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=9646, - ["take_chaos_damage_from_ignite_instead"]=2149, - ["take_half_area_damage_from_hit_%_chance"]=9647, - ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=9648, - ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=9649, - ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=9650, - ["taunt_duration_+%"]=1491, - ["taunt_on_projectile_hit_chance_%"]=9651, - ["taunted_enemies_by_warcry_damage_taken_+%"]=9652, - ["taunted_enemies_chance_to_be_stunned_+%"]=2850, - ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3829, - ["taunted_enemies_damage_taken_+%"]=2851, - ["tectonic_slam_%_chance_to_do_charged_slam"]=9658, - ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=9653, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=9654, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=9655, - ["tectonic_slam_area_of_effect_+%"]=9656, - ["tectonic_slam_damage_+%"]=9657, - ["tectonic_slam_side_crack_additional_chance_%"]=9660, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=9659, - ["tempest_shield_buff_effect_+%"]=9661, - ["tempest_shield_damage_+%"]=3313, - ["tempest_shield_num_of_additional_projectiles_in_chain"]=3610, - ["temporal_chains_curse_effect_+%"]=3590, - ["temporal_chains_duration_+%"]=3497, - ["temporal_chains_effect_on_self_+%"]=1445, - ["temporal_chains_gem_level_+"]=1956, - ["temporal_chains_ignores_hexproof"]=2301, - ["temporal_chains_mana_reservation_+%"]=3631, - ["temporal_chains_no_reservation"]=9662, - ["temporal_rift_cooldown_speed_+%"]=9663, - ["temporary_minion_limit_+"]=9664, - ["thaumaturgy_rotation_active"]=9665, - ["thorns_critical_strike_chance_+%"]=9666, - ["thorns_damage_+%"]=9670, - ["thorns_damage_+%_if_blocked_recently"]=9671, - ["thorns_damage_+%_if_consumed_endurance_charge_recently"]=9667, - ["thorns_damage_+%_per_10_tribute"]=9668, - ["thorns_damage_has_%_chance_to_ignore_armour"]=9669, - ["thorns_maximum_base_chaos_damage"]=9673, - ["thorns_maximum_base_cold_damage"]=9674, - ["thorns_maximum_base_fire_damage"]=9675, - ["thorns_maximum_base_lightning_damage"]=9676, - ["thorns_maximum_base_physical_damage"]=9677, - ["thorns_maximum_fire_damage_per_100_life"]=9672, - ["thorns_minimum_base_chaos_damage"]=9673, - ["thorns_minimum_base_cold_damage"]=9674, - ["thorns_minimum_base_fire_damage"]=9675, - ["thorns_minimum_base_lightning_damage"]=9676, - ["thorns_minimum_base_physical_damage"]=9677, - ["thorns_minimum_fire_damage_per_100_life"]=9672, - ["thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute"]=9678, - ["thorns_proc_off_any_hit"]=9679, - ["threshold_jewel_magma_orb_damage_+%_final"]=9680, - ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=9681, - ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=9682, - ["thrown_shield_secondary_projectile_damage_+%_final"]=9683, - ["titan_additional_inventory"]=9684, - ["titan_damage_+%_final_against_heavy_stunned_enemies"]=9685, - ["titan_expanded_main_inventory"]=9686, - ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=9687, - ["titan_maximum_life_+%_final"]=9688, - ["tornado_damage_+%"]=9690, - ["tornado_damage_frequency_+%"]=9689, - ["tornado_movement_speed_+%"]=9691, - ["tornado_only_primary_duration_+%"]=9692, - ["tornado_shot_critical_strike_chance_+%"]=3530, - ["tornado_shot_damage_+%"]=3273, - ["tornado_shot_num_of_secondary_projectiles"]=3538, - ["tornado_skill_area_of_effect_+%"]=9693, - ["total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence"]=923, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3378, - ["totem_additional_physical_damage_reduction_%"]=2468, - ["totem_aura_enemy_damage_+%_final"]=3380, - ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3381, - ["totem_chaos_immunity"]=9695, - ["totem_chaos_resistance_%"]=9696, - ["totem_critical_strike_chance_+%"]=1342, - ["totem_critical_strike_multiplier_+"]=1365, - ["totem_damage_+%"]=1113, - ["totem_damage_+%_final_per_active_totem"]=3342, - ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=9698, - ["totem_damage_+%_per_10_devotion"]=9699, - ["totem_damage_+%_per_active_curse_on_self"]=9697, - ["totem_duration_+%"]=1487, - ["totem_elemental_resistance_%"]=2466, - ["totem_energy_shield_+%"]=1485, - ["totem_fire_immunity"]=1425, - ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=9700, - ["totem_life_+%"]=1483, - ["totem_mana_+%"]=1484, - ["totem_maximum_all_elemental_resistances_%"]=468, - ["totem_maximum_energy_shield"]=9701, - ["totem_number_of_additional_projectiles"]=2725, - ["totem_only_uses_skill_when_owner_attacks"]=9702, - ["totem_placement_range_+%"]=9703, - ["totem_range_+%"]=1486, - ["totem_skill_area_of_effect_+%"]=2277, - ["totem_skill_attack_speed_+%"]=2276, - ["totem_skill_cast_speed_+%"]=2275, - ["totem_skill_gem_level_+"]=9704, - ["totem_spells_damage_+%"]=9705, - ["totemified_skills_taunt_on_hit_%"]=3044, - ["totems_action_speed_cannot_be_modified_below_base"]=9694, - ["totems_attack_speed_+%_per_active_totem"]=3771, - ["totems_cannot_be_stunned"]=2708, - ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=2937, - ["totems_explode_on_death_for_%_life_as_physical"]=9706, - ["totems_nearby_enemies_damage_taken_+%"]=9707, - ["totems_regenerate_%_life_per_minute"]=9708, - ["totems_resist_all_elements_+%_per_active_totem"]=3755, - ["totems_spells_cast_speed_+%_per_active_totem"]=3759, - ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=9709, - ["tower_add_abyss_to_X_maps"]=9710, - ["tower_add_breach_to_X_maps"]=9711, - ["tower_add_delirium_to_X_maps"]=9712, - ["tower_add_expedition_to_X_maps"]=9713, - ["tower_add_irradiated_to_X_maps"]=9714, - ["tower_add_map_bosses_to_X_maps"]=9715, - ["tower_add_ritual_to_X_maps"]=9716, - ["toxic_rain_damage_+%"]=9717, - ["toxic_rain_num_of_additional_projectiles"]=9718, - ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=9719, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2596, - ["trap_%_chance_to_trigger_twice"]=3386, - ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=9720, - ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2463, - ["trap_and_mine_maximum_added_physical_damage"]=3385, - ["trap_and_mine_minimum_added_physical_damage"]=3385, - ["trap_and_mine_throwing_speed_+%"]=9721, - ["trap_critical_strike_chance_+%"]=960, - ["trap_critical_strike_multiplier_+"]=964, - ["trap_damage_+%"]=878, - ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3383, - ["trap_damage_buildup_damage_+%_final_when_first_set"]=3382, - ["trap_damage_penetrates_%_elemental_resistance"]=2461, - ["trap_duration_+%"]=1616, - ["trap_or_mine_damage_+%"]=1114, - ["trap_skill_added_cooldown_count"]=9722, - ["trap_skill_area_of_effect_+%"]=3086, - ["trap_skill_gem_level_+"]=956, - ["trap_spread_+%"]=9723, - ["trap_throw_skills_have_blood_magic"]=10114, - ["trap_throwing_speed_+%"]=1621, - ["trap_throwing_speed_+%_per_frenzy_charge"]=9724, - ["trap_trigger_radius_+%"]=1619, - ["traps_and_mines_%_chance_to_poison"]=3670, - ["traps_cannot_be_triggered_by_enemies"]=9725, - ["traps_do_not_explode_on_timeout"]=2458, - ["traps_explode_on_timeout"]=2459, - ["traps_invulnerable"]=9726, - ["traps_invulnerable_for_duration_ms"]=2464, - ["travel_skill_cooldown_speed_+%"]=3963, - ["travel_skills_cannot_be_exerted"]=9727, - ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=3973, - ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=9728, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=9729, - ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=9730, - ["trickster_damage_+%_final_per_different_mastery"]=1447, - ["trickster_damage_over_time_+%_final"]=9731, - ["trigger_elemental_storm_on_crit"]=9732, - ["trigger_skills_refund_half_energy_spent_chance_%"]=9733, - ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=626, - ["trigger_socketed_spell_on_attack_%"]=627, - ["trigger_socketed_spell_on_skill_use_%"]=629, - ["trigger_socketed_spells_when_you_focus_%"]=630, - ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=132, - ["trigger_wild_strike_on_attack_crit"]=9734, - ["triggerbots_damage_+%_final_with_triggered_spells"]=9735, - ["triggered_spell_spell_damage_+%"]=9736, - ["triggers_burning_runes_on_placing_ground_rune"]=9737, - ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=9738, - ["trinity_damage_+%_final_to_grant_per_50_resonance"]=9739, - ["trinity_loss_per_hit"]=9740, - ["trinity_resonance_to_grant"]=9740, - ["two_handed_melee_accuracy_rating_+%"]=1295, - ["two_handed_melee_area_damage_+%"]=9741, - ["two_handed_melee_area_of_effect_+%"]=9742, - ["two_handed_melee_attack_speed_+%"]=1277, - ["two_handed_melee_cold_damage_+%"]=1192, - ["two_handed_melee_critical_strike_chance_+%"]=1332, - ["two_handed_melee_critical_strike_multiplier_+"]=1333, - ["two_handed_melee_fire_damage_+%"]=1191, - ["two_handed_melee_physical_damage_+%"]=1189, - ["two_handed_melee_stun_duration_+%"]=1570, - ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=9743, - ["uber_domain_monster_all_resistances_+%_per_revival"]=9744, - ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=9745, - ["uber_domain_monster_avoid_stun_%_per_revival"]=9746, - ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=9747, - ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=9748, - ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=9749, - ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=9750, - ["uber_domain_monster_maximum_life_+%_per_revival"]=9751, - ["uber_domain_monster_movement_speed_+%_per_revival"]=9752, - ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=9753, - ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=9754, - ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=9755, - ["uber_domain_monster_reward_chance_+%"]=9756, - ["ultimatum_wager_type_hash"]=44, - ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=9757, - ["unaffected_by_bleeding_while_affected_by_malevolence"]=9758, - ["unaffected_by_bleeding_while_leeching"]=9759, - ["unaffected_by_blind"]=9760, - ["unaffected_by_burning_ground"]=9761, - ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=9762, - ["unaffected_by_chill"]=9763, - ["unaffected_by_chill_during_dodge_roll"]=9764, - ["unaffected_by_chill_while_channelling"]=9765, - ["unaffected_by_chill_while_mana_leeching"]=9766, - ["unaffected_by_chilled_ground"]=9767, - ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=9768, - ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=9769, - ["unaffected_by_corrupted_blood_while_leeching"]=9770, - ["unaffected_by_curses"]=2172, - ["unaffected_by_curses_while_affected_by_zealotry"]=9771, - ["unaffected_by_damaging_ailments"]=9772, - ["unaffected_by_desecrated_ground"]=9773, - ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=9774, - ["unaffected_by_enfeeble_while_affected_by_grace"]=9775, - ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=9776, - ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=9777, - ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=9778, - ["unaffected_by_ignite"]=9779, - ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=9780, - ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=9781, - ["unaffected_by_poison_while_affected_by_malevolence"]=9782, - ["unaffected_by_shock"]=9783, - ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=9784, - ["unaffected_by_shock_while_channelling"]=9785, - ["unaffected_by_shocked_ground"]=9786, - ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=9787, - ["unaffected_by_temporal_chains"]=9788, - ["unaffected_by_temporal_chains_while_affected_by_haste"]=9789, - ["unaffected_by_vulnerability_while_affected_by_determination"]=9790, - ["unarmed_attack_skill_melee_dash_range_+%"]=9791, - ["unarmed_attack_speed_+%"]=9792, - ["unarmed_damage_+%_vs_bleeding_enemies"]=3170, - ["unarmed_melee_attack_speed_+%"]=1289, - ["unarmed_melee_physical_damage_+%"]=1193, - ["unattached_sigil_attachment_range_+%_per_second"]=9793, - ["unbound_ailment_elemental_ailment_chance_+%_final"]=9794, - ["unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final"]=9795, - ["undead_minion_reservation_+%"]=9797, - ["unearth_additional_corpse_level"]=9798, - ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=9799, - ["unholy_might_while_you_have_no_energy_shield"]=2417, - ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=9800, - ["unique_add_power_charge_on_melee_knockback_%"]=2598, - ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=9801, - ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=9801, - ["unique_blood_barrier_corrupted_blood_duration_ms"]=9801, - ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=9802, - ["unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield"]=9803, - ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4003, - ["unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life"]=3901, - ["unique_boots_secondary_ground_shock_while_moving"]=3902, - ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10118, - ["unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence"]=4013, - ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2628, - ["unique_chill_duration_+%_when_in_off_hand"]=2447, - ["unique_chin_sol_close_range_bow_damage_+%_final"]=2139, - ["unique_chin_sol_close_range_knockback"]=2140, - ["unique_cold_damage_ignites"]=2533, - ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1439, - ["unique_cooldown_modifier_ms"]=9804, - ["unique_critical_strike_chance_+%_final"]=2503, - ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=9805, - ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=9806, - ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2160, - ["unique_double_presence_radius"]=9807, - ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2133, - ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1435, - ["unique_fire_damage_shocks"]=2532, - ["unique_gain_onslaught_when_hit_duration_ms"]=2505, - ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2520, - ["unique_gain_power_charge_on_non_crit"]=2573, - ["unique_gain_soul_eater"]=9808, - ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=9809, - ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=9810, - ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=9811, - ["unique_jewel_flask_duration_+%_final"]=9812, - ["unique_jewel_grants_notable_hash_1"]=9813, - ["unique_jewel_grants_notable_hash_2"]=9814, - ["unique_jewel_grants_notable_hash_3"]=9815, - ["unique_jewel_grants_notable_hash_part_1"]=9816, - ["unique_jewel_grants_notable_hash_part_2"]=9817, - ["unique_jewel_reserved_blood_maximum_life_+%_final"]=9818, - ["unique_jewel_specific_skill_level_+_level"]=9819, - ["unique_jewel_specific_skill_level_+_skill"]=9819, - ["unique_lightning_damage_freezes"]=2534, - ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1442, - ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1252, - ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1238, - ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1232, - ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1252, - ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1238, - ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1232, - ["unique_loris_lantern_golden_light"]=2250, - ["unique_lose_a_power_charge_when_hit"]=9821, - ["unique_lose_all_endurance_charges_when_hit"]=2504, - ["unique_lose_all_power_charges_on_crit"]=2574, - ["unique_map_boss_class_of_rare_items_to_drop"]=2400, - ["unique_map_boss_number_of_rare_items_to_drop"]=2400, - ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2628, - ["unique_mine_damage_+%_final"]=1116, - ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2628, - ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=9822, - ["unique_monster_dropped_item_rarity_+%"]=9823, - ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=9824, - ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2641, - ["unique_no_curse_delay"]=9825, - ["unique_primordial_tether_golem_damage_+%_final"]=3296, - ["unique_primordial_tether_golem_life_+%_final"]=3674, - ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=9826, - ["unique_quill_rain_damage_+%_final"]=2152, - ["unique_recover_%_maximum_life_on_x_altenator"]=9827, - ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=9828, - ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=9829, - ["unique_revive_permanent_minions_on_mana_flask_use"]=9830, - ["unique_ryslathas_coil_maximum_physical_attack_damage_+%_final"]=1118, - ["unique_ryslathas_coil_minimum_physical_attack_damage_+%_final"]=1119, - ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=9831, - ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=9832, - ["unique_spirit_reservations_are_halved"]=9833, - ["unique_sunblast_throw_traps_in_circle_radius"]=9834, - ["unique_two_handed_weapon_lightning_stun_multiplier_+%_final"]=9835, - ["unique_volkuurs_clutch_poison_duration_+%_final"]=2811, - ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2587, - ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=9836, - ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=9837, - ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=9838, - ["unnerve_for_4_seconds_on_hit_with_wands"]=9839, - ["unnerve_nearby_enemies_on_use_for_ms"]=9840, - ["unveiled_mod_effect_+%"]=71, - ["utility_flask_charges_recovered_per_3_seconds"]=9841, - ["utility_flask_cold_damage_taken_+%_final"]=9842, - ["utility_flask_fire_damage_taken_+%_final"]=9843, - ["utility_flask_lightning_damage_taken_+%_final"]=9844, - ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2376, - ["vaal_skill_critical_strike_chance_+%"]=2749, - ["vaal_skill_critical_strike_multiplier_+"]=2750, - ["vaal_skill_damage_+%"]=2737, - ["vaal_skill_effect_duration_+%"]=2747, - ["vaal_skill_gem_level_+"]=9845, - ["vaal_skill_soul_cost_+%"]=9846, - ["vaal_skill_soul_gain_preventation_duration_+%"]=2748, - ["vaal_skill_soul_refund_chance_%"]=9847, - ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=9848, - ["vampiric_link_duration_+%"]=9849, - ["vengeance_cooldown_speed_+%"]=3474, - ["vengeance_damage_+%"]=3318, - ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=9850, - ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2880, - ["vigilant_strike_damage_+%"]=3306, - ["vigilant_strike_fortify_duration_+%"]=3494, - ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=9851, - ["viper_strike_critical_strike_chance_+%"]=3527, - ["viper_strike_damage_+%"]=3248, - ["viper_strike_dual_wield_damage_+%_final"]=9852, - ["viper_strike_poison_duration_+%"]=3516, - ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3010, - ["virtual_block_%_damage_taken"]=9853, - ["virtual_chance_to_gain_1_more_endurance_charge_%"]=9854, - ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=9855, - ["virtual_chance_to_gain_1_more_power_charge_%"]=9856, - ["virtual_energy_shield_delay_-%"]=3180, - ["virtual_energy_shield_recharge_rate_+%"]=3182, - ["virtual_glory_generation_+%"]=9857, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break"]=9858, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit"]=9859, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun"]=9860, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite"]=9861, - ["virtual_light_radius_+%"]=2194, - ["virtual_mana_gain_per_target"]=1459, - ["virtual_maximum_curse_zones_allowed"]=9862, - ["virtual_minion_damage_+%"]=1672, - ["virtual_number_of_banners_allowed"]=9863, - ["virtual_number_of_ranged_animated_weapons_allowed"]=2900, - ["virulent_arrow_additional_spores_at_max_stages"]=9864, - ["virulent_arrow_chance_to_poison_%_per_stage"]=9865, - ["vitality_mana_reservation_+%"]=3623, - ["vitality_mana_reservation_efficiency_+%"]=9867, - ["vitality_mana_reservation_efficiency_-2%_per_1"]=9866, - ["vitality_reserves_no_mana"]=9868, - ["vivisection_damage_+%_final"]=9869, - ["vivisection_defences_+%_final"]=9870, - ["vivisection_maximum_life_+%_final"]=9871, - ["vivisection_maximum_mana_+%_final"]=9872, - ["vivisection_movement_speed_+%_final"]=9873, - ["vivisection_spirit_+%_final"]=9874, - ["void_sphere_cooldown_speed_+%"]=9875, - ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=9876, - ["volatile_dead_base_number_of_corpses_to_consume"]=9877, - ["volatile_dead_cast_speed_+%"]=9878, - ["volatile_dead_consume_additional_corpse"]=9879, - ["volatile_dead_damage_+%"]=9880, - ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=9881, - ["volatility_critical_strike_chance_+%_to_grant"]=9882, - ["volatility_detonation_delay_+%"]=9883, - ["volatility_on_kill_%_chance"]=9884, - ["volatility_physical_damage_taken_%_as_cold"]=9885, - ["volatility_refresh_%_chance"]=9886, - ["volatility_when_stunned_%_chance"]=9887, - ["volcanic_fissure_damage_+%"]=9888, - ["volcanic_fissure_number_of_additional_projectiles"]=9889, - ["volcanic_fissure_speed_+%"]=9890, - ["voltaxic_burst_damage_+%"]=9891, - ["voltaxic_burst_damage_+%_per_100ms_duration"]=9892, - ["voltaxic_burst_skill_area_of_effect_+%"]=9893, - ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=9894, - ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=9895, - ["vulnerability_curse_effect_+%"]=3598, - ["vulnerability_duration_+%"]=3499, - ["vulnerability_gem_level_+"]=1957, - ["vulnerability_ignores_hexproof"]=2302, - ["vulnerability_mana_reservation_+%"]=3632, - ["vulnerability_no_reservation"]=9896, - ["wand_accuracy_rating"]=1702, - ["wand_accuracy_rating_+%"]=1303, - ["wand_attack_speed_+%"]=1286, - ["wand_critical_strike_chance_+%"]=1327, - ["wand_critical_strike_multiplier_+"]=1349, - ["wand_damage_+%"]=2603, - ["wand_damage_+%_if_crit_recently"]=9897, - ["wand_damage_+%_per_power_charge"]=1829, - ["wand_elemental_damage_+%"]=1809, - ["war_banner_aura_effect_+%"]=9898, - ["war_banner_mana_reservation_efficiency_+%"]=9899, - ["warbringer_overbreak_armour"]=9900, - ["warcries_apply_fire_exposure"]=9901, - ["warcries_are_instant"]=3070, - ["warcries_bypass_cooldown"]=9902, - ["warcries_cost_no_mana"]=3712, - ["warcries_debilitate_enemies_for_1_second"]=9903, - ["warcries_have_minimum_10_power"]=9904, - ["warcries_inflict_x_critical_weakness_on_enemies"]=9905, - ["warcries_knock_back_enemies"]=9906, - ["warcry_buff_effect_+%"]=9907, - ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=9908, - ["warcry_cooldown_modifier_ms"]=9909, - ["warcry_cooldown_speed_+%"]=2953, - ["warcry_damage_+%"]=9910, - ["warcry_damage_taken_goes_to_mana_%"]=2893, - ["warcry_duration_+%"]=2839, - ["warcry_empowers_next_x_melee_attacks"]=9911, - ["warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute"]=9912, - ["warcry_monster_power_+%"]=9913, - ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=9914, - ["warcry_skill_area_of_effect_+%"]=9915, - ["warcry_skills_cooldown_is_4_seconds"]=9916, - ["warcry_speed_+%"]=2908, - ["warcry_speed_+%_per_25_tribute"]=9917, - ["ward_+%"]=1377, - ["ward_delay_recovery_+%"]=1379, - ["warlords_mark_curse_effect_+%"]=3599, - ["warlords_mark_duration_+%"]=3498, - ["water_sphere_cold_lightning_exposure_%"]=9918, - ["water_sphere_damage_+%"]=9919, - ["weapon_chaos_damage_+%"]=1750, - ["weapon_cold_damage_+%"]=1748, - ["weapon_damage_+%_per_10_str"]=9920, - ["weapon_elemental_damage_+%"]=1227, - ["weapon_elemental_damage_+%_per_power_charge"]=2368, - ["weapon_elemental_damage_+%_while_using_flask"]=2438, - ["weapon_fire_damage_+%"]=1747, - ["weapon_hellscaping_speed_+%"]=6716, - ["weapon_lightning_damage_+%"]=1749, - ["weapon_physical_damage_+%"]=2426, - ["weapon_swap_speed_+%"]=9921, - ["while_curse_is_25%_expired_hinder_enemy_%"]=9922, - ["while_curse_is_33%_expired_malediction"]=9923, - ["while_curse_is_50%_expired_curse_effect_+%"]=9924, - ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=9925, - ["while_stationary_gain_additional_physical_damage_reduction_%"]=9926, - ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=9927, - ["while_using_mace_stun_threshold_reduction_+%"]=1366, - ["whirling_blades_attack_speed_+%"]=3456, - ["whirling_blades_damage_+%"]=3307, - ["wild_strike_damage_+%"]=3282, - ["wild_strike_num_of_additional_projectiles_in_chain"]=3582, - ["wild_strike_radius_+%"]=3416, - ["winter_brand_chill_effect_+%"]=9928, - ["winter_brand_damage_+%"]=9929, - ["winter_brand_max_number_of_stages_+"]=9930, - ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=9931, - ["witch_passive_maximum_lightning_damage_+%_final"]=9932, - ["witchhunter_armour_evasion_+%_final"]=9933, - ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=9934, - ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=9935, - ["with_bow_additional_block_%"]=2156, - ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=9936, - ["wither_duration_+%"]=3512, - ["wither_expire_speed_+%"]=9937, - ["wither_never_expires"]=4014, - ["wither_radius_+%"]=3428, - ["withered_effect_on_self_+%"]=9938, - ["withered_magnitude_+%"]=9939, - ["withered_on_hit_for_2_seconds_%_chance"]=3977, - ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=9940, - ["withered_on_hit_for_4_seconds_%_chance"]=9941, - ["wrath_aura_effect_+%"]=2983, - ["wrath_mana_reservation_+%"]=3624, - ["wrath_mana_reservation_efficiency_+%"]=9943, - ["wrath_mana_reservation_efficiency_-2%_per_1"]=9942, - ["wrath_reserves_no_mana"]=9944, - ["x%_faster_start_of_sorcery_ward_recovery"]=9945, - ["x%_of_armour_applies_to_elemental_damage_while_shapeshifted"]=9946, - ["x%_of_damage_taken_while_channelling_recouped_as_life"]=9947, - ["x_to_maximum_life_per_2_intelligence"]=1716, - ["you_and_allies_additional_block_%_if_have_attacked_recently"]=9948, - ["you_and_allies_in_presence_accuracy_rating_+%"]=9949, - ["you_and_allies_in_presence_all_damage_can_ignite"]=9950, - ["you_and_allies_in_presence_attack_speed_+%"]=9951, - ["you_and_allies_in_presence_cast_speed_+%"]=9952, - ["you_and_allies_in_presence_chaos_damage_resistance_%"]=9953, - ["you_and_allies_in_presence_cooldown_speed_+%"]=9954, - ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=9955, - ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3652, - ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=9956, - ["you_and_nearby_allies_critical_strike_chance_+%"]=9957, - ["you_and_nearby_allies_critical_strike_multiplier_+"]=9958, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=9959, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=9960, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=9961, - ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=9962, - ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=9963, - ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=9964, - ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=2951, - ["you_are_cursed_with_despair"]=9965, - ["you_are_cursed_with_elemental_weakness"]=9966, - ["you_are_cursed_with_enfeeble"]=9967, - ["you_are_cursed_with_temporal_chains"]=9968, - ["you_are_cursed_with_vulnerability"]=9969, - ["you_cannot_be_hindered"]=9970, - ["you_cannot_have_non_animated_minions"]=9971, - ["you_cannot_have_non_golem_minions"]=3287, - ["you_cannot_have_non_spectre_minions"]=9972, - ["you_cannot_inflict_curses"]=9973, - ["you_count_as_full_life_while_affected_by_vulnerability"]=2760, - ["you_count_as_low_life_while_affected_by_vulnerability"]=2761, - ["you_count_as_low_life_while_not_on_full_life"]=9974, - ["you_gain_%_life_when_one_of_your_minions_is_revived"]=9975, - ["your_aegis_skills_except_primal_are_disabled"]=632, - ["your_aftershock_area_of_effect_+%"]=9976, - ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=9978, - ["your_auras_except_anger_are_disabled"]=9979, - ["your_auras_except_clarity_are_disabled"]=9980, - ["your_auras_except_determination_are_disabled"]=9981, - ["your_auras_except_discipline_are_disabled"]=9982, - ["your_auras_except_grace_are_disabled"]=9983, - ["your_auras_except_haste_are_disabled"]=9984, - ["your_auras_except_hatred_are_disabled"]=9985, - ["your_auras_except_malevolence_are_disabled"]=9986, - ["your_auras_except_precision_are_disabled"]=9987, - ["your_auras_except_pride_are_disabled"]=9988, - ["your_auras_except_purity_of_elements_are_disabled"]=9989, - ["your_auras_except_purity_of_fire_are_disabled"]=9990, - ["your_auras_except_purity_of_ice_are_disabled"]=9991, - ["your_auras_except_purity_of_lightning_are_disabled"]=9992, - ["your_auras_except_vitality_are_disabled"]=9993, - ["your_auras_except_wrath_are_disabled"]=9994, - ["your_auras_except_zealotry_are_disabled"]=9995, - ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=9996, - ["your_consecrated_ground_grants_damage_+%"]=3808, - ["your_elemental_resistances_do_not_exist"]=2513, - ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=9997, - ["your_life_cannot_change_while_you_have_energy_shield"]=9998, - ["your_life_flasks_also_apply_to_your_minions"]=1869, - ["your_mace_slam_aftershock_chance_%"]=9999, - ["your_mace_strike_melee_splash_chance_%"]=10000, - ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=10001, - ["your_movement_skills_are_disabled"]=10002, - ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10003, - ["your_shield_skills_are_disabled"]=10004, - ["your_slam_aftershock_chance_%"]=10005, - ["your_spells_are_disabled"]=10006, - ["your_travel_skills_are_disabled"]=10007, - ["your_travel_skills_except_dash_are_disabled"]=10008, - ["zealotry_aura_effect_+%"]=10022, - ["zealotry_mana_reservation_+%"]=10025, - ["zealotry_mana_reservation_efficiency_+%"]=10024, - ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10023, - ["zealotry_reserves_no_mana"]=10026, - ["zero_chaos_resistance"]=10027, - ["zombie_attack_speed_+%"]=3444, - ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10028, - ["zombie_chaos_elemental_damage_resistance_%"]=2285, - ["zombie_damage_+%"]=3239, - ["zombie_elemental_resistances_%"]=3567, - ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2367, - ["zombie_maximum_life_+"]=2284, - ["zombie_physical_damage_+%"]=2366, - ["zombie_physical_damage_+%_final"]=10029, - ["zombie_scale_+%"]=2365, - ["zombie_slam_area_of_effect_+%"]=10030, - ["zombie_slam_cooldown_speed_+%"]=10031, - ["zombie_slam_damage_+%"]=10032 + ["+_deflection_rating_per_10_maximum_ward"]=9, + ["+_deflection_rating_per_50_missing_maximum_energy_shield"]=10, + ["X_accuracy_per_2_intelligence"]=1786, + ["X_armour_if_you_have_blocked_recently"]=4125, + ["X_armour_per_active_totem"]=4126, + ["X_armour_per_stackable_unique_jewel"]=3833, + ["X_life_per_4_dexterity"]=1787, + ["X_mana_per_4_strength"]=1788, + ["X_mana_per_stackable_unique_jewel"]=3832, + ["X_to_armour_per_2_strength"]=4127, + ["absolution_cast_speed_+%"]=4131, + ["absolution_duration_+%"]=4132, + ["absolution_minion_area_of_effect_+%"]=4133, + ["abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%"]=9142, + ["abyssal_cry_damage_+%"]=3424, + ["abyssal_cry_duration_+%"]=3610, + ["abyssal_wasting_cold_resistance_%"]=4134, + ["abyssal_wasting_effect_+%"]=4135, + ["abyssal_wasting_fire_resistance_%"]=4136, + ["abyssal_wasting_infinite_duration"]=4137, + ["abyssal_wasting_instant_life_leech_%"]=4138, + ["abyssal_wasting_instant_mana_leech_%"]=4139, + ["abyssal_wasting_lightning_resistance_%"]=4140, + ["abyssal_wasting_on_hit"]=4141, + ["accuracy_rating"]=903, + ["accuracy_rating_+%"]=1355, + ["accuracy_rating_+%_during_onslaught"]=4159, + ["accuracy_rating_+%_equal_to_%_attack_critical_strike_chance"]=4142, + ["accuracy_rating_+%_final_at_max_distance_scaled"]=4143, + ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4160, + ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4161, + ["accuracy_rating_+%_per_10_tribute"]=4144, + ["accuracy_rating_+%_per_25_tribute"]=4145, + ["accuracy_rating_+%_per_frenzy_charge"]=1807, + ["accuracy_rating_+%_vs_abyssal_wasting_afflicted"]=4146, + ["accuracy_rating_+%_vs_enemies_in_close_range"]=4147, + ["accuracy_rating_+%_vs_rare_or_unique_enemy"]=4148, + ["accuracy_rating_+%_vs_unique_enemies"]=4149, + ["accuracy_rating_+%_when_on_low_life"]=2388, + ["accuracy_rating_+%_while_moving"]=4150, + ["accuracy_rating_+%_while_shapeshifted"]=4151, + ["accuracy_rating_+%_while_surrounded"]=4152, + ["accuracy_rating_+_per_evasion_rating_on_helmet"]=4153, + ["accuracy_rating_+_per_frenzy_charge"]=4157, + ["accuracy_rating_+_per_green_socket_on_bow"]=4158, + ["accuracy_rating_against_marked_enemies_+%"]=4154, + ["accuracy_rating_is_doubled"]=4155, + ["accuracy_rating_per_level"]=4156, + ["accuracy_rating_vs_bleeding_enemies"]=4162, + ["accuracy_rating_while_at_maximum_frenzy_charges"]=4163, + ["accuracy_rating_while_dual_wielding_+%"]=1356, + ["action_speed_-%"]=4165, + ["action_speed_cannot_be_reduced_below_base"]=2935, + ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4164, + ["active_block_maximum_distance_+%"]=4166, + ["active_skill_additional_projectiles_description_mode"]=1573, + ["active_skill_attack_speed_+%_final"]=1334, + ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3483, + ["active_skill_generates_mp_%_glory_per_armour_break"]=4167, + ["active_skill_generates_mp_%_glory_per_attack_hit"]=4168, + ["active_skill_generates_mp_%_glory_per_heavy_stun"]=4169, + ["active_skill_generates_mp_%_glory_per_ignite"]=4170, + ["active_skill_impale_magnitude_+%_final"]=4171, + ["active_skill_level_+"]=1650, + ["active_skill_life_gained_on_cull"]=4172, + ["active_skill_mana_gained_on_cull"]=4173, + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"]=4174, + ["active_skill_poison_effect_+%_final"]=4175, + ["adaptation_duration_+%"]=1442, + ["add_%_base_armour_on_equipment_to_stun_threshold"]=4176, + ["add_1_stage_to_banners_on_melee_hit_up_to_5_per_second"]=4641, + ["add_X_guard_on_trigger_per_100_ms_total_use_time_of_triggered_skill_up_to_maximum_mana"]=4177, + ["add_X_ms_to_energy_shield_recharge_delay_per_combo_spent"]=4118, + ["add_endurance_charge_on_critical_strike"]=1595, + ["add_endurance_charge_on_enemy_critical_strike"]=1612, + ["add_endurance_charge_on_gain_power_charge_%"]=3310, + ["add_endurance_charge_on_kill"]=2606, + ["add_endurance_charge_on_skill_hit_%"]=1609, + ["add_endurance_charge_on_status_ailment"]=1613, + ["add_frenzy_charge_every_50_rampage_stacks"]=4059, + ["add_frenzy_charge_on_critical_strike"]=1605, + ["add_frenzy_charge_on_enemy_block"]=1887, + ["add_frenzy_charge_on_kill_%_chance"]=2427, + ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4178, + ["add_frenzy_charge_on_skill_hit_%"]=1610, + ["add_frenzy_charge_when_hit_%"]=4179, + ["add_power_charge_on_critical_strike"]=1606, + ["add_power_charge_on_critical_strike_%"]=1607, + ["add_power_charge_on_hit_%"]=3305, + ["add_power_charge_on_hit_while_poisoned_%"]=4180, + ["add_power_charge_on_kill_%_chance"]=2429, + ["add_power_charge_on_melee_critical_strike"]=1608, + ["add_power_charge_on_minion_death"]=1815, + ["add_power_charge_on_skill_hit_%"]=1611, + ["add_power_charge_when_interrupted_while_casting"]=1911, + ["add_power_charge_when_kill_shocked_enemy"]=1904, + ["add_x_grasping_vines_on_hit"]=4181, + ["added_cooldown_count_if_not_instant_and_you_have_at_least_100_tribute"]=4182, + ["added_thorns_cold_base_damage_%_of_maximum_mana"]=4183, + ["additional_all_attributes"]=1014, + ["additional_attack_block_%_if_used_shield_skill_recently"]=4184, + ["additional_attack_block_%_per_endurance_charge"]=4185, + ["additional_attack_block_%_per_frenzy_charge"]=4186, + ["additional_attack_block_%_per_power_charge"]=4187, + ["additional_attack_block_%_per_summoned_skeleton"]=4188, + ["additional_ballista_totems_allowed"]=4189, + ["additional_base_critical_strike_chance"]=1378, + ["additional_beam_only_chains"]=4190, + ["additional_block_%"]=1146, + ["additional_block_%_against_frontal_attacks"]=4192, + ["additional_block_%_if_you_have_crit_recently"]=4193, + ["additional_block_%_per_endurance_charge"]=4194, + ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4195, + ["additional_block_%_while_not_cursed"]=4196, + ["additional_block_%_while_on_consecrated_ground"]=4197, + ["additional_block_%_while_you_have_at_least_10_crab_charges"]=4035, + ["additional_block_%_while_you_have_at_least_5_crab_charges"]=4034, + ["additional_block_%_with_5_or_more_nearby_enemies"]=4198, + ["additional_block_chance_%_for_1_second_every_5_seconds"]=2264, + ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3742, + ["additional_block_chance_%_when_in_off_hand"]=3859, + ["additional_block_chance_%_while_holding_focus"]=4191, + ["additional_block_chance_against_projectiles_%"]=2267, + ["additional_chance_to_freeze_chilled_enemies_%"]=1794, + ["additional_chaos_resistance_against_damage_over_time_%"]=5595, + ["additional_combo_gain_chance_%"]=4199, + ["additional_combo_gain_on_hit"]=4116, + ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4200, + ["additional_critical_strike_chance_per_power_charge_permyriad"]=4201, + ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4202, + ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=4045, + ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4203, + ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3181, + ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4204, + ["additional_deflection_rating"]=4205, + ["additional_dexterity"]=1016, + ["additional_dexterity_and_intelligence"]=1020, + ["additional_dexterity_per_allocated_mastery"]=4206, + ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3743, + ["additional_infusion_gain_chance_%"]=4207, + ["additional_intelligence"]=1017, + ["additional_intelligence_per_allocated_mastery"]=4208, + ["additional_max_mirage_archers"]=4097, + ["additional_max_number_of_dominated_magic_monsters"]=4209, + ["additional_max_number_of_dominated_rare_monsters"]=4210, + ["additional_maximum_all_elemental_resistances_%"]=1030, + ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4216, + ["additional_maximum_all_elemental_resistances_%_if_at_least_5_red_green_blue_supports_socketed"]=4211, + ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4212, + ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4213, + ["additional_maximum_all_elemental_resistances_%_while_on_full_ward"]=4214, + ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4215, + ["additional_maximum_all_resistances_%"]=1516, + ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4219, + ["additional_maximum_all_resistances_%_if_you_have_at_least_100_tribute"]=4217, + ["additional_maximum_all_resistances_%_while_poisoned"]=4218, + ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4220, + ["additional_maximum_block_%"]=1756, + ["additional_maximum_block_%_if_blocked_with_active_block_recently"]=4221, + ["additional_maximum_infusion_stacks"]=8864, + ["additional_number_of_brands_to_create"]=4222, + ["additional_off_hand_critical_strike_chance_permyriad"]=4223, + ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4224, + ["additional_physical_damage_reduction_%_during_flask_effect"]=3935, + ["additional_physical_damage_reduction_%_during_focus"]=4226, + ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4227, + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4228, + ["additional_physical_damage_reduction_%_per_keystone"]=4229, + ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4230, + ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4231, + ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4232, + ["additional_physical_damage_reduction_%_when_on_low_life"]=2003, + ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4233, + ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4234, + ["additional_physical_damage_reduction_%_while_bleeding"]=4235, + ["additional_physical_damage_reduction_%_while_channelling"]=4236, + ["additional_physical_damage_reduction_%_while_frozen"]=4237, + ["additional_physical_damage_reduction_%_while_moving"]=4238, + ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4225, + ["additional_scroll_of_wisdom_drop_chance_%"]=2397, + ["additional_staff_block_%"]=1151, + ["additional_strength"]=1015, + ["additional_strength_and_dexterity"]=1018, + ["additional_strength_and_intelligence"]=1019, + ["additional_strength_per_allocated_mastery"]=4239, + ["additional_thorns_critical_strike_chance_permyriad_per_50_tribute"]=4240, + ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4241, + ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4242, + ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4243, + ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4244, + ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4245, + ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=4246, + ["additive_modifiers_to_life_regeneration_also_apply_to_mana_regeneration_rate"]=4247, + ["additive_modifiers_to_mana_regeneration_also_apply_to_energy_shield_recharge_rate"]=4248, + ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3450, + ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2480, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2482, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2481, + ["additive_spell_damage_modifiers_apply_to_attack_damage_while_shapeshifted"]=4249, + ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2483, + ["aftershock_area_of_effect_+%"]=4250, + ["aggravate_bleeding_inflicted_vs_shocked_enemy"]=4251, + ["aggravate_bleeding_older_than_ms_on_hit"]=4252, + ["aggravate_bleeding_on_attack_crit_chance_%"]=4253, + ["aggravate_bleeding_on_attack_knockback_chance_%"]=4255, + ["aggravate_bleeding_on_enemies_when_they_enter_your_presence"]=4256, + ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4257, + ["aggravate_bleeding_when_inflicted_vs_cursed_enemy"]=4258, + ["aggravate_bleeding_when_inflicted_vs_enemies_on_jagged_ground_chance_%"]=4259, + ["aggravate_bleeding_when_inflicted_vs_pinned_enemy"]=4260, + ["aggravate_inflicted_bleeding"]=4261, + ["agony_crawler_damage_+%"]=4263, + ["ailment_bearer_always_freeze_shock_ignite"]=4264, + ["ailment_bearer_elemental_damage_+%_final"]=4265, + ["ailment_chance_+%"]=4269, + ["ailment_chance_+%_vs_abyssal_wasting_afflicted"]=4266, + ["ailment_chance_+%_vs_exposed"]=4267, + ["ailment_chance_+%_vs_rare_or_unique_enemy"]=4268, + ["ailment_duration_+%_vs_beasts"]=4270, + ["ailment_duration_+%_vs_cursed_enemy"]=4271, + ["ailment_duration_+%_vs_exposed"]=4272, + ["ailment_effect_+%"]=4273, + ["ailment_magnitude_+%_vs_marked_enemies"]=4274, + ["ailment_threshold_+"]=4278, + ["ailment_threshold_+%"]=4280, + ["ailment_threshold_+_from_%_maximum_energy_shield"]=4279, + ["ailment_threshold_+_from_lowest_of_base_boots_evasion_rating_and_armour"]=4275, + ["ailment_threshold_+_per_dexterity"]=4276, + ["ailment_threshold_increased_by_uncapped_chaos_resistance"]=4277, + ["all_attack_damage_can_electrocute"]=4281, + ["all_attacks_count_as_exerted"]=4282, + ["all_attributes_+%"]=1021, + ["all_attributes_+%_per_assigned_keystone"]=2837, + ["all_damage_can_chill"]=2636, + ["all_damage_can_electrocute"]=4283, + ["all_damage_can_freeze"]=4284, + ["all_damage_can_ignite"]=4285, + ["all_damage_can_poison"]=4286, + ["all_damage_can_poison_while_affected_by_glorious_madness"]=10614, + ["all_damage_can_shock"]=4287, + ["all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame"]=4288, + ["all_damage_taken_%_as_chaos_damage"]=2218, + ["all_damage_taken_can_ignite"]=4289, + ["all_damage_taken_can_sap"]=4290, + ["all_damage_taken_can_scorch"]=4291, + ["all_damage_taken_chills_you_while_bleeding"]=4292, + ["all_damage_taken_chills_you_while_poisoned"]=4293, + ["all_damage_to_bleeding_enemies_contributes_to_chill"]=4294, + ["all_damage_to_poisoned_enemies_contributes_to_chill"]=4295, + ["all_exposure_on_hit_magnitude"]=4296, + ["all_lightning_damage_to_bleeding_enemies_can_electrocute"]=4297, + ["all_projectile_damage_can_pin"]=4298, + ["all_resistances_%_per_equipped_corrupted_item"]=2853, + ["all_skill_gem_level_+"]=972, + ["all_skill_gem_quality_+"]=998, + ["allies_in_presence_accuracy_rating"]=938, + ["allies_in_presence_attack_maximum_added_chaos_damage"]=934, + ["allies_in_presence_attack_maximum_added_cold_damage"]=932, + ["allies_in_presence_attack_maximum_added_fire_damage"]=931, + ["allies_in_presence_attack_maximum_added_lightning_damage"]=933, + ["allies_in_presence_attack_maximum_added_physical_damage"]=930, + ["allies_in_presence_attack_minimum_added_chaos_damage"]=934, + ["allies_in_presence_attack_minimum_added_cold_damage"]=932, + ["allies_in_presence_attack_minimum_added_fire_damage"]=931, + ["allies_in_presence_attack_minimum_added_lightning_damage"]=933, + ["allies_in_presence_attack_minimum_added_physical_damage"]=930, + ["allies_in_presence_attack_speed_+%"]=941, + ["allies_in_presence_cast_speed_+%"]=942, + ["allies_in_presence_chaos_damage_+%"]=937, + ["allies_in_presence_critical_strike_chance_+%"]=939, + ["allies_in_presence_critical_strike_multiplier_+"]=940, + ["allies_in_presence_damage_%_to_gain_as_fire"]=4299, + ["allies_in_presence_damage_+%"]=929, + ["allies_in_presence_elemental_damage_+%"]=936, + ["allies_in_presence_glory_generation_+%"]=4300, + ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3035, + ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6523, + ["allies_in_presence_have_unholy_might_while_you_not_on_low_mana"]=2801, + ["allies_in_presence_life_regeneration_rate_per_minute"]=944, + ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%"]=945, + ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_your_maximum_life_%"]=946, + ["allies_in_presence_movement_speed_+%"]=4301, + ["allies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=4302, + ["allies_in_presence_physical_damage_+%"]=935, + ["allies_in_presence_regenerate_X_rage_per_minute_if_you_gained_rage_recently"]=4303, + ["allies_in_presence_resist_all_elements_%"]=943, + ["allies_in_your_presence_share_charges_with_you"]=4304, + ["allow_2_active_banners"]=2776, + ["allow_hellscaping_unique_items"]=4305, + ["allow_multiple_offerings"]=4306, + ["always_crit_shocked_enemies"]=3811, + ["always_freeze"]=1079, + ["always_frostburn_while_affected_by_hatred"]=4307, + ["always_ignite"]=1630, + ["always_ignite_while_burning"]=4308, + ["always_pierce"]=4309, + ["always_pierce_burning_enemies"]=4310, + ["always_sap_while_affected_by_wrath"]=4311, + ["always_scorch_while_affected_by_anger"]=4312, + ["always_shock"]=1631, + ["always_stun"]=1632, + ["always_stun_enemies_that_are_on_full_life"]=3060, + ["ambush_buff_critical_strike_multiplier_+"]=4313, + ["ambush_cooldown_speed_+%"]=4314, + ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3153, + ["ancestor_totem_buff_effect_+%"]=4315, + ["ancestor_totem_buff_linger_time_ms"]=4316, + ["ancestor_totem_parent_activation_range_+%"]=4317, + ["ancestral_boosted_area_of_effect_+%"]=4318, + ["ancestral_boosted_attack_damage_+%"]=4319, + ["ancestral_boosted_attack_hit_damage_stun_multiplier_+%"]=4320, + ["ancestral_cry_attacks_exerted_+"]=4321, + ["ancestral_cry_exerted_attack_damage_+%"]=4322, + ["ancestral_cry_minimum_power"]=4323, + ["ancestral_slam_every_other_slam"]=2205, + ["ancestral_slam_strike_every_other_strike_or_slam_while_shapeshifted"]=2206, + ["anger_aura_effect_+%"]=3082, + ["anger_mana_reservation_+%"]=3137, + ["anger_mana_reservation_efficiency_+%"]=4325, + ["anger_mana_reservation_efficiency_-2%_per_1"]=4324, + ["anger_reserves_no_mana"]=4326, + ["animate_guardian_damage_+%"]=3405, + ["animate_guardian_damage_+%_per_animated_weapon"]=4327, + ["animate_guardian_elemental_resistances_%"]=3673, + ["animate_weapon_can_animate_bows"]=2911, + ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2989, + ["animate_weapon_can_animate_wands"]=2912, + ["animate_weapon_chance_to_create_additional_copy_%"]=3678, + ["animate_weapon_damage_+%"]=3327, + ["animate_weapon_duration_+%"]=2579, + ["animate_weapon_number_of_additional_copies"]=2580, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4328, + ["animated_guardian_damage_taken_+%_final"]=4329, + ["animated_minions_melee_splash"]=4330, + ["aoe_+%_per_second_while_stationary_up_to_50"]=4331, + ["apply_X_armour_break_on_hit"]=4332, + ["apply_X_critical_weakness_on_consuming_mark"]=4333, + ["apply_X_incision_on_thorns_hit"]=4334, + ["apply_X_stacks_of_critical_weakness_on_critical_hit_with_spells"]=4335, + ["apply_X_stacks_of_critical_weakness_on_hit"]=4336, + ["apply_X_stacks_of_critical_weakness_on_parry"]=4337, + ["apply_anaemia_magnitude_on_hit"]=4338, + ["apply_ancients_challenge_in_front_facing_radius_on_raise_shield"]=10549, + ["apply_blind_on_hit_while_ruby_sapphire_socketed"]=4339, + ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4340, + ["apply_covered_in_ash_to_attacker_when_hit_%"]=4341, + ["apply_debilitate_on_hit_while_emerald_sapphire_socketed"]=4342, + ["apply_exposure_on_hit_while_ruby_emerald_socketed"]=4343, + ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4344, + ["apply_poison_on_hit_vs_bleeding_enemies_%"]=3013, + ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4345, + ["arc_and_crackling_lance_base_cost_+%"]=4346, + ["arc_damage_+%"]=3360, + ["arc_damage_+%_per_chain"]=4347, + ["arc_num_of_additional_projectiles_in_chain"]=3641, + ["arc_shock_chance_%"]=3654, + ["arcane_cloak_consume_%_of_mana"]=4348, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4349, + ["arcane_surge_effect_+1%_per_X_maximum_mana"]=4350, + ["arcane_surge_effect_on_self_+%"]=3018, + ["arcane_surge_effect_on_self_+%_per_200_mana_spent_recently_up_to_50%"]=3019, + ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=3017, + ["arcane_surge_effect_on_self_+%_while_affected_by_clarity"]=4351, + ["arcane_surge_mana_regen_modifier_on_you_applies_to_life_regen_instead"]=4352, + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4353, + ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4354, + ["arcanist_brand_cast_speed_+%"]=4355, + ["arcanist_brand_unnerve_on_hit"]=4356, + ["archon_delay_expires_x%_faster"]=4357, + ["archon_duration_+%"]=4358, + ["archon_effect_on_you_+%"]=4359, + ["archon_grants_all_elemental_resistance_+%"]=4360, + ["archon_grants_base_critical_strike_multiplier_+"]=4361, + ["archon_grants_critical_strike_chance_+%"]=4362, + ["archon_grants_movement_speed_+%"]=4363, + ["archon_no_recovery_period"]=4364, + ["arctic_armour_buff_effect_+%"]=3701, + ["arctic_armour_chill_when_hit_duration"]=4365, + ["arctic_armour_mana_reservation_+%"]=3708, + ["arctic_armour_mana_reservation_efficiency_+%"]=4367, + ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4366, + ["arctic_armour_maximum_added_cold_damage_per_stack"]=4368, + ["arctic_armour_minimum_added_cold_damage_per_stack"]=4368, + ["arctic_armour_no_reservation"]=4369, + ["arctic_breath_chilling_area_movement_velocity_+%"]=4370, + ["arctic_breath_damage_+%"]=3378, + ["arctic_breath_duration_+%"]=3621, + ["arctic_breath_radius_+%"]=3515, + ["area_damage_+%"]=1796, + ["area_damage_+%_per_10_devotion"]=4371, + ["area_damage_+%_per_12_strength"]=4372, + ["area_damage_taken_from_hits_+%"]=1986, + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4374, + ["area_of_effect_+%_if_below_100_intelligence"]=4373, + ["area_of_effect_+%_if_culled_recently"]=4375, + ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4376, + ["area_of_effect_+%_if_have_crit_recently"]=4377, + ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4378, + ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4379, + ["area_of_effect_+%_if_you_have_blocked_recently"]=4380, + ["area_of_effect_+%_per_20_int"]=2345, + ["area_of_effect_+%_per_25_rampage_stacks"]=4058, + ["area_of_effect_+%_per_50_strength"]=4381, + ["area_of_effect_+%_per_active_herald_of_light_minion"]=4382, + ["area_of_effect_+%_per_endurance_charge"]=4383, + ["area_of_effect_+%_per_enemy_killed_recently"]=4384, + ["area_of_effect_+%_while_fortified"]=4385, + ["area_of_effect_+%_while_totem_active"]=4386, + ["area_of_effect_+%_while_wielding_bow"]=4387, + ["area_of_effect_+%_while_wielding_staff"]=4388, + ["area_of_effect_+%_while_you_do_not_have_convergence"]=4124, + ["area_of_effect_+%_while_you_have_arcane_surge"]=4389, + ["area_of_effect_+%_with_500_or_more_strength"]=4390, + ["area_of_effect_+%_with_bow_skills"]=4391, + ["area_of_effect_+%_with_herald_skills"]=4392, + ["area_skill_accuracy_rating_+%"]=4393, + ["area_skill_knockback_chance_%"]=4394, + ["armageddon_brand_attached_target_fire_penetration_%"]=4395, + ["armageddon_brand_damage_+%"]=4396, + ["armageddon_brand_repeat_frequency_+%"]=4397, + ["armour_%_also_applies_to_chaos_damage_while_at_full_es"]=4398, + ["armour_%_applies_to_fire_cold_lightning_damage"]=1050, + ["armour_%_applies_to_fire_cold_lightning_damage_if_you_have_at_least_100_tribute"]=4399, + ["armour_%_to_gain_as_stun_threshold"]=4400, + ["armour_+%_final_vs_hits_per_1%_current_energy_shield"]=4438, + ["armour_+%_if_consumed_endurance_charge_recently"]=4401, + ["armour_+%_if_enemy_not_killed_recently"]=4439, + ["armour_+%_if_have_been_hit_recently"]=4402, + ["armour_+%_if_hit_enemy_with_melee_attack_recently"]=4403, + ["armour_+%_if_not_dodge_rolled_recently"]=4404, + ["armour_+%_if_you_havent_been_hit_recently"]=4405, + ["armour_+%_per_50_str"]=4440, + ["armour_+%_per_defiance"]=3951, + ["armour_+%_per_rage"]=10626, + ["armour_+%_per_red_socket_on_main_hand_weapon"]=4442, + ["armour_+%_per_second_while_stationary_up_to_100"]=4443, + ["armour_+%_while_bleeding"]=4444, + ["armour_+%_while_ignited"]=4406, + ["armour_+%_while_no_energy_shield"]=2520, + ["armour_+%_while_shapeshifted"]=4407, + ["armour_+%_while_stationary"]=4445, + ["armour_+%_while_surrounded"]=4408, + ["armour_+_from_%_strength_requirements_from_boots_gloves_helmets"]=4409, + ["armour_+_per_10_unreserved_max_mana"]=4410, + ["armour_+_per_1_boots_energy_shield"]=4411, + ["armour_+_per_1_helmet_maximum_energy_shield"]=4434, + ["armour_+_per_1_spirit"]=4412, + ["armour_+_while_affected_by_determination"]=4435, + ["armour_+_while_affected_by_guard_skill"]=4436, + ["armour_+_while_you_have_fortify"]=4437, + ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4413, + ["armour_and_evasion_+%_during_onslaught"]=4414, + ["armour_and_evasion_+%_while_fortified"]=3920, + ["armour_and_evasion_on_low_life_+%"]=2952, + ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3866, + ["armour_and_evasion_rating_+%_per_active_totem_in_presence"]=4415, + ["armour_and_evasion_rating_+%_while_on_low_ward"]=4416, + ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4417, + ["armour_and_evasion_rating_+_while_fortified"]=4418, + ["armour_break_%_of_armour_on_critical_strike_with_spells"]=4419, + ["armour_break_%_of_armour_on_heavy_stunning"]=4420, + ["armour_break_amount_+%"]=4421, + ["armour_break_amount_+%_vs_enemies_affected_by_ailments"]=4422, + ["armour_break_and_sundered_armour_duration_+%"]=4423, + ["armour_break_damage_%_dealt_as_armour_break"]=4424, + ["armour_break_equal_to_%_physical_damage_dealt_on_critical_strike_with_spells"]=4425, + ["armour_break_equal_to_%_physical_damage_dealt_spells"]=4426, + ["armour_break_fire_damage_%_dealt_as_armour_break"]=4427, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=4428, + ["armour_break_taken_+%"]=4429, + ["armour_evasion_+%_while_leeching"]=4430, + ["armour_evasion_energy_shield_+%_while_channelling"]=6112, + ["armour_evasion_energy_shield_+%_while_on_low_life"]=6113, + ["armour_evasion_energy_shield_+%_while_wielding_quarterstaff"]=6114, + ["armour_evasion_energy_shield_+%_while_you_have_four_linked_targets"]=6115, + ["armour_evasion_energy_shield_are_zero"]=6116, + ["armour_from_gloves_and_boots_+%"]=4431, + ["armour_from_helmet_and_gloves_+%"]=4432, + ["armour_hellscaping_speed_+%"]=7134, + ["armour_increased_by_uncapped_fire_resistance"]=4433, + ["armour_while_stationary"]=4006, + ["armour_while_you_do_not_have_avatar_of_fire"]=10730, + ["arrow_base_number_of_targets_to_pierce"]=1572, + ["arrow_chains_+"]=1569, + ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4446, + ["arrow_damage_+%_max_as_distance_travelled_increases"]=4449, + ["arrow_damage_+%_vs_pierced_targets"]=4447, + ["arrow_damage_+50%_vs_pierced_targets"]=4448, + ["arrow_projectiles_return_if_they_have_pierced_a_fully_armour_broken_target"]=4451, + ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4452, + ["arrows_always_pierce_after_chaining"]=3997, + ["arrows_always_pierce_after_forking"]=4453, + ["arrows_fork"]=3287, + ["arrows_from_first_firing_point_always_pierce"]=4089, + ["arrows_from_fourth_firing_point_additional_chains"]=4092, + ["arrows_from_second_firing_point_fork"]=4090, + ["arrows_from_third_firing_point_return"]=4091, + ["arrows_pierce_additional_target"]=4454, + ["arrows_that_pierce_also_return"]=4455, + ["arrows_that_pierce_cause_bleeding"]=3995, + ["arrows_that_pierce_chance_to_bleed_25%"]=3996, + ["artillery_ballista_cross_strafe_pattern"]=4456, + ["artillery_ballista_fire_pen_+%"]=4457, + ["artillery_ballista_num_additional_arrows"]=4458, + ["ascendancy_assasin_critical_hit_poison_effect_+%_final"]=3918, + ["ascendancy_assassin_damage_vs_enemies_on_low_life_+%_final"]=2588, + ["ascendancy_bear_companion_life_regeneration_rate_per_minute_%"]=4459, + ["ascendancy_beidats_gaze_mana_+_per_X_maximum_life"]=4460, + ["ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life"]=4461, + ["ascendancy_beidats_will_spirit_+_per_X_maximum_life"]=4462, + ["ascendancy_energy_generated_+%_final"]=6412, + ["ascendancy_hand_wraps"]=4463, + ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4464, + ["ascendancy_pathfinder_flask_charges_gained_+%_final"]=4465, + ["ascendancy_shaman_gain_additional_socketable_mods"]=4466, + ["ascendancy_shaman_reactive_growth_elemental_damage_taken_+%_final"]=4467, + ["ascendancy_titan_damage_reduction_rating_from_body_armour_+%_final"]=4468, + ["ascendancy_vivid_stag_gain_wisps_on_end"]=4469, + ["ascendancy_vivid_stag_home_in_on_enemies_within_X_angle_in_front"]=4470, + ["ascendancy_warbringer_block_chance_+%_final"]=4471, + ["ascendency_tactician_totem_skill_speed_+%_final"]=4472, + ["aspect_of_the_avian_buff_effect_+%"]=4473, + ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4474, + ["aspect_of_the_cat_base_secondary_duration"]=4475, + ["aspect_of_the_spider_web_count_+"]=4476, + ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3155, + ["attack_added_chaos_damage_%_of_maximum_life"]=4477, + ["attack_added_physical_damage_%_of_maximum_life"]=4478, + ["attack_additional_critical_strike_chance_permyriad"]=4479, + ["attack_additional_critical_strike_chance_permyriad_vs_parried_enemies_if_you_have_at_least_100_tribute"]=4480, + ["attack_always_crit"]=3474, + ["attack_and_cast_speed_+%"]=1803, + ["attack_and_cast_speed_+%_during_flask_effect"]=3941, + ["attack_and_cast_speed_+%_during_onslaught"]=2786, + ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4484, + ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3237, + ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3184, + ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3744, + ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4485, + ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4486, + ["attack_and_cast_speed_+%_on_placing_totem"]=2947, + ["attack_and_cast_speed_+%_per_cold_adaptation"]=4100, + ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3924, + ["attack_and_cast_speed_+%_per_endurance_charge"]=4487, + ["attack_and_cast_speed_+%_per_frenzy_charge"]=1805, + ["attack_and_cast_speed_+%_per_power_charge"]=4488, + ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4489, + ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4490, + ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4481, + ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4482, + ["attack_and_cast_speed_+%_while_channelling"]=4491, + ["attack_and_cast_speed_+%_while_focused"]=4492, + ["attack_and_cast_speed_+%_while_leeching"]=3765, + ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3901, + ["attack_and_cast_speed_+%_while_totem_active"]=3312, + ["attack_and_cast_speed_+%_while_using_flask"]=4493, + ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4494, + ["attack_and_cast_speed_+%_while_you_have_fortify"]=2039, + ["attack_and_cast_speed_+%_with_channelling_skills"]=4495, + ["attack_and_cast_speed_+%_with_chaos_skills"]=4496, + ["attack_and_cast_speed_+%_with_cold_skills"]=4497, + ["attack_and_cast_speed_+%_with_elemental_skills"]=4498, + ["attack_and_cast_speed_+%_with_fire_skills"]=4499, + ["attack_and_cast_speed_+%_with_lightning_skills"]=4500, + ["attack_and_cast_speed_+%_with_physical_skills"]=4501, + ["attack_and_cast_speed_+%_with_shield_skills"]=4502, + ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4483, + ["attack_and_cast_speed_when_hit_+%"]=2959, + ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4503, + ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=4015, + ["attack_area_damage_+%"]=4504, + ["attack_area_of_effect_+%"]=4507, + ["attack_area_of_effect_+%_per_10_int"]=4508, + ["attack_area_of_effect_+%_per_enemy_ignited_last_8_seconds"]=4505, + ["attack_area_of_effect_+%_while_wielding_quarterstaff"]=4506, + ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4509, + ["attack_block_%_while_at_max_endurance_charges"]=4510, + ["attack_cast_and_movement_speed_+%_during_onslaught"]=4511, + ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10731, + ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3745, + ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4512, + ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4513, + ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4514, + ["attack_consume_endurance_charge_to_always_crit"]=4515, + ["attack_crit_chance_override_%"]=4516, + ["attack_critical_strike_chance_+%"]=1000, + ["attack_critical_strike_chance_+%_per_10_tribute"]=4517, + ["attack_critical_strike_multiplier_+"]=1004, + ["attack_critical_strikes_ignore_elemental_resistances"]=4518, + ["attack_damage_+%"]=1179, + ["attack_damage_+%_for_4_seconds_on_cast"]=3240, + ["attack_damage_+%_for_each_different_non_instant_spell_youve_cast_in_the_past_8_seconds"]=4519, + ["attack_damage_+%_if_been_heavy_stunned_recently"]=4520, + ["attack_damage_+%_if_other_ring_is_shaper_item"]=4016, + ["attack_damage_+%_if_youve_shapeshifted_to_animal_recently"]=4521, + ["attack_damage_+%_per_10_tribute"]=4522, + ["attack_damage_+%_per_16_strength"]=4539, + ["attack_damage_+%_per_450_evasion"]=2714, + ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4540, + ["attack_damage_+%_per_5%_block_chance"]=4523, + ["attack_damage_+%_per_500_maximum_mana"]=4524, + ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4541, + ["attack_damage_+%_per_active_totem_in_presence"]=4525, + ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4526, + ["attack_damage_+%_per_frenzy_charge"]=3015, + ["attack_damage_+%_per_level"]=2730, + ["attack_damage_+%_per_target_power"]=4527, + ["attack_damage_+%_vs_maimed_enemies"]=4542, + ["attack_damage_+%_vs_rare_or_unique_enemy"]=4528, + ["attack_damage_+%_when_no_remaining_life_flask_uses"]=4529, + ["attack_damage_+%_when_on_full_life"]=4543, + ["attack_damage_+%_when_on_low_life"]=4544, + ["attack_damage_+%_while_affected_by_precision"]=4545, + ["attack_damage_+%_while_ally_in_presence"]=4530, + ["attack_damage_+%_while_channelling"]=4546, + ["attack_damage_+%_while_holding_a_shield"]=1187, + ["attack_damage_+%_while_in_blood_stance"]=4531, + ["attack_damage_+%_while_leeching"]=4547, + ["attack_damage_+%_while_moving"]=4532, + ["attack_damage_+%_while_not_on_low_mana"]=4548, + ["attack_damage_+%_while_onslaught_active"]=3021, + ["attack_damage_+%_while_shapeshifted"]=4533, + ["attack_damage_+%_while_surrounded"]=4534, + ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4535, + ["attack_damage_+%_while_you_have_fortify"]=4549, + ["attack_damage_+%_with_channelling_skills"]=4550, + ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4538, + ["attack_damage_is_lucky_if_surrounded"]=4536, + ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4537, + ["attack_damage_that_stuns_also_chills"]=2769, + ["attack_damage_vs_bleeding_enemies_+%"]=2294, + ["attack_mana_cost_+%"]=4552, + ["attack_mana_cost_efficiency_+%_during_mana_flask"]=4551, + ["attack_maximum_added_chaos_damage"]=1311, + ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=4014, + ["attack_maximum_added_chaos_damage_with_bows"]=1860, + ["attack_maximum_added_chaos_damage_with_claws"]=1861, + ["attack_maximum_added_chaos_damage_with_daggers"]=1862, + ["attack_maximum_added_cold_damage"]=883, + ["attack_maximum_added_cold_damage_with_axes"]=1844, + ["attack_maximum_added_cold_damage_with_bows"]=1845, + ["attack_maximum_added_cold_damage_with_claws"]=1846, + ["attack_maximum_added_cold_damage_with_crossbows"]=3978, + ["attack_maximum_added_cold_damage_with_daggers"]=1847, + ["attack_maximum_added_cold_damage_with_flails"]=3966, + ["attack_maximum_added_cold_damage_with_maces"]=1848, + ["attack_maximum_added_cold_damage_with_spears"]=1863, + ["attack_maximum_added_cold_damage_with_staves"]=1849, + ["attack_maximum_added_cold_damage_with_swords"]=1850, + ["attack_maximum_added_cold_damage_with_wand"]=1851, + ["attack_maximum_added_fire_damage"]=882, + ["attack_maximum_added_fire_damage_per_10_strength"]=4553, + ["attack_maximum_added_fire_damage_with_axes"]=1835, + ["attack_maximum_added_fire_damage_with_bow"]=1836, + ["attack_maximum_added_fire_damage_with_claws"]=1837, + ["attack_maximum_added_fire_damage_with_crossbows"]=3979, + ["attack_maximum_added_fire_damage_with_daggers"]=1838, + ["attack_maximum_added_fire_damage_with_flails"]=3967, + ["attack_maximum_added_fire_damage_with_maces"]=1839, + ["attack_maximum_added_fire_damage_with_spears"]=1864, + ["attack_maximum_added_fire_damage_with_staves"]=1840, + ["attack_maximum_added_fire_damage_with_swords"]=1841, + ["attack_maximum_added_fire_damage_with_wand"]=1842, + ["attack_maximum_added_lightning_damage"]=884, + ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=10645, + ["attack_maximum_added_lightning_damage_per_10_dex"]=4555, + ["attack_maximum_added_lightning_damage_per_10_int"]=4556, + ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4557, + ["attack_maximum_added_lightning_damage_with_axes"]=1852, + ["attack_maximum_added_lightning_damage_with_bows"]=1853, + ["attack_maximum_added_lightning_damage_with_claws"]=1854, + ["attack_maximum_added_lightning_damage_with_crossbows"]=3980, + ["attack_maximum_added_lightning_damage_with_daggers"]=1855, + ["attack_maximum_added_lightning_damage_with_flails"]=3968, + ["attack_maximum_added_lightning_damage_with_maces"]=1856, + ["attack_maximum_added_lightning_damage_with_spears"]=1865, + ["attack_maximum_added_lightning_damage_with_staves"]=1857, + ["attack_maximum_added_lightning_damage_with_swords"]=1858, + ["attack_maximum_added_lightning_damage_with_wand"]=1859, + ["attack_maximum_added_melee_cold_damage_while_unarmed"]=3988, + ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2211, + ["attack_maximum_added_physical_damage"]=881, + ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4558, + ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=4013, + ["attack_maximum_added_physical_damage_per_25_dexterity"]=3115, + ["attack_maximum_added_physical_damage_per_25_strength"]=4559, + ["attack_maximum_added_physical_damage_per_level"]=4560, + ["attack_maximum_added_physical_damage_while_holding_a_shield"]=1834, + ["attack_maximum_added_physical_damage_while_unarmed"]=1833, + ["attack_maximum_added_physical_damage_with_axes"]=1825, + ["attack_maximum_added_physical_damage_with_bow"]=1826, + ["attack_maximum_added_physical_damage_with_claws"]=1827, + ["attack_maximum_added_physical_damage_with_crossbows"]=3981, + ["attack_maximum_added_physical_damage_with_daggers"]=1828, + ["attack_maximum_added_physical_damage_with_flails"]=3969, + ["attack_maximum_added_physical_damage_with_maces"]=1829, + ["attack_maximum_added_physical_damage_with_spears"]=1866, + ["attack_maximum_added_physical_damage_with_staves"]=1830, + ["attack_maximum_added_physical_damage_with_swords"]=1831, + ["attack_maximum_added_physical_damage_with_wands"]=1832, + ["attack_maximum_added_physical_damage_with_weapons"]=1232, + ["attack_minimum_added_chaos_damage"]=1311, + ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=4014, + ["attack_minimum_added_chaos_damage_with_bows"]=1860, + ["attack_minimum_added_chaos_damage_with_claws"]=1861, + ["attack_minimum_added_chaos_damage_with_daggers"]=1862, + ["attack_minimum_added_cold_damage"]=883, + ["attack_minimum_added_cold_damage_with_axes"]=1844, + ["attack_minimum_added_cold_damage_with_bows"]=1845, + ["attack_minimum_added_cold_damage_with_claws"]=1846, + ["attack_minimum_added_cold_damage_with_crossbows"]=3978, + ["attack_minimum_added_cold_damage_with_daggers"]=1847, + ["attack_minimum_added_cold_damage_with_flails"]=3966, + ["attack_minimum_added_cold_damage_with_maces"]=1848, + ["attack_minimum_added_cold_damage_with_spears"]=1863, + ["attack_minimum_added_cold_damage_with_staves"]=1849, + ["attack_minimum_added_cold_damage_with_swords"]=1850, + ["attack_minimum_added_cold_damage_with_wand"]=1851, + ["attack_minimum_added_fire_damage"]=882, + ["attack_minimum_added_fire_damage_per_10_strength"]=4553, + ["attack_minimum_added_fire_damage_with_axes"]=1835, + ["attack_minimum_added_fire_damage_with_bow"]=1836, + ["attack_minimum_added_fire_damage_with_claws"]=1837, + ["attack_minimum_added_fire_damage_with_crossbows"]=3979, + ["attack_minimum_added_fire_damage_with_daggers"]=1838, + ["attack_minimum_added_fire_damage_with_flails"]=3967, + ["attack_minimum_added_fire_damage_with_maces"]=1839, + ["attack_minimum_added_fire_damage_with_spears"]=1864, + ["attack_minimum_added_fire_damage_with_staves"]=1840, + ["attack_minimum_added_fire_damage_with_swords"]=1841, + ["attack_minimum_added_fire_damage_with_wand"]=1842, + ["attack_minimum_added_lightning_damage"]=884, + ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=10615, + ["attack_minimum_added_lightning_damage_per_10_dex"]=4555, + ["attack_minimum_added_lightning_damage_per_10_int"]=4556, + ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4557, + ["attack_minimum_added_lightning_damage_with_axes"]=1852, + ["attack_minimum_added_lightning_damage_with_bows"]=1853, + ["attack_minimum_added_lightning_damage_with_claws"]=1854, + ["attack_minimum_added_lightning_damage_with_crossbows"]=3980, + ["attack_minimum_added_lightning_damage_with_daggers"]=1855, + ["attack_minimum_added_lightning_damage_with_flails"]=3968, + ["attack_minimum_added_lightning_damage_with_maces"]=1856, + ["attack_minimum_added_lightning_damage_with_spears"]=1865, + ["attack_minimum_added_lightning_damage_with_staves"]=1857, + ["attack_minimum_added_lightning_damage_with_swords"]=1858, + ["attack_minimum_added_lightning_damage_with_wand"]=1859, + ["attack_minimum_added_melee_cold_damage_while_unarmed"]=3988, + ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2211, + ["attack_minimum_added_physical_damage"]=881, + ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4558, + ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=4013, + ["attack_minimum_added_physical_damage_per_25_dexterity"]=3115, + ["attack_minimum_added_physical_damage_per_25_strength"]=4559, + ["attack_minimum_added_physical_damage_per_level"]=4560, + ["attack_minimum_added_physical_damage_while_holding_a_shield"]=1834, + ["attack_minimum_added_physical_damage_while_unarmed"]=1833, + ["attack_minimum_added_physical_damage_with_axes"]=1825, + ["attack_minimum_added_physical_damage_with_bow"]=1826, + ["attack_minimum_added_physical_damage_with_claws"]=1827, + ["attack_minimum_added_physical_damage_with_crossbows"]=3981, + ["attack_minimum_added_physical_damage_with_daggers"]=1828, + ["attack_minimum_added_physical_damage_with_flails"]=3969, + ["attack_minimum_added_physical_damage_with_maces"]=1829, + ["attack_minimum_added_physical_damage_with_spears"]=1866, + ["attack_minimum_added_physical_damage_with_staves"]=1830, + ["attack_minimum_added_physical_damage_with_swords"]=1831, + ["attack_minimum_added_physical_damage_with_wands"]=1832, + ["attack_minimum_added_physical_damage_with_weapons"]=1232, + ["attack_projectiles_fork"]=4562, + ["attack_projectiles_fork_additional_times"]=4563, + ["attack_projectiles_return"]=2601, + ["attack_projectiles_return_after_piercing_X_times"]=2602, + ["attack_repeat_count"]=1671, + ["attack_skill_gem_level_+"]=990, + ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2509, + ["attack_skills_additional_ballista_totems_allowed"]=3916, + ["attack_skills_additional_totems_allowed"]=3917, + ["attack_skills_damage_+%_while_dual_wielding"]=1239, + ["attack_skills_damage_+%_while_holding_shield"]=1188, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4564, + ["attack_speed_+%"]=1008, + ["attack_speed_+%_during_flask_effect"]=3029, + ["attack_speed_+%_final_per_blitz_charge"]=4575, + ["attack_speed_+%_for_4_seconds_on_attack"]=3241, + ["attack_speed_+%_if_changed_stance_recently"]=10062, + ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4576, + ["attack_speed_+%_if_enemy_killed_recently"]=4577, + ["attack_speed_+%_if_enemy_not_killed_recently"]=3906, + ["attack_speed_+%_if_have_been_hit_recently"]=4578, + ["attack_speed_+%_if_have_blocked_recently"]=4579, + ["attack_speed_+%_if_have_crit_recently"]=4580, + ["attack_speed_+%_if_not_been_hit_recently"]=4565, + ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4581, + ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4582, + ["attack_speed_+%_if_used_a_mark_recently"]=4583, + ["attack_speed_+%_if_you_have_at_least_600_strength"]=4584, + ["attack_speed_+%_if_you_have_not_attacked_recently"]=4566, + ["attack_speed_+%_if_you_have_used_a_life_flask_recently"]=4585, + ["attack_speed_+%_per_1%_overcapped_block_chance"]=4586, + ["attack_speed_+%_per_10_dex"]=4587, + ["attack_speed_+%_per_200_accuracy_rating"]=3909, + ["attack_speed_+%_per_20_dex"]=2346, + ["attack_speed_+%_per_20_spirit"]=4567, + ["attack_speed_+%_per_25_dex"]=4588, + ["attack_speed_+%_per_enemy_in_close_range"]=4568, + ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4569, + ["attack_speed_+%_per_frenzy_charge"]=1804, + ["attack_speed_+%_when_hit"]=2943, + ["attack_speed_+%_when_on_full_life"]=1201, + ["attack_speed_+%_when_on_low_life"]=1200, + ["attack_speed_+%_while_affected_by_precision"]=4589, + ["attack_speed_+%_while_chilled"]=4590, + ["attack_speed_+%_while_holding_shield"]=1339, + ["attack_speed_+%_while_ignited"]=2711, + ["attack_speed_+%_while_in_presence_of_companion"]=4570, + ["attack_speed_+%_while_in_sand_stance"]=4571, + ["attack_speed_+%_while_leeching"]=2949, + ["attack_speed_+%_while_missing_ward"]=4572, + ["attack_speed_+%_while_not_on_low_mana"]=4591, + ["attack_speed_+%_while_on_full_mana"]=4573, + ["attack_speed_+%_while_phasing"]=4592, + ["attack_speed_+%_while_surrounded"]=4574, + ["attack_speed_+%_with_channelling_skills"]=4593, + ["attack_speed_+%_with_movement_skills"]=1354, + ["attack_speed_while_dual_wielding_+%"]=1337, + ["attack_speed_while_fortified_+%"]=2955, + ["attack_spend_x%_maximum_ward_for_added_physical_damage"]=4594, + ["attacks_base_mana_cost_+_%_of_maximum_mana"]=4596, + ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4597, + ["attacks_cause_bleeding_vs_cursed_enemies"]=4598, + ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4600, + ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4601, + ["attacks_chance_to_blind_on_hit_%"]=4602, + ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1810, + ["attacks_chance_to_taunt_on_hit_%"]=4603, + ["attacks_deal_no_physical_damage"]=2282, + ["attacks_do_not_cost_mana"]=1664, + ["attacks_impale_on_hit_%_chance"]=4604, + ["attacks_inflict_bleeding_if_last_movement_skill_was_advancing_strike"]=4605, + ["attacks_inflict_bleeding_on_hit"]=2292, + ["attacks_intimidate_on_hit_%"]=4606, + ["attacks_num_of_additional_chains"]=3805, + ["attacks_num_of_additional_chains_when_in_main_hand"]=3869, + ["attacks_number_of_additional_projectiles"]=3870, + ["attacks_number_of_additional_projectiles_when_in_off_hand"]=3872, + ["attacks_poison_while_at_max_frenzy_charges"]=1809, + ["attacks_use_life_in_place_of_mana"]=10714, + ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=2699, + ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4607, + ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=2699, + ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4607, + ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4608, + ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1172, + ["aura_effect_+%"]=2596, + ["aura_effect_+%_if_you_have_at_least_100_tribute"]=4609, + ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4610, + ["aura_effect_on_self_from_your_skills_+%"]=3275, + ["aura_grant_%_base_main_hand_attack_damage_to_nearby_allies"]=4611, + ["aura_grant_shield_defences_to_nearby_allies"]=3175, + ["aura_melee_physical_damage_+%_per_10_strength"]=3165, + ["avatar_of_fire_rotation_active"]=10719, + ["avians_flight_duration_ms_+"]=4612, + ["avians_might_duration_ms_+"]=4613, + ["avoid_ailments_%_from_crit"]=4614, + ["avoid_ailments_%_on_consecrated_ground"]=3262, + ["avoid_ailments_%_while_holding_shield"]=4615, + ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4616, + ["avoid_all_elemental_status_%"]=1621, + ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=3834, + ["avoid_blind_%"]=2379, + ["avoid_chained_projectile_%_chance"]=4617, + ["avoid_chaos_damage_%"]=3102, + ["avoid_chill_freeze_while_casting_%"]=4618, + ["avoid_cold_damage_%"]=3100, + ["avoid_corrupted_blood_%_chance"]=4619, + ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4620, + ["avoid_elemental_ailments_%_while_phasing"]=4621, + ["avoid_elemental_damage_%_per_frenzy_charge"]=3098, + ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4622, + ["avoid_elemental_damage_while_phasing_%"]=4623, + ["avoid_fire_damage_%"]=3099, + ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4624, + ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2793, + ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3760, + ["avoid_ignite_%_when_on_low_life"]=1625, + ["avoid_impale_%"]=4625, + ["avoid_interruption_while_casting_%"]=1670, + ["avoid_knockback_%"]=1434, + ["avoid_lightning_damage_%"]=3101, + ["avoid_maim_%_chance"]=4626, + ["avoid_physical_damage_%"]=3097, + ["avoid_physical_damage_%_while_phasing"]=4627, + ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4628, + ["avoid_projectiles_while_phasing_%_chance"]=4629, + ["avoid_shock_%_while_chilled"]=4630, + ["avoid_status_ailments_%_during_flask_effect"]=3027, + ["avoid_stun_%"]=1628, + ["avoid_stun_%_for_4_seconds_on_kill"]=3054, + ["avoid_stun_%_while_channeling_snipe"]=4632, + ["avoid_stun_%_while_channelling"]=4633, + ["avoid_stun_%_while_holding_shield"]=4634, + ["avoid_stun_35%_per_active_herald"]=4631, + ["axe_accuracy_rating"]=1771, + ["axe_accuracy_rating_+%"]=1359, + ["axe_attack_speed_+%"]=1342, + ["axe_critical_strike_chance_+%"]=1391, + ["axe_critical_strike_multiplier_+"]=1410, + ["axe_damage_+%"]=1256, + ["ball_lightning_damage_+%"]=2917, + ["ball_lightning_number_of_additional_projectiles"]=4635, + ["ball_lightning_projectile_speed_+%"]=3583, + ["ball_lightning_radius_+%"]=3516, + ["ballista_attack_speed_+%"]=4636, + ["ballista_critical_damage_+%"]=4637, + ["ballista_critical_hit_chance_+%"]=4638, + ["ballista_damage_+%"]=4639, + ["ballista_hit_damage_immobilisation_multiplier_+%"]=4640, + ["banner_adrenaline_duration_+%"]=4642, + ["banner_area_of_effect_+%"]=4643, + ["banner_aura_effect_+%"]=3088, + ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4644, + ["banner_duration_+%"]=4645, + ["banner_fortify_duration_+%"]=4646, + ["banner_mana_reservation_+%"]=4647, + ["banner_resource_maximum_+"]=4648, + ["banner_skills_mana_reservation_efficiency_+%"]=4650, + ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4649, + ["banner_skills_reserve_no_mana"]=4651, + ["banner_taunt_duration_+%"]=4652, + ["banners_always_have_max_valour"]=4653, + ["banners_gain_X_glory_per_second"]=4654, + ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=4655, + ["barrage_attack_speed_+%"]=3552, + ["barrage_damage_+%"]=3361, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2998, + ["barrage_num_of_additional_projectiles"]=3638, + ["basalt_flask_armour_+%_final"]=4656, + ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3481, + ["base_actor_scale_+%"]=1814, + ["base_additional_physical_damage_reduction_%"]=1029, + ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4254, + ["base_all_ailment_duration_+%"]=1638, + ["base_all_ailment_duration_on_self_+%"]=4657, + ["base_all_attributes"]=1168, + ["base_all_damage_bypass_energy_shield_%"]=1479, + ["base_all_damage_taken_can_chill"]=2639, + ["base_armour_%_applies_to_chaos_damage"]=4658, + ["base_armour_%_applies_to_cold_damage"]=4659, + ["base_armour_%_applies_to_fire_damage"]=4660, + ["base_armour_%_applies_to_lightning_damage"]=4661, + ["base_armour_applies_to_chaos_damage"]=4662, + ["base_armour_applies_to_lightning_damage"]=4663, + ["base_arrow_speed_+%"]=1574, + ["base_arrows_always_pierce"]=4664, + ["base_attack_critical_strike_chance_permyriad_+_per_1_percent_enemy_missing_life"]=4665, + ["base_attack_damage_penetrates_chaos_resist_%"]=3270, + ["base_attack_damage_penetrates_cold_resist_%"]=3268, + ["base_attack_damage_penetrates_elemental_resist_%"]=3265, + ["base_attack_damage_penetrates_fire_resist_%"]=3267, + ["base_attack_damage_penetrates_lightning_resist_%"]=3269, + ["base_attack_skill_cost_efficiency_+%"]=4666, + ["base_attack_speed_+%_per_frenzy_charge"]=1806, + ["base_aura_area_of_effect_+%"]=1971, + ["base_avoid_bleed_%"]=3891, + ["base_avoid_chill_%"]=1622, + ["base_avoid_chill_%_while_have_onslaught"]=2787, + ["base_avoid_freeze_%"]=1623, + ["base_avoid_ignite_%"]=1624, + ["base_avoid_poison_%"]=1627, + ["base_avoid_projectiles_%_chance"]=4667, + ["base_avoid_shock_%"]=1626, + ["base_avoid_stun_%"]=1629, + ["base_banner_armour_%_applies_to_fire_cold_lightning_to_apply"]=4668, + ["base_banner_evasion_%_as_deflection_to_apply"]=4669, + ["base_banner_life_regeneration_rate_per_minute_%_to_apply"]=4670, + ["base_banner_resist_all_elements_%_to_apply"]=4671, + ["base_bleed_chance_is_poison_chance_instead"]=4672, + ["base_bleed_duration_+%"]=4673, + ["base_bleeding_effect_+%"]=4821, + ["base_bleeding_magnitude_+%_on_self"]=4674, + ["base_block_%_damage_taken"]=4676, + ["base_block_chance_luck"]=4675, + ["base_body_armour_permyriad_to_gain_as_physical_thorns_damage"]=4677, + ["base_bone_golem_granted_buff_effect_+%"]=4678, + ["base_cannot_be_chilled"]=1614, + ["base_cannot_be_chilled_or_frozen"]=1615, + ["base_cannot_be_electrocuted"]=4679, + ["base_cannot_be_frozen"]=1616, + ["base_cannot_be_ignited"]=1617, + ["base_cannot_be_shocked"]=1619, + ["base_cannot_be_stunned"]=1936, + ["base_cannot_evade"]=1679, + ["base_cannot_gain_bleeding"]=3890, + ["base_cannot_gain_endurance_charges"]=4680, + ["base_cannot_leech"]=2268, + ["base_cannot_leech_energy_shield"]=4681, + ["base_cannot_leech_life"]=2371, + ["base_cannot_leech_mana"]=2372, + ["base_cast_speed_+%"]=1010, + ["base_chance_to_daze_%"]=4682, + ["base_chance_to_deal_triple_damage_%"]=4683, + ["base_chance_to_freeze_%"]=1079, + ["base_chance_to_inflict_bleeding_%"]=4684, + ["base_chance_to_not_consume_corpse_%"]=5572, + ["base_chance_to_pierce_%"]=1091, + ["base_chance_to_poison_on_hit_%"]=2921, + ["base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies"]=4685, + ["base_chance_to_shock_%"]=1081, + ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1715, + ["base_chaos_damage_bypass_energy_shield_%"]=1480, + ["base_chaos_damage_can_electrocute"]=4686, + ["base_chaos_damage_can_ignite"]=4687, + ["base_chaos_damage_does_not_damage_energy_shield_extra_hard"]=2312, + ["base_chaos_damage_resistance_%"]=1047, + ["base_chaos_damage_taken_per_minute"]=1716, + ["base_chaos_golem_granted_buff_effect_+%"]=3777, + ["base_charge_duration_+%"]=4688, + ["base_cold_damage_can_poison"]=2640, + ["base_cold_damage_heals"]=2790, + ["base_cold_damage_resistance_%"]=1043, + ["base_cold_immunity"]=3779, + ["base_cooldown_speed_+%"]=4690, + ["base_cooldown_speed_+%_per_10_tribute"]=4689, + ["base_cost_+%"]=1653, + ["base_critical_strike_multiplier_+"]=1003, + ["base_curse_duration_+%"]=1562, + ["base_damage_%_deflected"]=4691, + ["base_damage_%_deflected_if_you_have_not_deflected_recently"]=4692, + ["base_damage_%_deflected_vs_crit"]=4693, + ["base_damage_removed_from_mana_before_life_%"]=2494, + ["base_damage_removed_from_mana_before_life_%_when_not_on_low_mana"]=4694, + ["base_damage_taken_+%"]=1985, + ["base_damage_taken_+%_per_10_tribute"]=4695, + ["base_damaging_ailment_effect_+%"]=6077, + ["base_damaging_ailment_effect_+%_per_10_tribute"]=4696, + ["base_darkness"]=4697, + ["base_darkness_refresh_rate_ms"]=4698, + ["base_deal_no_chaos_damage"]=4699, + ["base_deal_no_cold_damage"]=2574, + ["base_deal_no_fire_damage"]=4700, + ["base_deal_no_lightning_damage"]=4701, + ["base_deal_no_physical_damage"]=2572, + ["base_deal_no_thorns_damage"]=4702, + ["base_deal_thorns_damage_chance_%_on_hit"]=10247, + ["base_debuff_slow_magnitude_+%"]=4703, + ["base_deflect_chance_luck"]=1053, + ["base_deflection_rating_%_of_armour"]=1052, + ["base_deflection_rating_%_of_evasion_rating"]=1051, + ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"]=4704, + ["base_dexterity_per_25_tribute"]=4705, + ["base_elemental_damage_heals"]=2792, + ["base_elemental_hit_damage_bypass_energy_shield_%"]=1481, + ["base_elemental_status_ailment_duration_+%"]=1639, + ["base_endurance_charge_skip_consume_chance_%"]=4706, + ["base_enemies_in_your_presence_are_hindered"]=4707, + ["base_enemy_critical_strike_chance_+%_against_self"]=2879, + ["base_energy_shield_gained_on_enemy_death"]=2375, + ["base_energy_shield_leech_rate_+%"]=1921, + ["base_energy_shield_regeneration_rate_per_minute"]=2441, + ["base_energy_shield_regeneration_rate_per_minute_%"]=2442, + ["base_es_cost_+"]=1659, + ["base_evasion_rating"]=906, + ["base_extra_damage_rolls"]=4708, + ["base_fire_damage_can_poison"]=2641, + ["base_fire_damage_heals"]=2789, + ["base_fire_damage_resistance_%"]=1037, + ["base_fire_elemental_maximum_life_+%"]=1553, + ["base_fire_golem_granted_buff_effect_+%"]=3774, + ["base_fire_hit_damage_taken_%_as_physical"]=2239, + ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2240, + ["base_fire_immunity"]=1497, + ["base_freezing_enemy_chills_enemies_in_radius"]=6673, + ["base_frenzy_charge_duration_+%"]=1888, + ["base_frenzy_charge_skip_consume_chance_%"]=4709, + ["base_frozen_effect_on_self_+%"]=4710, + ["base_gain_x_rage_on_hit"]=4711, + ["base_global_chance_to_knockback_%"]=1759, + ["base_ice_golem_granted_buff_effect_+%"]=3775, + ["base_ignite_deals_chaos_instead"]=1099, + ["base_ignite_effect_+%"]=1100, + ["base_immune_to_chill"]=2674, + ["base_immune_to_cold_ailments"]=4712, + ["base_immune_to_freeze"]=4713, + ["base_immune_to_ignite"]=4714, + ["base_immune_to_shock"]=4715, + ["base_inflict_cold_exposure_on_hit_%_chance"]=4716, + ["base_inflict_fire_exposure_on_hit_%_chance"]=4717, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=4718, + ["base_intelligence_per_25_tribute"]=4719, + ["base_item_found_quantity_+%"]=1484, + ["base_item_found_rarity_+%"]=964, + ["base_killed_monster_dropped_item_quantity_+%"]=1778, + ["base_killed_monster_dropped_item_rarity_+%"]=1777, + ["base_leech_amount_+%"]=1915, + ["base_leech_is_instant_on_critical"]=2341, + ["base_life_cost_+"]=1660, + ["base_life_cost_+%"]=1654, + ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4721, + ["base_life_cost_efficiency_+%"]=4720, + ["base_life_flasks_do_not_recover_life"]=4722, + ["base_life_gain_per_target"]=1063, + ["base_life_gained_on_enemy_death"]=1065, + ["base_life_gained_on_spell_hit"]=1525, + ["base_life_leech_amount_+%"]=1917, + ["base_life_leech_does_not_stop_at_full_life"]=2950, + ["base_life_leech_from_all_spell_damage_permyriad"]=4723, + ["base_life_leech_from_all_thorns_damage_permyriad"]=4724, + ["base_life_leech_from_physical_attack_damage_permyriad"]=1061, + ["base_life_leech_is_instant"]=2338, + ["base_life_leech_rate_+%"]=1918, + ["base_life_recharges_like_energy_shield"]=4725, + ["base_life_regeneration_rate_per_minute"]=1057, + ["base_life_regeneration_rate_per_minute_per_10_intelligence"]=7510, + ["base_life_reservation_+%"]=1974, + ["base_life_reservation_efficiency_+%"]=1973, + ["base_lightning_damage_can_electrocute"]=4726, + ["base_lightning_damage_can_poison"]=2642, + ["base_lightning_damage_heals"]=2791, + ["base_lightning_damage_resistance_%"]=1046, + ["base_lightning_golem_granted_buff_effect_+%"]=3776, + ["base_lightning_immunity"]=3780, + ["base_limit_+"]=4727, + ["base_main_hand_damage_+%"]=1244, + ["base_main_hand_maim_on_hit_%"]=4728, + ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=4729, + ["base_mana_cost_+"]=1661, + ["base_mana_cost_+_with_channelling_skills"]=9891, + ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4736, + ["base_mana_cost_+_with_non_channelling_skills"]=9893, + ["base_mana_cost_-%"]=1655, + ["base_mana_cost_efficiency_+%"]=4730, + ["base_mana_cost_efficiency_+%_of_command_skills"]=4731, + ["base_mana_cost_efficiency_+%_of_curse_skills"]=4732, + ["base_mana_cost_efficiency_+%_of_mark_skills"]=4733, + ["base_mana_cost_efficiency_+%_per_10_tribute"]=4734, + ["base_mana_cost_efficiency_+%_while_on_low_mana"]=4735, + ["base_mana_gained_on_enemy_death"]=1070, + ["base_mana_leech_amount_+%"]=1919, + ["base_mana_leech_from_physical_attack_damage_permyriad"]=1069, + ["base_mana_leech_is_instant"]=2339, + ["base_mana_leech_rate_+%"]=1920, + ["base_mana_regeneration_rate_per_minute"]=1470, + ["base_mana_reservation_+%"]=1976, + ["base_mana_reservation_efficiency_+%"]=1975, + ["base_max_fortification"]=4737, + ["base_maximum_chaos_damage_resistance_%"]=1035, + ["base_maximum_cold_damage_resistance_%"]=1033, + ["base_maximum_energy_shield"]=908, + ["base_maximum_energy_shield_per_blue_socket_on_item"]=2516, + ["base_maximum_fire_damage_resistance_%"]=1032, + ["base_maximum_fire_damage_resistance_%_while_ignited"]=4738, + ["base_maximum_fragile_regrowth"]=4081, + ["base_maximum_life"]=910, + ["base_maximum_life_%_to_gain_as_maximum_ward"]=1453, + ["base_maximum_life_per_red_socket_on_item"]=2510, + ["base_maximum_lightning_damage_on_charge_expiry"]=2361, + ["base_maximum_lightning_damage_resistance_%"]=1034, + ["base_maximum_mana"]=915, + ["base_maximum_mana_per_green_socket_on_item"]=2513, + ["base_maximum_seals_for_skill"]=4739, + ["base_maximum_ward"]=913, + ["base_melee_critical_strike_chance_while_unarmed_%"]=3277, + ["base_minimum_endurance_charges"]=1580, + ["base_minimum_frenzy_charges"]=1585, + ["base_minimum_lightning_damage_on_charge_expiry"]=2361, + ["base_minimum_power_charges"]=1590, + ["base_minion_duration_+%"]=4740, + ["base_movement_velocity_+%"]=859, + ["base_no_energy_shield_recovery"]=2867, + ["base_number_of_arbalists"]=9317, + ["base_number_of_champions_of_light_allowed"]=4741, + ["base_number_of_crossbow_bolts"]=1011, + ["base_number_of_essence_spirits_allowed"]=568, + ["base_number_of_golems_allowed"]=3390, + ["base_number_of_herald_scorpions_allowed"]=4742, + ["base_number_of_raging_spirits_allowed"]=1924, + ["base_number_of_relics_allowed"]=4743, + ["base_number_of_remote_mines_allowed"]=1999, + ["base_number_of_sigils_allowed_per_target"]=4744, + ["base_number_of_skeletons_allowed"]=1923, + ["base_number_of_spectres_allowed"]=1922, + ["base_number_of_support_ghosts_allowed"]=4745, + ["base_number_of_totems_allowed"]=1997, + ["base_number_of_traps_allowed"]=1998, + ["base_off_hand_attack_speed_+%"]=1338, + ["base_off_hand_chance_to_blind_on_hit_%"]=4746, + ["base_off_hand_damage_+%"]=1245, + ["base_onlsaught_on_hit_%_chance"]=1009, + ["base_penetrate_elemental_resistances_%"]=3266, + ["base_physical_damage_can_pin"]=4747, + ["base_physical_damage_over_time_taken_+%"]=4748, + ["base_physical_damage_reduction_rating"]=904, + ["base_poison_chance_is_bleed_chance_instead"]=4749, + ["base_poison_duration_+%"]=2918, + ["base_poison_effect_+%"]=9481, + ["base_poison_effect_+%_while_poisoned"]=4750, + ["base_power_charge_skip_consume_chance_%"]=4751, + ["base_projectile_speed_+%"]=920, + ["base_rage_cost_+%"]=1656, + ["base_rage_cost_efficiency_+%"]=4752, + ["base_rage_regeneration_per_minute"]=4753, + ["base_raven_maximum_life_+%"]=1554, + ["base_reduce_enemy_cold_resistance_%"]=2747, + ["base_reduce_enemy_fire_resistance_%"]=2746, + ["base_reduce_enemy_lightning_resistance_%"]=2748, + ["base_reservation_+%"]=1978, + ["base_reservation_efficiency_+%"]=1977, + ["base_resist_all_elements_%"]=1036, + ["base_self_chill_duration_-%"]=1087, + ["base_self_critical_strike_multiplier_-%"]=1028, + ["base_self_freeze_duration_-%"]=1088, + ["base_self_ignite_duration_-%"]=1086, + ["base_self_shock_duration_-%"]=1089, + ["base_should_have_arcane_surge_from_stat"]=4754, + ["base_should_have_onslaught_from_stat"]=3300, + ["base_skill_area_of_effect_+%"]=1652, + ["base_skill_cost_efficiency_+%"]=4755, + ["base_skill_cost_life_instead_of_mana_%"]=4756, + ["base_skill_detonation_time"]=4757, + ["base_skill_gain_life_cost_%_of_mana_cost"]=4758, + ["base_slow_potency_+%"]=4759, + ["base_spectre_maximum_life_+%"]=1551, + ["base_spell_cooldown_speed_+%"]=4760, + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4761, + ["base_spell_critical_strike_chance"]=1377, + ["base_spell_critical_strike_chance_override_permyriad"]=4762, + ["base_spell_critical_strike_multiplier_+"]=1005, + ["base_spell_mana_cost_efficiency_+%"]=4763, + ["base_spell_projectile_block_%"]=4764, + ["base_spell_skill_cost_efficiency_+%"]=4765, + ["base_spirit"]=918, + ["base_spirit_from_equipment"]=919, + ["base_spirit_per_socketed_idol"]=4766, + ["base_spirit_reservation_efficiency_+%"]=4767, + ["base_spirit_reservation_efficiency_+%_per_20_tribute"]=4768, + ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2751, + ["base_stone_golem_granted_buff_effect_+%"]=3773, + ["base_strength_per_25_tribute"]=4769, + ["base_stun_duration_+%"]=1076, + ["base_stun_recovery_+%"]=1083, + ["base_stun_threshold_reduction_+%"]=1073, + ["base_thorns_critical_strike_chance"]=4770, + ["base_thorns_critical_strike_multiplier_+"]=4771, + ["base_total_number_of_sigils_allowed"]=4772, + ["base_unaffected_by_poison"]=4773, + ["base_unholy_might_granted_magnitude_+%"]=4774, + ["base_ward_cost_efficiency_+%"]=4775, + ["base_ward_regeneration_per_minute"]=4776, + ["base_weapon_trap_rotation_speed_+%"]=4777, + ["base_weapon_trap_total_rotation_%"]=4778, + ["base_zombie_maximum_life_+%"]=1552, + ["battlemages_cry_buff_effect_+%"]=4779, + ["battlemages_cry_exerts_x_additional_attacks"]=4780, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4781, + ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4782, + ["bear_trap_cooldown_speed_+%"]=3570, + ["bear_trap_damage_+%"]=3406, + ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4783, + ["bear_trap_movement_speed_+%_final"]=4784, + ["bell_hit_limit"]=4785, + ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4786, + ["berserk_buff_effect_+%"]=4788, + ["berserk_rage_loss_+%"]=4789, + ["berserker_damage_+%_final"]=3733, + ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4790, + ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4791, + ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4792, + ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4793, + ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4794, + ["blackhole_damage_taken_+%"]=4795, + ["blackhole_pulse_frequency_+%"]=4796, + ["blackstar_moonlight_cold_damage_taken_+%_final"]=4797, + ["blackstar_moonlight_fire_damage_taken_+%_final"]=4798, + ["blackstar_sunlight_cold_damage_taken_+%_final"]=4799, + ["blackstar_sunlight_fire_damage_taken_+%_final"]=4800, + ["blade_blase_damage_+%"]=4801, + ["blade_blast_skill_area_of_effect_+%"]=4802, + ["blade_blast_trigger_detonation_area_of_effect_+%"]=4803, + ["blade_trap_damage_+%"]=4804, + ["blade_trap_skill_area_of_effect_+%"]=4805, + ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4806, + ["blade_vortex_blade_deal_no_non_physical_damage"]=4807, + ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4808, + ["blade_vortex_damage_+%"]=3429, + ["blade_vortex_duration_+%"]=3614, + ["blade_vortex_radius_+%"]=3533, + ["bladefall_critical_strike_chance_+%"]=3633, + ["bladefall_damage_+%"]=3430, + ["bladefall_number_of_volleys"]=4809, + ["bladefall_radius_+%"]=3534, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4810, + ["bladestorm_damage_+%"]=4811, + ["bladestorm_maximum_number_of_storms_allowed"]=4812, + ["bladestorm_sandstorm_movement_speed_+%"]=4813, + ["blasphemy_no_reservation"]=4814, + ["blast_rain_%_chance_for_additional_blast"]=3785, + ["blast_rain_damage_+%"]=3426, + ["blast_rain_number_of_blasts"]=3675, + ["blast_rain_radius_+%"]=3530, + ["blast_rain_single_additional_projectile"]=3676, + ["blazing_salvo_damage_+%"]=4815, + ["blazing_salvo_number_of_additional_projectiles"]=4816, + ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4817, + ["bleed_chance_+%"]=4818, + ["bleed_damage_applies_as_fire_instead_of_physical"]=4819, + ["bleed_duration_per_12_intelligence_+%"]=3492, + ["bleed_on_bow_attack_chance_%"]=2291, + ["bleed_on_crit_%"]=4820, + ["bleed_on_crit_%_with_attacks"]=2288, + ["bleed_on_hit_with_attacks_%"]=2292, + ["bleed_on_melee_attack_chance_%"]=2290, + ["bleed_on_melee_crit_chance_%"]=2289, + ["bleed_on_melee_critical_strike"]=3946, + ["bleed_on_stun"]=2287, + ["bleeding_damage_on_self_taken_as_fire_instead"]=2260, + ["bleeding_effect_+%_per_endurance_charge"]=4822, + ["bleeding_effect_+%_per_frenzy_charge"]=4823, + ["bleeding_effect_+%_per_impale_on_enemy"]=4824, + ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4825, + ["bleeding_effect_+%_vs_poisoned_enemies"]=4826, + ["bleeding_effect_+%_when_consuming_incision"]=4827, + ["bleeding_enemies_cannot_regenerate_life"]=4828, + ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3191, + ["bleeding_magnitude_+%_against_pinned_enemies"]=4829, + ["bleeding_monsters_movement_velocity_+%"]=2733, + ["bleeding_no_extra_damage_while_target_is_moving"]=4830, + ["bleeding_on_self_expire_speed_+%_while_moving"]=4831, + ["bleeding_reflected_to_self"]=4832, + ["bleeding_stacks_up_to_x_times"]=4833, + ["blight_arc_tower_additional_chains"]=4834, + ["blight_arc_tower_additional_repeats"]=4835, + ["blight_arc_tower_chance_to_sap_%"]=4836, + ["blight_arc_tower_damage_+%"]=4837, + ["blight_arc_tower_range_+%"]=4838, + ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4839, + ["blight_cast_speed_+%"]=4840, + ["blight_chilling_tower_chill_effect_+%"]=4841, + ["blight_chilling_tower_damage_+%"]=4842, + ["blight_chilling_tower_duration_+%"]=4843, + ["blight_chilling_tower_range_+%"]=4844, + ["blight_damage_+%"]=3439, + ["blight_duration_+%"]=3616, + ["blight_empowering_tower_buff_effect_+%"]=4845, + ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4848, + ["blight_empowering_tower_grant_cast_speed_+%"]=4846, + ["blight_empowering_tower_grant_damage_+%"]=4847, + ["blight_empowering_tower_range_+%"]=4849, + ["blight_fireball_tower_additional_projectiles_+"]=4850, + ["blight_fireball_tower_cast_speed_+%"]=4851, + ["blight_fireball_tower_damage_+%"]=4852, + ["blight_fireball_tower_projectiles_nova"]=4853, + ["blight_fireball_tower_range_+%"]=4854, + ["blight_flamethrower_tower_cast_speed_+%"]=4855, + ["blight_flamethrower_tower_chance_to_scorch_%"]=4856, + ["blight_flamethrower_tower_damage_+%"]=4857, + ["blight_flamethrower_tower_full_damage_fire_enemies"]=4858, + ["blight_flamethrower_tower_range_+%"]=4859, + ["blight_freezebolt_tower_chance_to_brittle_%"]=4860, + ["blight_freezebolt_tower_damage_+%"]=4861, + ["blight_freezebolt_tower_full_damage_cold_enemies"]=4862, + ["blight_freezebolt_tower_projectiles_+"]=4863, + ["blight_freezebolt_tower_range_+%"]=4864, + ["blight_glacialcage_tower_area_of_effect_+%"]=4865, + ["blight_glacialcage_tower_cooldown_recovery_+%"]=4866, + ["blight_glacialcage_tower_duration_+%"]=4867, + ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4868, + ["blight_glacialcage_tower_range_+%"]=4869, + ["blight_hinder_enemy_chaos_damage_taken_+%"]=4870, + ["blight_imbuing_tower_buff_effect_+%"]=4871, + ["blight_imbuing_tower_grant_critical_strike_+%"]=4872, + ["blight_imbuing_tower_grant_damage_+%"]=4873, + ["blight_imbuing_tower_grants_onslaught"]=4874, + ["blight_imbuing_tower_range_+%"]=4875, + ["blight_lightningstorm_tower_area_of_effect_+%"]=4876, + ["blight_lightningstorm_tower_damage_+%"]=4877, + ["blight_lightningstorm_tower_delay_+%"]=4878, + ["blight_lightningstorm_tower_range_+%"]=4879, + ["blight_lightningstorm_tower_storms_on_enemies"]=4880, + ["blight_meteor_tower_additional_meteor_+"]=4881, + ["blight_meteor_tower_always_stun"]=4882, + ["blight_meteor_tower_creates_burning_ground_ms"]=4883, + ["blight_meteor_tower_damage_+%"]=4884, + ["blight_meteor_tower_range_+%"]=4885, + ["blight_radius_+%"]=3539, + ["blight_scout_tower_additional_minions_+"]=4886, + ["blight_scout_tower_minion_damage_+%"]=4887, + ["blight_scout_tower_minion_life_+%"]=4888, + ["blight_scout_tower_minion_movement_speed_+%"]=4889, + ["blight_scout_tower_minions_inflict_malediction"]=4890, + ["blight_scout_tower_range_+%"]=4891, + ["blight_secondary_skill_effect_duration_+%"]=4892, + ["blight_seismic_tower_additional_cascades_+"]=4893, + ["blight_seismic_tower_cascade_range_+%"]=4894, + ["blight_seismic_tower_damage_+%"]=4895, + ["blight_seismic_tower_range_+%"]=4896, + ["blight_seismic_tower_stun_duration_+%"]=4897, + ["blight_sentinel_tower_minion_damage_+%"]=4898, + ["blight_sentinel_tower_minion_life_+%"]=4899, + ["blight_sentinel_tower_minion_movement_speed_+%"]=4900, + ["blight_sentinel_tower_range_+%"]=4901, + ["blight_shocking_tower_damage_+%"]=4902, + ["blight_shocking_tower_range_+%"]=4903, + ["blight_shocknova_tower_full_damage_lightning_enemies"]=4904, + ["blight_shocknova_tower_shock_additional_repeats"]=4905, + ["blight_shocknova_tower_shock_effect_+%"]=4906, + ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4907, + ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4908, + ["blight_smothering_tower_buff_effect_+%"]=4909, + ["blight_smothering_tower_freeze_shock_ignite_%"]=4910, + ["blight_smothering_tower_grant_damage_+%"]=4911, + ["blight_smothering_tower_grant_movement_speed_+%"]=4912, + ["blight_smothering_tower_range_+%"]=4913, + ["blight_stonegaze_tower_cooldown_recovery_+%"]=4914, + ["blight_stonegaze_tower_duration_+%"]=4915, + ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4916, + ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4917, + ["blight_stonegaze_tower_range_+%"]=4918, + ["blight_summoning_tower_minion_damage_+%"]=4919, + ["blight_summoning_tower_minion_life_+%"]=4920, + ["blight_summoning_tower_minion_movement_speed_+%"]=4921, + ["blight_summoning_tower_minions_summoned_+"]=4922, + ["blight_summoning_tower_range_+%"]=4923, + ["blight_temporal_tower_buff_effect_+%"]=4924, + ["blight_temporal_tower_grant_you_action_speed_-%"]=4925, + ["blight_temporal_tower_grants_stun_immunity"]=4926, + ["blight_temporal_tower_range_+%"]=4927, + ["blight_temporal_tower_tick_speed_+%"]=4928, + ["blight_tertiary_skill_effect_duration"]=4929, + ["blight_tower_arc_damage_+%"]=4930, + ["blight_tower_chilling_cost_+%"]=4931, + ["blight_tower_damage_per_tower_type_+%"]=4932, + ["blight_tower_fireball_additional_projectile"]=4933, + ["blighted_map_chest_reward_lucky_count"]=4934, + ["blighted_map_tower_damage_+%_final"]=4935, + ["blind_chance_+%"]=4936, + ["blind_chilled_enemies_on_hit_%"]=4937, + ["blind_does_not_affect_chance_to_hit"]=4938, + ["blind_does_not_affect_light_radius"]=4939, + ["blind_duration_+%"]=3154, + ["blind_effect_+%"]=4940, + ["blind_enemies_when_hit_%_chance"]=4941, + ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4942, + ["blind_enemies_when_they_stun_you"]=4943, + ["blind_from_sightless_conviction_unique"]=10612, + ["blind_nearby_enemies_when_ignited_%"]=2796, + ["blind_on_poison_inflicted"]=4944, + ["blind_reflected_to_self"]=4945, + ["blink_and_mirror_arrow_cooldown_speed_+%"]=4946, + ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3559, + ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3419, + ["blink_arrow_cooldown_speed_+%"]=3575, + ["block_%_damage_taken_from_elemental"]=4954, + ["block_%_damage_taken_while_active_blocking"]=4955, + ["block_%_if_blocked_an_attack_recently"]=4956, + ["block_%_while_affected_by_determination"]=4957, + ["block_and_stun_+%_recovery_per_fortification"]=4947, + ["block_causes_monster_flee_%"]=2727, + ["block_chance_%_per_50_strength"]=1150, + ["block_chance_%_while_holding_shield"]=1154, + ["block_chance_+%"]=1156, + ["block_chance_+%_against_projectiles"]=4948, + ["block_chance_+%_if_blocked_with_active_block_recently"]=4949, + ["block_chance_+%_if_you_have_at_least_100_tribute"]=4950, + ["block_chance_+%_while_companion_in_presence"]=4951, + ["block_chance_+%_while_surrounded"]=4952, + ["block_chance_+X%_per_100_base_armour_on_armours"]=1157, + ["block_chance_from_equipped_shield_is_%"]=4953, + ["block_chance_on_damage_taken_%"]=2956, + ["block_recovery_+%"]=1158, + ["block_while_dual_wielding_%"]=1152, + ["block_while_dual_wielding_claws_%"]=1153, + ["blood_footprints_from_item"]=10733, + ["blood_mage_flask_life_to_recover_+%_final"]=4958, + ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3782, + ["blood_rage_grants_additional_attack_speed_+%"]=3781, + ["blood_sand_armour_mana_reservation_+%"]=4959, + ["blood_sand_mana_reservation_efficiency_+%"]=4961, + ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4960, + ["blood_sand_stance_buff_effect_+%"]=4962, + ["blood_spears_area_of_effect_+%"]=4963, + ["blood_spears_base_number_of_spears"]=4964, + ["blood_spears_damage_+%"]=4965, + ["bloodlust_zone_%_of_max_health"]=4966, + ["bloodreap_damage_+%"]=4967, + ["bloodreap_skill_area_of_effect_+%"]=4968, + ["body_armour_+%"]=4969, + ["body_armour_evasion_rating_+%"]=4970, + ["body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage"]=4971, + ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4972, + ["body_armour_grants_glory_generation_+%"]=4973, + ["body_armour_grants_spirit_+%"]=4974, + ["body_armour_grants_thorns_damage_+%"]=4975, + ["body_armour_grants_unaffected_by_damaging_ailments"]=4976, + ["body_armour_grants_unaffected_by_ignite"]=4977, + ["body_armour_grants_x_base_cold_damage_resistance_%"]=4978, + ["body_armour_grants_x_base_fire_damage_resistance_%"]=4979, + ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4980, + ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4981, + ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4982, + ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4983, + ["body_armour_grants_x_maximum_life_+%"]=4984, + ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4985, + ["body_armour_grants_x_strength_+%"]=4986, + ["body_armour_grants_x_stun_threshold_+%"]=4987, + ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4988, + ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4989, + ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4990, + ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=4991, + ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=4992, + ["body_armour_implicit_gain_power_charge_every_x_ms"]=4993, + ["bone_golem_damage_+%"]=4994, + ["bone_golem_elemental_resistances_%"]=4995, + ["bone_lance_cast_speed_+%"]=4996, + ["bone_lance_damage_+%"]=4997, + ["bone_offering_block_chance_+%"]=3797, + ["bone_offering_duration_+%"]=3593, + ["bone_offering_effect_+%"]=1164, + ["boneshatter_chance_to_gain_+1_trauma"]=4998, + ["boneshatter_damage_+%"]=5000, + ["boneshatter_damage_+%_final_if_created_from_unique"]=4999, + ["boneshatter_stun_duration_+%"]=5001, + ["boots_implicit_accuracy_rating_+%_final"]=5002, + ["boss_maximum_life_+%_final"]=5003, + ["bow_accuracy_rating"]=1769, + ["bow_accuracy_rating_+%"]=1364, + ["bow_attack_speed_+%"]=1347, + ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5775, + ["bow_attacks_have_culling_strike"]=5004, + ["bow_critical_strike_chance_+%"]=1384, + ["bow_critical_strike_multiplier_+"]=1411, + ["bow_damage_+%"]=1276, + ["bow_elemental_damage_+%"]=1280, + ["bow_physical_damage_+%_while_holding_shield"]=1755, + ["bow_skill_gem_level_+"]=992, + ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2720, + ["bow_stun_duration_+%"]=1642, + ["bow_stun_threshold_reduction_+%"]=1431, + ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5005, + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5006, + ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5007, + ["brands_reattach_on_activation"]=5008, + ["breach_flame_effects_doubled"]=5009, + ["breachstone_commanders_%_drop_additional_fragments"]=5010, + ["breachstone_commanders_%_drop_additional_maps"]=5011, + ["breachstone_commanders_%_drop_additional_scarabs"]=5012, + ["breachstone_commanders_%_drop_additional_unique_items"]=5013, + ["breachstone_commanders_drop_additional_catalysts"]=5014, + ["breachstone_commanders_drop_additional_currency_items"]=5015, + ["breachstone_commanders_drop_additional_delirium_items"]=5016, + ["breachstone_commanders_drop_additional_divination_cards"]=5017, + ["breachstone_commanders_drop_additional_enchanted_items"]=5018, + ["breachstone_commanders_drop_additional_essences"]=5019, + ["breachstone_commanders_drop_additional_fossils"]=5020, + ["breachstone_commanders_drop_additional_gem_items"]=5021, + ["breachstone_commanders_drop_additional_harbinger_shards"]=5022, + ["breachstone_commanders_drop_additional_incubators"]=5023, + ["breachstone_commanders_drop_additional_legion_splinters"]=5024, + ["breachstone_commanders_drop_additional_oils"]=5025, + ["break_%_armour_on_pin"]=5026, + ["break_armour_on_attack_hit_%_of_max_ward"]=5027, + ["brequel_display_base_type_chance_%"]=5028, + ["brequel_display_birthed_items_always_greater_or_perfect"]=5029, + ["brequel_display_cannot_have_modifiers_of_type"]=5030, + ["brequel_display_crafted_modifier_chance_%"]=5031, + ["brequel_display_empty_modifier"]=5032, + ["brequel_display_has_modifier_of_type"]=5033, + ["brequel_display_item_cannot_be_base_type"]=5034, + ["brequel_reward_10_additional_exalted_orb_chance_%"]=5035, + ["brequel_reward_16_to_24_additional_splinters_chance_%"]=5036, + ["brequel_reward_2_additional_quality_currency_same_type_chance_%"]=5037, + ["brequel_reward_3_to_7_additional_chaos_or_vaal_chance_%"]=5038, + ["brequel_reward_5_additional_items_same_type_chance_%"]=5039, + ["brequel_reward_absent_amulet_chance_+%"]=5040, + ["brequel_reward_additional_alchemy_orb_chance_%"]=5041, + ["brequel_reward_additional_catalyst_different_type_chance_%"]=5042, + ["brequel_reward_additional_catalyst_same_type_chance_%"]=5043, + ["brequel_reward_additional_exalted_orb_chance_%"]=5044, + ["brequel_reward_additional_item_chance_%"]=5045, + ["brequel_reward_additional_item_same_type_chance_%"]=5046, + ["brequel_reward_additional_regal_orb_chance_%"]=5047, + ["brequel_reward_additional_seal_crafted_modifier_chance_%"]=5048, + ["brequel_reward_anaemia_crafted_modifier_chance_%"]=5049, + ["brequel_reward_archon_duration_crafted_%"]=5050, + ["brequel_reward_archon_effect_crafted_%"]=5051, + ["brequel_reward_archon_undeath_on_offering_use_crafted_%"]=5052, + ["brequel_reward_biostatic_ring_chance_%"]=5053, + ["brequel_reward_breach_ring_additional_quality"]=5054, + ["brequel_reward_breach_ring_chance_%"]=5055, + ["brequel_reward_breach_splinters_chance_%"]=5056, + ["brequel_reward_breachlord_sac_chance_%"]=5057, + ["brequel_reward_caster_modifier_value_lucky_rolls_+"]=5058, + ["brequel_reward_catalyst_chance_%"]=5059, + ["brequel_reward_chance_to_not_consume_infusion_if_lost_archon_past_6_seconds_crafted_%"]=5060, + ["brequel_reward_chaos_orb_chance_+%"]=5061, + ["brequel_reward_cold_as_phys_crafted_modifier_chance_%"]=5062, + ["brequel_reward_cold_damage_+%_cold_infusion_collected_last_8_seconds_crafted_%"]=5063, + ["brequel_reward_command_skill_speed_crafted_chance_%"]=5165, + ["brequel_reward_consume_no_resource_chance_%"]=5065, + ["brequel_reward_convert_items_to_gold"]=5066, + ["brequel_reward_corona_amulet_chance_%"]=5067, + ["brequel_reward_damage_removed_from_spectres_crafted_%"]=5068, + ["brequel_reward_damage_taken_from_mana_before_life_crafted_%"]=5069, + ["brequel_reward_desecration_chance_%"]=5070, + ["brequel_reward_disable_base_augmentation_orb"]=5071, + ["brequel_reward_disable_base_transmutation_orb"]=5072, + ["brequel_reward_divine_orb_chance_+%"]=5073, + ["brequel_reward_enable_caster_modifiers"]=5074, + ["brequel_reward_enable_minion_modifiers"]=5075, + ["brequel_reward_essence_chance_%"]=5076, + ["brequel_reward_exalted_orb_chance_+%"]=5077, + ["brequel_reward_exposure_effect_crafted_%"]=5078, + ["brequel_reward_fire_damage_+%_if_fire_infusion_collected_last_8_seconds_crafted_%"]=5079, + ["brequel_reward_fire_spell_crit_crafted_modifier_chance_%"]=5080, + ["brequel_reward_forking_belt_chance_%"]=5081, + ["brequel_reward_grasping_ring_chance_%"]=5082, + ["brequel_reward_guarantee_armour_modifier"]=5083, + ["brequel_reward_guarantee_attribute_modifier"]=5084, + ["brequel_reward_guarantee_cold_resistance_modifier"]=5085, + ["brequel_reward_guarantee_defence_modifier"]=5086, + ["brequel_reward_guarantee_dexterity_modifier"]=5087, + ["brequel_reward_guarantee_energy_shield_modifier"]=5088, + ["brequel_reward_guarantee_evasion_modifier"]=5089, + ["brequel_reward_guarantee_fire_resistance_modifier"]=5090, + ["brequel_reward_guarantee_intelligence_modifier"]=5091, + ["brequel_reward_guarantee_life_modifier"]=5092, + ["brequel_reward_guarantee_lightning_resistance_modifier"]=5093, + ["brequel_reward_guarantee_mana_modifier"]=5094, + ["brequel_reward_guarantee_open_prefix"]=5095, + ["brequel_reward_guarantee_open_suffix"]=5096, + ["brequel_reward_guarantee_resistance_modifier"]=5097, + ["brequel_reward_guarantee_resource_modifier"]=5098, + ["brequel_reward_guarantee_strength_modifier"]=5099, + ["brequel_reward_guarantee_two_caster_modifiers"]=5100, + ["brequel_reward_guarantee_two_minion_modifiers"]=5101, + ["brequel_reward_guarantee_x_caster_modifier"]=5100, + ["brequel_reward_guarantee_x_minion_modifiers"]=5101, + ["brequel_reward_invoking_belt_chance_%"]=5102, + ["brequel_reward_jewellers_orb_chance_+%"]=5103, + ["brequel_reward_kinetic_ring_chance_%"]=5104, + ["brequel_reward_lament_amulet_chance_+%"]=5105, + ["brequel_reward_lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds_crafted_%"]=5106, + ["brequel_reward_max_infusions_crafted_modifier_chance_%"]=5107, + ["brequel_reward_maximum_invocation_energy_crafted_%"]=5108, + ["brequel_reward_minimum_armour_modifier_level"]=5109, + ["brequel_reward_minimum_attribute_modifier_level"]=5110, + ["brequel_reward_minimum_caster_crit_modifier_levela"]=5111, + ["brequel_reward_minimum_caster_crit_modifier_levelb"]=5112, + ["brequel_reward_minimum_caster_modifier_levela"]=5113, + ["brequel_reward_minimum_caster_modifier_levelb"]=5114, + ["brequel_reward_minimum_caster_prefix_modifier_levela"]=5115, + ["brequel_reward_minimum_caster_prefix_modifier_levelb"]=5116, + ["brequel_reward_minimum_caster_prefix_modifier_levelc"]=5117, + ["brequel_reward_minimum_caster_speed_modifier_levela"]=5118, + ["brequel_reward_minimum_caster_speed_modifier_levelb"]=5119, + ["brequel_reward_minimum_caster_suffix_modifier_levela"]=5120, + ["brequel_reward_minimum_caster_suffix_modifier_levelb"]=5121, + ["brequel_reward_minimum_chaos_resistance_modifier_levela"]=5122, + ["brequel_reward_minimum_chaos_resistance_modifier_levelb"]=5123, + ["brequel_reward_minimum_charm_modifier_level"]=5124, + ["brequel_reward_minimum_cold_resistance_modifier_level"]=5125, + ["brequel_reward_minimum_damage_modifier_level"]=5126, + ["brequel_reward_minimum_defence_modifier_levela"]=5127, + ["brequel_reward_minimum_defence_modifier_levelb"]=5128, + ["brequel_reward_minimum_dexterity_modifier_level"]=5129, + ["brequel_reward_minimum_elemental_resistance_modifier_level"]=5130, + ["brequel_reward_minimum_energy_shield_modifier_level"]=5131, + ["brequel_reward_minimum_evasion_modifier_level"]=5132, + ["brequel_reward_minimum_fire_resistance_modifier_level"]=5133, + ["brequel_reward_minimum_flask_modifier_level"]=5134, + ["brequel_reward_minimum_intelligence_modifier_level"]=5135, + ["brequel_reward_minimum_life_modifier_level"]=5136, + ["brequel_reward_minimum_lightning_resistance_modifier_level"]=5137, + ["brequel_reward_minimum_mana_modifier_levela"]=5138, + ["brequel_reward_minimum_mana_modifier_levelb"]=5139, + ["brequel_reward_minimum_minion_damage_modifier_levela"]=5140, + ["brequel_reward_minimum_minion_damage_modifier_levelb"]=5141, + ["brequel_reward_minimum_minion_modifier_level"]=5142, + ["brequel_reward_minimum_minion_modifier_levelb"]=5143, + ["brequel_reward_minimum_minion_prefix_modifier_levela"]=5144, + ["brequel_reward_minimum_minion_prefix_modifier_levelb"]=5145, + ["brequel_reward_minimum_minion_prefix_modifier_levelc"]=5146, + ["brequel_reward_minimum_minion_resistance_modifier_levela"]=5147, + ["brequel_reward_minimum_minion_resistance_modifier_levelb"]=5148, + ["brequel_reward_minimum_minion_speed_modifier_levela"]=5149, + ["brequel_reward_minimum_minion_speed_modifier_levelb"]=5150, + ["brequel_reward_minimum_minion_suffix_modifier_levela"]=5151, + ["brequel_reward_minimum_minion_suffix_modifier_levelb"]=5152, + ["brequel_reward_minimum_minion_suffix_modifier_levelc"]=5153, + ["brequel_reward_minimum_modifier_level"]=5154, + ["brequel_reward_minimum_modifier_levelb"]=5155, + ["brequel_reward_minimum_prefix_modifier_level"]=5156, + ["brequel_reward_minimum_resistance_modifier_level"]=5157, + ["brequel_reward_minimum_resource_modifier_levela"]=5158, + ["brequel_reward_minimum_resource_modifier_levelb"]=5159, + ["brequel_reward_minimum_strength_modifier_level"]=5160, + ["brequel_reward_minimum_suffix_modifier_level"]=5161, + ["brequel_reward_minion_additional_projectile_chance_crafted_%"]=5162, + ["brequel_reward_minion_ailment_magnitude_crafted_chance_%"]=5163, + ["brequel_reward_minion_armour_break_crafted_chance_%"]=5164, + ["brequel_reward_minion_cooldown_recovery_crafted_chance_%"]=5064, + ["brequel_reward_minion_damage_per_different_command_skill_used_last_15_seconds_crafted_%"]=5166, + ["brequel_reward_minion_duration_crafted_%"]=5167, + ["brequel_reward_minion_melee_splash_crafted_%"]=5168, + ["brequel_reward_minion_modifier_value_lucky_rolls_+"]=5169, + ["brequel_reward_minion_puppet_master_crafted_chance_%"]=5170, + ["brequel_reward_minion_reservation_efficiency_crafted_%"]=5171, + ["brequel_reward_minions_gigantic_revived_recently_crafted_%"]=5172, + ["brequel_reward_mnemonic_ring_chance_%"]=5173, + ["brequel_reward_modifier_value_lucky_rolls_+"]=5174, + ["brequel_reward_no_amber_amulets"]=5175, + ["brequel_reward_no_attack_catalysts"]=5176, + ["brequel_reward_no_attack_modifiers"]=5177, + ["brequel_reward_no_attribute_catalysts"]=5178, + ["brequel_reward_no_azure_amulets"]=5179, + ["brequel_reward_no_bloodstone_amulets"]=5180, + ["brequel_reward_no_caster_catalysts"]=5181, + ["brequel_reward_no_caster_modifiers"]=5182, + ["brequel_reward_no_chance_orbs"]=5183, + ["brequel_reward_no_chaos_catalysts"]=5184, + ["brequel_reward_no_chaos_orbs"]=5185, + ["brequel_reward_no_charm_modifiers"]=5186, + ["brequel_reward_no_cold_catalysts"]=5187, + ["brequel_reward_no_cold_modifiers"]=5188, + ["brequel_reward_no_crimson_amulets"]=5189, + ["brequel_reward_no_critical_modifiers"]=5190, + ["brequel_reward_no_defences_catalysts"]=5191, + ["brequel_reward_no_dexterity_modifiers"]=5192, + ["brequel_reward_no_divine_orbs"]=5193, + ["brequel_reward_no_fire_catalysts"]=5194, + ["brequel_reward_no_fire_modifiers"]=5195, + ["brequel_reward_no_flask_modifiers"]=5196, + ["brequel_reward_no_gem_cutters_prisms"]=5197, + ["brequel_reward_no_gold_amulets"]=5198, + ["brequel_reward_no_intelligence_modifiers"]=5199, + ["brequel_reward_no_jade_amulets"]=5200, + ["brequel_reward_no_lapis_amulets"]=5201, + ["brequel_reward_no_life_catalysts"]=5202, + ["brequel_reward_no_life_modifiers"]=5203, + ["brequel_reward_no_lightning_catalysts"]=5204, + ["brequel_reward_no_lightning_modifiers"]=5205, + ["brequel_reward_no_lunar_amulets"]=5206, + ["brequel_reward_no_mana_catalysts"]=5207, + ["brequel_reward_no_mana_modifiers"]=5208, + ["brequel_reward_no_orbs_of_annulment"]=5209, + ["brequel_reward_no_orbs_of_augmentation"]=5210, + ["brequel_reward_no_orbs_of_transmutation"]=5211, + ["brequel_reward_no_perfect_jewellers_orbs"]=5212, + ["brequel_reward_no_physical_catalysts"]=5213, + ["brequel_reward_no_solar_amulets"]=5214, + ["brequel_reward_no_speed_catalysts"]=5215, + ["brequel_reward_no_stellar_amulets"]=5216, + ["brequel_reward_no_strength_modifiers"]=5217, + ["brequel_reward_no_vaal_orbs"]=5218, + ["brequel_reward_offering_effect_crafted_chance_%"]=5219, + ["brequel_reward_oneiric_ring_chance_%"]=5220, + ["brequel_reward_only_catalysts"]=5221, + ["brequel_reward_orb_of_alchemy_chance_+%"]=5222, + ["brequel_reward_orb_of_anunulment_chance_+%"]=5223, + ["brequel_reward_orb_of_augmentation_chance_+%"]=5224, + ["brequel_reward_orb_of_transmutation_chance_+%"]=5225, + ["brequel_reward_portent_amulet_chance_+%"]=5226, + ["brequel_reward_prefix_modifier_value_lucky_rolls_+"]=5227, + ["brequel_reward_prefix_modifier_values_always_max"]=5228, + ["brequel_reward_quality_currency_chance_+%"]=5229, + ["brequel_reward_regal_orb_chance_+%"]=5230, + ["brequel_reward_reservation_amulet_chance_%"]=5231, + ["brequel_reward_resource_cost_+%"]=5232, + ["brequel_reward_seal_gain_frequency_crafted_modifier_chance_%"]=5233, + ["brequel_reward_sinew_belt_chance_%"]=5234, + ["brequel_reward_special_catalyst_chance_%"]=5235, + ["brequel_reward_spell_damage_as_extra_chaos_crafted_%"]=5236, + ["brequel_reward_spell_damage_as_extra_cold_crafted_%"]=5237, + ["brequel_reward_spell_damage_as_extra_fire_crafted_%"]=5238, + ["brequel_reward_spell_damage_as_extra_lightning_crafted_%"]=5239, + ["brequel_reward_spell_elemental_ailment_magnitude_crafted_%"]=5240, + ["brequel_reward_spell_impale_effect_crafted_%"]=5241, + ["brequel_reward_stalking_belt_chance_%"]=5242, + ["brequel_reward_suffix_modifier_value_lucky_rolls_+"]=5243, + ["brequel_reward_suffix_modifier_values_always_max"]=5244, + ["brequel_reward_temporary_minion_limit_crafted_chance_%"]=5245, + ["brequel_reward_vaal_orb_chance_+%"]=5246, + ["brequel_reward_vitalic_ring_chance_%"]=5247, + ["broken_armour_and_sundered_armour_debuff_effect_+%"]=5248, + ["broken_armour_enemies_cannot_regenerate_life"]=5249, + ["buff_affects_party"]=1566, + ["buff_auras_dont_affect_allies"]=2777, + ["buff_duration_+%"]=1561, + ["buff_effect_+%_on_low_energy_shield"]=5250, + ["buff_effect_on_self_+%"]=1905, + ["buff_party_effect_radius_+%"]=1567, + ["buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life"]=5251, + ["buff_time_passed_+%"]=5253, + ["buff_time_passed_+%_only_buff_category"]=5252, + ["buildup_jade_every_x_ms"]=5254, + ["burn_damage_+%"]=1649, + ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5255, + ["burning_arrow_damage_+%"]=3328, + ["burning_arrow_debuff_effect_+%"]=5256, + ["burning_arrow_physical_damage_%_to_gain_as_fire_damage"]=3645, + ["burning_damage_+%_if_ignited_an_enemy_recently"]=3991, + ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5257, + ["burning_damage_taken_+%"]=2349, + ["can_apply_additional_chill"]=5258, + ["can_apply_additional_shock"]=5259, + ["can_block_from_all_directions"]=5260, + ["can_catch_corrupted_fish"]=2631, + ["can_catch_exotic_fish"]=2630, + ["can_catch_scourged_fish"]=5261, + ["can_gain_combo_from_any_attack_hit"]=5262, + ["can_have_2_companions"]=10648, + ["can_have_unlimited_companions"]=10649, + ["can_only_have_one_ancestor_totem_buff"]=5263, + ["can_place_multiple_banners"]=5264, + ["can_wield_2h_axe_sword_mace_in_one_hand"]=5265, + ["cannot_adapt_to_cold"]=5266, + ["cannot_adapt_to_fire"]=5267, + ["cannot_adapt_to_lightning"]=5268, + ["cannot_be_affected_by_flasks"]=3447, + ["cannot_be_blinded"]=2741, + ["cannot_be_blinded_while_affected_by_precision"]=5269, + ["cannot_be_blinded_while_on_full_life"]=5270, + ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5271, + ["cannot_be_chilled_or_frozen_while_moving"]=5272, + ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5273, + ["cannot_be_chilled_while_burning"]=5274, + ["cannot_be_crit_if_you_have_been_stunned_recently"]=5275, + ["cannot_be_cursed_with_silence"]=2844, + ["cannot_be_damaged"]=1477, + ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5276, + ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5277, + ["cannot_be_frozen_with_dex_higher_than_int"]=5278, + ["cannot_be_heavy_stunned_while_sprinting"]=5279, + ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5280, + ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5281, + ["cannot_be_ignited_while_flame_golem_summoned"]=5282, + ["cannot_be_ignited_with_strength_higher_than_dex"]=5283, + ["cannot_be_inflicted_by_corrupted_blood"]=5284, + ["cannot_be_killed_by_elemental_reflect"]=2470, + ["cannot_be_knocked_back"]=1433, + ["cannot_be_light_stunned"]=5285, + ["cannot_be_light_stunned_by_deflected_hits"]=5286, + ["cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds"]=5287, + ["cannot_be_light_stunned_if_have_not_been_hit_recently"]=5288, + ["cannot_be_light_stunned_if_you_have_been_stunned_recently"]=5289, + ["cannot_be_poisoned"]=3095, + ["cannot_be_poisoned_if_x_poisons_on_you"]=5290, + ["cannot_be_poisoned_while_bleeding"]=5291, + ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5292, + ["cannot_be_shocked_or_ignited_while_moving"]=5293, + ["cannot_be_shocked_while_at_maximum_endurance_charges"]=3854, + ["cannot_be_shocked_while_at_maximum_power_charges"]=5294, + ["cannot_be_shocked_while_frozen"]=2678, + ["cannot_be_shocked_while_lightning_golem_summoned"]=5295, + ["cannot_be_shocked_with_int_higher_than_strength"]=5296, + ["cannot_be_stunned"]=1935, + ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4019, + ["cannot_be_stunned_by_blocked_hits"]=5297, + ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5298, + ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4018, + ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4029, + ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5299, + ["cannot_be_stunned_if_you_have_ghost_dance"]=5300, + ["cannot_be_stunned_when_on_low_life"]=1937, + ["cannot_be_stunned_while_at_max_endurance_charges"]=3730, + ["cannot_be_stunned_while_bleeding"]=5301, + ["cannot_be_stunned_while_fortified"]=5302, + ["cannot_be_stunned_while_leeching"]=2951, + ["cannot_be_stunned_while_using_chaos_skill"]=5303, + ["cannot_be_stunned_with_25_rage"]=9598, + ["cannot_block"]=2999, + ["cannot_block_while_no_energy_shield"]=2518, + ["cannot_cast_curses"]=2477, + ["cannot_cast_spells"]=5304, + ["cannot_cause_bleeding"]=2292, + ["cannot_consume_power_frenzy_endurance_charges"]=5305, + ["cannot_crit_non_shocked_enemies"]=3812, + ["cannot_critical_strike_with_attacks"]=5306, + ["cannot_fish_from_water"]=5307, + ["cannot_freeze_shock_ignite_on_critical"]=2471, + ["cannot_gain_charges"]=5308, + ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5309, + ["cannot_gain_endurance_charges_while_have_onslaught"]=2538, + ["cannot_gain_power_charges"]=2772, + ["cannot_gain_rage_during_soul_gain_prevention"]=5310, + ["cannot_gain_spirit_from_equipment"]=5311, + ["cannot_have_current_energy_shield"]=2866, + ["cannot_have_energy_shield_leeched_from"]=5312, + ["cannot_have_life_leeched_from"]=2214, + ["cannot_have_mana_leeched_from"]=2215, + ["cannot_have_more_than_1_damaging_ailment"]=5313, + ["cannot_have_more_than_1_non_damaging_ailment"]=5314, + ["cannot_immobilise_enemies"]=5315, + ["cannot_increase_quantity_of_dropped_items"]=2351, + ["cannot_increase_rarity_of_dropped_items"]=2350, + ["cannot_inflict_elemental_ailments"]=1640, + ["cannot_kill_enemies_with_hits"]=5316, + ["cannot_knockback"]=2768, + ["cannot_leech_life_from_critical_strikes"]=3944, + ["cannot_leech_or_regenerate_mana"]=2373, + ["cannot_leech_when_on_low_life"]=2374, + ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4030, + ["cannot_miss_against_full_life_enemies"]=5317, + ["cannot_penetrate_or_ignore_elemental_resistances"]=5318, + ["cannot_pierce"]=5319, + ["cannot_pin"]=5320, + ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5321, + ["cannot_recharge_energy_shield"]=5322, + ["cannot_recover_above_low_life_except_flasks"]=5323, + ["cannot_recover_life_or_energy_shield_above_%"]=5324, + ["cannot_recover_mana_except_regeneration"]=5325, + ["cannot_regenerate_energy_shield"]=5326, + ["cannot_resist_cold_damage"]=1947, + ["cannot_sprint"]=5327, + ["cannot_stun"]=1633, + ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4098, + ["cannot_take_reflected_elemental_damage"]=5328, + ["cannot_take_reflected_physical_damage"]=5329, + ["cannot_taunt_enemies"]=5330, + ["cannot_use_flask_in_fifth_slot"]=5331, + ["cannot_use_non_normal_body_armour"]=5332, + ["cannot_use_warcries"]=5333, + ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5334, + ["cascadable_spells_final_echo_also_cascades_to_sides"]=5335, + ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5336, + ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5337, + ["cast_body_swap_on_detonate_dead_cast"]=5338, + ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5339, + ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5340, + ["cast_hydrosphere_while_channeling_winter_orb"]=5341, + ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5342, + ["cast_linked_spells_on_shocked_enemy_kill_%"]=569, + ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5343, + ["cast_socketed_minion_skills_on_bow_kill_%"]=570, + ["cast_socketed_spells_on_X_mana_spent"]=571, + ["cast_socketed_spells_on_mana_spent_%_chance"]=571, + ["cast_speed_+%_during_flask_effect"]=5350, + ["cast_speed_+%_during_mana_flask_effect"]=5344, + ["cast_speed_+%_for_4_seconds_on_attack"]=3242, + ["cast_speed_+%_if_enemy_killed_recently"]=5351, + ["cast_speed_+%_if_have_crit_recently"]=5352, + ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5353, + ["cast_speed_+%_if_you_have_used_a_mana_flask_recently"]=5354, + ["cast_speed_+%_per_20_spirit"]=5345, + ["cast_speed_+%_per_corpse_consumed_recently"]=5355, + ["cast_speed_+%_per_frenzy_charge"]=1765, + ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=5346, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5347, + ["cast_speed_+%_per_power_charge"]=1372, + ["cast_speed_+%_when_on_full_life"]=1764, + ["cast_speed_+%_when_on_low_life"]=1763, + ["cast_speed_+%_while_affected_by_zealotry"]=5356, + ["cast_speed_+%_while_chilled"]=5357, + ["cast_speed_+%_while_holding_bow"]=1371, + ["cast_speed_+%_while_holding_shield"]=1369, + ["cast_speed_+%_while_holding_staff"]=1370, + ["cast_speed_+%_while_ignited"]=2712, + ["cast_speed_+%_while_on_full_mana"]=5358, + ["cast_speed_for_brand_skills_+%"]=5348, + ["cast_speed_for_chaos_skills_+%"]=1316, + ["cast_speed_for_cold_skills_+%"]=1304, + ["cast_speed_for_elemental_skills_+%"]=5349, + ["cast_speed_for_fire_skills_+%"]=1296, + ["cast_speed_for_lightning_skills_+%"]=1309, + ["cast_speed_while_dual_wielding_+%"]=1368, + ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5359, + ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5360, + ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5361, + ["cat_aspect_reserves_no_mana"]=5362, + ["cats_stealth_duration_ms_+"]=5363, + ["cause_maim_on_critical_strike_attack"]=3751, + ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5364, + ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5365, + ["caustic_arrow_damage_+%"]=3388, + ["caustic_arrow_damage_over_time_+%"]=5366, + ["caustic_arrow_duration_+%"]=3624, + ["caustic_arrow_hit_damage_+%"]=5367, + ["caustic_arrow_radius_+%"]=3524, + ["caustic_arrow_withered_base_duration_ms"]=3389, + ["caustic_arrow_withered_on_hit_%"]=3389, + ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3157, + ["celestial_footprints_from_item"]=10734, + ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5368, + ["chain_strike_cone_radius_+_per_12_rage"]=5369, + ["chain_strike_cone_radius_+_per_x_rage"]=5370, + ["chain_strike_damage_+%"]=5371, + ["chain_strike_gain_rage_on_hit_%_chance"]=5372, + ["chaining_range_+%"]=5373, + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5374, + ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=5375, + ["chance_%_for_plants_to_overgrow_when_entering_your_presence"]=5376, + ["chance_%_to_create_additional_remnant"]=5420, + ["chance_%_to_create_shocking_ground_on_shock"]=5377, + ["chance_%_to_double_effect_of_removing_frenzy_charges"]=5378, + ["chance_%_to_drop_additional_awakened_sextant"]=5379, + ["chance_%_to_drop_additional_blessed_orb"]=5380, + ["chance_%_to_drop_additional_cartographers_chisel"]=5381, + ["chance_%_to_drop_additional_chaos_orb"]=5382, + ["chance_%_to_drop_additional_chromatic_orb"]=5383, + ["chance_%_to_drop_additional_cleansing_currency"]=5421, + ["chance_%_to_drop_additional_cleansing_influenced_item"]=5422, + ["chance_%_to_drop_additional_currency"]=5423, + ["chance_%_to_drop_additional_divination_cards"]=5424, + ["chance_%_to_drop_additional_divination_cards_corrupted"]=5425, + ["chance_%_to_drop_additional_divination_cards_currency"]=5426, + ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5427, + ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5428, + ["chance_%_to_drop_additional_divination_cards_currency_league"]=5429, + ["chance_%_to_drop_additional_divination_cards_gems"]=5430, + ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5431, + ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5432, + ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5433, + ["chance_%_to_drop_additional_divination_cards_map"]=5434, + ["chance_%_to_drop_additional_divination_cards_map_unique"]=5435, + ["chance_%_to_drop_additional_divination_cards_unique"]=5436, + ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5437, + ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5438, + ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5439, + ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5440, + ["chance_%_to_drop_additional_divine_orb"]=5384, + ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5385, + ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5386, + ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5387, + ["chance_%_to_drop_additional_enkindling_orb"]=5388, + ["chance_%_to_drop_additional_exalted_orb"]=5389, + ["chance_%_to_drop_additional_fusing_orb"]=5390, + ["chance_%_to_drop_additional_gem"]=5441, + ["chance_%_to_drop_additional_gemcutters_prism"]=5391, + ["chance_%_to_drop_additional_glassblowers_bauble"]=5392, + ["chance_%_to_drop_additional_grand_eldritch_ember"]=5393, + ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5394, + ["chance_%_to_drop_additional_greater_eldritch_ember"]=5395, + ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5396, + ["chance_%_to_drop_additional_instilling_orb"]=5397, + ["chance_%_to_drop_additional_jewellers_orb"]=5398, + ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5399, + ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5400, + ["chance_%_to_drop_additional_map_currency"]=5443, + ["chance_%_to_drop_additional_maps"]=5442, + ["chance_%_to_drop_additional_orb_of_alteration"]=5401, + ["chance_%_to_drop_additional_orb_of_annulment"]=5402, + ["chance_%_to_drop_additional_orb_of_binding"]=5403, + ["chance_%_to_drop_additional_orb_of_horizons"]=5404, + ["chance_%_to_drop_additional_orb_of_regret"]=5405, + ["chance_%_to_drop_additional_orb_of_scouring"]=5406, + ["chance_%_to_drop_additional_orb_of_unmaking"]=5407, + ["chance_%_to_drop_additional_regal_orb"]=5408, + ["chance_%_to_drop_additional_scarab"]=5444, + ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5445, + ["chance_%_to_drop_additional_scarab_abyss_polished"]=5446, + ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5447, + ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5448, + ["chance_%_to_drop_additional_scarab_beasts_polished"]=5449, + ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5450, + ["chance_%_to_drop_additional_scarab_blight_gilded"]=5451, + ["chance_%_to_drop_additional_scarab_blight_polished"]=5452, + ["chance_%_to_drop_additional_scarab_blight_rusted"]=5453, + ["chance_%_to_drop_additional_scarab_breach_gilded"]=5454, + ["chance_%_to_drop_additional_scarab_breach_polished"]=5455, + ["chance_%_to_drop_additional_scarab_breach_rusted"]=5456, + ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5457, + ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5458, + ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5459, + ["chance_%_to_drop_additional_scarab_elder_gilded"]=5460, + ["chance_%_to_drop_additional_scarab_elder_polished"]=5461, + ["chance_%_to_drop_additional_scarab_elder_rusted"]=5462, + ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5463, + ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5464, + ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5465, + ["chance_%_to_drop_additional_scarab_legion_gilded"]=5466, + ["chance_%_to_drop_additional_scarab_legion_polished"]=5467, + ["chance_%_to_drop_additional_scarab_legion_rusted"]=5468, + ["chance_%_to_drop_additional_scarab_maps_gilded"]=5469, + ["chance_%_to_drop_additional_scarab_maps_polished"]=5470, + ["chance_%_to_drop_additional_scarab_maps_rusted"]=5471, + ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5472, + ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5473, + ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5474, + ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5475, + ["chance_%_to_drop_additional_scarab_perandus_polished"]=5476, + ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5477, + ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5478, + ["chance_%_to_drop_additional_scarab_shaper_polished"]=5479, + ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5480, + ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5481, + ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5482, + ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5483, + ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5484, + ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5485, + ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5486, + ["chance_%_to_drop_additional_scarab_torment_gilded"]=5487, + ["chance_%_to_drop_additional_scarab_torment_polished"]=5488, + ["chance_%_to_drop_additional_scarab_torment_rusted"]=5489, + ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5490, + ["chance_%_to_drop_additional_scarab_uniques_polished"]=5491, + ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5492, + ["chance_%_to_drop_additional_tangled_currency"]=5493, + ["chance_%_to_drop_additional_tangled_influenced_item"]=5494, + ["chance_%_to_drop_additional_unique"]=5495, + ["chance_%_to_drop_additional_vaal_orb"]=5409, + ["chance_%_to_gain_archon_of_nature_on_overgrowing_plant"]=5410, + ["chance_%_to_gain_archon_of_undeath_on_using_command_skill"]=5411, + ["chance_%_to_gain_archon_of_undeath_when_you_create_an_offering"]=5412, + ["chance_%_to_gain_one_stone_skin_stack_on_immobilising"]=5413, + ["chance_for_double_items_from_heist_chests_%"]=5414, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5415, + ["chance_for_extra_damage_roll_with_lightning_damage_%"]=5416, + ["chance_for_plants_to_be_overgrown_%"]=5417, + ["chance_for_skills_to_avoid_cooldown_%"]=5418, + ["chance_for_spells_to_not_pay_costs_%"]=5419, + ["chance_per_second_of_fire_spreading_between_enemies_%"]=1648, + ["chance_to_avoid_death_%"]=5496, + ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3043, + ["chance_to_be_frozen_%"]=2715, + ["chance_to_be_frozen_shocked_ignited_%"]=2718, + ["chance_to_be_hindered_when_hit_by_spells_%"]=5497, + ["chance_to_be_ignited_%"]=2716, + ["chance_to_be_inflicted_with_an_ailment_+%"]=5498, + ["chance_to_be_maimed_when_hit_%"]=5499, + ["chance_to_be_poisoned_%"]=3096, + ["chance_to_be_sapped_when_hit_%"]=5500, + ["chance_to_be_scorched_when_hit_%"]=5501, + ["chance_to_be_shocked_%"]=2717, + ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5502, + ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5503, + ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5504, + ["chance_to_block_attacks_%_while_channelling"]=5505, + ["chance_to_counter_strike_when_hit_%"]=2607, + ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5506, + ["chance_to_crush_on_hit_%"]=5507, + ["chance_to_curse_self_with_punishment_on_kill_%"]=2870, + ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5508, + ["chance_to_deal_double_damage_%"]=5511, + ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5512, + ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5513, + ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5514, + ["chance_to_deal_double_damage_%_per_4_rage"]=5515, + ["chance_to_deal_double_damage_%_per_500_strength"]=5516, + ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5509, + ["chance_to_deal_double_damage_%_while_focused"]=5517, + ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5518, + ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5510, + ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10616, + ["chance_to_deal_double_damage_while_on_full_life_%"]=5519, + ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5520, + ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5521, + ["chance_to_double_armour_effect_on_hit_%"]=5522, + ["chance_to_double_stun_duration_%"]=3271, + ["chance_to_fire_1_additional_projectile_%_with_rollover"]=5523, + ["chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks"]=5524, + ["chance_to_fork_extra_projectile_%"]=5526, + ["chance_to_fork_extra_projectile_%_per_10_tribute"]=5525, + ["chance_to_fortify_on_melee_hit_+%"]=2036, + ["chance_to_fortify_on_melee_stun_%"]=5527, + ["chance_to_gain_1_more_charge_%"]=5529, + ["chance_to_gain_1_more_charge_%_per_10_tribute"]=5528, + ["chance_to_gain_1_more_endurance_charge_%"]=5530, + ["chance_to_gain_1_more_frenzy_charge_%"]=5531, + ["chance_to_gain_1_more_power_charge_%"]=5532, + ["chance_to_gain_1_more_random_charge_%"]=5533, + ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5534, + ["chance_to_gain_3_additional_exerted_attacks_%"]=5535, + ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5536, + ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5537, + ["chance_to_gain_endurance_charge_on_block_%"]=1885, + ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1599, + ["chance_to_gain_endurance_charge_on_crit_%"]=1596, + ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5538, + ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1597, + ["chance_to_gain_endurance_charge_when_hit_%"]=2535, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5539, + ["chance_to_gain_frenzy_charge_on_block_%"]=5541, + ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5540, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1600, + ["chance_to_gain_frenzy_charge_on_stun_%"]=5542, + ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4036, + ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5543, + ["chance_to_gain_onslaught_on_flask_use_%"]=5544, + ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5545, + ["chance_to_gain_onslaught_on_kill_%"]=2752, + ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5546, + ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3103, + ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5547, + ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5548, + ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1601, + ["chance_to_gain_power_charge_on_melee_stun_%"]=2552, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5549, + ["chance_to_gain_power_charge_on_stun_%"]=2553, + ["chance_to_gain_power_charge_when_block_%"]=1889, + ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2546, + ["chance_to_gain_random_standard_charge_on_hit_%"]=5550, + ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5551, + ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2859, + ["chance_to_gain_vaal_soul_on_kill_%"]=2854, + ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5552, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=5553, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5554, + ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3105, + ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5555, + ["chance_to_grant_power_charge_to_nearby_allies_on_hit_%"]=5556, + ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3106, + ["chance_to_ignite_is_doubled"]=5557, + ["chance_to_ignore_hexproof_%"]=5558, + ["chance_to_inflict_10_incision_on_attack_hit_%"]=5559, + ["chance_to_inflict_additional_impale_%"]=5560, + ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5561, + ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5562, + ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5563, + ["chance_to_inflict_frostburn_%"]=1793, + ["chance_to_inflict_incision_on_attack_hit_%"]=5564, + ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5565, + ["chance_to_inflict_sap_on_enemy_on_block_%"]=5566, + ["chance_to_inflict_sapped_%"]=1795, + ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5567, + ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5568, + ["chance_to_intimidate_on_hit_%"]=5569, + ["chance_to_leave_2_ground_blades_%"]=5570, + ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5571, + ["chance_to_not_consume_glory_%"]=5573, + ["chance_to_not_consume_infusion_%"]=5574, + ["chance_to_not_consume_infusion_%_if_lost_archon_in_past_6_seconds"]=5575, + ["chance_to_not_consume_instilling_%"]=5576, + ["chance_to_place_an_additional_mine_%"]=3255, + ["chance_to_poison_%_vs_cursed_enemies"]=3883, + ["chance_to_poison_on_critical_strike_with_bow_%"]=1374, + ["chance_to_poison_on_critical_strike_with_dagger_%"]=1375, + ["chance_to_poison_on_hit_%_per_power_charge"]=5579, + ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5577, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5578, + ["chance_to_poison_on_hit_with_attacks_%"]=2924, + ["chance_to_poison_on_melee_hit_%"]=3928, + ["chance_to_retain_40%_of_glory_on_use_%"]=5580, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5581, + ["chance_to_scorch_%"]=1791, + ["chance_to_shock_%_while_using_flask"]=2693, + ["chance_to_shock_chilled_enemies_%"]=5582, + ["chance_to_start_energy_shield_recharge_%_on_gaining_infusion"]=5583, + ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5584, + ["chance_to_summon_two_totems_%"]=5585, + ["chance_to_taunt_on_hit_%"]=3149, + ["chance_to_throw_4_additional_traps_%"]=5586, + ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=572, + ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=425, + ["chance_to_unnerve_on_hit_%"]=5587, + ["channelled_skill_damage_+%"]=5588, + ["channelled_skill_damage_+%_per_10_devotion"]=5589, + ["chaos_critical_strike_chance_+%"]=1404, + ["chaos_critical_strike_multiplier_+"]=1426, + ["chaos_damage_%_taken_from_mana_before_life"]=5596, + ["chaos_damage_+%"]=899, + ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5597, + ["chaos_damage_+%_per_equipped_corrupted_item"]=2849, + ["chaos_damage_+%_per_level"]=2743, + ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5598, + ["chaos_damage_+%_while_affected_by_herald_of_plague"]=5590, + ["chaos_damage_can_chill"]=2643, + ["chaos_damage_can_freeze"]=2644, + ["chaos_damage_can_ignite_chill_and_shock"]=2668, + ["chaos_damage_can_shock"]=2645, + ["chaos_damage_cannot_poison"]=2669, + ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5591, + ["chaos_damage_does_not_damage_minions_energy_shield_extra_hard"]=4086, + ["chaos_damage_from_hits_%_taken_as_random_element"]=2258, + ["chaos_damage_over_time_+%"]=1194, + ["chaos_damage_over_time_+%_per_volatility"]=5592, + ["chaos_damage_over_time_heals_while_leeching_life"]=5593, + ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5594, + ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1227, + ["chaos_damage_over_time_multiplier_+_with_attacks"]=1229, + ["chaos_damage_resistance_%_per_endurance_charge"]=5599, + ["chaos_damage_resistance_%_per_poison_stack"]=5601, + ["chaos_damage_resistance_%_when_on_low_life"]=1048, + ["chaos_damage_resistance_%_when_stationary"]=5602, + ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5603, + ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5604, + ["chaos_damage_resistance_is_doubled"]=5600, + ["chaos_damage_resisted_by_lowest_resistance"]=5605, + ["chaos_damage_taken_+"]=2617, + ["chaos_damage_taken_+%"]=1990, + ["chaos_damage_taken_over_time_+%"]=1717, + ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5606, + ["chaos_damage_to_return_to_melee_attacker"]=1960, + ["chaos_damage_to_return_when_hit"]=1965, + ["chaos_damage_with_attack_skills_+%"]=5607, + ["chaos_damage_with_spell_skills_+%"]=5608, + ["chaos_dot_multiplier_+"]=1228, + ["chaos_golem_damage_+%"]=3397, + ["chaos_golem_elemental_resistances_%"]=3672, + ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5609, + ["chaos_hit_and_dot_damage_%_taken_as_fire"]=2256, + ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=2257, + ["chaos_immunity"]=1930, + ["chaos_inoculation_keystone_energy_shield_+%_final"]=1949, + ["chaos_resist_unnaffected_by_area_penalites"]=5610, + ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3746, + ["chaos_resistance_+_while_using_flask"]=3030, + ["chaos_skill_chance_to_hinder_on_hit_%"]=5611, + ["chaos_skill_effect_duration_+%"]=1668, + ["chaos_skill_gem_level_+"]=987, + ["chaos_skills_area_of_effect_+%"]=5612, + ["chaos_spell_skill_gem_level_+"]=988, + ["chaos_weakness_ignores_hexproof"]=2402, + ["chaos_weakness_mana_reservation_+%"]=3724, + ["charge_duration_+%"]=2783, + ["charge_skip_consume_chance_%"]=5613, + ["charged_attack_damage_+%"]=3816, + ["charged_attack_damage_per_stack_+%_final"]=3825, + ["charged_attack_radius_+%"]=3823, + ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3543, + ["charged_dash_damage_+%"]=3432, + ["charged_dash_movement_speed_+%_final"]=5614, + ["charges_gained_+%"]=1071, + ["charm_charges_gained_+%"]=5615, + ["charm_charges_used_%_granted_to_life_flasks"]=926, + ["charm_charges_used_+%"]=5616, + ["charm_create_consecrated_ground_when_used"]=5617, + ["charm_defend_with_double_armour_during_effect"]=5618, + ["charm_duration_+%"]=923, + ["charm_duration_+%_per_25_tribute"]=5619, + ["charm_effect_+%"]=5622, + ["charm_effect_+%_per_10_tribute"]=5620, + ["charm_effect_+%_per_empty_charm_slot"]=5621, + ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5623, + ["charm_energy_shield_recharge_starts_when_used"]=5624, + ["charm_gain_X_guard_for_duration"]=948, + ["charm_gain_onslaught_during_effect"]=5625, + ["charm_grants_frenzy_charge_when_used"]=5626, + ["charm_grants_power_charge_when_used"]=5627, + ["charm_grants_up_to_your_maximum_rage_when_used"]=5628, + ["charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5629, + ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5630, + ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5631, + ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5632, + ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5633, + ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5634, + ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5635, + ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5636, + ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5637, + ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5638, + ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5639, + ["charm_recover_X_life_when_used"]=949, + ["charm_recover_X_mana_when_used"]=950, + ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5640, + ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5641, + ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5642, + ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5643, + ["charms_%_chance_to_not_consume_charges"]=5644, + ["charms_use_no_charges"]=5645, + ["chest_drop_additional_corrupted_item_divination_cards"]=5646, + ["chest_drop_additional_currency_item_divination_cards"]=5647, + ["chest_drop_additional_divination_cards_from_current_world_area"]=5648, + ["chest_drop_additional_divination_cards_from_same_set"]=5649, + ["chest_drop_additional_unique_item_divination_cards"]=5650, + ["chest_item_quantity_+%"]=1486, + ["chest_item_rarity_+%"]=1491, + ["chest_number_of_additional_pirate_uniques_to_drop"]=5651, + ["chest_trap_defuse_%"]=1675, + ["chieftain_burning_damage_+%_final"]=1792, + ["chill_and_freeze_duration_+%"]=5652, + ["chill_and_freeze_duration_based_on_%_energy_shield"]=2394, + ["chill_attackers_for_4_seconds_on_block_%_chance"]=5653, + ["chill_chance_based_on_damage_fixed_magnitude"]=5654, + ["chill_duration_+%"]=1634, + ["chill_effect_+%"]=5657, + ["chill_effect_+%_while_mana_leeching"]=5655, + ["chill_effect_+%_with_critical_strikes"]=5658, + ["chill_effect_is_reversed"]=5656, + ["chill_effectiveness_on_self_+%"]=1518, + ["chill_enemy_when_hit_duration_ms"]=2889, + ["chill_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=5659, + ["chill_minimum_slow_%"]=4121, + ["chill_minimum_slow_%_from_mastery"]=5660, + ["chill_nearby_enemies_when_you_focus"]=5661, + ["chill_prevention_ms_when_chilled"]=2673, + ["chilled_effect_on_self_+%_while_shapeshifted"]=5662, + ["chilled_enemies_have_no_elemental_resistance"]=5663, + ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3127, + ["chilled_ground_when_hit_with_attack_%"]=5664, + ["chilled_monsters_take_+%_burning_damage"]=2549, + ["chilling_areas_also_grant_curse_effect_+%"]=5665, + ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5666, + ["chills_from_your_hits_cause_shattering"]=5667, + ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5668, + ["chronomancer_reserves_no_mana"]=5669, + ["clarity_mana_reservation_+%"]=3712, + ["clarity_mana_reservation_efficiency_+%"]=5671, + ["clarity_mana_reservation_efficiency_-2%_per_1"]=5670, + ["clarity_reserves_no_mana"]=5672, + ["claw_accuracy_rating"]=1772, + ["claw_accuracy_rating_+%"]=1361, + ["claw_attack_speed_+%"]=1344, + ["claw_critical_strike_chance_+%"]=1385, + ["claw_critical_strike_multiplier_+"]=1414, + ["claw_damage_+%"]=1264, + ["claw_damage_+%_while_on_low_life"]=5674, + ["claw_damage_against_enemies_on_low_life_+%"]=5673, + ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2719, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5676, + ["cleave_attack_speed_+%"]=3544, + ["cleave_damage_+%"]=3329, + ["cleave_fortify_on_hit"]=5675, + ["cleave_radius_+%"]=3498, + ["close_range_enemies_avoid_your_projectiles"]=9180, + ["cluster_burst_spawn_amount"]=3788, + ["cobra_lash_damage_+%"]=5677, + ["cobra_lash_number_of_additional_chains"]=5678, + ["cobra_lash_projectile_speed_+%"]=5679, + ["coil_of_undoing_curse_magnitude_+%_final"]=5680, + ["cold_ailment_duration_+%"]=5681, + ["cold_ailment_effect_+%"]=5683, + ["cold_ailment_effect_+%_against_shocked_enemies"]=5682, + ["cold_and_chaos_damage_resistance_%"]=5684, + ["cold_and_lightning_damage_resistance_%"]=1044, + ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=2247, + ["cold_and_lightning_resist_+_per_equipped_item_with_a_fire_resistance_mod"]=1045, + ["cold_attack_damage_+%"]=1182, + ["cold_attack_damage_+%_while_holding_a_shield"]=1185, + ["cold_axe_damage_+%"]=1259, + ["cold_bow_damage_+%"]=1279, + ["cold_claw_damage_+%"]=1267, + ["cold_critical_strike_chance_+%"]=1402, + ["cold_critical_strike_multiplier_+"]=1424, + ["cold_dagger_damage_+%"]=1271, + ["cold_damage_+%"]=897, + ["cold_damage_+%_cold_infusion_collected_last_8_seconds"]=5685, + ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5689, + ["cold_damage_+%_per_1%_block_chance"]=3290, + ["cold_damage_+%_per_25_dexterity"]=5690, + ["cold_damage_+%_per_25_intelligence"]=5691, + ["cold_damage_+%_per_25_strength"]=5692, + ["cold_damage_+%_per_cold_resistance_above_75"]=5688, + ["cold_damage_+%_per_frenzy_charge"]=5693, + ["cold_damage_+%_per_missing_cold_resistance"]=5694, + ["cold_damage_+%_per_rage"]=5686, + ["cold_damage_+%_while_affected_by_hatred"]=5695, + ["cold_damage_+%_while_affected_by_herald_of_ice"]=5696, + ["cold_damage_+%_while_ignited"]=5687, + ["cold_damage_+%_while_off_hand_is_empty"]=5697, + ["cold_damage_can_ignite"]=2646, + ["cold_damage_can_shock"]=2647, + ["cold_damage_cannot_chill"]=2667, + ["cold_damage_cannot_freeze"]=2666, + ["cold_damage_over_time_+%"]=1193, + ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1224, + ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5698, + ["cold_damage_resistance_+%"]=1512, + ["cold_damage_resistance_is_%"]=1510, + ["cold_damage_taken_%_as_fire"]=2252, + ["cold_damage_taken_%_as_lightning"]=2254, + ["cold_damage_taken_+"]=5700, + ["cold_damage_taken_+%"]=3111, + ["cold_damage_taken_+%_if_have_been_hit_recently"]=5701, + ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5699, + ["cold_damage_to_return_to_melee_attacker"]=1957, + ["cold_damage_to_return_when_hit"]=1963, + ["cold_damage_while_dual_wielding_+%"]=1243, + ["cold_damage_with_attack_skills_+%"]=5702, + ["cold_damage_with_spell_skills_+%"]=5703, + ["cold_dot_multiplier_+"]=1225, + ["cold_exposure_effect_+%"]=5704, + ["cold_exposure_on_hit_magnitude"]=5705, + ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5706, + ["cold_hit_and_dot_damage_%_taken_as_fire"]=2253, + ["cold_hit_and_dot_damage_%_taken_as_lightning"]=2255, + ["cold_hit_damage_+%_vs_shocked_enemies"]=5707, + ["cold_mace_damage_+%"]=1275, + ["cold_penetration_%_vs_chilled_enemies"]=5708, + ["cold_projectile_mine_critical_multiplier_+"]=5709, + ["cold_projectile_mine_damage_+%"]=5710, + ["cold_projectile_mine_throwing_speed_+%"]=5712, + ["cold_projectile_mine_throwing_speed_negated_+%"]=5711, + ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5713, + ["cold_resist_unaffected_by_area_penalties"]=5714, + ["cold_skill_chance_to_inflict_cold_exposure_%"]=5715, + ["cold_skill_gem_level_+"]=983, + ["cold_skills_chance_to_poison_on_hit_%"]=5716, + ["cold_snap_cooldown_speed_+%"]=3568, + ["cold_snap_damage_+%"]=3403, + ["cold_snap_gain_power_charge_on_kill_%"]=2994, + ["cold_snap_radius_+%"]=3525, + ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5717, + ["cold_spell_skill_gem_level_+"]=984, + ["cold_staff_damage_+%"]=1263, + ["cold_sword_damage_+%"]=1284, + ["cold_wand_damage_+%"]=1288, + ["cold_weakness_ignores_hexproof"]=2403, + ["combo_falloff_speed_+%"]=5718, + ["combo_finisher_damage_+%_up_to_40%"]=5719, + ["combust_area_of_effect_+%"]=5720, + ["combust_is_disabled"]=5721, + ["companion_%_damage_as_chaos"]=5722, + ["companion_%_damage_as_cold"]=5723, + ["companion_accuracy_rating_+%"]=5724, + ["companion_area_of_effect_+%"]=5725, + ["companion_attack_speed_+%"]=5726, + ["companion_chance_to_poison_on_hit_%"]=5727, + ["companion_chaos_resistance_%"]=5728, + ["companion_damage_+%"]=5732, + ["companion_damage_+%_final_from_idol_per_different_dead_companion"]=5729, + ["companion_damage_+%_per_socketed_idol"]=5733, + ["companion_damage_+%_vs_immobilised_enemies"]=5730, + ["companion_damage_increases_and_reductions_also_affects_you"]=5731, + ["companion_elemental_resistance_%"]=5734, + ["companion_maim_on_hit_%"]=5735, + ["companion_maximum_life_+%"]=5736, + ["companion_movement_speed_%"]=5737, + ["companion_onslaught_on_kill_%"]=5738, + ["companion_reservation_+%"]=5739, + ["companion_takes_%_damage_before_you"]=5740, + ["companion_takes_%_damage_before_you_from_support"]=5741, + ["companion_takes_%_damage_from_deflected_hits_before_you"]=5742, + ["companions_gain_onslaught_on_hitting_enemies_marked_by_you_ms"]=5743, + ["companions_gain_your_dexterity"]=5744, + ["companions_gain_your_strength"]=5745, + ["companions_in_presence_base_chaos_damage_resistance_%"]=5746, + ["companions_in_presence_base_resist_all_elements_%"]=5747, + ["companions_in_presence_damage_+%_while_you_are_shapeshifted"]=5748, + ["companions_in_presence_gain_x_rage_on_hit"]=5749, + ["companions_in_presence_have_onslaught_while_you_are_shapeshifted"]=5750, + ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5751, + ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_random_element"]=5752, + ["companions_you_control_gain_damage_+%_against_enemies_marked_by_you"]=1746, + ["conductivity_curse_effect_+%"]=3690, + ["conductivity_duration_+%"]=3607, + ["conductivity_mana_reservation_+%"]=3725, + ["conductivity_no_reservation"]=5753, + ["connected_notables_grant_armour_display"]=5754, + ["consecrate_ground_for_3_seconds_when_hit_%"]=3260, + ["consecrate_ground_on_kill_%_for_3_seconds"]=3128, + ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3803, + ["consecrate_on_block_%_chance_to_create"]=2377, + ["consecrate_on_crit_%_chance_to_create"]=2435, + ["consecrated_ground_additional_physical_damage_reduction_%"]=5755, + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5756, + ["consecrated_ground_area_+%"]=5757, + ["consecrated_ground_effect_+%"]=5758, + ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5763, + ["consecrated_ground_enemy_damage_taken_+%"]=5759, + ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5760, + ["consecrated_ground_immune_to_curses"]=5761, + ["consecrated_ground_immune_to_status_ailments"]=5762, + ["consecrated_ground_on_death"]=5764, + ["consecrated_ground_on_hit"]=5765, + ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5766, + ["consecrated_ground_while_stationary_radius"]=5767, + ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5768, + ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5769, + ["consecrated_path_area_of_effect_+%"]=5770, + ["consecrated_path_damage_+%"]=5771, + ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5775, + ["consume_X_life_instead_of_last_crossbow_bolt"]=5772, + ["consume_enemy_freeze_to_guarantee_crit"]=5773, + ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5774, + ["consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage"]=5776, + ["contagion_damage_+%"]=3428, + ["contagion_duration_+%"]=3611, + ["contagion_radius_+%"]=3531, + ["contagion_spread_on_hit_affected_enemy_%"]=5777, + ["conversation_trap_converted_enemy_damage_+%"]=5778, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5779, + ["conversion_trap_cooldown_speed_+%"]=3581, + ["convert_100%_energy_shield_to_divinity"]=5780, + ["convert_all_life_leech_to_energy_shield_leech"]=5781, + ["converted_enemies_damage_+%"]=3423, + ["converts_all_armour_to_evasion_rating"]=10651, + ["convocation_buff_effect_+%"]=3702, + ["convocation_cooldown_speed_+%"]=3569, + ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5782, + ["cooldown_recovery_+%_per_power_charge"]=5783, + ["cooldown_speed_+%_per_brand_up_to_40%"]=5784, + ["corpse_erruption_base_maximum_number_of_geyers"]=5785, + ["corpse_eruption_cast_speed_+%"]=5786, + ["corpse_eruption_damage_+%"]=5787, + ["corpse_warp_cast_speed_+%"]=5788, + ["corpse_warp_damage_+%"]=5789, + ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5790, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5791, + ["corrupted_charms_have_+%_duration"]=924, + ["corrupted_gem_experience_gain_+%"]=2861, + ["corrupted_skill_gem_level_+"]=974, + ["corrupted_skills_have_+%_increased_skill_cost_efficiency_during_flask_effect"]=3028, + ["corrupted_spell_skill_gem_level_+"]=975, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=5792, + ["corrupting_fever_damage_+%"]=5793, + ["corrupting_fever_duration_+%"]=5794, + ["counter_attacks_maximum_added_cold_damage"]=3880, + ["counter_attacks_maximum_added_physical_damage"]=3873, + ["counter_attacks_minimum_added_cold_damage"]=3880, + ["counter_attacks_minimum_added_physical_damage"]=3873, + ["counterattacks_cooldown_recovery_+%"]=5795, + ["counterattacks_deal_double_damage"]=5796, + ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5797, + ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5798, + ["cover_in_ash_on_hit_%"]=5799, + ["cover_in_ash_on_hit_%_while_you_are_burning"]=5800, + ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5801, + ["cover_in_frost_on_hit"]=5802, + ["crab_aspect_crab_barrier_max_+"]=4031, + ["crackling_lance_cast_speed_+%"]=5803, + ["crackling_lance_damage_+%"]=5804, + ["create_additional_brand_%_chance"]=5805, + ["create_blighted_spore_on_killing_rare_enemy"]=5806, + ["create_chilling_ground_on_freeze"]=5807, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5808, + ["create_consecrated_ground_on_kill_%"]=5809, + ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5810, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=5811, + ["create_profane_ground_instead_of_consecrated_ground"]=5812, + ["create_smoke_cloud_on_kill_%_chance"]=5813, + ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=5814, + ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5815, + ["cremation_base_fires_projectile_every_x_ms"]=5816, + ["critical_bonus_+%_final_while_shocked"]=5818, + ["critical_chance_luck_against_parry_debuffed_enemies"]=5819, + ["critical_damage_+%_per_50_current_life"]=5820, + ["critical_hit_bleeding_effect_+%"]=5821, + ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5822, + ["critical_hit_chance_+%_vs_humanoids"]=5823, + ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5824, + ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5825, + ["critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance"]=5826, + ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5827, + ["critical_hit_damaging_ailment_effect_+%"]=5828, + ["critical_hit_ignite_effect_+%"]=5829, + ["critical_hit_poison_effect_+%"]=5830, + ["critical_hits_always_apply_impale"]=5831, + ["critical_hits_apply_life_regeneration_rate_+%_for_4_seconds"]=5832, + ["critical_hits_cannot_consume_impale"]=5833, + ["critical_hits_ignore_armour"]=5834, + ["critical_multiplier_+%_per_10_max_es_on_shield"]=5835, + ["critical_strike_%_chance_to_deal_double_damage"]=5904, + ["critical_strike_chance_+%"]=999, + ["critical_strike_chance_+%_against_enemies_marked_by_you"]=5836, + ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5851, + ["critical_strike_chance_+%_during_any_flask_effect"]=5852, + ["critical_strike_chance_+%_final_while_affected_by_precision"]=5837, + ["critical_strike_chance_+%_final_while_unhinged"]=5853, + ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3168, + ["critical_strike_chance_+%_for_forking_arrows"]=3994, + ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5854, + ["critical_strike_chance_+%_if_enemy_killed_recently"]=5855, + ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5856, + ["critical_strike_chance_+%_if_have_not_crit_recently"]=5857, + ["critical_strike_chance_+%_if_havent_blocked_recently"]=5858, + ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5859, + ["critical_strike_chance_+%_if_triggered_skill_recently"]=5838, + ["critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently"]=5839, + ["critical_strike_chance_+%_per_10_strength"]=5860, + ["critical_strike_chance_+%_per_25_intelligence"]=5861, + ["critical_strike_chance_+%_per_8_strength"]=2710, + ["critical_strike_chance_+%_per_blitz_charge"]=5862, + ["critical_strike_chance_+%_per_brand"]=5863, + ["critical_strike_chance_+%_per_endurance_charge"]=5864, + ["critical_strike_chance_+%_per_frenzy_charge"]=5865, + ["critical_strike_chance_+%_per_intensity"]=5866, + ["critical_strike_chance_+%_per_level"]=2729, + ["critical_strike_chance_+%_per_lightning_adaptation"]=4101, + ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5867, + ["critical_strike_chance_+%_per_power_charge"]=2915, + ["critical_strike_chance_+%_per_righteous_charge"]=5868, + ["critical_strike_chance_+%_per_stackable_unique_jewel"]=3835, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=2931, + ["critical_strike_chance_+%_vs_blinded_enemies"]=3126, + ["critical_strike_chance_+%_vs_dazed_enemies"]=5840, + ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5841, + ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3735, + ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3238, + ["critical_strike_chance_+%_vs_exposed"]=5842, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=5843, + ["critical_strike_chance_+%_vs_marked_enemies"]=5844, + ["critical_strike_chance_+%_vs_poisoned_enemies"]=3022, + ["critical_strike_chance_+%_vs_shocked_enemies"]=5817, + ["critical_strike_chance_+%_vs_taunted_enemies"]=5869, + ["critical_strike_chance_+%_when_in_main_hand"]=3858, + ["critical_strike_chance_+%_while_affected_by_wrath"]=5870, + ["critical_strike_chance_+%_while_channelling"]=5871, + ["critical_strike_chance_+%_while_shapeshifted"]=5845, + ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10726, + ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5875, + ["critical_strike_chance_+%_with_at_least_200_int"]=4049, + ["critical_strike_chance_+%_with_unarmed_attacks"]=5846, + ["critical_strike_chance_against_cursed_enemies_+%"]=5847, + ["critical_strike_chance_against_enemies_on_full_life_+%"]=3463, + ["critical_strike_chance_cannot_be_rerolled"]=5848, + ["critical_strike_chance_increased_by_lightning_resistance"]=5849, + ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5850, + ["critical_strike_chance_while_dual_wielding_+%"]=1399, + ["critical_strike_chance_while_wielding_shield_+%"]=1393, + ["critical_strike_damage_cannot_be_reflected"]=5876, + ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5902, + ["critical_strike_multiplier_+%_with_claws_daggers"]=5903, + ["critical_strike_multiplier_+_during_any_flask_effect"]=5881, + ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5882, + ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5883, + ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5884, + ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5885, + ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5886, + ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5887, + ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5877, + ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5888, + ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5889, + ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5890, + ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5891, + ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5892, + ["critical_strike_multiplier_+_per_1%_block_chance"]=2930, + ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5893, + ["critical_strike_multiplier_+_per_power_charge"]=3012, + ["critical_strike_multiplier_+_vs_bleeding_enemies"]=2928, + ["critical_strike_multiplier_+_vs_burning_enemies"]=2929, + ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3263, + ["critical_strike_multiplier_+_vs_stunned_enemies"]=5878, + ["critical_strike_multiplier_+_vs_taunted_enemies"]=5894, + ["critical_strike_multiplier_+_vs_unique_enemies"]=5895, + ["critical_strike_multiplier_+_while_affected_by_anger"]=5896, + ["critical_strike_multiplier_+_while_affected_by_precision"]=5897, + ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1811, + ["critical_strike_multiplier_+_with_herald_skills"]=5901, + ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5879, + ["critical_strike_multiplier_is_250"]=5880, + ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3152, + ["critical_strike_multiplier_while_dual_wielding_+"]=1419, + ["critical_strike_multiplier_with_dagger_+"]=1408, + ["critical_strikes_always_knockback_shocked_enemies"]=5905, + ["critical_strikes_deal_no_damage"]=5906, + ["critical_strikes_do_not_always_ignite"]=5907, + ["critical_strikes_from_spells_have_no_multiplier"]=5908, + ["critical_strikes_ignore_elemental_resistances"]=3166, + ["critical_strikes_ignore_lightning_resistance"]=5909, + ["critical_strikes_ignore_positive_elemental_resistances"]=5910, + ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5911, + ["critical_support_gem_level_+"]=5912, + ["crits_have_culling_strike"]=3156, + ["crossbow_accuracy_rating"]=3972, + ["crossbow_accuracy_rating_+%"]=3973, + ["crossbow_attack_%_chance_to_not_consume_ammo"]=5913, + ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5914, + ["crossbow_attack_speed_+%"]=3974, + ["crossbow_critical_strike_chance_+%"]=3975, + ["crossbow_critical_strike_multiplier_+"]=3976, + ["crossbow_damage_+%"]=3970, + ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5915, + ["crossbow_elemental_damage_+%"]=3971, + ["crossbow_physical_damage_+%"]=3977, + ["crossbow_skill_gem_level_+"]=993, + ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5916, + ["cruelty_effect_+%"]=5917, + ["crush_for_2_seconds_on_hit_%_chance"]=5918, + ["crush_on_hit_ms_vs_full_life_enemies"]=5919, + ["culling_strike_enemies_on_block"]=5920, + ["culling_strike_on_burning_enemies"]=2614, + ["culling_strike_threshold_+%"]=5924, + ["culling_strike_threshold_+%_if_culled_recently"]=5921, + ["culling_strike_threshold_+%_vs_immobilised_enemies"]=5922, + ["culling_strike_threshold_+%_vs_rare_or_unique_monsters"]=5923, + ["culling_strike_vs_beasts_while_in_presence_of_beast_companion"]=5925, + ["culling_strike_vs_cursed_enemies"]=5926, + ["culling_strike_vs_marked_enemy"]=5927, + ["current_endurance_charges"]=15, + ["current_energy_shield_%_as_elemental_damage_reduction"]=5929, + ["current_energy_shield_%_as_physical_damage_reduction"]=5928, + ["current_frenzy_charges"]=16, + ["current_power_charges"]=17, + ["curse_area_of_effect_+%"]=1972, + ["curse_aura_skill_area_of_effect_+%"]=5930, + ["curse_aura_skills_mana_reservation_efficiency_+%"]=5933, + ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5932, + ["curse_aura_skills_reservation_efficiency_+%"]=5931, + ["curse_cast_speed_+%"]=1966, + ["curse_delay_+%"]=5934, + ["curse_delay_+%_per_20_tribute"]=5935, + ["curse_duration_+%_if_you_have_at_least_100_tribute"]=5936, + ["curse_duration_+%_per_10_tribute"]=5937, + ["curse_effect_+%"]=2398, + ["curse_effect_+%_if_200_mana_spent_recently"]=5940, + ["curse_effect_on_self_+%"]=1933, + ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5938, + ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5939, + ["curse_ignores_curse_limit"]=5941, + ["curse_mana_cost_+%"]=5942, + ["curse_on_block_enfeeble_chance_%"]=5943, + ["curse_on_hit_%_conductivity"]=2316, + ["curse_on_hit_%_despair"]=2317, + ["curse_on_hit_%_elemental_weakness"]=2318, + ["curse_on_hit_%_enfeeble"]=2315, + ["curse_on_hit_%_flammability"]=2319, + ["curse_on_hit_%_frostbite"]=2320, + ["curse_on_hit_%_temporal_chains"]=2321, + ["curse_on_hit_%_vulnerability"]=2322, + ["curse_on_hit_level_10_vulnerability_%"]=2326, + ["curse_on_hit_level_cold_weakness"]=2328, + ["curse_on_hit_level_conductivity"]=2329, + ["curse_on_hit_level_despair"]=2330, + ["curse_on_hit_level_elemental_weakness"]=2327, + ["curse_on_hit_level_enfeeble"]=2331, + ["curse_on_hit_level_flammability"]=2332, + ["curse_on_hit_level_frostbite"]=2333, + ["curse_on_hit_level_temporal_chains"]=2324, + ["curse_on_hit_level_vulnerability"]=2325, + ["curse_pillar_curse_effect_+%_final"]=2399, + ["curse_skill_effect_duration_+%"]=5944, + ["curse_skill_gem_level_+"]=994, + ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2323, + ["curse_with_punishment_on_hit_%"]=5945, + ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5947, + ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5948, + ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5949, + ["cursed_enemies_are_exorcised_on_kill"]=5946, + ["cursed_with_silence_when_hit_%_chance"]=5950, + ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5951, + ["curses_never_expire"]=1925, + ["curses_reflected_to_self"]=5952, + ["curses_you_inflict_remain_after_death"]=5953, + ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5954, + ["cyclone_and_sweep_melee_knockback"]=5955, + ["cyclone_attack_speed_+%"]=3554, + ["cyclone_damage_+%"]=3376, + ["cyclone_max_stages_movement_speed_+%"]=5956, + ["dagger_accuracy_rating"]=1770, + ["dagger_accuracy_rating_+%"]=1362, + ["dagger_attack_speed_+%"]=1345, + ["dagger_critical_strike_chance_+%"]=1386, + ["dagger_damage_+%"]=1268, + ["damage_+%"]=1173, + ["damage_+%_against_enemies_marked_by_you"]=5989, + ["damage_+%_against_enemies_with_fully_broken_armour"]=5957, + ["damage_+%_during_flask_effect"]=3759, + ["damage_+%_final_against_bloodlusting_enemies"]=5958, + ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5990, + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5959, + ["damage_+%_final_with_at_least_1_nearby_ally"]=5991, + ["damage_+%_for_4_seconds_on_crit"]=3167, + ["damage_+%_for_4_seconds_on_detonation"]=3188, + ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3762, + ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3739, + ["damage_+%_for_each_herald_affecting_you"]=5992, + ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3867, + ["damage_+%_for_each_trap_and_mine_active"]=3753, + ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5993, + ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3747, + ["damage_+%_if_consumed_frenzy_charge_recently"]=5960, + ["damage_+%_if_enemy_killed_recently"]=5994, + ["damage_+%_if_enemy_killed_recently_final"]=3892, + ["damage_+%_if_enemy_shattered_recently"]=5995, + ["damage_+%_if_firing_atleast_7_projectiles"]=5996, + ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3398, + ["damage_+%_if_have_been_ignited_recently"]=5997, + ["damage_+%_if_have_crit_in_past_8_seconds"]=5998, + ["damage_+%_if_only_one_enemy_nearby"]=5999, + ["damage_+%_if_skill_costs_life"]=6000, + ["damage_+%_if_triggered_skill_recently"]=5961, + ["damage_+%_if_used_travel_skill_recently"]=6001, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=3923, + ["damage_+%_if_you_have_frozen_enemy_recently"]=6002, + ["damage_+%_if_you_have_shocked_recently"]=6003, + ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3768, + ["damage_+%_on_consecrated_ground"]=3259, + ["damage_+%_on_full_energy_shield"]=6028, + ["damage_+%_per_1%_block_chance"]=6011, + ["damage_+%_per_1%_increased_item_found_quantity"]=6012, + ["damage_+%_per_100_dexterity"]=6004, + ["damage_+%_per_100_intelligence"]=6005, + ["damage_+%_per_100_strength"]=6006, + ["damage_+%_per_10_dex"]=6007, + ["damage_+%_per_10_levels"]=2616, + ["damage_+%_per_15_dex"]=6008, + ["damage_+%_per_15_int"]=6009, + ["damage_+%_per_15_strength"]=6010, + ["damage_+%_per_5_of_your_lowest_attribute"]=6013, + ["damage_+%_per_abyss_jewel_type"]=3843, + ["damage_+%_per_active_curse_on_self"]=1196, + ["damage_+%_per_active_golem"]=6014, + ["damage_+%_per_active_link"]=6015, + ["damage_+%_per_active_minion"]=5962, + ["damage_+%_per_active_trap"]=3177, + ["damage_+%_per_crab_charge"]=4032, + ["damage_+%_per_different_companion_in_presence"]=5963, + ["damage_+%_per_different_warcry_used_recently"]=6016, + ["damage_+%_per_endurance_charge"]=2939, + ["damage_+%_per_enemy_elemental_ailment"]=5964, + ["damage_+%_per_equipped_magic_item"]=2831, + ["damage_+%_per_fire_adaptation"]=4099, + ["damage_+%_per_frenzy_charge"]=3016, + ["damage_+%_per_frenzy_power_or_endurance_charge"]=6017, + ["damage_+%_per_poison_stack"]=5965, + ["damage_+%_per_poison_up_to_75%"]=6018, + ["damage_+%_per_power_charge"]=6019, + ["damage_+%_per_raised_zombie"]=5966, + ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=6020, + ["damage_+%_per_shock"]=2557, + ["damage_+%_per_warcry_used_recently"]=6021, + ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=6022, + ["damage_+%_to_rare_and_unique_enemies"]=2948, + ["damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute"]=5967, + ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3763, + ["damage_+%_vs_abyssal_monsters"]=6023, + ["damage_+%_vs_blinded_enemies"]=2590, + ["damage_+%_vs_burning_enemies"]=3163, + ["damage_+%_vs_dazed_enemies"]=5968, + ["damage_+%_vs_demons"]=2548, + ["damage_+%_vs_enemies_affected_by_status_ailments"]=3173, + ["damage_+%_vs_enemies_on_full_life"]=6024, + ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2589, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1216, + ["damage_+%_vs_frozen_enemies"]=1212, + ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1217, + ["damage_+%_vs_hindered_enemies"]=3784, + ["damage_+%_vs_immobilised_enemies"]=5969, + ["damage_+%_vs_immobilised_enemies_while_shapeshifted"]=5970, + ["damage_+%_vs_magic_monsters"]=6026, + ["damage_+%_vs_rare_monsters"]=2586, + ["damage_+%_vs_taunted_enemies"]=6027, + ["damage_+%_when_currently_has_no_energy_shield"]=2519, + ["damage_+%_when_not_on_low_life"]=2944, + ["damage_+%_when_on_burning_ground"]=1908, + ["damage_+%_when_on_full_life"]=6029, + ["damage_+%_when_on_low_life"]=1195, + ["damage_+%_while_affected_by_a_herald"]=6030, + ["damage_+%_while_channelling"]=6031, + ["damage_+%_while_dead"]=2846, + ["damage_+%_while_es_not_full"]=3755, + ["damage_+%_while_fortified"]=2937, + ["damage_+%_while_ignited"]=2581, + ["damage_+%_while_in_blood_stance"]=6032, + ["damage_+%_while_in_presence_of_companion"]=5971, + ["damage_+%_while_leeching"]=2817, + ["damage_+%_while_life_leeching"]=1197, + ["damage_+%_while_mana_leeching"]=1199, + ["damage_+%_while_shapeshifted"]=5972, + ["damage_+%_while_totem_active"]=2945, + ["damage_+%_while_using_charm"]=6033, + ["damage_+%_while_wielding_bow_if_totem_summoned"]=6034, + ["damage_+%_while_wielding_two_different_weapon_types"]=6035, + ["damage_+%_while_wielding_wand"]=1285, + ["damage_+%_while_you_have_a_summoned_golem"]=6036, + ["damage_+%_with_bow_skills"]=902, + ["damage_+%_with_daggers_against_full_life_enemies"]=6037, + ["damage_+%_with_herald_skills"]=6038, + ["damage_+%_with_maces_sceptres_staves"]=6039, + ["damage_+%_with_melee_weapons"]=1247, + ["damage_+%_with_movement_skills"]=1353, + ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6040, + ["damage_+%_with_one_handed_melee_weapons"]=1246, + ["damage_+%_with_one_handed_weapons"]=3063, + ["damage_+%_with_shield_skills"]=6041, + ["damage_+%_with_shield_skills_per_2%_attack_block"]=6042, + ["damage_+%_with_two_handed_melee_weapons"]=1252, + ["damage_+%_with_two_handed_weapons"]=3064, + ["damage_+1%_per_X_strength_when_in_main_hand"]=2558, + ["damage_against_undead_+%"]=5973, + ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3169, + ["damage_blocked_%_recouped_as_mana"]=5974, + ["damage_cannot_be_taken_from_ward"]=5975, + ["damage_over_time_+%"]=1190, + ["damage_over_time_+%_per_frenzy_charge"]=1894, + ["damage_over_time_+%_per_power_charge"]=1895, + ["damage_over_time_+%_while_affected_by_a_herald"]=5977, + ["damage_over_time_+%_while_dual_wielding"]=1896, + ["damage_over_time_+%_while_holding_a_shield"]=1897, + ["damage_over_time_+%_while_wielding_two_handed_weapon"]=1898, + ["damage_over_time_+%_with_attack_skills"]=5978, + ["damage_over_time_+%_with_bow_skills"]=5979, + ["damage_over_time_+%_with_herald_skills"]=5980, + ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5976, + ["damage_over_time_multiplier_+_with_attacks"]=1219, + ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5981, + ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5982, + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5983, + ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5984, + ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5985, + ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5986, + ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5987, + ["damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds"]=5988, + ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6043, + ["damage_reduction_rating_%_with_active_totem"]=3066, + ["damage_reduction_rating_from_body_armour_doubled"]=3065, + ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6044, + ["damage_removed_from_mana_before_life_%_while_focused"]=6045, + ["damage_removed_from_spectres_before_life_or_es_%"]=6046, + ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6047, + ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6062, + ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6063, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6064, + ["damage_taken_+%_final_per_tailwind"]=6065, + ["damage_taken_+%_final_per_totem"]=6066, + ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6048, + ["damage_taken_+%_for_4_seconds_on_kill"]=3053, + ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3151, + ["damage_taken_+%_from_bleeding_enemies"]=3044, + ["damage_taken_+%_from_blinded_enemies"]=3014, + ["damage_taken_+%_from_ghosts"]=1995, + ["damage_taken_+%_from_hits"]=1987, + ["damage_taken_+%_from_skeletons"]=1994, + ["damage_taken_+%_from_taunted_enemies"]=3764, + ["damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute"]=6049, + ["damage_taken_+%_if_have_been_frozen_recently"]=6067, + ["damage_taken_+%_if_have_not_been_hit_recently"]=6068, + ["damage_taken_+%_if_not_hit_recently_final"]=3861, + ["damage_taken_+%_if_taunted_an_enemy_recently"]=3896, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6050, + ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3849, + ["damage_taken_+%_on_full_life"]=6069, + ["damage_taken_+%_on_low_life"]=6070, + ["damage_taken_+%_per_frenzy_charge"]=2702, + ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3318, + ["damage_taken_+%_vs_demons"]=2547, + ["damage_taken_+%_while_affected_by_elusive"]=6051, + ["damage_taken_+%_while_es_full"]=1991, + ["damage_taken_+%_while_leeching"]=6071, + ["damage_taken_+%_while_phasing"]=6072, + ["damage_taken_from_hits_is_unlucky_if_ward_damaged_recently"]=6052, + ["damage_taken_from_traps_and_mines_+%"]=3024, + ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6053, + ["damage_taken_goes_to_life_over_4_seconds_%"]=1060, + ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"]=6054, + ["damage_taken_goes_to_mana_%"]=1067, + ["damage_taken_goes_to_mana_%_per_10_tribute"]=6055, + ["damage_taken_goes_to_mana_%_per_power_charge"]=2914, + ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6056, + ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6057, + ["damage_taken_per_250_dexterity_+%"]=6058, + ["damage_taken_per_250_intelligence_+%"]=6059, + ["damage_taken_per_250_strength_+%"]=6060, + ["damage_taken_per_ghost_dance_stack_+%"]=6061, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2771, + ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2755, + ["damage_vs_enemies_on_low_life_+%"]=2587, + ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2756, + ["damage_vs_shocked_enemies_+%"]=1214, + ["damage_while_dual_wielding_+%"]=1240, + ["damage_while_no_damage_taken_+%"]=2957, + ["damage_while_no_frenzy_charges_+%"]=3462, + ["damage_with_cold_skills_+%"]=1303, + ["damage_with_fire_skills_+%"]=1295, + ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=6073, + ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=6074, + ["damage_with_lightning_skills_+%"]=1308, + ["damaging_ailment_duration_+%"]=6075, + ["damaging_ailment_duration_+%_per_10_tribute"]=6076, + ["damaging_ailments_deal_damage_+%_faster"]=6078, + ["dark_pact_minions_recover_%_life_on_hit"]=6079, + ["dark_ritual_area_of_effect_+%"]=6080, + ["dark_ritual_damage_+%"]=6081, + ["dark_ritual_linked_curse_effect_+%"]=6082, + ["darkness_per_level"]=6083, + ["darkness_refresh_rate_+%"]=6084, + ["daytime_fish_caught_size_+%"]=6085, + ["daze_build_up_+%"]=6086, + ["daze_duration_+%"]=6087, + ["daze_magnitude_+%"]=6088, + ["deadeye_accuracy_unaffected_by_range"]=6089, + ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6090, + ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=6091, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=6092, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6093, + ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6094, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6095, + ["deal_double_damage_to_enemies_on_full_life"]=6096, + ["deal_no_damage_when_not_on_low_life"]=6097, + ["deal_no_damage_yourself"]=1996, + ["deal_no_elemental_damage"]=6098, + ["deal_no_elemental_physical_damage"]=6099, + ["deal_no_non_chaos_damage"]=6100, + ["deal_no_non_cold_damage"]=2577, + ["deal_no_non_elemental_damage"]=6101, + ["deal_no_non_fire_damage"]=2575, + ["deal_no_non_lightning_damage"]=2576, + ["deal_no_non_physical_damage"]=2573, + ["deal_thorns_damage_on_hit"]=6102, + ["deal_thorns_damage_on_melee_crit"]=6103, + ["deal_thorns_damage_on_stun"]=6104, + ["deathgrip_presence"]=6105, + ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2488, + ["deaths_oath_debuff_on_kill_duration_ms"]=2488, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6106, + ["debilitate_enemies_within_X_metres_while_active_blocking"]=6107, + ["debuff_time_passed_+%"]=6109, + ["debuff_time_passed_-%_while_affected_by_haste"]=6108, + ["decimating_strike"]=6110, + ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6111, + ["decoy_totem_life_+%"]=3679, + ["decoy_totem_radius_+%"]=3526, + ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6117, + ["defend_with_%_armour_against_critical_strikes"]=6118, + ["defend_with_%_armour_against_hits_from_distance_greater_than_6m"]=6119, + ["defend_with_%_armour_against_ranged_attacks"]=6120, + ["defend_with_%_armour_when_low_energy_shield"]=6121, + ["defend_with_%_armour_while_you_have_energy_shield"]=6122, + ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6123, + ["defiance_banner_aura_effect_+%"]=6124, + ["defiance_banner_mana_reservation_efficiency_+%"]=6125, + ["deflect_chance_is_lucky_while_on_low_life"]=1054, + ["deflected_hit_damage_taken_%_recouped_as_life"]=6126, + ["deflected_hits_cannot_directly_inflict_maim_on_self"]=6127, + ["deflected_hits_cannot_inflict_bleeding_on_self"]=6128, + ["deflection_rating_+%"]=6129, + ["deflection_rating_+%_while_moving"]=6130, + ["deflection_rating_+%_while_surrounded"]=6131, + ["degen_effect_+%"]=1992, + ["delirium_aura_effect_+%"]=6132, + ["delirium_mana_reservation_+%"]=6133, + ["delirium_reserves_no_mana"]=6134, + ["delve_biome_area_contains_x_extra_packs_of_insects"]=6135, + ["delve_biome_azurite_collected_+%"]=2057, + ["delve_biome_boss_drops_additional_unique_item"]=2048, + ["delve_biome_boss_drops_extra_precursor_component_ring"]=2049, + ["delve_biome_boss_drops_x_additional_fossils"]=2050, + ["delve_biome_boss_hits_always_crit"]=2051, + ["delve_biome_boss_life_+%_final"]=2052, + ["delve_biome_boss_physical_damage_%_to_gain_as_cold"]=2053, + ["delve_biome_boss_physical_damage_%_to_gain_as_fire"]=2054, + ["delve_biome_boss_physical_damage_%_to_gain_as_lightning"]=2055, + ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2059, + ["delve_biome_contains_delve_boss"]=2047, + ["delve_biome_encounters_extra_reward_chest_%_chance"]=2060, + ["delve_biome_monster_drop_fossil_chance_%"]=2061, + ["delve_biome_monster_projectiles_always_pierce"]=6136, + ["delve_biome_node_tier_upgrade_+%"]=2063, + ["delve_biome_off_path_reward_chests_always_azurite"]=2065, + ["delve_biome_off_path_reward_chests_always_currency"]=2066, + ["delve_biome_off_path_reward_chests_always_fossils"]=2067, + ["delve_biome_off_path_reward_chests_always_resonators"]=2068, + ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2069, + ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2070, + ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2071, + ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2072, + ["delve_biome_sulphite_cost_+%_final"]=2058, + ["delve_boss_life_+%_final_from_biome"]=6137, + ["demigod_footprints_from_item"]=10735, + ["demigods_virtue"]=10656, + ["demon_form_has_no_max_stacks"]=6138, + ["demon_minion_reservation_+%"]=9964, + ["desecrate_cooldown_speed_+%"]=3574, + ["desecrate_creates_X_additional_corpses"]=3922, + ["desecrate_damage_+%"]=3418, + ["desecrate_duration_+%"]=3608, + ["desecrate_maximum_number_of_corpses"]=6140, + ["desecrate_number_of_corpses_to_create"]=3798, + ["desecrate_on_block_%_chance_to_create"]=2378, + ["desecrated_ground_effect_on_self_+%"]=1910, + ["despair_curse_effect_+%"]=6141, + ["despair_duration_+%"]=6142, + ["despair_gem_level_+"]=2004, + ["despair_no_reservation"]=6143, + ["destructive_link_duration_+%"]=6144, + ["determination_aura_effect_+%"]=3093, + ["determination_mana_reservation_+%"]=3715, + ["determination_mana_reservation_efficiency_+%"]=6146, + ["determination_mana_reservation_efficiency_-2%_per_1"]=6145, + ["determination_reserves_no_mana"]=6147, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3677, + ["detonate_dead_damage_+%"]=3387, + ["detonate_dead_radius_+%"]=3521, + ["detonator_skill_area_of_effect_+%"]=6148, + ["detonator_skill_damage_+%"]=6149, + ["devouring_totem_%_chance_to_consume_additional_corpse"]=3685, + ["dexterity_+%"]=1023, + ["dexterity_+%_if_strength_higher_than_intelligence"]=6151, + ["dexterity_and_intelligence_+%"]=1027, + ["dexterity_can_satisfy_strength_and_intelligence_requirements_of_melee_weapons_and_skills"]=6150, + ["dexterity_inherently_grants_mana_instead_of_accuracy"]=1781, + ["dexterity_skill_gem_level_+"]=977, + ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=414, + ["disable_chest_slot"]=2386, + ["disable_skill_if_melee_attack"]=2299, + ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6152, + ["discharge_area_of_effect_+%_final"]=6153, + ["discharge_chance_not_to_consume_charges_%"]=3136, + ["discharge_cooldown_override_ms"]=6154, + ["discharge_damage_+%"]=3134, + ["discharge_damage_+%_final"]=6155, + ["discharge_radius_+"]=6156, + ["discharge_radius_+%"]=3135, + ["discharge_triggered_damage_+%_final"]=6157, + ["discipline_aura_effect_+%"]=3094, + ["discipline_mana_reservation_+%"]=3716, + ["discipline_mana_reservation_efficiency_+%"]=6159, + ["discipline_mana_reservation_efficiency_-2%_per_1"]=6158, + ["discipline_reserves_no_mana"]=6160, + ["disintegrate_secondary_beam_angle_+%"]=6161, + ["dispel_bleed_on_guard_skill_use"]=6162, + ["dispel_corrupted_blood_on_guard_skill_use"]=6163, + ["dispel_status_ailments_on_flask_use"]=3026, + ["dispel_status_ailments_on_rampage_threshold"]=2722, + ["display_abberaths_hooves_skill_level"]=573, + ["display_ailment_bearer_charge_interval"]=4111, + ["display_altar_chaos_aura"]=6164, + ["display_altar_cold_aura"]=6165, + ["display_altar_fire_aura"]=6166, + ["display_altar_lightning_aura"]=6167, + ["display_altar_tangle_tentalces_daemon"]=6168, + ["display_area_contains_alluring_vaal_side_area"]=6169, + ["display_area_contains_corrupting_tempest"]=6170, + ["display_area_contains_improved_labyrinth_trial"]=6171, + ["display_attack_with_commandment_of_force_on_hit_%"]=3220, + ["display_attack_with_commandment_of_fury_on_hit_%"]=3232, + ["display_attack_with_commandment_of_ire_when_hit_%"]=3700, + ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3224, + ["display_attack_with_commandment_of_spite_when_hit_%"]=3236, + ["display_attack_with_decree_of_force_on_hit_%"]=3219, + ["display_attack_with_decree_of_fury_on_hit_%"]=3231, + ["display_attack_with_decree_of_ire_when_hit_%"]=3699, + ["display_attack_with_decree_of_light_when_critically_hit_%"]=3223, + ["display_attack_with_decree_of_spite_when_hit_%"]=3235, + ["display_attack_with_edict_of_force_on_hit_%"]=3218, + ["display_attack_with_edict_of_fury_on_hit_%"]=3230, + ["display_attack_with_edict_of_ire_when_hit_%"]=3698, + ["display_attack_with_edict_of_light_when_critically_hit_%"]=3222, + ["display_attack_with_edict_of_spite_when_hit_%"]=3234, + ["display_attack_with_word_of_force_on_hit_%"]=3217, + ["display_attack_with_word_of_fury_on_hit_%"]=3229, + ["display_attack_with_word_of_ire_when_hit_%"]=3697, + ["display_attack_with_word_of_light_when_critically_hit_%"]=3221, + ["display_attack_with_word_of_spite_when_hit_%"]=3233, + ["display_bow_range_+"]=2818, + ["display_cast_commandment_of_blades_on_hit_%_"]=3196, + ["display_cast_commandment_of_flames_on_hit_%"]=3246, + ["display_cast_commandment_of_frost_on_kill_%"]=3250, + ["display_cast_commandment_of_inferno_on_kill_%"]=3204, + ["display_cast_commandment_of_reflection_when_hit_%"]=3216, + ["display_cast_commandment_of_tempest_on_hit_%"]=3208, + ["display_cast_commandment_of_the_grave_on_kill_%"]=3212, + ["display_cast_commandment_of_thunder_on_kill_%"]=3254, + ["display_cast_commandment_of_war_on_kill_%"]=3228, + ["display_cast_commandment_of_winter_when_hit_%"]=3200, + ["display_cast_decree_of_blades_on_hit_%__"]=3195, + ["display_cast_decree_of_flames_on_hit_%"]=3245, + ["display_cast_decree_of_frost_on_kill_%"]=3249, + ["display_cast_decree_of_inferno_on_kill_%"]=3203, + ["display_cast_decree_of_reflection_when_hit_%"]=3215, + ["display_cast_decree_of_tempest_on_hit_%"]=3207, + ["display_cast_decree_of_the_grave_on_kill_%"]=3211, + ["display_cast_decree_of_thunder_on_kill_%"]=3253, + ["display_cast_decree_of_war_on_kill_%"]=3227, + ["display_cast_decree_of_winter_when_hit_%"]=3199, + ["display_cast_edict_of_blades_on_hit_%_"]=3194, + ["display_cast_edict_of_flames_on_hit_%"]=3244, + ["display_cast_edict_of_frost_on_kill_%"]=3248, + ["display_cast_edict_of_inferno_on_kill_%"]=3202, + ["display_cast_edict_of_reflection_when_hit_%"]=3214, + ["display_cast_edict_of_tempest_on_hit_%"]=3206, + ["display_cast_edict_of_the_grave_on_kill_%"]=3210, + ["display_cast_edict_of_thunder_on_kill_%"]=3252, + ["display_cast_edict_of_war_on_kill_%"]=3226, + ["display_cast_edict_of_winter_when_hit_%"]=3198, + ["display_cast_fire_burst_on_kill"]=574, + ["display_cast_word_of_blades_on_hit_%"]=3193, + ["display_cast_word_of_flames_on_hit_%"]=3243, + ["display_cast_word_of_frost_on_kill_%"]=3247, + ["display_cast_word_of_inferno_on_kill_%"]=3201, + ["display_cast_word_of_reflection_when_hit_%"]=3213, + ["display_cast_word_of_tempest_on_hit_%"]=3205, + ["display_cast_word_of_the_grave_on_kill_%"]=3209, + ["display_cast_word_of_thunder_on_kill_%"]=3251, + ["display_cast_word_of_war_on_kill_%"]=3225, + ["display_cast_word_of_winter_when_hit_%"]=3197, + ["display_cowards_trial_waves_of_monsters"]=6172, + ["display_cowards_trial_waves_of_undead_monsters"]=6173, + ["display_dark_ritual_curse_max_skill_level_requirement"]=6174, + ["display_golden_radiance"]=2298, + ["display_heist_contract_lockdown_timer_+%"]=6175, + ["display_herald_of_thunder_storm"]=5811, + ["display_item_can_also_roll_ring_mods"]=6176, + ["display_item_generation_can_roll_minion_affixes"]=44, + ["display_item_generation_can_roll_totem_affixes"]=45, + ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6177, + ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6178, + ["display_legion_uber_fragment_improved_rewards_+%"]=6179, + ["display_link_stuff"]=7582, + ["display_mana_cost_reduction_%"]=1718, + ["display_map_augmentable_boss"]=6180, + ["display_map_boss_gives_experience_+%"]=2619, + ["display_map_final_boss_drops_higher_level_gear"]=2618, + ["display_map_has_oxygen"]=2749, + ["display_map_inhabited_by_lunaris_fanatics"]=6181, + ["display_map_inhabited_by_solaris_fanatics"]=6182, + ["display_map_inhabited_by_wild_beasts"]=2101, + ["display_map_labyrinth_chests_fortune"]=6183, + ["display_map_labyrinth_enchant_belts"]=6184, + ["display_map_large_chest"]=2344, + ["display_map_larger_maze"]=2343, + ["display_map_mission_id"]=6185, + ["display_map_no_monsters"]=2204, + ["display_map_restless_dead"]=2342, + ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6186, + ["display_memory_line_ambush_contains_standalone_map_boss"]=6187, + ["display_memory_line_ambush_strongbox_chain"]=6188, + ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6189, + ["display_memory_line_bestiary_capturable_harvest_monsters"]=6190, + ["display_memory_line_breach_area_is_breached"]=6191, + ["display_memory_line_breach_miniature_flash_breaches"]=6192, + ["display_memory_line_domination_multiple_modded_shrines"]=6193, + ["display_memory_line_domination_shrines_to_pantheon_gods"]=6194, + ["display_memory_line_essence_multiple_rare_monsters"]=6195, + ["display_memory_line_essence_rogue_exiles"]=6196, + ["display_memory_line_harbinger_player_is_a_harbinger"]=6197, + ["display_memory_line_harbinger_portals_everywhere"]=6198, + ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6199, + ["display_memory_line_torment_player_is_possessed"]=6200, + ["display_memory_line_torment_rares_uniques_are_possessed"]=6201, + ["display_minion_maximum_life"]=1719, + ["display_modifiers_to_totem_life_effect_these_minions"]=6202, + ["display_passive_attribute_text"]=6203, + ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=409, + ["display_stat_coming_soon"]=6204, + ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6205, + ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=575, + ["distance_scaled_accuracy_rating_penalty_+%"]=6206, + ["divine_tempest_beam_width_+%"]=6207, + ["divine_tempest_damage_+%"]=6208, + ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6209, + ["do_not_chain"]=1568, + ["dodge_roll_base_travel_distance"]=6210, + ["dodge_roll_can_avoid_all_damage"]=6211, + ["dodge_roll_phasing_without_visual"]=6212, + ["dodge_roll_speed_+%"]=6213, + ["dodge_roll_travel_distance_+_if_dodge_rolled_recently"]=4113, + ["dodge_roll_travel_distance_+_if_not_dodge_rolled_recently"]=4112, + ["dodge_roll_travel_distance_+_while_surrounded"]=6214, + ["doedre_aura_damage_+%_final"]=6215, + ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2759, + ["dominance_armour_evasion_energy_shield_+%_on_nearby_allies_per_100_strength"]=2760, + ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2762, + ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2761, + ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6216, + ["dominating_blow_duration_+%"]=3590, + ["dominating_blow_minion_damage_+%"]=3401, + ["dominating_blow_skill_attack_damage_+%"]=3402, + ["dot_multiplier_+"]=1218, + ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6217, + ["dot_multiplier_+_while_affected_by_malevolence"]=6218, + ["dot_multiplier_+_with_bow_skills"]=6219, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6220, + ["double_armour_effect"]=6221, + ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6223, + ["double_damage_chance_%_if_below_100_strength"]=6222, + ["double_effect_of_consuming_frenzy_charges"]=6224, + ["double_evasion_rating_from_gloves_helmets_boots"]=6225, + ["double_evasion_rating_if_you_havent_been_hit_recently"]=6226, + ["double_number_of_poison_you_can_inflict"]=6227, + ["double_slash_critical_strike_chance_+%"]=3822, + ["double_slash_damage_+%"]=3815, + ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6228, + ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6228, + ["double_slash_radius_+%"]=3824, + ["double_strike_attack_speed_+%"]=3545, + ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6229, + ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2970, + ["double_strike_critical_strike_chance_+%"]=3625, + ["double_strike_damage_+%"]=3330, + ["drain_%_max_mana_to_activate_expended_charms"]=6230, + ["drain_focus_%_of_damage_dealt_on_hit"]=6231, + ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6232, + ["dread_banner_aura_effect_+%"]=6233, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=6234, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=6235, + ["dread_banner_mana_reservation_efficiency_+%"]=6236, + ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6237, + ["dual_strike_attack_speed_+%"]=3546, + ["dual_strike_attack_speed_+%_while_wielding_claw"]=6238, + ["dual_strike_critical_strike_chance_+%"]=3626, + ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6239, + ["dual_strike_damage_+%"]=3331, + ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6240, + ["dual_strike_main_hand_deals_double_damage_%"]=6241, + ["dual_strike_melee_splash_while_wielding_mace"]=6242, + ["dual_strike_melee_splash_with_off_hand_weapon"]=6243, + ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6244, + ["dual_wield_or_shield_block_%"]=1155, + ["dummy_display_defeating_arbiter_will_allow_completion_of_a_section_of_fortress"]=6245, + ["dummy_display_stat_rune_chaos_convert"]=6246, + ["dummy_display_stat_rune_cold_convert"]=6247, + ["dummy_display_stat_rune_create_jewel_socket"]=6248, + ["dummy_display_stat_rune_delevel_inherent_skill"]=6249, + ["dummy_display_stat_rune_fire_convert"]=6250, + ["dummy_display_stat_rune_lightning_convert"]=6251, + ["dummy_display_stat_rune_olroths_legacy"]=6252, + ["dummy_display_stat_rune_reforge"]=6253, + ["dummy_display_stat_rune_upgrade"]=6254, + ["dummy_stat_display_contains_mapuniquelake_mirror"]=424, + ["dummy_stat_zarokhs_gift_jewel_slot"]=6255, + ["duration_of_ailments_on_self_+%_per_fortification"]=6256, + ["each_arrow_fired_gains_random_perdandus_prefix"]=6257, + ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6258, + ["earthquake_damage_+%"]=3433, + ["earthquake_damage_+%_per_100ms_duration"]=6259, + ["earthquake_duration_+%"]=3615, + ["earthquake_radius_+%"]=3536, + ["earthshatter_area_of_effect_+%"]=6260, + ["earthshatter_damage_+%"]=6261, + ["echoed_spell_area_of_effect_+%"]=6262, + ["effects_from_blinded_are_inverted"]=10613, + ["electrocuted_enemy_damage_taken_+%"]=6263, + ["elemental_ailment_chance_+%"]=6264, + ["elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently"]=6265, + ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6266, + ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6267, + ["elemental_ailment_types_apply_damage_taken_+%"]=6268, + ["elemental_ailments_reflected_to_self"]=6269, + ["elemental_critical_strike_chance_+%"]=1403, + ["elemental_critical_strike_multiplier_+"]=1425, + ["elemental_damage_+%"]=1748, + ["elemental_damage_+%_during_flask_effect"]=3899, + ["elemental_damage_+%_final_per_righteous_charge"]=6272, + ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6273, + ["elemental_damage_+%_if_enemy_chilled_recently"]=6274, + ["elemental_damage_+%_if_enemy_ignited_recently"]=6275, + ["elemental_damage_+%_if_enemy_shocked_recently"]=6276, + ["elemental_damage_+%_if_have_crit_recently"]=6277, + ["elemental_damage_+%_if_used_a_warcry_recently"]=6278, + ["elemental_damage_+%_per_10_devotion"]=6279, + ["elemental_damage_+%_per_10_dexterity"]=6280, + ["elemental_damage_+%_per_12_int"]=6281, + ["elemental_damage_+%_per_12_strength"]=6282, + ["elemental_damage_+%_per_divine_charge"]=4072, + ["elemental_damage_+%_per_frenzy_charge"]=1899, + ["elemental_damage_+%_per_level"]=2742, + ["elemental_damage_+%_per_power_charge"]=6283, + ["elemental_damage_+%_per_sextant_affecting_area"]=6284, + ["elemental_damage_+%_per_stackable_unique_jewel"]=3836, + ["elemental_damage_+%_while_affected_by_a_herald"]=6285, + ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6286, + ["elemental_damage_+%_while_shapeshifted"]=6270, + ["elemental_damage_additional_rolls_lucky_shocked"]=6271, + ["elemental_damage_also_contributes_to_flammability_ignite_chill_freeze_and_shock"]=2648, + ["elemental_damage_can_freeze"]=2649, + ["elemental_damage_can_ignite"]=2650, + ["elemental_damage_can_inflict_bleeding"]=2651, + ["elemental_damage_can_shock"]=2652, + ["elemental_damage_reduction_%_from_evasion_rating"]=6287, + ["elemental_damage_resistance_+%"]=6288, + ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6289, + ["elemental_damage_taken_%_as_chaos"]=2237, + ["elemental_damage_taken_%_recouped_as_life"]=6290, + ["elemental_damage_taken_+%"]=3023, + ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3049, + ["elemental_damage_taken_+%_during_flask_effect"]=3761, + ["elemental_damage_taken_+%_final_per_raised_zombie"]=6291, + ["elemental_damage_taken_+%_if_been_hit_recently"]=6293, + ["elemental_damage_taken_+%_if_not_hit_recently"]=6294, + ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6295, + ["elemental_damage_taken_+%_per_endurance_charge"]=6296, + ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3734, + ["elemental_damage_taken_+%_while_stationary"]=6297, + ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6292, + ["elemental_damage_with_attack_skills_+%"]=900, + ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6298, + ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2541, + ["elemental_golem_granted_buff_effect_+%"]=3772, + ["elemental_golem_immunity_to_elemental_damage"]=3769, + ["elemental_golems_maximum_life_is_doubled"]=6299, + ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6300, + ["elemental_hit_attack_speed_+%"]=3553, + ["elemental_hit_cannot_roll_cold_damage"]=6301, + ["elemental_hit_cannot_roll_fire_damage"]=6302, + ["elemental_hit_cannot_roll_lightning_damage"]=6303, + ["elemental_hit_damage_+%"]=3375, + ["elemental_hit_damage_taken_%_as_physical"]=2236, + ["elemental_hit_deals_50%_less_cold_damage"]=6304, + ["elemental_hit_deals_50%_less_fire_damage"]=6305, + ["elemental_hit_deals_50%_less_lightning_damage"]=6306, + ["elemental_overload_rotation_active"]=10720, + ["elemental_penetration_%_during_flask_effect"]=3934, + ["elemental_penetration_%_if_you_have_a_power_charge"]=6308, + ["elemental_penetration_%_while_chilled"]=6309, + ["elemental_penetration_can_go_down_to_override"]=6307, + ["elemental_reflect_damage_taken_+%"]=2502, + ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=6311, + ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6310, + ["elemental_resistance_%_per_10_devotion"]=6314, + ["elemental_resistance_%_per_minion_up_to_30%"]=6312, + ["elemental_resistance_%_per_stackable_unique_jewel"]=3837, + ["elemental_resistance_%_when_on_low_life"]=1506, + ["elemental_resistance_+%_per_15_ascendance"]=1170, + ["elemental_resistance_cannot_be_lowered_by_curses"]=6313, + ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3748, + ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6315, + ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6316, + ["elemental_skill_gem_level_+"]=980, + ["elemental_skill_limit_+"]=6317, + ["elemental_skills_deal_triple_damage"]=6318, + ["elemental_storm_cooldown_recovery_speed_+%_final"]=6319, + ["elemental_sundering_damage_+%_final_if_created_from_unique"]=6320, + ["elemental_weakness_curse_effect_+%"]=3691, + ["elemental_weakness_duration_+%"]=3606, + ["elemental_weakness_gem_level_+"]=2005, + ["elemental_weakness_ignores_hexproof"]=2404, + ["elemental_weakness_no_reservation"]=6321, + ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3324, + ["elementalist_area_of_effect_+%_for_5_seconds"]=6322, + ["elementalist_chill_maximum_magnitude_override"]=6323, + ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3320, + ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3317, + ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3319, + ["elementalist_elemental_damage_+%_for_5_seconds"]=6324, + ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3322, + ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6325, + ["elementalist_ignite_effect_+%_final"]=6326, + ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3321, + ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3911, + ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3323, + ["elusive_effect_+%"]=6327, + ["elusive_effect_on_self_+%_per_power_charge"]=4075, + ["ember_projectile_spread_area_+%"]=6328, + ["empowered_attack_damage_+%"]=6330, + ["empowered_attack_damage_+%_per_10_tribute"]=6329, + ["empowered_attack_double_damage_%_chance"]=6331, + ["empowered_attack_hit_damage_stun_multiplier_+%"]=6332, + ["empowered_attack_physical_damage_%_to_gain_as_fire"]=6333, + ["enable_chakras"]=6334, + ["enable_ring_slot_3"]=6335, + ["enable_unfettered_authority_roll_variation"]=10736, + ["enchantment_boots_added_cold_damage_when_hit_maximum"]=2975, + ["enchantment_boots_added_cold_damage_when_hit_minimum"]=2975, + ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2974, + ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3036, + ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2916, + ["enchantment_boots_mana_costs_when_hit_+%"]=2972, + ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6336, + ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3038, + ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2977, + ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2976, + ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3038, + ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2977, + ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2976, + ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2978, + ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=3037, + ["enchantment_boots_stun_avoid_%_on_kill"]=2973, + ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3258, + ["endurance_charge_duration_+%"]=1886, + ["endurance_charge_on_hit_%_vs_no_armour"]=6337, + ["endurance_charge_on_kill_%"]=2425, + ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6338, + ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6339, + ["endurance_charge_on_off_hand_kill_%"]=3164, + ["endurance_only_conduit"]=2032, + ["enduring_cry_buff_effect_+%"]=3787, + ["enduring_cry_cooldown_speed_+%"]=3579, + ["enduring_cry_grants_x_additional_endurance_charges"]=6340, + ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=6341, + ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=6342, + ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=6343, + ["enemies_blinded_by_you_while_blinded_have_malediction"]=6344, + ["enemies_chaos_resistance_%_while_cursed"]=3738, + ["enemies_chill_as_unfrozen"]=1676, + ["enemies_chilled_by_bane_and_contagion"]=6345, + ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6346, + ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6347, + ["enemies_damage_taken_+%_while_cursed"]=3455, + ["enemies_explode_for_%_life_as_physical_damage"]=6348, + ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6349, + ["enemies_explode_on_kill"]=6350, + ["enemies_explode_on_kill_while_unhinged"]=6351, + ["enemies_extra_damage_rolls_with_lightning_damage"]=6352, + ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6353, + ["enemies_extra_damage_rolls_with_physical_damage"]=6354, + ["enemies_hitting_you_drop_burning_ground_%"]=6355, + ["enemies_hitting_you_drop_chilled_ground_%"]=6356, + ["enemies_hitting_you_drop_shocked_ground_%"]=6357, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6358, + ["enemies_in_chilled_ground_take_+%_fire_damage"]=6359, + ["enemies_in_ignited_ground_take_+%_cold_damage"]=6360, + ["enemies_in_presence_are_blinded"]=6361, + ["enemies_in_presence_are_blinded_by_the_wendigo"]=6362, + ["enemies_in_presence_are_intimidated"]=6363, + ["enemies_in_presence_cooldown_recovery_+%"]=6364, + ["enemies_in_presence_count_as_low_life"]=6365, + ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=6366, + ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=6368, + ["enemies_in_presence_have_exposure"]=6369, + ["enemies_in_presence_have_fire_resistance_%"]=6370, + ["enemies_in_presence_have_no_elemental_resistances"]=6371, + ["enemies_in_presence_life_regeneration_+%"]=6372, + ["enemies_in_presence_lightning_resist_equal_to_yours"]=6373, + ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=6374, + ["enemies_in_your_presence_gain_a_stack_of_gruelling_madness_every_second"]=6367, + ["enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted"]=6375, + ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=6376, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6377, + ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6378, + ["enemies_near_link_skill_target_have_exposure"]=6379, + ["enemies_near_marked_enemy_are_blinded"]=6380, + ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6381, + ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6382, + ["enemies_taunted_by_you_cannot_evade_attacks"]=6383, + ["enemies_taunted_by_your_warcies_are_intimidated"]=6384, + ["enemies_taunted_by_your_warcries_are_unnerved"]=6385, + ["enemies_that_hit_you_inflict_temporal_chains"]=6386, + ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6387, + ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4079, + ["enemies_you_bleed_grant_flask_charges_+%"]=2296, + ["enemies_you_blind_have_critical_strike_chance_+%"]=6388, + ["enemies_you_blind_have_no_crit_bonus_for_x_seconds"]=6389, + ["enemies_you_curse_are_intimidated"]=6390, + ["enemies_you_curse_are_unnerved"]=6391, + ["enemies_you_curse_cannot_recharge_energy_shield"]=6392, + ["enemies_you_curse_have_15%_hinder"]=6393, + ["enemies_you_curse_have_malediction"]=3456, + ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6394, + ["enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds"]=6395, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6396, + ["enemies_you_ignite_wither_does_not_expire"]=6397, + ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6398, + ["enemies_you_maim_have_damage_taken_over_time_+%"]=6399, + ["enemies_you_shock_cast_speed_+%"]=3954, + ["enemies_you_shock_movement_speed_+%"]=3955, + ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6400, + ["enemies_you_wither_have_all_resistances_%"]=6401, + ["enemy_additional_critical_strike_chance_permyriad_against_self"]=2880, + ["enemy_aggro_radius_+%"]=2892, + ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2881, + ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6402, + ["enemy_extra_damage_rolls_chance_%"]=6404, + ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6405, + ["enemy_extra_damage_rolls_when_on_full_life"]=6406, + ["enemy_extra_damage_rolls_when_on_low_life"]=2360, + ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2865, + ["enemy_hit_critical_strike_chance_+%_against_self_while_chilled"]=6407, + ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=6408, + ["enemy_hits_roll_low_damage"]=2358, + ["enemy_knockback_direction_is_reversed"]=2774, + ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6409, + ["enemy_non_skill_physical_damage_%_as_extra_fire_vs_you"]=1695, + ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2433, + ["enemy_phys_reduction_%_penalty_vs_hit"]=2744, + ["enemy_shock_on_kill"]=1677, + ["enemy_spell_critical_strike_chance_+%_against_self"]=6410, + ["energy_generated_+%"]=6411, + ["energy_generated_+%_if_crit_recently"]=6413, + ["energy_generated_+%_on_full_mana"]=6414, + ["energy_generated_+%_per_spell_crit_dealt_recently"]=6415, + ["energy_generation_is_doubled"]=6416, + ["energy_shield_%_gained_on_block"]=2270, + ["energy_shield_%_of_armour_rating_gained_on_block"]=2271, + ["energy_shield_%_to_lose_on_block"]=2524, + ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6417, + ["energy_shield_+%_if_consumed_power_charge_recently"]=6418, + ["energy_shield_+%_per_10_strength"]=6435, + ["energy_shield_+%_per_power_charge"]=6436, + ["energy_shield_+_per_8_evasion_on_boots"]=6419, + ["energy_shield_+_per_8_helmet_armour"]=6420, + ["energy_shield_cannot_be_converted"]=6421, + ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2443, + ["energy_shield_delay_-%"]=1056, + ["energy_shield_delay_-%_if_stunned_recently"]=6422, + ["energy_shield_delay_-%_when_not_on_full_life"]=6423, + ["energy_shield_delay_-%_while_affected_by_archon"]=6424, + ["energy_shield_delay_-%_while_affected_by_discipline"]=6426, + ["energy_shield_delay_-%_while_shapeshifted"]=6425, + ["energy_shield_delay_during_flask_effect_-%"]=3283, + ["energy_shield_from_focus_+%"]=6427, + ["energy_shield_from_gloves_and_boots_+%"]=6428, + ["energy_shield_from_helmet_+%"]=6429, + ["energy_shield_gain_per_target"]=1532, + ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6430, + ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6431, + ["energy_shield_gained_on_block"]=1543, + ["energy_shield_gained_on_enemy_death_per_level"]=2740, + ["energy_shield_increased_by_uncapped_cold_resistance"]=6432, + ["energy_shield_lost_per_minute_%"]=6433, + ["energy_shield_per_level"]=6434, + ["energy_shield_protects_mana"]=2864, + ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6437, + ["energy_shield_recharge_delay_override_ms"]=6438, + ["energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently"]=3444, + ["energy_shield_recharge_not_delayed_by_damage"]=1461, + ["energy_shield_recharge_rate_+%"]=1055, + ["energy_shield_recharge_rate_+%_if_blocked_recently"]=6446, + ["energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently"]=6439, + ["energy_shield_recharge_rate_+%_per_25_tribute"]=6440, + ["energy_shield_recharge_rate_+%_per_4_dexterity"]=6441, + ["energy_shield_recharge_rate_+%_per_4_strength"]=6442, + ["energy_shield_recharge_rate_+%_per_X_maximum_ward"]=6443, + ["energy_shield_recharge_rate_+%_while_affected_by_archon"]=6444, + ["energy_shield_recharge_rate_+%_while_shapeshifted"]=6445, + ["energy_shield_recharge_rate_during_flask_effect_+%"]=3285, + ["energy_shield_recharge_rate_per_minute_%"]=1462, + ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3878, + ["energy_shield_recharge_start_when_minions_reform"]=6447, + ["energy_shield_recharge_start_when_stunned"]=6448, + ["energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds"]=6449, + ["energy_shield_recharges_on_block_%"]=3142, + ["energy_shield_recharges_on_kill_%"]=6450, + ["energy_shield_recharges_on_skill_use_chance_%"]=6451, + ["energy_shield_recovery_rate_+%"]=1463, + ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6452, + ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6453, + ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6454, + ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6455, + ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6456, + ["energy_shield_regeneration_%_per_minute_while_shocked"]=2782, + ["energy_shield_regeneration_rate_+%"]=6463, + ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6459, + ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6460, + ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1578, + ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6457, + ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6458, + ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6461, + ["energy_shield_regeneration_rate_per_second"]=6462, + ["enfeeble_curse_effect_+%"]=3692, + ["enfeeble_duration_+%"]=3605, + ["enfeeble_gem_level_+"]=2006, + ["enfeeble_ignores_hexproof"]=2405, + ["enfeeble_no_reservation"]=6464, + ["ensnaring_arrow_area_of_effect_+%"]=6465, + ["ensnaring_arrow_debuff_effect_+%"]=6466, + ["envy_reserves_no_mana"]=6467, + ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6468, + ["equipped_jewellery_effect_of_bonuses_+%"]=6469, + ["equipped_ring1_effect_of_bonuses_+%"]=6470, + ["equipped_ring2_effect_of_bonuses_+%"]=6471, + ["equipped_rings_effect_of_bonuses_+%"]=6472, + ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3900, + ["es_regeneration_per_minute_%_while_stationary"]=6473, + ["essence_abyss_guaranteed_pick"]=6474, + ["essence_buff_ground_fire_damage_to_deal_per_second"]=4001, + ["essence_buff_ground_fire_duration_ms"]=4001, + ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4004, + ["essence_drain_damage_+%"]=3427, + ["essence_drain_soulrend_base_projectile_speed_+%"]=6475, + ["essence_drain_soulrend_number_of_additional_projectiles"]=6476, + ["essence_grants_additional_attributes"]=6477, + ["essence_grants_additional_attributes_increase"]=6478, + ["essence_grants_armour_evasion_energy_shield_+%"]=6479, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6480, + ["ethereal_knives_damage_+%"]=3348, + ["ethereal_knives_number_of_additional_projectiles"]=6481, + ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6482, + ["ethereal_knives_projectile_speed_+%"]=3587, + ["ethereal_knives_projectiles_nova"]=6483, + ["evasion_+%_if_hit_recently"]=3862, + ["evasion_+%_per_10_intelligence"]=6486, + ["evasion_and_physical_damage_reduction_rating_+%"]=1444, + ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6501, + ["evasion_rating_%_to_gain_as_ailment_threshold"]=6487, + ["evasion_rating_%_to_gain_as_armour"]=6502, + ["evasion_rating_+%"]=907, + ["evasion_rating_+%_during_focus"]=6488, + ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=6489, + ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6484, + ["evasion_rating_+%_if_have_not_been_hit_recently"]=6506, + ["evasion_rating_+%_if_not_dodge_rolled_recently"]=6490, + ["evasion_rating_+%_if_sprinting"]=6491, + ["evasion_rating_+%_if_you_dodge_rolled_recently"]=6507, + ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6508, + ["evasion_rating_+%_per_10_tribute"]=6492, + ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=6493, + ["evasion_rating_+%_per_5_intelligence"]=6485, + ["evasion_rating_+%_per_frenzy_charge"]=1449, + ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6509, + ["evasion_rating_+%_per_rage"]=6494, + ["evasion_rating_+%_when_on_full_life"]=6510, + ["evasion_rating_+%_when_on_low_life"]=2337, + ["evasion_rating_+%_while_leeching"]=6511, + ["evasion_rating_+%_while_moving"]=6512, + ["evasion_rating_+%_while_onslaught_is_active"]=1448, + ["evasion_rating_+%_while_phasing"]=2307, + ["evasion_rating_+%_while_surrounded"]=6495, + ["evasion_rating_+%_while_you_have_energy_shield"]=6513, + ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6503, + ["evasion_rating_+_per_1_armour_on_gloves"]=6496, + ["evasion_rating_+_per_1_helmet_energy_shield"]=1447, + ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4062, + ["evasion_rating_+_when_on_full_life"]=1446, + ["evasion_rating_+_when_on_low_life"]=1445, + ["evasion_rating_+_while_phasing"]=6504, + ["evasion_rating_+_while_you_have_tailwind"]=6505, + ["evasion_rating_also_reduces_physical_damage"]=6497, + ["evasion_rating_from_helmet_and_boots_+%"]=6498, + ["evasion_rating_increased_by_overcapped_cold_resistance"]=6499, + ["evasion_rating_increased_by_uncapped_lightning_resistance"]=6500, + ["evasion_rating_plus_in_sand_stance"]=10056, + ["evasion_rating_while_es_full_+%_final"]=3754, + ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6514, + ["excess_ward_regeneration_is_applied_to_mana"]=6515, + ["exerted_attack_knockback_chance_%"]=6516, + ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6517, + ["expanding_fire_cone_additional_maximum_number_of_stages"]=6518, + ["expanding_fire_cone_area_of_effect_+%"]=6519, + ["expedition_chest_logbook_chance_%"]=6520, + ["expedition_monsters_logbook_chance_+%"]=6521, + ["experience_gain_+%"]=1494, + ["experience_loss_on_death_-%"]=1495, + ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6522, + ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3035, + ["explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6523, + ["explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%"]=6524, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3033, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6525, + ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3034, + ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10617, + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6526, + ["explode_on_kill_%_chaos_damage_to_deal"]=3032, + ["explode_on_kill_%_fire_damage_to_deal"]=2499, + ["explosive_arrow_attack_speed_+%"]=3806, + ["explosive_arrow_damage_+%"]=3379, + ["explosive_arrow_duration_+%"]=6527, + ["explosive_arrow_radius_+%"]=3517, + ["explosive_concoction_damage_+%"]=6528, + ["explosive_concoction_flask_charges_consumed_+%"]=6529, + ["explosive_concoction_skill_area_of_effect_+%"]=6530, + ["exposure_effect_+%"]=6534, + ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=6532, + ["exposure_effect_on_you_+%"]=6533, + ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=6535, + ["exsanguinate_additional_chain_chance_%"]=6536, + ["exsanguinate_damage_+%"]=6537, + ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6538, + ["exsanguinate_duration_+%"]=6539, + ["extinguish_on_hit_%_chance"]=6540, + ["extra_critical_rolls"]=2468, + ["extra_critical_rolls_during_focus"]=6541, + ["extra_critical_rolls_while_on_low_life"]=6542, + ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6543, + ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4105, + ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4106, + ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6544, + ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=2979, + ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6545, + ["extra_gore"]=10737, + ["extra_target_targeting_distance_+%"]=6546, + ["eye_of_winter_damage_+%"]=6547, + ["eye_of_winter_projectile_speed_+%"]=6548, + ["eye_of_winter_spiral_fire_frequency_+%"]=6549, + ["faster_bleed_%"]=6551, + ["faster_bleed_per_frenzy_charge_%"]=6550, + ["faster_burn_%"]=2368, + ["faster_burn_from_attacks_%"]=2370, + ["faster_poison_%"]=6552, + ["fire_ailment_duration_+%"]=6553, + ["fire_and_chaos_damage_resistance_%"]=6554, + ["fire_and_cold_damage_resistance_%"]=1039, + ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=2241, + ["fire_and_cold_resist_+_per_equipped_item_with_a_lightning_resistance_mod"]=1040, + ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6555, + ["fire_and_lightning_damage_resistance_%"]=1041, + ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=2244, + ["fire_and_lightning_resist_+_per_equipped_item_with_a_cold_resistance_mod"]=1042, + ["fire_attack_damage_+%"]=1183, + ["fire_attack_damage_+%_while_holding_a_shield"]=1186, + ["fire_axe_damage_+%"]=1258, + ["fire_beam_cast_speed_+%"]=6556, + ["fire_beam_damage_+%"]=6557, + ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6558, + ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6559, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=6560, + ["fire_beam_length_+%"]=6561, + ["fire_bow_damage_+%"]=1278, + ["fire_claw_damage_+%"]=1266, + ["fire_critical_strike_chance_+%"]=1400, + ["fire_critical_strike_multiplier_+"]=1422, + ["fire_dagger_damage_+%"]=1270, + ["fire_damage_+%"]=896, + ["fire_damage_+%_if_fire_infusion_collected_last_8_seconds"]=6562, + ["fire_damage_+%_if_you_have_been_hit_recently"]=6567, + ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6568, + ["fire_damage_+%_per_10%_armour_break"]=6563, + ["fire_damage_+%_per_20_strength"]=6569, + ["fire_damage_+%_per_endurance_charge"]=6570, + ["fire_damage_+%_per_missing_fire_resistance"]=6571, + ["fire_damage_+%_per_rage"]=6564, + ["fire_damage_+%_to_blinded_enemies"]=2960, + ["fire_damage_+%_vs_bleeding_enemies"]=6572, + ["fire_damage_+%_while_affected_by_anger"]=6573, + ["fire_damage_+%_while_affected_by_herald_of_ash"]=6574, + ["fire_damage_+%_while_ignited"]=6565, + ["fire_damage_can_chill"]=2653, + ["fire_damage_can_freeze"]=2654, + ["fire_damage_can_inflict_bleeding"]=2655, + ["fire_damage_can_shock"]=2656, + ["fire_damage_cannot_ignite"]=2665, + ["fire_damage_over_time_+%"]=1192, + ["fire_damage_over_time_multiplier_+%_while_burning"]=6566, + ["fire_damage_over_time_multiplier_+_with_attacks"]=1223, + ["fire_damage_resistance_%_when_on_low_life"]=1038, + ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6575, + ["fire_damage_resistance_+%"]=1509, + ["fire_damage_resistance_is_%"]=1507, + ["fire_damage_taken_%_as_cold"]=2245, + ["fire_damage_taken_%_as_lightning"]=2242, + ["fire_damage_taken_%_causes_additional_physical_damage"]=2238, + ["fire_damage_taken_+"]=1984, + ["fire_damage_taken_+%"]=1989, + ["fire_damage_taken_+%_while_moving"]=6578, + ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6576, + ["fire_damage_taken_per_second_while_flame_touched"]=6577, + ["fire_damage_taken_when_enemy_ignited"]=6579, + ["fire_damage_to_return_on_block"]=6580, + ["fire_damage_to_return_to_melee_attacker"]=1958, + ["fire_damage_to_return_when_hit"]=1962, + ["fire_damage_while_dual_wielding_+%"]=1242, + ["fire_damage_with_attack_skills_+%"]=6581, + ["fire_damage_with_spell_skills_+%"]=6582, + ["fire_dot_multiplier_+"]=1222, + ["fire_exposure_effect_+%"]=6583, + ["fire_exposure_on_hit_magnitude"]=6584, + ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6585, + ["fire_hit_and_dot_damage_%_taken_as_cold"]=2246, + ["fire_hit_and_dot_damage_%_taken_as_lightning"]=2243, + ["fire_mace_damage_+%"]=1274, + ["fire_nova_mine_cast_speed_+%"]=3564, + ["fire_nova_mine_damage_+%"]=3362, + ["fire_penetration_%_if_you_have_blocked_recently"]=6586, + ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6587, + ["fire_resist_unaffected_by_area_penalties"]=6588, + ["fire_skill_chance_to_inflict_fire_exposure_%"]=6589, + ["fire_skill_gem_level_+"]=981, + ["fire_skills_chance_to_poison_on_hit_%"]=6590, + ["fire_spell_additional_critical_strike_chance_permyriad"]=6591, + ["fire_spell_skill_gem_level_+"]=982, + ["fire_staff_damage_+%"]=1262, + ["fire_storm_damage_+%"]=3363, + ["fire_sword_damage_+%"]=1283, + ["fire_trap_burning_damage_+%"]=3647, + ["fire_trap_burning_ground_duration_+%"]=6592, + ["fire_trap_cooldown_speed_+%"]=3566, + ["fire_trap_damage_+%"]=3332, + ["fire_trap_number_of_additional_traps_to_throw"]=6593, + ["fire_wand_damage_+%"]=1287, + ["fire_weakness_ignores_hexproof"]=2406, + ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6594, + ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6595, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=2987, + ["fireball_cannot_ignite"]=6596, + ["fireball_cast_speed_+%"]=3563, + ["fireball_chance_to_scorch_%"]=6597, + ["fireball_damage_+%"]=3333, + ["fireball_radius_up_to_+%_at_longer_ranges"]=2986, + ["firestorm_duration_+%"]=3618, + ["firestorm_explosion_area_of_effect_+%"]=3655, + ["first_X_minions_have_0_base_spirit_reservation"]=6598, + ["fish_quantity_+%"]=2627, + ["fish_rarity_+%"]=2628, + ["fish_rot_when_caught"]=6599, + ["fishing_bestiary_lures_at_fishing_holes"]=6600, + ["fishing_bite_sensitivity_+%"]=3289, + ["fishing_can_catch_divine_fish"]=6601, + ["fishing_chance_to_catch_boots_+%"]=6602, + ["fishing_chance_to_catch_divine_orb_+%"]=6603, + ["fishing_corrupted_fish_cleansed_chance_%"]=6604, + ["fishing_fish_always_tell_truth_with_this_rod"]=6605, + ["fishing_ghastly_fisherman_cannot_spawn"]=6606, + ["fishing_ghastly_fisherman_spawns_behind_you"]=6607, + ["fishing_hook_type"]=2625, + ["fishing_krillson_affection_per_fish_gifted_+%"]=6608, + ["fishing_life_of_fish_with_this_rod_+%"]=6609, + ["fishing_line_strength_+%"]=2622, + ["fishing_lure_type"]=2624, + ["fishing_magmatic_fish_are_cooked"]=6610, + ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6611, + ["fishing_pool_consumption_+%"]=2623, + ["fishing_range_+%"]=2626, + ["fishing_reeling_stability_+%"]=6612, + ["fishing_tasalio_ire_per_fish_caught_+%"]=6613, + ["fishing_valako_aid_per_stormy_day_+%"]=6614, + ["fishing_wish_effect_of_ancient_fish_+%"]=6615, + ["fishing_wish_per_fish_+"]=6616, + ["fissure_skills_limit_+"]=6617, + ["flail_accuracy_rating"]=3961, + ["flail_accuracy_rating_+%"]=3962, + ["flail_attack_speed_+%"]=3963, + ["flail_critical_strike_chance_+%"]=3964, + ["flail_critical_strike_multiplier_+"]=3965, + ["flail_damage_+%"]=3959, + ["flail_elemental_damage_+%"]=3960, + ["flame_dash_cooldown_speed_+%"]=3573, + ["flame_dash_damage_+%"]=3412, + ["flame_golem_damage_+%"]=3394, + ["flame_golem_elemental_resistances_%"]=3669, + ["flame_link_duration_+%"]=6618, + ["flame_surge_critical_strike_chance_+%"]=3630, + ["flame_surge_damage_+%"]=3364, + ["flame_surge_damage_+%_vs_burning_enemies"]=3656, + ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6619, + ["flame_totem_damage_+%"]=3404, + ["flame_totem_num_of_additional_projectiles"]=3642, + ["flame_totem_projectile_speed_+%"]=3588, + ["flame_wall_damage_+%"]=6620, + ["flame_wall_maximum_added_fire_damage"]=6621, + ["flame_wall_minimum_added_fire_damage"]=6621, + ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6622, + ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6623, + ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6624, + ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6625, + ["flameblast_critical_strike_chance_+%"]=3629, + ["flameblast_damage_+%"]=3380, + ["flameblast_radius_+%"]=3518, + ["flameblast_starts_with_X_additional_stages"]=6626, + ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6627, + ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6628, + ["flamethrower_tower_trap_cast_speed_+%"]=6629, + ["flamethrower_tower_trap_cooldown_speed_+%"]=6630, + ["flamethrower_tower_trap_damage_+%"]=6631, + ["flamethrower_tower_trap_duration_+%"]=6632, + ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6633, + ["flamethrower_tower_trap_throwing_speed_+%"]=6634, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6635, + ["flammability_curse_effect_+%"]=3693, + ["flammability_duration_+%"]=3604, + ["flammability_mana_reservation_+%"]=3726, + ["flammability_no_reservation"]=6636, + ["flask_charge_recovery_is_doubled"]=6637, + ["flask_charges_+%_from_enemies_with_status_ailments"]=3919, + ["flask_charges_gained_+%"]=6641, + ["flask_charges_gained_+%_during_flask_effect"]=2925, + ["flask_charges_gained_+%_if_crit_recently"]=6638, + ["flask_charges_gained_from_kills_+%_final_from_unique"]=6639, + ["flask_charges_gained_from_marked_enemy_+%"]=6640, + ["flask_charges_recovered_per_3_seconds"]=3189, + ["flask_charges_used_+%"]=1072, + ["flask_duration_+%"]=925, + ["flask_duration_+%_per_25_tribute"]=6642, + ["flask_duration_on_minions_+%"]=1946, + ["flask_effect_+%"]=2526, + ["flask_life_and_mana_recovery_+%_while_using_charm"]=6643, + ["flask_life_and_mana_to_recover_+%"]=6645, + ["flask_life_and_mana_to_recover_+%_per_10_tribute"]=6644, + ["flask_life_recovery_+%_while_affected_by_vitality"]=6646, + ["flask_life_recovery_rate_+%"]=921, + ["flask_life_to_recover_+%"]=1816, + ["flask_mana_charges_used_+%"]=1944, + ["flask_mana_recovery_rate_+%"]=922, + ["flask_mana_to_recover_+%"]=1817, + ["flask_minion_heal_%"]=2682, + ["flask_recovery_amount_%_to_recover_instantly"]=6647, + ["flask_recovery_is_instant"]=6648, + ["flask_recovery_speed_+%"]=1818, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6649, + ["flasks_%_chance_to_not_consume_charges"]=3903, + ["flasks_apply_to_your_linked_targets"]=6650, + ["flasks_apply_to_your_zombies_and_spectres"]=3448, + ["flasks_dispel_burning"]=2539, + ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6651, + ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6652, + ["flesh_and_stone_area_of_effect_+%"]=6653, + ["flesh_offering_attack_speed_+%"]=3799, + ["flesh_offering_duration_+%"]=3594, + ["flesh_offering_effect_+%"]=1165, + ["flesh_stone_mana_reservation_efficiency_+%"]=6655, + ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6654, + ["flesh_stone_no_reservation"]=6656, + ["flicker_strike_cooldown_speed_+%"]=3567, + ["flicker_strike_damage_+%"]=3353, + ["flicker_strike_damage_+%_per_frenzy_charge"]=3652, + ["flicker_strike_more_attack_speed_+%_final"]=1335, + ["focus_cooldown_modifier_ms"]=6657, + ["focus_cooldown_speed_+%"]=6658, + ["focus_decay_%_per_minute"]=6659, + ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6660, + ["forbidden_rite_damage_+%"]=6661, + ["forbidden_rite_number_of_additional_projectiles"]=6662, + ["forbidden_rite_projectile_speed_+%"]=6663, + ["forking_angle_+%"]=6664, + ["fortification_gained_from_hits_+%"]=6665, + ["fortification_gained_from_hits_+%_against_unique_enemies"]=6666, + ["fortify_duration_+%"]=2037, + ["fortify_duration_+%_per_10_strength"]=6667, + ["fortify_on_hit"]=6668, + ["frag_rounds_damage_+%_final_if_created_from_unique"]=6669, + ["freeze_applies_cold_damage_taken_+%"]=6670, + ["freeze_applies_cold_resistance_+"]=6671, + ["freeze_duration_+%"]=1636, + ["freeze_duration_against_cursed_enemies_+%"]=6672, + ["freeze_mine_cold_resistance_+_while_frozen"]=2560, + ["freeze_mine_damage_+%"]=3413, + ["freeze_mine_radius_+%"]=3528, + ["freeze_prevention_ms_when_frozen"]=2675, + ["freeze_threshold_+%"]=3006, + ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6674, + ["freezing_pulse_cast_speed_+%"]=3562, + ["freezing_pulse_damage_+%"]=3334, + ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6675, + ["freezing_pulse_number_of_additional_projectiles"]=6676, + ["freezing_pulse_projectile_speed_+%"]=3584, + ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3663, + ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6677, + ["frenzy_charge_duration_+%_per_frenzy_charge"]=1808, + ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6678, + ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6679, + ["frenzy_damage_+%"]=3373, + ["frenzy_damage_+%_per_frenzy_charge"]=3662, + ["frenzy_only_conduit"]=2033, + ["from_self_maximum_added_attack_chaos_damage_taken"]=1312, + ["from_self_maximum_added_attack_cold_damage_taken"]=1299, + ["from_self_maximum_added_attack_fire_damage_taken"]=1293, + ["from_self_maximum_added_attack_lightning_damage_taken"]=1307, + ["from_self_maximum_added_attack_physical_damage_taken"]=1231, + ["from_self_maximum_added_cold_damage_taken"]=1297, + ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=3939, + ["from_self_maximum_added_fire_damage_taken"]=1291, + ["from_self_maximum_added_lightning_damage_taken"]=1305, + ["from_self_minimum_added_attack_chaos_damage_taken"]=1312, + ["from_self_minimum_added_attack_cold_damage_taken"]=1299, + ["from_self_minimum_added_attack_fire_damage_taken"]=1293, + ["from_self_minimum_added_attack_lightning_damage_taken"]=1307, + ["from_self_minimum_added_attack_physical_damage_taken"]=1231, + ["from_self_minimum_added_cold_damage_taken"]=1297, + ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=3939, + ["from_self_minimum_added_fire_damage_taken"]=1291, + ["from_self_minimum_added_lightning_damage_taken"]=1305, + ["frost_blades_damage_+%"]=3129, + ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6680, + ["frost_blades_number_of_additional_projectiles_in_chain"]=3131, + ["frost_blades_projectile_speed_+%"]=3130, + ["frost_bolt_cast_speed_+%"]=3826, + ["frost_bolt_damage_+%"]=3813, + ["frost_bolt_freeze_chance_%"]=3827, + ["frost_bolt_nova_cooldown_speed_+%"]=6681, + ["frost_bolt_nova_damage_+%"]=3814, + ["frost_bolt_nova_duration_+%"]=3828, + ["frost_bolt_nova_radius_+%"]=3821, + ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6683, + ["frost_bomb_buff_duration_+%"]=6682, + ["frost_bomb_cooldown_speed_+%"]=3580, + ["frost_bomb_damage_+%"]=3436, + ["frost_bomb_radius_+%"]=3537, + ["frost_fury_additional_max_number_of_stages"]=6684, + ["frost_fury_area_of_effect_+%_per_stage"]=6685, + ["frost_fury_damage_+%"]=6686, + ["frost_globe_added_cooldown_count"]=6687, + ["frost_globe_health_per_stage"]=6688, + ["frost_wall_cooldown_speed_+%"]=3571, + ["frost_wall_damage_+%"]=3407, + ["frost_wall_duration_+%"]=3597, + ["frostbite_curse_effect_+%"]=3694, + ["frostbite_duration_+%"]=3603, + ["frostbite_mana_reservation_+%"]=3727, + ["frostbite_no_reservation"]=6689, + ["frostbolt_number_of_additional_projectiles"]=6690, + ["frostbolt_projectile_acceleration"]=6691, + ["frozen_legion_%_chance_to_summon_additional_statue"]=6695, + ["frozen_legion_added_cooldown_count"]=6692, + ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6693, + ["frozen_legion_cooldown_speed_+%"]=6694, + ["frozen_monsters_take_increased_damage"]=2266, + ["frozen_sweep_damage_+%"]=6696, + ["frozen_sweep_damage_+%_final"]=6697, + ["full_life_threshold_%_override"]=6698, + ["full_mana_threshold_%_override"]=6699, + ["fully_break_enemies_armour_on_heavy_stun_with_shield_skills"]=6700, + ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage"]=6701, + ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage"]=6702, + ["fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage"]=6703, + ["fungal_ground_while_stationary_radius"]=6704, + ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6705, + ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4069, + ["gain_%_life_from_body_es"]=6706, + ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4068, + ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6707, + ["gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use"]=6708, + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6837, + ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6843, + ["gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence"]=6709, + ["gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms"]=6710, + ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6711, + ["gain_1_verisium_infusion_every_X_seconds"]=6712, + ["gain_X%_armour_per_50_mana_reserved"]=6713, + ["gain_X_druidic_prowess_on_heavy_stunning_rare_or_unique_enemy"]=6714, + ["gain_X_energy_shield_on_killing_shocked_enemy"]=2376, + ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6715, + ["gain_X_frenzy_charges_after_spending_200_mana"]=6716, + ["gain_X_instilling_chaos_when_any_charge_is_consumed"]=6720, + ["gain_X_instilling_cold_on_reload"]=6721, + ["gain_X_instilling_cold_when_charge_is_consumed"]=6718, + ["gain_X_instilling_fire_on_reload"]=6721, + ["gain_X_instilling_fire_when_charge_is_consumed"]=6717, + ["gain_X_instilling_lightning_when_charge_is_consumed"]=6719, + ["gain_X_life_on_stun"]=6722, + ["gain_X_max_life_per_8_armour_on_equipped_helmet"]=6723, + ["gain_X_max_mana_per_2_es_on_equipped_helmet"]=6724, + ["gain_X_power_charges_on_using_a_warcry"]=6725, + ["gain_X_rage_on_hit_per_enemy_power"]=6726, + ["gain_X_rage_on_ignite_hit"]=6727, + ["gain_X_random_charges_every_6_seconds"]=6728, + ["gain_X_random_rare_monster_mods_on_kill"]=2813, + ["gain_X_vaal_souls_on_rampage_threshold"]=2724, + ["gain_X_volatility_on_persistent_minion_death"]=6729, + ["gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms"]=6730, + ["gain_a_power_charge_when_you_consume_an_elemental_infusion"]=6731, + ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3810, + ["gain_absorption_charges_instead_of_power_charges"]=6732, + ["gain_accuracy_rating_equal_to_2_times_strength"]=6733, + ["gain_accuracy_rating_equal_to_intelligence"]=6734, + ["gain_accuracy_rating_equal_to_strength"]=6735, + ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6736, + ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6737, + ["gain_adrenaline_for_X_seconds_on_kill"]=6738, + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6739, + ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6740, + ["gain_adrenaline_on_gaining_flame_touched"]=6741, + ["gain_affliction_charges_instead_of_frenzy_charges"]=6742, + ["gain_alchemists_genius_on_flask_use_%"]=6743, + ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6744, + ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6745, + ["gain_arcane_surge_for_4_seconds_on_minion_death"]=6746, + ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6747, + ["gain_arcane_surge_on_crit_%_chance"]=6748, + ["gain_arcane_surge_on_hit_%_chance"]=6751, + ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6749, + ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6750, + ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6752, + ["gain_arcane_surge_on_kill_chance_%"]=6753, + ["gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds"]=6754, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6755, + ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6756, + ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6757, + ["gain_arcane_surge_when_you_summon_a_totem"]=6758, + ["gain_archon_cold_when_energy_shield_recharge_starts"]=6759, + ["gain_archon_elemental_after_spending_100%_of_your_maximum_mana"]=6760, + ["gain_archon_elemental_when_energy_shield_recharge_starts"]=6761, + ["gain_archon_elemental_when_you_ignite_enemy_chance_%"]=6762, + ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=6763, + ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6764, + ["gain_armour_equal_to_strength"]=6765, + ["gain_armour_from_%_life_loss_from_hits_lasting_8_seconds"]=6766, + ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3732, + ["gain_attack_damage_+%_for_each_your_minion_in_presence_capped"]=6767, + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6768, + ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3162, + ["gain_blitz_charge_%_chance_on_crit"]=6769, + ["gain_brutal_charges_instead_of_endurance_charges"]=6770, + ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3497, + ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6771, + ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6772, + ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10618, + ["gain_convergence_on_hitting_unique_enemy"]=4123, + ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10715, + ["gain_crimson_dance_while_you_have_cat_stealth"]=10716, + ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6773, + ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3161, + ["gain_dark_whispers_every_second_there_is_a_cursed_enemy_in_presence"]=6774, + ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10619, + ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=3950, + ["gain_divine_charge_on_hit_%"]=4071, + ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4073, + ["gain_druidic_prowess_per_X_rage_spent"]=6775, + ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3737, + ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3778, + ["gain_elusive_on_crit_%_chance"]=3947, + ["gain_elusive_on_kill_chance_%"]=3948, + ["gain_elusive_on_reaching_low_life"]=6777, + ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1598, + ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6783, + ["gain_endurance_charge_%_when_hit_while_channelling"]=6784, + ["gain_endurance_charge_if_attack_freezes"]=6778, + ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6779, + ["gain_endurance_charge_on_main_hand_kill_%"]=3052, + ["gain_endurance_charge_on_melee_stun"]=2551, + ["gain_endurance_charge_on_melee_stun_%"]=2551, + ["gain_endurance_charge_on_power_charge_expiry"]=2432, + ["gain_endurance_charge_on_reaching_low_life_once_per_2s"]=6780, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6781, + ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6782, + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6785, + ["gain_finality_for_x_ms_per_combo_lost_using_skills"]=6786, + ["gain_fire_damage_+%_per_endurance_charge_consumed_recently"]=6787, + ["gain_flask_chance_on_crit_%"]=3113, + ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6788, + ["gain_flask_charge_when_crit_%"]=1819, + ["gain_flask_charge_when_crit_amount"]=1819, + ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6789, + ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6790, + ["gain_frenzy_and_power_charge_on_kill_%"]=2431, + ["gain_frenzy_charge_%_when_hit_while_channelling"]=6801, + ["gain_frenzy_charge_if_attack_ignites"]=2615, + ["gain_frenzy_charge_on_critical_strike_%"]=6792, + ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6791, + ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6793, + ["gain_frenzy_charge_on_hit_%_while_blinded"]=6794, + ["gain_frenzy_charge_on_hit_while_bleeding"]=6795, + ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6796, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6797, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6798, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6799, + ["gain_frenzy_charge_on_main_hand_kill_%"]=3051, + ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3308, + ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6800, + ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6802, + ["gain_guard_%_of_max_ward_for_2s_every_4s"]=6803, + ["gain_guard_%_of_maximum_life_for_4_seconds_on_taking_savage_hit"]=6804, + ["gain_guard_after_sprinting_equal_to_x%_of_maximum_life_per_second_sprinted_up_to_20%"]=6805, + ["gain_guard_equal_to_%_of_your_missing_energy_shield_for_4_seconds_on_dodge_roll"]=6806, + ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6807, + ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10717, + ["gain_iron_reflexes_while_stationary"]=10721, + ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3853, + ["gain_lightning_archon_after_spending_100%_of_your_maximum_mana"]=6808, + ["gain_magic_monster_mods_on_kill_%_chance"]=6809, + ["gain_max_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6819, + ["gain_max_rage_on_losing_temporal_chains_debuff"]=6810, + ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6811, + ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3910, + ["gain_maximum_endurance_charges_when_crit_chance_%"]=6812, + ["gain_maximum_energy_shield_equal_to_%_total_strength_requirement_of_equipped_armour_items"]=6813, + ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6814, + ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6815, + ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6816, + ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6820, + ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6821, + ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6817, + ["gain_maximum_power_charges_on_vaal_skill_use"]=6818, + ["gain_min_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6819, + ["gain_mind_over_matter_while_at_maximum_power_charges"]=10718, + ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6820, + ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6821, + ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6822, + ["gain_no_inherent_bonus_from_dexterity"]=1783, + ["gain_no_inherent_bonus_from_intelligence"]=1784, + ["gain_no_inherent_bonus_from_strength"]=1785, + ["gain_onslaught_during_soul_gain_prevention"]=6823, + ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6824, + ["gain_onslaught_for_4_seconds_on_minion_death"]=6825, + ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3886, + ["gain_onslaught_for_x_seconds_when_your_marks_activate"]=6826, + ["gain_onslaught_if_you_have_swapped_stance_recently"]=6827, + ["gain_onslaught_ms_on_using_a_warcry"]=6828, + ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2537, + ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6829, + ["gain_onslaught_on_hit_duration_ms"]=6830, + ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6831, + ["gain_onslaught_on_stun_duration_ms"]=2534, + ["gain_onslaught_when_ignited_ms"]=2795, + ["gain_onslaught_while_at_maximum_endurance_charges"]=6832, + ["gain_onslaught_while_frenzy_charges_full"]=3757, + ["gain_onslaught_while_not_on_low_mana"]=6833, + ["gain_onslaught_while_on_low_life"]=6834, + ["gain_onslaught_while_you_have_cats_agility"]=6835, + ["gain_onslaught_while_you_have_fortify"]=6836, + ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2306, + ["gain_phasing_if_enemy_killed_recently"]=6838, + ["gain_phasing_while_affected_by_haste"]=6839, + ["gain_phasing_while_at_maximum_frenzy_charges"]=2304, + ["gain_phasing_while_you_have_cats_stealth"]=6840, + ["gain_phasing_while_you_have_low_life"]=6841, + ["gain_phasing_while_you_have_onslaught"]=2305, + ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2723, + ["gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6842, + ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10732, + ["gain_power_charge_on_critical_strike_with_wands_%"]=6844, + ["gain_power_charge_on_curse_cast_%"]=6845, + ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6846, + ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6847, + ["gain_power_charge_on_mana_flask_use_%_chance"]=6848, + ["gain_power_charge_on_non_critical_strike_%"]=3125, + ["gain_power_charge_on_vaal_skill_use_%"]=6849, + ["gain_power_charge_per_enemy_you_crit"]=2348, + ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6850, + ["gain_power_charge_when_throwing_trap_%"]=2709, + ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6851, + ["gain_rage_on_hitting_rare_unique_enemy_%"]=9596, + ["gain_rage_on_kill"]=9595, + ["gain_rage_when_you_use_a_warcry"]=9597, + ["gain_rampage_while_at_maximum_endurance_charges"]=3001, + ["gain_random_charge_on_block"]=6853, + ["gain_random_charge_per_second_while_stationary"]=6854, + ["gain_rare_monster_mods_on_kill_ms"]=2594, + ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10722, + ["gain_runic_binding_stack_on_damaging_spell_hit_once_per_second"]=6855, + ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6856, + ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6857, + ["gain_shrine_buff_every_10_seconds"]=6858, + ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6859, + ["gain_soul_eater_during_flask_effect"]=3146, + ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6860, + ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6861, + ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2862, + ["gain_spell_cost_as_mana_every_fifth_cast"]=6862, + ["gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration"]=6863, + ["gain_spirit_charge_every_x_ms"]=4065, + ["gain_spirit_charge_on_kill_%_chance"]=4066, + ["gain_stack_of_disorderly_conduct_every_x_grenade_skills_used"]=6864, + ["gain_stormsurge_on_hit"]=6776, + ["gain_tailwind_on_critical_hit"]=6866, + ["gain_tailwind_stack_on_skill_use"]=6867, + ["gain_unholy_might_on_block_ms"]=2802, + ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6868, + ["gain_vaal_soul_on_hit_cooldown_ms"]=6869, + ["gain_x_es_on_trap_triggered_by_an_enemy"]=3915, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6870, + ["gain_x_fragile_regrowth_per_second"]=6871, + ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4102, + ["gain_x_life_on_trap_triggered_by_an_enemy"]=3914, + ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2770, + ["gain_x_rage_on_hit"]=9599, + ["gain_x_rage_on_hit_with_axes"]=6872, + ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6873, + ["gain_x_rage_on_melee_hit"]=6874, + ["gain_x_rage_per_200_mana_spent"]=6875, + ["gain_x_rage_when_hit"]=6876, + ["gain_x_rage_when_taken_crit"]=6877, + ["galvanic_arrow_area_damage_+%"]=9850, + ["galvanic_arrow_projectile_speed_+%"]=6878, + ["galvanic_field_beam_frequency_+%"]=6879, + ["galvanic_field_cast_speed_+%"]=6880, + ["galvanic_field_damage_+%"]=6881, + ["galvanic_field_number_of_chains"]=6882, + ["gem_experience_gain_+%"]=1651, + ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6883, + ["gemling_all_attributes_+%_final"]=6884, + ["gemling_double_basic_attribute_bonuses"]=6885, + ["gemling_skill_cost_+%_final"]=6886, + ["generals_cry_cooldown_speed_+%"]=6887, + ["generals_cry_maximum_warriors_+"]=6888, + ["generate_endurance_charges_for_allies_in_your_presence"]=1912, + ["generate_frenzy_charges_for_allies_in_your_presence"]=1913, + ["generate_power_charges_for_allies_in_your_presence"]=1914, + ["generate_x_charges_for_any_flask_per_minute"]=6889, + ["generate_x_charges_for_charms_per_minute"]=6890, + ["generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute"]=6891, + ["generate_x_charges_for_guard_flasks_per_minute"]=6892, + ["generate_x_charges_for_life_flasks_per_minute"]=6893, + ["generate_x_charges_for_mana_flasks_per_minute"]=6894, + ["ghostflame_on_hit_duration_ms"]=6895, + ["gifts_from_above_consecrated_ground_while_stationary"]=6896, + ["glacial_cascade_damage_+%"]=3381, + ["glacial_cascade_number_of_additional_bursts"]=6897, + ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6898, + ["glacial_cascade_radius_+%"]=3519, + ["glacial_hammer_damage_+%"]=3335, + ["glacial_hammer_freeze_chance_%"]=3648, + ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2968, + ["glacial_hammer_melee_splash_with_cold_damage"]=6899, + ["glacial_hammer_physical_damage_%_to_gain_as_cold_damage"]=3664, + ["global_always_hit"]=1802, + ["global_armour_evasion_energy_shield_+%"]=2610, + ["global_armour_evasion_energy_shield_+%_per_frenzy_charge"]=6904, + ["global_armour_evasion_energy_shield_while_in_presence_of_companion_+%"]=6905, + ["global_attack_speed_+%_per_green_socket_on_item"]=2514, + ["global_attack_speed_+%_per_level"]=6900, + ["global_bleed_on_hit"]=6901, + ["global_cannot_crit"]=1939, + ["global_chance_to_blind_on_hit_%"]=2725, + ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6902, + ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6903, + ["global_critical_strike_chance_+%_while_holding_bow"]=2277, + ["global_critical_strike_chance_+%_while_holding_staff"]=2275, + ["global_critical_strike_chance_while_dual_wielding_+%"]=3933, + ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2515, + ["global_critical_strike_multiplier_+_while_holding_bow"]=2278, + ["global_critical_strike_multiplier_+_while_holding_staff"]=2276, + ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1812, + ["global_critical_strike_multiplier_while_dual_wielding_+"]=3932, + ["global_equipment_attribute_requirements_+%"]=2355, + ["global_equipment_no_attribute_requirements"]=2353, + ["global_evasion_rating_+_while_moving"]=6906, + ["global_gem_attribute_requirements_+%"]=2356, + ["global_gem_attribute_requirements_+%_final_from_gemling"]=6907, + ["global_hit_causes_monster_flee_%"]=1800, + ["global_item_attribute_requirements_+%"]=2357, + ["global_knockback"]=1432, + ["global_knockback_on_crit"]=1720, + ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2511, + ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2517, + ["global_maximum_added_chaos_damage"]=1310, + ["global_maximum_added_cold_damage"]=1298, + ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6908, + ["global_maximum_added_fire_damage"]=1292, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=10182, + ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6909, + ["global_maximum_added_lightning_damage"]=1306, + ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6910, + ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6911, + ["global_maximum_added_physical_damage"]=1230, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6912, + ["global_minimum_added_chaos_damage"]=1310, + ["global_minimum_added_cold_damage"]=1298, + ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6908, + ["global_minimum_added_fire_damage"]=1292, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=10182, + ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6909, + ["global_minimum_added_lightning_damage"]=1306, + ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6910, + ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6911, + ["global_minimum_added_physical_damage"]=1230, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6912, + ["global_physical_damage_reduction_rating_while_moving"]=6913, + ["global_poison_on_hit"]=2920, + ["global_skill_gems_no_attribute_requirements"]=2354, + ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2512, + ["glory_generation_+%"]=6915, + ["glory_generation_+%_for_banners"]=6916, + ["glory_generation_+%_if_you_have_at_least_100_tribute"]=6914, + ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6917, + ["glows_in_area_with_unique_fish"]=3804, + ["goat_footprints_from_item"]=10738, + ["gold_+%_from_enemies"]=6918, + ["golem_attack_and_cast_speed_+%"]=6919, + ["golem_attack_maximum_added_physical_damage"]=6920, + ["golem_attack_minimum_added_physical_damage"]=6920, + ["golem_buff_effect_+%"]=6921, + ["golem_buff_effect_+%_per_summoned_golem"]=6922, + ["golem_cooldown_recovery_+%"]=3059, + ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3399, + ["golem_damage_+%_per_active_golem"]=3875, + ["golem_damage_+%_per_active_golem_type"]=3874, + ["golem_immunity_to_elemental_damage"]=3770, + ["golem_life_regeneration_per_minute_%"]=6923, + ["golem_maximum_life_+%"]=6924, + ["golem_maximum_mana_+%"]=6925, + ["golem_movement_speed_+%"]=6926, + ["golem_physical_damage_reduction_rating"]=6927, + ["golem_scale_+%"]=3392, + ["golem_skill_cooldown_recovery_+%"]=3058, + ["golems_larger_aggro_radius"]=10639, + ["grace_aura_effect_+%"]=3089, + ["grace_mana_reservation_+%"]=3722, + ["grace_mana_reservation_efficiency_+%"]=6929, + ["grace_mana_reservation_efficiency_-2%_per_1"]=6928, + ["grace_reserves_no_mana"]=6930, + ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2679, + ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6931, + ["grant_elemental_archon_to_minions_for_x_ms_when_they_revive"]=6932, + ["grant_fear_incarnate_stack_on_culling_enemies"]=6933, + ["grant_fear_overwhelming_stack_on_culling_enemies"]=6934, + ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6935, + ["grant_unholy_might_to_self_while_not_on_low_mana"]=2801, + ["grant_void_arrow_every_x_ms"]=6936, + ["gratuitous_violence_physical_damage_over_time_+%_final"]=6937, + ["grenade_fuse_duration_+%"]=6938, + ["grenade_projectile_speed_+%"]=6939, + ["grenade_skill_%_chance_to_explode_twice"]=6940, + ["grenade_skill_area_of_effect_+%"]=6941, + ["grenade_skill_cooldown_count_+"]=6942, + ["grenade_skill_cooldown_speed_+%"]=6943, + ["grenade_skill_damage_+%"]=6944, + ["grenade_skill_duration_+%"]=6945, + ["grenade_skill_number_of_additional_projectiles"]=6946, + ["ground_effect_duration_+%"]=6947, + ["ground_slam_angle_+%"]=2992, + ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6948, + ["ground_slam_damage_+%"]=3336, + ["ground_slam_radius_+%"]=3499, + ["ground_smoke_on_rampage_threshold_ms"]=2734, + ["ground_smoke_when_hit_%"]=2380, + ["ground_tar_on_block_base_area_of_effect_radius"]=6949, + ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2313, + ["ground_tar_when_hit_%_chance"]=6950, + ["guard_flask_effect_+%"]=6951, + ["guard_gained_+%"]=6952, + ["guard_skill_cooldown_recovery_+%"]=6953, + ["guard_skill_effect_duration_+%"]=6954, + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3480, + ["guardian_nearby_allies_share_charges"]=3794, + ["guardian_nearby_enemies_cannot_gain_charges"]=3476, + ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3479, + ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3477, + ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3478, + ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3042, + ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6955, + ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6956, + ["halve_evasion_rating_from_body"]=6958, + ["hand_wraps_attack_damage_+%_final_on_low_mana"]=916, + ["hand_wraps_damage_taken_+%_final_on_low_life"]=911, + ["hand_wraps_damage_taken_+%_final_while_cursed"]=6959, + ["hand_wraps_evasion_rating_and_energy_shield_+%_final"]=876, + ["harvest_encounter_fluid_granted_+%"]=6960, + ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6961, + ["has_curse_limit_equal_to_maximum_power_charges"]=6962, + ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6963, + ["has_onslaught_if_totem_summoned_recently"]=6964, + ["has_stun_prevention_flask"]=6965, + ["has_trickster_alternating_damage_taken_+%_final"]=6966, + ["has_unique_brutal_shrine_effect"]=6967, + ["has_unique_chaos_shrine_effect"]=6968, + ["has_unique_cold_shrine_effect"]=6969, + ["has_unique_fire_shrine_effect"]=6970, + ["has_unique_lightning_shrine_effect"]=6971, + ["has_unique_massive_shrine_effect"]=6972, + ["haste_aura_effect_+%"]=3090, + ["haste_mana_reservation_+%"]=3723, + ["haste_mana_reservation_efficiency_+%"]=6974, + ["haste_mana_reservation_efficiency_-2%_per_1"]=6973, + ["haste_reserves_no_mana"]=6975, + ["hatred_aura_effect_+%"]=3092, + ["hatred_mana_reservation_+%"]=3713, + ["hatred_mana_reservation_efficiency_+%"]=6977, + ["hatred_mana_reservation_efficiency_-2%_per_1"]=6976, + ["hatred_reserves_no_mana"]=6978, + ["have_unholy_might"]=6979, + ["hazard_area_of_effect_+%"]=6980, + ["hazard_base_debuff_slow_magnitude_+%"]=6981, + ["hazard_damage_+%"]=6982, + ["hazard_duration_+%"]=1686, + ["hazard_hit_damage_immobilisation_multiplier_+%"]=6983, + ["hazard_rearm_%_chance"]=6984, + ["hazards_cant_trigger_x_seconds_after_creation"]=6985, + ["heat_loss_%_slower"]=6986, + ["heavy_strike_attack_speed_+%"]=3547, + ["heavy_strike_chance_to_deal_double_damage_%"]=2971, + ["heavy_strike_damage_+%"]=3337, + ["heavy_stun_poise_decay_rate_+%"]=6988, + ["heavy_stun_poise_decay_rate_+%_per_10_tribute"]=6987, + ["heavy_stun_threshold_+"]=6989, + ["heavy_stuns_have_culling_strike"]=6990, + ["heist_additional_abyss_rewards_from_reward_chests_%"]=6991, + ["heist_additional_armour_rewards_from_reward_chests_%"]=6992, + ["heist_additional_blight_rewards_from_reward_chests_%"]=6993, + ["heist_additional_breach_rewards_from_reward_chests_%"]=6994, + ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6995, + ["heist_additional_delirium_rewards_from_reward_chests_%"]=6996, + ["heist_additional_delve_rewards_from_reward_chests_%"]=6997, + ["heist_additional_divination_rewards_from_reward_chests_%"]=6998, + ["heist_additional_essences_rewards_from_reward_chests_%"]=6999, + ["heist_additional_gems_rewards_from_reward_chests_%"]=7000, + ["heist_additional_harbinger_rewards_from_reward_chests_%"]=7001, + ["heist_additional_jewellery_rewards_from_reward_chests_%"]=7002, + ["heist_additional_legion_rewards_from_reward_chests_%"]=7003, + ["heist_additional_metamorph_rewards_from_reward_chests_%"]=7004, + ["heist_additional_perandus_rewards_from_reward_chests_%"]=7005, + ["heist_additional_talisman_rewards_from_reward_chests_%"]=7006, + ["heist_additional_uniques_rewards_from_reward_chests_%"]=7007, + ["heist_additional_weapons_rewards_from_reward_chests_%"]=7008, + ["heist_alert_level_gained_on_monster_death"]=7009, + ["heist_alert_level_gained_per_10_sec"]=7010, + ["heist_chests_chance_for_secondary_objectives_%"]=7011, + ["heist_chests_double_blighted_maps_and_catalysts_%"]=7012, + ["heist_chests_double_breach_splinters_%"]=7013, + ["heist_chests_double_catalysts_%"]=7014, + ["heist_chests_double_currency_%"]=7015, + ["heist_chests_double_delirium_orbs_and_splinters_%"]=7016, + ["heist_chests_double_divination_cards_%"]=7017, + ["heist_chests_double_essences_%"]=7018, + ["heist_chests_double_jewels_%"]=7019, + ["heist_chests_double_legion_splinters_%"]=7020, + ["heist_chests_double_map_fragments_%"]=7021, + ["heist_chests_double_maps_%"]=7022, + ["heist_chests_double_oils_%"]=7023, + ["heist_chests_double_scarabs_%"]=7024, + ["heist_chests_double_sextants_%"]=7025, + ["heist_chests_double_uniques_%"]=7026, + ["heist_chests_unique_rarity_%"]=7027, + ["heist_coins_dropped_by_monsters_double_%"]=7029, + ["heist_coins_from_monsters_+%"]=35, + ["heist_coins_from_world_chests_double_%"]=7028, + ["heist_contract_alert_level_+%"]=7032, + ["heist_contract_alert_level_from_chests_+%"]=7030, + ["heist_contract_alert_level_from_monsters_+%"]=7031, + ["heist_contract_gang_cost_+%"]=7033, + ["heist_contract_gang_takes_no_cut"]=7034, + ["heist_contract_generate_secondary_objectives_chance_%"]=7035, + ["heist_contract_guarding_monsters_damage_+%"]=7036, + ["heist_contract_guarding_monsters_take_damage_+%"]=7037, + ["heist_contract_magical_unlock_count"]=7039, + ["heist_contract_mechanical_unlock_count"]=7038, + ["heist_contract_no_travel_cost"]=7040, + ["heist_contract_npc_cost_+%"]=7041, + ["heist_contract_objective_completion_time_+%"]=7042, + ["heist_contract_patrol_additional_elite_chance_+%"]=7043, + ["heist_contract_patrol_damage_+%"]=7044, + ["heist_contract_patrol_take_damage_+%"]=7045, + ["heist_contract_side_area_monsters_damage_+%"]=7046, + ["heist_contract_side_area_monsters_take_damage_+%"]=7047, + ["heist_contract_total_cost_+%_final"]=7048, + ["heist_contract_travel_cost_+%"]=7049, + ["heist_currency_alchemy_drops_as_blessed_%"]=7050, + ["heist_currency_alchemy_drops_as_divine_%"]=7051, + ["heist_currency_alchemy_drops_as_exalted_%"]=7052, + ["heist_currency_alteration_drops_as_alchemy_%"]=7053, + ["heist_currency_alteration_drops_as_chaos_%"]=7054, + ["heist_currency_alteration_drops_as_regal_%"]=7055, + ["heist_currency_augmentation_drops_as_alchemy_%"]=7056, + ["heist_currency_augmentation_drops_as_chaos_%"]=7057, + ["heist_currency_augmentation_drops_as_regal_%"]=7058, + ["heist_currency_chaos_drops_as_blessed_%"]=7059, + ["heist_currency_chaos_drops_as_divine_%"]=7060, + ["heist_currency_chaos_drops_as_exalted_%"]=7061, + ["heist_currency_chromatic_drops_as_fusing_%"]=7062, + ["heist_currency_chromatic_drops_as_jewellers_%"]=7063, + ["heist_currency_jewellers_drops_as_fusing_%"]=7064, + ["heist_currency_regal_drops_as_blessed_%"]=7065, + ["heist_currency_regal_drops_as_divine_%"]=7066, + ["heist_currency_regal_drops_as_exalted_%"]=7067, + ["heist_currency_regret_drops_as_annulment_%"]=7068, + ["heist_currency_scouring_drops_as_annulment_%"]=7069, + ["heist_currency_scouring_drops_as_regret_%"]=7070, + ["heist_currency_transmutation_drops_as_alchemy_%"]=7071, + ["heist_currency_transmutation_drops_as_chaos_%"]=7072, + ["heist_currency_transmutation_drops_as_regal_%"]=7073, + ["heist_drops_double_currency_%"]=7074, + ["heist_enchantment_ailment_mod_effect_+%"]=55, + ["heist_enchantment_attribute_mod_effect_+%"]=56, + ["heist_enchantment_casterdamage_mod_effect_+%"]=57, + ["heist_enchantment_chaos_mod_effect_+%"]=58, + ["heist_enchantment_cold_mod_effect_+%"]=59, + ["heist_enchantment_critical_mod_effect_+%"]=60, + ["heist_enchantment_damage_mod_effect_+%"]=61, + ["heist_enchantment_defence_mod_effect_+%"]=62, + ["heist_enchantment_fire_mod_effect_+%"]=63, + ["heist_enchantment_life_mod_effect_+%"]=64, + ["heist_enchantment_lightning_mod_effect_+%"]=65, + ["heist_enchantment_mana_mod_effect_+%"]=66, + ["heist_enchantment_physical_mod_effect_+%"]=67, + ["heist_enchantment_resistance_mod_effect_+%"]=68, + ["heist_enchantment_speed_mod_effect_+%"]=69, + ["heist_guards_are_magic"]=7075, + ["heist_guards_are_rare"]=7076, + ["heist_interruption_resistance_%"]=7077, + ["heist_item_quantity_+%"]=7078, + ["heist_item_rarity_+%"]=7079, + ["heist_items_are_fully_linked_%"]=7080, + ["heist_items_drop_corrupted_%"]=7081, + ["heist_items_drop_identified_%"]=7082, + ["heist_items_have_elder_influence_%"]=7083, + ["heist_items_have_one_additional_socket_%"]=7084, + ["heist_items_have_shaper_influence_%"]=7085, + ["heist_job_agility_level_+"]=7086, + ["heist_job_brute_force_level_+"]=7087, + ["heist_job_counter_thaumaturgy_level_+"]=7088, + ["heist_job_deception_level_+"]=7089, + ["heist_job_demolition_level_+"]=7090, + ["heist_job_demolition_speed_+%"]=7091, + ["heist_job_engineering_level_+"]=7092, + ["heist_job_lockpicking_level_+"]=7093, + ["heist_job_lockpicking_speed_+%"]=7094, + ["heist_job_perception_level_+"]=7095, + ["heist_job_trap_disarmament_level_+"]=7096, + ["heist_job_trap_disarmament_speed_+%"]=7097, + ["heist_lockdown_is_instant"]=7098, + ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=7099, + ["heist_npc_blueprint_reveal_cost_+%"]=7100, + ["heist_npc_contract_generates_gianna_intelligence"]=7101, + ["heist_npc_contract_generates_niles_intelligence"]=7102, + ["heist_npc_display_huck_combat"]=7103, + ["heist_npc_karst_alert_level_from_chests_+%_final"]=7104, + ["heist_npc_nenet_alert_level_+%_final"]=7105, + ["heist_npc_tullina_alert_level_+%_final"]=7106, + ["heist_npc_vinderi_alert_level_+%_final"]=7107, + ["heist_patrols_are_magic"]=7108, + ["heist_patrols_are_rare"]=7109, + ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=7110, + ["heist_player_armour_+%_final_per_25%_alert_level"]=7111, + ["heist_player_cold_resistance_%_per_25%_alert_level"]=7112, + ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=7113, + ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=7114, + ["heist_player_experience_gain_+%"]=7115, + ["heist_player_fire_resistance_%_per_25%_alert_level"]=7116, + ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=7117, + ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=7118, + ["heist_player_lightning_resistance_%_per_25%_alert_level"]=7119, + ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=7120, + ["heist_reinforcements_attack_speed_+%"]=7121, + ["heist_reinforcements_cast_speed_+%"]=7122, + ["heist_reinforcements_movements_speed_+%"]=7123, + ["heist_side_reward_room_monsters_+%"]=7124, + ["hellscape_extra_item_slots"]=7125, + ["hellscape_extra_map_slots"]=7126, + ["hellscaping_add_corruption_implicit_chance_%"]=7127, + ["hellscaping_add_explicit_mod_chance_%"]=7128, + ["hellscaping_additional_link_chance_%"]=7129, + ["hellscaping_additional_socket_chance_%"]=7130, + ["hellscaping_additional_upside_chance_%"]=7131, + ["hellscaping_downsides_tier_downgrade_chance_%"]=7132, + ["hellscaping_speed_+%_per_map_hellscape_tier"]=7133, + ["hellscaping_upgrade_mod_tier_chance_%"]=7139, + ["hellscaping_upsides_tier_upgrade_chance_%"]=7140, + ["helmet_mod_freeze_as_though_damage_+%_final"]=7141, + ["helmet_mod_shock_as_though_damage_+%_final"]=7142, + ["herald_effect_on_self_+%"]=7143, + ["herald_mana_reservation_override_45%"]=7144, + ["herald_of_agony_buff_drop_off_speed_+%"]=7145, + ["herald_of_agony_buff_effect_+%"]=7146, + ["herald_of_agony_mana_reservation_+%"]=7149, + ["herald_of_agony_mana_reservation_efficiency_+%"]=7148, + ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=7147, + ["herald_of_ash_buff_effect_+%"]=7150, + ["herald_of_ash_damage_+%"]=3414, + ["herald_of_ash_mana_reservation_+%"]=3709, + ["herald_of_ash_mana_reservation_efficiency_+%"]=7152, + ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7151, + ["herald_of_ice_buff_effect_+%"]=7153, + ["herald_of_ice_damage_+%"]=3415, + ["herald_of_ice_mana_reservation_+%"]=3710, + ["herald_of_ice_mana_reservation_efficiency_+%"]=7155, + ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7154, + ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7156, + ["herald_of_light_buff_effect_+%"]=7157, + ["herald_of_light_minion_area_of_effect_+%"]=7158, + ["herald_of_purity_mana_reservation_+%"]=7161, + ["herald_of_purity_mana_reservation_efficiency_+%"]=7160, + ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7159, + ["herald_of_thunder_bolt_frequency_+%"]=7162, + ["herald_of_thunder_buff_effect_+%"]=7163, + ["herald_of_thunder_damage_+%"]=3416, + ["herald_of_thunder_mana_reservation_+%"]=3711, + ["herald_of_thunder_mana_reservation_efficiency_+%"]=7165, + ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7164, + ["herald_scorpion_number_of_additional_projectiles"]=7166, + ["herald_skills_mana_reservation_+%"]=7169, + ["herald_skills_mana_reservation_efficiency_+%"]=7168, + ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7167, + ["hex_remove_at_effect_variance"]=7174, + ["hex_skill_cast_speed_+%"]=1967, + ["hex_skill_duration_+%"]=7170, + ["hexblast_%_chance_to_not_consume_hex"]=7172, + ["hexblast_damage_+%"]=7171, + ["hexblast_skill_area_of_effect_+%"]=7173, + ["hexes_expire_on_reaching_200%_effect"]=7174, + ["hexproof_if_right_ring_is_magic_item"]=7175, + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7176, + ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7177, + ["hierophant_gloves_supported_by_increased_area_of_effect"]=478, + ["hierophant_helmet_supported_by_elemental_penetration"]=477, + ["hierophant_mana_cost_+%_final"]=7178, + ["hierophant_mana_reservation_+%_final"]=7179, + ["hierophant_passive_damage_+%_final_per_totem"]=3445, + ["hinder_chance_%_on_spreading_poioson"]=7180, + ["hinder_duration_+%"]=7181, + ["hinder_effect_on_self_+%"]=7182, + ["hinder_enemy_chaos_damage_+%"]=7183, + ["hinder_enemy_chaos_damage_taken_+%"]=7184, + ["hinder_enemy_elemental_damage_taken_+%"]=7185, + ["hinder_enemy_physical_damage_taken_+%"]=7186, + ["hit_%_chance_to_gain_100%_damage_as_chaos"]=4043, + ["hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos"]=4044, + ["hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos"]=3257, + ["hit_%_chance_to_gain_25%_damage_as_chaos"]=4039, + ["hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos"]=4040, + ["hit_%_chance_to_gain_50%_damage_as_chaos"]=4041, + ["hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos"]=4042, + ["hit_damage_+%"]=7197, + ["hit_damage_+%_against_enemies_in_presence"]=7187, + ["hit_damage_+%_vs_bleeding_enemies"]=7198, + ["hit_damage_+%_vs_blinded_enemies"]=7199, + ["hit_damage_+%_vs_chilled_enemies"]=7200, + ["hit_damage_+%_vs_cursed_enemies"]=7201, + ["hit_damage_+%_vs_enemies_affected_by_ailments"]=7202, + ["hit_damage_+%_vs_ignited_enemies"]=7188, + ["hit_damage_+%_vs_unique_enemies"]=7203, + ["hit_damage_bypass_energy_shield_%_when_below_half_energy_shield"]=1482, + ["hit_damage_electrocute_multiplier_+%"]=7189, + ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=7190, + ["hit_damage_freeze_multiplier_+%"]=1080, + ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=7192, + ["hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently"]=7193, + ["hit_damage_freeze_multiplier_+%_with_empowered_attacks"]=7191, + ["hit_damage_immobilisation_multiplier_+%"]=7194, + ["hit_damage_immobilisation_multiplier_+%_vs_constructs"]=7195, + ["hit_damage_pin_multiplier_+%"]=7196, + ["hit_damage_stun_multiplier_+%"]=1074, + ["hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently"]=7204, + ["hit_damage_stun_multiplier_+%_per_10_tribute"]=7205, + ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=7207, + ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=7208, + ["hit_damage_stun_multiplier_+%_while_shapeshifted"]=7206, + ["hit_for_%_max_life_es_on_max_infernal_flame"]=7209, + ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=7210, + ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7211, + ["hits_can_only_kill_frozen_enemies"]=2778, + ["hits_cannot_be_evaded_vs_blinded_enemies"]=7212, + ["hits_cannot_be_evaded_vs_blinded_maimed_bleeding_enemies"]=7213, + ["hits_cannot_be_evaded_vs_heavy_stunned_enemies"]=7214, + ["hits_from_maces_and_sceptres_crush_enemies"]=7215, + ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=7216, + ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7217, + ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7218, + ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7219, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7221, + ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7220, + ["hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%"]=7222, + ["hits_treat_enemy_cold_resistance_as_x%"]=7223, + ["hits_treat_enemy_fire_resistance_as_x%"]=7224, + ["hits_treat_enemy_lightning_resistance_as_x%"]=7225, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=7226, + ["holy_path_teleport_range_+%"]=7227, + ["holy_relic_area_of_effect_+%"]=7228, + ["holy_relic_buff_effect_+%"]=7229, + ["holy_relic_cooldown_recovery_+%"]=7230, + ["holy_relic_damage_+%"]=7231, + ["husk_of_dreams_flask_charges_used_-%_final"]=7232, + ["hydro_sphere_pulse_frequency_+%"]=7233, + ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7234, + ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7235, + ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7236, + ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7237, + ["ice_crash_damage_+%"]=3382, + ["ice_crash_first_stage_damage_+%_final"]=7238, + ["ice_crash_physical_damage_%_to_gain_as_cold_damage"]=3665, + ["ice_crash_radius_+%"]=3522, + ["ice_crystal_maximum_life_+%"]=7239, + ["ice_crystal_maximum_life_+%_per_5%_cold_resistance"]=7240, + ["ice_dash_cooldown_speed_+%"]=7241, + ["ice_dash_duration_+%"]=7242, + ["ice_dash_travel_distance_+%"]=7243, + ["ice_golem_damage_+%"]=3395, + ["ice_golem_elemental_resistances_%"]=3670, + ["ice_nova_chill_minimum_slow_%"]=7244, + ["ice_nova_damage_+%"]=3365, + ["ice_nova_freeze_chance_%"]=3649, + ["ice_nova_radius_+%"]=3509, + ["ice_shot_additional_pierce_per_10_old"]=7245, + ["ice_shot_area_angle_+%"]=7246, + ["ice_shot_damage_+%"]=3349, + ["ice_shot_duration_+%"]=3623, + ["ice_shot_pierce_+"]=7247, + ["ice_shot_radius_+%"]=3505, + ["ice_siphon_trap_chill_effect_+%"]=7248, + ["ice_siphon_trap_damage_+%"]=7249, + ["ice_siphon_trap_damage_taken_+%_per_beam"]=7250, + ["ice_siphon_trap_duration_+%"]=7251, + ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3657, + ["ice_spear_and_ball_lightning_projectiles_nova"]=7252, + ["ice_spear_and_ball_lightning_projectiles_return"]=7253, + ["ice_spear_damage_+%"]=3366, + ["ice_spear_distance_before_form_change_+%"]=7254, + ["ice_spear_number_of_additional_projectiles"]=7255, + ["ice_spear_second_form_critical_strike_chance_+%"]=3800, + ["ice_spear_second_form_critical_strike_multiplier_+"]=3801, + ["ice_spear_second_form_projectile_speed_+%_final"]=3802, + ["ice_trap_cold_resistance_penetration_%"]=7256, + ["ice_trap_cooldown_speed_+%"]=3582, + ["ice_trap_damage_+%"]=3431, + ["ice_trap_radius_+%"]=3535, + ["ignite_as_though_dealing_X_damage_in_your_presence"]=7260, + ["ignite_chance_+%"]=1078, + ["ignite_duration_+%"]=1637, + ["ignite_effect_+%_against_frozen_enemies"]=7263, + ["ignite_effect_+%_if_consumed_endurance_charge_recently"]=7264, + ["ignite_effect_on_self_+%"]=7262, + ["ignite_effect_on_self_+%_while_shapeshifted"]=7261, + ["ignite_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=7265, + ["ignite_magnitude_+%_against_poisoned_enemies"]=7266, + ["ignite_prevention_ms_when_ignited"]=2676, + ["ignite_proliferation_radius_15"]=1969, + ["ignite_shock_chill_duration_+%"]=7267, + ["ignite_slower_burn_%"]=2369, + ["ignited_enemies_explode_on_kill"]=2396, + ["ignites_and_chill_apply_elemental_resistance_+"]=7268, + ["ignites_apply_fire_resistance_+"]=7269, + ["ignites_reflected_to_self"]=2794, + ["ignore_armour_movement_penalties"]=1940, + ["ignore_armour_movement_penalties_if_you_have_at_least_100_tribute"]=7270, + ["ignore_attribute_requirements_for_gloves"]=7271, + ["ignore_hexproof"]=2401, + ["ignore_strength_requirements_of_melee_weapons_and_skills"]=7272, + ["ignores_enemy_cold_resistance"]=7273, + ["ignores_enemy_fire_resistance"]=7274, + ["ignores_enemy_lightning_resistance"]=7275, + ["imbue_weapon_max_exerts"]=7276, + ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3704, + ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7277, + ["immortal_call_duration_+%"]=3592, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7278, + ["immune_to_ally_buff_auras"]=2775, + ["immune_to_bleeding"]=3889, + ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7279, + ["immune_to_bleeding_while_archon"]=7280, + ["immune_to_bleeding_while_shapeshifted"]=7281, + ["immune_to_burning_shocks_and_chilled_ground"]=7282, + ["immune_to_chill_if_majority_blue_supports_socketed"]=7283, + ["immune_to_corrupted_blood"]=7284, + ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7285, + ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7286, + ["immune_to_curses_while_at_least_X_rage"]=7287, + ["immune_to_curses_while_channelling"]=7288, + ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7289, + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7290, + ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7291, + ["immune_to_elemental_status_ailments_during_flask_effect"]=3898, + ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10620, + ["immune_to_exposure"]=7292, + ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7293, + ["immune_to_freeze_and_chill_while_ignited"]=7294, + ["immune_to_freeze_chill_while_archon"]=7295, + ["immune_to_freeze_while_affected_by_purity_of_ice"]=7296, + ["immune_to_hinder"]=7297, + ["immune_to_ignite_and_shock"]=7298, + ["immune_to_ignite_if_majority_red_supports_socketed"]=7299, + ["immune_to_ignite_while_affected_by_purity_of_fire"]=7300, + ["immune_to_ignite_while_archon"]=7301, + ["immune_to_maim"]=7302, + ["immune_to_maim_while_shapeshifted"]=7303, + ["immune_to_poison"]=3316, + ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7304, + ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7305, + ["immune_to_shock_if_majority_green_supports_socketed"]=7306, + ["immune_to_shock_while_affected_by_purity_of_lightning"]=7307, + ["immune_to_shock_while_archon"]=7308, + ["immune_to_status_ailments_while_focused"]=7309, + ["immune_to_status_ailments_while_phased"]=3179, + ["immune_to_thorns_damage"]=7310, + ["immune_to_wither"]=7311, + ["impacting_steel_%_chance_to_not_consume_ammo"]=7312, + ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=7313, + ["impale_magnitude_+%"]=7314, + ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7315, + ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=7316, + ["impale_on_hit_%_chance"]=7317, + ["impale_on_hit_%_chance_with_axes_swords"]=7318, + ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=7319, + ["impurity_cold_damage_taken_+%_final"]=7320, + ["impurity_fire_damage_taken_+%_final"]=7321, + ["impurity_lightning_damage_taken_+%_final"]=7322, + ["incinerate_damage_+%"]=3367, + ["incinerate_damage_+%_per_stage"]=3687, + ["incinerate_projectile_speed_+%"]=3589, + ["incinerate_starts_with_X_additional_stages"]=7323, + ["incision_effect_+%"]=7324, + ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=7325, + ["increase_crit_chance_by_lowest_of_str_or_int"]=7326, + ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1406, + ["increases_and_reductions_to_move_speed_apply_to_es_recharge_rate"]=7327, + ["infernal_blow_damage_+%"]=3338, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7328, + ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7329, + ["infernal_blow_physical_damage_%_to_gain_as_fire_damage"]=3646, + ["infernal_blow_radius_+%"]=3500, + ["infernal_cry_area_of_effect_+%"]=7330, + ["infernal_cry_cooldown_speed_+%"]=7331, + ["infernal_familiar_burn_damage"]=7332, + ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=7333, + ["infernal_familiar_revive_if_killed_by_enemies_ms"]=7334, + ["infernal_familiar_total_burn_radius"]=7332, + ["infernal_flame_instead_of_mana_at_%_ratio"]=6957, + ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=7335, + ["infernalist_critical_strike_chance_+%_final"]=7336, + ["infernalist_critical_strike_multiplier_+%_final"]=7337, + ["infinite_active_block_distance"]=7338, + ["inflict_all_exposure_on_hit"]=7339, + ["inflict_blind_on_enemies_within_x_meters_while_shield_is_raised"]=7340, + ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7341, + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7342, + ["inflict_cold_exposure_on_ignite"]=7343, + ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7344, + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7345, + ["inflict_fire_exposure_on_hits_that_heavy_stun"]=7346, + ["inflict_fire_exposure_on_shock"]=7347, + ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7348, + ["inflict_lightning_exposure_on_crit"]=7349, + ["inflict_lightning_exposure_on_electrocute_for_x_seconds"]=7350, + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7351, + ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7352, + ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=7353, + ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7354, + ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7355, + ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7356, + ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7357, + ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7358, + ["infusion_blast_area_of_effect_+%"]=7359, + ["infusion_blast_damage_+%"]=7360, + ["infusion_duration_+%"]=7361, + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7362, + ["inquisitor_aura_elemental_damage_+%_final"]=3296, + ["inspiration_charge_duration_+%"]=7363, + ["instability_on_critical_%_chance"]=7364, + ["instilling_%_chance_to_gain_additional_instilling_stack"]=7365, + ["intelligence_+%"]=1024, + ["intelligence_+%_per_equipped_unique"]=2395, + ["intelligence_inherently_grants_life_instead_of_mana"]=1782, + ["intelligence_is_0"]=7366, + ["intelligence_skill_gem_level_+"]=978, + ["intensity_loss_frequency_while_moving_+%"]=7367, + ["internecine_draw_%_damage_gained_as_lightning_per_cleansed_form"]=7368, + ["internecine_draw_%_damage_gained_as_physical_per_corrupted_form"]=7369, + ["internecine_draw_always_bleed_at_maximum_corrupted_form"]=7370, + ["internecine_draw_always_shock_at_maximum_cleansed_form"]=7371, + ["internecine_draw_gain_cleansing_on_bow_attack"]=7372, + ["internecine_draw_gain_corruption_on_bow_attack"]=7373, + ["internecine_draw_lightning_damage_taken_on_attack_per_cleansed_form_above_corrupted_form"]=7374, + ["internecine_draw_maximum_stacks"]=7375, + ["internecine_draw_physical_damage_taken_on_attack_per_corrupted_form_above_cleansed_form"]=7376, + ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7377, + ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7378, + ["intimidate_enemy_on_block_for_duration_ms"]=7379, + ["intimidate_nearby_enemies_on_use_for_ms"]=7380, + ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7381, + ["intimidating_cry_area_of_effect_+%"]=7382, + ["intimidating_cry_cooldown_speed_+%"]=7383, + ["intuitive_link_duration_+%"]=7384, + ["invocation_skill_maximum_energy_+%"]=7385, + ["invocation_spell_chance_to_cost_half_energy_%"]=7386, + ["invocation_spell_critical_strike_chance_+%"]=7387, + ["invocation_spell_critical_strike_multiplier_+"]=7388, + ["invocation_spell_damage_+%"]=7389, + ["iron_reflexes_rotation_active"]=10723, + ["is_blighted_map"]=7390, + ["is_hindered"]=3783, + ["is_petrified"]=3309, + ["item_can_have_catalyst_quality_in_addition_to_base_quality"]=7391, + ["item_drop_slots"]=12, + ["item_drops_on_death"]=2362, + ["item_found_quality_+%"]=1492, + ["item_found_quantity_+%_if_wearing_a_magic_item"]=3885, + ["item_found_quantity_+%_per_chest_opened_recently"]=7392, + ["item_found_quantity_+%_when_on_low_life"]=1485, + ["item_found_rarity_+%"]=1487, + ["item_found_rarity_+%_if_wearing_a_normal_item"]=3884, + ["item_found_rarity_+%_when_on_low_life"]=1490, + ["item_found_rarity_+%_while_phasing"]=2308, + ["item_found_rarity_+1%_per_X_rampage_stacks"]=7393, + ["item_found_relevancy_+%"]=1493, + ["item_generation_can_have_multiple_crafted_mods"]=52, + ["item_generation_cannot_change_prefixes"]=47, + ["item_generation_cannot_change_suffixes"]=49, + ["item_generation_cannot_roll_attack_affixes"]=51, + ["item_generation_cannot_roll_caster_affixes"]=50, + ["item_generation_local_maximum_mod_required_level_override"]=54, + ["item_rarity_+%_while_using_flask"]=2540, + ["jagged_ground_duration_+%"]=7394, + ["jagged_ground_effect_+%"]=7395, + ["jagged_ground_enemy_damage_taken_+%"]=7396, + ["jewellery_hellscaping_speed_+%"]=7135, + ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2578, + ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7397, + ["keystone_2_companions"]=10657, + ["keystone_acrobatics"]=10658, + ["keystone_alternate_dexterity_bonus"]=10659, + ["keystone_alternate_es_recovery"]=10660, + ["keystone_alternate_intelligence_bonus"]=10661, + ["keystone_alternate_strength_bonus"]=10662, + ["keystone_ancestral_bond"]=10663, + ["keystone_auto_invocation"]=10664, + ["keystone_avatar_of_fire"]=10665, + ["keystone_battlemage"]=10666, + ["keystone_blood_magic"]=10667, + ["keystone_bulwark"]=10668, + ["keystone_call_to_arms"]=10669, + ["keystone_chaos_inoculation"]=10670, + ["keystone_charge_cycle"]=10671, + ["keystone_conduit"]=10672, + ["keystone_crimson_assault"]=10673, + ["keystone_crimson_dance"]=10674, + ["keystone_dance_with_death"]=10675, + ["keystone_divine_flesh"]=10676, + ["keystone_divine_shield"]=10677, + ["keystone_druidic_rage"]=10678, + ["keystone_eldritch_battery"]=10679, + ["keystone_elemental_equilibrium"]=10680, + ["keystone_elemental_overload"]=10681, + ["keystone_emperors_heart"]=10682, + ["keystone_eternal_youth"]=10683, + ["keystone_everlasting_sacrifice"]=10684, + ["keystone_fire_spells_become_chaos_spells"]=10685, + ["keystone_giants_blood"]=10686, + ["keystone_glancing_blows"]=10687, + ["keystone_heartstopper"]=10688, + ["keystone_hex_master"]=10689, + ["keystone_hollow_palm_technique"]=10690, + ["keystone_impale"]=10691, + ["keystone_iron_grip"]=10692, + ["keystone_iron_reflexes"]=10693, + ["keystone_iron_will"]=10694, + ["keystone_lord_of_the_wilds"]=10695, + ["keystone_mana_shield"]=10696, + ["keystone_minion_instability"]=10697, + ["keystone_oasis"]=10698, + ["keystone_pain_attunement"]=10699, + ["keystone_point_blank"]=10700, + ["keystone_precise_technique"]=10701, + ["keystone_quiet_might"]=10702, + ["keystone_runebinder"]=10703, + ["keystone_sacred_bastion"]=10704, + ["keystone_secrets_of_suffering"]=10705, + ["keystone_shepherd_of_souls"]=7398, + ["keystone_unwavering_stance"]=10706, + ["keystone_vaal_pact"]=10707, + ["keystone_versatile_combatant"]=10708, + ["keystone_wildsurge_incantation"]=10709, + ["keystone_zealots_oath"]=10710, + ["kill_enemy_on_hit_if_under_10%_life"]=1797, + ["kill_enemy_on_hit_if_under_15%_life"]=3887, + ["kill_enemy_on_hit_if_under_20%_life"]=3888, + ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7399, + ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2489, + ["killed_monster_dropped_item_rarity_+%_on_crit"]=2438, + ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2492, + ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2490, + ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3282, + ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2491, + ["kills_count_twice_for_rampage_%"]=7400, + ["kinetic_blast_%_chance_for_additional_blast"]=3793, + ["kinetic_blast_damage_+%"]=3383, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7401, + ["kinetic_blast_radius_+%"]=3523, + ["kinetic_bolt_attack_speed_+%"]=7402, + ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7403, + ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7404, + ["kinetic_bolt_projectile_speed_+%"]=7405, + ["kinetic_wand_base_number_of_zig_zags"]=7406, + ["knockback_chance_%_against_bleeding_enemies_with_hits"]=7407, + ["knockback_chance_%_at_close_range"]=7408, + ["knockback_distance_+%"]=1766, + ["knockback_distance_+%_final_vs_unique_enemies"]=7409, + ["knockback_on_counterattack_%"]=3325, + ["knockback_on_crit_with_bow"]=1721, + ["knockback_on_crit_with_projectile_damage"]=7410, + ["knockback_on_crit_with_quarterstaff"]=1722, + ["knockback_on_crit_with_wand"]=1723, + ["knockback_with_bow"]=1435, + ["knockback_with_staff"]=1436, + ["knockback_with_wand"]=1437, + ["labyrinth_darkshrine_additional_divine_font_use_display"]=7411, + ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7412, + ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7413, + ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7414, + ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7415, + ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7416, + ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7417, + ["labyrinth_owner_x_addition_enchants"]=7418, + ["lancing_steel_%_chance_to_not_consume_ammo"]=7422, + ["lancing_steel_damage_+%"]=7419, + ["lancing_steel_impale_chance_%"]=7420, + ["lancing_steel_number_of_additional_projectiles"]=7421, + ["lancing_steel_primary_proj_pierce_num"]=7423, + ["last_tremor_duration_ms"]=7424, + ["leap_slam_attack_speed_+%"]=3550, + ["leap_slam_damage_+%"]=3354, + ["leap_slam_radius_+%"]=3507, + ["leech_%_is_instant"]=7425, + ["leech_rate_+%"]=1916, + level=11, + ["lich_mana_cost_+%_final_if_you_have_no_energy_shield"]=153, + ["life_%_gained_on_kill_if_spent_life_recently"]=2705, + ["life_+%_with_no_corrupted_equipped_items"]=3876, + ["life_and_energy_shield_recovery_rate_+%"]=7426, + ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7427, + ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7428, + ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7429, + ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7430, + ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=7431, + ["life_and_mana_gain_per_hit"]=1526, + ["life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped"]=7432, + ["life_degeneration_%_per_minute_not_in_grace"]=1712, + ["life_degeneration_per_minute_not_in_grace"]=1466, + ["life_flask_charges_gained_+%"]=7433, + ["life_flask_charges_recovered_per_3_seconds"]=7434, + ["life_flask_charges_used_%_granted_to_charms"]=927, + ["life_flask_effects_are_not_removed_at_full_life"]=7435, + ["life_flask_recovery_can_overcap_life"]=7436, + ["life_flask_recovery_is_instant"]=7437, + ["life_flask_recovery_is_instant_while_on_low_life"]=7438, + ["life_flasks_do_not_recover_life"]=7439, + ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7440, + ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7441, + ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7442, + ["life_gain_on_ignited_enemy_hit"]=1528, + ["life_gain_per_target"]=1524, + ["life_gain_per_target_hit_while_affected_by_vitality"]=7443, + ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7444, + ["life_gained_on_attack_hit_if_crit_recently"]=7445, + ["life_gained_on_attack_hit_vs_cursed_enemies"]=7446, + ["life_gained_on_bleeding_enemy_hit"]=3276, + ["life_gained_on_block"]=1541, + ["life_gained_on_cull"]=7447, + ["life_gained_on_enemy_death_per_frenzy_charge"]=2704, + ["life_gained_on_enemy_death_per_level"]=2738, + ["life_gained_on_hit_per_enemy_status_ailment"]=2826, + ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7448, + ["life_gained_on_killing_ignited_enemies"]=1537, + ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2827, + ["life_gained_on_taunting_enemy"]=1564, + ["life_leech_%_is_instant_if_you_have_at_least_200_tribute"]=7449, + ["life_leech_%_is_instant_per_defiance"]=7458, + ["life_leech_%_maximum_life_on_spell_cast"]=7459, + ["life_leech_also_recovers_based_on_elemental_damage_types"]=7450, + ["life_leech_also_recovers_based_on_lightning_damage"]=7451, + ["life_leech_amount_+%_if_consumed_frenzy_charge_recently"]=7452, + ["life_leech_amount_+%_while_shapeshifted"]=7453, + ["life_leech_can_overcap_life"]=7454, + ["life_leech_excess_goes_to_energy_shield"]=7455, + ["life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute"]=7456, + ["life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies"]=1523, + ["life_leech_is_instant_for_empowered_attacks"]=7457, + ["life_leech_rate_+%_if_you_have_at_least_100_tribute"]=7460, + ["life_leech_rate_+%_per_equipped_corrupted_item"]=2850, + ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=7461, + ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=7462, + ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=7463, + ["life_loss_%_per_minute_if_have_been_hit_recently"]=7465, + ["life_loss_%_per_minute_while_sprinting"]=7464, + ["life_lost_%_per_minute_nonlethal"]=7466, + ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7467, + ["life_mana_flasks_restore_mana_life"]=7468, + ["life_mastery_count_maximum_life_+%_final"]=7469, + ["life_per_level"]=7470, + ["life_recoup_also_applies_to_energy_shield"]=7471, + ["life_recoup_applies_to_energy_shield_instead"]=7472, + ["life_recovery_+%_from_flasks_while_on_low_life"]=7479, + ["life_recovery_from_flasks_also_recovers_energy_shield"]=7473, + ["life_recovery_from_flasks_also_recovers_ward_%"]=7474, + ["life_recovery_from_flasks_applies_to_companions"]=7475, + ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=7476, + ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7477, + ["life_recovery_from_regeneration_is_not_applied"]=7478, + ["life_recovery_rate_+%"]=1468, + ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7482, + ["life_recovery_rate_+%_if_havent_killed_recently"]=7483, + ["life_recovery_rate_+%_per_10_tribute"]=7480, + ["life_recovery_rate_+%_per_5%_missing_life"]=7481, + ["life_recovery_rate_+%_while_affected_by_vitality"]=7484, + ["life_recovery_rate_while_in_presence_of_companion_+%"]=7485, + ["life_regen_per_minute_per_endurance_charge"]=2767, + ["life_regenerate_rate_per_second_%_while_totem_active"]=3731, + ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7500, + ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7501, + ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7486, + ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7492, + ["life_regeneration_per_minute_%_per_fortification"]=7493, + ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7494, + ["life_regeneration_per_minute_%_while_channelling"]=7495, + ["life_regeneration_per_minute_%_while_fortified"]=2938, + ["life_regeneration_per_minute_%_while_frozen"]=3441, + ["life_regeneration_per_minute_%_while_ignited"]=7487, + ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4056, + ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4057, + ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4055, + ["life_regeneration_per_minute_in_blood_stance"]=10054, + ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7488, + ["life_regeneration_per_minute_per_active_buff"]=7489, + ["life_regeneration_per_minute_per_maximum_energy_shield"]=7490, + ["life_regeneration_per_minute_per_nearby_corpse"]=7491, + ["life_regeneration_per_minute_while_affected_by_vitality"]=7496, + ["life_regeneration_per_minute_while_ignited"]=7497, + ["life_regeneration_per_minute_while_moving"]=7498, + ["life_regeneration_per_minute_while_you_have_avians_flight"]=7499, + ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3877, + ["life_regeneration_rate_+%"]=1059, + ["life_regeneration_rate_+%_while_es_full"]=2828, + ["life_regeneration_rate_+%_while_ignited"]=7502, + ["life_regeneration_rate_+%_while_moving"]=7527, + ["life_regeneration_rate_+%_while_on_low_life"]=7528, + ["life_regeneration_rate_+%_while_shapeshifted"]=7503, + ["life_regeneration_rate_+%_while_stationary"]=7529, + ["life_regeneration_rate_+%_while_surrounded"]=7504, + ["life_regeneration_rate_+%_while_using_life_flask"]=7505, + ["life_regeneration_rate_per_minute_%"]=1713, + ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7511, + ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7512, + ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7513, + ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=1058, + ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7514, + ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7506, + ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3897, + ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7515, + ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7516, + ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1467, + ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4082, + ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2424, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7517, + ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7518, + ["life_regeneration_rate_per_minute_%_per_power_charge"]=7519, + ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7520, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7521, + ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1909, + ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1714, + ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=7507, + ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7508, + ["life_regeneration_rate_per_minute_%_while_moving"]=7522, + ["life_regeneration_rate_per_minute_%_while_stationary"]=7523, + ["life_regeneration_rate_per_minute_%_while_surrounded"]=7509, + ["life_regeneration_rate_per_minute_%_while_using_flask"]=7524, + ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7525, + ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2851, + ["life_regeneration_rate_per_minute_per_level"]=2728, + ["life_regeneration_rate_per_minute_while_on_low_life"]=7526, + ["life_reserved_by_stat_only_for_midnight_bargain_and_infernalist_%"]=2213, + ["light_radius_+%"]=1093, + ["light_radius_+%_per_10_tribute"]=7530, + ["light_radius_+%_while_phased"]=2311, + ["light_radius_additive_modifiers_apply_to_area_%_value"]=2301, + ["light_radius_additive_modifiers_apply_to_damage"]=2302, + ["light_radius_increases_apply_to_accuracy"]=7531, + ["light_radius_increases_apply_to_area_of_effect"]=7532, + ["light_radius_scales_with_energy_shield"]=2525, + ["lightning_ailment_duration_+%"]=7533, + ["lightning_ailment_effect_+%"]=7535, + ["lightning_ailment_effect_+%_against_chilled_enemies"]=7534, + ["lightning_and_chaos_damage_resistance_%"]=7536, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7537, + ["lightning_arrow_damage_+%"]=3355, + ["lightning_arrow_radius_+%"]=3508, + ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7538, + ["lightning_conduit_area_of_effect_+%"]=7539, + ["lightning_conduit_cast_speed_+%"]=7540, + ["lightning_conduit_damage_+%"]=7541, + ["lightning_critical_strike_chance_+%"]=1401, + ["lightning_critical_strike_multiplier_+"]=1423, + ["lightning_damage_%_taken_from_mana_before_life"]=3844, + ["lightning_damage_+%"]=898, + ["lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds"]=7542, + ["lightning_damage_+%_per_10_intelligence"]=3807, + ["lightning_damage_+%_per_frenzy_charge"]=2703, + ["lightning_damage_+%_per_lightning_resistance_above_75"]=7546, + ["lightning_damage_+%_per_rage"]=7543, + ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7547, + ["lightning_damage_+%_while_affected_by_wrath"]=7548, + ["lightning_damage_+%_while_ignited"]=7544, + ["lightning_damage_can_chill"]=2657, + ["lightning_damage_can_freeze"]=2664, + ["lightning_damage_can_ignite"]=7545, + ["lightning_damage_cannot_shock"]=2670, + ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7549, + ["lightning_damage_resistance_+%"]=1515, + ["lightning_damage_resistance_is_%"]=1513, + ["lightning_damage_taken_%_as_cold"]=2250, + ["lightning_damage_taken_%_as_fire"]=2248, + ["lightning_damage_taken_+"]=7551, + ["lightning_damage_taken_+%"]=3110, + ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7550, + ["lightning_damage_to_return_to_melee_attacker"]=1959, + ["lightning_damage_to_return_when_hit"]=1964, + ["lightning_damage_with_attack_skills_+%"]=7552, + ["lightning_damage_with_spell_skills_+%"]=7553, + ["lightning_dot_multiplier_+"]=1226, + ["lightning_explosion_mine_aura_effect_+%"]=7554, + ["lightning_explosion_mine_damage_+%"]=7555, + ["lightning_explosion_mine_throwing_speed_+%"]=7556, + ["lightning_exposure_effect_+%"]=7557, + ["lightning_exposure_on_hit_magnitude"]=7558, + ["lightning_golem_damage_+%"]=3396, + ["lightning_golem_elemental_resistances_%"]=3671, + ["lightning_hit_and_dot_damage_%_taken_as_cold"]=2251, + ["lightning_hit_and_dot_damage_%_taken_as_fire"]=2249, + ["lightning_hit_damage_+%_vs_chilled_enemies"]=7559, + ["lightning_penetration_%_while_on_low_mana"]=745, + ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7560, + ["lightning_resist_unaffected_by_area_penalties"]=7561, + ["lightning_resistance_does_not_apply_to_lighting_damage"]=7562, + ["lightning_skill_additional_chain_chance_%"]=7563, + ["lightning_skill_additional_chains"]=7564, + ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7565, + ["lightning_skill_gem_level_+"]=985, + ["lightning_skill_stun_threshold_+%"]=7566, + ["lightning_skills_chance_to_poison_on_hit_%"]=7567, + ["lightning_spell_skill_gem_level_+"]=986, + ["lightning_strike_additional_pierce"]=3643, + ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7568, + ["lightning_strike_damage_+%"]=3339, + ["lightning_strike_num_of_additional_projectiles"]=3634, + ["lightning_tendrils_critical_strike_chance_+%"]=3789, + ["lightning_tendrils_damage_+%"]=3340, + ["lightning_tendrils_radius_+%"]=3501, + ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7569, + ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7570, + ["lightning_tower_trap_additional_number_of_beams"]=7571, + ["lightning_tower_trap_cast_speed_+%"]=7572, + ["lightning_tower_trap_cooldown_speed_+%"]=7573, + ["lightning_tower_trap_damage_+%"]=7574, + ["lightning_tower_trap_duration_+%"]=7575, + ["lightning_tower_trap_throwing_speed_+%"]=7576, + ["lightning_trap_additional_pierce"]=3644, + ["lightning_trap_cooldown_speed_+%"]=3140, + ["lightning_trap_damage_+%"]=3138, + ["lightning_trap_lightning_resistance_penetration_%"]=7577, + ["lightning_trap_number_of_additional_projectiles"]=3139, + ["lightning_trap_shock_effect_+%"]=7578, + ["lightning_warp_cast_speed_+%"]=3565, + ["lightning_warp_damage_+%"]=3356, + ["lightning_warp_duration_+%"]=3622, + ["lightning_weakness_ignores_hexproof"]=2407, + ["lineage_support_gem_limit_+"]=7579, + ["link_buff_effect_+%_on_animate_guardian"]=7580, + ["link_effect_+%_when_50%_expired"]=7581, + ["link_grace_period_8_second_override"]=7582, + ["link_skill_buff_effect_+%"]=7583, + ["link_skill_buff_effect_+%_if_linked_target_recently"]=7584, + ["link_skill_cast_speed_+%"]=7585, + ["link_skill_duration_+%"]=7586, + ["link_skill_gem_level_+"]=7587, + ["link_skill_link_target_cannot_die_for_X_seconds"]=7588, + ["link_skill_lose_no_experience_on_link_target_death"]=7589, + ["link_skill_mana_cost_+%"]=7590, + ["link_skills_can_target_animate_guardian"]=7591, + ["link_skills_can_target_minions"]=7592, + ["link_skills_grant_damage_+%"]=7593, + ["link_skills_grant_damage_taken_+%"]=7594, + ["link_skills_grant_redirect_curses_to_link_source"]=7595, + ["link_to_X_additional_random_allies"]=7596, + ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7597, + ["local_%_chance_to_gain_flask_charge_on_kill"]=1094, + ["local_%_chance_to_gain_flask_charge_when_hit"]=7598, + ["local_%_chance_to_trigger_molten_shower_on_hit_with_this_weapon_per_25_strength"]=504, + ["local_+%_weapon_range"]=7599, + ["local_X_additional_chains"]=7600, + ["local_accuracy_rating"]=858, + ["local_accuracy_rating_+%"]=1790, + ["local_accuracy_rating_+%_per_2%_quality"]=7601, + ["local_additional_attack_chain_chance_%"]=7602, + ["local_additional_block_chance_%"]=861, + ["local_additional_charm_slots"]=1012, + ["local_additional_vivisection_random_keystone_index"]=10655, + ["local_aggravate_bleeding_on_hit_chance_%"]=7603, + ["local_aggravating_bleeds_also_causes_you_to_aggravate_ignites"]=4262, + ["local_all_attributes_+%_per_rune_or_soul_core"]=7606, + ["local_all_attributes_+_per_rune_or_soul_core"]=7604, + ["local_all_attributes_-_per_level"]=7605, + ["local_all_damage_can_chill"]=7607, + ["local_all_damage_can_electrocute"]=7608, + ["local_all_damage_can_freeze"]=7609, + ["local_all_damage_can_pin"]=7610, + ["local_all_damage_can_poison"]=2273, + ["local_always_crit_heavy_stunned_enemies"]=7611, + ["local_always_freeze_on_full_life"]=7612, + ["local_always_heavy_stun_on_full_life"]=1159, + ["local_always_hit"]=1801, + ["local_always_maim_on_crit"]=7613, + ["local_apply_X_armour_break_on_crit"]=7614, + ["local_apply_X_armour_break_on_hit"]=7615, + ["local_apply_X_armour_break_on_stun"]=7616, + ["local_apply_elemental_exposure_on_full_armour_break"]=7617, + ["local_apply_extra_herald_mod_when_synthesised"]=10621, + ["local_area_of_effect_+%_per_4%_quality"]=7618, + ["local_armour_and_energy_shield_+%"]=874, + ["local_armour_and_evasion_+%"]=873, + ["local_armour_and_evasion_and_energy_shield_+%"]=877, + ["local_armour_break_damage_%_dealt_as_armour_break"]=7619, + ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7620, + ["local_attack_cast_movement_speed_+%_during_flask_effect"]=826, + ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=827, + ["local_attack_damage_+%_if_item_corrupted"]=7621, + ["local_attack_maximum_added_physical_damage_per_3_levels"]=1233, + ["local_attack_minimum_added_physical_damage_per_3_levels"]=1233, + ["local_attack_speed_+%"]=969, + ["local_attack_speed_+%_per_8%_quality"]=7622, + ["local_attacks_cannot_be_blocked"]=7623, + ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7624, + ["local_attacks_have_added_max_cold_damage_equal_to_%_of_maximum_mana"]=7625, + ["local_attacks_have_added_min_cold_damage_equal_to_%_of_maximum_mana"]=7625, + ["local_attacks_impale_on_hit_%_chance"]=7626, + ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7627, + ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7628, + ["local_attacks_with_this_weapon_elemental_damage_+%"]=2700, + ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2701, + ["local_attribute_requirements_+%"]=971, + ["local_avoid_chill_%_during_flask_effect"]=754, + ["local_avoid_freeze_%_during_flask_effect"]=755, + ["local_avoid_ignite_%_during_flask_effect"]=756, + ["local_avoid_shock_%_during_flask_effect"]=757, + ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=7629, + ["local_base_evasion_rating"]=864, + ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=7630, + ["local_base_maximum_life_+_per_rune_or_soul_core"]=7631, + ["local_base_maximum_mana_+_per_rune_or_soul_core"]=7632, + ["local_base_physical_damage_reduction_rating"]=863, + ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=7633, + ["local_base_stun_duration_+%"]=1077, + ["local_bleed_on_critical_strike_chance_%"]=7634, + ["local_bleed_on_hit"]=2283, + ["local_bleeding_effect_+%"]=839, + ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7635, + ["local_block_chance_+%"]=862, + ["local_can_have_additional_crafted_mods"]=53, + ["local_can_only_deal_damage_with_this_weapon"]=2506, + ["local_can_only_socket_corrupted_gems"]=82, + ["local_can_only_socket_emerald_gems"]=97, + ["local_can_only_socket_ruby_gems"]=96, + ["local_can_only_socket_runes"]=83, + ["local_can_only_socket_sapphire_gems"]=98, + ["local_can_only_socket_soul_cores"]=84, + ["local_can_socket_gems_ignoring_colour"]=100, + ["local_can_socket_x_emerald_jewels_exclude_disallowed_types"]=99, + ["local_can_socket_x_ruby_jewels_exclude_disallowed_types"]=99, + ["local_can_socket_x_sapphire_jewels_exclude_disallowed_types"]=99, + ["local_cannot_be_thrown"]=7636, + ["local_cannot_be_used_with_chaos_innoculation"]=840, + ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4599, + ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10729, + ["local_chance_to_bleed_on_crit_50%"]=7637, + ["local_chance_to_bleed_on_hit_%"]=2286, + ["local_chance_to_bleed_on_hit_25%"]=2284, + ["local_chance_to_bleed_on_hit_50%"]=2285, + ["local_chance_to_blind_on_hit_%"]=2035, + ["local_chance_to_gain_onslaught_on_killing_blow_%"]=7638, + ["local_chance_to_intimidate_on_hit_%"]=7639, + ["local_chance_to_poison_on_hit_%_during_flask_effect"]=758, + ["local_chaos_damage_taken_per_minute_during_flask_effect"]=821, + ["local_chaos_penetration_%"]=7640, + ["local_charges_added_+%"]=1095, + ["local_charges_used_+%"]=1096, + ["local_charm_duration_+%"]=951, + ["local_charm_effect_+%"]=7641, + ["local_charm_slots"]=4787, + ["local_charm_trigger_when_cursed"]=708, + ["local_chill_on_hit_ms_if_in_off_hand"]=7642, + ["local_cold_penetration_%"]=3460, + ["local_cold_resistance_%_per_2%_quality"]=7643, + ["local_concoction_can_consume_sulphur_flasks"]=7644, + ["local_connectivity_of_sockets_+%"]=1683, + ["local_consecrate_ground_on_flask_use_radius"]=669, + ["local_critical_strike_chance"]=967, + ["local_critical_strike_chance_+%"]=1383, + ["local_critical_strike_chance_+%_if_item_corrupted"]=7645, + ["local_critical_strike_chance_+%_per_4%_quality"]=7646, + ["local_critical_strike_multiplier_+"]=968, + ["local_crits_have_culling_strike"]=7647, + ["local_crossbow_no_ammo_skills_and_give_alternate_grenade_default_attack"]=7648, + ["local_crush_on_hit"]=7649, + ["local_cull_frozen_enemies_on_hit"]=7650, + ["local_culling_strike"]=7651, + ["local_culling_strike_if_crit_recently"]=7652, + ["local_culling_strike_vs_bleeding_enemies"]=7653, + ["local_damage_+%_if_item_corrupted"]=7654, + ["local_damage_roll_always_min_or_max"]=7655, + ["local_damage_taken_+%_if_item_corrupted"]=7656, + ["local_destroy_corpses_with_critical_strikes"]=7657, + ["local_dexterity_per_2%_quality"]=7658, + ["local_dexterity_requirement_+"]=841, + ["local_dexterity_requirement_+%"]=842, + ["local_disable_gem_experience_gain"]=1680, + ["local_disable_rare_mod_on_hit_%_chance"]=7659, + ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=576, + ["local_display_aura_allies_have_culling_strike"]=2335, + ["local_display_aura_allies_have_increased_item_rarity_+%"]=1488, + ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2487, + ["local_display_aura_curse_effect_on_self_+%"]=2496, + ["local_display_aura_damage_+%"]=2495, + ["local_display_aura_damage_+%_allies_only"]=2685, + ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=426, + ["local_display_cast_animate_weapon_on_kill_%_chance"]=577, + ["local_display_cast_cold_aegis_on_gain_skill"]=578, + ["local_display_cast_elemental_aegis_on_gain_skill"]=579, + ["local_display_cast_fire_aegis_on_gain_skill"]=580, + ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=520, + ["local_display_cast_level_X_consecrate_on_crit"]=521, + ["local_display_cast_level_x_manifest_dancing_dervish"]=3067, + ["local_display_cast_level_x_shock_ground_when_hit"]=522, + ["local_display_cast_lightning_aegis_on_gain_skill"]=581, + ["local_display_cast_lightning_on_critical_strike"]=582, + ["local_display_cast_physical_aegis_on_gain_skill"]=583, + ["local_display_cast_primal_aegis_on_gain_skill"]=584, + ["local_display_cast_summon_arbalists_on_gain_skill"]=585, + ["local_display_cast_triggerbots_on_gain_skill"]=586, + ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7660, + ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7661, + ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=7662, + ["local_display_fire_and_cold_resist_debuff"]=7663, + ["local_display_fire_burst_on_hit_%"]=587, + ["local_display_gain_fragile_growth_each_second"]=4080, + ["local_display_gain_power_charge_on_spending_mana"]=7664, + ["local_display_grant_level_x_petrification_statue"]=523, + ["local_display_grant_level_x_snipe_skill"]=76, + ["local_display_grants_level_X_envy"]=511, + ["local_display_grants_level_X_queens_demand_skill"]=567, + ["local_display_grants_level_X_reckoning"]=512, + ["local_display_grants_level_X_spell_aegis"]=77, + ["local_display_grants_level_X_vengeance"]=486, + ["local_display_grants_level_x_blood_offering_skill"]=525, + ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=526, + ["local_display_grants_level_x_curse_pillar_skill"]=527, + ["local_display_grants_level_x_despair"]=487, + ["local_display_grants_level_x_hidden_blade"]=588, + ["local_display_grants_level_x_summon_stone_golem"]=485, + ["local_display_grants_level_x_wintertide_brand"]=528, + ["local_display_grants_skill_abyssal_cry_level"]=529, + ["local_display_grants_skill_accuracy_crits_aura_level"]=530, + ["local_display_grants_skill_anger_level"]=506, + ["local_display_grants_skill_bear_trap_level"]=484, + ["local_display_grants_skill_bird_aspect_level"]=531, + ["local_display_grants_skill_blight_level"]=513, + ["local_display_grants_skill_blood_sacrament_level"]=499, + ["local_display_grants_skill_bone_armour"]=532, + ["local_display_grants_skill_brand_detonate_level"]=533, + ["local_display_grants_skill_call_of_steel"]=534, + ["local_display_grants_skill_cat_aspect_level"]=535, + ["local_display_grants_skill_clarity_level"]=498, + ["local_display_grants_skill_conductivity_level"]=493, + ["local_display_grants_skill_crab_aspect_level"]=536, + ["local_display_grants_skill_dash_level"]=537, + ["local_display_grants_skill_death_aura_level"]=518, + ["local_display_grants_skill_death_wish_level"]=538, + ["local_display_grants_skill_decoy_totem_level"]=539, + ["local_display_grants_skill_determination_level"]=507, + ["local_display_grants_skill_discipline_level"]=510, + ["local_display_grants_skill_doryanis_touch_level"]=516, + ["local_display_grants_skill_elemental_weakness_level"]=515, + ["local_display_grants_skill_embrace_madness_level"]=540, + ["local_display_grants_skill_enduring_cry_level"]=541, + ["local_display_grants_skill_flammability_level"]=491, + ["local_display_grants_skill_frostbite_level"]=494, + ["local_display_grants_skill_frostblink_level"]=481, + ["local_display_grants_skill_frostbolt_level"]=7665, + ["local_display_grants_skill_gluttony_of_elements_level"]=502, + ["local_display_grants_skill_grace_level"]=508, + ["local_display_grants_skill_haste_level"]=496, + ["local_display_grants_skill_hatred_level"]=505, + ["local_display_grants_skill_herald_of_agony_level"]=542, + ["local_display_grants_skill_herald_of_ash_level"]=543, + ["local_display_grants_skill_herald_of_ice_level"]=544, + ["local_display_grants_skill_herald_of_purity_level"]=545, + ["local_display_grants_skill_herald_of_thunder_level"]=546, + ["local_display_grants_skill_icestorm_level"]=519, + ["local_display_grants_skill_intimidating_cry_level"]=547, + ["local_display_grants_skill_lightning_warp_level"]=548, + ["local_display_grants_skill_malevolence_level"]=549, + ["local_display_grants_skill_mirage_chieftain"]=550, + ["local_display_grants_skill_pride_level"]=551, + ["local_display_grants_skill_projectile_weakness_level"]=514, + ["local_display_grants_skill_purity_level"]=501, + ["local_display_grants_skill_purity_of_cold_level"]=488, + ["local_display_grants_skill_purity_of_fire_level"]=482, + ["local_display_grants_skill_purity_of_lightning_level"]=490, + ["local_display_grants_skill_rallying_cry_level"]=552, + ["local_display_grants_skill_scorching_ray_level"]=509, + ["local_display_grants_skill_smite_level"]=553, + ["local_display_grants_skill_spider_aspect_level"]=554, + ["local_display_grants_skill_temporal_chains_level"]=495, + ["local_display_grants_skill_touch_of_fire_level"]=555, + ["local_display_grants_skill_unhinge_level"]=556, + ["local_display_grants_skill_vaal_impurity_of_fire_level"]=557, + ["local_display_grants_skill_vaal_impurity_of_ice_level"]=558, + ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=559, + ["local_display_grants_skill_vampiric_icon_level"]=560, + ["local_display_grants_skill_vitality_level"]=500, + ["local_display_grants_skill_vulnerability_level"]=517, + ["local_display_grants_skill_wrath_level"]=503, + ["local_display_grants_skill_zealotry_level"]=561, + ["local_display_grants_summon_beast_companion"]=489, + ["local_display_has_additional_implicit_mod"]=497, + ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3120, + ["local_display_illusory_warp_level"]=483, + ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1489, + ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7939, + ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3069, + ["local_display_manifest_dancing_dervish_disables_weapons"]=3068, + ["local_display_minions_grant_onslaught"]=3070, + ["local_display_mod_aura_mana_regeration_rate_+%"]=7666, + ["local_display_molten_burst_on_melee_hit_%"]=589, + ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7667, + ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7668, + ["local_display_nearby_allies_critical_strike_multiplier_+"]=7669, + ["local_display_nearby_allies_extra_damage_rolls"]=7670, + ["local_display_nearby_allies_have_fortify"]=7671, + ["local_display_nearby_enemies_all_resistances_%"]=2757, + ["local_display_nearby_enemies_are_blinded"]=3116, + ["local_display_nearby_enemies_are_chilled"]=7672, + ["local_display_nearby_enemies_are_covered_in_ash"]=7673, + ["local_display_nearby_enemies_are_crushed"]=3117, + ["local_display_nearby_enemies_are_intimidated"]=7674, + ["local_display_nearby_enemies_cannot_crit"]=7675, + ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3121, + ["local_display_nearby_enemies_flask_charges_granted_+%"]=3122, + ["local_display_nearby_enemies_have_fire_exposure"]=7676, + ["local_display_nearby_enemies_have_malediction"]=3118, + ["local_display_nearby_enemies_movement_speed_+%"]=3123, + ["local_display_nearby_enemies_scorched"]=3119, + ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3124, + ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3879, + ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2913, + ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7677, + ["local_display_nearby_enemy_cold_damage_resistance_%"]=7678, + ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7679, + ["local_display_nearby_enemy_fire_damage_resistance_%"]=7680, + ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7681, + ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7682, + ["local_display_nearby_enemy_physical_damage_taken_+%"]=7683, + ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4103, + ["local_display_raise_spider_on_kill_%_chance"]=590, + ["local_display_self_crushed"]=7684, + ["local_display_socketed_attack_damage_+%_final"]=427, + ["local_display_socketed_attacks_additional_critical_strike_chance"]=428, + ["local_display_socketed_attacks_critical_strike_multiplier_+"]=429, + ["local_display_socketed_attacks_mana_cost_+"]=430, + ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=476, + ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=405, + ["local_display_socketed_gems_additional_critical_strike_chance_%"]=423, + ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=431, + ["local_display_socketed_gems_chain_X_additional_times"]=422, + ["local_display_socketed_gems_curse_auras_also_affect_you"]=432, + ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=433, + ["local_display_socketed_gems_damage_over_time_+%_final"]=465, + ["local_display_socketed_gems_elemental_damage_+%_final"]=434, + ["local_display_socketed_gems_exposure_on_hit"]=435, + ["local_display_socketed_gems_get_added_chaos_damage_level"]=358, + ["local_display_socketed_gems_get_added_fire_damage_level"]=361, + ["local_display_socketed_gems_get_added_lightning_damage_level"]=366, + ["local_display_socketed_gems_get_additional_accuracy_level"]=375, + ["local_display_socketed_gems_get_blind_level"]=369, + ["local_display_socketed_gems_get_blood_magic_level"]=359, + ["local_display_socketed_gems_get_cast_on_crit_level"]=371, + ["local_display_socketed_gems_get_cast_on_death_level"]=373, + ["local_display_socketed_gems_get_cast_when_stunned_level"]=372, + ["local_display_socketed_gems_get_chance_to_bleed_level"]=379, + ["local_display_socketed_gems_get_cold_to_fire_level"]=362, + ["local_display_socketed_gems_get_concentrated_area_level"]=353, + ["local_display_socketed_gems_get_curse_reflection"]=420, + ["local_display_socketed_gems_get_echo_level"]=383, + ["local_display_socketed_gems_get_elemental_proliferation_level"]=365, + ["local_display_socketed_gems_get_faster_attacks_level"]=368, + ["local_display_socketed_gems_get_faster_cast_level"]=389, + ["local_display_socketed_gems_get_faster_projectiles_level"]=377, + ["local_display_socketed_gems_get_fire_penetration_level"]=364, + ["local_display_socketed_gems_get_flee_level"]=388, + ["local_display_socketed_gems_get_fork_level"]=381, + ["local_display_socketed_gems_get_generosity_level"]=385, + ["local_display_socketed_gems_get_increased_area_level"]=205, + ["local_display_socketed_gems_get_increased_critical_damage_level"]=380, + ["local_display_socketed_gems_get_increased_duration_level"]=360, + ["local_display_socketed_gems_get_iron_will_level"]=390, + ["local_display_socketed_gems_get_item_quantity_+%"]=419, + ["local_display_socketed_gems_get_life_leech_level"]=378, + ["local_display_socketed_gems_get_mana_multplier_%"]=415, + ["local_display_socketed_gems_get_melee_physical_damage_level"]=367, + ["local_display_socketed_gems_get_melee_splash_level"]=370, + ["local_display_socketed_gems_get_multistrike_level"]=376, + ["local_display_socketed_gems_get_pierce_level"]=398, + ["local_display_socketed_gems_get_reduced_mana_cost_level"]=384, + ["local_display_socketed_gems_get_remote_mine_level"]=387, + ["local_display_socketed_gems_get_spell_totem_level"]=363, + ["local_display_socketed_gems_get_stun_level"]=374, + ["local_display_socketed_gems_get_trap_level"]=354, + ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=382, + ["local_display_socketed_gems_have_blood_magic"]=412, + ["local_display_socketed_gems_have_chance_to_flee_%"]=418, + ["local_display_socketed_gems_have_elemental_equilibrium"]=466, + ["local_display_socketed_gems_have_iron_will"]=421, + ["local_display_socketed_gems_have_mana_reservation_+%"]=413, + ["local_display_socketed_gems_have_number_of_additional_projectiles"]=469, + ["local_display_socketed_gems_have_secrets_of_suffering"]=468, + ["local_display_socketed_gems_mana_cost_-%"]=436, + ["local_display_socketed_gems_maximum_added_fire_damage"]=437, + ["local_display_socketed_gems_minimum_added_fire_damage"]=437, + ["local_display_socketed_gems_projectile_damage_+%_final"]=438, + ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=439, + ["local_display_socketed_gems_projectiles_nova"]=471, + ["local_display_socketed_gems_skill_effect_duration_+%"]=473, + ["local_display_socketed_gems_supported_by_X_lesser_poison"]=408, + ["local_display_socketed_gems_supported_by_X_vile_toxins"]=407, + ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=206, + ["local_display_socketed_gems_supported_by_level_x_archmage"]=207, + ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=208, + ["local_display_socketed_gems_supported_by_level_x_barrage"]=209, + ["local_display_socketed_gems_supported_by_level_x_behead"]=210, + ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=211, + ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=212, + ["local_display_socketed_gems_supported_by_level_x_brutality"]=213, + ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=214, + ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=215, + ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=216, + ["local_display_socketed_gems_supported_by_level_x_chain"]=217, + ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=218, + ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=219, + ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=308, + ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=220, + ["local_display_socketed_gems_supported_by_level_x_close_combat"]=221, + ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=355, + ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=222, + ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=223, + ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=224, + ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=225, + ["local_display_socketed_gems_supported_by_level_x_deathmark"]=226, + ["local_display_socketed_gems_supported_by_level_x_decay"]=227, + ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=228, + ["local_display_socketed_gems_supported_by_level_x_efficacy"]=229, + ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=230, + ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=231, + ["local_display_socketed_gems_supported_by_level_x_empower"]=232, + ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=411, + ["local_display_socketed_gems_supported_by_level_x_enhance"]=233, + ["local_display_socketed_gems_supported_by_level_x_enlighten"]=234, + ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=235, + ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=236, + ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=237, + ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=238, + ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=239, + ["local_display_socketed_gems_supported_by_level_x_fortify"]=386, + ["local_display_socketed_gems_supported_by_level_x_fragility"]=240, + ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=241, + ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=242, + ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=243, + ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=244, + ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=245, + ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=246, + ["local_display_socketed_gems_supported_by_level_x_immolate"]=247, + ["local_display_socketed_gems_supported_by_level_x_impale"]=248, + ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=249, + ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=250, + ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=251, + ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=252, + ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=253, + ["local_display_socketed_gems_supported_by_level_x_intensify"]=254, + ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=255, + ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=256, + ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=257, + ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=258, + ["local_display_socketed_gems_supported_by_level_x_lifetap"]=259, + ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=260, + ["local_display_socketed_gems_supported_by_level_x_maim"]=261, + ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=262, + ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=263, + ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=264, + ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=265, + ["local_display_socketed_gems_supported_by_level_x_minefield"]=266, + ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=267, + ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=268, + ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=356, + ["local_display_socketed_gems_supported_by_level_x_multicast"]=269, + ["local_display_socketed_gems_supported_by_level_x_nightblade"]=270, + ["local_display_socketed_gems_supported_by_level_x_onslaught"]=271, + ["local_display_socketed_gems_supported_by_level_x_overcharge"]=272, + ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=273, + ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=274, + ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=275, + ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=276, + ["local_display_socketed_gems_supported_by_level_x_point_blank"]=277, + ["local_display_socketed_gems_supported_by_level_x_poison"]=278, + ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=279, + ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=280, + ["local_display_socketed_gems_supported_by_level_x_pulverise"]=281, + ["local_display_socketed_gems_supported_by_level_x_rage"]=282, + ["local_display_socketed_gems_supported_by_level_x_rain"]=283, + ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=284, + ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=285, + ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=286, + ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=287, + ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=288, + ["local_display_socketed_gems_supported_by_level_x_ruthless"]=289, + ["local_display_socketed_gems_supported_by_level_x_second_wind"]=290, + ["local_display_socketed_gems_supported_by_level_x_shockwave"]=291, + ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=292, + ["local_display_socketed_gems_supported_by_level_x_snipe"]=293, + ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=294, + ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=295, + ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=296, + ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=297, + ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=298, + ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=299, + ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=300, + ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=301, + ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=357, + ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=302, + ["local_display_socketed_gems_supported_by_level_x_trinity"]=303, + ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=304, + ["local_display_socketed_gems_supported_by_level_x_unleash"]=305, + ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=306, + ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=307, + ["local_display_socketed_gems_supported_by_pierce_level"]=397, + ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=403, + ["local_display_socketed_gems_supported_by_x_cold_penetration"]=401, + ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=410, + ["local_display_socketed_gems_supported_by_x_hypothermia"]=399, + ["local_display_socketed_gems_supported_by_x_ice_bite"]=400, + ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=395, + ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=394, + ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=392, + ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=396, + ["local_display_socketed_gems_supported_by_x_innervate_level"]=406, + ["local_display_socketed_gems_supported_by_x_knockback_level"]=391, + ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=393, + ["local_display_socketed_gems_supported_by_x_mana_leech"]=402, + ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=404, + ["local_display_socketed_golem_attack_and_cast_speed_+%"]=176, + ["local_display_socketed_golem_buff_effect_+%"]=177, + ["local_display_socketed_golem_chance_to_taunt_%"]=178, + ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=179, + ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=180, + ["local_display_socketed_melee_gems_have_area_radius_+%"]=416, + ["local_display_socketed_movement_skills_have_no_mana_cost"]=440, + ["local_display_socketed_non_curse_aura_gems_effect_+%"]=467, + ["local_display_socketed_projectile_spells_duration_+%_final"]=474, + ["local_display_socketed_skills_attack_speed_+%"]=441, + ["local_display_socketed_skills_cast_speed_+%"]=442, + ["local_display_socketed_skills_deal_double_damage"]=443, + ["local_display_socketed_skills_fork"]=444, + ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=417, + ["local_display_socketed_spell_damage_+%_final"]=445, + ["local_display_socketed_spells_additional_critical_strike_chance"]=446, + ["local_display_socketed_spells_additional_projectiles"]=470, + ["local_display_socketed_spells_critical_strike_multiplier_+"]=447, + ["local_display_socketed_spells_mana_cost_+%"]=448, + ["local_display_socketed_spells_projectiles_circle"]=472, + ["local_display_socketed_trap_skills_create_smoke_cloud"]=475, + ["local_display_socketed_travel_skills_damage_+%_final"]=449, + ["local_display_socketed_triggered_skills_deal_double_damage"]=309, + ["local_display_socketed_vaal_skills_area_of_effect_+%"]=450, + ["local_display_socketed_vaal_skills_aura_effect_+%"]=451, + ["local_display_socketed_vaal_skills_damage_+%_final"]=452, + ["local_display_socketed_vaal_skills_effect_duration_+%"]=453, + ["local_display_socketed_vaal_skills_elusive_on_use"]=454, + ["local_display_socketed_vaal_skills_extra_damage_rolls"]=455, + ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=456, + ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=457, + ["local_display_socketed_vaal_skills_projectile_speed_+%"]=458, + ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=459, + ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=460, + ["local_display_socketed_vaal_skills_store_uses_+"]=461, + ["local_display_socketed_warcry_skills_cooldown_use_+"]=462, + ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=463, + ["local_display_summon_harbinger_x_on_equip"]=492, + ["local_display_summon_raging_spirit_on_kill_%"]=591, + ["local_display_summon_wolf_on_kill_%"]=592, + ["local_display_supported_by_level_10_controlled_destruction"]=310, + ["local_display_supported_by_level_10_intensify"]=311, + ["local_display_supported_by_level_10_spell_echo"]=312, + ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=313, + ["local_display_supported_by_level_x_awakened_added_cold_damage"]=314, + ["local_display_supported_by_level_x_awakened_added_fire_damage"]=315, + ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=316, + ["local_display_supported_by_level_x_awakened_ancestral_call"]=317, + ["local_display_supported_by_level_x_awakened_arrow_nova"]=318, + ["local_display_supported_by_level_x_awakened_blasphemy"]=319, + ["local_display_supported_by_level_x_awakened_brutality"]=320, + ["local_display_supported_by_level_x_awakened_burning_damage"]=321, + ["local_display_supported_by_level_x_awakened_cast_on_crit"]=322, + ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=323, + ["local_display_supported_by_level_x_awakened_chain"]=324, + ["local_display_supported_by_level_x_awakened_cold_penetration"]=325, + ["local_display_supported_by_level_x_awakened_controlled_destruction"]=326, + ["local_display_supported_by_level_x_awakened_curse_on_hit"]=327, + ["local_display_supported_by_level_x_awakened_deadly_ailments"]=328, + ["local_display_supported_by_level_x_awakened_elemental_focus"]=329, + ["local_display_supported_by_level_x_awakened_empower"]=330, + ["local_display_supported_by_level_x_awakened_enhance"]=331, + ["local_display_supported_by_level_x_awakened_enlighten"]=332, + ["local_display_supported_by_level_x_awakened_fire_penetration"]=333, + ["local_display_supported_by_level_x_awakened_fork"]=334, + ["local_display_supported_by_level_x_awakened_generosity"]=335, + ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=336, + ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=337, + ["local_display_supported_by_level_x_awakened_lightning_penetration"]=338, + ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=339, + ["local_display_supported_by_level_x_awakened_melee_splash"]=340, + ["local_display_supported_by_level_x_awakened_minion_damage"]=341, + ["local_display_supported_by_level_x_awakened_multistrike"]=342, + ["local_display_supported_by_level_x_awakened_spell_cascade"]=343, + ["local_display_supported_by_level_x_awakened_spell_echo"]=344, + ["local_display_supported_by_level_x_awakened_swift_affliction"]=345, + ["local_display_supported_by_level_x_awakened_unbound_ailments"]=346, + ["local_display_supported_by_level_x_awakened_unleash"]=347, + ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=348, + ["local_display_supported_by_level_x_awakened_void_manipulation"]=349, + ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=350, + ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=464, + ["local_display_trigger_commandment_of_inferno_on_crit_%"]=593, + ["local_display_trigger_corpse_walk_on_equip_level"]=594, + ["local_display_trigger_death_walk_on_equip_level"]=596, + ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=597, + ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=598, + ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=599, + ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=600, + ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=601, + ["local_display_trigger_level_20_shade_form_when_hit_%"]=602, + ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=562, + ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=603, + ["local_display_trigger_level_X_atziri_flameblast"]=604, + ["local_display_trigger_level_X_atziri_storm_call"]=605, + ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=524, + ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=563, + ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=606, + ["local_display_trigger_level_X_offering_every_5_seconds"]=607, + ["local_display_trigger_level_X_shield_shatter_on_block"]=608, + ["local_display_trigger_level_X_void_gaze_on_skill_use"]=564, + ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=595, + ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=609, + ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=610, + ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=611, + ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=612, + ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=613, + ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=614, + ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=565, + ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=615, + ["local_display_trigger_level_x_reflection_skill_on_equip"]=616, + ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=617, + ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=618, + ["local_display_trigger_level_x_stalking_pustule_on_kill"]=619, + ["local_display_trigger_level_x_storm_cascade_on_attack"]=566, + ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=620, + ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=635, + ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=621, + ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=623, + ["local_display_trigger_summon_infernal_familiar_when_allocated"]=7685, + ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=622, + ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=624, + ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=625, + ["local_display_trigger_void_sphere_on_kill_%_chance"]=626, + ["local_display_triggers_corpse_cloud_on_12_units_travelled"]=7686, + ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=7687, + ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=7688, + ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=7689, + ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=7690, + ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7691, + ["local_display_use_level_X_abyssal_cry_on_hit"]=627, + ["local_double_damage_to_chilled_enemies"]=3457, + ["local_double_damage_with_attacks"]=7692, + ["local_double_damage_with_attacks_chance_%"]=7693, + ["local_double_hit_damage_stun_build_up"]=7694, + ["local_edict_declaration_gain_per_mod_disabled"]=7695, + ["local_elemental_damage_+%_per_2%_quality"]=7696, + ["local_elemental_penetration_%"]=3458, + ["local_energy_shield"]=866, + ["local_energy_shield_+%"]=872, + ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7697, + ["local_evasion_and_energy_shield_+%"]=875, + ["local_evasion_rating_+%"]=871, + ["local_evasion_rating_and_energy_shield"]=7698, + ["local_explicit_elemental_damage_mod_effect_+%"]=70, + ["local_explicit_minion_mod_effect_+%"]=71, + ["local_explicit_mod_effect_+%"]=74, + ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=72, + ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7699, + ["local_extra_max_charges"]=1097, + ["local_extra_socket"]=1678, + ["local_fire_penetration_%"]=3459, + ["local_fire_resistance_%_per_2%_quality"]=7700, + ["local_flask_accuracy_rating_+%_during_effect"]=738, + ["local_flask_adaptations_apply_to_all_elements_during_effect"]=737, + ["local_flask_additional_physical_damage_reduction_%"]=759, + ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=689, + ["local_flask_adds_knockback_during_flask_effect"]=760, + ["local_flask_adds_knockback_while_healing"]=747, + ["local_flask_always_drinking"]=640, + ["local_flask_amount_to_recover_+%"]=953, + ["local_flask_amount_to_recover_+%_when_on_low_life"]=954, + ["local_flask_amount_to_recover_+%_when_on_low_mana"]=952, + ["local_flask_area_of_consecrated_ground_+%"]=671, + ["local_flask_area_of_effect_+%_during_flask_effect"]=761, + ["local_flask_armour_+%_while_healing"]=734, + ["local_flask_attack_speed_+%_while_healing"]=739, + ["local_flask_avoid_stun_chance_%_during_flask_effect"]=762, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=690, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=691, + ["local_flask_cannot_be_stunned_during_flask_effect"]=763, + ["local_flask_cannot_be_used_manually"]=707, + ["local_flask_cannot_gain_charges_during_flask_effect"]=831, + ["local_flask_cast_speed_+%_while_healing"]=740, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=692, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=693, + ["local_flask_chilled_ground_on_flask_use_radius"]=670, + ["local_flask_consume_charges_used_+%_when_used"]=1096, + ["local_flask_consume_extra_max_charges_when_used"]=1097, + ["local_flask_consume_flask_duration_+%_when_used"]=955, + ["local_flask_consume_flask_effect_+%_when_used"]=733, + ["local_flask_consumes_max_charges_on_use"]=672, + ["local_flask_consumes_x_endurance_charges_on_use"]=673, + ["local_flask_consumes_x_frenzy_charges_on_use"]=674, + ["local_flask_consumes_x_power_charges_on_use"]=675, + ["local_flask_critical_strike_chance_+%_during_flask_effect"]=765, + ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=764, + ["local_flask_culling_strike_during_flask_effect"]=766, + ["local_flask_damage_taken_goes_to_life_over_4_seconds_%_during_effect"]=767, + ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=666, + ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=659, + ["local_flask_deciseconds_to_recover"]=655, + ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=705, + ["local_flask_dispels_freeze_and_chill"]=704, + ["local_flask_duration_+%"]=955, + ["local_flask_duration_+%_final"]=656, + ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=768, + ["local_flask_effect_+%"]=733, + ["local_flask_effect_ends_when_hit_by_player"]=660, + ["local_flask_effect_not_removed_at_full_life"]=661, + ["local_flask_effect_not_removed_at_full_mana"]=662, + ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=822, + ["local_flask_energy_shield_+%_while_healing"]=736, + ["local_flask_evasion_+%_while_healing"]=735, + ["local_flask_gain_X_charges_every_minute"]=641, + ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=642, + ["local_flask_gain_X_charges_when_hit"]=643, + ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=676, + ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=769, + ["local_flask_gain_endurance_charges_on_use"]=677, + ["local_flask_gain_frenzy_charges_on_use"]=678, + ["local_flask_gain_power_charges_on_use"]=679, + ["local_flask_gain_x_rage_when_hit_during_effect"]=770, + ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=680, + ["local_flask_gain_x_vaal_souls_on_use"]=681, + ["local_flask_grant_perfect_timing_window_+%_during_flask_effect"]=771, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=702, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=703, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=694, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=695, + ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=772, + ["local_flask_immune_to_damage"]=773, + ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=774, + ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=696, + ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=697, + ["local_flask_immune_to_poison_during_flask_effect"]=775, + ["local_flask_immune_to_shock_during_flask_effect"]=776, + ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=682, + ["local_flask_is_petrified"]=777, + ["local_flask_item_found_rarity_+%_during_flask_effect"]=778, + ["local_flask_life_gain_on_skill_use_%_mana_cost"]=753, + ["local_flask_life_leech_from_physical_attack_damage_permyriad_while_healing"]=744, + ["local_flask_life_leech_is_instant_during_flask_effect"]=779, + ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=653, + ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=780, + ["local_flask_life_to_recover"]=651, + ["local_flask_life_to_recover_+%"]=956, + ["local_flask_life_to_recover_+%_final"]=652, + ["local_flask_lose_all_charges_on_entering_new_area"]=650, + ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=683, + ["local_flask_mana_leech_from_physical_attack_damage_permyriad_while_healing"]=746, + ["local_flask_mana_to_recover"]=654, + ["local_flask_mana_to_recover_+%"]=957, + ["local_flask_minion_heal_%"]=958, + ["local_flask_movement_speed_+%_while_healing"]=741, + ["local_flask_no_inherent_rage_loss_during_effect"]=781, + ["local_flask_no_mana_recovery_during_effect"]=782, + ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=783, + ["local_flask_number_of_additional_projectiles_during_flask_effect"]=784, + ["local_flask_poison_immunity_if_poisoned"]=698, + ["local_flask_poison_immunity_if_poisoned_s"]=699, + ["local_flask_prevents_death_while_healing"]=828, + ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=825, + ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=823, + ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=824, + ["local_flask_recover_instantly_when_on_low_life"]=657, + ["local_flask_recover_instantly_when_on_low_mana"]=658, + ["local_flask_recovers_instantly"]=959, + ["local_flask_recovery_amount_%_to_recover_instantly"]=960, + ["local_flask_recovery_occurs_instantly_at_end_of_flask_effect"]=663, + ["local_flask_recovery_speed_+%"]=961, + ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=785, + ["local_flask_remove_curses_on_use"]=688, + ["local_flask_removes_%_maximum_energy_shield_on_use"]=665, + ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=664, + ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=962, + ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=963, + ["local_flask_resistances_+%_while_healing"]=743, + ["local_flask_shock_immunity_if_shocked"]=700, + ["local_flask_shock_immunity_if_shocked_s"]=701, + ["local_flask_skill_mana_cost_+%_during_flask_effect"]=786, + ["local_flask_stun_recovery_+%_while_healing"]=742, + ["local_flask_taunt_enemies_on_use_radius"]=684, + ["local_flask_use_causes_area_knockback"]=685, + ["local_flask_use_causes_monster_flee_chance_%"]=686, + ["local_flask_use_on_adjacent_flask_use"]=709, + ["local_flask_use_on_affected_by_bleed"]=710, + ["local_flask_use_on_affected_by_chill"]=711, + ["local_flask_use_on_affected_by_freeze"]=712, + ["local_flask_use_on_affected_by_ignite"]=713, + ["local_flask_use_on_affected_by_poison"]=714, + ["local_flask_use_on_affected_by_shock"]=715, + ["local_flask_use_on_affected_by_slow"]=716, + ["local_flask_use_on_chaos_damage_taken"]=717, + ["local_flask_use_on_cold_damage_taken"]=718, + ["local_flask_use_on_damage_blocked"]=719, + ["local_flask_use_on_fire_damage_taken"]=720, + ["local_flask_use_on_flask_effect_ended"]=721, + ["local_flask_use_on_full_charges"]=722, + ["local_flask_use_on_guard_skill_expired"]=723, + ["local_flask_use_on_guard_skill_used"]=724, + ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=725, + ["local_flask_use_on_killing_rare_or_unique_enemy"]=726, + ["local_flask_use_on_lightning_damage_taken"]=727, + ["local_flask_use_on_perfect_timing"]=728, + ["local_flask_use_on_stunned"]=729, + ["local_flask_use_on_taking_savage_hit"]=730, + ["local_flask_use_on_travel_skill_used"]=731, + ["local_flask_use_on_using_a_life_flask"]=732, + ["local_flask_vaal_souls_gained_per_minute_during_effect"]=787, + ["local_flask_zealots_oath"]=834, + ["local_force_corruption_outcome_two_enchants"]=7701, + ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7702, + ["local_gain_X_rage_on_hit"]=7703, + ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7704, + ["local_gain_shrine_buff_every_10_seconds"]=7705, + ["local_gem_experience_gain_+%"]=1681, + ["local_gem_level_+"]=141, + ["local_global_armour_evasion_energy_shield_+%_per_rune_or_soul_core"]=7706, + ["local_grant_eldritch_battery_during_flask_effect"]=835, + ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4095, + ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2765, + ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2764, + ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2766, + ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2765, + ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2764, + ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2766, + ["local_hand_wraps_energy_shield_per_level"]=867, + ["local_hand_wraps_evasion_rating_per_level"]=865, + ["local_hand_wraps_ward_per_level"]=870, + ["local_has_X_abyss_sockets"]=79, + ["local_has_X_sockets"]=80, + ["local_has_no_sockets"]=78, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes"]=7707, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity"]=7708, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence"]=7709, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_strength"]=7710, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute"]=7711, + ["local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%"]=7712, + ["local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%"]=7713, + ["local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%"]=7714, + ["local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%"]=7715, + ["local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%"]=7716, + ["local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%"]=7717, + ["local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%"]=7718, + ["local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%"]=7719, + ["local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%"]=7720, + ["local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%"]=7721, + ["local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%"]=7722, + ["local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%"]=7723, + ["local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%"]=7724, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_1"]=7725, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_2"]=7726, + ["local_hit_causes_monster_flee_%"]=1799, + ["local_hit_damage_+%_vs_frozen_enemies"]=4053, + ["local_hit_damage_+%_vs_ignited_enemies"]=4052, + ["local_hit_damage_+%_vs_shocked_enemies"]=4054, + ["local_hit_damage_stun_multiplier_+%"]=1075, + ["local_hits_always_inflict_elemental_ailments"]=4051, + ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7727, + ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7728, + ["local_hits_with_this_weapon_ignore_poison_limit"]=7729, + ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7730, + ["local_idols_gain_additional_socketable_mods"]=7731, + ["local_ignite_effect_+%_final_with_this_weapon"]=7732, + ["local_immune_to_curses_if_item_corrupted"]=7733, + ["local_implicit_mod_cannot_be_changed"]=48, + ["local_implicit_stat_magnitude_+%"]=75, + ["local_inflict_exposure_on_hit_%_chance"]=7734, + ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7735, + ["local_inflict_x_stacks_of_gruelling_madness_on_hit"]=7736, + ["local_intelligence_per_2%_quality"]=7737, + ["local_intelligence_requirement_+"]=843, + ["local_intelligence_requirement_+%"]=844, + ["local_is_alternate_tree_jewel"]=10622, + ["local_is_max_quality"]=639, + ["local_is_survival_jewel"]=10623, + ["local_item_additional_skill_slots"]=81, + ["local_item_allow_modification_while_corrupted"]=38, + ["local_item_benefit_socketable_as_if_body_armour"]=7738, + ["local_item_benefit_socketable_as_if_boots"]=7739, + ["local_item_benefit_socketable_as_if_gloves"]=7740, + ["local_item_benefit_socketable_as_if_helmet"]=7741, + ["local_item_benefit_socketable_as_if_shield"]=7742, + ["local_item_can_be_instilled"]=10739, + ["local_item_can_have_x_additional_enchantments"]=40, + ["local_item_can_roll_all_influences"]=7743, + ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2363, + ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7744, + ["local_item_implicit_modifier_limit"]=41, + ["local_item_quality_+"]=7745, + ["local_item_sell_price_doubled"]=7746, + ["local_item_stats_are_doubled_in_breach"]=7747, + ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=36, + ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7748, + ["local_jewel_can_allocate_passives_from_dex_start"]=7749, + ["local_jewel_can_allocate_passives_from_dexint_start"]=7750, + ["local_jewel_can_allocate_passives_from_int_start"]=7751, + ["local_jewel_can_allocate_passives_from_str_start"]=7752, + ["local_jewel_can_allocate_passives_from_strdex_start"]=7753, + ["local_jewel_can_allocate_passives_from_strint_start"]=7754, + ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7755, + ["local_jewel_disable_combust_with_40_strength_in_radius"]=7756, + ["local_jewel_display_radius_change"]=7757, + ["local_jewel_expansion_jewels_count"]=7758, + ["local_jewel_expansion_jewels_count_override"]=7759, + ["local_jewel_expansion_keystone_disciple_of_kitava"]=7760, + ["local_jewel_expansion_keystone_hollow_palm_technique"]=7761, + ["local_jewel_expansion_keystone_kineticism"]=7762, + ["local_jewel_expansion_keystone_lone_messenger"]=7763, + ["local_jewel_expansion_keystone_natures_patience"]=7764, + ["local_jewel_expansion_keystone_pitfighter"]=7765, + ["local_jewel_expansion_keystone_secrets_of_suffering"]=7766, + ["local_jewel_expansion_keystone_veterans_awareness"]=7767, + ["local_jewel_expansion_passive_node_count"]=4128, + ["local_jewel_expansion_passive_node_index"]=7768, + ["local_jewel_fireball_cannot_ignite"]=7769, + ["local_jewel_fireball_chance_to_scorch_%"]=7770, + ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7772, + ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7771, + ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7774, + ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7773, + ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7775, + ["local_jewel_nearby_passives_dex_to_int"]=2806, + ["local_jewel_nearby_passives_dex_to_str"]=2805, + ["local_jewel_nearby_passives_int_to_dex"]=2808, + ["local_jewel_nearby_passives_int_to_str"]=2807, + ["local_jewel_nearby_passives_str_to_dex"]=2803, + ["local_jewel_nearby_passives_str_to_int"]=2804, + ["local_jewel_notable_passive_in_radius_effect_+%"]=7776, + ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7777, + ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7778, + ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7779, + ["local_jewel_small_and_notable_passive_in_radius_effect_+%"]=7780, + ["local_jewel_small_passive_in_radius_effect_+%"]=7781, + ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7782, + ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7783, + ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7784, + ["local_jewel_transform_damage_increases_from_cold_fire_to_lightning"]=7785, + ["local_jewel_transform_damage_increases_from_cold_lightning_to_fire"]=7786, + ["local_jewel_transform_damage_increases_from_fire_lightning_to_cold"]=7787, + ["local_jewel_variable_ring_radius_value"]=39, + ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7788, + ["local_knockback"]=1438, + ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2449, + ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2450, + ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7789, + ["local_left_ring_slot_curse_effect_on_self_+%"]=2451, + ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2504, + ["local_left_ring_slot_energy_shield"]=2466, + ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2452, + ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2453, + ["local_left_ring_slot_mana_regeneration_rate_+%"]=2455, + ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2454, + ["local_left_ring_slot_maximum_mana"]=2465, + ["local_left_ring_slot_minion_damage_taken_+%"]=2456, + ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2448, + ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7790, + ["local_left_ring_slot_projectiles_from_spells_fork"]=7791, + ["local_left_ring_slot_skill_effect_duration_+%"]=2457, + ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7792, + ["local_level_requirement_-"]=845, + ["local_life_and_mana_gain_per_target"]=1527, + ["local_life_gain_per_target"]=1064, + ["local_life_gain_per_target_vs_blinded_enemies"]=7793, + ["local_life_gain_per_target_while_leeching"]=7794, + ["local_life_leech_from_physical_damage_permyriad"]=1062, + ["local_life_leech_is_instant"]=2340, + ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10396, + ["local_lightning_penetration_%"]=3461, + ["local_lightning_resistance_%_per_2%_quality"]=7795, + ["local_maim_on_hit"]=3808, + ["local_maim_on_hit_%"]=7796, + ["local_mana_gain_per_target"]=1530, + ["local_mana_leech_from_physical_damage_permyriad"]=1068, + ["local_max_charges_+%"]=1098, + ["local_maximum_added_chaos_damage"]=1314, + ["local_maximum_added_cold_damage"]=856, + ["local_maximum_added_cold_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7797, + ["local_maximum_added_fire_damage"]=855, + ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4554, + ["local_maximum_added_lightning_damage"]=857, + ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7798, + ["local_maximum_added_physical_damage"]=854, + ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4561, + ["local_maximum_energy_shield_+%_if_item_corrupted"]=7799, + ["local_maximum_life_+%_if_item_corrupted"]=7801, + ["local_maximum_life_+%_per_rune_or_soul_core"]=7802, + ["local_maximum_life_per_2%_quality"]=7800, + ["local_maximum_mana_+%_per_rune_or_soul_core"]=7804, + ["local_maximum_mana_per_2%_quality"]=7803, + ["local_maximum_prefixes_allowed_+"]=42, + ["local_maximum_quality_+"]=638, + ["local_maximum_quality_is_%"]=637, + ["local_maximum_sockets_+"]=85, + ["local_maximum_suffixes_allowed_+"]=43, + ["local_minimum_added_chaos_damage"]=1314, + ["local_minimum_added_cold_damage"]=856, + ["local_minimum_added_fire_damage"]=855, + ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4554, + ["local_minimum_added_lightning_damage"]=857, + ["local_minimum_added_physical_damage"]=854, + ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4561, + ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7805, + ["local_movement_speed_+%_if_item_corrupted"]=7806, + ["local_no_attribute_requirements"]=846, + ["local_no_critical_strike_multiplier"]=1407, + ["local_no_critical_strike_multiplier_during_flask_effect"]=788, + ["local_no_energy_shield"]=847, + ["local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon"]=3930, + ["local_non_unique_item_explicit_prefix_mod_magnitudes_+%"]=7807, + ["local_non_unique_item_explicit_suffix_mod_magnitudes_+%"]=7808, + ["local_number_of_bloodworms_to_spawn_on_flask_use"]=706, + ["local_one_socket_each_colour_only"]=86, + ["local_physical_damage_%_to_convert_to_a_random_element"]=4050, + ["local_physical_damage_+%"]=853, + ["local_physical_damage_reduction_rating_+%"]=869, + ["local_physical_damage_roll_always_min_or_max"]=7809, + ["local_poison_duration_+%_during_flask_effect"]=789, + ["local_poison_effect_+%"]=848, + ["local_poison_on_critical_strike_chance_%"]=7810, + ["local_poison_on_hit"]=2272, + ["local_poison_on_hit_%"]=7811, + ["local_prefix_effect_+%"]=7812, + ["local_projectile_speed_+%"]=7813, + ["local_quality_does_not_increase_damage"]=648, + ["local_quality_does_not_increase_defences"]=649, + ["local_quantity_of_sockets_+%"]=1682, + ["local_random_support_gem_index"]=351, + ["local_random_support_gem_index_1"]=352, + ["local_random_support_gem_level"]=351, + ["local_random_support_gem_level_1"]=352, + ["local_recharge_on_crit"]=644, + ["local_recharge_on_crit_%"]=645, + ["local_recharge_on_demon_killed"]=646, + ["local_recharge_on_take_crit"]=647, + ["local_reload_speed_+%"]=970, + ["local_requirements_%_to_convert_to_dexterity"]=7814, + ["local_requirements_%_to_convert_to_intelligence"]=7815, + ["local_requirements_%_to_convert_to_strength"]=7816, + ["local_resist_all_elements_%_if_item_corrupted"]=7817, + ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7818, + ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2458, + ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2445, + ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2459, + ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7819, + ["local_right_ring_slot_curse_effect_on_self_+%"]=2460, + ["local_right_ring_slot_energy_shield"]=2447, + ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2461, + ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2462, + ["local_right_ring_slot_maximum_mana"]=2446, + ["local_right_ring_slot_minion_damage_taken_+%"]=2463, + ["local_right_ring_slot_no_mana_regeneration"]=2444, + ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7820, + ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2505, + ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7821, + ["local_right_ring_slot_skill_effect_duration_+%"]=2464, + ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7822, + ["local_ring_attack_speed_+%_final"]=7823, + ["local_ring_burning_damage_+%_final"]=7824, + ["local_ring_disable_other_ring"]=1496, + ["local_ring_duplicate_other_ring"]=2629, + ["local_ring_nova_spells_area_of_effect_+%_final"]=7825, + ["local_rune_effect_+%"]=199, + ["local_self_bleed_duration_+%_during_flask_effect"]=790, + ["local_self_chill_effect_+%_during_flask_effect"]=791, + ["local_self_curse_effect_+%_during_flask_effect"]=792, + ["local_self_freeze_duration_+%_during_flask_effect"]=793, + ["local_self_ignite_duration_+%_during_flask_effect"]=794, + ["local_self_poison_duration_+%_during_flask_effect"]=795, + ["local_self_shock_effect_+%_during_flask_effect"]=796, + ["local_shield_double_stun_threshold_while_active_blocking"]=7826, + ["local_smoke_ground_on_flask_use_radius"]=687, + ["local_socketable_%_maximum_weapon_damage_to_gain_as_maximum_ward"]=7827, + ["local_socketed_abyss_jewel_effect_+%"]=200, + ["local_socketed_active_skill_gem_level_+"]=173, + ["local_socketed_active_skill_gem_quality_+"]=184, + ["local_socketed_area_of_effect_gem_level_+"]=159, + ["local_socketed_area_of_effect_gem_quality_+"]=185, + ["local_socketed_aura_gem_level_+"]=164, + ["local_socketed_aura_gem_quality_+"]=186, + ["local_socketed_bow_gem_level_+"]=161, + ["local_socketed_bow_gem_quality_+"]=187, + ["local_socketed_chaos_gem_level_+"]=156, + ["local_socketed_chaos_gem_quality_+"]=188, + ["local_socketed_cold_gem_level_+"]=154, + ["local_socketed_cold_gem_quality_+"]=189, + ["local_socketed_curse_gem_level_+"]=167, + ["local_socketed_dexterity_gem_level_+"]=143, + ["local_socketed_dexterity_gem_quality_+"]=190, + ["local_socketed_duration_gem_level_+"]=158, + ["local_socketed_elemental_gem_level_+"]=191, + ["local_socketed_fire_gem_level_+"]=152, + ["local_socketed_fire_gem_quality_+"]=192, + ["local_socketed_gem_level_+"]=147, + ["local_socketed_gem_quality_+"]=182, + ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=151, + ["local_socketed_gems_in_green_sockets_get_quality_%"]=150, + ["local_socketed_gems_in_red_sockets_get_level_+"]=149, + ["local_socketed_golem_gem_level_+"]=181, + ["local_socketed_herald_gem_level_+"]=165, + ["local_socketed_hex_gem_level_+"]=168, + ["local_socketed_intelligence_gem_level_+"]=145, + ["local_socketed_intelligence_gem_quality_+"]=193, + ["local_socketed_items_effect_+%"]=201, + ["local_socketed_lightning_gem_level_+"]=155, + ["local_socketed_lightning_gem_quality_+"]=194, + ["local_socketed_melee_gem_level_+"]=162, + ["local_socketed_melee_gem_quality_+"]=195, + ["local_socketed_minion_gem_level_+"]=163, + ["local_socketed_minion_gem_quality_+"]=196, + ["local_socketed_movement_gem_level_+"]=166, + ["local_socketed_non_vaal_gem_level_+"]=174, + ["local_socketed_projectile_gem_level_+"]=160, + ["local_socketed_projectile_gem_quality_+"]=197, + ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=148, + ["local_socketed_spell_gem_level_+"]=157, + ["local_socketed_strength_gem_level_+"]=142, + ["local_socketed_strength_gem_quality_+"]=198, + ["local_socketed_support_gem_level_+"]=172, + ["local_socketed_support_gem_quality_+"]=183, + ["local_socketed_trap_and_mine_gem_level_+"]=170, + ["local_socketed_trap_gem_level_+"]=169, + ["local_socketed_vaal_gem_level_+"]=171, + ["local_socketed_warcry_gem_level_+"]=175, + ["local_soul_core_effect_+%"]=202, + ["local_soul_core_gain_benefits_from_boots_as_well"]=101, + ["local_soul_core_gain_benefits_from_gloves_as_well"]=102, + ["local_soul_core_gain_benefits_from_helmet_as_well"]=103, + ["local_soul_core_gain_benefits_from_shield_as_well"]=104, + ["local_spell_damage_+%_if_item_corrupted"]=7828, + ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7829, + ["local_spirit"]=879, + ["local_spirit_+%"]=880, + ["local_spirit_+_per_rune_or_soul_core"]=7830, + ["local_strength_and_intelligence_requirement_+"]=849, + ["local_strength_per_2%_quality"]=7831, + ["local_strength_requirement_+"]=850, + ["local_strength_requirement_+%"]=851, + ["local_stun_threshold_+_per_rune_or_soul_core"]=7832, + ["local_stun_threshold_reduction_+%"]=2300, + ["local_suffix_effect_+%"]=7833, + ["local_support_gem_max_skill_level_requirement_to_support"]=2599, + ["local_tablet_make_maps_in_radius_available"]=7834, + ["local_unique_attacks_cast_socketed_lightning_spells_%"]=628, + ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=629, + ["local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect"]=751, + ["local_unique_counts_as_dual_wielding"]=2493, + ["local_unique_facebreaker_damage_is_fire"]=852, + ["local_unique_facebreaker_maximum_base_damage"]=852, + ["local_unique_facebreaker_maximum_base_damage_per_broken_face"]=852, + ["local_unique_facebreaker_minimum_base_damage"]=852, + ["local_unique_facebreaker_minimum_base_damage_per_broken_face"]=852, + ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=797, + ["local_unique_flask_avoid_chill_%_while_healing"]=750, + ["local_unique_flask_avoid_freeze_%_while_healing"]=752, + ["local_unique_flask_block_%_while_healing"]=798, + ["local_unique_flask_cannot_recover_life_while_healing"]=799, + ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=668, + ["local_unique_flask_charges_gained_+%_during_flask_effect"]=800, + ["local_unique_flask_critical_hit_poison_effect_+%_during_flask_effect"]=801, + ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=802, + ["local_unique_flask_damage_+%_vs_demons_while_healing"]=804, + ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=803, + ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=805, + ["local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing"]=806, + ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=829, + ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=830, + ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7835, + ["local_unique_flask_instantly_recovers_%_maximum_life"]=667, + ["local_unique_flask_item_quantity_+%_while_healing"]=807, + ["local_unique_flask_item_rarity_+%_while_healing"]=808, + ["local_unique_flask_kiaras_determination"]=809, + ["local_unique_flask_life_loss_%_per_minute_while_you_have_no_runic_ward_during_flask_effect"]=7836, + ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7837, + ["local_unique_flask_light_radius_+%_while_healing"]=810, + ["local_unique_flask_mana_flask_recovery_can_overcap_mana_during_flask_effect"]=7838, + ["local_unique_flask_maximum_rage_is_doubled_during_effect"]=7839, + ["local_unique_flask_no_mana_cost_while_healing"]=811, + ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7840, + ["local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing"]=812, + ["local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing"]=749, + ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=748, + ["local_unique_flask_recover_all_mana_on_use"]=7841, + ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=813, + ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7842, + ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=814, + ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=815, + ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=816, + ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=817, + ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=818, + ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=819, + ["local_unique_hungry_loop_has_consumed_gem"]=114, + ["local_unique_hungry_loop_number_of_gems_to_consume"]=114, + ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2820, + ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2821, + ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2822, + ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7843, + ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2907, + ["local_unique_jewel_additional_life_per_X_int_in_radius"]=2883, + ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2900, + ["local_unique_jewel_alternate_tree_internal_revision"]=37, + ["local_unique_jewel_alternate_tree_keystone"]=37, + ["local_unique_jewel_alternate_tree_seed"]=37, + ["local_unique_jewel_alternate_tree_version"]=37, + ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2905, + ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2988, + ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2997, + ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7844, + ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7845, + ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7846, + ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7847, + ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7848, + ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7849, + ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7850, + ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7851, + ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7852, + ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2823, + ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2884, + ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2885, + ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2873, + ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3073, + ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3072, + ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7853, + ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2897, + ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2876, + ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7854, + ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2993, + ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7855, + ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2908, + ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2874, + ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2887, + ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7856, + ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7857, + ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7858, + ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7859, + ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7860, + ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2966, + ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7861, + ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7862, + ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7863, + ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7864, + ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7865, + ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7866, + ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7867, + ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7868, + ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7869, + ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7870, + ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7871, + ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7872, + ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7873, + ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2877, + ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2901, + ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3074, + ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3075, + ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2872, + ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7874, + ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7875, + ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2896, + ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7876, + ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7877, + ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7878, + ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2985, + ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2984, + ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2895, + ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3081, + ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3080, + ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7879, + ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7880, + ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7881, + ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7882, + ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7903, + ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2904, + ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7883, + ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2964, + ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3076, + ["local_unique_jewel_grants_x_empty_passives"]=7884, + ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2991, + ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2990, + ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2967, + ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7885, + ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7886, + ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7887, + ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2841, + ["local_unique_jewel_life_increases_applies_to_energy_shield"]=2878, + ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2886, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7888, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7889, + ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7890, + ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7891, + ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7892, + ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7893, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7894, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7895, + ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2909, + ["local_unique_jewel_melee_applies_to_bow"]=2819, + ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7896, + ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7897, + ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2902, + ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7898, + ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=837, + ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7899, + ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7900, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10641, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10642, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10643, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10641, + ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2882, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7902, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed"]=7901, + ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2824, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10644, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10644, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2899, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2894, + ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2898, + ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2875, + ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2903, + ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3077, + ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7904, + ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3078, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7905, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3079, + ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7906, + ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7907, + ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7908, + ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2965, + ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7909, + ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7910, + ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2906, + ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7911, + ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2811, + ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2888, + ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2982, + ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=2995, + ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2812, + ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2980, + ["local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%"]=2842, + ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2843, + ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2829, + ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7912, + ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7913, + ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=820, + ["local_unique_mages_legacy_1"]=7914, + ["local_unique_mages_legacy_2"]=7915, + ["local_unique_mages_legacy_3"]=7916, + ["local_unique_mages_legacy_4"]=7917, + ["local_unique_mages_legacy_effect_+%_per_duplicate_mages_legacy"]=7918, + ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=832, + ["local_unique_regen_es_from_removed_life_duration_ms"]=2893, + ["local_unique_remove_life_and_regen_es_from_removed_life"]=2893, + ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=833, + ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3475, + ["local_vivisection_random_keystone_index"]=10654, + ["local_ward"]=868, + ["local_ward_+%"]=878, + ["local_weapon_accuracy_is_unaffected_by_distance"]=7919, + ["local_weapon_base_crit_chance_permyriad_override"]=3488, + ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7920, + ["local_weapon_daze_chance_%"]=7921, + ["local_weapon_enemy_phys_reduction_%_penalty"]=1209, + ["local_weapon_no_physical_damage"]=853, + ["local_weapon_range_+"]=2529, + ["local_weapon_range_+_per_10%_quality"]=7922, + ["local_weapon_roll_crits_twice"]=1379, + ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=632, + ["local_weapon_uses_both_hands"]=838, + ["local_withered_on_hit_for_2_seconds_%_chance"]=4093, + ["lose_%_of_es_on_crit"]=7932, + ["lose_%_of_infernal_flame_on_reaching_max"]=7923, + ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7933, + ["lose_%_of_life_loss_over_4_seconds_instead"]=7924, + ["lose_%_of_life_on_crit"]=7934, + ["lose_%_of_mana_when_you_use_an_attack_skill"]=7935, + ["lose_%_of_max_infernal_flame_per_minute"]=7925, + ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3185, + ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4076, + ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4077, + ["lose_adrenaline_on_losing_flame_touched"]=7926, + ["lose_all_charges_on_starting_movement"]=7927, + ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=3952, + ["lose_all_endurance_charges_when_reaching_maximum"]=2536, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7928, + ["lose_all_fragile_regrowth_when_hit"]=4084, + ["lose_all_power_charges_on_block"]=7929, + ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3306, + ["lose_all_rage_on_reaching_maximum_rage"]=7930, + ["lose_all_tailwind_when_hit"]=7931, + ["lose_endurance_charge_on_kill_%"]=2426, + ["lose_endurance_charges_on_rampage_end"]=3002, + ["lose_frenzy_charge_on_kill_%"]=2428, + ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7936, + ["lose_power_charge_on_kill_%"]=2430, + ["lose_soul_eater_souls_on_flask_use"]=3147, + ["lose_spirit_charges_on_savage_hit_taken"]=4067, + ["lose_x_life_when_you_use_skill"]=7937, + ["lose_x_mana_when_you_use_skill"]=7938, + ["low_life_threshold_%_override"]=7940, + ["low_mana_threshold_%_override"]=7941, + ["mace_accuracy_rating"]=1774, + ["mace_accuracy_rating_+%"]=1363, + ["mace_attack_speed_+%"]=1346, + ["mace_critical_strike_chance_+%"]=1388, + ["mace_critical_strike_multiplier_+"]=1409, + ["mace_damage_+%"]=1272, + ["mace_elemental_damage_+%"]=1884, + ["mace_hit_damage_stun_multiplier_+%"]=7942, + ["mace_skill_base_physical_damage_%_to_convert_to_cold"]=7943, + ["mace_slam_aftershock_chance_%"]=7944, + ["mace_strike_melee_splash_chance_%"]=7945, + ["magic_charm_effect_+%"]=2527, + ["magic_items_drop_identified"]=3831, + ["magic_monster_dropped_item_rarity_+%"]=7946, + ["magma_orb_damage_+%"]=3341, + ["magma_orb_num_of_additional_projectiles_in_chain"]=3640, + ["magma_orb_number_of_additional_projectiles"]=7947, + ["magma_orb_radius_+%"]=3502, + ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7948, + ["maim_bleeding_enemies_on_hit_%"]=3045, + ["maim_chance_+%"]=7949, + ["maim_effect_+%"]=7950, + ["maim_enemy_on_full_armour_break"]=7951, + ["maim_on_crit_%_with_attacks"]=7952, + ["maim_on_hit_%"]=7953, + ["maim_on_hit_%_vs_poisoned_enemies"]=3025, + ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7954, + ["main_hand_attack_speed_+%_final"]=7955, + ["main_hand_attacks_with_this_weapon_maximum_added_physical_damage_per_1%_block_chance"]=2698, + ["main_hand_attacks_with_this_weapon_minimum_added_physical_damage_per_1%_block_chance"]=2698, + ["main_hand_base_weapon_attack_duration_ms"]=24, + ["main_hand_claw_life_gain_on_hit"]=7956, + ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7957, + ["main_hand_damage_+%_while_dual_wielding"]=7958, + ["main_hand_maximum_attack_distance"]=28, + ["main_hand_minimum_attack_distance"]=26, + ["main_hand_quality"]=21, + ["main_hand_weapon_type"]=13, + ["malediction_on_hit"]=7959, + ["malevolence_mana_reservation_efficiency_+%"]=7961, + ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7960, + ["mamba_strike_area_of_effect_+%"]=7962, + ["mamba_strike_damage_+%"]=7963, + ["mamba_strike_duration_+%"]=7964, + ["mana_%_gained_on_block"]=7988, + ["mana_%_to_gain_as_armour"]=7965, + ["mana_%_to_gain_as_energy_shield"]=1454, + ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"]=1455, + ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3112, + ["mana_cost_+%_for_channelling_skills"]=7968, + ["mana_cost_+%_for_trap_and_mine_skills"]=7969, + ["mana_cost_+%_for_trap_skills"]=7970, + ["mana_cost_+%_on_consecrated_ground"]=3261, + ["mana_cost_+%_on_totemified_aura_skills"]=2860, + ["mana_cost_+%_per_10_devotion"]=7971, + ["mana_cost_+%_per_200_mana_spent_recently"]=4027, + ["mana_cost_+%_when_on_low_life"]=1658, + ["mana_cost_+%_while_not_low_mana"]=2836, + ["mana_cost_+%_while_on_full_energy_shield"]=1657, + ["mana_cost_-%_per_endurance_charge"]=3000, + ["mana_cost_efficiency_+%_if_dodge_rolled_recently"]=7966, + ["mana_cost_efficiency_+%_if_not_dodge_rolled_recently"]=7967, + ["mana_degeneration_%_per_minute_not_in_grace"]=7972, + ["mana_degeneration_per_minute"]=7973, + ["mana_degeneration_per_minute_%"]=7974, + ["mana_degeneration_per_minute_not_in_grace"]=1471, + ["mana_flask_charges_gained_+%"]=7975, + ["mana_flask_effects_not_removed_at_full_mana"]=7976, + ["mana_flask_recovery_is_instant_while_on_low_mana"]=7977, + ["mana_flasks_gain_X_charges_every_3_seconds"]=7978, + ["mana_gain_per_target"]=1529, + ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=7979, + ["mana_gained_on_attack_hit_vs_cursed_enemies"]=7980, + ["mana_gained_on_block"]=1542, + ["mana_gained_on_cull"]=7981, + ["mana_gained_on_enemy_death_per_level"]=2739, + ["mana_gained_on_hitting_taunted_enemy"]=1565, + ["mana_gained_on_spell_hit"]=7982, + ["mana_gained_on_spell_hit_vs_cursed_enemies"]=7983, + ["mana_gained_when_hit"]=2501, + ["mana_leech_also_recovers_based_on_other_damage_types"]=7984, + ["mana_leech_amount_+%_if_crit_recently"]=7985, + ["mana_leech_applies_recovery_to_energy_shield_also"]=7986, + ["mana_leech_is_instant_on_critical"]=3989, + ["mana_leech_rate_+%_per_equipped_corrupted_item"]=2852, + ["mana_per_level"]=7987, + ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=7989, + ["mana_recovery_from_regeneration_is_not_applied"]=7990, + ["mana_recovery_rate_+%"]=1473, + ["mana_recovery_rate_+%_if_havent_killed_recently"]=7994, + ["mana_recovery_rate_+%_per_10_tribute"]=7991, + ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=7992, + ["mana_recovery_rate_+%_while_affected_by_clarity"]=7995, + ["mana_recovery_rate_+%_while_companion_in_presence"]=7993, + ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3756, + ["mana_regeneration_rate_+%"]=1066, + ["mana_regeneration_rate_+%_during_flask_effect"]=2926, + ["mana_regeneration_rate_+%_final_from_caster_weapon_runic_ward_socketable"]=7996, + ["mana_regeneration_rate_+%_if_crit_recently"]=8013, + ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8014, + ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8015, + ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8016, + ["mana_regeneration_rate_+%_on_full_life"]=7997, + ["mana_regeneration_rate_+%_per_fragile_regrowth"]=4083, + ["mana_regeneration_rate_+%_per_power_charge"]=1747, + ["mana_regeneration_rate_+%_per_raised_spectre"]=8017, + ["mana_regeneration_rate_+%_while_moving"]=8018, + ["mana_regeneration_rate_+%_while_not_on_low_mana"]=7998, + ["mana_regeneration_rate_+%_while_phasing"]=2309, + ["mana_regeneration_rate_+%_while_shapeshifted"]=7999, + ["mana_regeneration_rate_+%_while_shocked"]=2310, + ["mana_regeneration_rate_+%_while_stationary"]=4008, + ["mana_regeneration_rate_+%_while_surrounded"]=8000, + ["mana_regeneration_rate_per_minute_%"]=1469, + ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8005, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8006, + ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8007, + ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1472, + ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8001, + ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8002, + ["mana_regeneration_rate_per_minute_per_10_devotion"]=8003, + ["mana_regeneration_rate_per_minute_per_power_charge"]=8004, + ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8008, + ["mana_regeneration_rate_per_minute_while_holding_shield"]=8009, + ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8010, + ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8011, + ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8012, + ["mana_reservation_+%_per_250_total_attributes"]=8024, + ["mana_reservation_+%_with_curse_skills"]=8025, + ["mana_reservation_+%_with_skills_that_throw_mines"]=8019, + ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8020, + ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8023, + ["mana_reservation_efficiency_-2%_per_1"]=1979, + ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8021, + ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8022, + ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8026, + ["manabond_damage_+%"]=8027, + ["manabond_lightning_penetration_%_while_on_low_mana"]=8028, + ["manabond_skill_area_of_effect_+%"]=8029, + ["manifest_a_fragment_of_divinity_in_your_presence_every_4_seconds"]=8030, + ["manifest_dancing_dervish_number_of_additional_copies"]=8031, + ["map_X_bestiary_packs_are_harvest_beasts"]=8032, + ["map_abyss_%_chance_chasm_spawns_at_least_magic_monsters"]=8033, + ["map_abyss_%_chance_path_spawns_at_least_magic_monsters"]=8034, + ["map_abyss_depths_chance_+%"]=8035, + ["map_abyss_exile_interaction_chance_+%"]=8036, + ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=115, + ["map_abyss_monster_experience_+%"]=8037, + ["map_abyss_monster_lichborn_modifier_chance_+%"]=8038, + ["map_abyss_monster_potency_+%"]=8039, + ["map_abyss_monster_spawn_amount_+%"]=8040, + ["map_abyss_monsters_enhanced_per_chasm_closed"]=8041, + ["map_abyss_no_reward_chance_+%"]=8042, + ["map_abyss_num_additional_rare_monsters"]=8043, + ["map_abyss_overrun_extra_pits"]=8044, + ["map_abyss_overrun_no_monsters"]=8045, + ["map_abyss_pits_spread_apart"]=8046, + ["map_add_irradiation_instead_of_completing"]=8047, + ["map_additional_number_of_packs_to_choose"]=2064, + ["map_additional_player_maximum_resistances_%"]=2133, + ["map_additional_rare_in_rare_pack_chance_+%"]=8048, + ["map_additional_red_beasts"]=8049, + ["map_adds_X_extra_synthesis_mods"]=8050, + ["map_adds_X_extra_synthesis_special_mods"]=8051, + ["map_addtional_magic_chest_amount"]=2007, + ["map_addtional_rare_chest_amount"]=2008, + ["map_affliction_encounter_boss_chance_+%"]=8052, + ["map_affliction_encounter_monster_depth_+%"]=8053, + ["map_affliction_pack_size_+%"]=8054, + ["map_affliction_reward_kills_+%"]=8055, + ["map_affliction_reward_progress_on_kill_+%"]=8056, + ["map_affliction_secondary_wave_acceleration_+%"]=8057, + ["map_affliction_secondary_wave_delay_ms_+"]=8058, + ["map_affliction_secondary_wave_delay_seconds_+"]=8059, + ["map_all_items_drop_as_gold"]=2011, + ["map_allow_shrines"]=2420, + ["map_also_count_as_desert_biome"]=8060, + ["map_also_count_as_forest_biome"]=8061, + ["map_also_count_as_grass_biome"]=8062, + ["map_also_count_as_mountain_biome"]=8063, + ["map_also_count_as_swamp_biome"]=8064, + ["map_also_count_as_water_biome"]=8065, + ["map_always_has_weather"]=2419, + ["map_ambush_chests"]=2413, + ["map_area_contains_arcanists_strongbox"]=8067, + ["map_area_contains_avatar_of_ambush"]=8068, + ["map_area_contains_avatar_of_anarchy"]=8069, + ["map_area_contains_avatar_of_beyond"]=8070, + ["map_area_contains_avatar_of_bloodlines"]=8071, + ["map_area_contains_avatar_of_breach"]=8072, + ["map_area_contains_avatar_of_domination"]=8073, + ["map_area_contains_avatar_of_essence"]=8074, + ["map_area_contains_avatar_of_invasion"]=8075, + ["map_area_contains_avatar_of_nemesis"]=8076, + ["map_area_contains_avatar_of_onslaught"]=8077, + ["map_area_contains_avatar_of_perandus"]=8078, + ["map_area_contains_avatar_of_prophecy"]=8079, + ["map_area_contains_avatar_of_rampage"]=8080, + ["map_area_contains_avatar_of_talisman"]=8081, + ["map_area_contains_avatar_of_tempest"]=8082, + ["map_area_contains_avatar_of_torment"]=8083, + ["map_area_contains_avatar_of_warbands"]=8084, + ["map_area_contains_cartographers_strongbox"]=8085, + ["map_area_contains_currency_chest"]=8086, + ["map_area_contains_gemcutters_strongbox"]=8087, + ["map_area_contains_jewellery_chest"]=8088, + ["map_area_contains_map_chest"]=8089, + ["map_area_contains_metamorphs"]=8090, + ["map_area_contains_perandus_coin_chest"]=8091, + ["map_area_contains_rituals"]=8092, + ["map_area_contains_tormented_embezzler"]=8093, + ["map_area_contains_tormented_seditionist"]=8094, + ["map_area_contains_tormented_vaal_cultist"]=8095, + ["map_area_contains_unique_item_chest"]=8096, + ["map_area_contains_unique_strongbox"]=8097, + ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8098, + ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8099, + ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8100, + ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8101, + ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8102, + ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8103, + ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8104, + ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8207, + ["map_area_ritual_additional_chance_%"]=8105, + ["map_atlas_influence_type"]=8066, + ["map_atlas_node_has_abyss"]=8106, + ["map_atlas_node_has_breach"]=8107, + ["map_atlas_node_has_delirium"]=8108, + ["map_atlas_node_has_incursion"]=8109, + ["map_atlas_node_has_ritual"]=8110, + ["map_base_ground_desecration_damage_to_deal_per_minute"]=2081, + ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2074, + ["map_base_ground_fire_damage_to_deal_per_minute"]=2073, + ["map_bestiary_monster_damage_+%_final"]=8111, + ["map_bestiary_monster_life_+%_final"]=8112, + ["map_betrayal_intelligence_+%"]=8113, + ["map_beyond_demon_always_elite"]=8114, + ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=8115, + ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=8115, + ["map_beyond_portal_chance_+%"]=8116, + ["map_beyond_portal_spawn_additional_demon_%_chance"]=8117, + ["map_beyond_rules"]=2422, + ["map_blight_chest_%_chance_for_additional_drop"]=8118, + ["map_blight_chests_repeat_drops_count"]=8119, + ["map_blight_encounter_spawn_rate_+%"]=8120, + ["map_blight_lane_additional_chest_chance_%"]=8121, + ["map_blight_lane_additional_chests"]=8122, + ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8123, + ["map_blight_tower_cost_+%"]=8124, + ["map_blight_tower_cost_doubled"]=8125, + ["map_blight_up_to_X_additional_bosses"]=8126, + ["map_blighted_map_encounter_duration_-_sec"]=8127, + ["map_bloodline_packs_drop_x_additional_currency_items"]=8128, + ["map_bloodline_packs_drop_x_additional_rare_items"]=8129, + ["map_blueprint_drop_revealed_chance_%"]=8130, + ["map_boss_accompanied_by_bodyguards"]=8131, + ["map_boss_accompanied_by_harbinger"]=8132, + ["map_boss_area_of_effect_+%"]=2199, + ["map_boss_attack_and_cast_speed_+%"]=2197, + ["map_boss_damage_+%"]=2191, + ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2192, + ["map_boss_dropped_item_quantity_+%"]=8133, + ["map_boss_dropped_unique_items_+"]=8134, + ["map_boss_drops_additional_conqueror_map"]=2194, + ["map_boss_drops_additional_currency_shards"]=8135, + ["map_boss_drops_additional_elder_guardian_map"]=2195, + ["map_boss_drops_additional_shaper_guardian_map"]=2196, + ["map_boss_drops_corrupted_items"]=8136, + ["map_boss_drops_x_additional_vaal_items"]=8141, + ["map_boss_experience_+%_final"]=8137, + ["map_boss_is_possessed"]=8138, + ["map_boss_item_rarity_+%"]=8139, + ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2193, + ["map_boss_maximum_life_+%"]=2198, + ["map_boss_surrounded_by_tormented_spirits"]=8140, + ["map_breach_%_chance_for_1_additional_breach"]=8142, + ["map_breach_%_chance_for_3_additional_breach"]=8143, + ["map_breach_X_additional_rare_monsters"]=8144, + ["map_breach_chance_to_be_esh_+%"]=8145, + ["map_breach_chance_to_be_tul_+%"]=8146, + ["map_breach_chance_to_be_uul_netol_+%"]=8147, + ["map_breach_chance_to_be_xoph_+%"]=8148, + ["map_breach_hands_are_small"]=105, + ["map_breach_has_boss"]=8149, + ["map_breach_has_large_chest"]=8150, + ["map_breach_minimum_radius"]=8151, + ["map_breach_monster_potency_+%"]=8152, + ["map_breach_monster_quantity_+%"]=8153, + ["map_breach_monster_splinter_quantity_+%"]=8154, + ["map_breach_monsters_damage_+%"]=136, + ["map_breach_monsters_life_+%"]=128, + ["map_breach_number_of_magic_packs_+%"]=8155, + ["map_breach_rules"]=2414, + ["map_breach_size_+%"]=122, + ["map_breach_splinters_drop_as_stones_permyriad"]=123, + ["map_breach_time_passed_+%"]=116, + ["map_breach_type_override"]=8156, + ["map_breaches_num_additional_chests_to_spawn"]=8157, + ["map_chance_for_4_additional_abysses_%"]=8158, + ["map_chance_for_area_%_to_contain_harvest"]=8159, + ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=124, + ["map_chance_to_not_consume_sextant_use_%"]=8160, + ["map_chest_item_quantity_+%"]=2200, + ["map_chest_item_rarity_+%"]=2201, + ["map_chest_item_rarity_+%_final"]=8161, + ["map_chests_all_magic_or_rare"]=8162, + ["map_construct_monster_potency_+%"]=8163, + ["map_contains_+_portals"]=8164, + ["map_contains_abyss_boss"]=8165, + ["map_contains_abyss_depths"]=8166, + ["map_contains_abyss_depths_with_no_boss"]=8167, + ["map_contains_additional_breaches"]=8168, + ["map_contains_additional_chrysalis_talisman"]=8169, + ["map_contains_additional_clutching_talisman"]=8170, + ["map_contains_additional_fangjaw_talisman"]=8171, + ["map_contains_additional_mandible_talisman"]=8172, + ["map_contains_additional_packs_of_chaos_monsters"]=8173, + ["map_contains_additional_packs_of_cold_monsters"]=8174, + ["map_contains_additional_packs_of_fire_monsters"]=8175, + ["map_contains_additional_packs_of_lightning_monsters"]=8176, + ["map_contains_additional_packs_of_physical_monsters"]=8177, + ["map_contains_additional_packs_of_vaal_monsters"]=8178, + ["map_contains_additional_three_rat_talisman"]=8179, + ["map_contains_additional_tormented_betrayers"]=8180, + ["map_contains_additional_tormented_graverobbers"]=8181, + ["map_contains_additional_tormented_heretics"]=8182, + ["map_contains_additional_unique_talisman"]=8183, + ["map_contains_additional_writhing_talisman"]=8184, + ["map_contains_breach"]=8185, + ["map_contains_buried_treasure"]=2009, + ["map_contains_chayula_breach"]=8186, + ["map_contains_citadel"]=8187, + ["map_contains_cleansed_boss"]=8188, + ["map_contains_corrupted_strongbox"]=8189, + ["map_contains_creeping_agony"]=8190, + ["map_contains_keepers_of_the_trove_bloodline_pack"]=8191, + ["map_contains_master"]=8192, + ["map_contains_nevalis_monkey"]=8193, + ["map_contains_perandus_boss"]=8194, + ["map_contains_talisman_boss_with_higher_tier"]=8195, + ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8196, + ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8196, + ["map_contains_uul_netol_breach"]=8197, + ["map_contains_wealthy_pack"]=8198, + ["map_contains_x_additional_animated_weapon_packs"]=8199, + ["map_contains_x_additional_healing_packs"]=8200, + ["map_contains_x_additional_magic_packs"]=8201, + ["map_contains_x_additional_normal_packs"]=8202, + ["map_contains_x_additional_packs_on_their_own_team"]=8203, + ["map_contains_x_additional_packs_that_convert_on_death"]=8204, + ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=2010, + ["map_contains_x_additional_poison_packs"]=8205, + ["map_contains_x_additional_rare_packs"]=8206, + ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8208, + ["map_cowards_trial_extra_ghosts"]=8209, + ["map_cowards_trial_extra_oriath_citizens"]=8210, + ["map_cowards_trial_extra_phantasms"]=8211, + ["map_cowards_trial_extra_raging_spirits"]=8212, + ["map_cowards_trial_extra_rhoas"]=8213, + ["map_cowards_trial_extra_skeleton_cannons"]=8214, + ["map_cowards_trial_extra_zombies"]=8215, + ["map_custom_league_damage_taken_+%_final"]=8216, + ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8218, + ["map_damage_+%_per_poison_stack"]=8217, + ["map_damage_taken_+%_from_beyond_monsters"]=8219, + ["map_damage_taken_while_stationary_+%"]=8220, + ["map_damage_while_stationary_+%"]=8221, + ["map_death_and_taxes_boss_drops_additional_currency"]=8222, + ["map_delirium_additional_reward_type_chance_%"]=8223, + ["map_delirium_doodads_+%_final"]=8224, + ["map_delirium_fog_never_dissipates"]=8225, + ["map_delirium_splinter_stack_size_+%"]=8226, + ["map_delve_rules"]=8227, + ["map_display_area_contains_unbridged_gaps_to_cross"]=2062, + ["map_display_strongbox_monsters_are_enraged"]=8229, + ["map_display_unique_boss_drops_X_maps"]=2102, + ["map_divination_card_drop_chance_+%"]=8230, + ["map_doesnt_consume_sextant_use"]=8231, + ["map_downgrade_pack_to_magic_%_chance"]=8232, + ["map_dropped_maps_are_corrupted_with_8_mods"]=8233, + ["map_dropped_maps_are_duplicated_chance_permillage"]=8234, + ["map_duplicate_all_rare_monsters"]=2012, + ["map_duplicate_captured_beasts_chance_%"]=8235, + ["map_duplicate_essence_monsters_with_shrieking_essence"]=137, + ["map_duplicate_x_rare_monsters"]=8236, + ["map_duplicate_x_synthesised_rare_monsters"]=8237, + ["map_elder_boss_variation"]=8238, + ["map_elder_rare_chance_+%"]=8239, + ["map_elemental_weakness_curse_zones"]=2125, + ["map_endgame_affliction_reward_1"]=8240, + ["map_endgame_affliction_reward_2"]=8241, + ["map_endgame_affliction_reward_3"]=8242, + ["map_endgame_affliction_reward_4"]=8243, + ["map_endgame_affliction_reward_5"]=8244, + ["map_endgame_affliction_reward_6"]=8245, + ["map_endgame_affliction_reward_7"]=8246, + ["map_endgame_affliction_reward_8"]=8247, + ["map_endgame_affliction_reward_9"]=8248, + ["map_endgame_fog_depth"]=8249, + ["map_enfeeble_curse_zones"]=2121, + ["map_equipment_drops_identified"]=8250, + ["map_essence_abyss_chance_+%"]=8251, + ["map_essence_corruption_cannot_release_monsters"]=129, + ["map_essence_monolith_contains_additional_essence_of_corruption"]=8252, + ["map_essence_monolith_contains_essence_of_corruption_%"]=8253, + ["map_essence_monsters_are_corrupted"]=8254, + ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=139, + ["map_essence_monsters_have_additional_essences"]=8255, + ["map_essence_monsters_higher_tier"]=8256, + ["map_essences_are_1_tier_higher_chance_%"]=125, + ["map_essences_contains_rogue_exiles"]=117, + ["map_expedition2_remnant_generation_has_x_lucky_rolls"]=8257, + ["map_expedition2_remnants_have_at_least_x_slots"]=8258, + ["map_expedition_artifact_quantity_+%"]=8259, + ["map_expedition_chest_double_drops_chance_%"]=8260, + ["map_expedition_chest_marker_count_+"]=8261, + ["map_expedition_common_chest_marker_count_+"]=8262, + ["map_expedition_elite_marker_count_+%"]=8263, + ["map_expedition_encounter_additional_chance_%"]=8264, + ["map_expedition_epic_chest_marker_count_+"]=8265, + ["map_expedition_explosion_radius_+%"]=8266, + ["map_expedition_explosives_+%"]=8267, + ["map_expedition_extra_relic_suffix_chance_%"]=8268, + ["map_expedition_league"]=8269, + ["map_expedition_maximum_placement_distance_+%"]=8270, + ["map_expedition_monster_spawn_with_half_life"]=8271, + ["map_expedition_number_of_monster_markers_+%"]=8272, + ["map_expedition_rare_monsters_+%"]=8273, + ["map_expedition_relic_mod_effect_+%"]=8274, + ["map_expedition_relics_+"]=8275, + ["map_expedition_relics_+%"]=8276, + ["map_expedition_saga_contains_boss"]=8277, + ["map_expedition_twinned_elites"]=8278, + ["map_expedition_uncommon_chest_marker_count_+"]=8279, + ["map_expedition_vendor_reroll_currency_quantity_+%"]=8280, + ["map_expedition_x_extra_relic_suffixes"]=8281, + ["map_experience_gain_+%"]=2013, + ["map_extra_gold_piles_chance_%"]=2014, + ["map_extra_monoliths"]=8282, + ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=8283, + ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8284, + ["map_first_strongbox_contains_x_additional_rare_monsters"]=8285, + ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8286, + ["map_fishy_effect_0"]=8228, + ["map_fishy_effect_1"]=8228, + ["map_fishy_effect_2"]=8228, + ["map_fishy_effect_3"]=8228, + ["map_fixed_seed"]=2087, + ["map_flask_charges_recovered_per_3_seconds_%"]=8287, + ["map_force_side_area"]=8288, + ["map_force_stone_circle"]=2111, + ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8289, + ["map_gauntlet_unique_monster_life_+%"]=8290, + ["map_gold_+%"]=2015, + ["map_grants_players_level_20_dash_skill"]=8291, + ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8292, + ["map_ground_haste_action_speed_+%"]=8293, + ["map_ground_ice"]=2075, + ["map_ground_ice_base_magnitude"]=2076, + ["map_ground_lightning"]=2077, + ["map_ground_lightning_base_magnitude"]=2079, + ["map_ground_mana_siphoning"]=2078, + ["map_ground_tar_movement_speed_+%"]=2080, + ["map_harbinger_additional_currency_shard_stack_chance_%"]=8294, + ["map_harbinger_cooldown_speed_+%"]=106, + ["map_harbinger_portal_drops_additional_fragments"]=8295, + ["map_harbingers_drops_additional_currency_shards"]=8296, + ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8297, + ["map_harvest_double_lifeforce_dropped"]=8298, + ["map_harvest_monster_life_+%_final_from_sextant"]=8299, + ["map_harvest_seed_t2_upgrade_%_chance"]=126, + ["map_harvest_seed_t3_upgrade_%_chance"]=130, + ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8300, + ["map_harvest_seeds_are_at_least_t2"]=118, + ["map_has_X_seconds_between_waves"]=2203, + ["map_has_X_waves_of_monsters"]=2202, + ["map_has_monoliths"]=8301, + ["map_has_x%_quality"]=8302, + ["map_heist_contract_additional_reveals_granted"]=8303, + ["map_heist_contract_chest_no_rewards_%_chance"]=8304, + ["map_heist_contract_npc_items_cannot_drop"]=8305, + ["map_heist_contract_primary_target_value_+%_final"]=8306, + ["map_heist_monster_life_+%_final_from_sextant"]=8307, + ["map_heist_npc_perks_effect_+%_final"]=8308, + ["map_hellscape_additional_boss"]=1119, + ["map_hellscape_blood_consumed_+%_final"]=1101, + ["map_hellscape_fire_damage_taken_when_switching"]=1107, + ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1103, + ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1102, + ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1104, + ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1105, + ["map_hellscape_gimmick_shift_randomly"]=1106, + ["map_hellscape_item_drop_quantity_+%"]=1120, + ["map_hellscape_item_drop_rarity_+%"]=1121, + ["map_hellscape_lightning_damage_taken_when_switching"]=1108, + ["map_hellscape_monster_damage_+%_final"]=1109, + ["map_hellscape_monster_damage_taken_+%_final"]=1110, + ["map_hellscape_monster_life_+%_final"]=1111, + ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1112, + ["map_hellscape_monster_slain_experience_+%_final"]=1122, + ["map_hellscape_pack_size_+%"]=1123, + ["map_hellscape_physical_damage_taken_when_switching"]=1113, + ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1124, + ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1125, + ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1126, + ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1127, + ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1128, + ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1129, + ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1130, + ["map_hellscape_rare_monster_drop_additional_essence"]=1131, + ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1132, + ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1133, + ["map_hellscape_rare_monster_drop_additional_gem"]=1134, + ["map_hellscape_rare_monster_drop_additional_incubator"]=1135, + ["map_hellscape_rare_monster_drop_additional_influence_item"]=1136, + ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1137, + ["map_hellscape_rare_monster_drop_additional_map_item"]=1138, + ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1139, + ["map_hellscape_rare_monster_drop_additional_scarab"]=1140, + ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1141, + ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1142, + ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1143, + ["map_hellscape_rare_monster_drop_additional_unique_item"]=1144, + ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1145, + ["map_hellscaping_speed_+%"]=7136, + ["map_humanoid_monster_potency_+%"]=8309, + ["map_imprisoned_monsters_action_speed_+%"]=8310, + ["map_imprisoned_monsters_damage_+%"]=8311, + ["map_imprisoned_monsters_damage_taken_+%"]=8312, + ["map_invasion_bosses_are_twinned"]=8313, + ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8314, + ["map_invasion_bosses_dropped_items_are_fully_linked"]=8315, + ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8316, + ["map_invasion_monster_packs"]=2416, + ["map_invasion_monsters_guarded_by_x_magic_packs"]=8317, + ["map_is_branchy"]=2056, + ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8318, + ["map_item_drop_quantity_+%"]=31, + ["map_item_drop_rarity_+%"]=32, + ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8319, + ["map_item_level_override"]=836, + ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8320, + ["map_items_drop_corrupted"]=2798, + ["map_items_drop_corrupted_%"]=2799, + ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=8321, + ["map_labyrinth_izaro_area_of_effect_+%"]=8322, + ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8323, + ["map_labyrinth_izaro_damage_+%"]=8324, + ["map_labyrinth_izaro_life_+%"]=8325, + ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8326, + ["map_labyrinth_monsters_damage_+%"]=8327, + ["map_labyrinth_monsters_life_+%"]=8328, + ["map_leaguestone_area_contains_x_additional_leaguestones"]=8329, + ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8330, + ["map_leaguestone_contains_warband_leader"]=8331, + ["map_leaguestone_explicit_warband_type_override"]=8332, + ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8333, + ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8334, + ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8335, + ["map_leaguestone_monolith_contains_essence_type"]=8336, + ["map_leaguestone_override_base_num_breaches"]=8337, + ["map_leaguestone_override_base_num_invasion_bosses"]=8338, + ["map_leaguestone_override_base_num_monoliths"]=8339, + ["map_leaguestone_override_base_num_perandus_chests"]=8340, + ["map_leaguestone_override_base_num_prophecy_coins"]=8341, + ["map_leaguestone_override_base_num_rogue_exiles"]=8342, + ["map_leaguestone_override_base_num_shrines"]=8343, + ["map_leaguestone_override_base_num_strongboxes"]=8344, + ["map_leaguestone_override_base_num_talismans"]=8345, + ["map_leaguestone_override_base_num_tormented_spirits"]=8346, + ["map_leaguestone_override_base_num_warband_packs"]=8347, + ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8348, + ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8349, + ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8350, + ["map_leaguestone_shrine_monster_rarity_override"]=8351, + ["map_leaguestone_shrine_override_type"]=8352, + ["map_leaguestone_strongboxes_rarity_override"]=8353, + ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8355, + ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8356, + ["map_leaguestone_x_monsters_spawn_abaxoth"]=8357, + ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8358, + ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8359, + ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8360, + ["map_legion_league_extra_spawns"]=8361, + ["map_legion_league_force_general"]=8362, + ["map_legion_league_force_war_chest"]=8363, + ["map_legion_monster_life_+%_final_from_sextant"]=8364, + ["map_legion_monster_splinter_emblem_drops_duplicated"]=8365, + ["map_level_+"]=8366, + ["map_logbook_has_at_least_1_expedition2_remnant_with_a_power_rune"]=8367, + ["map_logbook_has_at_least_1_expedition2_remnant_with_at_least_x_slots"]=8368, + ["map_magic_chest_amount_+%"]=2016, + ["map_magic_items_drop_as_normal"]=8369, + ["map_magic_monster_life_regeneration_rate_per_minute_%"]=3957, + ["map_magic_monster_potency_+%"]=8370, + ["map_magic_monsters_are_maimed"]=8371, + ["map_magic_monsters_damage_taken_+%"]=8372, + ["map_magic_pack_size_+%"]=2017, + ["map_metamorph_all_metamorphs_have_rewards"]=8373, + ["map_metamorph_boss_drops_additional_itemised_organs"]=8374, + ["map_metamorph_catalyst_drops_duplicated"]=8375, + ["map_metamorph_itemised_boss_min_rewards"]=8376, + ["map_metamorph_itemised_boss_more_difficult"]=8377, + ["map_metamorph_life_+%_final_from_sextant"]=8378, + ["map_metamorphosis_league"]=8379, + ["map_minimap_revealed"]=2088, + ["map_monolith_chance_%"]=8381, + ["map_monolith_chance_+%"]=8380, + ["map_monster_add_x_grasping_vines_on_hit"]=8396, + ["map_monster_additional_abyssal_monolithic_slug_packs"]=8382, + ["map_monster_additional_baron_packs"]=2018, + ["map_monster_additional_beasts_packs"]=2019, + ["map_monster_additional_beasts_packs_rare"]=2020, + ["map_monster_additional_bramble_packs"]=2021, + ["map_monster_additional_doryani_packs"]=2022, + ["map_monster_additional_ezomyte_packs"]=2023, + ["map_monster_additional_faridun_packs"]=2024, + ["map_monster_additional_incursion_ChainedBeastBoss_packs"]=8383, + ["map_monster_additional_incursion_SoulCoreQuadrilla_packs"]=8384, + ["map_monster_additional_incursion_SoulcoreFusedSkeleton_packs"]=8385, + ["map_monster_additional_incursion_VaalColossusBoss_packs"]=8386, + ["map_monster_additional_incursion_VaalSentinelBoss_packs"]=8387, + ["map_monster_additional_incursion_VaalSunPriestBoss_packs"]=8388, + ["map_monster_additional_perennial_packs"]=2025, + ["map_monster_additional_sanctified_packs"]=8389, + ["map_monster_additional_undead_packs"]=2026, + ["map_monster_additional_vaal_packs"]=2027, + ["map_monster_and_player_onslaught_effect_+%"]=8390, + ["map_monster_armour_evasion_energy_shield_+%"]=2611, + ["map_monster_attack_cast_and_movement_speed_+%"]=8391, + ["map_monster_beyond_portal_chance_+%"]=8392, + ["map_monster_curse_effect_on_self_+%"]=8393, + ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8394, + ["map_monster_damage_taken_+%_while_possessed"]=8395, + ["map_monster_drop_higher_level_gear"]=3298, + ["map_monster_item_rarity_+%_final"]=8397, + ["map_monster_melee_attacks_apply_random_curses"]=2181, + ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2182, + ["map_monster_no_drops"]=2189, + ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8398, + ["map_monster_skills_chain_X_additional_times"]=2184, + ["map_monster_slain_experience_+%"]=8400, + ["map_monster_tre_+%"]=2028, + ["map_monster_unaffected_by_shock"]=2142, + ["map_monsters_%_all_damage_to_gain_as_chaos"]=2174, + ["map_monsters_%_all_damage_to_gain_as_cold"]=2170, + ["map_monsters_%_all_damage_to_gain_as_fire"]=2168, + ["map_monsters_%_all_damage_to_gain_as_lightning"]=2172, + ["map_monsters_%_chance_to_inflict_status_ailments"]=8452, + ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2167, + ["map_monsters_%_physical_damage_to_convert_to_cold"]=2165, + ["map_monsters_%_physical_damage_to_convert_to_fire"]=2164, + ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2166, + ["map_monsters_%_physical_damage_to_gain_as_chaos"]=2175, + ["map_monsters_%_physical_damage_to_gain_as_cold"]=2171, + ["map_monsters_%_physical_damage_to_gain_as_fire"]=2169, + ["map_monsters_%_physical_damage_to_gain_as_lightning"]=2173, + ["map_monsters_accuracy_rating_+%"]=8401, + ["map_monsters_action_speed_-%"]=8402, + ["map_monsters_add_endurance_charge_on_hit_%"]=8403, + ["map_monsters_add_frenzy_charge_on_hit_%"]=8404, + ["map_monsters_add_power_charge_on_hit_%"]=8405, + ["map_monsters_additional_chaos_resistance"]=8406, + ["map_monsters_additional_cold_resistance"]=2159, + ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=8407, + ["map_monsters_additional_elemental_resistance"]=8408, + ["map_monsters_additional_fire_resistance"]=2158, + ["map_monsters_additional_lightning_resistance"]=2160, + ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8409, + ["map_monsters_additional_number_of_projecitles"]=2157, + ["map_monsters_additional_physical_damage_reduction"]=2161, + ["map_monsters_additional_strength_ratio_%_for_armour"]=8410, + ["map_monsters_ailment_threshold_+%"]=8411, + ["map_monsters_all_damage_can_chill"]=8412, + ["map_monsters_all_damage_can_freeze"]=8413, + ["map_monsters_all_damage_can_ignite"]=8414, + ["map_monsters_all_damage_can_poison"]=8415, + ["map_monsters_all_damage_can_shock"]=8416, + ["map_monsters_always_crit"]=8417, + ["map_monsters_always_hit"]=8418, + ["map_monsters_always_ignite"]=8419, + ["map_monsters_are_converted_on_kill"]=8420, + ["map_monsters_are_hexproof"]=2187, + ["map_monsters_are_immune_to_curses"]=2186, + ["map_monsters_area_of_effect_+%"]=2138, + ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=8421, + ["map_monsters_attack_speed_+%"]=2153, + ["map_monsters_attacks_inflict_bleeding_on_hit"]=8442, + ["map_monsters_avoid_ailments_%"]=2143, + ["map_monsters_avoid_elemental_ailments_%"]=2144, + ["map_monsters_avoid_freeze_and_chill_%"]=2139, + ["map_monsters_avoid_ignite_%"]=2140, + ["map_monsters_avoid_poison_bleed_impale_%"]=8422, + ["map_monsters_avoid_shock_%"]=2141, + ["map_monsters_base_bleed_duration_+%"]=8423, + ["map_monsters_base_block_%"]=8424, + ["map_monsters_base_chance_to_freeze_%"]=8425, + ["map_monsters_base_chance_to_shock_%"]=8426, + ["map_monsters_base_poison_duration_+%"]=8427, + ["map_monsters_base_self_critical_strike_multiplier_-%"]=3314, + ["map_monsters_cannot_be_leeched_from"]=2147, + ["map_monsters_cannot_be_stunned"]=2162, + ["map_monsters_cannot_be_taunted"]=8428, + ["map_monsters_cast_speed_+%"]=2154, + ["map_monsters_chance_to_blind_on_hit_%"]=8429, + ["map_monsters_chance_to_impale_%"]=8430, + ["map_monsters_chance_to_inflict_bleeding_%"]=8431, + ["map_monsters_chance_to_inflict_brittle_%"]=8432, + ["map_monsters_chance_to_inflict_sapped_%"]=8433, + ["map_monsters_chance_to_poison_on_hit_%"]=8434, + ["map_monsters_chance_to_scorch_%"]=8435, + ["map_monsters_critical_strike_chance_+%"]=2145, + ["map_monsters_critical_strike_multiplier_+"]=2146, + ["map_monsters_curse_effect_+%"]=2188, + ["map_monsters_curse_effect_on_self_+%_final"]=8436, + ["map_monsters_damage_+%"]=2150, + ["map_monsters_damage_taken_+%"]=8437, + ["map_monsters_drop_ground_fire_on_death_base_radius"]=2185, + ["map_monsters_drop_no_equipment"]=8438, + ["map_monsters_elemental_ailment_chance_+%"]=8439, + ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8440, + ["map_monsters_energy_shield_leech_resistance_permyriad"]=3987, + ["map_monsters_freeze_duration_+%"]=8441, + ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2178, + ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2177, + ["map_monsters_gain_x_power_charges_every_20_seconds"]=2179, + ["map_monsters_global_poison_on_hit"]=8443, + ["map_monsters_have_onslaught"]=2151, + ["map_monsters_hit_damage_freeze_multiplier_+%"]=8444, + ["map_monsters_hit_damage_stun_multiplier_+%"]=8445, + ["map_monsters_ignite_chance_+%"]=8446, + ["map_monsters_ignite_duration_+%"]=8447, + ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2180, + ["map_monsters_life_+%"]=2137, + ["map_monsters_life_leech_resistance_permyriad"]=2148, + ["map_monsters_maim_on_hit_%_chance"]=8448, + ["map_monsters_mana_leech_resistance_permyriad"]=2149, + ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8449, + ["map_monsters_movement_speed_+%"]=2152, + ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8450, + ["map_monsters_penetrate_elemental_resistances_%"]=8451, + ["map_monsters_physical_damage_%_to_gain_as_random_element"]=2176, + ["map_monsters_poison_on_hit"]=2163, + ["map_monsters_reduce_enemy_chaos_resistance_%"]=8453, + ["map_monsters_reduce_enemy_cold_resistance_%"]=8454, + ["map_monsters_reduce_enemy_fire_resistance_%"]=8455, + ["map_monsters_reduce_enemy_lightning_resistance_%"]=8456, + ["map_monsters_reflect_%_elemental_damage"]=2156, + ["map_monsters_reflect_%_physical_damage"]=2155, + ["map_monsters_reflect_curses"]=2183, + ["map_monsters_remove_%_of_mana_on_hit"]=8459, + ["map_monsters_remove_charges_on_hit_%"]=8457, + ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8458, + ["map_monsters_shock_chance_+%"]=8460, + ["map_monsters_shock_effect_+%"]=8461, + ["map_monsters_skill_speed_+%"]=8399, + ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8462, + ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8463, + ["map_monsters_steal_charges"]=8464, + ["map_monsters_stun_threshold_+%"]=8465, + ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8466, + ["map_monsters_unaffected_by_curses"]=8467, + ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8468, + ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8469, + ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8470, + ["map_monstrous_treasure_no_monsters"]=8471, + ["map_movement_velocity_+%_per_poison_stack"]=8472, + ["map_natural_rare_monsters_have_soul_eater"]=8473, + ["map_natural_rare_monsters_have_x_additional_abyssal_modifiers"]=8474, + ["map_nemesis_dropped_items_+"]=8475, + ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8476, + ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8477, + ["map_no_experience"]=8528, + ["map_no_magic_items_drop"]=8478, + ["map_no_rare_items_drop"]=8479, + ["map_no_refills_in_town"]=2089, + ["map_no_stashes"]=8480, + ["map_no_uniques_drop_randomly"]=8481, + ["map_no_vendors"]=8482, + ["map_non_unique_equipment_drops_as_sell_price"]=2797, + ["map_non_unique_items_drop_normal"]=8483, + ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8484, + ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2114, + ["map_normal_items_drop_as_magic"]=8485, + ["map_normal_monster_life_regeneration_rate_per_minute_%"]=3956, + ["map_normal_monster_potency_+%"]=8486, + ["map_nuke_everything"]=8487, + ["map_num_extra_abysses"]=8488, + ["map_num_extra_blights_"]=8489, + ["map_num_extra_gloom_shrines"]=8490, + ["map_num_extra_harbingers"]=8491, + ["map_num_extra_invasion_bosses"]=2417, + ["map_num_extra_resonating_shrines"]=8492, + ["map_num_extra_shrines"]=2105, + ["map_num_extra_stone_circles"]=8493, + ["map_num_extra_strongboxes"]=2113, + ["map_number_of_additional_mods"]=8494, + ["map_number_of_additional_prefixes"]=8495, + ["map_number_of_additional_silver_coin_drops"]=8496, + ["map_number_of_additional_suffixes"]=8497, + ["map_number_of_harbinger_portals"]=87, + ["map_on_complete_drop_x_additional_maps"]=8498, + ["map_owner_sulphite_gained_+%"]=8499, + ["map_packs_are_abomination_monsters"]=8500, + ["map_packs_are_animals"]=2095, + ["map_packs_are_bandits"]=2093, + ["map_packs_are_blackguards"]=8501, + ["map_packs_are_demons"]=2096, + ["map_packs_are_ghosts"]=8502, + ["map_packs_are_goatmen"]=2094, + ["map_packs_are_humanoids"]=2097, + ["map_packs_are_kitava"]=8503, + ["map_packs_are_lunaris"]=8504, + ["map_packs_are_sea_witches_and_spawn"]=2098, + ["map_packs_are_skeletons"]=2092, + ["map_packs_are_solaris"]=8505, + ["map_packs_are_spiders"]=8506, + ["map_packs_are_str_mission_totems"]=2091, + ["map_packs_are_totems"]=2090, + ["map_packs_are_undead_and_necromancers"]=2099, + ["map_packs_are_vaal"]=8507, + ["map_packs_fire_projectiles"]=2100, + ["map_packs_have_pop_up_traps"]=3949, + ["map_perandus_guards_are_rare"]=8508, + ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8509, + ["map_player_accuracy_rating_+%_final"]=8510, + ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1114, + ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8511, + ["map_player_base_chaos_damage_taken_per_minute"]=2115, + ["map_player_block_chance_%_in_hellscape"]=1115, + ["map_player_buff_time_passed_+%_only_buff_category"]=8512, + ["map_player_cannot_block_attacks"]=8513, + ["map_player_cannot_expose"]=2117, + ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8514, + ["map_player_charges_gained_+%"]=8515, + ["map_player_cooldown_speed_+%_final"]=8516, + ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2934, + ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8517, + ["map_player_curse_effect_on_self_+%"]=8518, + ["map_player_damage_+%_vs_breach_monsters"]=8519, + ["map_player_damage_taken_+%_vs_breach_monsters"]=8520, + ["map_player_damage_taken_+%_while_rampaging"]=8521, + ["map_player_death_mark_on_rare_unique_kill_ms"]=8522, + ["map_player_disable_soul_gain_prevention"]=8523, + ["map_player_es_loss_per_second_in_hellscape"]=1116, + ["map_player_flask_recovery_is_instant"]=8524, + ["map_player_global_armour_evasion_energy_shield_+%_final_from_sanctum_boon"]=2612, + ["map_player_has_blood_magic_keystone"]=2116, + ["map_player_has_chaos_inoculation_keystone"]=2118, + ["map_player_has_level_X_conductivity"]=2129, + ["map_player_has_level_X_despair"]=2130, + ["map_player_has_level_X_elemental_weakness"]=2124, + ["map_player_has_level_X_enfeeble"]=2120, + ["map_player_has_level_X_flammability"]=2127, + ["map_player_has_level_X_frostbite"]=2128, + ["map_player_has_level_X_punishment"]=2126, + ["map_player_has_level_X_silence"]=2131, + ["map_player_has_level_X_temporal_chains"]=2122, + ["map_player_has_level_X_vulnerability"]=2119, + ["map_player_has_random_level_X_curse_every_10_seconds"]=8525, + ["map_player_life_and_es_recovery_speed_+%_final"]=8526, + ["map_player_life_loss_per_second_in_hellscape"]=1117, + ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8527, + ["map_player_lose_no_experience_on_death"]=8528, + ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=8529, + ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=8530, + ["map_player_movement_speed_+%_final_in_hellscape"]=1118, + ["map_player_movement_velocity_+%"]=8531, + ["map_player_no_regeneration"]=2132, + ["map_player_non_curse_aura_effect_+%"]=8532, + ["map_player_onslaught_on_kill_%"]=8533, + ["map_player_projectile_damage_+%_final"]=2135, + ["map_player_shrine_buff_effect_on_self_+%"]=8534, + ["map_player_shrine_effect_duration_+%"]=8535, + ["map_player_soul_eater_souls_stolen_on_rare_kill"]=8536, + ["map_player_speed_+%_final_per_recent_skill_use"]=8537, + ["map_player_status_recovery_speed_+%"]=2134, + ["map_players_additional_number_of_projectiles"]=2157, + ["map_players_and_monsters_chaos_damage_taken_+%"]=8538, + ["map_players_and_monsters_cold_damage_taken_+%"]=8539, + ["map_players_and_monsters_critical_strike_chance_+%"]=8540, + ["map_players_and_monsters_curses_are_reflected"]=8541, + ["map_players_and_monsters_damage_+%_per_curse"]=8542, + ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8543, + ["map_players_and_monsters_fire_damage_taken_+%"]=8544, + ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8545, + ["map_players_and_monsters_have_resolute_technique"]=8546, + ["map_players_and_monsters_lightning_damage_taken_+%"]=8547, + ["map_players_and_monsters_movement_speed_+%"]=8548, + ["map_players_and_monsters_physical_damage_taken_+%"]=8549, + ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8550, + ["map_players_armour_+%_final"]=8551, + ["map_players_block_chance_+%"]=8552, + ["map_players_cannot_gain_endurance_charges"]=8553, + ["map_players_cannot_gain_flask_charges"]=8554, + ["map_players_cannot_gain_frenzy_charges"]=8555, + ["map_players_cannot_gain_power_charges"]=8556, + ["map_players_cannot_take_reflected_damage"]=8557, + ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8558, + ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8559, + ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8560, + ["map_players_gain_onslaught_during_flask_effect"]=8561, + ["map_players_gain_rampage_stacks"]=2421, + ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8562, + ["map_players_gain_rare_monster_mods_on_kill_ms"]=3143, + ["map_players_gain_soul_eater_on_rare_kill_ms"]=3145, + ["map_players_have_decay_rarity_buff"]=8563, + ["map_players_have_point_blank"]=8564, + ["map_players_movement_skills_cooldown_speed_+%"]=8565, + ["map_players_movement_speed_+%"]=8566, + ["map_players_no_regeneration_including_es"]=8567, + ["map_players_resist_all_%"]=8568, + ["map_players_skill_area_of_effect_+%_final"]=8569, + ["map_portals_do_not_expire"]=8570, + ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8571, + ["map_possessed_monsters_drop_map_chance_%"]=8572, + ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8573, + ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8574, + ["map_possessed_monsters_drop_unique_chance_%"]=8575, + ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8576, + ["map_prefix_mod_effect_+%_final"]=8577, + ["map_projectile_speed_+%"]=2136, + ["map_rampage_time_+%"]=8578, + ["map_random_unique_monster_is_possessed"]=8579, + ["map_random_zana_mod"]=8580, + ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8581, + ["map_rare_breach_monsters_drop_additional_shards"]=8582, + ["map_rare_chest_amount_+%"]=2029, + ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=8583, + ["map_rare_monster_life_regeneration_rate_per_minute_%"]=3958, + ["map_rare_monster_num_additional_modifiers"]=8584, + ["map_rare_monster_potency_+%"]=8585, + ["map_rare_monsters_are_hindered"]=8586, + ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8587, + ["map_rare_monsters_drop_x_additional_rare_items"]=8588, + ["map_rare_monsters_have_inner_treasure"]=8589, + ["map_reliquary_set"]=8590, + ["map_ritual_additional_reward_rerolls"]=8591, + ["map_ritual_contains_alphas_howl"]=8592, + ["map_ritual_contains_astramentis"]=8593, + ["map_ritual_contains_chaos_orbs"]=8594, + ["map_ritual_contains_defiance_of_destiny"]=8595, + ["map_ritual_contains_divine_orbs"]=8596, + ["map_ritual_contains_dream_fragments"]=8597, + ["map_ritual_contains_exalted_orbs"]=8598, + ["map_ritual_contains_greater_augmentation"]=8599, + ["map_ritual_contains_greater_chaos"]=8600, + ["map_ritual_contains_greater_exalt"]=8601, + ["map_ritual_contains_greater_omen_annulment"]=8602, + ["map_ritual_contains_greater_regal"]=8603, + ["map_ritual_contains_greater_transmutation"]=8604, + ["map_ritual_contains_headhunter"]=8605, + ["map_ritual_contains_kalandras_touch"]=8606, + ["map_ritual_contains_mageblood"]=8607, + ["map_ritual_contains_omen_amelioration"]=8608, + ["map_ritual_contains_omen_blessed"]=8609, + ["map_ritual_contains_omen_chance"]=8610, + ["map_ritual_contains_omen_corruption"]=8611, + ["map_ritual_contains_omen_dextral_annulment"]=8612, + ["map_ritual_contains_omen_dextral_crystallisation"]=8613, + ["map_ritual_contains_omen_dextral_erasure"]=8614, + ["map_ritual_contains_omen_dextral_exaltation"]=8615, + ["map_ritual_contains_omen_sanctification"]=8616, + ["map_ritual_contains_omen_sinistral_annulment"]=8617, + ["map_ritual_contains_omen_sinistral_crystallisation"]=8618, + ["map_ritual_contains_omen_sinistral_erasure"]=8619, + ["map_ritual_contains_omen_sinistral_exaltation"]=8620, + ["map_ritual_contains_omen_whittling"]=8621, + ["map_ritual_contains_orbs_of_annulment"]=8622, + ["map_ritual_contains_orbs_of_chance"]=8623, + ["map_ritual_contains_original_sin"]=8624, + ["map_ritual_contains_perfect_augmentation"]=8625, + ["map_ritual_contains_perfect_chaos"]=8626, + ["map_ritual_contains_perfect_exalt"]=8627, + ["map_ritual_contains_perfect_regal"]=8628, + ["map_ritual_contains_perfect_transmutation"]=8629, + ["map_ritual_contains_queen_of_the_forest"]=8630, + ["map_ritual_contains_yoke_of_suffering"]=8631, + ["map_ritual_defer_reward_tribute_cost_+%"]=8632, + ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=8633, + ["map_ritual_magic_monsters_+%"]=8634, + ["map_ritual_number_of_free_rerolls"]=8635, + ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=8636, + ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=8637, + ["map_ritual_omen_chance_+%"]=8638, + ["map_ritual_rare_monsters_+%"]=8639, + ["map_ritual_rewards_reroll_cost_+%_final"]=8640, + ["map_ritual_tribute_+%"]=8641, + ["map_ritual_uber_rune_type_weighting_+%"]=8642, + ["map_ritual_unlimited_reward_rerolls"]=8643, + ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8644, + ["map_rogue_exile_chance_%"]=8646, + ["map_rogue_exile_chance_+%"]=8645, + ["map_rogue_exile_drop_skill_gem_with_quality"]=8647, + ["map_rogue_exiles_are_doubled"]=8648, + ["map_rogue_exiles_damage_+%"]=8649, + ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8650, + ["map_rogue_exiles_drop_x_additional_jewels"]=8651, + ["map_rogue_exiles_dropped_items_are_corrupted"]=8652, + ["map_rogue_exiles_dropped_items_are_duplicated"]=8653, + ["map_rogue_exiles_dropped_items_are_fully_linked"]=8654, + ["map_rogue_exiles_maximum_life_+%"]=8655, + ["map_shaper_rare_chance_+%"]=8656, + ["map_shrine_chance_%"]=8658, + ["map_shrine_chance_+%"]=8657, + ["map_shrine_monster_life_+%_final"]=8659, + ["map_shrines_are_darkshrines"]=2106, + ["map_shrines_drop_x_currency_items_on_activation"]=8660, + ["map_shrines_grant_a_random_additional_effect"]=8661, + ["map_simulacrum_reward_level_+"]=8662, + ["map_size_+%"]=2046, + ["map_spawn_abysses"]=8663, + ["map_spawn_affliction_mirror"]=8664, + ["map_spawn_bestiary_encounters"]=8665, + ["map_spawn_betrayals"]=2415, + ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8666, + ["map_spawn_cadiro_%_chance"]=8667, + ["map_spawn_exile_per_area_%"]=2412, + ["map_spawn_extra_exiles"]=2103, + ["map_spawn_extra_perandus_chests"]=8668, + ["map_spawn_extra_talismans"]=2110, + ["map_spawn_extra_torment_spirits"]=2112, + ["map_spawn_extra_warbands"]=2104, + ["map_spawn_harbingers"]=2107, + ["map_spawn_heist_smugglers_cache"]=8669, + ["map_spawn_incursion_encounters"]=8670, + ["map_spawn_perandus_chests"]=2109, + ["map_spawn_talismans"]=2108, + ["map_spawn_tormented_spirits"]=2418, + ["map_spawn_two_bosses"]=2190, + ["map_spawn_x_additional_heist_smugglers_caches"]=8671, + ["map_spawn_x_random_map_bosses"]=8672, + ["map_stone_circle_chance_+%"]=8673, + ["map_storm_area_of_effect_+%"]=8674, + ["map_strongbox_chain_length"]=107, + ["map_strongbox_chance_%"]=8675, + ["map_strongbox_chance_+%"]=8676, + ["map_strongbox_items_dropped_are_mirrored"]=8677, + ["map_strongbox_monsters_attack_speed_+%"]=8678, + ["map_strongbox_monsters_damage_+%"]=138, + ["map_strongbox_monsters_item_quantity_+%"]=8679, + ["map_strongbox_monsters_life_+%"]=131, + ["map_strongboxes_additional_pack_chance_%"]=127, + ["map_strongboxes_are_corrupted"]=8680, + ["map_strongboxes_at_least_rare"]=8681, + ["map_strongboxes_drop_x_additional_rare_items"]=8682, + ["map_strongboxes_minimum_rarity"]=8683, + ["map_strongboxes_vaal_orb_drop_chance_%"]=8354, + ["map_suffix_mod_effect_+%_final"]=8684, + ["map_synthesis_league"]=8685, + ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8686, + ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8687, + ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8688, + ["map_synthesis_spawn_additional_magic_ambush_chest"]=8689, + ["map_synthesis_spawn_additional_normal_ambush_chest"]=8690, + ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8691, + ["map_synthesis_spawn_additional_rare_ambush_chest"]=8692, + ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8693, + ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8694, + ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8695, + ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8696, + ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8697, + ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8698, + ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8699, + ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8700, + ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8701, + ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8702, + ["map_synthesised_magic_monster_drop_additional_currency"]=8703, + ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8704, + ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8705, + ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8706, + ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8707, + ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8708, + ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8709, + ["map_synthesised_magic_monster_map_drop_chance_+%"]=8710, + ["map_synthesised_magic_monster_slain_experience_+%"]=8711, + ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8712, + ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8713, + ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8714, + ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8715, + ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8716, + ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8717, + ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8718, + ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8719, + ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8720, + ["map_synthesised_monster_dropped_item_quantity_+%"]=8721, + ["map_synthesised_monster_dropped_item_rarity_+%"]=8722, + ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8723, + ["map_synthesised_monster_items_drop_corrupted_%"]=8724, + ["map_synthesised_monster_map_drop_chance_+%"]=8725, + ["map_synthesised_monster_pack_size_+%"]=8726, + ["map_synthesised_monster_slain_experience_+%"]=8727, + ["map_synthesised_monster_unique_item_drop_chance_+%"]=8728, + ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8729, + ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8730, + ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8731, + ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8732, + ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8733, + ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8734, + ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8735, + ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8736, + ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8737, + ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8738, + ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8739, + ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8740, + ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8741, + ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8742, + ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8743, + ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8744, + ["map_synthesised_rare_monster_drop_additional_currency"]=8745, + ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8746, + ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8747, + ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8748, + ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8749, + ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8750, + ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8751, + ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8752, + ["map_synthesised_rare_monster_map_drop_chance_+%"]=8753, + ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8754, + ["map_synthesised_rare_monster_slain_experience_+%"]=8755, + ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8756, + ["map_talismans_dropped_as_rare"]=8757, + ["map_talismans_higher_tier"]=8758, + ["map_tempest_area_of_effect_+%_visible"]=8759, + ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2086, + ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2082, + ["map_tempest_corruption_weight"]=8760, + ["map_tempest_display_prefix"]=33, + ["map_tempest_display_suffix"]=34, + ["map_tempest_frequency_+%"]=8761, + ["map_tempest_ground_ice"]=2083, + ["map_tempest_ground_lightning"]=2084, + ["map_tempest_ground_tar_movement_speed_+%"]=2085, + ["map_tempest_radiant_weight"]=8762, + ["map_temporal_chains_curse_zones"]=2123, + ["map_tormented_spirit_chance_%"]=8763, + ["map_tormented_spirit_chance_+%"]=8764, + ["map_tormented_spirits_drop_x_additional_rare_items"]=8765, + ["map_tormented_spirits_duration_+%"]=8766, + ["map_tormented_spirits_movement_speed_+%"]=8767, + ["map_tower_augment_quantity_+%"]=8768, + ["map_uber_map_player_damage_cycle"]=8769, + ["map_unique_boss_drops_divination_cards"]=8770, + ["map_unique_boss_num_additional_modifiers"]=8771, + ["map_unique_item_drop_chance_+%"]=8772, + ["map_unique_monster_num_additional_modifiers"]=8773, + ["map_unique_monster_potency_+%"]=8774, + ["map_unique_monsters_drop_corrupted_items"]=8775, + ["map_upgrade_pack_to_magic_%_chance"]=8776, + ["map_upgrade_pack_to_rare_%_chance"]=8777, + ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8778, + ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8779, + ["map_vaal_monster_items_drop_corrupted_%"]=8780, + ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8781, + ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8782, + ["map_vaal_temple_spawn_additional_vaal_vessels"]=8783, + ["map_vaal_vessel_drop_X_divination_cards"]=8784, + ["map_vaal_vessel_drop_X_fossils"]=8785, + ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8786, + ["map_vaal_vessel_drop_X_mortal_fragments"]=8787, + ["map_vaal_vessel_drop_X_prophecies"]=8788, + ["map_vaal_vessel_drop_X_rare_temple_items"]=8789, + ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8790, + ["map_vaal_vessel_drop_X_vaal_orbs"]=8791, + ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8792, + ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8793, + ["map_vaal_vessel_item_drop_quantity_+%"]=8794, + ["map_vaal_vessel_item_drop_rarity_+%"]=8795, + ["map_verisium_drop_chance_+%"]=8796, + ["map_warbands_packs_have_additional_elites"]=8797, + ["map_warbands_packs_have_additional_grunts"]=8798, + ["map_warbands_packs_have_additional_supports"]=8799, + ["map_watchstone_additional_packs_of_elder_monsters"]=8800, + ["map_watchstone_additional_packs_of_shaper_monsters"]=8801, + ["map_watchstone_monsters_damage_+%_final"]=8802, + ["map_watchstone_monsters_life_+%_final"]=8803, + ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=132, + ["map_weapon_and_shields_drop_fractured_%_chance"]=133, + ["map_weapon_and_shields_drop_fully_linked_%_chance"]=134, + ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=135, + ["map_weapons_drop_animated"]=2800, + ["maps_with_powerful_bosses_additional_essence_+"]=8804, + ["maps_with_powerful_bosses_additional_shrine_+"]=8805, + ["maps_with_powerful_bosses_additional_spirit_+"]=8806, + ["maps_with_powerful_bosses_additional_strongbox_+"]=8807, + ["marauder_hidden_ascendancy_damage_+%_final"]=8808, + ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8809, + ["mark_effect_+%"]=2400, + ["mark_grants_%_max_glory_to_random_skill_on_activate"]=8810, + ["mark_skill_duration_+%"]=8811, + ["mark_skill_gem_level_+"]=8812, + ["mark_skill_mana_cost_+%"]=8813, + ["mark_use_speed_+%"]=1968, + ["marked_enemies_cannot_deal_critical_strikes"]=8814, + ["marked_enemies_cannot_regenerate_life"]=8815, + ["marked_enemy_accuracy_rating_+%"]=8816, + ["marked_enemy_damage_taken_+%"]=8817, + ["marked_or_cursed_enemy_damage_taken_+%"]=8818, + ["marks_avoid_consumption_when_first_activated"]=8819, + ["marks_you_inflict_remain_after_death"]=8820, + ["master_of_elements_evasion_rating_+%_final"]=8821, + ["maven_fight_layout_override"]=8822, + ["max_adaptations_+"]=1441, + ["max_chance_to_block_attacks_if_not_blocked_recently"]=8823, + ["max_charged_attack_stacks"]=3894, + ["max_endurance_charges"]=1581, + ["max_fortification_+1_per_5"]=8824, + ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10624, + ["max_fortification_while_focused_+1_per_5"]=8825, + ["max_fortification_while_stationary_+1_per_5"]=8826, + ["max_frenzy_charges"]=1586, + ["max_life_%_as_mana"]=1450, + ["max_life_%_as_spirit"]=1439, + ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8827, + ["max_power_charges"]=1591, + ["max_puppet_master_stacks_+"]=8828, + ["max_rage_+_if_glory_skill_used_in_last_20_seconds"]=8829, + ["max_rage_+_per_glory_skill_used_in_last_6_seconds"]=8830, + ["max_steel_ammo"]=8831, + ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1594, + ["maximum_added_chaos_damage_if_have_crit_recently"]=8942, + ["maximum_added_chaos_damage_per_curse_on_enemy"]=8943, + ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8944, + ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8945, + ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8946, + ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8947, + ["maximum_added_cold_damage_if_have_crit_recently"]=8948, + ["maximum_added_cold_damage_per_frenzy_charge"]=3940, + ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8949, + ["maximum_added_cold_damage_to_attacks_per_20_dexterity"]=8950, + ["maximum_added_cold_damage_vs_chilled_enemies"]=8951, + ["maximum_added_cold_damage_while_affected_by_hatred"]=8952, + ["maximum_added_cold_damage_while_you_have_avians_might"]=8953, + ["maximum_added_fire_attack_damage_per_active_buff"]=1236, + ["maximum_added_fire_damage_if_blocked_recently"]=3942, + ["maximum_added_fire_damage_if_have_crit_recently"]=8954, + ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8955, + ["maximum_added_fire_damage_per_active_buff"]=1238, + ["maximum_added_fire_damage_per_endurance_charge"]=8956, + ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8957, + ["maximum_added_fire_damage_to_attacks_per_25_strength"]=1843, + ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8958, + ["maximum_added_fire_damage_vs_ignited_enemies"]=1235, + ["maximum_added_fire_spell_damage_per_active_buff"]=1237, + ["maximum_added_lightning_damage_if_have_crit_recently"]=8959, + ["maximum_added_lightning_damage_per_10_int"]=8832, + ["maximum_added_lightning_damage_per_power_charge"]=8960, + ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8961, + ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8962, + ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8963, + ["maximum_added_lightning_damage_while_you_have_avians_might"]=8964, + ["maximum_added_physical_damage_if_have_crit_recently"]=8965, + ["maximum_added_physical_damage_per_endurance_charge"]=8966, + ["maximum_added_physical_damage_per_impaled_on_enemy"]=8967, + ["maximum_added_physical_damage_vs_bleeding_enemies"]=2297, + ["maximum_added_physical_damage_vs_frozen_enemies"]=1234, + ["maximum_added_physical_damage_vs_poisoned_enemies"]=8968, + ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8969, + ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=8970, + ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=8971, + ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1589, + ["maximum_arrow_fire_damage_added_for_each_pierce"]=4450, + ["maximum_blitz_charges"]=8833, + ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8834, + ["maximum_blood_scythe_charges"]=4037, + ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1584, + ["maximum_caltrops_allowed"]=8835, + ["maximum_challenger_charges"]=8836, + ["maximum_chance_to_evade_is_50%"]=8837, + ["maximum_chaos_damage_to_return_to_melee_attacker"]=1956, + ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8839, + ["maximum_cold_damage_resistance_+%_while_shapeshifted"]=8838, + ["maximum_cold_damage_to_return_to_melee_attacker"]=1954, + ["maximum_cold_infusion_stacks"]=8840, + ["maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed"]=8841, + ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8842, + ["maximum_critical_strike_chance"]=2531, + ["maximum_critical_strike_chance_is_%_from_support_garukhans_resolve"]=8843, + ["maximum_darkness_+%"]=8844, + ["maximum_divine_charges"]=4070, + ["maximum_divinity_+%"]=8845, + ["maximum_divinity_+%_per_equipped_corrupted_item"]=8846, + ["maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently"]=8847, + ["maximum_endurance_charges_+_if_you_have_at_least_100_tribute"]=8848, + ["maximum_endurance_charges_+_while_affected_by_determination"]=8849, + ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1582, + ["maximum_energy_shield_%_lost_on_kill"]=1540, + ["maximum_energy_shield_+%"]=909, + ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1476, + ["maximum_energy_shield_+%_per_10_tribute"]=8850, + ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8851, + ["maximum_energy_shield_+_per_100_life_reserved"]=1451, + ["maximum_energy_shield_+_per_5_armour_on_shield"]=4060, + ["maximum_energy_shield_+_per_5_strength"]=3473, + ["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=1452, + ["maximum_energy_shield_from_body_armour_+%"]=8852, + ["maximum_es_+%_per_equipped_corrupted_item"]=2848, + ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2780, + ["maximum_fanaticism_charges"]=8853, + ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8856, + ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8854, + ["maximum_fire_damage_resistance_+%_while_shapeshifted"]=8855, + ["maximum_fire_damage_to_return_to_melee_attacker"]=1953, + ["maximum_fire_infusion_stacks"]=8857, + ["maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed"]=8858, + ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8859, + ["maximum_frenzy_charges_+_if_you_have_at_least_100_tribute"]=8860, + ["maximum_frenzy_charges_+_while_affected_by_grace"]=8861, + ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1587, + ["maximum_frenzy_power_endurance_charges"]=8862, + ["maximum_guard_is_based_on_energy_shield"]=8863, + ["maximum_intensify_stacks"]=8865, + ["maximum_life_%_lost_on_kill"]=1538, + ["maximum_life_%_to_convert_to_armour_per_1%_chaos_resistance"]=1456, + ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8873, + ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"]=8866, + ["maximum_life_%_to_convert_to_twice_as_much_armour_per_1%_chaos_resistance"]=1457, + ["maximum_life_%_to_gain_as_armour"]=8874, + ["maximum_life_%_to_gain_as_maximum_energy_shield"]=1458, + ["maximum_life_+%"]=912, + ["maximum_life_+%_and_fire_resistance_-%"]=1474, + ["maximum_life_+%_final_from_caster_weapon_runic_ward_socketable"]=8867, + ["maximum_life_+%_for_corpses_you_create"]=8875, + ["maximum_life_+%_if_10_red_supports_socketed"]=8868, + ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8876, + ["maximum_life_+%_if_you_have_at_least_100_tribute"]=8869, + ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8877, + ["maximum_life_+%_per_equipped_corrupted_item"]=2847, + ["maximum_life_+%_per_stackable_unique_jewel"]=3838, + ["maximum_life_mana_and_energy_shield_+%"]=3982, + ["maximum_life_per_10_dexterity"]=8870, + ["maximum_life_per_10_intelligence"]=8871, + ["maximum_life_per_10_levels"]=2544, + ["maximum_life_per_2%_increased_item_found_rarity"]=8872, + ["maximum_life_per_equipped_elder_item"]=4020, + ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2779, + ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8879, + ["maximum_lightning_damage_resistance_+%_while_shapeshifted"]=8878, + ["maximum_lightning_damage_to_return_on_block"]=2390, + ["maximum_lightning_damage_to_return_to_melee_attacker"]=1955, + ["maximum_lightning_infusion_stacks"]=8880, + ["maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed"]=8881, + ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8882, + ["maximum_mana_%_gained_on_kill"]=1539, + ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=1459, + ["maximum_mana_+%"]=917, + ["maximum_mana_+%_and_cold_resistance_-%"]=1475, + ["maximum_mana_+%_if_10_blue_supports_socketed"]=8883, + ["maximum_mana_+%_if_you_have_at_least_100_tribute"]=8884, + ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8885, + ["maximum_number_of_blades_left_in_ground"]=8886, + ["maximum_physical_attack_damage_on_crit_+%_final"]=8887, + ["maximum_physical_damage_reduction_%"]=1443, + ["maximum_physical_damage_reduction_is_50%"]=8888, + ["maximum_physical_damage_to_reflect_to_self_on_attack"]=1951, + ["maximum_physical_damage_to_return_on_block"]=2389, + ["maximum_physical_damage_to_return_to_melee_attacker"]=1952, + ["maximum_power_and_endurance_charges_+"]=8889, + ["maximum_power_and_frenzy_charges_+"]=1592, + ["maximum_power_charges_+_if_you_have_at_least_100_tribute"]=8890, + ["maximum_power_charges_+_while_affected_by_discipline"]=8891, + ["maximum_rage"]=9592, + ["maximum_rage_+_while_shapeshifted"]=8892, + ["maximum_rage_+_while_wielding_axe"]=8893, + ["maximum_rage_per_50_tribute"]=8894, + ["maximum_rage_per_equipped_one_handed_sword"]=8895, + ["maximum_random_movement_velocity_+%_when_hit"]=8896, + ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4063, + ["maximum_virulence_stacks"]=8897, + ["maximum_void_arrows"]=4038, + ["maximum_volatility_allowed"]=8898, + ["maximum_ward_+%"]=914, + ["melee_ancestor_totem_damage_+%"]=3326, + ["melee_ancestor_totem_elemental_resistance_%"]=3792, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3494, + ["melee_ancestor_totem_placement_speed_+%"]=3659, + ["melee_attack_deal_thorns_damage_chance_%_on_hit"]=10248, + ["melee_attack_number_of_spirit_strikes"]=8899, + ["melee_attack_skills_additional_totems_allowed"]=8900, + ["melee_attack_speed_+%"]=1336, + ["melee_attacks_number_of_additional_projectiles"]=3871, + ["melee_attacks_usable_without_mana_cost"]=2478, + ["melee_cold_damage_+%"]=1751, + ["melee_cold_damage_+%_while_fortify_is_active"]=2040, + ["melee_cold_damage_+%_while_holding_shield"]=1754, + ["melee_critical_strike_chance_+%"]=1398, + ["melee_critical_strike_chance_+%_if_warcried_recently"]=8901, + ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8902, + ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1420, + ["melee_damage_+%"]=1210, + ["melee_damage_+%_at_close_range"]=8906, + ["melee_damage_+%_during_flask_effect"]=8907, + ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8903, + ["melee_damage_+%_per_endurance_charge"]=3851, + ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8908, + ["melee_damage_+%_vs_burning_enemies"]=1215, + ["melee_damage_+%_vs_frozen_enemies"]=1211, + ["melee_damage_+%_vs_heavy_stunned_enemies"]=8909, + ["melee_damage_+%_vs_immobilised_enemies"]=8904, + ["melee_damage_+%_vs_shocked_enemies"]=1213, + ["melee_damage_+%_when_on_full_life"]=2434, + ["melee_damage_+%_while_fortified"]=3921, + ["melee_damage_+%_with_spears_while_surrounded"]=8905, + ["melee_damage_taken_%_to_deal_to_attacker"]=2500, + ["melee_damage_taken_+%"]=2532, + ["melee_damage_vs_bleeding_enemies_+%"]=2295, + ["melee_fire_damage_+%"]=1750, + ["melee_fire_damage_+%_while_holding_shield"]=1753, + ["melee_hit_damage_stun_multiplier_+%"]=8910, + ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8911, + ["melee_hits_grant_rampage_stacks"]=10646, + ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8912, + ["melee_physical_damage_+%"]=1749, + ["melee_physical_damage_+%_per_10_dexterity"]=8913, + ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8914, + ["melee_physical_damage_+%_vs_ignited_enemies"]=3993, + ["melee_physical_damage_+%_while_fortify_is_active"]=2041, + ["melee_physical_damage_+%_while_holding_shield"]=1752, + ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2263, + ["melee_range_+"]=2336, + ["melee_range_+_while_at_least_5_enemies_nearby"]=8915, + ["melee_range_+_while_dual_wielding"]=8917, + ["melee_range_+_while_unarmed"]=2830, + ["melee_range_+_while_wielding_shield"]=8916, + ["melee_range_+_with_axe"]=8918, + ["melee_range_+_with_claw"]=8919, + ["melee_range_+_with_dagger"]=8920, + ["melee_range_+_with_flail"]=8921, + ["melee_range_+_with_mace"]=8922, + ["melee_range_+_with_one_handed"]=8923, + ["melee_range_+_with_spear"]=8924, + ["melee_range_+_with_staff"]=8925, + ["melee_range_+_with_sword"]=8926, + ["melee_range_+_with_two_handed"]=8927, + ["melee_skill_gem_level_+"]=989, + ["melee_skills_area_of_effect_+%"]=8928, + ["melee_splash"]=1160, + ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8929, + ["melee_strike_skill_strike_previous_location"]=8930, + ["melee_weapon_critical_strike_multiplier_+"]=1418, + ["melee_weapon_range_+_if_you_have_killed_recently"]=8931, + ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8932, + ["melee_weapon_range_+_while_fortified"]=8933, + ["memory_line_abyss_scourge_spawn_boss_chance_%"]=108, + ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=119, + ["memory_line_big_harvest"]=109, + ["memory_line_breach_boss_spawn_chance_%"]=120, + ["memory_line_breach_covers_map"]=88, + ["memory_line_essence_monster_number_of_essences"]=110, + ["memory_line_maximum_possessions_of_rare_unique_monsters"]=111, + ["memory_line_minimum_possessions_of_rare_unique_monsters"]=89, + ["memory_line_num_harvest_plots"]=90, + ["memory_line_number_of_abyss_scourge_cracks"]=91, + ["memory_line_number_of_breaches"]=92, + ["memory_line_number_of_essences"]=93, + ["memory_line_number_of_large_breach_chests"]=112, + ["memory_line_number_of_pantheon_shrines"]=3985, + ["memory_line_number_of_shrines"]=3984, + ["memory_line_number_of_strongboxes"]=94, + ["memory_line_player_is_harbinger"]=95, + ["memory_line_strongboxes_chance_to_be_operatives_%"]=121, + ["mine_%_chance_to_detonate_twice"]=8939, + ["mine_area_damage_+%_if_detonated_mine_recently"]=8934, + ["mine_area_of_effect_+%"]=8935, + ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8936, + ["mine_arming_speed_+%"]=3902, + ["mine_aura_effect_+%"]=8937, + ["mine_critical_strike_chance_+%"]=1394, + ["mine_critical_strike_multiplier_+"]=1421, + ["mine_damage_+%"]=1177, + ["mine_damage_penetrates_%_elemental_resistance"]=2565, + ["mine_detonation_is_instant"]=2563, + ["mine_detonation_radius_+%"]=1688, + ["mine_detonation_speed_+%"]=8938, + ["mine_duration_+%"]=1685, + ["mine_extra_uses"]=2788, + ["mine_laying_speed_+%"]=1690, + ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3187, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8940, + ["mines_invulnerable"]=8941, + ["mines_invulnerable_for_duration_ms"]=2568, + ["minimum_added_chaos_damage_if_have_crit_recently"]=8942, + ["minimum_added_chaos_damage_per_curse_on_enemy"]=8943, + ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8944, + ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8945, + ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8946, + ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8947, + ["minimum_added_cold_damage_if_have_crit_recently"]=8948, + ["minimum_added_cold_damage_per_frenzy_charge"]=3940, + ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8949, + ["minimum_added_cold_damage_to_attacks_per_20_dexterity"]=8950, + ["minimum_added_cold_damage_vs_chilled_enemies"]=8951, + ["minimum_added_cold_damage_while_affected_by_hatred"]=8952, + ["minimum_added_cold_damage_while_you_have_avians_might"]=8953, + ["minimum_added_fire_attack_damage_per_active_buff"]=1236, + ["minimum_added_fire_damage_if_blocked_recently"]=3942, + ["minimum_added_fire_damage_if_have_crit_recently"]=8954, + ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8955, + ["minimum_added_fire_damage_per_active_buff"]=1238, + ["minimum_added_fire_damage_per_endurance_charge"]=8956, + ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8957, + ["minimum_added_fire_damage_to_attacks_per_25_strength"]=1843, + ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8958, + ["minimum_added_fire_damage_vs_ignited_enemies"]=1235, + ["minimum_added_fire_spell_damage_per_active_buff"]=1237, + ["minimum_added_lightning_damage_if_have_crit_recently"]=8959, + ["minimum_added_lightning_damage_per_power_charge"]=8960, + ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8961, + ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8962, + ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8963, + ["minimum_added_lightning_damage_while_you_have_avians_might"]=8964, + ["minimum_added_physical_damage_if_have_crit_recently"]=8965, + ["minimum_added_physical_damage_per_endurance_charge"]=8966, + ["minimum_added_physical_damage_per_impaled_on_enemy"]=8967, + ["minimum_added_physical_damage_vs_bleeding_enemies"]=2297, + ["minimum_added_physical_damage_vs_frozen_enemies"]=1234, + ["minimum_added_physical_damage_vs_poisoned_enemies"]=8968, + ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8969, + ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=8970, + ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=8971, + ["minimum_arrow_fire_damage_added_for_each_pierce"]=4450, + ["minimum_chaos_damage_to_return_to_melee_attacker"]=1956, + ["minimum_cold_damage_to_return_to_melee_attacker"]=1954, + ["minimum_endurance_charges_at_devotion_threshold"]=8972, + ["minimum_endurance_charges_per_stackable_unique_jewel"]=3839, + ["minimum_endurance_charges_while_on_low_life_+"]=8973, + ["minimum_fire_damage_to_return_to_melee_attacker"]=1953, + ["minimum_frenzy_charges_at_devotion_threshold"]=8974, + ["minimum_frenzy_charges_per_stackable_unique_jewel"]=3840, + ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=8975, + ["minimum_frenzy_power_endurance_charges"]=8976, + ["minimum_lightning_damage_to_return_on_block"]=2390, + ["minimum_lightning_damage_to_return_to_melee_attacker"]=1955, + ["minimum_physical_attack_damage_on_crit_+%_final"]=8977, + ["minimum_physical_damage_to_reflect_to_self_on_attack"]=1951, + ["minimum_physical_damage_to_return_on_block"]=2389, + ["minimum_physical_damage_to_return_to_melee_attacker"]=1952, + ["minimum_power_charges_at_devotion_threshold"]=8978, + ["minimum_power_charges_per_stackable_unique_jewel"]=3841, + ["minimum_power_charges_while_on_low_life_+"]=8979, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9061, + ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=8980, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"]=8981, + ["minion_1%_damage_+%_per_X_player_strength"]=8982, + ["minion_accuracy_rating"]=8983, + ["minion_accuracy_rating_+%"]=8985, + ["minion_accuracy_rating_per_10_devotion"]=8984, + ["minion_actor_scale_+%"]=8986, + ["minion_additional_base_critical_strike_chance"]=8987, + ["minion_additional_physical_damage_reduction_%"]=2044, + ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=8988, + ["minion_armour_break_physical_damage_%_dealt_as_armour_break"]=8989, + ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=8990, + ["minion_attack_and_cast_speed_+%"]=8992, + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=8993, + ["minion_attack_and_cast_speed_+%_per_10_devotion"]=8994, + ["minion_attack_and_cast_speed_+%_per_50_tribute"]=8991, + ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3007, + ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=8995, + ["minion_attack_hits_knockback_chance_%"]=8996, + ["minion_attack_maximum_added_physical_damage"]=3464, + ["minion_attack_minimum_added_physical_damage"]=3464, + ["minion_attack_speed_+%"]=2686, + ["minion_attack_speed_+%_per_50_dex"]=8999, + ["minion_attack_speed_+%_per_five_rage"]=8997, + ["minion_attack_speed_+%_per_rage"]=8998, + ["minion_attacks_chance_to_blind_on_hit_%"]=9000, + ["minion_attacks_chance_to_taunt_on_hit_%"]=3150, + ["minion_base_damaging_ailment_effect_+%"]=9001, + ["minion_base_maximum_cold_damage_resistance_%"]=9002, + ["minion_base_maximum_fire_damage_resistance_%"]=9003, + ["minion_base_maximum_lightning_damage_resistance_%"]=9004, + ["minion_base_physical_damage_%_to_convert_to_chaos"]=1733, + ["minion_base_physical_damage_%_to_convert_to_cold"]=1728, + ["minion_base_physical_damage_%_to_convert_to_fire"]=1726, + ["minion_base_physical_damage_%_to_convert_to_lightning"]=1730, + ["minion_bleed_on_hit_with_attacks_%"]=2293, + ["minion_block_%"]=2683, + ["minion_cannot_crit"]=9005, + ["minion_cast_speed_+%"]=2687, + ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3158, + ["minion_chance_to_apply_gruelling_madness_on_hit_%"]=2923, + ["minion_chance_to_deal_double_damage_%"]=9006, + ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9007, + ["minion_chance_to_fire_1_additional_projectile_%_with_rollover"]=9008, + ["minion_chance_to_freeze_%"]=9009, + ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3104, + ["minion_chance_to_gain_power_charge_on_hit_%"]=9010, + ["minion_chance_to_impale_on_attack_hit_%"]=9011, + ["minion_chance_to_shock_%"]=9012, + ["minion_chaos_resistance_%"]=2690, + ["minion_cold_damage_resistance_%"]=3863, + ["minion_command_skill_cooldown_speed_+%"]=9013, + ["minion_command_skill_skill_speed_+%"]=9014, + ["minion_commanded_skill_damage_+%"]=9016, + ["minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence"]=9015, + ["minion_cooldown_recovery_+%"]=9018, + ["minion_cooldown_recovery_+%_per_10_tribute"]=9017, + ["minion_critical_strike_chance_+%"]=9019, + ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9020, + ["minion_critical_strike_multiplier_+"]=9021, + ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=3842, + ["minion_damage_+%"]=1742, + ["minion_damage_+%_if_enemy_hit_recently"]=9028, + ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1743, + ["minion_damage_+%_per_10_tribute"]=9022, + ["minion_damage_+%_per_5_dex"]=1745, + ["minion_damage_+%_per_active_spectre"]=3009, + ["minion_damage_+%_per_different_command_skills_used_in_last_15_seconds"]=9023, + ["minion_damage_+%_per_rage"]=9024, + ["minion_damage_+%_vs_abyssal_monsters"]=9029, + ["minion_damage_+%_while_affected_by_a_herald"]=9030, + ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=9025, + ["minion_damage_against_ignited_enemies_+%"]=9026, + ["minion_damage_increases_and_reductions_also_affects_you"]=3999, + ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9027, + ["minion_damage_taken_%_recouped_as_their_life"]=9031, + ["minion_damage_taken_+%"]=9032, + ["minion_deal_no_non_cold_damage"]=9033, + ["minion_demon_add_fury_charge_on_hit_%"]=9034, + ["minion_demon_attack_speed_+%_per_fury_charge"]=9035, + ["minion_demon_damage_+%_final_per_fury_charge"]=9036, + ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=9037, + ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=9038, + ["minion_demon_maximum_fury_charges"]=9039, + ["minion_duration_+%_per_active_zombie"]=3008, + ["minion_elemental_resistance_%"]=2689, + ["minion_elemental_resistance_30%"]=9040, + ["minion_energy_shield_delay_-%"]=4087, + ["minion_evasion_rating_+%"]=9041, + ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9042, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=9043, + ["minion_fire_damage_resistance_%"]=9044, + ["minion_flask_charges_used_+%"]=1945, + ["minion_global_always_hit"]=9045, + ["minion_global_maximum_added_chaos_damage"]=3465, + ["minion_global_maximum_added_cold_damage"]=3466, + ["minion_global_maximum_added_fire_damage"]=3467, + ["minion_global_maximum_added_lightning_damage"]=3468, + ["minion_global_maximum_added_physical_damage"]=3469, + ["minion_global_minimum_added_chaos_damage"]=3465, + ["minion_global_minimum_added_cold_damage"]=3466, + ["minion_global_minimum_added_fire_damage"]=3467, + ["minion_global_minimum_added_lightning_damage"]=3468, + ["minion_global_minimum_added_physical_damage"]=3469, + ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9046, + ["minion_hit_damage_immobilisation_multiplier_+%"]=9047, + ["minion_hit_damage_stun_multiplier_+%"]=9048, + ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4088, + ["minion_larger_aggro_radius"]=10640, + ["minion_life_increased_by_overcapped_fire_resistance"]=9049, + ["minion_life_recovery_rate_+%"]=1547, + ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3010, + ["minion_life_regeneration_rate_per_minute_%"]=2688, + ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9050, + ["minion_life_regeneration_rate_per_second"]=9051, + ["minion_lightning_damage_resistance_%"]=3864, + ["minion_maim_on_hit_%"]=9052, + ["minion_malediction_on_hit"]=9053, + ["minion_maximum_all_elemental_resistances_%"]=9054, + ["minion_maximum_energy_shield_+%"]=1549, + ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4085, + ["minion_maximum_life_%_to_gain_as_maximum_energy_shield"]=1460, + ["minion_maximum_life_+%"]=1049, + ["minion_maximum_mana_+%"]=1548, + ["minion_melee_damage_+%"]=9055, + ["minion_melee_splash"]=9056, + ["minion_minimum_power_charges"]=9057, + ["minion_movement_speed_+%"]=1550, + ["minion_movement_speed_+%_per_50_dex"]=9058, + ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9059, + ["minion_no_critical_strike_multiplier"]=9060, + ["minion_no_extra_bleeding_damage_while_moving"]=2932, + ["minion_physical_damage_%_to_gain_as_cold"]=3865, + ["minion_physical_damage_%_to_gain_as_fire"]=9062, + ["minion_physical_damage_%_to_gain_as_lightning"]=9063, + ["minion_physical_damage_reduction_rating"]=2684, + ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=9064, + ["minion_projectile_speed_+%"]=9065, + ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9067, + ["minion_raging_spirit_maximum_life_+%"]=9066, + ["minion_recover_%_maximum_life_on_minion_death"]=9068, + ["minion_recover_%_of_maximum_life_on_block"]=2815, + ["minion_recover_X_life_on_block"]=1545, + ["minion_reservation_+%"]=9070, + ["minion_resistances_equal_yours"]=9071, + ["minion_resummon_speed_+%"]=9074, + ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=9072, + ["minion_resummon_speed_+%_if_you_have_at_least_100_tribute"]=9073, + ["minion_skill_area_of_effect_+%"]=2781, + ["minion_skill_gem_level_+"]=995, + ["minion_skill_mana_cost_+%"]=9075, + ["minion_skill_physical_damage_%_to_convert_to_fire"]=9076, + ["minion_spells_chance_to_hinder_on_hit_%"]=9077, + ["minion_stun_threshold_reduction_+%"]=9078, + ["minion_summoned_recently_attack_and_cast_speed_+%"]=9079, + ["minion_summoned_recently_cannot_be_damaged"]=9080, + ["minion_summoned_recently_movement_speed_+%"]=9081, + ["minion_undead_minions_are_demons_instead"]=9082, + ["minions_%_chance_to_blind_on_hit"]=3830, + ["minions_accuracy_is_equal_to_yours"]=9083, + ["minions_are_gigantic"]=9084, + ["minions_are_gigantic_if_have_revived_recently"]=9085, + ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9086, + ["minions_cannot_be_blinded"]=3829, + ["minions_cannot_be_damaged_after_summoned_ms"]=9087, + ["minions_cannot_die_while_affected_by_life_flask"]=1943, + ["minions_cannot_taunt_enemies"]=9088, + ["minions_chance_to_intimidate_on_hit_%"]=9089, + ["minions_chance_to_poison_on_hit_%"]=2922, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9090, + ["minions_gain_your_dexterity"]=9091, + ["minions_gain_your_strength"]=9092, + ["minions_get_amulet_stats_instead_of_you"]=1948, + ["minions_go_crazy_on_crit_ms"]=9093, + ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3056, + ["minions_have_%_chance_to_inflict_wither_on_hit"]=9094, + ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9095, + ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=1906, + ["minions_have_unholy_might"]=9096, + ["minions_hits_can_only_kill_ignited_enemies"]=9097, + ["minions_in_presence_have_onslaught_while_you_are_on_low_ward"]=9098, + ["minions_lose_%_life_when_following_commands_per_10_tribute"]=9099, + ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9100, + ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9101, + ["minions_recover_%_maximum_life_when_you_focus"]=9102, + ["minions_reflected_damage_taken_+%"]=9103, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9104, + ["minions_use_parents_flasks_on_summon"]=1941, + ["mirage_archer_duration_+%"]=9105, + ["mirage_archers_do_not_attach"]=4096, + ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3558, + ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3420, + ["mirror_arrow_cooldown_speed_+%"]=3576, + ["missing_life_%_gained_as_life_before_hit"]=9106, + ["mod_granted_passive_hash"]=9107, + ["mod_granted_passive_hash_2"]=9108, + ["mod_granted_passive_hash_3"]=9109, + ["mod_granted_passive_hash_4"]=9110, + ["mod_granted_passive_hash_essence"]=9111, + ["modifiers_to_attributes_instead_apply_to_ascendance"]=1169, + ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3279, + ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3280, + ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3278, + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9112, + ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3299, + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9113, + ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1583, + ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1588, + ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1593, + ["modifiers_to_minion_cast_speed_also_affect_you"]=3451, + ["modifiers_to_minion_damage_also_affect_you"]=3449, + ["modifiers_to_minion_life_regeneration_also_affect_you"]=3452, + ["modifiers_to_minion_movement_speed_also_affect_you"]=3453, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9114, + ["molten_shell_buff_effect_+%"]=3703, + ["molten_shell_damage_+%"]=3408, + ["molten_shell_duration_+%"]=9115, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9116, + ["molten_strike_chain_count_+"]=9118, + ["molten_strike_damage_+%"]=3342, + ["molten_strike_num_of_additional_projectiles"]=3635, + ["molten_strike_projectiles_chain_when_impacting_ground"]=9117, + ["molten_strike_radius_+%"]=3504, + ["monster_base_block_%"]=1147, + ["monster_dropped_item_quantity_+%"]=20, + ["monster_dropped_item_rarity_+%"]=19, + ["monster_life_+%_final_from_map"]=1465, + ["monster_life_+%_final_from_rarity"]=1464, + ["monster_slain_experience_+%"]=18, + ["monsters_in_your_presence_have_additional_power_equal_to_their_gruelling_madness_stacks"]=9121, + ["mortar_barrage_mine_damage_+%"]=9122, + ["mortar_barrage_mine_num_projectiles"]=9123, + ["mortar_barrage_mine_throwing_speed_+%"]=9125, + ["mortar_barrage_mine_throwing_speed_halved_+%"]=9124, + ["movement_attack_skills_attack_speed_+%"]=9126, + ["movement_skills_cooldown_speed_+%"]=9127, + ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9128, + ["movement_skills_cost_no_mana"]=3183, + ["movement_skills_deal_no_physical_damage"]=9129, + ["movement_skills_mana_cost_+%"]=3857, + ["movement_speed_+%_against_bloodlusting_enemies"]=9130, + ["movement_speed_+%_during_flask_effect"]=2927, + ["movement_speed_+%_for_4_seconds_on_block"]=3047, + ["movement_speed_+%_if_10_green_supports_socketed"]=9131, + ["movement_speed_+%_if_below_100_dexterity"]=9132, + ["movement_speed_+%_if_crit_recently"]=9144, + ["movement_speed_+%_if_enemy_hit_recently"]=9145, + ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9146, + ["movement_speed_+%_if_enemy_killed_recently"]=3929, + ["movement_speed_+%_if_have_not_taken_damage_recently"]=9147, + ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9148, + ["movement_speed_+%_if_pierced_recently"]=3881, + ["movement_speed_+%_if_pinned_enemy_recently"]=9133, + ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9134, + ["movement_speed_+%_if_used_a_mark_recently"]=9149, + ["movement_speed_+%_if_used_a_warcry_recently"]=3855, + ["movement_speed_+%_on_throwing_trap"]=2554, + ["movement_speed_+%_per_5_rage"]=9135, + ["movement_speed_+%_per_chest_opened_recently"]=9150, + ["movement_speed_+%_per_endurance_charge"]=9151, + ["movement_speed_+%_per_nearby_corpse"]=9136, + ["movement_speed_+%_per_nearby_enemy"]=9152, + ["movement_speed_+%_per_poison_up_to_50%"]=9153, + ["movement_speed_+%_per_power_charge"]=9154, + ["movement_speed_+%_while_affected_by_ailment"]=9137, + ["movement_speed_+%_while_affected_by_grace"]=9155, + ["movement_speed_+%_while_bleeding"]=9156, + ["movement_speed_+%_while_dual_wielding"]=9157, + ["movement_speed_+%_while_fortified"]=3048, + ["movement_speed_+%_while_holding_shield"]=9158, + ["movement_speed_+%_while_not_affected_by_status_ailments"]=3039, + ["movement_speed_+%_while_not_using_flask"]=9159, + ["movement_speed_+%_while_off_hand_is_empty"]=9160, + ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9161, + ["movement_speed_+%_while_on_burning_ground"]=9162, + ["movement_speed_+%_while_poisoned"]=9163, + ["movement_speed_+%_while_surrounded"]=9138, + ["movement_speed_+%_while_using_charm"]=9164, + ["movement_speed_+%_while_you_have_cats_stealth"]=9165, + ["movement_speed_+%_while_you_have_energy_shield"]=9166, + ["movement_speed_+%_while_you_have_storm_barrier_support"]=9167, + ["movement_speed_+%_while_you_have_two_linked_targets"]=9139, + ["movement_speed_bonus_when_throwing_trap_ms"]=2554, + ["movement_speed_cannot_be_reduced_below_base"]=2936, + ["movement_speed_is_equal_to_highest_linked_party_member"]=9140, + ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=9141, + ["movement_speed_penalty_+%_while_performing_action"]=9143, + ["movement_velocity_+%_on_full_energy_shield"]=2736, + ["movement_velocity_+%_per_frenzy_charge"]=1579, + ["movement_velocity_+%_per_poison_stack"]=9168, + ["movement_velocity_+%_per_shock"]=2585, + ["movement_velocity_+%_per_totem"]=9170, + ["movement_velocity_+%_when_on_full_life"]=1577, + ["movement_velocity_+%_when_on_low_life"]=1576, + ["movement_velocity_+%_when_on_shocked_ground"]=1907, + ["movement_velocity_+%_while_at_maximum_power_charges"]=9171, + ["movement_velocity_+%_while_chilled"]=9172, + ["movement_velocity_+%_while_cursed"]=2423, + ["movement_velocity_+%_while_ignited"]=2584, + ["movement_velocity_+%_while_phasing"]=2411, + ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9169, + ["movement_velocity_+1%_per_X_evasion_rating"]=2469, + ["movement_velocity_while_not_hit_+%"]=2962, + ["multishot_empowered_central_projectile_drops_feathered_ground_for_duration_ms"]=9173, + ["nearby_allies_have_onslaught"]=9174, + ["nearby_enemies_all_exposure_%_while_phasing"]=9175, + ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9176, + ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9177, + ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9178, + ["nearby_enemies_are_intimidated_while_you_have_rage"]=9179, + ["nearby_enemies_chilled_on_block"]=3938, + ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9181, + ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9182, + ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9183, + ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9184, + ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3192, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9185, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9186, + ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9187, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9188, + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9189, + ["necrotic_footprints_from_item"]=9190, + ["never_freeze"]=2365, + ["never_freeze_or_chill"]=2366, + ["never_ignite"]=2364, + ["never_ignite_chill_freeze_shock"]=9191, + ["never_shock"]=2367, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2891, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2890, + ["next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy"]=2207, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9192, + ["no_critical_strike_multiplier"]=1428, + ["no_energy_shield"]=1927, + ["no_energy_shield_recharge_or_regeneration"]=2467, + ["no_evasion_rating"]=1928, + ["no_extra_bleeding_damage_while_moving"]=2933, + ["no_inherent_chance_to_block_while_dual_wielding"]=9193, + ["no_inherent_mana_regeneration"]=9194, + ["no_inherent_rage_loss"]=9195, + ["no_life_regeneration"]=2042, + ["no_mana_regeneration"]=2043, + ["no_mana_regeneration_if_not_crit_recently"]=9196, + ["no_maximum_power_charges"]=2773, + ["no_movement_penalty_while_shield_is_raised"]=9197, + ["no_physical_damage_reduction_rating"]=1926, + ["non_aura_hexes_gain_20%_effect_per_second"]=9198, + ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=9199, + ["non_channelling_spells_cost_x%_of_your_energy_shield"]=9200, + ["non_channelling_spells_deal_x%_more_damage"]=9201, + ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=9202, + ["non_critical_damage_multiplier_+%"]=2507, + ["non_critical_strikes_deal_no_damage"]=9203, + ["non_critical_strikes_penetrate_elemental_resistances_%"]=3264, + ["non_curse_aura_effect_+%"]=3273, + ["non_curse_aura_effect_+%_per_10_devotion"]=9204, + ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9205, + ["non_cursed_enemies_you_curse_gain_x_withered_stacks"]=9206, + ["non_damaging_ailment_effect_+%"]=9207, + ["non_damaging_ailment_effect_+%_on_self"]=9208, + ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9209, + ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4021, + ["non_damaging_ailment_effect_+%_per_10_devotion"]=9210, + ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9211, + ["non_damaging_ailments_as_though_damage_+%_final"]=9212, + ["non_damaging_ailments_reflected_to_self"]=9213, + ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4026, + ["non_piercing_projectiles_critical_strike_chance_+%"]=9214, + ["non_projectile_chaining_lightning_skill_additional_chains"]=9215, + ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=9216, + ["non_skill_all_damage_1%_to_gain_as_fire_+_per_%_attack_block_chance"]=9217, + ["non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed"]=9218, + ["non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed"]=9219, + ["non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed"]=9220, + ["non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed"]=9221, + ["non_skill_base_all_damage_%_to_gain_as_chaos"]=1694, + ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=9222, + ["non_skill_base_all_damage_%_to_gain_as_chaos_while_missing_ward"]=9223, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=9224, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_spells"]=9225, + ["non_skill_base_all_damage_%_to_gain_as_cold"]=889, + ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=9247, + ["non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently"]=9226, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_missing_ward"]=9227, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill"]=9228, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted"]=9229, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=890, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks"]=9230, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells"]=891, + ["non_skill_base_all_damage_%_to_gain_as_fire"]=886, + ["non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently"]=9231, + ["non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds"]=9232, + ["non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently"]=9233, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_missing_ward"]=9234, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn"]=9235, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted"]=9236, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=888, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_spells"]=887, + ["non_skill_base_all_damage_%_to_gain_as_lightning"]=892, + ["non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently"]=9237, + ["non_skill_base_all_damage_%_to_gain_as_lightning_per_50_ward_cost"]=9238, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_missing_ward"]=9239, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock"]=9240, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted"]=9241, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=9248, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells"]=893, + ["non_skill_base_all_damage_%_to_gain_as_physical"]=1693, + ["non_skill_base_all_damage_%_to_gain_as_physical_per_10%_missing_mana_permyriad"]=9242, + ["non_skill_base_all_damage_%_to_gain_as_physical_with_attacks"]=885, + ["non_skill_base_all_damage_%_to_gain_as_random_element"]=9243, + ["non_skill_base_all_damage_%_to_gain_as_random_element_per_socketed_rune"]=9244, + ["non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted"]=9245, + ["non_skill_base_all_damage_%_to_gain_as_random_element_with_attacks"]=9246, + ["non_skill_base_cold_damage_%_to_convert_to_chaos"]=1739, + ["non_skill_base_cold_damage_%_to_convert_to_fire"]=1737, + ["non_skill_base_cold_damage_%_to_convert_to_lightning"]=1738, + ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=1706, + ["non_skill_base_cold_damage_%_to_gain_as_fire"]=1705, + ["non_skill_base_cold_damage_%_to_gain_as_physical"]=1704, + ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=9255, + ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=9256, + ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=9257, + ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=9258, + ["non_skill_base_elemental_damage_%_to_gain_as_chaos"]=1710, + ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=9249, + ["non_skill_base_elemental_damage_%_to_gain_as_cold_if_cold_infusion_collected_last_8_seconds"]=9250, + ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=9251, + ["non_skill_base_elemental_damage_%_to_gain_as_fire_if_fire_infusion_collected_last_8_seconds"]=9252, + ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=9253, + ["non_skill_base_elemental_damage_%_to_gain_as_lightning_if_lightning_infusion_collected_last_8_seconds"]=9254, + ["non_skill_base_fire_damage_%_to_convert_to_chaos"]=1740, + ["non_skill_base_fire_damage_%_to_convert_to_cold"]=9259, + ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=9260, + ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=1709, + ["non_skill_base_fire_damage_%_to_gain_as_lightning"]=1707, + ["non_skill_base_fire_damage_%_to_gain_as_physical"]=1708, + ["non_skill_base_lightning_damage_%_to_convert_to_chaos"]=1736, + ["non_skill_base_lightning_damage_%_to_convert_to_cold"]=1735, + ["non_skill_base_lightning_damage_%_to_convert_to_fire"]=1734, + ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=1703, + ["non_skill_base_lightning_damage_%_to_gain_as_cold"]=1702, + ["non_skill_base_lightning_damage_%_to_gain_as_fire"]=1701, + ["non_skill_base_lightning_damage_%_to_gain_as_physical"]=1700, + ["non_skill_base_non_chaos_damage_%_to_gain_as_chaos"]=1711, + ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=1732, + ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=9265, + ["non_skill_base_physical_damage_%_to_convert_to_cold"]=1727, + ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=9275, + ["non_skill_base_physical_damage_%_to_convert_to_fire"]=1724, + ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=9277, + ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=1729, + ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=9279, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1731, + ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=1699, + ["non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3182, + ["non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks"]=1313, + ["non_skill_base_physical_damage_%_to_gain_as_cold"]=1697, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies"]=9261, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies"]=9262, + ["non_skill_base_physical_damage_%_to_gain_as_fire"]=1696, + ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=1698, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies"]=9263, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies"]=9264, + ["non_skill_base_physical_damage_%_to_gain_as_random_element"]=2707, + ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=9268, + ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=9266, + ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=9267, + ["non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped"]=4023, + ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=9269, + ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9270, + ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=9271, + ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=9272, + ["non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds"]=3454, + ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9274, + ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9276, + ["non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies"]=1938, + ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10727, + ["non_skill_physical_damage_%_to_convert_to_fire_with_bear_skills"]=1725, + ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9278, + ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=9273, + ["non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies"]=3912, + ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=9280, + ["non_skill_physical_damage_%_to_gain_as_cold_with_attacks"]=3471, + ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=9281, + ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=9282, + ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=9283, + ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=9284, + ["non_skill_physical_damage_%_to_gain_as_fire_with_attacks"]=3470, + ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=9285, + ["non_skill_physical_damage_%_to_gain_as_lightning_with_attacks"]=3472, + ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=9286, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=9287, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=9288, + ["non_skill_unarmed_damage_to_gain_as_fire_1%_per_X_intelligence"]=9291, + ["non_travel_attack_skill_repeat_count"]=9292, + ["non_unique_flask_effect_+%"]=2528, + ["non_unique_life_flasks_always_applied_with_no_instant_recovery_only_to_you"]=9293, + ["normal_monster_dropped_item_quantity_+%"]=9294, + ["notable_knockback_distance_+%_final_for_blocked_hits"]=9295, + ["nova_spells_cast_at_target_location"]=9296, + ["num_additional_skill_slots"]=9297, + ["num_cascade_aftershocks_every_third_slam"]=9298, + ["num_charm_slots"]=9299, + ["num_charm_slots_+_if_you_have_at_least_100_tribute"]=9300, + ["num_of_additional_chains_at_max_frenzy_charges"]=1603, + ["number_of_additional_arrows"]=1013, + ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9301, + ["number_of_additional_banners_allowed"]=9302, + ["number_of_additional_chains_for_projectiles_while_phasing"]=9303, + ["number_of_additional_chains_for_spell_projectiles"]=9304, + ["number_of_additional_clones"]=2838, + ["number_of_additional_curses_allowed"]=1931, + ["number_of_additional_curses_allowed_on_self"]=1932, + ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9305, + ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9306, + ["number_of_additional_ignites_allowed"]=9307, + ["number_of_additional_mines_to_place"]=3256, + ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9308, + ["number_of_additional_mines_to_place_with_at_least_500_int"]=9309, + ["number_of_additional_poison_stacks"]=9310, + ["number_of_additional_poison_stacks_if_you_have_at_least_100_tribute"]=9311, + ["number_of_additional_projectiles"]=1573, + ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=9312, + ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9313, + ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9314, + ["number_of_additional_remote_mines_allowed"]=2002, + ["number_of_additional_totems_allowed"]=2000, + ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3313, + ["number_of_additional_traps_allowed"]=2001, + ["number_of_additional_traps_to_throw"]=9315, + ["number_of_animated_weapons_allowed"]=9316, + ["number_of_broken_faces"]=9318, + ["number_of_chains"]=1570, + ["number_of_crab_charges_lost_when_hit"]=4033, + ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9319, + ["number_of_golems_allowed_with_3_primordial_jewels"]=9320, + ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2981, + ["number_of_poison_cloud_allowed"]=9321, + ["number_of_projectiles_+%_final_from_skill"]=9322, + ["number_of_raging_spirits_is_limited_to_3"]=9323, + ["number_of_skeletons_allowed_per_2_old"]=9324, + ["number_of_support_ghosts_is_limited_to_3"]=9325, + ["number_of_vine_arrow_pod_allowed"]=9326, + ["number_of_zombies_allowed_+%"]=2391, + ["number_of_zombies_allowed_+1_per_X_strength"]=9327, + ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2839, + ["occultist_chaos_damage_+%_final"]=9328, + ["occultist_cold_damage_+%_final"]=9329, + ["occultist_immune_to_stun_while_has_energy_shield"]=3443, + ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3442, + ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9330, + ["off_hand_apply_ancients_challenge_on_hit"]=10548, + ["off_hand_attack_speed_+%_while_dual_wielding"]=9331, + ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9332, + ["off_hand_base_weapon_attack_duration_ms"]=25, + ["off_hand_claw_mana_gain_on_hit"]=9333, + ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9334, + ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9335, + ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9336, + ["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_+%"]=9337, + ["offering_duration_+%"]=9338, + ["offering_life_+%"]=9339, + ["offering_spells_effect_+%"]=3741, + ["offerings_also_buff_you"]=1161, + ["offerings_cannot_be_damaged_if_created_recently"]=9340, + ["old_dagger_implicit_critical_strike_chance_+30%"]=1380, + ["old_dagger_implicit_critical_strike_chance_+40%"]=1381, + ["old_dagger_implicit_critical_strike_chance_+50%"]=1382, + ["on_banner_expiry_recover_%_of_required_glory"]=9341, + ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9342, + ["on_casting_banner_recover_%_of_planted_banner_stages"]=9343, + ["on_kill_effects_occur_twice"]=9344, + ["on_weapon_global_damage_+%"]=1174, + ["one_handed_attack_ailment_chance_+%"]=9345, + ["one_handed_attack_speed_+%"]=3046, + ["one_handed_melee_accuracy_rating_+%"]=1357, + ["one_handed_melee_attack_speed_+%"]=1341, + ["one_handed_melee_cold_damage_+%"]=1250, + ["one_handed_melee_critical_strike_chance_+%"]=1397, + ["one_handed_melee_critical_strike_multiplier_+"]=1417, + ["one_handed_melee_fire_damage_+%"]=1249, + ["one_handed_melee_physical_damage_+%"]=1248, + ["onslaught_buff_duration_on_culling_strike_ms"]=2785, + ["onslaught_buff_duration_on_kill_ms"]=2439, + ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2440, + ["onslaught_effect_+%"]=3020, + ["onslaught_on_crit_duration_ms"]=2472, + ["onslaught_on_vaal_skill_use_duration_ms"]=2691, + ["onslaught_time_granted_on_kill_ms"]=2752, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2753, + ["open_nearby_chests_on_cast_chance_%"]=9346, + ["orb_of_storm_strike_rate_while_channelling_+%"]=9347, + ["orb_of_storms_cast_speed_+%"]=9348, + ["orb_of_storms_damage_+%"]=3437, + ["orb_skill_limit_+"]=9349, + ["other_rite_maps_gain_ritual_additional_reward_rerolls"]=9350, + ["other_rite_maps_gain_ritual_additional_wildwood_packs"]=9351, + ["other_rite_maps_gain_ritual_number_of_free_rerolls"]=9352, + ["other_rite_maps_gain_ritual_offered_rewards_amount_+%"]=9353, + ["other_rite_maps_gain_ritual_rewards_reroll_cost_+%_final"]=9354, + ["other_rite_maps_gain_ritual_tribute_+%"]=9355, + ["overencumbrance_on_dodge_roll"]=9356, + ["overkill_damage_%_as_physical_to_nearby_enemies"]=9357, + ["override_block_chance_for_allies_in_your_presence"]=9358, + ["override_maximum_damage_resistance_%"]=1031, + ["override_weapon_base_critical_strike_chance"]=9359, + ["owl_feather_gain_frequency_+%"]=4120, + ["owl_feather_max_bonus_to_stack"]=4119, + ["pain_attunement_keystone_critical_strike_multiplier_+%_final"]=1950, + ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9360, + ["pantheon_shakari_self_poison_duration_+%_final"]=9361, + ["parried_magnitude_+%"]=9362, + ["parry_applies_spell_damage_debuff_instead"]=9363, + ["parry_area_of_effect_+%"]=9364, + ["parry_attack_speed_+%_if_youve_parried_recently"]=9365, + ["parry_cannot_be_critically_hit_during_parry"]=9366, + ["parry_damage_+%"]=9367, + ["parry_deal_thorns_damage_chance_%_on_hit"]=10249, + ["parry_evasion_rating_+%_during_parry"]=9368, + ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=9369, + ["parry_hit_damage_stun_multiplier_+%"]=9370, + ["parry_modifiers_to_stun_buildup_instead_apply_to_freeze"]=9371, + ["parry_movement_speed_+%_if_youve_parried_recently"]=9372, + ["parry_physical_damage_%_to_convert_to_cold"]=9373, + ["parry_skill_effect_duration_+%"]=9375, + ["parry_skill_effect_duration_+%_per_10_tribute"]=9374, + ["parry_stun_threshold_+%_during_parry"]=9376, + ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=9377, + ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=9378, + ["passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=9379, + ["passive_applies_to_minions"]=2825, + ["passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value"]=9380, + ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9381, + ["passive_mastery_damage_taken_over_time_+%_final"]=9382, + ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=9383, + ["passive_mastery_less_projectile_speed_+%_final"]=9384, + ["passive_mastery_less_skill_effect_duration_+%_final"]=9385, + ["passive_mastery_more_projectile_speed_+%_final"]=9386, + ["passive_mastery_more_skill_effect_duration_+%_final"]=9387, + ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9388, + ["passive_notable_ignite_proliferation_radius"]=1970, + ["passive_notable_kaomsblessing_fire_spells_ancestral_boosted_when_you_warcry"]=2208, + ["passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits"]=9389, + ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=9390, + ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=9391, + ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=9392, + ["pathfinder_flask_amount_to_recover_+%_final"]=9393, + ["pathfinder_flask_life_to_recover_+%_final"]=9394, + ["pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask"]=4110, + ["pathfinder_poison_duration_+%_final"]=9395, + ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4107, + ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4108, + ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4109, + ["penance_brand_area_of_effect_+%"]=9396, + ["penance_brand_cast_speed_+%"]=9397, + ["penance_brand_damage_+%"]=9398, + ["penetrate_elemental_resistance_%_per_15_ascendance"]=1171, + ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9399, + ["penetrate_elemental_resistance_%_while_shapeshifted"]=9400, + ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2754, + ["perandus_double_number_of_coins_found"]=9401, + ["perfect_timing_window_ms_+%"]=9407, + ["permanent_damage_+%_per_second_of_chill"]=9408, + ["permanent_damage_+%_per_second_of_freeze"]=9409, + ["permanent_fire_damage_+%_per_second_of_ignite_up_to_10%"]=9410, + ["permanently_intimidate_enemies_you_hit_on_full_life"]=3925, + ["permanently_intimidate_enemy_on_block"]=9411, + ["petrified_blood_mana_reservation_efficiency_+%"]=9413, + ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9412, + ["petrified_blood_reservation_+%"]=9414, + ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=9415, + ["phase_on_vaal_skill_use_duration_ms"]=2692, + ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3705, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9416, + ["phase_run_skill_effect_duration_+%"]=3795, + ["phase_through_objects"]=2598, + ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3913, + ["phasing_for_4_seconds_on_kill_%"]=3176, + ["phasing_if_blocked_recently"]=9417, + ["phasing_on_rampage_threshold_ms"]=2735, + ["phasing_on_trap_triggered_by_an_enemy_ms"]=3913, + ["phylactery_can_only_contain_non_unique_jewel"]=144, + ["phylactery_jewel_socket_effect_+%"]=146, + ["phys_cascade_trap_cooldown_speed_+%"]=9418, + ["phys_cascade_trap_damage_+%"]=9419, + ["phys_cascade_trap_duration_+%"]=9420, + ["phys_cascade_trap_number_of_additional_cascades"]=9421, + ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9422, + ["physical_attack_damage_+%"]=1184, + ["physical_attack_damage_+%_while_holding_a_shield"]=1189, + ["physical_attack_damage_taken_+"]=1981, + ["physical_axe_damage_+%"]=1257, + ["physical_bow_damage_+%"]=1277, + ["physical_claw_damage_+%"]=1265, + ["physical_claw_damage_+%_when_on_low_life"]=2387, + ["physical_dagger_damage_+%"]=1269, + ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3931, + ["physical_damage_%_added_as_fire_damage_on_kill"]=2946, + ["physical_damage_%_taken_from_mana_before_life"]=3845, + ["physical_damage_%_to_gain_as_fire_vs_heavy_stunned"]=9423, + ["physical_damage_%_to_gain_as_lightning_vs_electrocuted"]=9424, + ["physical_damage_+%"]=1208, + ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3904, + ["physical_damage_+%_if_skill_costs_life"]=9429, + ["physical_damage_+%_per_10_rage"]=9430, + ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9425, + ["physical_damage_+%_vs_ignited_enemies"]=9431, + ["physical_damage_+%_vs_poisoned_enemies"]=2726, + ["physical_damage_+%_while_affected_by_herald_of_blood"]=9426, + ["physical_damage_+%_while_affected_by_herald_of_purity"]=9432, + ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3907, + ["physical_damage_+%_while_frozen"]=3071, + ["physical_damage_+%_while_life_leeching"]=1198, + ["physical_damage_+%_while_shapeshifted"]=9427, + ["physical_damage_+%_while_you_have_resolute_technique"]=10725, + ["physical_damage_+%_with_axes_swords"]=9433, + ["physical_damage_can_chill"]=2659, + ["physical_damage_can_freeze"]=2660, + ["physical_damage_can_ignite_freeze_shock"]=2661, + ["physical_damage_can_shock"]=2662, + ["physical_damage_cannot_poison"]=2671, + ["physical_damage_from_hits_%_taken_as_random_element"]=2233, + ["physical_damage_from_hits_also_contributes_to_chill_and_freeze"]=2663, + ["physical_damage_on_block_+%"]=2958, + ["physical_damage_over_time_+%"]=1191, + ["physical_damage_over_time_multiplier_+_with_attacks"]=1221, + ["physical_damage_over_time_per_10_dexterity_+%"]=3491, + ["physical_damage_over_time_taken_+%_while_moving"]=9428, + ["physical_damage_per_endurance_charge_+%"]=1900, + ["physical_damage_prevented_recouped_as_life_%"]=9434, + ["physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute"]=9435, + ["physical_damage_reduction_%_at_devotion_threshold"]=9436, + ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9445, + ["physical_damage_reduction_%_per_endurance_charge"]=2045, + ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9438, + ["physical_damage_reduction_%_per_nearby_enemy"]=9447, + ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9440, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3740, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3170, + ["physical_damage_reduction_percent_per_frenzy_charge"]=9437, + ["physical_damage_reduction_percent_per_power_charge"]=9439, + ["physical_damage_reduction_rating_%_while_not_moving"]=4005, + ["physical_damage_reduction_rating_+%"]=905, + ["physical_damage_reduction_rating_+%_per_10_tribute"]=9441, + ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9446, + ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3291, + ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2595, + ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2559, + ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9442, + ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9443, + ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4061, + ["physical_damage_reduction_rating_per_endurance_charge"]=9444, + ["physical_damage_reduction_rating_per_level"]=2543, + ["physical_damage_reduction_rating_while_frozen"]=2582, + ["physical_damage_taken_%_as_chaos"]=2234, + ["physical_damage_taken_%_as_cold"]=2228, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=2229, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=2230, + ["physical_damage_taken_%_as_fire"]=2219, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=2220, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=2221, + ["physical_damage_taken_%_as_lightning"]=2223, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=2224, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=2225, + ["physical_damage_taken_+"]=1982, + ["physical_damage_taken_+%"]=1988, + ["physical_damage_taken_+%_from_hits"]=9448, + ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3908, + ["physical_damage_taken_+%_while_frozen"]=2583, + ["physical_damage_taken_+%_while_moving"]=4007, + ["physical_damage_taken_+_per_level"]=1983, + ["physical_damage_taken_+_vs_beasts"]=2697, + ["physical_damage_taken_on_minion_death"]=2784, + ["physical_damage_taken_recouped_as_life_%"]=9449, + ["physical_damage_to_return_to_melee_attacker"]=928, + ["physical_damage_to_return_when_hit"]=1961, + ["physical_damage_while_dual_wielding_+%"]=1241, + ["physical_damage_with_attack_skills_+%"]=9450, + ["physical_damage_with_spell_skills_+%"]=9451, + ["physical_dot_multiplier_+"]=1220, + ["physical_dot_multiplier_+_if_crit_recently"]=9452, + ["physical_dot_multiplier_+_if_spent_life_recently"]=9453, + ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9454, + ["physical_hit_and_dot_damage_%_taken_as_chaos"]=2235, + ["physical_hit_and_dot_damage_%_taken_as_cold"]=2231, + ["physical_hit_and_dot_damage_%_taken_as_fire"]=2222, + ["physical_hit_and_dot_damage_%_taken_as_lightning"]=2226, + ["physical_hit_and_dot_damage_%_taken_as_lightning_while_active_blocking"]=2227, + ["physical_mace_damage_+%"]=1273, + ["physical_ranged_attack_damage_taken_+"]=1993, + ["physical_reflect_damage_taken_+%"]=2503, + ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9455, + ["physical_skill_gem_level_+"]=979, + ["physical_spell_damage_can_pin_on_critical_hit"]=9456, + ["physical_spell_skill_gem_level_+"]=1499, + ["physical_staff_damage_+%"]=1260, + ["physical_sword_damage_+%"]=1281, + ["physical_wand_damage_+%"]=1286, + ["physical_weapon_damage_+%_per_10_str"]=2347, + ["piercing_attacks_cause_bleeding"]=3141, + ["piercing_projectiles_critical_strike_chance_+%"]=9457, + ["pin_almost_pinned_enemies"]=9458, + ["pin_duration_+%"]=9459, + ["pin_stops_enemies"]=9460, + ["pinned_enemies_cannot_crit"]=9461, + ["pinned_enemies_cannot_evade_your_attacks"]=9462, + ["placed_banner_attack_damage_+%"]=9463, + ["placing_traps_cooldown_recovery_+%"]=3172, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9464, + ["plague_bearer_maximum_stored_poison_damage_+%"]=9465, + ["plague_bearer_movement_speed_+%_while_infecting"]=9466, + ["plague_bearer_poison_effect_+%_while_infecting"]=9467, + ["plant_skill_armour_break_amount_+%_when_wet"]=9468, + ["plant_skill_damage_+%"]=9469, + ["plant_skill_effect_duration_+%"]=9470, + ["player_can_be_touched_by_tormented_spirits"]=9471, + ["player_far_shot"]=10711, + ["player_gain_rampage_stacks"]=10647, + ["player_is_harbinger_spawn_pack_on_kill_chance"]=113, + ["poison_as_though_dealing_X_damage_on_block"]=9472, + ["poison_chance_+%"]=9473, + ["poison_cursed_enemies_on_hit"]=3882, + ["poison_duration_+%_against_slowed_enemies"]=9474, + ["poison_duration_+%_if_consumed_frenzy_charge_recently"]=9475, + ["poison_duration_+%_per_poison_applied_recently"]=9476, + ["poison_duration_+%_per_power_charge"]=9477, + ["poison_duration_+%_with_over_150_intelligence"]=9478, + ["poison_effect_+%_per_frenzy_charge"]=9482, + ["poison_effect_+%_vs_bleeding_enemies"]=9483, + ["poison_effect_+%_vs_non_poisoned_enemies"]=9479, + ["poison_effect_+%_with_spells"]=9484, + ["poison_effect_+100%_final_chance_during_flask_effect"]=9480, + ["poison_on_critical_strike"]=9485, + ["poison_on_critical_strike_with_bow"]=1376, + ["poison_on_critical_strike_with_dagger"]=1373, + ["poison_on_hit_during_flask_effect_%"]=3031, + ["poison_on_melee_critical_strike_%"]=2555, + ["poison_on_melee_hit"]=3927, + ["poison_reflected_to_self"]=9486, + ["poison_time_passed_+%"]=9487, + ["poisonous_concoction_damage_+%"]=9488, + ["poisonous_concoction_flask_charges_consumed_+%"]=9489, + ["poisonous_concoction_skill_area_of_effect_+%"]=9490, + ["poisons_you_inflict_can_stack_infintely"]=9491, + ["portal_alternate_destination_chance_permyriad"]=9492, + ["power_charge_duration_+%"]=1903, + ["power_charge_duration_+%_final"]=9493, + ["power_charge_on_block_%_chance"]=3937, + ["power_charge_on_kill_percent_chance_while_holding_shield"]=9494, + ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9495, + ["power_frenzy_or_endurance_charge_on_kill_%"]=3315, + ["power_only_conduit"]=2034, + ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3658, + ["power_siphon_attack_speed_+%"]=3555, + ["power_siphon_damage_+%"]=3368, + ["power_siphon_number_of_additional_projectiles"]=9496, + ["precision_aura_effect_+%"]=3091, + ["precision_mana_reservation_+%"]=9501, + ["precision_mana_reservation_-50%_final"]=9500, + ["precision_mana_reservation_efficiency_+%"]=9499, + ["precision_mana_reservation_efficiency_+100%"]=9498, + ["precision_mana_reservation_efficiency_-2%_per_1"]=9497, + ["precision_reserves_no_mana"]=9502, + ["presence_area_+%"]=1092, + ["presence_area_+%_per_10_tribute"]=9503, + ["prevent_monster_heal"]=1673, + ["prevent_monster_heal_duration_+%"]=1674, + ["prevent_projectile_chaining_%_chance"]=9504, + ["pride_aura_effect_+%"]=9505, + ["pride_chance_to_deal_double_damage_%"]=9506, + ["pride_chance_to_impale_with_attacks_%"]=9507, + ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9508, + ["pride_mana_reservation_+%"]=9511, + ["pride_mana_reservation_efficiency_+%"]=9510, + ["pride_mana_reservation_efficiency_-2%_per_1"]=9509, + ["pride_physical_damage_+%"]=9512, + ["pride_reserves_no_mana"]=9513, + ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9514, + ["primalist_charm_charges_gained_+%_final"]=9515, + ["primordial_altar_burning_ground_on_death_%"]=9119, + ["primordial_altar_chilled_ground_on_death_%"]=9120, + ["primordial_jewel_count"]=10625, + ["prismatic_rain_beam_frequency_+%"]=9516, + ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9517, + ["projectile_ailment_chance_+%"]=9518, + ["projectile_all_damage_%_to_gain_as_instilling_type"]=9519, + ["projectile_attack_damage_+%"]=1761, + ["projectile_attack_damage_+%_during_flask_effect"]=9520, + ["projectile_attack_damage_+%_per_200_accuracy"]=4000, + ["projectile_attack_damage_+%_with_at_least_200_dex"]=4048, + ["projectile_attack_damage_+%_with_claw_or_dagger"]=9521, + ["projectile_attack_range_+%"]=9522, + ["projectile_attack_skill_critical_strike_chance_+%"]=4009, + ["projectile_attack_skill_critical_strike_multiplier_+"]=9523, + ["projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving"]=9524, + ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4010, + ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4011, + ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4012, + ["projectile_base_number_of_targets_to_pierce"]=1571, + ["projectile_chain_from_terrain_chance_%"]=1604, + ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9525, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=9526, + ["projectile_chance_to_fork_%"]=9527, + ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=9528, + ["projectile_damage_+%"]=1760, + ["projectile_damage_+%_against_heavy_stunned_enemies"]=9529, + ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=9530, + ["projectile_damage_+%_in_blood_stance"]=10055, + ["projectile_damage_+%_max_as_distance_travelled_increases"]=3758, + ["projectile_damage_+%_max_before_distance_increase"]=9534, + ["projectile_damage_+%_per_16_dexterity"]=9535, + ["projectile_damage_+%_per_chain"]=9536, + ["projectile_damage_+%_per_pierced_enemy"]=9537, + ["projectile_damage_+%_per_power_charge"]=2437, + ["projectile_damage_+%_per_remaining_chain"]=9538, + ["projectile_damage_+%_vs_chained_enemy"]=9539, + ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=9531, + ["projectile_damage_+%_vs_enemies_within_2m_distance"]=9532, + ["projectile_damage_+%_vs_nearby_enemies"]=9540, + ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=9533, + ["projectile_damage_modifiers_apply_to_skill_dot"]=2486, + ["projectile_damage_taken_+%"]=2533, + ["projectile_daze_chance_%_vs_enemies_further_than_6m"]=9541, + ["projectile_freeze_chance_%"]=2497, + ["projectile_hit_damage_stun_multiplier_+%"]=9542, + ["projectile_number_to_split"]=9543, + ["projectile_return_%_chance"]=2600, + ["projectile_shock_chance_%"]=2498, + ["projectile_skill_gem_level_+"]=991, + ["projectile_speed_+%_per_frenzy_charge"]=2436, + ["projectile_speed_+%_with_crossbow_skills"]=1575, + ["projectile_speed_+%_with_daggers"]=9544, + ["projectile_spell_cooldown_modifier_ms"]=9545, + ["projectile_weakness_curse_effect_+%"]=3688, + ["projectile_weakness_duration_+%"]=3599, + ["projectiles_always_pierce_you"]=9546, + ["projectiles_crit_chance_+%_for_each_time_they_have_pierced"]=9547, + ["projectiles_fork"]=3288, + ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=9548, + ["projectiles_from_spells_cannot_pierce"]=9549, + ["projectiles_from_spells_fork"]=9550, + ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9551, + ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9552, + ["projectiles_pierce_all_nearby_targets"]=9553, + ["projectiles_pierce_enemies_with_fully_broken_armour"]=9554, + ["projectiles_pierce_while_phasing"]=9555, + ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9556, + ["projectiles_return"]=2600, + ["protective_link_duration_+%"]=9557, + ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9558, + ["puncture_damage_+%"]=3357, + ["puncture_duration_+%"]=3591, + ["puncture_maim_on_hit_%_chance"]=3653, + ["punishment_curse_effect_+%"]=3695, + ["punishment_duration_+%"]=3602, + ["punishment_ignores_hexproof"]=2408, + ["punishment_no_reservation"]=9559, + ["puppet_master_does_not_expire_while_you_have_archon_of_undeath"]=9560, + ["puppet_master_duration_+%"]=9561, + ["puppet_master_effect_+%"]=9562, + ["purge_damage_+%"]=9563, + ["purge_duration_+%"]=9564, + ["purge_expose_resist_%_matching_highest_element_damage"]=9565, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9566, + ["purity_of_elements_aura_effect_+%"]=3083, + ["purity_of_elements_mana_reservation_+%"]=3717, + ["purity_of_elements_mana_reservation_efficiency_+%"]=9568, + ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9567, + ["purity_of_elements_reserves_no_mana"]=9569, + ["purity_of_fire_aura_effect_+%"]=3084, + ["purity_of_fire_mana_reservation_+%"]=3718, + ["purity_of_fire_mana_reservation_efficiency_+%"]=9571, + ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9570, + ["purity_of_fire_reserves_no_mana"]=9572, + ["purity_of_ice_aura_effect_+%"]=3085, + ["purity_of_ice_mana_reservation_+%"]=3714, + ["purity_of_ice_mana_reservation_efficiency_+%"]=9574, + ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9573, + ["purity_of_ice_reserves_no_mana"]=9575, + ["purity_of_lightning_aura_effect_+%"]=3086, + ["purity_of_lightning_mana_reservation_+%"]=3719, + ["purity_of_lightning_mana_reservation_efficiency_+%"]=9577, + ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9576, + ["purity_of_lightning_reserves_no_mana"]=9578, + ["quality_display_base_number_of_crossbow_bolts_is_gem"]=1011, + ["quality_display_trinity_is_gem"]=10309, + ["quantity_of_items_dropped_by_maimed_enemies_+%"]=3847, + ["quarterstaff_accuracy_rating_+%"]=1360, + ["quarterstaff_attack_speed_+%"]=1343, + ["quarterstaff_critical_strike_chance_+%"]=1389, + ["quarterstaff_critical_strike_multiplier_+"]=1415, + ["quarterstaff_damage_+%"]=1261, + ["quarterstaff_daze_build_up_+%"]=9579, + ["quarterstaff_hit_damage_freeze_multiplier_+%"]=9580, + ["quarterstaff_hit_damage_stun_multiplier_+%"]=9581, + ["quarterstaff_shock_chance_+%"]=9582, + ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=9583, + ["quick_dodge_added_cooldown_count"]=9584, + ["quick_dodge_travel_distance_+%"]=9585, + ["quick_guard_additional_physical_damage_reduction_%"]=9586, + ["quicksilver_flasks_apply_to_nearby_allies"]=9587, + ["quiver_hellscaping_speed_+%"]=7138, + ["quiver_mod_effect_+%"]=9588, + ["quiver_projectiles_pierce_1_additional_target"]=9589, + ["quiver_projectiles_pierce_2_additional_targets"]=9590, + ["quiver_projectiles_pierce_3_additional_targets"]=9591, + ["rage_decay_speed_+%"]=9600, + ["rage_decay_speed_+%_per_10_tribute"]=9601, + ["rage_effects_doubled"]=9594, + ["rage_effects_tripled"]=9593, + ["rage_gained_on_life_flask_use"]=9602, + ["rage_generated_also_granted_to_allies_in_presence"]=9603, + ["rage_grants_spell_damage_instead"]=9604, + ["rage_loss_delay_ms_+"]=9605, + ["rage_loss_delay_recovery_rate_+%"]=9606, + ["rage_slash_sacrifice_rage_%"]=9607, + ["rage_vortex_area_of_effect_+%"]=9608, + ["rage_vortex_damage_+%"]=9609, + ["raging_spirit_damage_+%"]=3351, + ["raging_spirits_always_ignite"]=9610, + ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=9611, + ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9612, + ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9613, + ["rain_of_arrows_additional_sequence_chance_%"]=9614, + ["rain_of_arrows_attack_speed_+%"]=3549, + ["rain_of_arrows_damage_+%"]=3350, + ["rain_of_arrows_radius_+%"]=3506, + ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9615, + ["raise_shield_skill_inflicts_parry_for_duration_ms"]=9616, + ["raise_spectre_gem_level_+"]=1501, + ["raise_spectre_mana_cost_+%"]=9617, + ["raise_zombie_does_not_use_corpses"]=9618, + ["raise_zombie_gem_level_+"]=1500, + ["raised_zombie_%_chance_to_taunt"]=9619, + ["raised_zombies_are_usable_as_corpses_when_alive"]=9620, + ["raised_zombies_cover_in_ash_on_hit_%"]=9621, + ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9622, + ["raised_zombies_have_avatar_of_fire"]=9623, + ["rallying_cry_buff_effect_+%"]=3791, + ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9624, + ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9625, + ["rallying_cry_duration_+%"]=3609, + ["rallying_cry_exerts_x_additional_attacks"]=9626, + ["random_curse_on_hit_%"]=2314, + ["random_curse_on_hit_%_against_uncursed_enemies"]=9627, + ["random_curse_when_hit_%_ignoring_curse_limit"]=9628, + ["random_projectile_direction"]=9629, + ["randomly_cursed_when_totems_die_curse_level"]=2352, + ["ranged_weapon_physical_damage_+%"]=1762, + ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9630, + ["rapid_assault_attached_spear_limit"]=9631, + ["rare_or_unique_monster_dropped_item_rarity_+%"]=9632, + ["rarity_of_items_dropped_by_maimed_enemies_+%"]=3848, + ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=9633, + ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9634, + ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=9635, + ["reave_attack_speed_per_reave_stack_+%"]=3650, + ["reave_damage_+%"]=3344, + ["reave_radius_+%"]=3503, + ["recall_sigil_target_search_range_+%"]=9636, + ["receive_bleeding_chance_%_when_hit"]=9637, + ["receive_bleeding_chance_%_when_hit_by_attack"]=9638, + ["received_attack_hits_have_impale_chance_%"]=9639, + ["recharge_flasks_on_crit"]=2732, + ["recharge_flasks_on_crit_while_affected_by_precision"]=9640, + ["reckoning_cooldown_speed_+%"]=3572, + ["reckoning_damage_+%"]=3409, + ["recoup_%_elemental_damage_as_energy_shield"]=9641, + ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9642, + ["recoup_effects_apply_over_4_seconds_instead"]=9643, + ["recoup_life_effects_apply_over_3_seconds_instead"]=9644, + ["recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings"]=9670, + ["recoup_speed_+%"]=9646, + ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9647, + ["recover_%_es_on_kill_per_different_mastery"]=1521, + ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=9648, + ["recover_%_life_on_kill_per_different_mastery"]=1520, + ["recover_%_life_per_endurance_charge_consumed"]=9649, + ["recover_%_life_when_gaining_adrenaline"]=9673, + ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9674, + ["recover_%_life_when_you_create_an_offering"]=9650, + ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9675, + ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9676, + ["recover_%_mana_on_kill_per_different_mastery"]=1522, + ["recover_%_mana_when_attached_brand_expires"]=9677, + ["recover_%_mana_when_you_invoke_a_spell"]=9651, + ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9652, + ["recover_%_maximum_life_on_enemy_ignited"]=3992, + ["recover_%_maximum_life_on_flask_use"]=4024, + ["recover_%_maximum_life_on_kill"]=1533, + ["recover_%_maximum_life_on_kill_per_50_tribute"]=9653, + ["recover_%_maximum_life_on_killing_chilled_enemy"]=9678, + ["recover_%_maximum_life_on_killing_cursed_enemy"]=9654, + ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9679, + ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9680, + ["recover_%_maximum_life_on_mana_flask_use"]=4025, + ["recover_%_maximum_life_on_rampage_threshold"]=2721, + ["recover_%_maximum_life_per_glory_consumed"]=9655, + ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2810, + ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9656, + ["recover_%_maximum_life_when_spending_at_least_10_combo"]=9681, + ["recover_%_maximum_mana_on_charm_use"]=9682, + ["recover_%_maximum_mana_on_kill"]=1535, + ["recover_%_maximum_mana_on_kill_per_50_tribute"]=9657, + ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1536, + ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9658, + ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9683, + ["recover_%_maximum_mana_when_enemy_shocked"]=3846, + ["recover_%_maximum_mana_when_spending_at_least_10_combo"]=9684, + ["recover_%_of_life_over_2_seconds_when_you_use_a_command_skill"]=9659, + ["recover_%_of_maximum_life_on_block"]=2814, + ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9685, + ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9660, + ["recover_10%_of_maximum_mana_on_skill_use_%"]=3186, + ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9661, + ["recover_X_life_on_block"]=1544, + ["recover_X_life_on_enemy_ignited"]=9662, + ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9663, + ["recover_X_mana_on_killing_frozen_enemy"]=9664, + ["recover_X_ward_on_block"]=9665, + ["recover_X_ward_on_charm_use"]=9666, + ["recover_energy_shield_%_on_consuming_steel_shard"]=9667, + ["recover_energy_shield_%_on_kill"]=1534, + ["recover_es_as_well_as_life_from_life_regeneration"]=9668, + ["recover_life_%_on_enemy_death_in_presence"]=9669, + ["recover_mana_%_on_enemy_death_in_presence"]=9671, + ["recover_maximum_life_on_enemy_killed_chance_%"]=9672, + ["recover_permyriad_life_on_skill_use"]=9686, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9687, + ["recover_ward_as_well_as_mana_from_mana_regeneration"]=9688, + ["recover_x%_of_maximum_mana_when_you_consume_a_power_charge"]=9689, + ["recover_x%_of_maximum_ward_on_persistent_minion_death"]=9690, + ["reduce_enemy_chaos_resistance_%"]=9691, + ["reduce_enemy_chaos_resistance_with_weapons_%"]=3295, + ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9692, + ["reduce_enemy_cold_resistance_with_weapons_%"]=3292, + ["reduce_enemy_elemental_resistance_%"]=2745, + ["reduce_enemy_elemental_resistance_with_weapons_%"]=3302, + ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9693, + ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9694, + ["reduce_enemy_fire_resistance_with_weapons_%"]=3293, + ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9695, + ["reduce_enemy_lightning_resistance_with_weapons_%"]=3294, + ["reflect_%_of_physical_damage_prevented"]=9696, + ["reflect_curses"]=2279, + ["reflect_damage_taken_+%"]=3936, + ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9697, + ["reflect_hexes_chance_%"]=2280, + ["reflect_shocks"]=9698, + ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9699, + ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9700, + ["refresh_endurance_charges_duration_when_hit_chance_%"]=9701, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=9702, + ["regenerate_%_armour_as_life_over_1_second_on_block"]=2609, + ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9703, + ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9704, + ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9712, + ["regenerate_%_life_over_1_second_when_stunned"]=9705, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9713, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9714, + ["regenerate_%_of_curse_mana_cost_per_second_while_in_delay"]=9706, + ["regenerate_1_rage_per_x_life_regeneration"]=9707, + ["regenerate_1_rage_per_x_mana_regeneration"]=9708, + ["regenerate_X_life_over_1_second_on_cast"]=2608, + ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9709, + ["regenerate_energy_shield_instead_of_life"]=9710, + ["regenerate_mana_equal_to_x%_of_life_per_minute"]=9711, + ["regenerate_ward_instead_of_life"]=9715, + ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9716, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3680, + ["rejuvenation_totem_aura_effect_+%"]=3681, + ["reload_speed_+%"]=9717, + ["remnant_effect_+%"]=9719, + ["remnant_effect_+%_per_10_tribute"]=9718, + ["remnant_pickup_range_+%"]=9721, + ["remnant_pickup_range_+%_if_you_have_at_least_100_tribute"]=9720, + ["remnant_recover_%_life_on_pickup"]=9722, + ["remnant_recover_%_mana_on_pickup"]=9723, + ["remnants_affect_allies_in_presence"]=9724, + ["remove_%_of_mana_on_hit"]=9737, + ["remove_ailments_and_burning_on_gaining_adrenaline"]=9725, + ["remove_all_damaging_ailments_on_warcry"]=9726, + ["remove_bleed_on_flask_use"]=3108, + ["remove_bleed_on_life_flask_use"]=9727, + ["remove_bleeding_on_warcry"]=9728, + ["remove_chill_and_freeze_on_flask_use"]=9729, + ["remove_corrupted_blood_when_you_use_a_flask"]=3109, + ["remove_curse_on_mana_flask_use"]=9730, + ["remove_damaging_ailment_on_using_command_skill"]=9731, + ["remove_damaging_ailments_on_swapping_stance"]=9732, + ["remove_elemental_ailments_on_curse_cast_%"]=9733, + ["remove_ignite_and_burning_on_flask_use"]=9734, + ["remove_ignite_on_warcry"]=9735, + ["remove_maim_and_hinder_on_flask_use"]=9736, + ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9738, + ["remove_random_ailment_when_you_warcry"]=9739, + ["remove_random_charge_on_hit_%"]=9740, + ["remove_random_elemental_ailment_on_mana_flask_use"]=9741, + ["remove_random_non_elemental_ailment_on_life_flask_use"]=9742, + ["remove_shock_on_flask_use"]=9743, + ["remove_x_curses_after_channelling_for_2_seconds"]=9744, + ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9745, + ["required_enemies_to_be_considered_surrounded_offset"]=9746, + ["reservation_efficiency_+%_of_companion_skills"]=9747, + ["reservation_efficiency_+%_of_herald_skills"]=9748, + ["reservation_efficiency_+%_of_meta_skills"]=9749, + ["reservation_efficiency_+%_of_minion_skills"]=9750, + ["reservation_efficiency_+%_of_non_minion_skills"]=9751, + ["reservation_efficiency_+%_of_remnant_skills"]=9752, + ["reservation_efficiency_+%_of_skeleton_minion_skills"]=9871, + ["reservation_efficiency_+%_of_skills_per_socketed_idol"]=9754, + ["reservation_efficiency_+%_of_undead_minion_skills"]=10368, + ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9753, + ["reservation_efficiency_-2%_per_1"]=1980, + ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9755, + ["resist_all_%"]=9758, + ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9759, + ["resist_all_elements_%_per_10_levels"]=2545, + ["resist_all_elements_%_per_endurance_charge"]=1503, + ["resist_all_elements_%_per_power_charge"]=1504, + ["resist_all_elements_%_per_socketed_non_idol_augment"]=9756, + ["resist_all_elements_%_per_socketed_rune"]=9757, + ["resist_all_elements_%_with_200_or_more_strength"]=4047, + ["resist_all_elements_+%_while_holding_shield"]=1505, + ["resolute_technique"]=10712, + ["restore_energy_shield_and_mana_when_you_focus_%"]=9760, + ["restore_life_and_mana_on_warcry_%"]=2940, + ["restore_life_on_warcry_%"]=2941, + ["returning_projectiles_always_pierce"]=9761, + ["revive_golems_if_killed_by_enemies_ms"]=9762, + ["revive_persistent_minion_%_chance_when_you_use_a_command_skill"]=9763, + ["revive_random_persistent_minion_on_offering_expiration"]=9764, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9765, + ["righteous_fire_damage_+%"]=3374, + ["righteous_fire_radius_+%"]=3514, + ["righteous_fire_spell_damage_+%"]=3790, + ["riposte_cooldown_speed_+%"]=3577, + ["riposte_damage_+%"]=3421, + ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9766, + ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9767, + ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9768, + ["runefathers_boast_maximum_stacks"]=10550, + ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9769, + ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9770, + ["sacrifice_%_life_on_spell_skill"]=9773, + ["sacrifice_%_life_to_gain_as_guard_on_dodge_roll"]=9771, + ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9774, + ["sacrifice_%_maximum_life_to_gain_half_as_much_ward_on_attack"]=9772, + ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9775, + ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9776, + ["sanctify_damage_+%"]=9777, + ["sap_on_critical_strike_with_lightning_skills"]=9778, + ["scion_helmet_skill_maximum_totems_+"]=480, + ["scorch_effect_+%"]=9779, + ["scorch_enemies_in_close_range_on_block"]=9780, + ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9781, + ["scourge_arrow_damage_+%"]=9782, + ["seal_gain_frequency_+%"]=9783, + ["searing_bond_damage_+%"]=3369, + ["searing_bond_totem_placement_speed_+%"]=3660, + ["searing_totem_elemental_resistance_+%"]=3796, + ["secondary_maximum_base_chaos_damage"]=1326, + ["secondary_maximum_base_cold_damage"]=1324, + ["secondary_maximum_base_fire_damage"]=1323, + ["secondary_maximum_base_lightning_damage"]=1325, + ["secondary_maximum_base_physical_damage"]=1322, + ["secondary_minimum_base_chaos_damage"]=1326, + ["secondary_minimum_base_cold_damage"]=1324, + ["secondary_minimum_base_fire_damage"]=1323, + ["secondary_minimum_base_lightning_damage"]=1325, + ["secondary_minimum_base_physical_damage"]=1322, + ["secondary_skill_effect_duration_+%"]=9784, + ["seismic_cry_exerted_attack_damage_+%"]=9785, + ["seismic_cry_minimum_power"]=9786, + ["self_bleed_duration_+%"]=9787, + ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=9788, + ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=9789, + ["self_chill_duration_-%"]=1645, + ["self_cold_damage_on_reaching_maximum_power_charges"]=9790, + ["self_critical_strike_multiplier_+%_while_ignited"]=9791, + ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1427, + ["self_curse_duration_+%"]=1934, + ["self_curse_duration_+%_per_10_devotion"]=9792, + ["self_cursed_with_level_x_vulnerability"]=2871, + ["self_elemental_status_duration_-%"]=1644, + ["self_elemental_status_duration_-%_per_10_devotion"]=9793, + ["self_freeze_duration_-%"]=1646, + ["self_ignite_duration_-%"]=1647, + ["self_offering_effect_+%"]=1162, + ["self_physical_damage_on_movement_skill_use"]=9794, + ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9795, + ["self_poison_duration_+%"]=1090, + ["self_take_no_extra_damage_from_critical_strikes"]=3953, + ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9796, + ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9797, + ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9798, + ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9799, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9800, + ["self_take_no_extra_damage_from_critical_strikes_while_on_consecrated_ground"]=9801, + ["sentinel_minion_cooldown_speed_+%"]=9802, + ["sentinel_of_purity_damage_+%"]=9803, + ["serpent_strike_maximum_snakes"]=9804, + ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2758, + ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2763, + ["shapeshift_slam_skill_aftershock_chance_%"]=9805, + ["share_charges_with_allies_in_your_presence"]=9806, + ["share_combo_across_weapon_sets_and_weapon_types"]=9807, + ["shatter_has_%_chance_to_cover_in_frost"]=9808, + ["shatter_on_kill_if_fully_broken_armour"]=9809, + ["shatter_on_kill_vs_bleeding_enemies"]=9810, + ["shatter_on_kill_vs_poisoned_enemies"]=9811, + ["shattering_steel_%_chance_to_not_consume_ammo"]=9815, + ["shattering_steel_damage_+%"]=9812, + ["shattering_steel_fortify_on_hit_close_range"]=9813, + ["shattering_steel_number_of_additional_projectiles"]=9814, + ["shield_armour_evasion_energy_shield_+%"]=9821, + ["shield_armour_evasion_energy_shield_+%_per_10_devotion"]=9823, + ["shield_armour_evasion_energy_shield_+%_per_25_tribute"]=9822, + ["shield_attack_speed_+%"]=1351, + ["shield_block_%"]=1148, + ["shield_charge_attack_speed_+%"]=3551, + ["shield_charge_damage_+%"]=3358, + ["shield_charge_damage_per_target_hit_+%"]=3766, + ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9816, + ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9817, + ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9817, + ["shield_crush_attack_speed_+%"]=9818, + ["shield_crush_damage_+%"]=9819, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=9820, + ["shield_evasion_rating_+%"]=1757, + ["shield_maximum_energy_shield_+%"]=1741, + ["shield_physical_damage_reduction_rating_+%"]=1758, + ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9824, + ["shock_attackers_for_4_seconds_on_block_%_chance"]=9825, + ["shock_chance_+%"]=1082, + ["shock_chance_+%_vs_electrocuted_enemies"]=9826, + ["shock_duration_+%"]=1635, + ["shock_effect_+%"]=9828, + ["shock_effect_+%_if_consumed_frenzy_charge_recently"]=9829, + ["shock_effect_+%_with_critical_strikes"]=9830, + ["shock_effect_against_cursed_enemies_+%"]=9827, + ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=9831, + ["shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy"]=2593, + ["shock_ground_on_using_a_wind_skill"]=9832, + ["shock_magnitude_calculated_from_damage"]=9833, + ["shock_maximum_magnitude_+"]=9835, + ["shock_maximum_magnitude_is_60%"]=9834, + ["shock_minimum_damage_taken_increase_%"]=4122, + ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9837, + ["shock_nova_damage_+%"]=3384, + ["shock_nova_radius_+%"]=3527, + ["shock_nova_ring_chance_to_shock_+%"]=9838, + ["shock_nova_ring_damage_+%"]=3674, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9839, + ["shock_prevention_ms_when_shocked"]=2677, + ["shock_self_for_x_ms_when_you_focus"]=9836, + ["shocked_chilled_effect_on_self_+%"]=9840, + ["shocked_effect_on_self_+%"]=9842, + ["shocked_effect_on_self_+%_while_shapeshifted"]=9841, + ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9843, + ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3307, + ["shocked_ground_base_magnitude_override"]=9844, + ["shocked_ground_on_death_%"]=9845, + ["shocked_ground_when_hit_%"]=2381, + ["shocks_reflected_to_self"]=2556, + ["shockwave_slam_attack_speed_+%"]=3557, + ["shockwave_slam_damage_+%"]=3440, + ["shockwave_slam_explosion_damage_+%_final"]=3272, + ["shockwave_slam_radius_+%"]=3540, + ["shockwave_totem_cast_speed_+%"]=3684, + ["shockwave_totem_damage_+%"]=3385, + ["shockwave_totem_radius_+%"]=3542, + ["should_use_alternate_fortify"]=2038, + ["shrapnel_ballista_num_additional_arrows"]=9846, + ["shrapnel_ballista_num_pierce"]=9847, + ["shrapnel_ballista_projectile_speed_+%"]=9848, + ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9849, + ["shrapnel_shot_damage_+%"]=3425, + ["shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage"]=3706, + ["shrapnel_shot_radius_+%"]=3529, + ["shrapnel_trap_area_of_effect_+%"]=9851, + ["shrapnel_trap_damage_+%"]=9852, + ["shrapnel_trap_number_of_additional_secondary_explosions"]=9853, + ["shrine_buff_effect_on_self_+%"]=2591, + ["shrine_effect_duration_+%"]=2592, + ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=3983, + ["siege_ballista_attack_speed_+%"]=3556, + ["siege_ballista_damage_+%"]=3438, + ["siege_ballista_totem_placement_speed_+%"]=3686, + ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9854, + ["sigil_attached_target_damage_+%"]=9855, + ["sigil_attached_target_damage_taken_+%"]=9856, + ["sigil_critical_strike_chance_+%"]=9857, + ["sigil_critical_strike_multiplier_+"]=9858, + ["sigil_damage_+%"]=9859, + ["sigil_damage_+%_per_10_devotion"]=9860, + ["sigil_duration_+%"]=9861, + ["sigil_recall_cooldown_speed_+%"]=9862, + ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9863, + ["sigil_repeat_frequency_+%"]=9864, + ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9865, + ["sigil_target_search_range_+%"]=9866, + ["silver_flask_display_onslaught"]=3301, + ["silver_footprints_from_item"]=10740, + ["siphon_duration_+%"]=3612, + ["skeletal_chains_area_of_effect_+%"]=9867, + ["skeletal_chains_cast_speed_+%"]=9868, + ["skeletal_chains_damage_+%"]=3434, + ["skeleton_attack_speed_+%"]=9869, + ["skeleton_cast_speed_+%"]=9870, + ["skeleton_duration_+%"]=1560, + ["skeleton_minion_reservation_+%"]=9872, + ["skeleton_movement_speed_+%"]=9873, + ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9875, + ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9874, + ["skeletons_are_permanent_minions"]=9876, + ["skeletons_damage_+%"]=3359, + ["skill_additional_fissure_chance_%"]=9877, + ["skill_area_of_effect_+%_if_enemy_killed_recently"]=3893, + ["skill_area_of_effect_+%_in_sand_stance"]=10060, + ["skill_area_of_effect_+%_per_active_mine"]=3178, + ["skill_area_of_effect_+%_per_power_charge"]=1890, + ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=1891, + ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1813, + ["skill_area_of_effect_when_unarmed_+%"]=2809, + ["skill_can_see_monster_categories"]=9878, + ["skill_cooldown_-%"]=1669, + ["skill_cost_base_life_equal_to_base_mana"]=9879, + ["skill_cost_efficiency_+%_if_consumed_power_charge_recently"]=9880, + ["skill_detonation_time_+%"]=9881, + ["skill_effect_duration_+%"]=1667, + ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3895, + ["skill_effect_duration_+%_per_10_strength"]=1779, + ["skill_effect_duration_+%_per_enemy_frozen_last_8_seconds"]=9882, + ["skill_effect_duration_+%_when_using_shapeshift_skills"]=9883, + ["skill_effect_duration_+%_while_affected_by_malevolence"]=9884, + ["skill_effect_duration_+%_with_bow_skills"]=9885, + ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9886, + ["skill_effect_duration_per_100_int"]=2840, + ["skill_glory_gain_per_2_seconds"]=4129, + ["skill_internal_monster_responsiveness_+%"]=1691, + ["skill_life_cost_+"]=1662, + ["skill_life_cost_+_with_channelling_skills"]=9887, + ["skill_life_cost_+_with_non_channelling_skills"]=9888, + ["skill_mana_cost_+"]=1663, + ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4022, + ["skill_mana_cost_+_while_affected_by_clarity"]=9889, + ["skill_mana_cost_+_with_channelling_skills"]=9890, + ["skill_mana_cost_+_with_non_channelling_skills"]=9892, + ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9894, + ["skill_mana_costs_converted_to_life_costs_%_during_life_flask"]=9895, + ["skill_range_+%"]=1692, + ["skill_repeat_count"]=1665, + ["skill_speed_+%"]=860, + ["skill_speed_+%_against_bloodlusting_enemies"]=9896, + ["skill_speed_+%_if_consumed_frenzy_charge_recently"]=9897, + ["skill_speed_+%_while_on_low_mana"]=9898, + ["skill_speed_+%_while_shapeshifted"]=9899, + ["skill_speed_+%_with_channelling_skills"]=9900, + ["skill_visual_scale_+%"]=23, + ["skills_cost_divinity_instead_of_mana_or_life"]=9901, + ["skills_cost_no_mana_while_focused"]=9902, + ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=9903, + ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=9904, + ["skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost"]=9905, + ["skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem"]=7259, + ["skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem"]=7257, + ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9906, + ["skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem"]=7258, + ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9907, + ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9908, + ["skitterbots_mana_reservation_efficiency_+%"]=9910, + ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9909, + ["slam_aftershock_chance_%"]=9911, + ["slam_ancestor_totem_damage_+%"]=3817, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3496, + ["slam_ancestor_totem_radius_+%"]=3820, + ["slam_skill_area_of_effect_+%"]=9912, + ["slams_always_ancestral_slam"]=2209, + ["slash_ancestor_totem_damage_+%"]=3818, + ["slash_ancestor_totem_elemental_resistance_%"]=2570, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3495, + ["slash_ancestor_totem_radius_+%"]=3819, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9913, + ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1167, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9914, + ["slayer_damage_+%_final_against_unique_enemies"]=9915, + ["slayer_damage_+%_final_from_distance"]=9916, + ["slither_elusive_effect_+%"]=9917, + ["slither_wither_stacks"]=9918, + ["slow_potency_+%_if_you_have_used_a_charm_recently"]=9919, + ["slows_have_no_potency_on_you"]=9920, + ["slows_have_no_potency_on_you_while_missing_ward"]=9921, + ["slows_have_no_potency_on_you_while_sprinting"]=9922, + ["small_passives_effect_+%"]=9923, + ["smite_aura_effect_+%"]=9924, + ["smite_chance_for_lighting_to_strike_extra_target_%"]=9925, + ["smite_damage_+%"]=9926, + ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9927, + ["smoke_cloud_while_stationary_radius"]=9928, + ["smoke_mine_base_movement_velocity_+%"]=3786, + ["smoke_mine_duration_+%"]=3596, + ["snap_damage_+%_final_if_created_from_unique"]=9929, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9931, + ["snapping_adder_damage_+%"]=9930, + ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9932, + ["snipe_attack_speed_+%"]=9933, + ["snipe_damage_+%_final_if_created_from_unique"]=9934, + ["solaris_spear_number_of_pulses"]=9935, + ["solaris_spear_pulse_delay_ms"]=9935, + ["sorcery_ward_+%_strength"]=9936, + ["sorcery_ward_applies_to_physical_chaos"]=9937, + ["soul_eater_maximum_stacks"]=9938, + ["soul_eater_on_rare_kill_ms"]=3144, + ["soul_link_duration_+%"]=9939, + ["soulfeast_number_of_secondary_projectiles"]=9940, + ["soulrend_applies_hinder_movement_speed_+%"]=9941, + ["soulrend_damage_+%"]=9942, + ["soulrend_number_of_additional_projectiles"]=9943, + ["spark_damage_+%"]=3345, + ["spark_num_of_additional_projectiles"]=3636, + ["spark_number_of_additional_projectiles"]=9944, + ["spark_projectile_speed_+%"]=3585, + ["spark_projectiles_nova"]=9945, + ["spark_skill_effect_duration_+%"]=9946, + ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9947, + ["spawn_defender_with_totem"]=9948, + ["spear_accuracy_rating"]=1776, + ["spear_accuracy_rating_+%"]=1367, + ["spear_attack_speed_+%"]=1350, + ["spear_critical_strike_chance_+%"]=1392, + ["spear_critical_strike_multiplier_+"]=1416, + ["spear_damage_+%"]=1290, + ["spear_skills_inflict_bloodstone_lance_on_hit"]=9949, + ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=9950, + ["spectral_helix_damage_+%"]=9951, + ["spectral_helix_projectile_speed_+%"]=9952, + ["spectral_helix_rotations_%"]=9953, + ["spectral_shield_throw_additional_chains"]=9954, + ["spectral_shield_throw_damage_+%"]=9955, + ["spectral_shield_throw_num_of_additional_projectiles"]=9956, + ["spectral_shield_throw_projectile_speed_+%"]=9957, + ["spectral_shield_throw_secondary_projectiles_pierce"]=9958, + ["spectral_shield_throw_shard_projectiles_+%_final"]=9959, + ["spectral_spiral_weapon_base_number_of_bounces"]=9960, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9961, + ["spectral_throw_damage_+%"]=3346, + ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2969, + ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9962, + ["spectral_throw_projectile_deceleration_+%"]=3651, + ["spectral_throw_projectile_speed_+%"]=3586, + ["spectre_attack_and_cast_speed_+%"]=3561, + ["spectre_damage_+%"]=3171, + ["spectre_elemental_resistances_%"]=3666, + ["spectre_maximum_life_+"]=9963, + ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9965, + ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=9966, + ["spectres_critical_strike_chance_+%"]=9967, + ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=9968, + ["spectres_have_base_duration_ms"]=9969, + ["spell_additional_critical_strike_chance_permyriad"]=9970, + ["spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills"]=9971, + ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=9972, + ["spell_and_attack_maximum_added_cold_damage"]=1302, + ["spell_and_attack_maximum_added_fire_damage"]=1301, + ["spell_and_attack_maximum_added_lightning_damage"]=1333, + ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=9972, + ["spell_and_attack_minimum_added_cold_damage"]=1302, + ["spell_and_attack_minimum_added_fire_damage"]=1301, + ["spell_and_attack_minimum_added_lightning_damage"]=1333, + ["spell_area_damage_+%"]=9973, + ["spell_area_of_effect_+%"]=9974, + ["spell_bow_damage_+%"]=1205, + ["spell_chance_to_deal_double_damage_%"]=9975, + ["spell_chance_to_shock_frozen_enemies_%"]=2695, + ["spell_cold_damage_+%"]=1203, + ["spell_crit_bonus_+%_per_spell_crit_recently"]=1006, + ["spell_critical_hit_chance_%_for_lucky_damage"]=9976, + ["spell_critical_strike_chance_+%"]=1001, + ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=9978, + ["spell_critical_strike_chance_+%_per_100_max_life"]=9980, + ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=9979, + ["spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills"]=9977, + ["spell_critical_strike_chance_+%_per_raised_spectre"]=9981, + ["spell_critical_strike_chance_+%_while_dual_wielding"]=5872, + ["spell_critical_strike_chance_+%_while_holding_shield"]=5873, + ["spell_critical_strike_chance_+%_while_wielding_staff"]=5874, + ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5898, + ["spell_critical_strike_multiplier_+_while_holding_shield"]=5899, + ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5900, + ["spell_damage_+%"]=894, + ["spell_damage_+%_during_flask_effect"]=9995, + ["spell_damage_+%_during_mana_flask_effect"]=9982, + ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=9983, + ["spell_damage_+%_for_4_seconds_on_cast"]=3239, + ["spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds"]=9984, + ["spell_damage_+%_if_have_consumed_infusion_recently"]=9985, + ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=9996, + ["spell_damage_+%_if_have_crit_recently"]=9986, + ["spell_damage_+%_if_minion_died_recently"]=9987, + ["spell_damage_+%_if_other_ring_is_elder_item"]=4017, + ["spell_damage_+%_if_you_have_blocked_recently"]=9997, + ["spell_damage_+%_if_youve_reverted_recently"]=9988, + ["spell_damage_+%_per_100_max_life"]=9998, + ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=9999, + ["spell_damage_+%_per_100_max_mana_with_non_channelling_skills"]=9989, + ["spell_damage_+%_per_100_maximum_mana"]=10000, + ["spell_damage_+%_per_10_int"]=2523, + ["spell_damage_+%_per_10_spirit"]=10001, + ["spell_damage_+%_per_10_strength"]=10002, + ["spell_damage_+%_per_16_dex"]=10003, + ["spell_damage_+%_per_16_int"]=10004, + ["spell_damage_+%_per_16_strength"]=10005, + ["spell_damage_+%_per_200_mana_spent_recently"]=4028, + ["spell_damage_+%_per_5%_block_chance"]=2522, + ["spell_damage_+%_per_500_maximum_mana"]=9990, + ["spell_damage_+%_per_level"]=2731, + ["spell_damage_+%_per_power_charge"]=1901, + ["spell_damage_+%_per_rage"]=9991, + ["spell_damage_+%_while_companion_in_presence"]=9992, + ["spell_damage_+%_while_dual_wielding"]=1207, + ["spell_damage_+%_while_es_full"]=2832, + ["spell_damage_+%_while_holding_shield"]=1206, + ["spell_damage_+%_while_no_mana_reserved"]=2834, + ["spell_damage_+%_while_not_low_mana"]=2835, + ["spell_damage_+%_while_shocked"]=10006, + ["spell_damage_+%_while_wielding_melee_weapon"]=9993, + ["spell_damage_+%_while_you_have_arcane_surge"]=10007, + ["spell_damage_+%_with_spells_that_cost_life"]=9994, + ["spell_damage_modifiers_apply_to_attack_damage"]=2479, + ["spell_damage_modifiers_apply_to_skill_dot"]=2485, + ["spell_damage_taken_+%_from_blinded_enemies"]=2961, + ["spell_damage_taken_+%_when_on_low_mana"]=2274, + ["spell_elemental_ailment_magnitude_+%"]=10008, + ["spell_elemental_damage_+%"]=1824, + ["spell_fire_damage_+%"]=1202, + ["spell_hits_against_you_inflict_poison_%"]=10009, + ["spell_impale_magnitude_+%"]=10010, + ["spell_impale_on_crit_%_chance"]=10011, + ["spell_maximum_added_chaos_damage"]=1331, + ["spell_maximum_added_chaos_damage_while_dual_wielding"]=1867, + ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1868, + ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1869, + ["spell_maximum_added_cold_damage"]=1329, + ["spell_maximum_added_cold_damage_per_power_charge"]=1602, + ["spell_maximum_added_cold_damage_while_dual_wielding"]=1870, + ["spell_maximum_added_cold_damage_while_holding_a_shield"]=1871, + ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1872, + ["spell_maximum_added_fire_damage"]=1328, + ["spell_maximum_added_fire_damage_while_dual_wielding"]=1873, + ["spell_maximum_added_fire_damage_while_holding_a_shield"]=1874, + ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1875, + ["spell_maximum_added_lightning_damage"]=1330, + ["spell_maximum_added_lightning_damage_while_dual_wielding"]=1876, + ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1877, + ["spell_maximum_added_lightning_damage_while_unarmed"]=2212, + ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1878, + ["spell_maximum_added_physical_damage"]=1327, + ["spell_maximum_added_physical_damage_while_dual_wielding"]=1879, + ["spell_maximum_added_physical_damage_while_holding_a_shield"]=1880, + ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1881, + ["spell_maximum_base_chaos_damage"]=1321, + ["spell_maximum_base_cold_damage"]=1319, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1332, + ["spell_maximum_base_fire_damage"]=1318, + ["spell_maximum_base_lightning_damage"]=1320, + ["spell_maximum_base_physical_damage"]=1317, + ["spell_minimum_added_chaos_damage"]=1331, + ["spell_minimum_added_chaos_damage_while_dual_wielding"]=1867, + ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1868, + ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1869, + ["spell_minimum_added_cold_damage"]=1329, + ["spell_minimum_added_cold_damage_per_power_charge"]=1602, + ["spell_minimum_added_cold_damage_while_dual_wielding"]=1870, + ["spell_minimum_added_cold_damage_while_holding_a_shield"]=1871, + ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1872, + ["spell_minimum_added_fire_damage"]=1328, + ["spell_minimum_added_fire_damage_while_dual_wielding"]=1873, + ["spell_minimum_added_fire_damage_while_holding_a_shield"]=1874, + ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1875, + ["spell_minimum_added_lightning_damage"]=1330, + ["spell_minimum_added_lightning_damage_while_dual_wielding"]=1876, + ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1877, + ["spell_minimum_added_lightning_damage_while_unarmed"]=2212, + ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1878, + ["spell_minimum_added_physical_damage"]=1327, + ["spell_minimum_added_physical_damage_while_dual_wielding"]=1879, + ["spell_minimum_added_physical_damage_while_holding_a_shield"]=1880, + ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1881, + ["spell_minimum_base_chaos_damage"]=1321, + ["spell_minimum_base_cold_damage"]=1319, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1332, + ["spell_minimum_base_fire_damage"]=1318, + ["spell_minimum_base_lightning_damage"]=1320, + ["spell_minimum_base_physical_damage"]=1317, + ["spell_physical_damage_+%"]=901, + ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=10012, + ["spell_repeat_count"]=1666, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=10013, + ["spell_skill_gem_level_+"]=973, + ["spell_skill_projectile_speed_+%"]=10014, + ["spell_skills_additional_totems_allowed"]=10015, + ["spell_skills_deal_no_damage"]=10016, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=10017, + ["spell_staff_damage_+%"]=1204, + ["spells_chance_to_hinder_on_hit_%"]=10018, + ["spells_chance_to_knockback_on_hit_%"]=10019, + ["spells_chance_to_poison_on_hit_%"]=10020, + ["spells_cost_life_instead_of_mana_%"]=10021, + ["spells_gain_%_of_damage_as_extra_chaos_per_curse_on_target"]=9289, + ["spells_gain_%_of_damage_as_extra_phys_per_curse_on_target"]=9290, + ["spells_gain_%_physical_damage_if_they_cost_life"]=10022, + ["spells_have_culling_strike"]=2334, + ["spells_have_x%_chance_inflict_withered_on_hit"]=10023, + ["spells_impale_on_hit_%_chance"]=10024, + ["spells_number_of_additional_projectiles"]=3998, + ["spells_penetrates_elemental_resist_%_while_on_low_ward"]=10025, + ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10027, + ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10026, + ["spellslinger_cooldown_duration_+%"]=10028, + ["spellslinger_mana_reservation_+%"]=10031, + ["spellslinger_mana_reservation_efficiency_+%"]=10030, + ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10029, + ["spend_energy_shield_for_costs_before_mana"]=2863, + ["spending_energy_shield_does_not_interrupt_recharge"]=10032, + ["spider_aspect_debuff_duration_+%"]=10033, + ["spider_aspect_skill_area_of_effect_+%"]=10034, + ["spider_aspect_web_interval_ms_override"]=10035, + ["spike_slam_num_spikes"]=10036, + ["spirit_+%"]=1440, + ["spirit_+%_if_you_have_at_least_100_tribute"]=10037, + ["spirit_+%_per_stackable_unique_jewel"]=10046, + ["spirit_+_if_at_least_200_dexterity"]=10038, + ["spirit_+_if_at_least_200_intelligence"]=10039, + ["spirit_+_if_at_least_200_strength"]=10040, + ["spirit_+_per_2_levels"]=10041, + ["spirit_+_per_empty_charm_slot"]=10042, + ["spirit_does_not_exist"]=10043, + ["spirit_offering_critical_strike_chance_+%"]=10044, + ["spirit_offering_critical_strike_multiplier_+"]=10045, + ["spirit_offering_duration_+%"]=3595, + ["spirit_offering_effect_+%"]=1166, + ["spirit_offering_physical_damage_%_to_gain_as_chaos"]=3860, + ["split_arrow_critical_strike_chance_+%"]=3627, + ["split_arrow_damage_+%"]=3347, + ["split_arrow_num_of_additional_projectiles"]=3637, + ["split_arrow_number_of_additional_arrows"]=2910, + ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10047, + ["splitting_steel_area_of_effect_+%"]=10049, + ["splitting_steel_damage_+%"]=10050, + ["spread_ignite_from_killed_enemies_range"]=10051, + ["sprint_movement_speed_+%"]=10052, + ["sprint_movement_speed_+%_per_active_persistent_minion"]=10053, + ["stacking_damage_+%_on_kill_for_4_seconds"]=3311, + ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3040, + ["staff_accuracy_rating"]=1773, + ["staff_block_%"]=1149, + ["staff_elemental_damage_+%"]=1883, + ["staff_stun_duration_+%"]=1643, + ["stance_skill_cooldown_speed_+%"]=10057, + ["stance_skill_reservation_+%"]=10059, + ["stance_skills_mana_reservation_efficiency_+%"]=10058, + ["stance_swap_cooldown_modifier_ms"]=10061, + ["start_at_zero_energy_shield"]=10063, + ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=10064, + ["static_strike_additional_number_of_beam_targets"]=10065, + ["static_strike_damage_+%"]=3370, + ["static_strike_duration_+%"]=3619, + ["static_strike_radius_+%"]=3510, + ["status_ailments_removed_at_low_life"]=3050, + ["status_ailments_you_inflict_duration_+%_while_focused"]=10066, + ["status_ailments_you_inflict_duration_+%_with_bows"]=10067, + ["stealth_+%"]=10068, + ["stealth_+%_if_have_hit_with_claw_recently"]=10069, + ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4595, + ["steel_steal_area_of_effect_+%"]=10070, + ["steel_steal_cast_speed_+%"]=10071, + ["steel_steal_reflect_damage_+%"]=10072, + ["steelskin_damage_limit_+%"]=10073, + ["stibnite_flask_evasion_rating_+%_final"]=10074, + ["stone_golem_damage_+%"]=3393, + ["stone_golem_elemental_resistances_%"]=3668, + ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10075, + ["stone_skin_maximum_stacks"]=5413, + ["storm_armageddon_sigils_can_target_reaper_minions"]=10076, + ["storm_barrier_effect_+%"]=10077, + ["storm_blade_has_local_attack_speed_+%"]=10078, + ["storm_blade_has_local_lightning_penetration_%"]=10079, + ["storm_blade_quality_chance_to_shock_%"]=10080, + ["storm_blade_quality_local_critical_strike_chance_+%"]=10081, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=10082, + ["storm_brand_additional_chain_chance_%"]=10083, + ["storm_brand_attached_target_lightning_penetration_%"]=10084, + ["storm_brand_damage_+%"]=10085, + ["storm_burst_15_%_chance_to_create_additional_orb"]=10086, + ["storm_burst_additional_object_chance_%"]=10087, + ["storm_burst_area_of_effect_+%"]=10088, + ["storm_burst_avoid_interruption_while_casting_%"]=10089, + ["storm_burst_damage_+%"]=3435, + ["storm_burst_number_of_additional_projectiles"]=10090, + ["storm_call_damage_+%"]=3371, + ["storm_call_duration_+%"]=3620, + ["storm_call_radius_+%"]=3511, + ["storm_cloud_charge_count"]=3159, + ["storm_cloud_charged_damage_+%_final"]=3160, + ["storm_cloud_critical_strike_chance_+%"]=3632, + ["storm_cloud_radius_+%"]=3538, + ["storm_rain_damage_+%"]=10091, + ["storm_rain_num_additional_arrows"]=10092, + ["storm_skill_limit_+"]=10093, + ["stormbind_skill_area_of_effect_+%"]=10094, + ["stormbind_skill_damage_+%"]=10095, + ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10096, + ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10097, + ["stormweaver_chill_effect_+%_final"]=10098, + ["stormweaver_shock_effect_+%_final"]=10099, + ["strength_+%"]=1022, + ["strength_and_dexterity_+%"]=1025, + ["strength_and_intelligence_+%"]=1026, + ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=10100, + ["strength_inherently_grants_accuracy_instead_of_life"]=1780, + ["strength_skill_gem_level_+"]=976, + ["strike_skills_knockback_on_melee_hit"]=10101, + ["strike_skills_used_with_finality_perform_a_final_strike_if_they_have_one"]=10102, + ["stun_and_ailment_threshold_+%_while_surrounded"]=10103, + ["stun_duration_+%"]=1767, + ["stun_duration_+%_per_15_strength"]=10105, + ["stun_duration_+%_per_endurance_charge"]=10106, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3061, + ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3062, + ["stun_duration_on_critical_strike_+%"]=10104, + ["stun_duration_on_self_+%"]=3850, + ["stun_nearby_enemies_when_stunned_chance_%"]=10107, + ["stun_recovery_+%_per_frenzy_charge"]=1672, + ["stun_threshold_+"]=1084, + ["stun_threshold_+%"]=3005, + ["stun_threshold_+%_during_empowered_attacks"]=10108, + ["stun_threshold_+%_for_each_time_hit_recently_up_to_100%"]=10109, + ["stun_threshold_+%_if_stunned_recently"]=10115, + ["stun_threshold_+%_if_youve_shapeshifted_to_animal_recently"]=10110, + ["stun_threshold_+%_per_25_tribute"]=10111, + ["stun_threshold_+%_per_number_of_times_stunned_recently"]=10112, + ["stun_threshold_+%_per_rage"]=10638, + ["stun_threshold_+%_when_not_stunned_recently"]=10123, + ["stun_threshold_+%_when_on_full_life"]=10124, + ["stun_threshold_+%_while_channelling"]=10113, + ["stun_threshold_+%_while_shapeshifted"]=10114, + ["stun_threshold_+_from_%_maximum_energy_shield"]=10121, + ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=10116, + ["stun_threshold_+_per_10_maximum_ward"]=10117, + ["stun_threshold_+_per_dexterity"]=10118, + ["stun_threshold_+_per_strength"]=10119, + ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10120, + ["stun_threshold_based_on_%_mana_instead_of_life"]=3004, + ["stun_threshold_based_on_energy_shield_instead_of_life"]=3943, + ["stun_threshold_reduction_+%_while_using_flask"]=2696, + ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10125, + ["stuns_have_culling_strike"]=1798, + ["summon_2_totems"]=10126, + ["summon_arbalist_attack_speed_+%"]=10127, + ["summon_arbalist_chains_+"]=10128, + ["summon_arbalist_chance_to_bleed_%"]=10129, + ["summon_arbalist_chance_to_crush_on_hit_%"]=10130, + ["summon_arbalist_chance_to_deal_double_damage_%"]=10131, + ["summon_arbalist_chance_to_freeze_%"]=10146, + ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10148, + ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10149, + ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10150, + ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10132, + ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10133, + ["summon_arbalist_chance_to_poison_%"]=10134, + ["summon_arbalist_chance_to_shock_%"]=10147, + ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10135, + ["summon_arbalist_number_of_additional_projectiles"]=10136, + ["summon_arbalist_number_of_splits"]=10137, + ["summon_arbalist_projectiles_fork"]=10144, + ["summon_arbalist_targets_to_pierce"]=10145, + ["summon_raging_spirit_melee_splash_fire_damage_only"]=10151, + ["summon_reaper_cooldown_speed_+%"]=10152, + ["summon_skeleton_gem_level_+"]=1502, + ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10154, + ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10153, + ["summon_skeletons_cooldown_modifier_ms"]=10155, + ["summon_skeletons_num_additional_warrior_skeletons"]=3683, + ["summon_skitterbots_area_of_effect_+%"]=10156, + ["summon_skitterbots_mana_reservation_+%"]=10157, + ["summon_totem_cast_speed_+%"]=2382, + ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=10138, + ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=10139, + ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=10140, + ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=10141, + ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=10142, + ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=10143, + ["summoned_phantasms_grant_buff"]=10158, + ["summoned_phantasms_have_no_duration"]=10159, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3133, + ["summoned_raging_spirit_duration_+%"]=3132, + ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10160, + ["summoned_reaper_damage_+%"]=10161, + ["summoned_reaper_physical_dot_multiplier_+"]=10162, + ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10163, + ["summoned_skeleton_%_physical_to_chaos"]=10164, + ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4094, + ["summoned_skeletons_cover_in_ash_on_hit_%"]=10165, + ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10166, + ["summoned_skeletons_have_avatar_of_fire"]=10713, + ["summoned_skeletons_hits_cant_be_evaded"]=10167, + ["summoned_skitterbots_cooldown_recovery_+%"]=10168, + ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10169, + ["sunder_wave_delay_+%"]=3541, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10170, + ["support_approaching_storms_area_of_effect_+%_final"]=10171, + ["support_approaching_storms_damage_+%_final"]=10172, + ["support_approaching_storms_movement_speed_+%_final"]=10173, + ["support_buffed_heralds_buff_effect_+%_final"]=10174, + ["support_deadly_heralds_buff_effect_+%_final"]=10175, + ["support_deadly_heralds_damage_+%_final"]=10176, + ["support_fast_forward_detonation_time_+%_final"]=10177, + ["support_gem_elemental_damage_+%_final"]=3297, + ["support_gems_socketed_in_amulet_also_support_body_skills"]=203, + ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=204, + ["support_hourglass_damage_+%_final"]=10178, + ["support_jagged_ground_chance_%"]=10179, + ["support_last_gasp_duration_ms"]=10180, + ["support_maimed_enemies_physical_damage_taken_+%"]=10181, + ["support_minion_maximum_life_+%_final"]=1546, + ["support_mirage_archer_base_duration"]=10183, + ["support_slashing_damage_+%_final_from_distance"]=10184, + ["support_slower_projectiles_damage_+%_final"]=2621, + ["supported_active_skill_gem_expereince_gained_+%"]=2672, + ["supported_active_skill_gem_quality_%"]=2597, + ["surpassing_chance_%_to_gain_1_puppeteer_stack_on_using_command_skill"]=10185, + ["surrounded_area_of_effect_+%"]=10186, + ["sweep_add_endurance_charge_on_hit_%"]=3512, + ["sweep_damage_+%"]=3372, + ["sweep_knockback_chance_%"]=3661, + ["sweep_radius_+%"]=3513, + ["sword_accuracy_rating"]=1768, + ["sword_accuracy_rating_+%"]=1365, + ["sword_attack_speed_+%"]=1348, + ["sword_critical_strike_chance_+%"]=1387, + ["sword_critical_strike_multiplier_+"]=1412, + ["sword_damage_+%"]=1282, + ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10187, + ["synthesis_map_global_mod_values_doubled_on_this_node"]=10188, + ["synthesis_map_global_mod_values_tripled_on_this_node"]=10189, + ["synthesis_map_memories_do_not_collapse_on_this_node"]=10190, + ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10191, + ["synthesis_map_nearby_memories_have_bonus"]=10192, + ["synthesis_map_node_additional_uses_+"]=10193, + ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10194, + ["synthesis_map_node_grants_additional_global_mod"]=10195, + ["synthesis_map_node_grants_no_global_mod"]=10196, + ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10197, + ["synthesis_map_node_item_quantity_increases_doubled"]=10198, + ["synthesis_map_node_item_rarity_increases_doubled"]=10199, + ["synthesis_map_node_level_+"]=10200, + ["synthesis_map_node_monsters_drop_no_items"]=10201, + ["synthesis_map_node_pack_size_increases_doubled"]=10202, + ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=10203, + ["tailwind_effect_on_self_+%"]=10204, + ["tailwind_effect_on_self_+%_per_gale_force"]=10205, + ["tailwind_if_have_crit_recently"]=10206, + ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10207, + ["take_chaos_damage_from_ignite_instead"]=2261, + ["take_half_area_damage_from_hit_%_chance"]=10208, + ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10209, + ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=10210, + ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10211, + ["tame_beast_can_target_unique_beasts"]=10212, + ["tame_beasts_unique_damage_+%_final"]=10213, + ["tame_beasts_unique_movement_velocity_+%"]=10214, + ["tame_beasts_unique_skill_speed_+%"]=10215, + ["tamed_beasts_randomly_possessed_every_x_ms"]=10216, + ["taunt_duration_+%"]=1563, + ["taunt_on_projectile_hit_chance_%"]=10217, + ["taunted_enemies_by_warcry_damage_taken_+%"]=10218, + ["taunted_enemies_chance_to_be_stunned_+%"]=2953, + ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3926, + ["taunted_enemies_damage_taken_+%"]=2954, + ["tectonic_slam_%_chance_to_do_charged_slam"]=10224, + ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10219, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10220, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10221, + ["tectonic_slam_area_of_effect_+%"]=10222, + ["tectonic_slam_damage_+%"]=10223, + ["tectonic_slam_side_crack_additional_chance_%"]=10226, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10225, + ["tempest_shield_buff_effect_+%"]=10227, + ["tempest_shield_damage_+%"]=3417, + ["tempest_shield_num_of_additional_projectiles_in_chain"]=3707, + ["temporal_chains_curse_effect_+%"]=3689, + ["temporal_chains_duration_+%"]=3600, + ["temporal_chains_effect_on_self_+%"]=1517, + ["temporal_chains_gem_level_+"]=2030, + ["temporal_chains_ignores_hexproof"]=2409, + ["temporal_chains_mana_reservation_+%"]=3728, + ["temporal_chains_no_reservation"]=10228, + ["temporal_rift_cooldown_speed_+%"]=10229, + ["temporary_minion_limit_+"]=10230, + ["thaumaturgy_rotation_active"]=10231, + ["the_wendigo_manifests_every_x_seconds"]=10652, + ["thorns_critical_strike_chance_+%"]=10232, + ["thorns_damage_+%"]=10237, + ["thorns_damage_+%_if_blocked_recently"]=10238, + ["thorns_damage_+%_if_consumed_endurance_charge_recently"]=10233, + ["thorns_damage_+%_per_10_tribute"]=10234, + ["thorns_damage_has_%_chance_to_ignore_armour"]=10235, + ["thorns_damage_is_lucky_against_enemies_with_fully_broken_armour"]=10236, + ["thorns_maximum_base_chaos_damage"]=10240, + ["thorns_maximum_base_cold_damage"]=10241, + ["thorns_maximum_base_fire_damage"]=10242, + ["thorns_maximum_base_lightning_damage"]=10243, + ["thorns_maximum_base_physical_damage"]=10244, + ["thorns_maximum_fire_damage_per_100_life"]=10239, + ["thorns_minimum_base_chaos_damage"]=10240, + ["thorns_minimum_base_cold_damage"]=10241, + ["thorns_minimum_base_fire_damage"]=10242, + ["thorns_minimum_base_lightning_damage"]=10243, + ["thorns_minimum_base_physical_damage"]=10244, + ["thorns_minimum_fire_damage_per_100_life"]=10239, + ["thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute"]=10245, + ["thorns_proc_off_any_hit"]=10246, + ["threshold_jewel_magma_orb_damage_+%_final"]=10250, + ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10251, + ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10252, + ["thrown_shield_secondary_projectile_damage_+%_final"]=10253, + ["titan_additional_inventory"]=10254, + ["titan_damage_+%_final_against_heavy_stunned_enemies"]=10255, + ["titan_expanded_main_inventory"]=10256, + ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=10257, + ["titan_maximum_life_+%_final"]=10258, + ["tornado_damage_+%"]=10260, + ["tornado_damage_frequency_+%"]=10259, + ["tornado_movement_speed_+%"]=10261, + ["tornado_only_primary_duration_+%"]=10262, + ["tornado_shot_critical_strike_chance_+%"]=3631, + ["tornado_shot_damage_+%"]=3377, + ["tornado_shot_num_of_secondary_projectiles"]=3639, + ["tornado_skill_area_of_effect_+%"]=10263, + ["total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence"]=947, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3482, + ["totem_additional_physical_damage_reduction_%"]=2571, + ["totem_aura_enemy_damage_+%_final"]=3484, + ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3485, + ["totem_chaos_immunity"]=10265, + ["totem_chaos_resistance_%"]=10266, + ["totem_critical_strike_chance_+%"]=1405, + ["totem_critical_strike_multiplier_+"]=1429, + ["totem_damage_+%"]=1175, + ["totem_damage_+%_final_per_active_totem"]=3446, + ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10268, + ["totem_damage_+%_per_10_devotion"]=10269, + ["totem_damage_+%_per_active_curse_on_self"]=10267, + ["totem_duration_+%"]=1559, + ["totem_elemental_resistance_%"]=2569, + ["totem_energy_shield_+%"]=1557, + ["totem_fire_immunity"]=1498, + ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10270, + ["totem_life_+%"]=1555, + ["totem_mana_+%"]=1556, + ["totem_maximum_all_elemental_resistances_%"]=479, + ["totem_maximum_energy_shield"]=10271, + ["totem_number_of_additional_projectiles"]=2833, + ["totem_only_uses_skill_when_owner_attacks"]=10272, + ["totem_placement_range_+%"]=10273, + ["totem_range_+%"]=1558, + ["totem_skill_area_of_effect_+%"]=2385, + ["totem_skill_attack_speed_+%"]=2384, + ["totem_skill_cast_speed_+%"]=2383, + ["totem_skill_gem_level_+"]=996, + ["totem_spells_damage_+%"]=10274, + ["totemified_skills_taunt_on_hit_%"]=3148, + ["totems_action_speed_cannot_be_modified_below_base"]=10264, + ["totems_attack_speed_+%_per_active_totem"]=3868, + ["totems_cannot_be_stunned"]=2816, + ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3041, + ["totems_explode_on_death_for_%_life_as_physical"]=10275, + ["totems_nearby_enemies_damage_taken_+%"]=10276, + ["totems_regenerate_%_life_per_minute"]=10277, + ["totems_resist_all_elements_+%_per_active_totem"]=3852, + ["totems_spells_cast_speed_+%_per_active_totem"]=3856, + ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10278, + ["tower_add_abyss_to_X_maps"]=10279, + ["tower_add_breach_to_X_maps"]=10280, + ["tower_add_delirium_to_X_maps"]=10281, + ["tower_add_expedition_to_X_maps"]=10282, + ["tower_add_incursion_to_X_maps"]=10283, + ["tower_add_irradiated_to_X_maps"]=10284, + ["tower_add_map_bosses_to_X_maps"]=10285, + ["tower_add_ritual_to_X_maps"]=10286, + ["toxic_rain_damage_+%"]=10287, + ["toxic_rain_num_of_additional_projectiles"]=10288, + ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=10289, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2706, + ["trap_%_chance_to_trigger_twice"]=3490, + ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10290, + ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2566, + ["trap_and_mine_maximum_added_physical_damage"]=3489, + ["trap_and_mine_minimum_added_physical_damage"]=3489, + ["trap_and_mine_throwing_speed_+%"]=10291, + ["trap_critical_strike_chance_+%"]=1002, + ["trap_critical_strike_multiplier_+"]=1007, + ["trap_damage_+%"]=895, + ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3487, + ["trap_damage_buildup_damage_+%_final_when_first_set"]=3486, + ["trap_damage_penetrates_%_elemental_resistance"]=2564, + ["trap_duration_+%"]=1684, + ["trap_or_mine_damage_+%"]=1176, + ["trap_skill_added_cooldown_count"]=10292, + ["trap_skill_area_of_effect_+%"]=3190, + ["trap_skill_gem_level_+"]=997, + ["trap_spread_+%"]=10293, + ["trap_throw_skills_have_blood_magic"]=10724, + ["trap_throwing_speed_+%"]=1689, + ["trap_throwing_speed_+%_per_frenzy_charge"]=10294, + ["trap_trigger_radius_+%"]=1687, + ["traps_and_mines_%_chance_to_poison"]=3767, + ["traps_cannot_be_triggered_by_enemies"]=10295, + ["traps_do_not_explode_on_timeout"]=2561, + ["traps_explode_on_timeout"]=2562, + ["traps_invulnerable"]=10296, + ["traps_invulnerable_for_duration_ms"]=2567, + ["travel_skill_cooldown_speed_+%"]=4064, + ["travel_skills_cannot_be_exerted"]=10297, + ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4074, + ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10298, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10299, + ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10300, + ["trickster_damage_+%_final_per_different_mastery"]=1519, + ["trickster_damage_over_time_+%_final"]=10301, + ["trigger_elemental_storm_on_crit"]=10302, + ["trigger_skills_refund_half_energy_spent_chance_%"]=10303, + ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=630, + ["trigger_socketed_spell_on_attack_%"]=631, + ["trigger_socketed_spell_on_skill_use_%"]=633, + ["trigger_socketed_spells_when_you_focus_%"]=634, + ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=140, + ["trigger_wild_strike_on_attack_crit"]=10304, + ["triggerbots_damage_+%_final_with_triggered_spells"]=10305, + ["triggered_spell_spell_damage_+%"]=10306, + ["triggers_burning_runes_on_placing_ground_rune"]=10307, + ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=10308, + ["trinity_damage_+%_final_to_grant_per_50_resonance"]=10309, + ["trinity_loss_per_hit"]=10310, + ["trinity_resonance_to_grant"]=10310, + ["two_handed_melee_accuracy_rating_+%"]=1358, + ["two_handed_melee_area_damage_+%"]=10311, + ["two_handed_melee_area_of_effect_+%"]=10312, + ["two_handed_melee_attack_speed_+%"]=1340, + ["two_handed_melee_cold_damage_+%"]=1254, + ["two_handed_melee_critical_strike_chance_+%"]=1395, + ["two_handed_melee_critical_strike_multiplier_+"]=1396, + ["two_handed_melee_fire_damage_+%"]=1253, + ["two_handed_melee_physical_damage_+%"]=1251, + ["two_handed_melee_stun_duration_+%"]=1641, + ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10313, + ["uber_domain_monster_all_resistances_+%_per_revival"]=10314, + ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10315, + ["uber_domain_monster_avoid_stun_%_per_revival"]=10316, + ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10317, + ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10318, + ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10319, + ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10320, + ["uber_domain_monster_maximum_life_+%_per_revival"]=10321, + ["uber_domain_monster_movement_speed_+%_per_revival"]=10322, + ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10323, + ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10324, + ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10325, + ["uber_domain_monster_reward_chance_+%"]=10326, + ["ultimatum_wager_type_hash"]=46, + ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10327, + ["unaffected_by_bleeding_while_affected_by_malevolence"]=10328, + ["unaffected_by_bleeding_while_leeching"]=10329, + ["unaffected_by_blind"]=10330, + ["unaffected_by_burning_ground"]=10331, + ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10332, + ["unaffected_by_chill"]=10333, + ["unaffected_by_chill_during_dodge_roll"]=10334, + ["unaffected_by_chill_while_channelling"]=10335, + ["unaffected_by_chill_while_mana_leeching"]=10336, + ["unaffected_by_chilled_ground"]=10337, + ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10338, + ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10339, + ["unaffected_by_corrupted_blood_while_leeching"]=10340, + ["unaffected_by_curses"]=2281, + ["unaffected_by_curses_while_affected_by_zealotry"]=10341, + ["unaffected_by_damaging_ailments"]=10342, + ["unaffected_by_desecrated_ground"]=10343, + ["unaffected_by_elemental_weakness"]=10344, + ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10345, + ["unaffected_by_enfeeble_while_affected_by_grace"]=10346, + ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10347, + ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10348, + ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10349, + ["unaffected_by_ignite"]=10350, + ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10351, + ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10352, + ["unaffected_by_poison_while_affected_by_malevolence"]=10353, + ["unaffected_by_shock"]=10354, + ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10355, + ["unaffected_by_shock_while_channelling"]=10356, + ["unaffected_by_shocked_ground"]=10357, + ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10358, + ["unaffected_by_temporal_chains"]=10359, + ["unaffected_by_temporal_chains_while_affected_by_haste"]=10360, + ["unaffected_by_vulnerability_while_affected_by_determination"]=10361, + ["unarmed_attack_area_of_effect_+1%_per_X_intelligence"]=10362, + ["unarmed_attack_skill_melee_dash_range_+%"]=10363, + ["unarmed_attack_speed_+%"]=10364, + ["unarmed_damage_+%"]=3281, + ["unarmed_damage_+%_vs_bleeding_enemies"]=3274, + ["unarmed_melee_attack_speed_+%"]=1352, + ["unarmed_melee_physical_damage_+%"]=1255, + ["unattached_sigil_attachment_range_+%_per_second"]=10365, + ["unbound_ailment_elemental_ailment_chance_+%_final"]=10366, + ["unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final"]=10367, + ["undead_minion_reservation_+%"]=10369, + ["unearth_additional_corpse_level"]=10370, + ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=10371, + ["unholy_might_while_you_have_no_energy_shield"]=2521, + ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=10372, + ["unique_add_power_charge_on_melee_knockback_%"]=2708, + ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=10373, + ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=10373, + ["unique_blood_barrier_corrupted_blood_duration_ms"]=10373, + ["unique_blood_price_enemies_in_presence_have_at_least_%_life_reserved"]=10374, + ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=10650, + ["unique_body_armour_item_rarity_only_+%"]=965, + ["unique_body_armour_life_flask_life_recovery_+%_final"]=10375, + ["unique_body_armour_maximum_energy_shield_override_is_%_of_strength"]=1929, + ["unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield"]=1483, + ["unique_body_armour_unfaltering_faith_damage_over_time_does_not_bypass_energy_shield"]=10376, + ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4104, + ["unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life"]=4002, + ["unique_boots_secondary_ground_shock_while_moving"]=4003, + ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10728, + ["unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence"]=4114, + ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2737, + ["unique_chill_duration_+%_when_in_off_hand"]=2550, + ["unique_chin_sol_close_range_bow_damage_+%_final"]=2216, + ["unique_chin_sol_close_range_knockback"]=2217, + ["unique_cold_damage_ignites"]=2633, + ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1511, + ["unique_cooldown_modifier_ms"]=10377, + ["unique_critical_strike_chance_+%_final"]=2603, + ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=10378, + ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=10379, + ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2269, + ["unique_double_presence_radius"]=10380, + ["unique_facebreaker_can_use_mace_attacks_with_both_hands_empty_using_facebreaker_base_damage"]=10381, + ["unique_facebreaker_unarmed_attack_damage_+1%_final_per_X_strength"]=2210, + ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1508, + ["unique_fire_damage_shocks"]=2632, + ["unique_gain_onslaught_when_hit_duration_ms"]=2605, + ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2620, + ["unique_gain_power_charge_on_non_crit"]=2680, + ["unique_gain_soul_eater"]=10382, + ["unique_gain_x_guard_for_500_ms_per_combo_lost_using_skills"]=10383, + ["unique_gloves_item_rarity_only_+%"]=966, + ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10384, + ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10385, + ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10386, + ["unique_jewel_flask_duration_+%_final"]=10387, + ["unique_jewel_grants_notable_hash_1"]=10388, + ["unique_jewel_grants_notable_hash_2"]=10389, + ["unique_jewel_grants_notable_hash_3"]=10390, + ["unique_jewel_grants_notable_hash_part_1"]=10391, + ["unique_jewel_grants_notable_hash_part_2"]=10392, + ["unique_jewel_grants_x_voices_jewel_sockets"]=10393, + ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10394, + ["unique_jewel_specific_skill_level_+_level"]=10395, + ["unique_jewel_specific_skill_level_+_skill"]=10395, + ["unique_lightning_damage_freezes"]=2634, + ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1514, + ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1315, + ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1300, + ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1294, + ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1315, + ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1300, + ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1294, + ["unique_loris_lantern_golden_light"]=2359, + ["unique_lose_a_power_charge_when_hit"]=10397, + ["unique_lose_all_endurance_charges_when_hit"]=2604, + ["unique_lose_all_power_charges_on_crit"]=2681, + ["unique_mace_fire_damage_with_mace_skills_%_to_convert_to_cold"]=10398, + ["unique_map_boss_class_of_rare_items_to_drop"]=2508, + ["unique_map_boss_number_of_rare_items_to_drop"]=2508, + ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2737, + ["unique_mine_damage_+%_final"]=1178, + ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2737, + ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=10399, + ["unique_monster_dropped_item_rarity_+%"]=10400, + ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=10401, + ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2750, + ["unique_no_curse_delay"]=10402, + ["unique_primordial_tether_golem_damage_+%_final"]=3400, + ["unique_primordial_tether_golem_life_+%_final"]=3771, + ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=10403, + ["unique_quill_rain_damage_+%_final"]=2262, + ["unique_recover_%_maximum_life_on_x_altenator"]=10404, + ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=10405, + ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10406, + ["unique_revive_permanent_minions_on_mana_flask_use"]=10407, + ["unique_ryslathas_coil_maximum_physical_attack_damage_+%_final"]=1180, + ["unique_ryslathas_coil_minimum_physical_attack_damage_+%_final"]=1181, + ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=10408, + ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10409, + ["unique_spirit_reservations_are_halved"]=10410, + ["unique_sunblast_throw_traps_in_circle_radius"]=10411, + ["unique_two_handed_weapon_lightning_stun_multiplier_+%_final"]=10412, + ["unique_volkuurs_clutch_poison_duration_+%_final"]=2919, + ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2694, + ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10413, + ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=10414, + ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=10415, + ["unnerve_for_4_seconds_on_hit_with_wands"]=10416, + ["unnerve_nearby_enemies_on_use_for_ms"]=10417, + ["unveiled_mod_effect_+%"]=73, + ["using_mana_flask_grants_%_recovery_amount_as_guard_for_4s"]=10418, + ["utility_flask_charges_recovered_per_3_seconds"]=10419, + ["utility_flask_cold_damage_taken_+%_final"]=10420, + ["utility_flask_fire_damage_taken_+%_final"]=10421, + ["utility_flask_lightning_damage_taken_+%_final"]=10422, + ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2484, + ["vaal_skill_critical_strike_chance_+%"]=2857, + ["vaal_skill_critical_strike_multiplier_+"]=2858, + ["vaal_skill_damage_+%"]=2845, + ["vaal_skill_effect_duration_+%"]=2855, + ["vaal_skill_gem_level_+"]=10423, + ["vaal_skill_soul_cost_+%"]=10424, + ["vaal_skill_soul_gain_preventation_duration_+%"]=2856, + ["vaal_skill_soul_refund_chance_%"]=10425, + ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10426, + ["vampiric_link_duration_+%"]=10427, + ["vengeance_cooldown_speed_+%"]=3578, + ["vengeance_damage_+%"]=3422, + ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10428, + ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2983, + ["vigilant_strike_damage_+%"]=3410, + ["vigilant_strike_fortify_duration_+%"]=3598, + ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10429, + ["viper_strike_critical_strike_chance_+%"]=3628, + ["viper_strike_damage_+%"]=3352, + ["viper_strike_dual_wield_damage_+%_final"]=10430, + ["viper_strike_poison_duration_+%"]=3617, + ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3114, + ["virtual_block_%_damage_taken"]=10431, + ["virtual_chance_to_gain_1_more_endurance_charge_%"]=10432, + ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=10433, + ["virtual_chance_to_gain_1_more_power_charge_%"]=10434, + ["virtual_energy_shield_delay_-%"]=3284, + ["virtual_energy_shield_recharge_rate_+%"]=3286, + ["virtual_glory_generation_+%"]=10435, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break"]=10436, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit"]=10437, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_chaos_hit"]=10438, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun"]=10439, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite"]=10440, + ["virtual_light_radius_+%"]=2303, + ["virtual_mana_gain_per_target"]=1531, + ["virtual_maximum_curse_zones_allowed"]=10441, + ["virtual_minion_damage_+%"]=1744, + ["virtual_number_of_banners_allowed"]=10442, + ["virtual_number_of_ranged_animated_weapons_allowed"]=3003, + ["virulent_arrow_additional_spores_at_max_stages"]=10443, + ["virulent_arrow_chance_to_poison_%_per_stage"]=10444, + ["vitality_mana_reservation_+%"]=3720, + ["vitality_mana_reservation_efficiency_+%"]=10446, + ["vitality_mana_reservation_efficiency_-2%_per_1"]=10445, + ["vitality_reserves_no_mana"]=10447, + ["vivid_stag_damage_%_final_per_cascade"]=10448, + ["vivid_stag_maximum_stag_wisps_allowed"]=10449, + ["vivid_stag_metres_travled_per_wisp_gain"]=10449, + ["vivid_stag_shock_effect_%_final_per_cascade"]=10450, + ["vivisection_armour_evasion_energy_shield_+%_final"]=10452, + ["vivisection_damage_+%_final"]=10451, + ["vivisection_maximum_life_+%_final"]=10453, + ["vivisection_maximum_mana_+%_final"]=10454, + ["vivisection_movement_speed_+%_final"]=10455, + ["vivisection_spirit_+%_final"]=10456, + ["void_sphere_cooldown_speed_+%"]=10457, + ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10458, + ["volatile_dead_base_number_of_corpses_to_consume"]=10459, + ["volatile_dead_cast_speed_+%"]=10460, + ["volatile_dead_consume_additional_corpse"]=10461, + ["volatile_dead_damage_+%"]=10462, + ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=10463, + ["volatility_critical_strike_chance_+%_to_grant"]=10464, + ["volatility_detonation_delay_+%"]=10465, + ["volatility_on_kill_%_chance"]=10466, + ["volatility_physical_damage_taken_%_as_cold"]=2232, + ["volatility_refresh_%_chance"]=10467, + ["volatility_when_stunned_%_chance"]=10468, + ["volcanic_fissure_damage_+%"]=10469, + ["volcanic_fissure_number_of_additional_projectiles"]=10470, + ["volcanic_fissure_speed_+%"]=10471, + ["voltaxic_burst_damage_+%"]=10472, + ["voltaxic_burst_damage_+%_per_100ms_duration"]=10473, + ["voltaxic_burst_skill_area_of_effect_+%"]=10474, + ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10475, + ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10476, + ["vulnerability_curse_effect_+%"]=3696, + ["vulnerability_duration_+%"]=3601, + ["vulnerability_gem_level_+"]=2031, + ["vulnerability_ignores_hexproof"]=2410, + ["vulnerability_mana_reservation_+%"]=3729, + ["vulnerability_no_reservation"]=10477, + ["wand_accuracy_rating"]=1775, + ["wand_accuracy_rating_+%"]=1366, + ["wand_attack_speed_+%"]=1349, + ["wand_critical_strike_chance_+%"]=1390, + ["wand_critical_strike_multiplier_+"]=1413, + ["wand_damage_+%"]=2713, + ["wand_damage_+%_if_crit_recently"]=10478, + ["wand_damage_+%_per_power_charge"]=1902, + ["wand_elemental_damage_+%"]=1882, + ["war_banner_aura_effect_+%"]=10479, + ["war_banner_mana_reservation_efficiency_+%"]=10480, + ["warbringer_overbreak_armour"]=10481, + ["warcries_apply_fire_exposure"]=10482, + ["warcries_are_instant"]=3174, + ["warcries_bypass_cooldown"]=10483, + ["warcries_cost_no_mana"]=3809, + ["warcries_debilitate_enemies_for_1_second"]=10484, + ["warcries_have_minimum_10_power"]=10485, + ["warcries_inflict_x_critical_weakness_on_enemies"]=10486, + ["warcries_knock_back_enemies"]=10487, + ["warcry_buff_effect_+%"]=10488, + ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10489, + ["warcry_cooldown_modifier_ms"]=10490, + ["warcry_cooldown_speed_+%"]=3057, + ["warcry_damage_+%"]=10491, + ["warcry_damage_taken_goes_to_mana_%"]=2996, + ["warcry_duration_+%"]=2942, + ["warcry_empowers_next_x_melee_attacks"]=10492, + ["warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute"]=10493, + ["warcry_monster_power_+%"]=10494, + ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10495, + ["warcry_skill_area_of_effect_+%"]=10496, + ["warcry_skills_cooldown_is_4_seconds"]=10497, + ["warcry_speed_+%"]=3011, + ["warcry_speed_+%_per_25_tribute"]=10498, + ["ward_%_gained_on_kill"]=10499, + ["ward_%_to_recover_on_reaching_maximum_rage"]=10500, + ["ward_can_overcap"]=10501, + ["ward_regeneration_rate_+%"]=10502, + ["ward_regeneration_rate_+%_if_have_crit_recently"]=10503, + ["ward_regeneration_rate_+%_while_sprinting"]=10504, + ["ward_regeneration_rate_+1%_final_per_x%_ward_lost_from_hits_up_to_100%"]=10505, + ["ward_regeneration_rate_-1%_per_X_maximum_ward"]=10506, + ["ward_regeneration_rate_is_doubled"]=10507, + ["ward_rune_maximum_ward_+%_final"]=4130, + ["warping_rune_add_item_tag_1"]=10508, + ["warping_rune_add_item_tag_2"]=10509, + ["warping_rune_add_item_tag_3"]=10510, + ["warping_rune_add_item_tag_4"]=10511, + ["warping_rune_add_item_tag_5"]=10512, + ["warping_rune_add_item_tag_6"]=10513, + ["water_sphere_cold_lightning_exposure_%"]=10514, + ["water_sphere_damage_+%"]=10515, + ["weapon_chaos_damage_+%"]=1823, + ["weapon_cold_damage_+%"]=1821, + ["weapon_damage_+%_per_10_str"]=10516, + ["weapon_elemental_damage_+%"]=1289, + ["weapon_elemental_damage_+%_per_power_charge"]=2476, + ["weapon_elemental_damage_+%_while_using_flask"]=2542, + ["weapon_fire_damage_+%"]=1820, + ["weapon_hellscaping_speed_+%"]=7137, + ["weapon_lightning_damage_+%"]=1822, + ["weapon_physical_damage_+%"]=2530, + ["weapon_swap_speed_+%"]=10517, + ["while_curse_is_25%_expired_hinder_enemy_%"]=10518, + ["while_curse_is_33%_expired_malediction"]=10519, + ["while_curse_is_50%_expired_curse_effect_+%"]=10520, + ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10521, + ["while_stationary_gain_additional_physical_damage_reduction_%"]=10522, + ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10523, + ["while_using_mace_stun_threshold_reduction_+%"]=1430, + ["whirling_blades_attack_speed_+%"]=3560, + ["whirling_blades_damage_+%"]=3411, + ["wild_strike_damage_+%"]=3386, + ["wild_strike_num_of_additional_projectiles_in_chain"]=3682, + ["wild_strike_radius_+%"]=3520, + ["wind_skills_can_be_empowered_by_multiple_elements"]=10524, + ["wind_skills_count_as_empowered_by_chilled_ground"]=10525, + ["wind_skills_count_as_empowered_by_ignited_ground"]=10525, + ["wind_skills_count_as_empowered_by_shocked_ground"]=10525, + ["wind_skills_deal_no_non_elemental_damage"]=10526, + ["winter_brand_chill_effect_+%"]=10527, + ["winter_brand_damage_+%"]=10528, + ["winter_brand_max_number_of_stages_+"]=10529, + ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10530, + ["witch_passive_maximum_lightning_damage_+%_final"]=10531, + ["witchhunter_armour_evasion_+%_final"]=10532, + ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=10533, + ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=10534, + ["with_bow_additional_block_%"]=2265, + ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10535, + ["wither_duration_+%"]=3613, + ["wither_inflicted_also_does_fire"]=4117, + ["wither_never_expires"]=4115, + ["wither_radius_+%"]=3532, + ["withered_effect_on_self_+%"]=10536, + ["withered_enemies_deal_+%_damage"]=10537, + ["withered_magnitude_+%"]=10538, + ["withered_on_hit_for_2_seconds_%_chance"]=4078, + ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10539, + ["withered_on_hit_for_4_seconds_%_chance"]=10540, + ["wrath_aura_effect_+%"]=3087, + ["wrath_mana_reservation_+%"]=3721, + ["wrath_mana_reservation_efficiency_+%"]=10542, + ["wrath_mana_reservation_efficiency_-2%_per_1"]=10541, + ["wrath_reserves_no_mana"]=10543, + ["x%_damage_taken_recouped_as_life_per_5_rage"]=10544, + ["x%_faster_start_of_sorcery_ward_recovery"]=10545, + ["x%_of_armour_applies_to_elemental_damage_while_shapeshifted"]=10546, + ["x%_of_damage_taken_while_channelling_recouped_as_life"]=10547, + ["x_to_maximum_life_per_2_intelligence"]=1789, + ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10551, + ["you_and_allies_in_presence_accuracy_rating_+%"]=10552, + ["you_and_allies_in_presence_all_damage_can_ignite"]=10553, + ["you_and_allies_in_presence_attack_speed_+%"]=10554, + ["you_and_allies_in_presence_cast_speed_+%"]=10555, + ["you_and_allies_in_presence_chaos_damage_resistance_%"]=10556, + ["you_and_allies_in_presence_cooldown_speed_+%"]=10557, + ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=10558, + ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3749, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10559, + ["you_and_nearby_allies_critical_strike_chance_+%"]=10560, + ["you_and_nearby_allies_critical_strike_multiplier_+"]=10561, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10562, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10563, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10564, + ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10565, + ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10566, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10567, + ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3055, + ["you_are_cursed_with_despair"]=10568, + ["you_are_cursed_with_elemental_weakness"]=10569, + ["you_are_cursed_with_enfeeble"]=10570, + ["you_are_cursed_with_temporal_chains"]=10571, + ["you_are_cursed_with_vulnerability"]=10572, + ["you_cannot_be_hindered"]=10573, + ["you_cannot_have_non_animated_minions"]=10574, + ["you_cannot_have_non_golem_minions"]=3391, + ["you_cannot_have_non_spectre_minions"]=10575, + ["you_cannot_inflict_curses"]=10576, + ["you_count_as_full_life_while_affected_by_vulnerability"]=2868, + ["you_count_as_low_life_while_affected_by_vulnerability"]=2869, + ["you_count_as_low_life_while_not_on_full_life"]=10577, + ["you_gain_%_life_when_one_of_your_minions_is_revived"]=10578, + ["your_aegis_skills_except_primal_are_disabled"]=636, + ["your_aftershock_area_of_effect_+%"]=10579, + ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10581, + ["your_auras_except_anger_are_disabled"]=10582, + ["your_auras_except_clarity_are_disabled"]=10583, + ["your_auras_except_determination_are_disabled"]=10584, + ["your_auras_except_discipline_are_disabled"]=10585, + ["your_auras_except_grace_are_disabled"]=10586, + ["your_auras_except_haste_are_disabled"]=10587, + ["your_auras_except_hatred_are_disabled"]=10588, + ["your_auras_except_malevolence_are_disabled"]=10589, + ["your_auras_except_precision_are_disabled"]=10590, + ["your_auras_except_pride_are_disabled"]=10591, + ["your_auras_except_purity_of_elements_are_disabled"]=10592, + ["your_auras_except_purity_of_fire_are_disabled"]=10593, + ["your_auras_except_purity_of_ice_are_disabled"]=10594, + ["your_auras_except_purity_of_lightning_are_disabled"]=10595, + ["your_auras_except_vitality_are_disabled"]=10596, + ["your_auras_except_wrath_are_disabled"]=10597, + ["your_auras_except_zealotry_are_disabled"]=10598, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10599, + ["your_consecrated_ground_grants_damage_+%"]=3905, + ["your_elemental_resistances_do_not_exist"]=2613, + ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=10600, + ["your_life_cannot_change_while_you_have_energy_shield"]=10601, + ["your_life_flasks_also_apply_to_your_minions"]=1942, + ["your_mace_slam_aftershock_chance_%"]=10602, + ["your_mace_strike_melee_splash_chance_%"]=10603, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=10604, + ["your_movement_skills_are_disabled"]=10605, + ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10606, + ["your_shield_skills_are_disabled"]=10607, + ["your_slam_aftershock_chance_%"]=10608, + ["your_spells_are_disabled"]=10609, + ["your_travel_skills_are_disabled"]=10610, + ["your_travel_skills_except_dash_are_disabled"]=10611, + ["zealotry_aura_effect_+%"]=10627, + ["zealotry_mana_reservation_+%"]=10630, + ["zealotry_mana_reservation_efficiency_+%"]=10629, + ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10628, + ["zealotry_reserves_no_mana"]=10631, + ["zero_chaos_resistance"]=10632, + ["zombie_attack_speed_+%"]=3548, + ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10633, + ["zombie_chaos_elemental_damage_resistance_%"]=2393, + ["zombie_damage_+%"]=3343, + ["zombie_elemental_resistances_%"]=3667, + ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2475, + ["zombie_maximum_life_+"]=2392, + ["zombie_physical_damage_+%"]=2474, + ["zombie_physical_damage_+%_final"]=10634, + ["zombie_scale_+%"]=2473, + ["zombie_slam_area_of_effect_+%"]=10635, + ["zombie_slam_cooldown_speed_+%"]=10636, + ["zombie_slam_damage_+%"]=10637 } \ No newline at end of file diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index d47dd4445b..b7503c19df 100644 --- a/src/Data/TimelessJewelData/LegionPassives.lua +++ b/src/Data/TimelessJewelData/LegionPassives.lua @@ -18,7 +18,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 855, + ["statOrder"] = 872, }, }, }, @@ -37,7 +37,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 856, + ["statOrder"] = 873, }, }, }, @@ -56,7 +56,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 857, + ["statOrder"] = 874, }, }, }, @@ -75,7 +75,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -94,7 +94,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 858, + ["statOrder"] = 875, }, }, }, @@ -113,7 +113,7 @@ return { ["index"] = 1, ["max"] = 13, ["min"] = 8, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, }, }, @@ -132,7 +132,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1093, + ["statOrder"] = 1155, }, }, }, @@ -151,7 +151,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 853, + ["statOrder"] = 870, }, }, }, @@ -170,7 +170,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1699, + ["statOrder"] = 1772, }, }, }, @@ -189,7 +189,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1663, + ["statOrder"] = 1736, }, }, }, @@ -208,7 +208,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1104, + ["statOrder"] = 1166, }, }, }, @@ -227,7 +227,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1557, + ["statOrder"] = 1628, }, }, }, @@ -246,7 +246,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 875, + ["statOrder"] = 896, }, }, }, @@ -265,7 +265,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10137, + ["statOrder"] = 10749, }, }, }, @@ -284,7 +284,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 937, + ["statOrder"] = 979, }, }, }, @@ -303,7 +303,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 941, + ["statOrder"] = 984, }, }, }, @@ -322,7 +322,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 942, + ["statOrder"] = 986, }, }, }, @@ -341,7 +341,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 827, + ["statOrder"] = 835, }, }, }, @@ -377,7 +377,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 989, + ["statOrder"] = 1055, }, }, }, @@ -396,7 +396,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 991, + ["statOrder"] = 1057, }, }, }, @@ -415,7 +415,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1572, + ["statOrder"] = 1643, }, }, }, @@ -434,7 +434,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -453,7 +453,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 872, + ["statOrder"] = 893, }, }, }, @@ -472,7 +472,7 @@ return { ["index"] = 1, ["max"] = 17, ["min"] = 12, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, }, }, @@ -491,7 +491,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -510,7 +510,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 866, + ["statOrder"] = 883, }, }, }, @@ -529,7 +529,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 3, - ["statOrder"] = 868, + ["statOrder"] = 885, }, }, }, @@ -548,7 +548,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 2130, + ["statOrder"] = 1122, }, }, }, @@ -584,7 +584,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 1526, + ["statOrder"] = 1597, }, }, }, @@ -620,7 +620,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 3145, + ["statOrder"] = 3249, }, }, }, @@ -639,7 +639,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2266, + ["statOrder"] = 2374, }, }, }, @@ -658,7 +658,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, }, }, @@ -677,7 +677,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, }, }, @@ -696,7 +696,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 960, + ["statOrder"] = 1022, }, }, }, @@ -715,7 +715,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 961, + ["statOrder"] = 1023, }, }, }, @@ -734,7 +734,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10108, + ["statOrder"] = 10720, }, }, }, @@ -753,7 +753,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10108, + ["statOrder"] = 10720, }, }, }, @@ -772,7 +772,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10108, + ["statOrder"] = 10720, }, }, }, @@ -791,7 +791,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10109, + ["statOrder"] = 10721, }, }, }, @@ -810,7 +810,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -846,7 +846,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 5124, + ["statOrder"] = 5487, }, }, }, @@ -865,7 +865,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -884,7 +884,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4588, + ["statOrder"] = 4713, }, }, }, @@ -903,7 +903,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1617, + ["statOrder"] = 1689, }, }, }, @@ -922,7 +922,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, }, }, @@ -941,7 +941,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1124, + ["statOrder"] = 1186, }, }, }, @@ -960,7 +960,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 950, + ["statOrder"] = 1004, }, }, }, @@ -979,7 +979,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 1311, + ["statOrder"] = 1374, }, }, }, @@ -998,7 +998,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1554, + ["statOrder"] = 1625, }, }, }, @@ -1017,7 +1017,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1089, + ["statOrder"] = 1151, }, }, }, @@ -1036,7 +1036,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1330, + ["statOrder"] = 1394, }, }, }, @@ -1055,7 +1055,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -1074,7 +1074,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 9883, + ["statOrder"] = 10464, }, }, }, @@ -1093,7 +1093,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 2250, + ["statOrder"] = 2358, }, }, }, @@ -1112,7 +1112,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 986, + ["statOrder"] = 1052, }, }, }, @@ -1131,7 +1131,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2236, + ["statOrder"] = 2344, }, }, }, @@ -1150,7 +1150,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 983, + ["statOrder"] = 1049, }, }, }, @@ -1169,7 +1169,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1604, + ["statOrder"] = 1672, }, }, }, @@ -1188,7 +1188,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2119, + ["statOrder"] = 2195, }, }, }, @@ -1207,7 +1207,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2293, + ["statOrder"] = 2401, }, }, }, @@ -1226,7 +1226,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5180, + ["statOrder"] = 5545, }, }, }, @@ -1245,7 +1245,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10110, + ["statOrder"] = 10722, }, }, }, @@ -1264,7 +1264,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10110, + ["statOrder"] = 10722, }, }, }, @@ -1283,7 +1283,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10110, + ["statOrder"] = 10722, }, }, }, @@ -1302,7 +1302,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10111, + ["statOrder"] = 10723, }, }, }, @@ -1321,7 +1321,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 866, + ["statOrder"] = 883, }, }, }, @@ -1340,7 +1340,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 981, + ["statOrder"] = 1047, }, }, }, @@ -1359,7 +1359,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1706, + ["statOrder"] = 1779, }, }, }, @@ -1378,7 +1378,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -1397,7 +1397,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10146, + ["statOrder"] = 10758, }, }, }, @@ -1416,7 +1416,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 827, + ["statOrder"] = 835, }, }, }, @@ -1435,7 +1435,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, }, }, @@ -1454,7 +1454,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1663, + ["statOrder"] = 1736, }, }, }, @@ -1473,7 +1473,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1534, + ["statOrder"] = 1605, }, }, }, @@ -1492,7 +1492,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 10137, + ["statOrder"] = 10749, }, }, }, @@ -1528,7 +1528,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, }, }, @@ -1547,7 +1547,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1268, + ["statOrder"] = 1331, }, }, }, @@ -1566,7 +1566,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1651, + ["statOrder"] = 1724, }, }, }, @@ -1585,7 +1585,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 3145, + ["statOrder"] = 3249, }, }, }, @@ -1604,7 +1604,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1454, + ["statOrder"] = 1526, }, }, }, @@ -1623,7 +1623,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1544, + ["statOrder"] = 1615, }, }, }, @@ -1642,7 +1642,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6124, + ["statOrder"] = 6528, }, }, }, @@ -1661,7 +1661,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 8659, + ["statOrder"] = 9183, }, }, }, @@ -1680,7 +1680,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1605, + ["statOrder"] = 1673, }, }, }, @@ -1699,7 +1699,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 6315, + ["statOrder"] = 6719, }, }, }, @@ -1718,7 +1718,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2295, + ["statOrder"] = 2403, }, }, }, @@ -1737,7 +1737,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 2307, + ["statOrder"] = 2415, }, }, }, @@ -1756,7 +1756,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10105, + ["statOrder"] = 10717, }, }, }, @@ -1775,7 +1775,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10105, + ["statOrder"] = 10717, }, }, }, @@ -1794,7 +1794,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 10106, + ["statOrder"] = 10718, }, }, }, @@ -2078,7 +2078,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10278, + ["statOrder"] = 10888, }, }, }, @@ -2118,7 +2118,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10283, + ["statOrder"] = 10893, }, }, }, @@ -2236,7 +2236,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 855, + ["statOrder"] = 872, }, }, }, @@ -2275,7 +2275,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 856, + ["statOrder"] = 873, }, }, }, @@ -2314,7 +2314,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 857, + ["statOrder"] = 874, }, }, }, @@ -2353,7 +2353,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -2392,7 +2392,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 858, + ["statOrder"] = 875, }, }, }, @@ -2431,7 +2431,7 @@ return { ["index"] = 1, ["max"] = 13, ["min"] = 8, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, }, }, @@ -2470,7 +2470,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1093, + ["statOrder"] = 1155, }, }, }, @@ -2509,7 +2509,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 853, + ["statOrder"] = 870, }, }, }, @@ -2548,7 +2548,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1699, + ["statOrder"] = 1772, }, }, }, @@ -2587,7 +2587,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1663, + ["statOrder"] = 1736, }, }, }, @@ -2626,7 +2626,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1104, + ["statOrder"] = 1166, }, }, }, @@ -2665,7 +2665,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1557, + ["statOrder"] = 1628, }, }, }, @@ -2704,7 +2704,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 875, + ["statOrder"] = 896, }, }, }, @@ -2743,7 +2743,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10137, + ["statOrder"] = 10749, }, }, }, @@ -2782,7 +2782,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 937, + ["statOrder"] = 979, }, }, }, @@ -2821,7 +2821,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 941, + ["statOrder"] = 984, }, }, }, @@ -2860,7 +2860,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 942, + ["statOrder"] = 986, }, }, }, @@ -2899,7 +2899,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 827, + ["statOrder"] = 835, }, }, }, @@ -2975,7 +2975,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 989, + ["statOrder"] = 1055, }, }, }, @@ -3014,7 +3014,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 991, + ["statOrder"] = 1057, }, }, }, @@ -3053,7 +3053,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1572, + ["statOrder"] = 1643, }, }, }, @@ -3092,7 +3092,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -3131,7 +3131,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 872, + ["statOrder"] = 893, }, }, }, @@ -3170,7 +3170,7 @@ return { ["index"] = 1, ["max"] = 17, ["min"] = 12, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, }, }, @@ -3209,7 +3209,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -3248,7 +3248,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 866, + ["statOrder"] = 883, }, }, }, @@ -3287,7 +3287,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 3, - ["statOrder"] = 868, + ["statOrder"] = 885, }, }, }, @@ -3326,7 +3326,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 2130, + ["statOrder"] = 1122, }, }, }, @@ -3402,7 +3402,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 1526, + ["statOrder"] = 1597, }, }, }, @@ -3478,7 +3478,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 3145, + ["statOrder"] = 3249, }, }, }, @@ -3517,7 +3517,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2266, + ["statOrder"] = 2374, }, }, }, @@ -3556,7 +3556,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, }, }, @@ -3595,7 +3595,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, }, }, @@ -3634,7 +3634,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 960, + ["statOrder"] = 1022, }, }, }, @@ -3673,7 +3673,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 961, + ["statOrder"] = 1023, }, }, }, @@ -3714,14 +3714,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2613, + ["statOrder"] = 2722, }, ["fire_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 855, + ["statOrder"] = 872, }, }, }, @@ -3767,7 +3767,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 855, + ["statOrder"] = 872, }, }, }, @@ -3808,14 +3808,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 855, + ["statOrder"] = 872, }, ["non_skill_base_physical_damage_%_to_convert_to_fire"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1628, + ["statOrder"] = 1700, }, }, }, @@ -3856,14 +3856,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2614, + ["statOrder"] = 2723, }, ["cold_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 856, + ["statOrder"] = 873, }, }, }, @@ -3903,7 +3903,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 856, + ["statOrder"] = 873, }, ["dummy_stat_display_nothing"] = { ["index"] = 2, @@ -3950,14 +3950,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 856, + ["statOrder"] = 873, }, ["non_skill_base_physical_damage_%_to_convert_to_cold"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1631, + ["statOrder"] = 1703, }, }, }, @@ -3998,14 +3998,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2615, + ["statOrder"] = 2724, }, ["lightning_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 857, + ["statOrder"] = 874, }, }, }, @@ -4051,7 +4051,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 857, + ["statOrder"] = 874, }, }, }, @@ -4092,14 +4092,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 857, + ["statOrder"] = 874, }, ["non_skill_base_physical_damage_%_to_convert_to_lightning"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1633, + ["statOrder"] = 1705, }, }, }, @@ -4140,14 +4140,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 5124, + ["statOrder"] = 5487, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -4193,7 +4193,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -4234,14 +4234,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6123, + ["statOrder"] = 6527, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -4282,14 +4282,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 858, + ["statOrder"] = 875, }, ["withered_on_hit_for_2_seconds_%_chance"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 3953, + ["statOrder"] = 4054, }, }, }, @@ -4329,7 +4329,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 858, + ["statOrder"] = 875, }, ["dummy_stat_display_nothing"] = { ["index"] = 2, @@ -4376,14 +4376,14 @@ return { ["index"] = 2, ["max"] = 50, ["min"] = 35, - ["statOrder"] = 935, + ["statOrder"] = 977, }, ["spell_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 853, + ["statOrder"] = 870, }, }, }, @@ -4424,14 +4424,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, ["minion_maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 20, ["min"] = 15, - ["statOrder"] = 962, + ["statOrder"] = 1025, }, }, }, @@ -4472,14 +4472,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1104, + ["statOrder"] = 1166, }, ["skill_effect_duration_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 11, ["min"] = 7, - ["statOrder"] = 1572, + ["statOrder"] = 1643, }, }, }, @@ -4520,14 +4520,14 @@ return { ["index"] = 2, ["max"] = 1.2, ["min"] = 0.7, - ["statOrder"] = 1617, + ["statOrder"] = 1689, }, ["maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -4573,7 +4573,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -4614,14 +4614,14 @@ return { ["index"] = 2, ["max"] = 25, ["min"] = 15, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, ["maximum_mana_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 23, ["min"] = 17, - ["statOrder"] = 872, + ["statOrder"] = 893, }, }, }, @@ -4662,14 +4662,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 951, + ["statOrder"] = 1005, }, ["physical_damage_reduction_rating_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 30, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -4710,14 +4710,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 30, - ["statOrder"] = 866, + ["statOrder"] = 883, }, ["global_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 7, ["min"] = 5, - ["statOrder"] = 10146, + ["statOrder"] = 10758, }, }, }, @@ -4758,14 +4758,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 10, - ["statOrder"] = 966, + ["statOrder"] = 1031, }, ["maximum_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 12, ["min"] = 8, - ["statOrder"] = 868, + ["statOrder"] = 885, }, }, }, @@ -4811,7 +4811,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 8, - ["statOrder"] = 868, + ["statOrder"] = 885, }, }, }, @@ -4837,12 +4837,12 @@ return { ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(6-10) Life gained when you Block", - [2] = "+5% to Block chance", + [1] = "+5% to Block chance", + [2] = "(6-10) Life gained when you Block", }, ["sortedStats"] = { - [1] = "life_gained_on_block", - [2] = "additional_block_%", + [1] = "additional_block_%", + [2] = "life_gained_on_block", }, ["spc"] = { }, @@ -4852,14 +4852,14 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2130, + ["statOrder"] = 1122, }, ["life_gained_on_block"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1445, + ["statOrder"] = 1517, }, }, }, @@ -4885,10 +4885,10 @@ return { ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(20-30)% increased Defences from Equipped Shield", + [1] = "(20-30)% increased Armour, Evasion and Energy Shield from Equipped Shield", }, ["sortedStats"] = { - [1] = "shield_defences_+%", + [1] = "shield_armour_evasion_energy_shield_+%", [2] = "dummy_stat_display_nothing", }, ["spc"] = { @@ -4900,12 +4900,12 @@ return { ["min"] = 5, ["statOrder"] = 99999, }, - ["shield_defences_+%"] = { + ["shield_armour_evasion_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 9241, + ["statOrder"] = 9797, }, }, }, @@ -4946,14 +4946,14 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 1526, + ["statOrder"] = 1597, }, ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 1534, + ["statOrder"] = 1605, }, }, }, @@ -4993,7 +4993,7 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 957, + ["statOrder"] = 1012, }, ["dummy_stat_display_nothing"] = { ["index"] = 1, @@ -5040,14 +5040,14 @@ return { ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1874, + ["statOrder"] = 1947, }, ["non_curse_aura_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 7, - ["statOrder"] = 3145, + ["statOrder"] = 3249, }, }, }, @@ -5088,14 +5088,14 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 2266, + ["statOrder"] = 2374, }, ["curse_skill_effect_duration_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 5539, + ["statOrder"] = 5920, }, }, }, @@ -5136,14 +5136,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, ["base_maximum_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 953, + ["statOrder"] = 1008, }, }, }, @@ -5184,14 +5184,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, ["base_maximum_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 954, + ["statOrder"] = 1009, }, }, }, @@ -5232,14 +5232,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 960, + ["statOrder"] = 1022, }, ["base_maximum_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 955, + ["statOrder"] = 1010, }, }, }, @@ -5280,14 +5280,14 @@ return { ["index"] = 1, ["max"] = 19, ["min"] = 13, - ["statOrder"] = 961, + ["statOrder"] = 1023, }, ["base_maximum_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 956, + ["statOrder"] = 1011, }, }, }, @@ -5425,7 +5425,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10310, + ["statOrder"] = 10920, }, }, }, @@ -5465,7 +5465,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10286, + ["statOrder"] = 10896, }, }, }, @@ -5506,7 +5506,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10285, + ["statOrder"] = 10895, }, }, }, @@ -5583,7 +5583,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10300, + ["statOrder"] = 10910, }, }, }, @@ -5625,7 +5625,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10307, + ["statOrder"] = 10917, }, }, }, @@ -5666,7 +5666,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10274, + ["statOrder"] = 10884, }, }, }, @@ -5706,7 +5706,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9778, + ["statOrder"] = 10626, }, }, }, @@ -5747,7 +5747,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10302, + ["statOrder"] = 10912, }, }, }, @@ -5787,7 +5787,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10303, + ["statOrder"] = 10913, }, }, }, @@ -5826,7 +5826,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10298, + ["statOrder"] = 10908, }, }, }, @@ -5865,7 +5865,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 10105, + ["statOrder"] = 10717, }, }, }, @@ -5904,7 +5904,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 8720, + ["statOrder"] = 9252, }, }, }, @@ -5943,7 +5943,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 8718, + ["statOrder"] = 9250, }, }, }, @@ -5982,7 +5982,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 8722, + ["statOrder"] = 9254, }, }, }, @@ -6021,7 +6021,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 7504, + ["statOrder"] = 1431, }, }, }, @@ -6060,7 +6060,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6321, + ["statOrder"] = 6725, }, }, }, @@ -6099,7 +6099,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8432, + ["statOrder"] = 8948, }, }, }, @@ -6138,7 +6138,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8438, + ["statOrder"] = 8954, }, }, }, @@ -6177,7 +6177,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8434, + ["statOrder"] = 8950, }, }, }, @@ -6216,7 +6216,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6838, + ["statOrder"] = 7266, }, }, }, @@ -6255,7 +6255,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 8869, + ["statOrder"] = 9412, }, }, }, @@ -6294,7 +6294,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4088, + ["statOrder"] = 4195, }, }, }, @@ -6333,7 +6333,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6891, + ["statOrder"] = 7321, }, }, }, @@ -6372,7 +6372,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6888, + ["statOrder"] = 7318, }, }, }, @@ -6411,7 +6411,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6897, + ["statOrder"] = 7327, }, }, }, @@ -6451,7 +6451,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10282, + ["statOrder"] = 10892, }, }, }, @@ -6492,7 +6492,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10297, + ["statOrder"] = 10907, }, }, }, @@ -6569,7 +6569,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10308, + ["statOrder"] = 10918, }, }, }, @@ -6638,7 +6638,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10137, + ["statOrder"] = 10749, }, }, }, @@ -6677,7 +6677,7 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 937, + ["statOrder"] = 979, }, }, }, @@ -6716,7 +6716,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6350, + ["statOrder"] = 6757, }, }, }, @@ -6755,7 +6755,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 8879, + ["statOrder"] = 9422, }, }, }, @@ -6794,7 +6794,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2812, + ["statOrder"] = 2915, }, }, }, @@ -6833,7 +6833,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1515, + ["statOrder"] = 1586, }, }, }, @@ -6872,7 +6872,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 1365, + ["statOrder"] = 1425, }, }, }, @@ -6911,7 +6911,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2889, + ["statOrder"] = 2992, }, }, }, @@ -6950,7 +6950,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1512, + ["statOrder"] = 1583, }, }, }, @@ -6989,7 +6989,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 6011, + ["statOrder"] = 6412, }, }, }, @@ -7028,7 +7028,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5613, + ["statOrder"] = 5995, }, }, }, @@ -7067,7 +7067,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10186, + ["statOrder"] = 10800, }, }, }, @@ -7106,7 +7106,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1527, + ["statOrder"] = 1598, }, }, }, @@ -7145,7 +7145,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10254, + ["statOrder"] = 10866, }, }, }, @@ -7184,7 +7184,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1531, + ["statOrder"] = 1602, }, }, }, @@ -7223,7 +7223,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 2130, + ["statOrder"] = 1122, }, }, }, @@ -7299,7 +7299,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1526, + ["statOrder"] = 1597, }, }, }, @@ -7375,7 +7375,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 3145, + ["statOrder"] = 3249, }, }, }, @@ -7414,7 +7414,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, }, }, @@ -7453,7 +7453,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 962, + ["statOrder"] = 1025, }, }, }, @@ -7492,7 +7492,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 853, + ["statOrder"] = 870, }, }, }, @@ -7531,7 +7531,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 935, + ["statOrder"] = 977, }, }, }, @@ -7570,7 +7570,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 6155, + ["statOrder"] = 6557, }, }, }, @@ -7609,7 +7609,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 5310, + ["statOrder"] = 5678, }, }, }, @@ -7648,7 +7648,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 7083, + ["statOrder"] = 7528, }, }, }, @@ -7687,7 +7687,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -7726,7 +7726,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1652, + ["statOrder"] = 1725, }, }, }, @@ -7765,7 +7765,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6123, + ["statOrder"] = 6527, }, }, }, @@ -7804,7 +7804,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1664, + ["statOrder"] = 1737, }, }, }, @@ -7843,7 +7843,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 941, + ["statOrder"] = 984, }, }, }, @@ -7882,7 +7882,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 942, + ["statOrder"] = 986, }, }, }, @@ -7921,7 +7921,7 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 916, + ["statOrder"] = 940, }, }, }, @@ -7960,7 +7960,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -7999,7 +7999,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 866, + ["statOrder"] = 883, }, }, }, @@ -8038,7 +8038,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, }, }, @@ -8077,7 +8077,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, }, }, @@ -8116,7 +8116,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 960, + ["statOrder"] = 1022, }, }, }, @@ -8155,7 +8155,7 @@ return { ["index"] = 1, ["max"] = 37, ["min"] = 37, - ["statOrder"] = 961, + ["statOrder"] = 1023, }, }, }, @@ -8194,7 +8194,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -8233,7 +8233,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 872, + ["statOrder"] = 893, }, }, }, @@ -8272,7 +8272,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, }, }, @@ -8311,7 +8311,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 1268, + ["statOrder"] = 1331, }, }, }, @@ -8350,7 +8350,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 879, + ["statOrder"] = 901, }, }, }, @@ -8390,7 +8390,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10270, + ["statOrder"] = 10880, }, }, }, @@ -8430,7 +8430,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10267, + ["statOrder"] = 10877, }, }, }, @@ -8470,7 +8470,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10269, + ["statOrder"] = 10879, }, }, }, @@ -8511,14 +8511,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10112, + ["statOrder"] = 10724, }, ["fire_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 855, + ["statOrder"] = 872, }, }, }, @@ -8559,14 +8559,14 @@ return { ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 10243, + ["statOrder"] = 10857, }, }, }, @@ -8607,14 +8607,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 953, + ["statOrder"] = 1008, }, ["base_self_freeze_duration_-%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 998, + ["statOrder"] = 1064, }, }, }, @@ -8655,14 +8655,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 959, + ["statOrder"] = 1019, }, ["physical_damage_reduction_rating_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 864, + ["statOrder"] = 881, }, }, }, @@ -8703,14 +8703,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 984, + ["statOrder"] = 1050, }, ["maximum_mana_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 872, + ["statOrder"] = 893, }, }, }, @@ -8751,14 +8751,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1466, + ["statOrder"] = 1538, }, ["life_regeneration_rate_per_minute_%"] = { ["fmt"] = "g", ["index"] = 1, ["max"] = 1.5, ["min"] = 1.5, - ["statOrder"] = 1617, + ["statOrder"] = 1689, }, }, }, @@ -8799,14 +8799,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 4283, + ["statOrder"] = 4397, }, ["energy_shield_delay_-%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 967, + ["statOrder"] = 1032, }, }, }, @@ -8847,14 +8847,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 939, + ["statOrder"] = 981, }, ["melee_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1124, + ["statOrder"] = 1186, }, }, }, @@ -8895,14 +8895,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 988, + ["statOrder"] = 1054, }, ["minion_elemental_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 2558, + ["statOrder"] = 2665, }, }, }, @@ -8943,14 +8943,14 @@ return { ["index"] = 2, ["max"] = 7, ["min"] = 7, - ["statOrder"] = 961, + ["statOrder"] = 1023, }, ["totem_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1089, + ["statOrder"] = 1151, }, }, }, @@ -8991,14 +8991,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2891, + ["statOrder"] = 2994, }, ["base_bleeding_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 4662, + ["statOrder"] = 4797, }, }, }, @@ -9043,28 +9043,28 @@ return { ["index"] = 3, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5312, + ["statOrder"] = 5680, }, ["empowered_attack_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 5912, + ["statOrder"] = 6306, }, ["fire_exposure_effect_+%"] = { ["fmt"] = "d", ["index"] = 4, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6157, + ["statOrder"] = 6559, }, ["lightning_exposure_effect_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 7088, + ["statOrder"] = 7533, }, }, }, @@ -9105,14 +9105,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 955, + ["statOrder"] = 1010, }, ["base_self_ignite_duration_-%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 996, + ["statOrder"] = 1062, }, }, }, @@ -9153,14 +9153,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10108, + ["statOrder"] = 10720, }, ["lightning_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 857, + ["statOrder"] = 874, }, }, }, @@ -9201,14 +9201,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 958, + ["statOrder"] = 1013, }, ["evasion_rating_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 866, + ["statOrder"] = 883, }, }, }, @@ -9249,14 +9249,14 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 941, + ["statOrder"] = 984, }, ["stun_threshold_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 2878, + ["statOrder"] = 2981, }, }, }, @@ -9297,14 +9297,14 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6431, + ["statOrder"] = 6850, }, ["projectile_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1663, + ["statOrder"] = 1736, }, }, }, @@ -9345,14 +9345,14 @@ return { ["index"] = 2, ["max"] = 6, ["min"] = 6, - ["statOrder"] = 1064, + ["statOrder"] = 1132, }, ["flask_life_to_recover_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1719, + ["statOrder"] = 1792, }, }, }, @@ -9393,14 +9393,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 1268, + ["statOrder"] = 1331, }, ["base_bleeding_effect_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 4662, + ["statOrder"] = 4797, }, }, }, @@ -9441,14 +9441,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1720, + ["statOrder"] = 1793, }, ["maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 870, + ["statOrder"] = 888, }, }, }, @@ -9489,14 +9489,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1820, + ["statOrder"] = 1893, }, ["base_poison_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 8925, + ["statOrder"] = 9457, }, }, }, @@ -9537,14 +9537,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 992, + ["statOrder"] = 1058, }, ["totem_life_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1459, + ["statOrder"] = 1531, }, }, }, @@ -9585,14 +9585,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 879, + ["statOrder"] = 901, }, ["warcry_cooldown_speed_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 2929, + ["statOrder"] = 3033, }, }, }, @@ -9633,14 +9633,14 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 2268, + ["statOrder"] = 2376, }, ["skill_effect_duration_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 1572, + ["statOrder"] = 1643, }, }, }, @@ -9667,11 +9667,11 @@ return { ["sa"] = 0, ["sd"] = { [1] = "40% increased Elemental Damage", - [2] = "20% increased Defences from Equipped Shield", + [2] = "20% increased Armour, Evasion and Energy Shield from Equipped Shield", }, ["sortedStats"] = { [1] = "elemental_damage_+%", - [2] = "shield_defences_+%", + [2] = "shield_armour_evasion_energy_shield_+%", }, ["spc"] = { }, @@ -9681,14 +9681,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1651, + ["statOrder"] = 1724, }, - ["shield_defences_+%"] = { + ["shield_armour_evasion_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 9241, + ["statOrder"] = 9797, }, }, }, @@ -9729,14 +9729,14 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 942, + ["statOrder"] = 986, }, ["base_chance_to_pierce_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1001, + ["statOrder"] = 1067, }, }, }, @@ -9777,14 +9777,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10110, + ["statOrder"] = 10722, }, ["cold_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 856, + ["statOrder"] = 873, }, }, }, @@ -9825,14 +9825,14 @@ return { ["index"] = 2, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 1268, + ["statOrder"] = 1331, }, ["minion_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 1646, + ["statOrder"] = 1718, }, }, }, @@ -9873,14 +9873,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 866, + ["statOrder"] = 883, }, ["minion_maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 962, + ["statOrder"] = 1025, }, }, }, @@ -9921,14 +9921,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 981, + ["statOrder"] = 1047, }, ["spell_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 853, + ["statOrder"] = 870, }, }, }, @@ -9969,14 +9969,14 @@ return { ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10146, + ["statOrder"] = 10758, }, ["spell_critical_strike_chance_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 935, + ["statOrder"] = 977, }, }, }, @@ -10017,14 +10017,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 4147, + ["statOrder"] = 4256, }, ["mana_regeneration_rate_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 976, + ["statOrder"] = 1042, }, }, }, @@ -10065,14 +10065,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 954, + ["statOrder"] = 1009, }, ["base_self_shock_duration_-%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 999, + ["statOrder"] = 1065, }, }, }, @@ -10113,14 +10113,14 @@ return { ["index"] = 2, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 875, + ["statOrder"] = 896, }, ["hit_damage_freeze_multiplier_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 990, + ["statOrder"] = 1056, }, }, }, @@ -10161,14 +10161,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 960, + ["statOrder"] = 1022, }, ["maximum_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 868, + ["statOrder"] = 885, }, }, }, @@ -10209,14 +10209,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 878, + ["statOrder"] = 899, }, ["damage_taken_goes_to_life_over_4_seconds_%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 970, + ["statOrder"] = 1036, }, }, }, @@ -10257,14 +10257,14 @@ return { ["index"] = 1, ["max"] = 37, ["min"] = 37, - ["statOrder"] = 858, + ["statOrder"] = 875, }, ["projectile_chance_to_chain_1_extra_time_from_terrain_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 6, ["min"] = 6, - ["statOrder"] = 8970, + ["statOrder"] = 9502, }, }, }, @@ -10303,7 +10303,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10271, + ["statOrder"] = 10881, }, }, }, @@ -10343,7 +10343,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10294, + ["statOrder"] = 10904, }, }, }, @@ -10383,7 +10383,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10295, + ["statOrder"] = 10905, }, }, }, @@ -10423,7 +10423,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10309, + ["statOrder"] = 10919, }, }, }, @@ -10466,7 +10466,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10311, + ["statOrder"] = 10921, }, }, }, @@ -10505,7 +10505,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10106, + ["statOrder"] = 10718, }, }, }, @@ -10544,7 +10544,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10107, + ["statOrder"] = 10719, }, }, }, @@ -10585,14 +10585,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5647, + ["statOrder"] = 6030, }, ["recover_%_maximum_life_on_kill_per_50_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9091, + ["statOrder"] = 9629, }, }, }, @@ -10633,14 +10633,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5648, + ["statOrder"] = 6031, }, ["recover_%_maximum_mana_on_kill_per_50_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9095, + ["statOrder"] = 9633, }, }, }, @@ -10681,14 +10681,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 8452, + ["statOrder"] = 8967, }, ["minion_damage_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8479, + ["statOrder"] = 8998, }, }, }, @@ -10729,14 +10729,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 8474, + ["statOrder"] = 8993, }, ["minions_lose_%_life_when_following_commands_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 8552, + ["statOrder"] = 9075, }, }, }, @@ -10775,7 +10775,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5138, + ["statOrder"] = 5501, }, }, }, @@ -10816,14 +10816,14 @@ return { ["index"] = 2, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 4377, + ["statOrder"] = 4498, }, ["base_damage_taken_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4544, + ["statOrder"] = 4671, }, }, }, @@ -10864,14 +10864,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 4014, + ["statOrder"] = 4121, }, ["attack_critical_strike_chance_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 4372, + ["statOrder"] = 4493, }, }, }, @@ -10910,7 +10910,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4585, + ["statOrder"] = 4710, }, }, }, @@ -10951,14 +10951,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5531, + ["statOrder"] = 5911, }, ["curse_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5533, + ["statOrder"] = 5913, }, }, }, @@ -10999,14 +10999,14 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4614, + ["statOrder"] = 4744, }, ["presence_area_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 8947, + ["statOrder"] = 9479, }, }, }, @@ -11045,7 +11045,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8326, + ["statOrder"] = 8842, }, }, }, @@ -11084,7 +11084,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7507, + ["statOrder"] = 7967, }, }, }, @@ -11123,7 +11123,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7014, + ["statOrder"] = 7456, }, }, }, @@ -11164,14 +11164,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4538, + ["statOrder"] = 4665, }, ["base_intelligence_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4571, + ["statOrder"] = 4695, }, }, }, @@ -11212,14 +11212,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4615, + ["statOrder"] = 4745, }, ["hit_damage_stun_multiplier_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6759, + ["statOrder"] = 7181, }, }, }, @@ -11260,14 +11260,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4556, + ["statOrder"] = 4681, }, ["parry_skill_effect_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 8807, + ["statOrder"] = 9350, }, }, }, @@ -11306,7 +11306,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5141, + ["statOrder"] = 5504, }, }, }, @@ -11347,14 +11347,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4013, + ["statOrder"] = 4120, }, ["light_radius_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7064, + ["statOrder"] = 7506, }, }, }, @@ -11395,14 +11395,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 5911, + ["statOrder"] = 6305, }, ["warcry_speed_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 9893, + ["statOrder"] = 10474, }, }, }, @@ -11428,7 +11428,7 @@ return { ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Remnants have 2% increased effect per 10 Tribute", + [1] = "Remnants you create have 2% increased effect per 10 Tribute", }, ["sortedStats"] = { [1] = "remnant_effect_+%_per_10_tribute", @@ -11441,7 +11441,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9150, + ["statOrder"] = 9694, }, }, }, @@ -11482,14 +11482,14 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8355, + ["statOrder"] = 8870, }, ["rage_decay_speed_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9041, + ["statOrder"] = 9577, }, }, }, @@ -11530,14 +11530,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4545, + ["statOrder"] = 4672, }, ["damaging_ailment_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5669, + ["statOrder"] = 6052, }, }, }, @@ -11578,14 +11578,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4555, + ["statOrder"] = 4680, }, ["evasion_rating_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6066, + ["statOrder"] = 6468, }, }, }, @@ -11626,14 +11626,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6015, + ["statOrder"] = 6416, }, ["maximum_energy_shield_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 8311, + ["statOrder"] = 8826, }, }, }, @@ -11674,14 +11674,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 8874, + ["statOrder"] = 9417, }, ["stun_threshold_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 9523, + ["statOrder"] = 10087, }, }, }, @@ -11722,14 +11722,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 6217, + ["statOrder"] = 6618, }, ["flask_life_and_mana_to_recover_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6219, + ["statOrder"] = 6620, }, }, }, @@ -11770,14 +11770,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5232, + ["statOrder"] = 5595, }, ["charm_effect_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5233, + ["statOrder"] = 5596, }, }, }, @@ -11804,11 +11804,11 @@ return { ["sa"] = 0, ["sd"] = { [1] = "Your Heavy Stun buildup empties 1% faster per 10 Tribute", - [2] = "5% increased Defences from Equipped Shield per 25 Tribute", + [2] = "5% increased Armour, Evasion and Energy Shield from Equipped Shield per 25 Tribute", }, ["sortedStats"] = { [1] = "heavy_stun_poise_decay_rate_+%_per_10_tribute", - [2] = "shield_defences_+%_per_25_tribute", + [2] = "shield_armour_evasion_energy_shield_+%_per_25_tribute", }, ["spc"] = { }, @@ -11818,14 +11818,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6542, + ["statOrder"] = 6963, }, - ["shield_defences_+%_per_25_tribute"] = { + ["shield_armour_evasion_energy_shield_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 9242, + ["statOrder"] = 9798, }, }, }, @@ -11866,14 +11866,14 @@ return { ["index"] = 2, ["max"] = 0.5, ["min"] = 0.5, - ["statOrder"] = 4108, + ["statOrder"] = 4216, }, ["thorns_damage_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9644, + ["statOrder"] = 10210, }, }, }, diff --git a/src/Data/Uniques/gloves.lua b/src/Data/Uniques/gloves.lua index ca22a36d27..3c8c2d629e 100644 --- a/src/Data/Uniques/gloves.lua +++ b/src/Data/Uniques/gloves.lua @@ -278,7 +278,7 @@ Gain (4-6) Mana per enemy killed Enemies in your Presence killed by anyone count as being killed by you instead ]],[[ The Prisoner's Manacles -Verisium Cuffs +Kalguuran Cuffs League: Dawn of the Hunt (200-300)% increased Armour and Energy Shield +100 to maximum Life diff --git a/src/Export/Minions/Minions.txt b/src/Export/Minions/Minions.txt index 632230c443..e4fdbd99b5 100644 --- a/src/Export/Minions/Minions.txt +++ b/src/Export/Minions/Minions.txt @@ -99,4 +99,7 @@ local minions, mod = ... #emit #monster Metadata/Monsters/MarakethSamdDjinn/SandDjinn SandDjinn +#emit + +#monster Metadata/Monsters/Daemon/TangmazuRavensDaemon/TangmazuRavensDaemon MistRaven #emit \ No newline at end of file diff --git a/src/Export/Scripts/ScriptResources/AssetSheets.lua b/src/Export/Scripts/ScriptResources/AssetSheets.lua index 3e4396a2c1..917c31c562 100644 --- a/src/Export/Scripts/ScriptResources/AssetSheets.lua +++ b/src/Export/Scripts/ScriptResources/AssetSheets.lua @@ -42,6 +42,9 @@ function assetSheets.newSheet(name, startWidth, saturation) end function assetSheets.addToSheet(sheet, icon, section, metadata) + if icon == nil or icon == "" then + return + end sheet.files[icon] = sheet.files[icon] or { } if sheet.files[icon][section] then if metadata.alias then diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index ca0b4ce16f..faa701aad2 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -134,6 +134,7 @@ directiveTable.base = function(state, args, out) out:write('},\n') local implicitLines = { } local implicitModTypes = { } + local variantList = { } for _, mod in ipairs(baseItemType.ImplicitMods) do local modDesc = describeMod(mod) for _, line in ipairs(modDesc) do @@ -147,17 +148,31 @@ directiveTable.base = function(state, args, out) if state.type == "Belt" then table.insert(implicitLines, "Has (1-3) Charm Slots") end - if #implicitLines > 0 then - out:write('\timplicit = "', table.concat(implicitLines, "\\n"), '",\n') - end local inherentSkillType = dat("ItemInherentSkills"):GetRow("BaseItemType", baseItemType) if inherentSkillType then - local skillGem = dat("SkillGems"):GetRow("BaseItemType", inherentSkillType.Skill[1].BaseItemType) - local gemEffect = dat("GemEffects"):GetRow("GrantedEffect", skillGem.GemEffects[1].GrantedEffect) if #inherentSkillType.Skill > 1 then - print("Unhandled Instance - Inherent Skill number more than 1") + for index, skill in ipairs(inherentSkillType.Skill) do + local skillGem = dat("SkillGems"):GetRow("BaseItemType", skill.BaseItemType) + local gemEffect = dat("GemEffects"):GetRow("GrantedEffect", skillGem.GemEffects[1].GrantedEffect) + local skillName = gemEffect.GrantedEffect.ActiveSkill.DisplayName + table.insert(variantList, skillName) + table.insert(implicitLines, "{variant:" .. index .. "}Grants Skill: Level (1-20) " .. skillName) + end + else + local skillGem = dat("SkillGems"):GetRow("BaseItemType", inherentSkillType.Skill[1].BaseItemType) + local gemEffect = dat("GemEffects"):GetRow("GrantedEffect", skillGem.GemEffects[1].GrantedEffect) + table.insert(implicitLines, "Grants Skill: Level (1-20) " .. gemEffect.GrantedEffect.ActiveSkill.DisplayName) + end + end + if #variantList > 0 then + out:write('\tvariantList = { ') + for _, variant in ipairs(variantList) do + out:write('"', variant:gsub('"', '\\"'), '", ') end - out:write('\timplicit = "Grants Skill: Level (1-20) ', gemEffect.GrantedEffect.ActiveSkill.DisplayName, '",\n') + out:write('},\n') + end + if #implicitLines > 0 then + out:write('\timplicit = "', table.concat(implicitLines, "\\n"), '",\n') end out:write('\timplicitModTypes = { ') for i=1,#implicitModTypes do @@ -275,6 +290,10 @@ directiveTable.base = function(state, args, out) out:write('EnergyShield = ', armourType.EnergyShield, ', ') itemValueSum = itemValueSum + armourType.EnergyShield end + if armourType.Ward > 0 then + out:write('Ward = ', armourType.Ward, ', ') + itemValueSum = itemValueSum + armourType.Ward + end if armourType.MovementPenalty ~= 0 then out:write('MovementPenalty = ', -armourType.MovementPenalty / 10000, ', ') end diff --git a/src/Export/Scripts/essence.lua b/src/Export/Scripts/essence.lua index dcaeeab189..c5512ced5d 100644 --- a/src/Export/Scripts/essence.lua +++ b/src/Export/Scripts/essence.lua @@ -2,18 +2,20 @@ local out = io.open("../Data/Essence.lua", "w") out:write('-- This file is automatically generated, do not edit!\n') out:write('-- Item data (c) Grinding Gear Games\n\nreturn {\n') for essence in dat("Essences"):Rows() do - out:write('\t["', essence.BaseItemType.Id, '"] = { name = "', essence.BaseItemType.Name, '", ') - out:write('type = "', essence.BaseItemType.Id:match("Essence(.+)"), '", tierLevel = ', essence.DropLevel[1], ', ') - out:write('mods = { ') - for _, essenceMod in ipairs(dat("EssenceMods"):GetRowList("Essence", essence)) do - for _, itemClass in ipairs(essenceMod.TargetItemCategory.ItemClasses) do - local mod = essenceMod.Mod1 or essenceMod.Mod2 - if mod ~= nil then - out:write('["', itemClass.Id, '"] = "', mod.Id, '", ') + if essence.BaseItemType.Id:match("Essence(.+)") then + out:write('\t["', essence.BaseItemType.Id, '"] = { name = "', essence.BaseItemType.Name, '", ') + out:write('type = "', essence.BaseItemType.Id:match("Essence(.+)"), '", tierLevel = ', essence.DropLevel[1], ', ') + out:write('mods = { ') + for _, essenceMod in ipairs(dat("EssenceMods"):GetRowList("Essence", essence)) do + for _, itemClass in ipairs(essenceMod.TargetItemCategory.ItemClasses) do + local mod = essenceMod.Mod1 or essenceMod.Mod2 + if mod ~= nil then + out:write('["', itemClass.Id, '"] = "', mod.Id, '", ') + end end end + out:write('}, },\n') end - out:write('}, },\n') end out:write('}') out:close() diff --git a/src/Export/Scripts/minions.lua b/src/Export/Scripts/minions.lua index 3c97b6b52c..81bebf6ffe 100644 --- a/src/Export/Scripts/minions.lua +++ b/src/Export/Scripts/minions.lua @@ -225,9 +225,6 @@ directiveTable.emit = function(state, args, out) for _, nativePack in ipairs(mapRow.NativePacks) do if nativePack.Id == packId then local areaIds = {} - if mapRow.BossVersion and mapRow.BossVersion.Id then - table.insert(areaIds, mapRow.BossVersion.Id) - end for _, areaId in ipairs(areaIds) do local area = dat("WorldAreas"):GetRow("Id", areaId) if area and area.Name ~= "NULL" and not area.Name:match("DNT") then diff --git a/src/Export/Scripts/skills.lua b/src/Export/Scripts/skills.lua index c8f5137ee4..eb7f8044eb 100644 --- a/src/Export/Scripts/skills.lua +++ b/src/Export/Scripts/skills.lua @@ -180,7 +180,7 @@ directiveTable.skill = function(state, args, out) gemLevels = 1 else skill.displayName = secondaryEffect and granted.ActiveSkill.DisplayName or trueGemNames[gemEffect.Id] or granted.ActiveSkill.DisplayName - out:write('\tname = "', skill.displayName, '",\n') + out:write('\tname = "', sanitiseText(skill.displayName), '",\n') -- Hybrid gems (e.g. Vaal gems) use the display name of the active skill e.g. Vaal Summon Skeletons of Sorcery out:write('\tbaseTypeName = "', granted.ActiveSkill.DisplayName, '",\n') end @@ -188,7 +188,7 @@ directiveTable.skill = function(state, args, out) if displayName == args and not granted.IsSupport then displayName = gemEffect and trueGemNames[gemEffect.Id] or granted.ActiveSkill.DisplayName end - skill.displayName = displayName + skill.displayName = sanitiseText(displayName) out:write('\tname = "', displayName, '",\n') out:write('\thidden = true,\n') end diff --git a/src/Export/Skills/SkillGems.txt b/src/Export/Skills/SkillGems.txt index baadc0a49a..ecfacb7424 100644 --- a/src/Export/Skills/SkillGems.txt +++ b/src/Export/Skills/SkillGems.txt @@ -10,15 +10,11 @@ Artillery Ballista ---- ArtilleryBallistaPlayer ArtilleryBallistaP Attrition ---- AttritionPlayer Barkskin ---- BarkskinPlayer Berserk ---- BerserkPlayer -Black Powder Blitz ---- BlackPowderBlitzReservationPlayer BlackPowderBlitzPlayer Boneshatter ---- BoneshatterPlayer Briarpatch ---- BriarpatchPlayer -Cackling Companions ---- HyenaCacklePlayer -Cast on Block ---- MetaCastOnBlockPlayer SupportMetaCastOnBlockPlayer Cast on Melee Kill ---- MetaCastOnMeleeKillPlayer SupportMetaCastOnMeleeKillPlayer Cast on Melee Stun ---- MetaCastOnMeleeStunPlayer SupportMetaCastOnMeleeStunPlayer Cluster Grenade ---- ClusterGrenadePlayer -Compose Requiem ---- CrossbowRequiemAmmoPlayer CrossbowRequiemPlayer Consecrate ---- StaffConsecratePlayer Cross Slash ---- WolfCrossSlashPlayer Defiance Banner ---- DefianceBannerReservationPlayer DefianceBannerPlayer @@ -39,7 +35,6 @@ Fortifying Cry ---- FortifyingCryPlayer FortifyingCryShockwave Furious Slam ---- FuriousSlamPlayer Fury of the Mountain ---- BearFuryOfTheMountainPlayer Gas Grenade ---- ToxicGrenadePlayer -Gemini Surge ---- GeminiSurgePlayer Hammer of the Gods ---- HammerOfTheGodsPlayer Herald of Ash ---- HeraldOfAshPlayer Herald of Ash ---- UniqueHeraldOfAshPlayer @@ -66,13 +61,12 @@ Lunar Assault ---- LunarAssaultPlayer Lunar Blessing ---- WolfLunarBlessingPlayer WolfLunarBlessingBeamAttackPlayer Magma Barrier ---- MagmaBarrierPlayer MagmaSprayPlayer Molten Blast ---- MoltenBlastPlayer -Molten Crash ---- MoltenCrashPlayer Mortar Cannon ---- MetaMortarCannonPlayer SupportMortarCannonPlayer Oil Barrage ---- OilBarragePlayer Oil Grenade ---- OilGrenadePlayer Overwhelming Presence ---- OverwhelmingPresencePlayer Perfect Strike ---- PerfectStrikePlayer -Pounce ---- WolfPouncePlayer SupportCrossSlashPlayer WolfPounceMarkPlayer WolfCrossSlashWolfPlayer +Pounce ---- WolfPouncePlayer SupportWolfPouncePlayer WolfPounceMarkPlayer WolfPounceSummonWolfPlayer Primal Avatar ---- PrimalAvatarPlayer Rampage ---- BearRampagePlayer Resonating Shield ---- ResonatingShieldPlayer @@ -91,11 +85,9 @@ Stampede ---- StampedePlayer Sunder ---- SunderPlayer Supercharged Slam ---- SuperchargedSlamPlayer Thrashing Vines ---- ThrashingVinesPlayer -Thundergod's Wrath ---- MetaCastLightningSpellOnHitPlayer SupportMetaCastLightningSpellOnHitPlayer Thunderstorm ---- ThunderstormPlayer Time of Need ---- TimeOfNeedPlayer Tornado ---- TornadoPlayer -Valako's Charge ---- ValakosChargePlayer Volcanic Fissure ---- VolcanicFissurePlayer Volcano ---- VolcanoPlayer Voltaic Grenade ---- ShockGrenadePlayer @@ -152,8 +144,8 @@ Compressed Duration II ---- CompressedDurationSupportPlayerTwo Concoct I ---- SupportConcoctPlayer Concoct II ---- SupportConcoctPlayerTwo Cool Headed ---- SupportCoolheadedPlayer -Corrupting Cry I ---- SupportCorruptingCryPlayer -Corrupting Cry II ---- SupportCorruptingCryPlayerTwo +Corrupting Cry I ---- SupportCorruptingCryPlayer TriggeredCorruptingCryPlayer +Corrupting Cry II ---- SupportCorruptingCryPlayerTwo TriggeredCorruptingCryTwoPlayer Crater ---- SupportCraterPlayer TriggeredCraterPlayer Daresso's Passion ---- SupportDaressosPassionPlayer Dauntless ---- SupportDauntlessPlayer @@ -211,7 +203,7 @@ Hardy Totems I ---- SupportHardyTotemsPlayer Hardy Totems II ---- SupportHardyTotemsPlayerTwo Heavy Swing ---- SupportMeleePhysicalDamagePlayer Heft ---- SupportHeftPlayer -Helbrym's Hide ---- SupportHideOfHelbrymPlayer +Helbrym's Hide ---- SupportHelbrymsHidePlayer Herbalism I ---- SupportHerbalismPlayer Herbalism II ---- SupportHerbalismPlayerTwo Holy Descent ---- SupportHolyDescentPlayer @@ -239,8 +231,10 @@ Mark for Death ---- SupportMarkForDeathPlayer Mark for Death II ---- SupportMarkForDeathPlayerTwo Meat Shield I ---- SupportMeatShieldPlayer Meat Shield II ---- SupportMeatShieldPlayerTwo +Minion Splash I ---- SupportMinionMeleeSplashPlayer +Minion Splash II ---- SupportMinionMeleeSplashPlayerTwo Opening Move ---- SupportOpeningMovePlayer -Paquate's Pact ---- SupportCorruptingCryPlayerThree +Paquate's Pact ---- SupportCorruptingCryPlayerThree TriggeredCorruptingCryThreePlayer Persistent Ground I ---- SupportPersistentGroundPlayer Persistent Ground II ---- SupportPersistentGroundPlayerTwo Persistent Ground III ---- SupportPersistentGroundPlayerThree @@ -320,6 +314,7 @@ Vanguard II ---- SupportVanguardPlayerTwo Vitality I ---- SupportVitalityPlayer Vitality II ---- SupportVitalityPlayerTwo Volcanic Eruption ---- SupportVolcanicEruptionPlayer TriggeredVolcanicEruptionPlayer +Vruun's Inevitability ---- SupportVruunsInevitability Xoph's Pyre ---- SupportXophsPyrePlayer Zerphi's Infamy ---- SupportZerphisLegacyPlayer @@ -356,7 +351,6 @@ Lightning Rod ---- LightningRodPlayer Lightning Spear ---- LightningSpearPlayer Magnetic Salvo ---- MagneticSalvoPlayer Mirage Archer ---- MetaMirageArcherPlayer SupportMirageArcherPlayer MirageArcherSpawnPlayer -Phantasmal Arrow ---- PhantasmalArrowPlayer Plague Bearer ---- PlagueBearerPlayer PlagueBearerNovaPlayer Poisonburst Arrow ---- PoisonBurstArrowPlayer Primal Strikes ---- PrimalStrikesPlayer @@ -364,7 +358,6 @@ Rain of Arrows ---- RainOfArrowsPlayer Rake ---- RakePlayer Rapid Assault ---- RapidAssaultPlayer Rhoa Mount ---- RhoaMountPlayer -Shattering Spite ---- ShatteringSpitePlayer Shockchain Arrow ---- ShockchainArrowPlayer Snipe ---- SnipePlayer Sniper's Mark ---- SnipersMarkPlayer @@ -444,7 +437,7 @@ Deliberation ---- SupportDeliberationPlayer Dominus' Grasp ---- SupportPietysMercyPlayer Durability ---- SupportDurabilityPlayer Electrocute ---- SupportElectrocutePlayer -Eonyr's Thunder ---- SupportElectrocuteLineagePlayer +Eonyr's Thunder ---- SupportEonyrsThunderPlayer TriggeredLightningDetonateDeadPlayer Escalating Poison ---- SupportEscalatingPoisonPlayer Excoriate ---- SupportExcoriatePlayer Ferocity ---- SupportFerocityPlayer @@ -576,13 +569,13 @@ Cast on Dodge ---- MetaCastOnDodgePlayer SupportMetaCastOnDod Cast on Elemental Ailment ---- MetaCastOnElementalAilmentPlayer SupportMetaCastOnElementalAilmentPlayer Cast on Minion Death ---- MetaCastOnMinionDeathPlayer SupportMetaCastOnMinionDeathPlayer Chaos Bolt ---- WeaponGrantedChaosboltPlayer -Charge Infusion ---- ChargeRegulationPlayer +Charge Regulation ---- ChargeRegulationPlayer Charged Staff ---- ChargedStaffPlayer ChargedStaffShockwavePlayer +Coiling Bolts ---- CoilingBoltsPlayer Comet ---- CometPlayer Conductivity ---- ConductivityPlayer Contagion ---- ContagionPlayer Convalescence ---- ConvalescencePlayer ConvalescenceActivePlayer -Crackling Palm ---- CracklingPalmPlayer Curse on Block ---- MetaCastCurseOnBlockPlayer SupportMetaCastCurseOnBlockPlayer Dark Effigy ---- DarkEffigyPlayer DarkEffigyProjectilePlayer Decompose ---- CorpseCloudPlayer @@ -682,6 +675,7 @@ Spark ---- SparkPlayer Spark ---- UniqueEarthboundTriggeredSparkPlayer Spectre: {0} ---- SummonSpectrePlayer Spellslinger ---- MetaSpellslingerPlayer SupportSpellslingerPlayer +Spiraling Conspiracy ---- SummonSpiralingConspiracyPlayer CommandMadFlightPlayer Staggering Palm ---- StaggeringPalmPlayer StaggeringPalmProjectilePlayer Storm Wave ---- StormWavePlayer Tempest Bell ---- TempestBellPlayer @@ -696,7 +690,6 @@ Vulnerability ---- VulnerabilityPlayer Wave of Frost ---- WaveOfFrostPlayer Whirling Assault ---- WhirlingAssaultPlayer Wind Blast ---- GaleStrikePlayer -Withering Presence ---- UniqueWitheringPresencePlayer Withering Presence ---- WitheringPresencePlayer --------- Support Intelligence --------- @@ -757,11 +750,11 @@ Crystalline Shards ---- SupportCrystallineShardsPlayer Cursed Ground ---- SupportCursedGroundPlayer Danse Macabre ---- SupportDanseMacabrePlayer Deathmarch ---- SupportDeathmarchPlayer -Decaying Hex ---- SupportDecayingHexPlayer +Decaying Hex ---- SupportDecayingHexPlayer TriggeredDecayingHexPlayer Deep Freeze ---- SupportLastingFrostPlayer Derange ---- SupportDerangePlayer Dialla's Desire ---- SupportDiallasDesirePlayer -Doedre's Undoing ---- SupportDoedresUndoingPlayer TriggeredCurseZoneHazardExplosionPlayer +Doedre's Undoing ---- SupportDoedresUndoingPlayer ChaosFrogExplosionPlayer Drain Ailments ---- SupportDrainedAilmentPlayer Electromagnetism ---- SupportShockingRiftPlayer TriggeredShockingRiftPlayer Elemental Army ---- SupportElementalArmyPlayer @@ -841,7 +834,6 @@ Morgana's Tempest ---- SupportMorganasTempestPlayer Muster ---- SupportMusterPlayer Mysticism I ---- SupportMysticismPlayer Mysticism II ---- SupportMysticismPlayerTwo -Nadir ---- SupportNadirPlayer Oisín's Oath ---- SupportOisinsOathPlayer Perpetual Charge ---- SupportPerpetualChargePlayer Physical Mastery ---- SupportPhysicalMasteryPlayer @@ -862,7 +854,7 @@ Romira's Requital ---- SupportRomirasRequitalPlayer Sacrificial Lamb I ---- SupportSacrificialLambPlayer Sacrificial Lamb II ---- SupportSacrificialLambPlayerTwo Sacrificial Offering ---- SupportSacrificalOfferingPlayer -Shock Conduction I ---- SupportShockConductionPlayer +Shock Conduction ---- SupportShockConductionPlayer Shock Conduction II ---- SupportShockConductionPlayerTwo Shock Siphon ---- SupportEnergyShieldOnShockKillPlayer Sione's Temper ---- SupportWildshardsPlayerThree @@ -913,29 +905,55 @@ Wither ---- WitherPlayer Acidic Concoction ---- AcidicConcoctionPlayer Align Fate ---- AlignFatePlayer Ancestral Spirits ---- AncestralSpiritsPlayer +Animus Exchange ---- AnimusExchangePlayer +Animus Splinters ---- MetaAnimusSplintersPlayer SupportAnimusSplintersPlayer Apocalypse ---- ApocalypsePlayer ApocalypseColdPlayer ApocalypseFirePlayer ApocalypseLightningPlayer +Archon of Chayula ---- ArchonOfChayulaPlayer ArchonOfChayulaTornadoPlayer +Azmerian Swarms ---- AzmerianSwarmPlayer +Azmerian Wolf ---- SummonAzmerianWolfPlayer CommandPackleaderPlayer +Bitter Dead ---- BitterDeadPlayer +Black Powder Blitz ---- BlackPowderBlitzReservationPlayer BlackPowderBlitzPlayer Bleeding Concoction ---- BleedingConcoctionPlayer Blood Boil ---- BloodBoilPlayer Bow Shot ---- MeleeBowPlayer Bursting Fen Toad ---- ExplodingPoisonToadPlayer +Cackling Companions ---- HyenaCacklePlayer Called Shots ---- MetaDeadeyeMarksPlayer SupportMetaDeadeyeMarksPlayer +Cast on Block ---- MetaCastOnBlockPlayer SupportMetaCastOnBlockPlayer Cast on Charm Use ---- MetaCastOnCharmUsePlayer SupportMetaCastOnCharmUsePlayer Chaotic Surge ---- ChaosSpearTriggerChaosSurgePlayer +Compose Requiem ---- CrossbowRequiemAmmoPlayer CrossbowRequiemPlayer +Conductive Runes ---- ConductiveRunesPlayer +Crackling Palm ---- CracklingPalmPlayer Crossbow Shot ---- MeleeCrossbowPlayer UnloadAmmoPlayer +Crushing Fear ---- CrushingFearPlayer Decompose ---- CorpsewadeCorpseCloudPlayer Demon Form ---- DemonFormPlayer +Detonate Living ---- DetonateLivingPlayer Elemental Expression ---- ElementalExpressionTriggeredPlayer Elemental Storm ---- ElementalStormPlayer Elemental Surge ---- AmazonTriggerElementalSurgePlayer Encase in Jade ---- EncaseInJadePlayer +Eternal March ---- EternalMarchPlayer Explosive Concoction ---- ExplosiveConcoctionPlayer +Explosive Transmutation ---- ExplosiveTransmutationPlayer TriggeredExplosiveTransmutationExplosionPlayer Fire Spell on Melee Hit ---- MetaCastFireSpellOnHitPlayer SupportMetaCastFireSpellOnHitPlayer +Fragments of the Past ---- FragmentsOfThePastPlayer FragmentsOfThePastFragmentPlayer +Frostflame Nova ---- FrostflameNovaPlayer Fulminating Concoction ---- FulminatingConcoctionPlayer Future-Past ---- FuturePastPlayer +Gemini Surge ---- GeminiSurgePlayer +Grenade ---- MeleeGrenadeLauncherPlayer +Grim Pillars ---- GrimPillarsPlayer +Hollow Focus ---- HollowFocusPlayer +Hollow Form ---- MetaHollowFormPlayer SupportHollowFormPlayer +Hollow Resonance ---- HollowResonancePlayer +Hollow Shell ---- HollowShellPlayer Inevitable Agony ---- InevitableAgonyPlayer Into the Breach ---- IntoTheBreachPlayer Kelari's Malediction ---- CorpseBeetlesPlayer CommandCorpseBeetleExplodePlayer Kelari, the Tainted Sands ---- SummonSandDjinnPlayer CommandSandDjinnKnifeThrowPlayer +Leylines ---- LeylinesPlayer Life Remnants ---- LifeRemnantsPlayer Mace Strike ---- Melee1HMacePlayer Mace Strike ---- Melee2HMacePlayer @@ -943,35 +961,93 @@ Mace Strike ---- MeleeMaceMacePlayer Manifest Weapon ---- ManifestWeaponPlayer Maul ---- BearMaulPlayer Meditate ---- MeditatePlayer +Midnight Zenith ---- MidnightStarPlayer +Mist Raven ---- SummonMistRavenPlayer CommandMistRavenPlayer +Molten Crash ---- MoltenCrashPlayer +Molten Shower ---- TriggeredMoltenShowerPlayer Moment of Vulnerability ---- MomentOfVulnerabilityPlayer Navira, the Last Mirage ---- SummonWaterDjinnPlayer CommandWaterDjinnBubblePlayer Parry ---- ParryPlayer +Phantasmal Arrow ---- PhantasmalArrowPlayer Pinnacle of Power ---- PinnacleOfPowerPlayer +Powered by Verisium ---- PoweredByVerisiumPlayer +Primal Bounty ---- PrimalBountyPlayer Punch ---- MeleeUnarmedPlayer Quarterstaff Strike ---- MeleeQuarterstaffPlayer +Rain of Blades ---- RainOfBladesPlayer RainOfBladesTriggeredPlayer Raise Shield ---- ShieldBlockPlayer +Refutation ---- RefutationPlayer +Remnants of Kalguur ---- MetaRemnantsOfKalguurPlayer Rend ---- WyvernRendPlayer +Repulsion ---- CurseOfRepulsionPlayer CurseOfRepulsionShockwavePlayer +Righteous Descent ---- RighteousDescentPlayer +Rite of Restoration ---- SacredGroundPlayer Ritual Sacrifice ---- RitualSacrificePlayer +Runic Reprieve ---- RunicReprievePlayer Runic Tempering ---- RunicTemperingPlayer Ruzhan, the Blazing Sword ---- SummonFireDjinnPlayer CommandFireDjinnLivingBombPlayer Shattering Concoction ---- ShatteringConcoctionPlayer +Shattering Spite ---- ShatteringSpitePlayer Shred ---- WolfShredPlayer IceFragmentsPlayer +Skyfall ---- SkyfallPlayer +Soaring Midnight ---- NightfallSoaringMidnightPlayer NightfallEmbraceTheFallPlayer Sorcery Ward ---- SorceryWardPlayer Spear Stab ---- MeleeSpearOffHandPlayer Spear Stab ---- MeleeSpearPlayer Spear Throw ---- SpearThrowPlayer +Spirit Vessel ---- SpiritVesselPlayer SpiritVesselSupport +Starborn Onslaught ---- StarbornOnslaughtPlayer Summon Infernal Hound ---- SummonInfernalHoundPlayer Supporting Fire ---- SupportingFirePlayer CommandDeathFromAbovePlayer Temper Weapon ---- TemperWeaponPlayer TemperWeaponCombustionPlayer Temporal Rift ---- TemporalRiftPlayer +The Stars Answer ---- TheStarsAnswerPlayer TheStarsAnswerCometPlayer +Thundergod's Wrath ---- MetaCastLightningSpellOnHitPlayer SupportMetaCastLightningSpellOnHitPlayer Time Freeze ---- TimeFreezePlayer Time Snap ---- TimeSnapPlayer +Triskelion Cascade ---- TriskelionCascadePlayer Unbound Avatar ---- UnboundAvatarPlayer Unleash ---- UnleashPlayer +Valako's Charge ---- ValakosChargePlayer +Verisium Manifestations ---- VerisiumManifestationPlayer TriggeredManifestRunePlayer +Vivid Stampede ---- VividStampedePlayer Void Illusion ---- VoidIllusionPlayer VoidIllusionSpawnPlayer +Voltaic Barrier ---- VoltaicBarrierPlayer VoltaicBarrierTriggeredChainLightningPlayer +Wardbound Minions ---- WardboundMinionsPlayer +Wild Protector ---- WildProtectorPlayer +Wildwood's Gifts ---- AncientGiftsPlayer +Withering Presence ---- UniqueWitheringPresencePlayer --------- Support Other --------- - +Arbiter's Reach ---- ArbitersReachWardPlayer +Breachlord's Amalgam ---- SupportBreachlordsAmalgam +Breachlord's Rift ---- SupportBreachlordsRift +Catha's Brilliance ---- SupportCathasBrilliance +Concussive Runes ---- SupportConcussiveRunesPlayer ConcussiveRunesPlayer +Esh's Prowess ---- SupportEshsProwess +Fist Of Kalguur ---- SupportFistOfKalguurPlayer TriggeredFistOfKalguurPlayer +Healing Runes ---- SupportHealingRunesPlayer +Her Declaration ---- SupportHerDeclarationPlayer +Medved's Felling ---- SupportMedvedsFelling +Mórrigan's Insight ---- SupportMorrigansInsight TriggeredMorrigansInsightPlayer +Olroth's Conviction ---- SupportOlrothsConvictionPlayer +Olroth's Hubris ---- SupportOlrothsHubrisPlayer +Prototype Seventeen ---- SupportPrototypeSeventeenPlayer +Runeforged Blades ---- SupportRuneforgedBladesPlayer TriggeredRuneforgedBladesPlayer +Runic Extraction ---- SupportRunicExtractionPlayer +Runic Infusion ---- SupportRunicInfusionPlayer +Scouring Flame ---- SupportScouringFlamePlayer +Seraph's Heart ---- SupportSeraphsHeartPlayer +Styrn's Anthem ---- SupportKnightsAnthem +Styrn's Ferocity ---- SupportStyrnsFerocity +Styrn's Mountain ---- SupportStyrnsMountain +Tangmazu's Thurible ---- SupportTangMazusThuriblePlayer +Trickster's Shard ---- SupportTrickstersShardPlayer TriggeredFracturedSelfPlayer +Tul's Avalanche ---- SupportTulsAvalanche +Uhtred's Constellation ---- SupportUhtredsConstellation +Uhtred's Rite ---- SupportUhtredsRitePlayer +Vorana's Siege ---- SupportVoranasSiege +Vruun's Aftermath ---- SupportVruunsAftermath --------- Potentially Disabled Other --------- Abyssal Apparition ---- TriggeredAbyssalApparitionPlayer @@ -992,10 +1068,17 @@ Command: {0} ---- CommandWaterDjinnOasisPlayer Dagger Stab ---- MeleeDaggerDaggerPlayer Dagger Stab ---- MeleeDaggerPlayer Flail Strike ---- MeleeFlailPlayer +Gelid Palm ---- GelidPalmPlayer +Harbinger of Madness ---- HarbingerOfMadnessPlayer +Herald of the Royal Queen ---- UniqueAtziriHeraldPlayer Ice Fragments ---- IceFragmentsPlayer +Kinetic Bash ---- HazardousHoldoutPlayer Mirage Deadeye ---- MetaMirageDeadeyePlayer SupportMirageDeadeyePlayer MirageDeadeyeSpawnPlayer +Sanguine Revelry ---- SanguineRevelryPlayer +Smash to Smithereens ---- SmashToSmithereensPlayer Summon Companion ---- SummonMercenaryCompanionPlayer SummonMercenaryCompanionSupportPlayer UnloadAmmoPlayer Sword Slash ---- Melee1HSwordPlayer Sword Slash ---- Melee2HSwordPlayer Sword Slash ---- MeleeSwordSwordPlayer +Virtuous Barrier ---- VirtuousBarrierPlayer diff --git a/src/Export/Skills/SkillGemsExport.txt b/src/Export/Skills/SkillGemsExport.txt index ab22d79026..b08acc42d8 100644 --- a/src/Export/Skills/SkillGemsExport.txt +++ b/src/Export/Skills/SkillGemsExport.txt @@ -73,18 +73,6 @@ #mods #skillEnd -#skill BlackPowderBlitzReservationPlayer -#set BlackPowderBlitzReservationPlayer -#flags -#mods -#skillEnd - -#skill BlackPowderBlitzPlayer -#set BlackPowderBlitzPlayer -#flags -#mods -#skillEnd - #skill BoneshatterPlayer #set BoneshatterPlayer #flags @@ -100,23 +88,6 @@ #mods #skillEnd -#skill HyenaCacklePlayer -#set HyenaCacklePlayer -#flags -#mods -#skillEnd - -#skill MetaCastOnBlockPlayer -#set MetaCastOnBlockPlayer -#flags -#mods -#skillEnd - -#skill SupportMetaCastOnBlockPlayer -#set SupportMetaCastOnBlockPlayer -#mods -#skillEnd - #skill MetaCastOnMeleeKillPlayer #set MetaCastOnMeleeKillPlayer #flags @@ -148,18 +119,6 @@ #mods #skillEnd -#skill CrossbowRequiemAmmoPlayer -#set CrossbowRequiemAmmoPlayer -#flags -#mods -#skillEnd - -#skill CrossbowRequiemPlayer -#set CrossbowRequiemPlayer -#flags -#mods -#skillEnd - #skill StaffConsecratePlayer #set StaffConsecratePlayer #flags @@ -332,15 +291,6 @@ #mods #skillEnd -#skill GeminiSurgePlayer -#set GeminiSurgeColdPlayer -#flags -#mods -#set GeminiSurgeFirePlayer -#flags -#mods -#skillEnd - #skill HammerOfTheGodsPlayer #set HammerOfTheGodsPlayer #flags @@ -653,15 +603,6 @@ #mods #skillEnd -#skill MoltenCrashPlayer -#set MoltenCrashPlayer -#flags -#mods -#set MoltenCrashFissurePlayer -#flags -#mods -#skillEnd - #skill MetaMortarCannonPlayer #set MetaMortarCannonPlayer #flags @@ -715,8 +656,8 @@ #mods #skillEnd -#skill SupportCrossSlashPlayer -#set SupportCrossSlashPlayer +#skill SupportWolfPouncePlayer +#set SupportWolfPouncePlayer #mods #skillEnd @@ -726,8 +667,8 @@ #mods #skillEnd -#skill WolfCrossSlashWolfPlayer -#set WolfCrossSlashWolfPlayer +#skill WolfPounceSummonWolfPlayer +#set WolfPounceSummonWolfPlayer #flags #mods #skillEnd @@ -890,17 +831,6 @@ #mods #skillEnd -#skill MetaCastLightningSpellOnHitPlayer -#set MetaCastLightningSpellOnHitPlayer -#flags -#mods -#skillEnd - -#skill SupportMetaCastLightningSpellOnHitPlayer -#set SupportMetaCastLightningSpellOnHitPlayer -#mods -#skillEnd - #skill ThunderstormPlayer #set ThunderstormPlayer #flags @@ -919,15 +849,6 @@ #mods #skillEnd -#skill ValakosChargePlayer -#set ValakosChargePlayer -#flags -#mods -#set ValakosChargeArcPlayer -#flags -#mods -#skillEnd - #skill VolcanicFissurePlayer #set VolcanicFissurePlayer #flags @@ -1251,11 +1172,23 @@ #mods #skillEnd +#skill TriggeredCorruptingCryPlayer +#set TriggeredCorruptingCryPlayer +#flags +#mods +#skillEnd + #skill SupportCorruptingCryPlayerTwo #set SupportCorruptingCryPlayerTwo #mods #skillEnd +#skill TriggeredCorruptingCryTwoPlayer +#set TriggeredCorruptingCryTwoPlayer +#flags +#mods +#skillEnd + #skill SupportCraterPlayer #set SupportCraterPlayer #mods @@ -1577,8 +1510,8 @@ #mods #skillEnd -#skill SupportHideOfHelbrymPlayer -#set SupportHideOfHelbrymPlayer +#skill SupportHelbrymsHidePlayer +#set SupportHelbrymsHidePlayer #mods #skillEnd @@ -1717,6 +1650,16 @@ #mods #skillEnd +#skill SupportMinionMeleeSplashPlayer +#set SupportMinionMeleeSplashPlayer +#mods +#skillEnd + +#skill SupportMinionMeleeSplashPlayerTwo +#set SupportMinionMeleeSplashPlayerTwo +#mods +#skillEnd + #skill SupportOpeningMovePlayer #set SupportOpeningMovePlayer #mods @@ -1727,6 +1670,12 @@ #mods #skillEnd +#skill TriggeredCorruptingCryThreePlayer +#set TriggeredCorruptingCryThreePlayer +#flags +#mods +#skillEnd + #skill SupportPersistentGroundPlayer #set SupportPersistentGroundPlayer #mods @@ -2158,6 +2107,11 @@ #mods #skillEnd +#skill SupportVruunsInevitability +#set SupportVruunsInevitability +#mods +#skillEnd + #skill SupportXophsPyrePlayer #set SupportXophsPyrePlayer #mods @@ -2449,15 +2403,6 @@ #mods #skillEnd -#skill PhantasmalArrowPlayer -#set PhantasmalArrowPlayer -#flags -#mods -#set PhantasmalArrowExplosionPlayer -#flags -#mods -#skillEnd - #skill PlagueBearerPlayer #set PlagueBearerPlayer #flags @@ -2521,12 +2466,6 @@ #mods #skillEnd -#skill ShatteringSpitePlayer -#set ShatteringSpitePlayer -#flags -#mods -#skillEnd - #skill ShockchainArrowPlayer #set ShockchainArrowPlayer #flags @@ -3016,8 +2955,14 @@ #mods #skillEnd -#skill SupportElectrocuteLineagePlayer -#set SupportElectrocuteLineagePlayer +#skill SupportEonyrsThunderPlayer +#set SupportEonyrsThunderPlayer +#mods +#skillEnd + +#skill TriggeredLightningDetonateDeadPlayer +#set TriggeredLightningDetonateDeadPlayer +#flags #mods #skillEnd @@ -3767,6 +3712,15 @@ #mods #skillEnd +#skill CoilingBoltsPlayer +#set CoilingBoltsPlayer +#flags +#mods +#set CoilingBoltsChaosPlayer +#flags +#mods +#skillEnd + #skill CometPlayer #set CometPlayer #flags @@ -3800,15 +3754,6 @@ #mods #skillEnd -#skill CracklingPalmPlayer -#set CracklingPalmPlayer -#flags -#mods -#set CracklingPalmBoltPlayer -#flags -#mods -#skillEnd - #skill MetaCastCurseOnBlockPlayer #set MetaCastCurseOnBlockPlayer #flags @@ -4090,6 +4035,9 @@ #set GatheringStormExplodePlayer #flags #mods +#set GatheringStormExplodeBetterPlayer +#flags +#mods #skillEnd #skill GhostDancePlayer @@ -4608,6 +4556,18 @@ #mods #skillEnd +#skill SummonSpiralingConspiracyPlayer +#set SummonSpiralingConspiracyPlayer +#flags +#mods +#skillEnd + +#skill CommandMadFlightPlayer +#set CommandMadFlightPlayer +#flags +#mods +#skillEnd + #skill StaggeringPalmPlayer #set StaggeringPalmPlayer #flags @@ -4687,6 +4647,9 @@ #set VolatileDeadPlayer #flags #mods +#set VolatileDeadExplosionPlayer +#flags +#mods #set VolatileDeadIgniteAuraPlayer #flags #mods @@ -4716,12 +4679,6 @@ #mods #skillEnd -#skill UniqueWitheringPresencePlayer -#set UniqueWitheringPresencePlayer -#flags -#mods -#skillEnd - #skill WitheringPresencePlayer #set WitheringPresencePlayer #flags @@ -5077,6 +5034,12 @@ #mods #skillEnd +#skill TriggeredDecayingHexPlayer +#set TriggeredDecayingHexPlayer +#flags +#mods +#skillEnd + #skill SupportLastingFrostPlayer #set SupportLastingFrostPlayer #mods @@ -5097,8 +5060,8 @@ #mods #skillEnd -#skill TriggeredCurseZoneHazardExplosionPlayer -#set TriggeredCurseZoneHazardExplosionPlayer +#skill ChaosFrogExplosionPlayer +#set ChaosFrogExplosionPlayer #flags #mods #skillEnd @@ -5591,11 +5554,6 @@ #mods #skillEnd -#skill SupportNadirPlayer -#set SupportNadirPlayer -#mods -#skillEnd - #skill SupportOisinsOathPlayer #set SupportOisinsOathPlayer #mods @@ -5696,13 +5654,13 @@ #mods #skillEnd -#skill SupportShockConductionPlayer -#set SupportShockConductionPlayer +#skill SupportShockConductionPlayerTwo +#set SupportShockConductionPlayerTwo #mods #skillEnd -#skill SupportShockConductionPlayerTwo -#set SupportShockConductionPlayerTwo +#skill SupportShockConductionPlayer +#set SupportShockConductionPlayer #mods #skillEnd @@ -6006,6 +5964,21 @@ #mods #skillEnd +#skill AnimusExchangePlayer +#set AnimusExchangePlayer +#flags +#mods +#skillEnd + +#skill MetaAnimusSplintersPlayer +#set MetaAnimusSplintersPlayer +#flags +#mods +#skillEnd + +#skill SupportAnimusSplintersPlayer +#skillEnd + #skill ApocalypsePlayer #set ApocalypsePlayer #flags @@ -6033,6 +6006,63 @@ #mods #skillEnd +#skill ArchonOfChayulaPlayer +#set ArchonOfChayulaPlayer +#flags +#mods +#skillEnd + +#skill ArchonOfChayulaTornadoPlayer +#set ArchonOfChayulaTornadoPlayer +#flags +#mods +#skillEnd + +#skill AzmerianSwarmPlayer +#set AzmerianSwarmPlayer +#flags +#mods +#skillEnd + +#skill SummonAzmerianWolfPlayer +#set SummonAzmerianWolfPlayer +#flags +#mods +#skillEnd + +#skill CommandPackleaderPlayer +#set CommandPackleaderPlayer +#flags +#mods +#skillEnd + +#skill BitterDeadPlayer +#set BitterDeadPlayer +#flags +#mods +#set BitterDeadExplosionPlayer +#flags +#mods +#set BitterDeadChillAuraPlayer +#flags +#mods +#set BitterDeadRuneAuraPlayer +#flags +#mods +#skillEnd + +#skill BlackPowderBlitzReservationPlayer +#set BlackPowderBlitzReservationPlayer +#flags +#mods +#skillEnd + +#skill BlackPowderBlitzPlayer +#set BlackPowderBlitzPlayer +#flags +#mods +#skillEnd + #skill BleedingConcoctionPlayer #set BleedingConcoctionPlayer #flags @@ -6057,6 +6087,12 @@ #mods #skillEnd +#skill HyenaCacklePlayer +#set HyenaCacklePlayer +#flags +#mods +#skillEnd + #skill MetaDeadeyeMarksPlayer #set MetaDeadeyeMarksPlayer #flags @@ -6068,6 +6104,17 @@ #mods #skillEnd +#skill MetaCastOnBlockPlayer +#set MetaCastOnBlockPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastOnBlockPlayer +#set SupportMetaCastOnBlockPlayer +#mods +#skillEnd + #skill MetaCastOnCharmUsePlayer #set MetaCastOnCharmUsePlayer #flags @@ -6085,35 +6132,83 @@ #mods #skillEnd -#skill MeleeCrossbowPlayer -#set MeleeCrossbowPlayer +#skill CrossbowRequiemAmmoPlayer +#set CrossbowRequiemAmmoPlayer #flags #mods #skillEnd -#skill UnloadAmmoPlayer -#set UnloadAmmoPlayer +#skill CrossbowRequiemPlayer +#set CrossbowRequiemPlayer #flags #mods #skillEnd -#skill CorpsewadeCorpseCloudPlayer -#set CorpsewadeCorpseCloudPlayer +#skill ConductiveRunesPlayer +#set ConductiveRunesPlayer #flags #mods -#set CorpsewadeCorpseCloudExplosionPlayer +#set ConductiveRunesExplosionPlayer #flags #mods #skillEnd -#skill DemonFormPlayer -#set DemonFormPlayer +#skill CracklingPalmPlayer +#set CracklingPalmPlayer #flags #mods -#skillEnd - -#skill ElementalExpressionTriggeredPlayer -#set ElementalExpressionTriggeredPlayer +#set CracklingPalmBoltPlayer +#flags +#mods +#skillEnd + +#skill MeleeCrossbowPlayer +#set MeleeCrossbowPlayer +#flags +#mods +#skillEnd + +#skill UnloadAmmoPlayer +#set UnloadAmmoPlayer +#flags +#mods +#skillEnd + +#skill CrushingFearPlayer +#set CrushingFearPlayer +#flags +#mods +#set CrushingFearNovaPlayer +#flags +#mods +#skillEnd + +#skill CorpsewadeCorpseCloudPlayer +#set CorpsewadeCorpseCloudPlayer +#flags +#mods +#set CorpsewadeCorpseCloudExplosionPlayer +#flags +#mods +#skillEnd + +#skill DemonFormPlayer +#set DemonFormPlayer +#flags +#mods +#skillEnd + +#skill DetonateLivingPlayer +#set DetonateLivingPlayer +#flags +#mods +#set DetonateLivingExplodePlayer +#flags +#mods +#skillEnd + +#skill ElementalExpressionTriggeredPlayer +#set ElementalExpressionTriggeredPlayer #flags #mods #set ElementalExpressionFirePlayer @@ -6160,6 +6255,12 @@ #mods #skillEnd +#skill EternalMarchPlayer +#set EternalMarchPlayer +#flags +#mods +#skillEnd + #skill ExplosiveConcoctionPlayer #set ExplosiveConcoctionPlayer #flags @@ -6169,6 +6270,30 @@ #mods #skillEnd +#skill ExplosiveTransmutationPlayer +#set ExplosiveTransmutationPlayer +#flags +#mods +#skillEnd + +#skill TriggeredExplosiveTransmutationExplosionPlayer +#set ExplosiveTransmutationPhysicalPlayer +#flags +#mods +#set ExplosiveTransmutationColdPlayer +#flags +#mods +#set ExplosiveTransmutationFirePlayer +#flags +#mods +#set ExplosiveTransmutationLightningPlayer +#flags +#mods +#set ExplosiveTransmutationChaosPlayer +#flags +#mods +#skillEnd + #skill MetaCastFireSpellOnHitPlayer #set MetaCastFireSpellOnHitPlayer #flags @@ -6180,6 +6305,27 @@ #mods #skillEnd +#skill FragmentsOfThePastPlayer +#set FragmentsOfThePastPlayer +#flags +#mods +#skillEnd + +#skill FragmentsOfThePastFragmentPlayer +#set FragmentsOfThePastFragmentPlayer +#flags +#mods +#skillEnd + +#skill FrostflameNovaPlayer +#set FrostflameNovaPlayer +#flags +#mods +#set FrostflameNovaColdHitPlayer +#flags +#mods +#skillEnd + #skill FulminatingConcoctionPlayer #set FulminatingConcoctionPlayer #flags @@ -6192,6 +6338,62 @@ #mods #skillEnd +#skill GeminiSurgePlayer +#set GeminiSurgeColdPlayer +#flags +#mods +#set GeminiSurgeFirePlayer +#flags +#mods +#skillEnd + +#skill MeleeGrenadeLauncherPlayer +#set MeleeGrenadeLauncherPlayer +#flags +#mods +#skillEnd + +#skill GrimPillarsPlayer +#set GrimPillarsPlayer +#flags +#mods +#set GrimPillarsExplodePlayer +#flags +#mods +#skillEnd + +#skill HollowFocusPlayer +#set HollowFocusPlayer +#flags +#mods +#set HollowFocusNovaPlayer +#flags +#mods +#skillEnd + +#skill MetaHollowFormPlayer +#set MetaHollowFormPlayer +#flags +#mods +#skillEnd + +#skill SupportHollowFormPlayer +#set SupportHollowFormPlayer +#mods +#skillEnd + +#skill HollowResonancePlayer +#set HollowResonancePlayer +#flags +#mods +#skillEnd + +#skill HollowShellPlayer +#set HollowShellPlayer +#flags +#mods +#skillEnd + #skill InevitableAgonyPlayer #set InevitableAgonyPlayer #flags @@ -6228,6 +6430,12 @@ #mods #skillEnd +#skill LeylinesPlayer +#set LeylinesPlayer +#flags +#mods +#skillEnd + #skill LifeRemnantsPlayer #set LifeRemnantsPlayer #flags @@ -6270,6 +6478,42 @@ #mods #skillEnd +#skill MidnightStarPlayer +#set MidnightStarPlayer +#flags +#mods +#set MidnightStarIceCrystalDetonate +#flags +#mods +#skillEnd + +#skill SummonMistRavenPlayer +#set SummonMistRavenPlayer +#flags +#mods +#skillEnd + +#skill CommandMistRavenPlayer +#set CommandMistRavenPlayer +#flags +#mods +#skillEnd + +#skill MoltenCrashPlayer +#set MoltenCrashPlayer +#flags +#mods +#set MoltenCrashFissurePlayer +#flags +#mods +#skillEnd + +#skill TriggeredMoltenShowerPlayer +#set TriggeredMoltenShowerPlayer +#flags +#mods +#skillEnd + #skill MomentOfVulnerabilityPlayer #set MomentOfVulnerabilityPlayer #flags @@ -6294,12 +6538,33 @@ #mods #skillEnd +#skill PhantasmalArrowPlayer +#set PhantasmalArrowPlayer +#flags +#mods +#set PhantasmalArrowExplosionPlayer +#flags +#mods +#skillEnd + #skill PinnacleOfPowerPlayer #set PinnacleOfPowerPlayer #flags #mods #skillEnd +#skill PoweredByVerisiumPlayer +#set PoweredByVerisiumPlayer +#flags +#mods +#skillEnd + +#skill PrimalBountyPlayer +#set PrimalBountyPlayer +#flags +#mods +#skillEnd + #skill MeleeUnarmedPlayer #set MeleeUnarmedPlayer #flags @@ -6312,12 +6577,36 @@ #mods #skillEnd +#skill RainOfBladesPlayer +#set RainOfBladesPlayer +#flags +#mods +#skillEnd + +#skill RainOfBladesTriggeredPlayer +#set RainOfBladesTriggeredPlayer +#flags +#mods +#skillEnd + #skill ShieldBlockPlayer #set ShieldBlockPlayer #flags #mods #skillEnd +#skill RefutationPlayer +#set RefutationPlayer +#flags +#mods +#skillEnd + +#skill MetaRemnantsOfKalguurPlayer +#set MetaRemnantsOfKalguurPlayer +#flags +#mods +#skillEnd + #skill WyvernRendPlayer #set WyvernRendPlayer #flags @@ -6327,12 +6616,45 @@ #mods #skillEnd +#skill CurseOfRepulsionPlayer +#set CurseOfRepulsionPlayer +#flags +#mods +#skillEnd + +#skill CurseOfRepulsionShockwavePlayer +#set CurseOfRepulsionShockwavePlayer +#flags +#mods +#skillEnd + +#skill RighteousDescentPlayer +#set RighteousDescentPlayer +#flags +#mods +#set RighteousDescentPlayerBoosted +#flags +#mods +#skillEnd + +#skill SacredGroundPlayer +#set SacredGroundPlayer +#flags +#mods +#skillEnd + #skill RitualSacrificePlayer #set RitualSacrificePlayer #flags #mods #skillEnd +#skill RunicReprievePlayer +#set RunicReprievePlayer +#flags +#mods +#skillEnd + #skill RunicTemperingPlayer #set RunicTempering #flags @@ -6357,6 +6679,12 @@ #mods #skillEnd +#skill ShatteringSpitePlayer +#set ShatteringSpitePlayer +#flags +#mods +#skillEnd + #skill WolfShredPlayer #set WolfShredPlayer #flags @@ -6375,6 +6703,27 @@ #mods #skillEnd +#skill SkyfallPlayer +#set SkyfallPlayer +#flags +#mods +#set SkyfallInfusedPlayer +#flags +#mods +#skillEnd + +#skill NightfallSoaringMidnightPlayer +#set NightfallSoaringMidnightPlayer +#flags +#mods +#skillEnd + +#skill NightfallEmbraceTheFallPlayer +#set NightfallEmbraceTheFallPlayer +#flags +#mods +#skillEnd + #skill SorceryWardPlayer #set SorceryWardPlayer #flags @@ -6402,6 +6751,26 @@ #mods #skillEnd +#skill SpiritVesselPlayer +#set SpiritVesselPlayer +#flags +#mods +#skillEnd + +#skill SpiritVesselSupport +#set SpiritVesselSupport +#mods +#skillEnd + +#skill StarbornOnslaughtPlayer +#set StarbornOnslaughtPlayer +#flags +#mods +#set StarbornOnslaughtExplosions +#flags +#mods +#skillEnd + #skill SummonInfernalHoundPlayer #set SummonInfernalHoundPlayer #flags @@ -6438,6 +6807,32 @@ #mods #skillEnd +#skill TheStarsAnswerPlayer +#set TheStarsAnswerPlayer +#flags +#mods +#skillEnd + +#skill TheStarsAnswerCometPlayer +#set TheStarsAnswerCometPlayer +#flags +#mods +#set TheStarsAnswerEmpoweredCometPlayer +#flags +#mods +#skillEnd + +#skill MetaCastLightningSpellOnHitPlayer +#set MetaCastLightningSpellOnHitPlayer +#flags +#mods +#skillEnd + +#skill SupportMetaCastLightningSpellOnHitPlayer +#set SupportMetaCastLightningSpellOnHitPlayer +#mods +#skillEnd + #skill TimeFreezePlayer #set TimeFreezePlayer #flags @@ -6450,6 +6845,12 @@ #mods #skillEnd +#skill TriskelionCascadePlayer +#set TriskelionCascadePlayer +#flags +#mods +#skillEnd + #skill UnboundAvatarPlayer #set UnboundAvatarPlayer #flags @@ -6462,6 +6863,33 @@ #mods #skillEnd +#skill ValakosChargePlayer +#set ValakosChargePlayer +#flags +#mods +#set ValakosChargeArcPlayer +#flags +#mods +#skillEnd + +#skill VerisiumManifestationPlayer +#set VerisiumManifestationPlayer +#flags +#mods +#skillEnd + +#skill TriggeredManifestRunePlayer +#set TriggeredManifestRunePlayer +#flags +#mods +#skillEnd + +#skill VividStampedePlayer +#set VividStampedePlayer +#flags +#mods +#skillEnd + #skill VoidIllusionPlayer #set VoidIllusionPlayer #flags @@ -6474,8 +6902,218 @@ #mods #skillEnd +#skill VoltaicBarrierPlayer +#set VoltaicBarrierPlayer +#flags +#mods +#skillEnd + +#skill VoltaicBarrierTriggeredChainLightningPlayer +#set VoltaicBarrierTriggeredChainLightningPlayer +#flags +#mods +#skillEnd + +#skill WardboundMinionsPlayer +#set WardboundMinionsPlayer +#flags +#mods +#skillEnd + +#skill WildProtectorPlayer +#set WildProtectorPlayer +#flags +#mods +#skillEnd + +#skill AncientGiftsPlayer +#set AncientGiftsPlayer +#flags +#mods +#skillEnd + +#skill UniqueWitheringPresencePlayer +#set UniqueWitheringPresencePlayer +#flags +#mods +#skillEnd + --------- Support Other --------- +#skill ArbitersReachWardPlayer +#set ArbitersReachPlayer +#mods +#skillEnd + +#skill SupportBreachlordsAmalgam +#set SupportBreachlordsAmalgam +#mods +#skillEnd + +#skill SupportBreachlordsRift +#set SupportBreachlordsRift +#mods +#skillEnd + +#skill SupportCathasBrilliance +#set SupportCathasBrilliance +#mods +#skillEnd + +#skill SupportConcussiveRunesPlayer +#set SupportConcussiveRunesPlayer +#mods +#skillEnd + +#skill ConcussiveRunesPlayer +#set ConcussiveRunesPlayer +#flags +#mods +#skillEnd + +#skill SupportEshsProwess +#set SupportEshsProwess +#mods +#skillEnd + +#skill SupportFistOfKalguurPlayer +#set SupportFistOfKalguurPlayer +#mods +#skillEnd + +#skill TriggeredFistOfKalguurPlayer +#set TriggeredFistOfKalguurPlayer +#flags +#mods +#skillEnd + +#skill SupportHealingRunesPlayer +#set SupportHealingRunesPlayer +#mods +#skillEnd + +#skill SupportHerDeclarationPlayer +#set SupportHerDeclarationPlayer +#mods +#skillEnd + +#skill SupportMedvedsFelling +#set SupportMedvedsFelling +#mods +#skillEnd + +#skill SupportMorrigansInsight +#set SupportMorrigansRefuge +#mods +#skillEnd + +#skill TriggeredMorrigansInsightPlayer +#set TriggeredMorrigansInsightPlayer +#flags +#mods +#skillEnd + +#skill SupportOlrothsConvictionPlayer +#set SupportOlrothsConvictionPlayer +#mods +#skillEnd + +#skill SupportOlrothsHubrisPlayer +#set SupportOlrothsHubrisPlayer +#mods +#skillEnd + +#skill SupportPrototypeSeventeenPlayer +#set SupportPrototypeSeventeenPlayer +#mods +#skillEnd + +#skill SupportRuneforgedBladesPlayer +#set SupportRuneforgedBladesPlayer +#mods +#skillEnd + +#skill TriggeredRuneforgedBladesPlayer +#set TriggeredRuneforgedBladesPlayer +#flags +#mods +#skillEnd + +#skill SupportRunicExtractionPlayer +#set SupportRunicExtractionPlayer +#mods +#skillEnd + +#skill SupportRunicInfusionPlayer +#set SupportRunicInfusionPlayer +#mods +#skillEnd + +#skill SupportScouringFlamePlayer +#set SupportScouringFlamePlayer +#mods +#skillEnd + +#skill SupportSeraphsHeartPlayer +#set SupportSeraphsHeartPlayer +#mods +#skillEnd + +#skill SupportKnightsAnthem +#set SupportKnightsAnthem +#mods +#skillEnd + +#skill SupportStyrnsFerocity +#set SupportStyrnsFerocity +#mods +#skillEnd + +#skill SupportStyrnsMountain +#set SupportStyrnsMountain +#mods +#skillEnd + +#skill SupportTangMazusThuriblePlayer +#set SupportTangMazusThuriblePlayer +#mods +#skillEnd + +#skill SupportTrickstersShardPlayer +#set SupportTrickstersShardPlayer +#mods +#skillEnd + +#skill TriggeredFracturedSelfPlayer +#set TriggeredFracturedSelfPlayer +#flags +#mods +#skillEnd + +#skill SupportTulsAvalanche +#set SupportTulsAvalanche +#mods +#skillEnd + +#skill SupportUhtredsConstellation +#set SupportUhtredsConstellation +#mods +#skillEnd + +#skill SupportUhtredsRitePlayer +#set SupportUhtredsRitePlayer +#mods +#skillEnd + +#skill SupportVoranasSiege +#set SupportVoranasSiege +#mods +#skillEnd + +#skill SupportVruunsAftermath +#set SupportVruunsAftermath +#mods +#skillEnd --------- Potentially Disabled Other --------- @@ -6563,12 +7201,42 @@ #mods #skillEnd +#skill GelidPalmPlayer +#set GelidPalmPlayer +#flags +#mods +#set GelidPalmBoltPlayer +#flags +#mods +#skillEnd + +#skill HarbingerOfMadnessPlayer +#set HarbingerOfMadnessPlayer +#flags +#mods +#skillEnd + +#skill UniqueAtziriHeraldPlayer +#set UniqueAtziriHeraldPlayer +#flags +#mods +#set UniqueAtziriHeraldExplosionPlayer +#flags +#mods +#skillEnd + #skill IceFragmentsPlayer #set IceFragmentsPlayer #flags #mods #skillEnd +#skill HazardousHoldoutPlayer +#set HazardousHoldoutPlayer +#flags +#mods +#skillEnd + #skill MetaMirageDeadeyePlayer #set MetaMirageDeadeyePlayer #flags @@ -6586,6 +7254,18 @@ #mods #skillEnd +#skill SanguineRevelryPlayer +#set SanguineRevelryPlayer +#flags +#mods +#skillEnd + +#skill SmashToSmithereensPlayer +#set SmashToSmithereensPlayer +#flags +#mods +#skillEnd + #skill SummonMercenaryCompanionPlayer #set SummonMercenaryCompanionPlayer #flags @@ -6621,4 +7301,10 @@ #mods #skillEnd +#skill VirtuousBarrierPlayer +#set VirtuousBarrierPlayer +#flags +#mods +#skillEnd + diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index 54e55570e4..395bd6d04e 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -367,7 +367,7 @@ statMap = { #flags attack projectile #mods #set PoisonBurstArrowCloudPlayer -#flags attack projectile area +#flags attack projectile area duration #mods #skillEnd diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index a04f33ab68..11085d1c4e 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -222,8 +222,10 @@ statMap = { ["charge_mastery_crit_chance_+%_final_with_power_charges"] = { mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), }, - ["charge_mastery_defences_+%_final_with_endurance_charges"] = { - mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + ["charge_mastery_armour_evasion_energy_shield_+%_final_with_endurance_charges"] = { + mod("Armour", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + mod("Evasion", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), + mod("EnergyShield", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }), }, }, #flags @@ -253,6 +255,15 @@ statMap = { #mods #skillEnd +#skill CoilingBoltsPlayer +#set CoilingBoltsPlayer +#flags spell projectile +#mods +#set CoilingBoltsChaosPlayer +#flags spell projectile +#mods +#skillEnd + #skill CometPlayer #set CometPlayer #flags area spell @@ -730,6 +741,9 @@ end, #set GatheringStormExplodePlayer #flags attack area melee channelRelease duration #mods +#set GatheringStormExplodeBetterPlayer +#flags attack area melee channelRelease duration +#mods #skillEnd #skill GhostDancePlayer @@ -1337,6 +1351,25 @@ statMap = { #mods #skillEnd +#from item +#minionList MistRaven +#skill SummonSpiralingConspiracyPlayer +#set SummonSpiralingConspiracyPlayer +#flags spell minion +statMap = { + ["base_skill_area_of_effect_+%"] = { + mod("MinionModifier", "LIST", { mod = mod("AreaOfEffect", "INC", nil) }), + }, +}, +#mods +#skillEnd + +#skill CommandMadFlightPlayer +#set CommandMadFlightPlayer +#flags +#mods +#skillEnd + #skill StaggeringPalmPlayer #set StaggeringPalmPlayer #flags attack area melee @@ -1442,10 +1475,13 @@ statMap = { #from item #skill VolatileDeadPlayer #set VolatileDeadPlayer -#flags spell area +#flags spell area duration +#mods +#set VolatileDeadExplosionPlayer +#flags spell area duration #mods #set VolatileDeadIgniteAuraPlayer -#flags spell area +#flags spell area duration #mods #skillEnd diff --git a/src/Export/Skills/act_str.txt b/src/Export/Skills/act_str.txt index 76da855fff..b96108598c 100644 --- a/src/Export/Skills/act_str.txt +++ b/src/Export/Skills/act_str.txt @@ -127,7 +127,7 @@ statMap = { #skill BoneshatterPlayer #set BoneshatterPlayer -#flags attack melee +#flags attack melee area #mods #set BoneshatterShockwavePlayer #flags attack melee area @@ -765,7 +765,7 @@ statMap = { #skill WolfLunarBlessingBeamAttackPlayer #set WolfLunarBlessingBeamAttackPlayer -#flags attack melee area +#flags attack area #mods #skillEnd @@ -876,8 +876,8 @@ end, #mods #skillEnd -#skill SupportCrossSlashPlayer -#set SupportCrossSlashPlayer +#skill SupportWolfPouncePlayer +#set SupportWolfPouncePlayer #mods #skillEnd @@ -888,8 +888,8 @@ end, #skillEnd #minionList WolfMinion -#skill WolfCrossSlashWolfPlayer -#set WolfCrossSlashWolfPlayer +#skill WolfPounceSummonWolfPlayer +#set WolfPounceSummonWolfPlayer #flags minion #mods #skillEnd diff --git a/src/Export/Skills/minion.txt b/src/Export/Skills/minion.txt index 239f9e907a..f6f42f2751 100644 --- a/src/Export/Skills/minion.txt +++ b/src/Export/Skills/minion.txt @@ -43,7 +43,7 @@ local skills, mod, flag, skill = ... #skill BoneshatterBruteMinion #set BoneshatterBruteMinion -#flags attack melee +#flags attack melee area #mods #set BoneshatterShockwaveBruteMinion #flags attack area @@ -333,4 +333,24 @@ statMap = { #set HandSlamSandDjinn #flags spell area #mods +#skillEnd + +#skill ApplyTangmazuSwarmAuraPlayer +#set ApplyTangmazuSwarmAuraPlayer +#flags spell area +statMap = { + ["flock_damage_over_time_+%_final_per_tangmazu_raven_in_owners_flock"] = { + mod("Damage", "MORE", nil, ModFlag.Dot, 0, { type = "Multiplier", var = "MistRavenCount", actor = "parent" }), + }, + ["flock_area_of_effect_+%_final_per_tangmazu_raven_in_owners_flock"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "MistRavenCount", actor = "parent" }), + }, +}, +#mods +#skillEnd + +#skill TangmazuMadFlightMinion +#set TangmazuMadFlightMinion +#flags attack area duration +#mods #skillEnd \ No newline at end of file diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 8a3228f914..fcae5dc63f 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -8,7 +8,7 @@ local skills, mod, flag, skill = ... #from tree #skill AcidicConcoctionPlayer #set AcidicConcoctionPlayer -#flags attack projectile unarmed area +#flags attack projectile area #mods #set AcidicConcoctionPoisonBurstPlayer #flags attack area @@ -39,7 +39,7 @@ statMap = { ["minion_1%_damage_+%_per_X_player_strength"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), div = 3, }, @@ -47,13 +47,21 @@ statMap = { #mods #skillEnd -#from tree -#skill BleedingConcoctionPlayer -#set BleedingConcoctionPlayer -#flags attack projectile unarmed area +#skill AnimusExchangePlayer +#set AnimusExchangePlayer +#flags #mods #skillEnd +#skill MetaAnimusSplintersPlayer +#set MetaAnimusSplintersPlayer +#flags +#mods +#skillEnd + +#skill SupportAnimusSplintersPlayer +#skillEnd + #from tree #skill ApocalypsePlayer #set ApocalypsePlayer @@ -85,6 +93,68 @@ statMap = { #mods #skillEnd +#skill ArbitersReachWardPlayer +#set ArbitersReachPlayer +#mods +#skillEnd + +#from tree +#skill ArchonOfChayulaPlayer +#set ArchonOfChayulaPlayer +#flags +#mods +#skillEnd + +#from tree +#skill ArchonOfChayulaTornadoPlayer +#set ArchonOfChayulaTornadoPlayer +#flags attack duration area +#mods +#skillEnd + +#from item +#skill AzmerianSwarmPlayer +#set AzmerianSwarmPlayer +#flags +#mods +#skillEnd + +#from item +#skill SummonAzmerianWolfPlayer +#set SummonAzmerianWolfPlayer +#flags +#mods +#skillEnd + +#from item +#skill CommandPackleaderPlayer +#set CommandPackleaderPlayer +#flags +#mods +#skillEnd + +#skill BitterDeadPlayer +#set BitterDeadPlayer +#flags +#mods +#set BitterDeadExplosionPlayer +#flags +#mods +#set BitterDeadChillAuraPlayer +#flags +#mods +#set BitterDeadRuneAuraPlayer +#flags +#mods +#skillEnd + +#from tree +#skill BleedingConcoctionPlayer +#set BleedingConcoctionPlayer +#flags attack projectile area +#mods +#skillEnd + #from tree #skill BloodBoilPlayer #set BloodBoilPlayer @@ -99,10 +169,15 @@ statMap = { #mods #skillEnd +#skill SupportBreachlordsAmalgam +#set SupportBreachlordsAmalgam +#mods +#skillEnd + #from item #skill ExplodingPoisonToadPlayer #set ExplodingPoisonToadPlayer -#flags area attack +#flags area nonWeaponAttack #mods #skillEnd @@ -132,6 +207,20 @@ statMap = { #mods #skillEnd +#skill SupportCathasBrilliance +#set SupportCathasBrilliance +#mods +#skillEnd + +#skill ConductiveRunesPlayer +#set ConductiveRunesPlayer +#flags attack duration +#mods +#set ConductiveRunesExplosionPlayer +#flags attack +#mods +#skillEnd + #from item #skill MeleeCrossbowPlayer #set MeleeCrossbowPlayer @@ -146,6 +235,21 @@ statMap = { #mods #skillEnd +#from item +#skill CrushingFearPlayer +#set CrushingFearPlayer +#flags attack area melee +#mods +#set CrushingFearNovaPlayer +#flags attack area melee +#mods +#skillEnd + +#skill SupportConcussiveRunesPlayer +#set SupportConcussiveRunesPlayer +#mods +#skillEnd + #from tree #skill DemonFormPlayer #set DemonFormPlayer @@ -165,6 +269,16 @@ statMap = { #mods #skillEnd +#skill DetonateLivingPlayer +#set DetonateLivingPlayer +#flags spell +#mods +#set DetonateLivingExplodePlayer +#flags area hit +#baseMod skill("explodeCorpse", true) +#mods +#skillEnd + #from tree #skill ElementalExpressionTriggeredPlayer #set ElementalExpressionTriggeredPlayer @@ -241,10 +355,45 @@ statMap = { #mods #skillEnd +#skill SupportEshsProwess +#set SupportEshsProwess +#mods +#skillEnd + +#skill EternalMarchPlayer +#set EternalMarchPlayer +#flags +#mods +#skillEnd + #from tree #skill ExplosiveConcoctionPlayer #set ExplosiveConcoctionPlayer -#flags attack projectile duration unarmed area +#flags attack projectile duration area +#mods +#skillEnd + +#skill ExplosiveTransmutationPlayer +#set ExplosiveTransmutationPlayer +#flags +#mods +#skillEnd + +#skill TriggeredExplosiveTransmutationExplosionPlayer +#set ExplosiveTransmutationPhysicalPlayer +#flags spell area +#mods +#set ExplosiveTransmutationColdPlayer +#flags spell area +#mods +#set ExplosiveTransmutationFirePlayer +#flags spell area +#mods +#set ExplosiveTransmutationLightningPlayer +#flags spell area +#mods +#set ExplosiveTransmutationChaosPlayer +#flags spell area #mods #skillEnd @@ -262,10 +411,42 @@ statMap = { #mods #skillEnd +#skill SupportFistOfKalguurPlayer +#set SupportFistOfKalguurPlayer +#mods +#skillEnd + +#skill TriggeredFistOfKalguurPlayer +#set TriggeredFistOfKalguurPlayer +#flags +#mods +#skillEnd + +#skill FragmentsOfThePastPlayer +#set FragmentsOfThePastPlayer +#flags attack duration +#mods +#skillEnd + +#skill FragmentsOfThePastFragmentPlayer +#set FragmentsOfThePastFragmentPlayer +#flags attack area projectile +#mods +#skillEnd + +#skill FrostflameNovaPlayer +#set FrostflameNovaPlayer +#flags spell +#mods +#set FrostflameNovaColdHitPlayer +#flags spell +#mods +#skillEnd + #from tree #skill FulminatingConcoctionPlayer #set FulminatingConcoctionPlayer -#flags attack projectile duration unarmed area +#flags attack projectile duration area #mods #skillEnd @@ -276,6 +457,76 @@ statMap = { #mods #skillEnd +#from item +#skill MeleeGrenadeLauncherPlayer +#set MeleeGrenadeLauncherPlayer +#flags attack area projectile +#mods +#skillEnd + +#skill GrimPillarsPlayer +#set GrimPillarsPlayer +#flags spell area duration +#mods +#set GrimPillarsExplodePlayer +#flags spell area duration +#mods +#skillEnd + +#skill SupportHerDeclarationPlayer +#set SupportHerDeclarationPlayer +#mods +#skillEnd + +#skill SupportHealingRunesPlayer +#set SupportHealingRunesPlayer +#mods +#skillEnd + +#from tree +#skill HollowFocusPlayer +#set HollowFocusPlayer +#flags duration +#mods +#set HollowFocusNovaPlayer +#flags attack area +#mods +#skillEnd + +#from tree +#skill MetaHollowFormPlayer +#set MetaHollowFormPlayer +#flags +#mods +#skillEnd + +#from tree +#skill SupportHollowFormPlayer +#set SupportHollowFormPlayer +statMap = { + ["mantra_of_illusions_triggered_skill_attack_speed_+%_final"] = { + mod("Damage", "MORE", nil), + }, + ["mantra_of_illusions_triggered_skill_damage_+%_final"] = { + mod("Speed", "MORE", nil, ModFlag.Attack), + }, +}, +#mods +#skillEnd + +#from tree +#skill HollowResonancePlayer +#set HollowResonancePlayer +#flags attack area +#mods +#skillEnd + +#skill HollowShellPlayer +#set HollowShellPlayer +#flags +#mods +#skillEnd + #from tree #skill InevitableAgonyPlayer #set InevitableAgonyPlayer @@ -321,6 +572,12 @@ statMap = { #mods #skillEnd +#skill LeylinesPlayer +#set LeylinesPlayer +#flags +#mods +#skillEnd + #from tree #skill LifeRemnantsPlayer #set LifeRemnantsPlayer @@ -362,7 +619,7 @@ statMap = { ["minion_1%_damage_+%_per_X_player_strength"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 3 }) }), div = 3, }, @@ -384,6 +641,67 @@ statMap = { #mods #skillEnd +#skill SupportMedvedsFelling +#set SupportMedvedsFelling +#mods +#skillEnd + +#from item +#skill MidnightStarPlayer +#set MidnightStarPlayer +#flags +#mods +#set MidnightStarIceCrystalDetonate +#flags +#mods +#skillEnd + +#from tree +#skill MetaMirageDeadeyePlayer +#set MetaMirageDeadeyePlayer +#flags +#mods +#skillEnd + +#from tree +#skill SupportMirageDeadeyePlayer +#set SupportMirageDeadeyePlayer +statMap = { + ["support_lingering_mirage_damage_+%_final"] = { + mod("Damage", "MORE", nil), + }, +}, +#mods +#skillEnd + +#from tree +#skill MirageDeadeyeSpawnPlayer +#set MirageDeadeyeSpawnPlayer +#flags +#mods +#skillEnd + +#from item +#skill SummonMistRavenPlayer +#set SummonMistRavenPlayer +#flags +#mods +#skillEnd + +#from item +#skill CommandMistRavenPlayer +#set CommandMistRavenPlayer +#flags +#mods +#skillEnd + +#from item +#skill TriggeredMoltenShowerPlayer +#set TriggeredMoltenShowerPlayer +#flags attack area projectile +#mods +#skillEnd + #from tree #skill MomentOfVulnerabilityPlayer #set MomentOfVulnerabilityPlayer @@ -391,6 +709,31 @@ statMap = { #mods #skillEnd +#skill SupportMorrigansInsight +grantsThornsDamage = true, +#set SupportMorrigansRefuge +statMap = { + ["support_morrigans_refuge_damage_+%_final_vs_frozen_enemies"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), + }, +}, +#mods +#skillEnd + +#skill TriggeredMorrigansInsightPlayer +#set TriggeredMorrigansInsightPlayer +#flags duration +statMap = { + ["morrigan_ward_thorns_minimum_base_cold_damage"] = { + mod("ColdMin", "BASE", nil, ModFlag.Thorns, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Nature's Exchange"}), + }, + ["morrigan_ward_thorns_maximum_base_cold_damage"] = { + mod("ColdMax", "BASE", nil, ModFlag.Thorns, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Nature's Exchange"}), + }, +}, +#mods +#skillEnd + #from tree #minionList WaterDjinn #skill SummonWaterDjinnPlayer @@ -406,10 +749,20 @@ statMap = { #mods #skillEnd +#skill SupportOlrothsConvictionPlayer +#set SupportOlrothsConvictionPlayer +#mods +#skillEnd + +#skill SupportOlrothsHubrisPlayer +#set SupportOlrothsHubrisPlayer +#mods +#skillEnd + #from tree #skill ParryPlayer #set ParryPlayer -#flags attack melee duration shieldAttack +#flags attack melee duration shieldAttack area statMap = { ["base_parry_buff_damage_taken_+%_final_to_apply"] = { mod("DamageTaken", "MORE", nil, ModFlag.Attack, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Parry" }, { type = "Condition", var = "ParryActive" }), @@ -441,6 +794,24 @@ statMap = { #mods #skillEnd +#skill PoweredByVerisiumPlayer +#set PoweredByVerisiumPlayer +#flags +#mods +#skillEnd + +#from tree +#skill PrimalBountyPlayer +#set PrimalBountyPlayer +#flags +#mods +#skillEnd + +#skill SupportPrototypeSeventeenPlayer +#set SupportPrototypeSeventeenPlayer +#mods +#skillEnd + #noGem #skill MeleeUnarmedPlayer #set MeleeUnarmedPlayer @@ -455,6 +826,18 @@ statMap = { #mods #skillEnd +#skill RainOfBladesPlayer +#set RainOfBladesPlayer +#flags +#mods +#skillEnd + +#skill RainOfBladesTriggeredPlayer +#set RainOfBladesTriggeredPlayer +#flags attack area +#mods +#skillEnd + #from item #skill ShieldBlockPlayer #set ShieldBlockPlayer @@ -462,6 +845,18 @@ statMap = { #mods #skillEnd +#skill RefutationPlayer +#set RefutationPlayer +#flags +#mods +#skillEnd + +#skill MetaRemnantsOfKalguurPlayer +#set MetaRemnantsOfKalguurPlayer +#flags +#mods +#skillEnd + #skill WyvernRendPlayer #set WyvernRendPlayer #flags attack area melee @@ -471,6 +866,35 @@ statMap = { #mods #skillEnd +#skill CurseOfRepulsionPlayer +#set CurseOfRepulsionPlayer +#flags +#mods +#skillEnd + +#skill CurseOfRepulsionShockwavePlayer +#set CurseOfRepulsionShockwavePlayer +#flags nonWeaponAttack area +#mods +#skillEnd + +#from item +#skill RighteousDescentPlayer +#set RighteousDescentPlayer +#flags attack area +#mods +#set RighteousDescentPlayerBoosted +#flags attack area +#mods +#skillEnd + +#from item +#skill SacredGroundPlayer +#set SacredGroundPlayer +#flags +#mods +#skillEnd + #from tree #skill RitualSacrificePlayer #set RitualSacrificePlayer @@ -478,6 +902,33 @@ statMap = { #mods #skillEnd +#skill SupportRuneforgedBladesPlayer +#set SupportRuneforgedBladesPlayer +#mods +#skillEnd + +#skill TriggeredRuneforgedBladesPlayer +#set TriggeredRuneforgedBladesPlayer +#flags +#mods +#skillEnd + +#skill SupportRunicExtractionPlayer +#set SupportRunicExtractionPlayer +#mods +#skillEnd + +#skill SupportRunicInfusionPlayer +#set SupportRunicInfusionPlayer +#mods +#skillEnd + +#skill RunicReprievePlayer +#set RunicReprievePlayer +#flags +#mods +#skillEnd + #from tree #minionList FireDjinn #skill SummonFireDjinnPlayer @@ -493,10 +944,20 @@ statMap = { #mods #skillEnd +#skill SupportScouringFlamePlayer +#set SupportScouringFlamePlayer +#mods +#skillEnd + +#skill SupportSeraphsHeartPlayer +#set SupportSeraphsHeartPlayer +#mods +#skillEnd + #from tree #skill ShatteringConcoctionPlayer #set ShatteringConcoctionPlayer -#flags attack projectile duration unarmed area +#flags attack projectile duration area #mods #skillEnd @@ -520,6 +981,29 @@ statMap = { #mods #skillEnd +#skill SkyfallPlayer +#set SkyfallPlayer +#flags spell area duration +#mods +#set SkyfallInfusedPlayer +#flags spell area duration +#mods +#skillEnd + +#from item +#skill NightfallSoaringMidnightPlayer +#set NightfallSoaringMidnightPlayer +#flags attack projectile shieldAttack +#mods +#skillEnd + +#from item +#skill NightfallEmbraceTheFallPlayer +#set NightfallEmbraceTheFallPlayer +#flags attack melee shieldAttack area +#mods +#skillEnd + #from tree #skill SorceryWardPlayer #set SorceryWardPlayer @@ -557,6 +1041,50 @@ statMap = { #mods #skillEnd +#from item +#skill SpiritVesselPlayer +#set SpiritVesselPlayer +#flags +#mods +#skillEnd + +#from item +#skill SpiritVesselSupport +#set SpiritVesselSupport +#mods +#skillEnd + +#from item +#skill StarbornOnslaughtPlayer +#set StarbornOnslaughtPlayer +#flags attack area duration +#mods +#set StarbornOnslaughtExplosions +#flags attack area duration +#mods +#skillEnd + +#skill SupportStyrnsFerocity +#set SupportStyrnsFerocity +statMap = { + ["support_knights_ferocity_crush_on_hit_ms"] = { + mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent" }) }), + flag("Condition:Crushed", { type = "GlobalEffect", effectType = "Debuff" }) + }, +}, +#mods +#skillEnd + +#skill SupportStyrnsMountain +#set SupportStyrnsMountain +statMap = { + ["knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Styrn's Mountain" }, { type = "SkillType", skillType = SkillType.ActiveBlock, neg = true }, { type = "Condition", var = "BlockedRecently" }), + }, +}, +#mods +#skillEnd + #from tree #minionList SummonedHellhound #skill SummonInfernalHoundPlayer @@ -582,6 +1110,19 @@ statMap = { #mods #skillEnd +#skill SupportTangMazusThuriblePlayer +#set SupportTangMazusThuriblePlayer +statMap = { + ["companion_evasion_rating_+_per_10_summoner_evasion_rating"] = { + mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent" }) }), + }, + ["companion_deflection_rating_+_per_10_summoner_deflection_rating"] = { + mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent" }) }), + }, +}, +#mods +#skillEnd + #from tree #skill TemperWeaponPlayer preDamageFunc = function(activeSkill, output) @@ -612,6 +1153,25 @@ statMap = { #mods #skillEnd +#from item +#skill TheStarsAnswerPlayer +#set TheStarsAnswerPlayer +#flags spell duration +#mods +#skillEnd + +#from item +#skill TheStarsAnswerCometPlayer +#set TheStarsAnswerCometPlayer +#flags spell area +#baseMod skill("hitTimeOverride", 0.3) +#mods +#set TheStarsAnswerEmpoweredCometPlayer +#flags spell area +#baseMod skill("hitTimeOverride", 2) +#mods +#skillEnd + #from tree #skill TimeFreezePlayer #set TimeFreezePlayer @@ -626,6 +1186,28 @@ statMap = { #mods #skillEnd +#skill SupportTrickstersShardPlayer +#set SupportTrickstersShardPlayer +#mods +#skillEnd + +#skill TriggeredFracturedSelfPlayer +#set TriggeredFracturedSelfPlayer +#flags +#mods +#skillEnd + +#skill TriskelionCascadePlayer +#set TriskelionCascadePlayer +#flags +#mods +#skillEnd + +#skill SupportTulsAvalanche +#set SupportTulsAvalanche +#mods +#skillEnd + #from tree #skill UnboundAvatarPlayer #set UnboundAvatarPlayer @@ -633,6 +1215,43 @@ statMap = { #mods #skillEnd +#skill SupportUhtredsConstellation +#set SupportUhtredsConstellation +#mods +#skillEnd + +#skill SupportUhtredsRitePlayer +#set SupportUhtredsRitePlayer +statMap = { + ["support_uhtreds_chalice_damage_+%_final_during_life_flask"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "UsingLifeFlask" }), + }, + ["base_mana_cost_efficiency_+%_during_mana_flask"] = { + mod("ManaCostEfficiency", "INC", nil, 0, 0, { type = "Condition", var = "UsingManaFlask" }), + }, +}, +#mods +#skillEnd + +#skill VerisiumManifestationPlayer +#set VerisiumManifestationPlayer +#flags +#mods +#skillEnd + +#skill TriggeredManifestRunePlayer +#set TriggeredManifestRunePlayer +#flags +#mods +#skillEnd + +#from tree +#skill VividStampedePlayer +#set VividStampedePlayer +#flags attack area duration +#mods +#skillEnd + #from tree #skill VoidIllusionPlayer #set VoidIllusionPlayer @@ -647,6 +1266,53 @@ statMap = { #mods #skillEnd +#skill VoltaicBarrierPlayer +#set VoltaicBarrierPlayer +#flags attack +#mods +#skillEnd + +#skill VoltaicBarrierTriggeredChainLightningPlayer +#set VoltaicBarrierTriggeredChainLightningPlayer +#flags attack area duration +#mods +#skillEnd + +#skill SupportVoranasSiege +#set SupportVoranasSiege +statMap = { + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"] = { + mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Isolated" }), + }, +}, +#mods +#skillEnd + +#skill SupportVruunsAftermath +#set SupportVruunsAftermath +#mods +#skillEnd + +#skill WardboundMinionsPlayer +#set WardboundMinionsPlayer +#flags +#mods +#skillEnd + +#from tree +#skill WildProtectorPlayer +#set WildProtectorPlayer +#flags +#mods +#skillEnd + +#from item +#skill AncientGiftsPlayer +#set AncientGiftsPlayer +#flags +#mods +#skillEnd + skills["EnemyExplode"] = { name = "On Kill Monster Explosion", hidden = true, @@ -780,28 +1446,6 @@ skills["EnemyExplode"] = { } } -#skill MetaMirageDeadeyePlayer -#set MetaMirageDeadeyePlayer -#flags -#mods -#skillEnd - -#skill SupportMirageDeadeyePlayer -#set SupportMirageDeadeyePlayer -statMap = { - ["support_lingering_mirage_damage_+%_final"] = { - mod("Damage", "MORE", nil), - }, -}, -#mods -#skillEnd - -#skill MirageDeadeyeSpawnPlayer -#set MirageDeadeyeSpawnPlayer -#flags -#mods -#skillEnd - skills["ThornsPlayer"] = { name = "Thorns", hidden = true, diff --git a/src/Export/Skills/spectre.txt b/src/Export/Skills/spectre.txt index 0d5f2898b2..c6c7d4547e 100644 --- a/src/Export/Skills/spectre.txt +++ b/src/Export/Skills/spectre.txt @@ -419,7 +419,7 @@ statMap = { #skill GPSPaleWalkerWave Wave #set GPSPaleWalkerWave -#flags triggerable hit +#flags triggerable hit spell #mods #skillEnd diff --git a/src/Export/Skills/sup_dex.txt b/src/Export/Skills/sup_dex.txt index 684c197421..70bfa22340 100644 --- a/src/Export/Skills/sup_dex.txt +++ b/src/Export/Skills/sup_dex.txt @@ -428,6 +428,11 @@ statMap = { #skill SupportPietysMercyPlayer #set SupportPietysMercyPlayer +statMap = { + ["support_dominus_grasp_chain_count_+%_final"] = { + mod("ChainCountMax", "MORE", nil), + }, +}, #mods #skillEnd @@ -441,6 +446,25 @@ statMap = { #mods #skillEnd +#skill SupportEonyrsThunderPlayer +#set SupportEonyrsThunderPlayer +#mods +#skillEnd + +#skill TriggeredLightningDetonateDeadPlayer +#set TriggeredLightningDetonateDeadPlayer +#flags area hit +statMap = { + ["skill_specific_stat_description_mode"] = { + skill("corpseExplosionLifeMultiplier", nil), + div = 100, + }, +}, +#baseMod skill("explodeCorpse", true) +#baseMod skill("corpseExplosionDamageType", "Lightning") +#mods +#skillEnd + #skill SupportEscalatingPoisonPlayer #set SupportEscalatingPoisonPlayer statMap = { diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index 3540b3bc75..de0b8bdb39 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -500,6 +500,12 @@ statMap = { #mods #skillEnd +#skill TriggeredDecayingHexPlayer +#set TriggeredDecayingHexPlayer +#flags +#mods +#skillEnd + #skill SupportLastingFrostPlayer #set SupportLastingFrostPlayer #mods @@ -521,8 +527,9 @@ statMap = { #mods #skillEnd -#skill SupportDoedresUndoingPlayer -#set SupportDoedresUndoingPlayer +#skill ChaosFrogExplosionPlayer +#set ChaosFrogExplosionPlayer +#flags spell area #mods #skillEnd @@ -672,17 +679,13 @@ statMap = { #skill SupportExpandPlayer #set SupportExpandPlayer statMap = { - ["support_expand_max_seals"] = { - mod("SealCount", "BASE", nil), - }, - ["skill_area_of_effect_+%_per_expand_seal"] = { + ["skill_area_of_effect_+%_per_broken_seal"] = { mod("SealRepeatPenalty", "MORE", nil), }, - ["expand_support_seal_gain_frequency_as_%_of_total_cast_time"] = { + ["support_%_of_total_cast_time_as_base_skill_seal_gain_interval"] = { mod("SealGainFrequency", "BASE", nil), }, }, -#baseMod flag("HasSeals") #baseMod flag("AreaSeal") #mods #skillEnd @@ -1053,7 +1056,7 @@ statMap = { mod("MinionModifier", "LIST", { mod = mod("Damage", "INC", nil, 0, 0, { type = "PerStat", stat = "Str", actor = "parent", div = 5 }) }), div = 5, }, - ["minion_1%_attack_speed_+%_per_X_player_dexterity"] = { + ["active_skill_minion_1%_attack_speed_+%_per_X_player_dexterity"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "PerStat", stat = "Dex", actor = "parent", div = 10 }) }), div = 10, }, @@ -1210,11 +1213,6 @@ statMap = { #mods #skillEnd -#skill SupportNadirPlayer -#set SupportNadirPlayer -#mods -#skillEnd - #skill SupportOisinsOathPlayer #set SupportOisinsOathPlayer statMap = { @@ -1431,7 +1429,6 @@ statMap = { #skill SupportUnleashPlayer #set SupportUnleashPlayer -#baseMod flag("HasSeals") #baseMod flag("DamageSeal") #mods #skillEnd @@ -1509,7 +1506,6 @@ statMap = { #skill SupportZarokhsRevoltPlayer #set SupportZarokhsRevoltPlayer -#baseMod flag("HasSeals") #baseMod flag("DamageSeal") #mods #skillEnd diff --git a/src/Export/Skills/sup_str.txt b/src/Export/Skills/sup_str.txt index 13b832bbfa..d728c7bf71 100644 --- a/src/Export/Skills/sup_str.txt +++ b/src/Export/Skills/sup_str.txt @@ -449,24 +449,23 @@ statMap = { #skill SupportCorruptingCryPlayer #set SupportCorruptingCryPlayer statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, - }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { - mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) - }, ["support_corrupting_cry_area_of_effect_+%_final"] = { mod("AreaOfEffect", "MORE", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { + ["warcry_triggers_corrupting_cry"] = { -- Display only }, }, +#mods +#skillEnd + +#skill TriggeredCorruptingCryPlayer +#set TriggeredCorruptingCryPlayer +statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { + mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) + }, +}, #baseMod skill("debuff", true) #baseMod flag("dotIsCorruptingBlood") #baseMod mod("Multiplier:CorruptingCryMaxStages", "BASE", 10) @@ -477,20 +476,19 @@ statMap = { #skill SupportCorruptingCryPlayerTwo #set SupportCorruptingCryPlayerTwo statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, + ["warcry_triggers_corrupting_cry"] = { + -- Display only }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { +}, +#mods +#skillEnd + +#skill TriggeredCorruptingCryTwoPlayer +#set TriggeredCorruptingCryTwoPlayer +statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { - -- Display only - }, }, #baseMod skill("debuff", true) #baseMod flag("dotIsCorruptingBlood") @@ -776,7 +774,7 @@ statMap = { #skill TriggeredFanTheFlamesPlayer #set TriggeredFanTheFlamesPlayer -#flags attack area +#flags nonWeaponAttack area #mods #skillEnd @@ -787,7 +785,7 @@ statMap = { #skill TriggeredFanTheFlamesPlayerTwo #set TriggeredFanTheFlamesPlayerTwo -#flags attack area +#flags nonWeaponAttack area #mods #skillEnd @@ -932,6 +930,11 @@ statMap = { #mods #skillEnd +#skill SupportHelbrymsHidePlayer +#set SupportHelbrymsHidePlayer +#mods +#skillEnd + #skill SupportHerbalismPlayer #set SupportHerbalismPlayer statMap = { @@ -1179,6 +1182,16 @@ statMap = { #mods #skillEnd +#skill SupportMinionMeleeSplashPlayer +#set SupportMinionMeleeSplashPlayer +#mods +#skillEnd + +#skill SupportMinionMeleeSplashPlayerTwo +#set SupportMinionMeleeSplashPlayerTwo +#mods +#skillEnd + #skill SupportOpeningMovePlayer #set SupportOpeningMovePlayer #mods @@ -1187,20 +1200,19 @@ statMap = { #skill SupportCorruptingCryPlayerThree #set SupportCorruptingCryPlayerThree statMap = { - ["support_corrupting_cry_corrupted_blood_base_physical_damage_per_minute_as_%_of_strength"] = { - skill("PhysicalDot", nil, { type = "PercentStat", stat = "Str", percent = 1 }), - div = 60, + ["warcry_triggers_paquates_pact"] = { + -- Display only }, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"] = { +}, +#mods +#skillEnd + +#skill TriggeredCorruptingCryThreePlayer +#set TriggeredCorruptingCryThreePlayer +statMap = { + ["add_buff_to_target_skill_number_of_corrupted_blood_debuffs_to_inflict"] = { mod("CorruptingCryStagesFromWarcry", nil, 0, KeywordFlag.Warcry) }, - ["support_corrupting_cry_corrupted_blood_duration_ms"] = { - skill("durationSecondary", nil), - div = 1000, - }, - ["support_corrupting_cry_warcry_applies_x_stacks_of_corrupted_blood"] = { - -- Display only - }, }, #baseMod skill("debuff", true) #baseMod flag("dotIsCorruptingBlood") @@ -1318,6 +1330,9 @@ statMap = { mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"] = { + mod("EvasionGainAsDeflection", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + }, }, #mods #skillEnd @@ -1330,6 +1345,9 @@ statMap = { mod("ArmourAppliesToColdDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), mod("ArmourAppliesToLightningDamageTaken", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating"}, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), }, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"] = { + mod("EvasionGainAsDeflection", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", effectName = "Refractive Plating" }, { type = "MultiplierThreshold", var = "ValourStacks", thresholdVar = "RefractionMinimumValour" }), + }, }, #mods #skillEnd @@ -1783,6 +1801,11 @@ statMap = { #mods #skillEnd +#skill SupportVruunsInevitability +#set SupportVruunsInevitability +#mods +#skillEnd + #skill SupportXophsPyrePlayer #set SupportXophsPyrePlayer #mods diff --git a/src/Export/Uniques/gloves.lua b/src/Export/Uniques/gloves.lua index 40bb6e2b77..a33f606a27 100644 --- a/src/Export/Uniques/gloves.lua +++ b/src/Export/Uniques/gloves.lua @@ -278,7 +278,7 @@ UniqueManaGainedFromEnemyDeath4 UniqueEnemiesKilledCountAsYours1 ]],[[ The Prisoner's Manacles -Verisium Cuffs +Kalguuran Cuffs League: Dawn of the Hunt UniqueLocalIncreasedArmourAndEnergyShield21 UniqueIncreasedLife54 diff --git a/src/Export/spec.lua b/src/Export/spec.lua index 46aaff2c2e..cd4e1b8d6d 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -1,17 +1,96 @@ return { + abyssbenchtickettypes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="UsableOnItemClasses", + refTo="ItemClasses", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MaximumItemLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MinimumModLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + } + }, abyssbosslifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Life", + refTo="", + type="Int", + width=150 + } }, abyssmonstermodreplacement={ [1]={ list=false, - name="", + name="Mod", refTo="Mods", type="Key", width=260 }, [2]={ list=true, - name="", + name="Mods", refTo="Mods", type="Key", width=300 @@ -39,13 +118,160 @@ return { }, [6]={ list=true, - name="", + name="AbyssMods", refTo="Mods", type="Key", width=556 } }, abyssobjects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="SpawnWeight", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MetadataFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="DaemonSpawners", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="AbyssalDepths", + refTo="WorldAreas", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } }, abyssregions={ }, @@ -54,12 +280,47 @@ return { accountquestflags={ }, achievementitemrewards={ + [1]={ + list=false, + name="AchievementItem", + refTo="AchievementItems", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Rewards", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MessagePC", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="MessageConsole", + refTo="", + type="String", + width=240 + } }, achievementitems={ [1]={ list=false, name="Id", - refTo="Achievements", + refTo="", type="String", width=240 }, @@ -128,12 +389,208 @@ return { } }, achievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="SetId", + refTo="AchievementSetsDisplay", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Objective", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="HideAchievementItems", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="MinCompletedItems", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="TwoColumnLayout", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="ShowItemCompletionsAsOne", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="SoftcoreOnly", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="HardcoreOnly", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } }, achievementsetrewards={ + [1]={ + list=false, + name="SetId", + refTo="AchievementSetsDisplay", + type="Int", + width=150 + }, + [2]={ + list=false, + name="AchievementsRequired", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Rewards", + refTo="MtxTypeGameSpecific", + type="Key", + width=300 + }, + [4]={ + list=false, + name="TotemPieceEveryNAchievements", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Message", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="NotificationIcon", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="HideoutName", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } }, achievementsets={ }, achievementsetsdisplay={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Title", + refTo="", + type="String", + width=240 + } }, actiontypes={ [1]={ @@ -180,8 +637,78 @@ return { } }, activesettings={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="LeagueInfoPanel", + refTo="LeagueInfoPanelVersions", + type="Key", + width=150 + }, + [6]={ + list=false, + name="NewLeaguePopup", + refTo="TryTheNewLeagueVersions", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Logo", + refTo="GameLogos", + type="Key", + width=150 + }, + [8]={ + list=false, + name="BackendError", + refTo="BackendErrors", + type="Key", + width=150 + } }, activeskillrequirementicons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + } }, activeskillrequirements={ [1]={ @@ -194,7 +721,7 @@ return { [2]={ list=false, name="BuffDefinition", - refTo="buffdefinitions", + refTo="BuffDefinitions", type="Key", width=300 }, @@ -244,14 +771,14 @@ return { list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [10]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=80 }, [11]={ @@ -406,7 +933,7 @@ return { [21]={ list=false, name="SkillMine", - refTo="SkillMines", + refTo="", type="Int", width=80 }, @@ -461,8 +988,8 @@ return { }, [29]={ list=false, - name="RegularVersion", - refTo="ActiveSkills", + name="ShapeShiftForm", + refTo="ShapeShiftForms", type="Key", width=150 }, @@ -535,6 +1062,13 @@ return { refTo="", type="Int", width=70 + }, + [40]={ + list=false, + name="", + refTo="", + type="String", + width=240 } }, activeskilltype={ @@ -571,7 +1105,7 @@ return { [3]={ list=false, name="String", - refTo="clientstrings", + refTo="ClientStrings", type="Key", width=250 }, @@ -581,9 +1115,135 @@ return { refTo="", type="Int", width=50 - } - }, + }, + [5]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, acts={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="UI_Title", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ActNumber", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="IsEndGame", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=true, + name="QuestFlags1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [10]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [11]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [12]={ + list=false, + name="WorldAreaMap", + refTo="WorldAreas", + type="Key", + width=150 + }, + [13]={ + list=true, + name="QuestFlags2", + refTo="QuestFlags", + type="Key", + width=300 + }, + [14]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="WorldAreaTown", + refTo="WorldAreas", + type="Key", + width=150 + } }, addbufftotargetvarieties={ [1]={ @@ -609,7 +1269,7 @@ return { }, [4]={ list=false, - name="", + name="Stat1Values", refTo="", type="Int", width=150 @@ -630,7 +1290,7 @@ return { }, [7]={ list=true, - name="", + name="Stat2Values", refTo="", type="Int", width=150 @@ -660,7 +1320,7 @@ return { additionallifescaling={ [1]={ list=false, - name="", + name="IntId", refTo="", type="Int", width=150 @@ -683,9 +1343,88 @@ return { additionallifescalingperlevel={ }, additionalmonsterpacksfromstats={ + [1]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="MonsterPacksKeys", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [4]={ + list=false, + name="AdditionalMonsterPacksStatMode", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="PackCountStatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=300 + }, + [7]={ + list=true, + name="StatsValues", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="PackSizeStatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + } }, additionalmonsterpacksstatmode={ }, + addmapstatgealallowedstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, advancedcraftingbenchcustomtags={ [1]={ list=false, @@ -747,6 +1486,62 @@ return { } }, advancedskillstutorial={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="SkillGemInfoKey1", + refTo="SkillGemInfo", + type="Key", + width=300 + }, + [3]={ + list=true, + name="SkillGemInfoKey2", + refTo="SkillGemInfo", + type="Key", + width=300 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="International_BK2File", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="SkillGemsKey", + refTo="SkillGems", + type="Key", + width=150 + }, + [7]={ + list=false, + name="China_BK2File", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="CharactersKey", + refTo="Characters", + type="Key", + width=300 + } }, aegisvariations={ [1]={ @@ -793,21 +1588,21 @@ return { }, [7]={ list=false, - name="", + name="DefinitionBuff", refTo="BuffDefinitions", type="Key", width=150 }, [8]={ list=false, - name="", + name="DefinitionDepleted", refTo="BuffDefinitions", type="Key", width=150 }, [9]={ list=false, - name="", + name="DefinitionValue", refTo="BuffDefinitions", type="Key", width=190 @@ -830,474 +1625,430 @@ return { list=true, name="", refTo="", - type="Int", + type="String", width=150 } }, afflictionbalanceperlevel={ - }, - afflictionendgameareas={ - }, - afflictionendgamewavemods={ - }, - afflictionfixedmods={ - }, - afflictionrandommodcategories={ - }, - afflictionrandomspawns={ - }, - afflictionrewardmapmods={ - }, - afflictionrewardtypes={ - }, - afflictionrewardtypevisuals={ - }, - afflictionsplitdemons={ - }, - afflictionstartdialogue={ - }, - alternatebehaviourtypes={ - }, - alternatepassiveadditions={ [1]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=260 + type="Int", + width=150 }, [2]={ list=false, - name="AlternateTreeVersionsKey", - refTo="AlternateTreeVersions", - type="Key", + name="", + refTo="", + type="Float", width=150 }, [3]={ list=false, - name="SpawnWeight", + name="", refTo="", - type="Int", - width=80 + type="Float", + width=150 }, [4]={ - list=true, - name="StatsKeys", - refTo="Stats", - type="Key", - width=200 - }, - [5]={ - list=false, - name="Stat1", - refTo="", - type="Interval", - width=70 - }, - [6]={ - list=false, - name="Stat2", - refTo="", - type="Interval", - width=70 - }, - [7]={ - list=false, - name="Stat3", - refTo="", - type="Interval", - width=70 - }, - [8]={ - list=true, - name="PassiveType", - refTo="", - type="Int", - width=70 - }, - [9]={ - list=false, - name="SpawnWeight", - refTo="", - type="Int", - width=90 - } - }, - alternatepassiveskills={ - [1]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=230 - }, - [2]={ - list=false, - name="AlternateTreeVersionsKey", - refTo="AlternateTreeVersions", - type="Key", - width=140 + type="Float", + width=150 }, - [3]={ + [5]={ list=false, - name="Name", + name="", refTo="", - type="String", + type="Float", width=150 }, - [4]={ - list=true, - name="PassiveType", - refTo="", - type="Int", - width=70 - }, - [5]={ - list=true, - name="StatsKeys", - refTo="Stats", - type="Key", - width=460 - }, [6]={ list=false, - name="Stat1", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [7]={ list=false, - name="Stat2", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [8]={ list=false, - name="Stat3", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [9]={ list=false, - name="Stat4", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [10]={ list=false, - name="Stat5", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [11]={ list=false, - name="Stat6", + name="", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, [12]={ list=false, - name="SpawnWeight", + name="", refTo="", type="Int", - width=90 + width=150 }, [13]={ list=false, - name="ConquerorIndex", + name="", refTo="", type="Int", - width=90 + width=150 }, [14]={ list=false, - name="Random", + name="", refTo="", - type="Interval", + type="Float", width=150 }, [15]={ list=false, - name="FlavourText", + name="", refTo="", - type="String", + type="Float", width=150 }, [16]={ list=false, - name="DDSIcon", + name="", refTo="", - type="String", + type="Int", width=150 }, [17]={ - list=true, - name="AchievementItemsKeys", + list=false, + name="", refTo="", - type="Key", + type="Int", width=150 }, [18]={ list=false, - name="ConquerorVersion", + name="", refTo="", type="Int", width=150 }, [19]={ list=false, - name="ConquerorSpawnWeight", + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", refTo="", type="Int", width=150 } }, - alternatequalitycurrencydecayfactors={ - }, - alternatequalitytypes={ + afflictionconstants={ [1]={ list=false, name="Id", refTo="", type="String", - width=200 + width=240 }, [2]={ list=false, - name="Description", + name="Value", refTo="", - type="String", - width=300 + type="Int", + width=150 }, [3]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=200 - }, - [4]={ list=false, name="", refTo="", type="Key", - width=230 - }, - [5]={ - list=false, - name="HASH16", - refTo="", - type="UInt16", width=150 } }, - alternateskilltargetingbehaviours={ + afflictionemotioncraftingaudio={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=270 + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 }, [2]={ - list=false, - name="", - refTo="", - type="Int", - width=60 + list=true, + name="NPCAudio1", + refTo="NPCTextAudio", + type="Key", + width=300 }, [3]={ + list=true, + name="NPCAudio2", + refTo="NPCTextAudio", + type="Key", + width=300 + } + }, + afflictionendgameareas={ + }, + afflictionendgamewavemods={ + [1]={ list=false, - name="ClientStrings", - refTo="ClientStrings", + name="ModsKey", + refTo="Mods", type="Key", - width=220 + width=150 }, - [4]={ + [2]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [5]={ + [3]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [6]={ + [4]={ list=false, name="", refTo="", type="Int", - width=50 - }, - [7]={ - list=true, - name="", - refTo="", - type="Int", - width=50 + width=150 } }, - alternatetreeart={ - }, - alternatetreepassivesizes={ - }, - alternatetreeversions={ + afflictionfixedmods={ [1]={ list=false, - name="ConquerorType", + name="Rarity", refTo="", - type="String", + type="Int", width=150 }, [2]={ list=false, - name="SmallAttributeReplaced", + name="", refTo="", - type="Bool", + type="Key", width=150 }, [3]={ list=false, - name="SmallNormalPassiveReplaced ", + name="Mod", + refTo="Mods", + type="Key", + width=150 + } + }, + afflictionquestfogbankvalues={ + [1]={ + list=false, + name="", refTo="", - type="Bool", + type="Key", width=150 }, + [2]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, [4]={ - list=false, - name="SmallAttributePassiveSkillAdditions", + list=true, + name="", refTo="", - type="Interval", - width=170 + type="Int", + width=300 }, [5]={ list=false, - name="NotableAdditions", + name="", refTo="", - type="Interval", + type="Key", width=150 }, [6]={ list=false, - name="SmallNormalPassiveSkillAdditions", + name="", refTo="", - type="Interval", - width=170 + type="Int", + width=150 }, [7]={ - list=false, - name="NotableReplacementSpawnWeight ", + list=true, + name="", refTo="", - type="Int", - width=200 + type="Key", + width=300 } }, - ancestraltrialunits={ - }, - animatedobjectflags={ - }, - animateweaponuniques={ + afflictionrandommodcategories={ [1]={ list=false, - name="Name", + name="Id", refTo="", type="String", - width=200 + width=240 }, [2]={ list=false, - name="VisualIdentity", - refTo="ItemVisualIdentity", - type="Key", - width=200 - }, - [3]={ + name="", + refTo="", + type="Bool", + width=150 + } + }, + afflictionrandomspawns={ + }, + afflictionrewardmapmods={ + [1]={ list=false, - name="ItemClass", - refTo="ItemClasses", + name="ModsKey", + refTo="Mods", type="Key", - width=200 + width=150 }, - [4]={ + [2]={ list=false, - name="MinLevelReq", + name="", refTo="", - type="Int", + type="Bool", width=150 } }, - animation={ + afflictionrewardtypes={ + }, + afflictionrewardtypevisuals={ [1]={ + list=false, + name="AfflictionRewardTypes", + refTo="AfflictionRewardTypes", + type="Enum", + width=150 + }, + [2]={ list=false, name="Id", refTo="", type="String", - width=150 - } - }, - applydamagefunctions={ - [1]={ + width=240 + }, + [3]={ list=false, - name="", + name="Name", refTo="", type="String", - width=250 + width=240 } }, - archetyperewards={ - }, - archetypes={ + afflictionspecialeventvisuals={ [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 - } - }, - architectlifescalingperlevel={ - }, - archnemesismetarewards={ - [1]={ + width=240 + }, + [2]={ list=false, - name="", + name="Icon", refTo="", type="String", - width=220 + width=240 + }, + [3]={ + list=false, + name="IconBright", + refTo="", + type="String", + width=240 } }, - archnemesismodcomboachievements={ + afflictionsplitdemons={ [1]={ list=false, - name="", + name="Id", refTo="", type="Int", width=150 }, [2]={ list=false, - name="", - refTo="", - type="Int", + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", width=150 }, [3]={ list=false, + name="AfflictionRandomModCategoriesKey", + refTo="AfflictionRandomModCategories", + type="Key", + width=150 + } + }, + afflictionstartdialogue={ + [1]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=true, + name="NPCAudio", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [3]={ + list=true, name="", refTo="", type="Int", - width=150 + width=300 }, [4]={ list=false, @@ -1305,29 +2056,52 @@ return { refTo="", type="Int", width=150 - }, - [5]={ + } + }, + afflictionstartdialogueoverrides={ + [1]={ list=false, - name="", + name="Id", refTo="", type="Int", width=150 }, - [6]={ + [2]={ list=false, name="", refTo="", type="Int", width=150 }, - [7]={ + [3]={ list=false, name="", refTo="", type="Int", width=150 }, - [8]={ + [4]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [5]={ + list=false, + name="QuestFlagHeard", + refTo="QuestFlags", + type="Key", + width=150 + }, + [6]={ + list=true, + name="NPCAudio", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [7]={ list=false, name="", refTo="", @@ -1335,1140 +2109,878 @@ return { width=150 } }, - archnemesismods={ + alternatebehaviourtypes={ + }, + alternatecharacterskin={ [1]={ list=false, name="Id", - refTo="Mods", - type="Key", - width=310 + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="Name", + name="", refTo="", type="String", - width=150 + width=240 }, [3]={ list=false, - name="Visual", - refTo="ArchnemesisModVisuals", - type="Key", - width=150 + name="", + refTo="", + type="String", + width=240 }, [4]={ - list=true, - name="TextStyles", + list=false, + name="", refTo="", type="String", - width=150 + width=240 }, [5]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [6]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [7]={ - list=false, - name="", - refTo="", - type="Bool", - width=70 - } - }, - archnemesismodvisuals={ - [1]={ list=false, name="", refTo="", type="String", - width=150 - } - }, - archnemesisrecipes={ - [1]={ - list=false, - name="", - refTo="", - type="Int", - width=150 + width=240 }, - [2]={ + [8]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [3]={ + [9]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [4]={ + [10]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [5]={ + [11]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [6]={ + [12]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [7]={ + [13]={ list=false, name="", refTo="", - type="Int", + type="String", + width=240 + } + }, + alternatecharacterskinmaterialreplacementshape={ + [1]={ + list=false, + name="Character", + refTo="Characters", + type="Key", width=150 }, - [8]={ + [2]={ list=false, name="", refTo="", type="Int", width=150 }, - [9]={ - list=false, - name="", + [3]={ + list=true, + name="MeshList", refTo="", - type="Int", - width=150 + type="String", + width=300 } }, - areadifficultystats={ - }, - areainfluencedoodads={ - }, - areastatsperdifficulty={ - }, - areatransitionanimations={ - }, - areatransitionanimationtypes={ - }, - areatransitioninfo={ - }, - areatype={ - }, - armourclasses={ - }, - armoursurfacetypes={ - }, - armourtypes={ + alternatepassiveadditions={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=400 + name="Id", + refTo="", + type="String", + width=260 }, [2]={ list=false, - name="Armour", - refTo="", - type="Int", + name="AlternateTreeVersionsKey", + refTo="AlternateTreeVersions", + type="Key", width=150 }, [3]={ list=false, - name="Evasion", + name="SpawnWeight", refTo="", type="Int", - width=150 + width=80 }, [4]={ - list=false, - name="EnergyShield", - refTo="", - type="Int", - width=150 + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=200 }, [5]={ list=false, - name="MovementPenalty", + name="Stat1", refTo="", - type="Int", - width=150 + type="Interval", + width=70 }, [6]={ list=false, - name="", + name="Stat2", refTo="", - type="Int", - width=150 + type="Interval", + width=70 }, [7]={ list=false, - name="", + name="Stat3", + refTo="", + type="Interval", + width=70 + }, + [8]={ + list=true, + name="PassiveType", refTo="", type="Int", - width=150 + width=70 + }, + [9]={ + list=false, + name="SpawnWeight", + refTo="", + type="Int", + width=90 } }, - arrowspearoverride={ - }, - arrowstatreference={ - }, - ascendancy={ + alternatepassiveskills={ [1]={ list=false, name="Id", refTo="", type="String", - width=90 + width=230 }, [2]={ list=false, - name="Index", - refTo="", - type="Int", - width=50 + name="AlternateTreeVersionsKey", + refTo="AlternateTreeVersions", + type="Key", + width=140 }, [3]={ list=false, - name="Class", - refTo="Characters", - type="Key", - width=250 + name="Name", + refTo="", + type="String", + width=150 }, [4]={ - list=false, - name="FlavourRect", + list=true, + name="PassiveType", refTo="", - type="String", - width=120 + type="Int", + width=70 }, [5]={ - list=false, - name="FlavourColour", - refTo="", - type="String", - width=100 + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=460 }, [6]={ list=false, - name="Name", + name="Stat1", refTo="", - type="String", - width=90 + type="Interval", + width=70 }, [7]={ list=false, - name="Flavour", + name="Stat2", refTo="", - type="String", - width=150 + type="Interval", + width=70 }, [8]={ list=false, - name="Audio", + name="Stat3", refTo="", - type="String", - width=480 + type="Interval", + width=70 }, [9]={ list=false, - name="PassiveTreeImage", + name="Stat4", refTo="", - type="String", - width=150 + type="Interval", + width=70 }, [10]={ list=false, - name="distanceTree", + name="Stat5", refTo="", - type="Int", - width=180 + type="Interval", + width=70 }, [11]={ list=false, - name="TreeRegionAngle", + name="Stat6", refTo="", - type="Int", - width=100 + type="Interval", + width=70 }, [12]={ list=false, - name="BackgroundImage", + name="SpawnWeight", refTo="", type="Int", - width=150 + width=90 }, [13]={ list=false, - name="", + name="ConquerorIndex", refTo="", type="Int", - width=150 + width=90 }, [14]={ list=false, - name="isDisabled", + name="Random", refTo="", - type="Bool", + type="Interval", width=150 }, [15]={ list=false, - name="Replace", - refTo="Ascendancy", - type="ShortKey", - width=70 + name="FlavourText", + refTo="", + type="String", + width=150 }, [16]={ list=false, - name="UIArt", - refTo="PassiveSkillTreeUIArt", - type="Key", - width=160 + name="DDSIcon", + refTo="", + type="String", + width=150 }, [17]={ - list=false, - name="SelectSound", - refTo="SoundEffects", + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", type="Key", - width=120 + width=150 }, [18]={ list=false, - name="ConfirmDownSound", - refTo="SoundEffects", - type="Key", - width=170 + name="ConquerorVersion", + refTo="", + type="Int", + width=150 }, [19]={ list=false, - name="ConfirmUpSound", - refTo="SoundEffects", - type="Key", - width=170 + name="ConquerorSpawnWeight", + refTo="", + type="Int", + width=150 } }, - ascendancypassiveskilloverrides={ + alternatequalitycurrencydecayfactors={ + }, + alternatequalitytypes={ [1]={ list=false, name="Id", - refTo="Ascendancy", - type="Key", - width=150 + refTo="", + type="String", + width=200 }, [2]={ list=false, - name="OriginalNode", - refTo="PassiveSkills", - type="Key", - width=210 + name="Description", + refTo="", + type="String", + width=300 }, [3]={ list=false, - name="SwitchedNode", - refTo="PassiveSkills", + name="BaseItemType", + refTo="BaseItemTypes", type="Key", - width=240 - } - }, - atlasawakeningstats={ - }, - atlasbasetypedrops={ - }, - atlasentities={ - }, - atlasexilebossarenas={ - }, - atlasexileinfluence={ - }, - atlasexileinfluencedata={ - }, - atlasexileinfluenceoutcomes={ - }, - atlasexileinfluenceoutcometypes={ - }, - atlasexileinfluencepacks={ - }, - atlasexileinfluencesets={ - }, - atlasexileregionquestflags={ - }, - atlasexiles={ - }, - atlasfavouredmapslots={ - }, - atlasfog={ - }, - atlasinfluencedata={ - }, - atlasinfluenceoutcomes={ - }, - atlasinfluenceoutcometypes={ - }, - atlasinfluencesets={ - }, - atlasmemoryline={ - }, - atlasmods={ - [1]={ + width=200 + }, + [4]={ list=false, - name="Mod", - refTo="Mods", + name="ModEffectStat", + refTo="ModEffectStats", type="Key", - width=320 + width=230 }, - [2]={ + [5]={ list=false, - name="Tier", + name="HASH16", refTo="", - type="Int", - width=70 + type="UInt16", + width=150 + }, + [6]={ + list=true, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=300 } }, - atlasmodtiers={ - }, - atlasnode={ - }, - atlasnodedefinition={ - }, - atlaspassiveskillsubtrees={ - }, - atlaspassiveskilltreegrouptype={ - }, - atlaspoem={ - }, - atlaspositions={ - }, - atlasprimordialaltarchoices={ - }, - atlasprimordialaltarchoicetypes={ - }, - atlasprimordialbosses={ - }, - atlasprimordialbossinfluence={ - }, - atlasprimordialbossoptions={ - }, - atlasquadrant={ - }, - atlasregions={ - }, - atlasregionupgraderegions={ - }, - atlasregionupgradesinventorylayout={ - }, - atlassector={ - }, - atlasskillgraphs={ - }, - atlasupgradesinventorylayout={ - }, - attackskilldamagescalingtype={ + alternateskilltargetingbehaviours={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 - } - }, - attackskilldamagescalingvalues={ - [1]={ - list=false, - name="Id", - refTo="AttackSkillDamageScalingType", - type="Key", - width=90 + width=270 }, [2]={ list=false, - name="Level", + name="", refTo="", type="Int", - width=70 + width=60 }, [3]={ list=false, - name="Multiplier", - refTo="", - type="Float", - width=150 - } - }, - attributerequirements={ - [1]={ - list=false, - name="BaseType", - refTo="BaseItemTypes", + name="ClientStrings", + refTo="ClientStrings", type="Key", - width=400 + width=220 }, - [2]={ + [4]={ list=false, - name="ReqStr", + name="", refTo="", type="Int", - width=100 + width=50 }, - [3]={ + [5]={ list=false, - name="ReqInt", + name="", refTo="", type="Int", - width=100 + width=50 }, - [4]={ - list=false, - name="ReqDex", - refTo="", - type="Int", - width=100 - } - }, - attributes={ - }, - awarddisplay={ - }, - azmerifeaturerooms={ - }, - azmerilifescalingperlevel={ - [1]={ + [6]={ list=false, name="", refTo="", type="Int", - width=150 + width=50 }, - [2]={ - list=false, + [7]={ + list=true, name="", refTo="", type="Int", - width=150 + width=50 } }, - azmeriwoodsdusttype={ + alternatetreeart={ [1]={ list=false, - name="AzmeriLeader", - refTo="", - type="String", + name="TreeVersion", + refTo="AlternateTreeVersions", + type="Key", width=150 }, [2]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", + name="UIArt", + refTo="PassiveSkillTreeUIArt", type="Key", width=150 }, [3]={ list=false, - name="Name", - refTo="", - type="String", + name="MasteryArt", + refTo="PassiveSkillTreeMasteryArt", + type="Key", width=150 }, [4]={ list=false, - name="UISymbol", - refTo="", - type="String", - width=150 - }, - [5]={ - list=false, - name="", - refTo="", + name="JewelRadiiArt", + refTo="PassiveJewelRadiiArt", type="Key", width=150 - }, - [6]={ + } + }, + alternatetreeextraadditionsfromjewelstats={ + [1]={ list=false, - name="", - refTo="", + name="Id", + refTo="Stats", type="Key", width=150 }, - [7]={ + [2]={ list=false, name="Stat", refTo="Stats", type="Key", - width=250 - }, - [8]={ - list=false, - name="UiArt", - refTo="", - type="String", width=150 }, - [9]={ + [3]={ list=false, - name="", + name="NodeType", refTo="", type="Int", - width=50 + width=150 }, - [10]={ + [4]={ list=false, - name="", + name="JewelType", + refTo="AlternateTreeVersions", + type="Key", + width=150 + } + }, + alternatetreeextrapassiveoverridesfromjewelstats={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [11]={ + [2]={ list=false, - name="", - refTo="", + name="RadiusArt", + refTo="PassiveJewelRadiiArt", type="Key", width=150 }, - [12]={ + [3]={ list=false, name="", refTo="", - type="String", - width=190 + type="Int", + width=150 + }, + [4]={ + list=false, + name="PassiveSkill", + refTo="PassiveSkills", + type="Key", + width=150 } }, - backenderrors={ + alternatetreepassivesizes={ }, - ballisticbouncebehaviour={ + alternatetreeversions={ [1]={ list=false, - name="Id", + name="ConquerorType", refTo="", type="String", - width=220 + width=150 }, [2]={ list=false, - name="", + name="SmallAttributeReplaced", refTo="", - type="Float", + type="Bool", width=150 }, [3]={ list=false, - name="", + name="SmallNormalPassiveReplaced ", refTo="", - type="Float", + type="Bool", width=150 }, [4]={ list=false, - name="", + name="SmallAttributePassiveSkillAdditions", refTo="", - type="Int", - width=150 + type="Interval", + width=170 }, [5]={ list=false, - name="", + name="NotableAdditions", refTo="", - type="Bool", + type="Interval", width=150 }, [6]={ list=false, - name="", + name="SmallNormalPassiveSkillAdditions", refTo="", - type="Int", - width=150 + type="Interval", + width=170 }, [7]={ list=false, - name="", + name="NotableReplacementSpawnWeight ", refTo="", - type="Bool", - width=150 + type="Int", + width=200 } }, - ballisticbounceoverride={ + ancestraltrialunits={ [1]={ list=false, name="Id", refTo="", type="String", - width=270 + width=240 }, [2]={ list=false, - name="", + name="Name", refTo="", - type="Float", - width=150 + type="String", + width=240 }, [3]={ list=false, - name="", - refTo="", - type="Float", + name="Tribe", + refTo="AncestralTrialTribes", + type="Key", width=150 }, [4]={ list=false, - name="", + name="Image", refTo="", - type="Float", - width=150 + type="String", + width=240 }, [5]={ list=false, - name="", + name="TotemImage", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, [6]={ list=false, - name="", + name="HASH16", refTo="", type="Int", - width=80 + width=150 }, [7]={ list=false, name="", refTo="", - type="Float", + type="Int", width=150 }, [8]={ list=false, - name="", + name="Description", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, [9]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [10]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [11]={ + list=false, + name="Position", + refTo="AncestralTrialUnitPositions", + type="Key", + width=150 + } + }, + animatedobjectflags={ + [1]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [2]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [12]={ + [3]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 } }, - baseitemtypes={ + animateweaponuniques={ [1]={ list=false, - name="Id", + name="Name", refTo="", type="String", - width=560 + width=200 }, [2]={ list=false, - name="ItemClass", - refTo="ItemClasses", + name="VisualIdentity", + refTo="ItemVisualIdentity", type="Key", - width=130 + width=200 }, [3]={ list=false, - name="Width", - refTo="", - type="Int", - width=40 + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=200 }, [4]={ list=false, - name="Height", + name="MinLevelReq", refTo="", type="Int", - width=40 - }, - [5]={ + width=150 + } + }, + animation={ + [1]={ list=false, - name="Name", + name="Id", refTo="", type="String", - width=160 + width=150 }, - [6]={ + [2]={ list=false, - name="BaseType", + name="", refTo="", - type="String", - width=290 + type="Bool", + width=150 }, - [7]={ + [3]={ list=false, - name="DropLevel", + name="", refTo="", - type="Int", - width=60 + type="Bool", + width=150 }, - [8]={ + [4]={ list=false, - name="FlavourTextKey", - refTo="FlavourText", + name="Mainhand_AnimationKey", + refTo="Animation", type="Key", - width=100 + width=150 }, - [9]={ - list=true, - name="ImplicitMods", - refTo="Mods", + [5]={ + list=false, + name="Offhand_AnimationKey", + refTo="Animation", type="Key", - width=470 + width=150 }, - [10]={ + [6]={ list=false, name="", refTo="", - type="Int", - width=30 + type="Bool", + width=150 }, - [11]={ + [7]={ list=false, - name="SoundEffect", - refTo="SoundEffects", + name="Stat", + refTo="Stats", type="Key", - width=80 + width=150 }, - [12]={ - list=true, - name="Tags", - refTo="Tags", + [8]={ + list=false, + name="AnimationStart", + refTo="Animation", type="Key", width=150 }, - [13]={ + [9]={ list=false, - name="ModDomain", - refTo="ModDomains", - type="Enum", - width=80 + name="", + refTo="", + type="Bool", + width=150 }, - [14]={ + [10]={ list=false, - name="ItemVisualIdentityKey", - refTo="ItemVisualIdentity", + name="AnimationEnd", + refTo="Animation", type="Key", width=150 }, - [15]={ - list=false, - name="HASH32", - refTo="", - type="UInt", - width=100 - }, - [16]={ - list=true, - name="VendorRecipeAchievement", - refTo="AchievementItems", - type="Key", - width=180 - }, - [17]={ - list=false, - name="Inflection", - refTo="", - type="String", - width=80 - }, - [18]={ - list=false, - name="EquipAchievement", - refTo="AchievementItems", - type="Key", - width=150 - }, - [19]={ - list=false, - name="IsCorrupted", - refTo="", - type="Bool", - width=90 - }, - [20]={ - list=true, - name="IdentifyAchievement", - refTo="AchievementItems", - type="Key", - width=150 - }, - [21]={ + [11]={ list=true, - name="IdentifyMagicAchievement", - refTo="AchievementItems", - type="Key", - width=150 - }, - [22]={ - list=false, - name="FragmentBaseItemTypesKey", - refTo="BaseItemTypes", - type="ShortKey", - width=150 - }, - [23]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [24]={ - list=false, name="", - refTo="", + refTo="Animation", type="Key", - width=100 + width=300 }, - [25]={ + [12]={ list=false, name="", refTo="", - type="Key", - width=100 + type="Bool", + width=150 }, - [26]={ + [13]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [27]={ + [14]={ list=false, name="", refTo="", type="Bool", - width=50 - }, - [28]={ - list=true, - name="Achievement", - refTo="AchievementItems", - type="Key", - width=280 + width=150 }, - [29]={ + [15]={ list=false, name="", - refTo="", + refTo="Animation", type="Key", width=150 }, - [30]={ - list=false, + [16]={ + list=true, name="", - refTo="", + refTo="Animation", type="Key", - width=150 + width=300 } }, - battlepasses={ - }, - battlepassrewards={ - }, - battlepassrewardtypes={ - }, - battlepasstracks={ - }, - bestiarycapturablemonsters={ - }, - bestiaryencounters={ - }, - bestiaryfamilies={ - }, - bestiarygenus={ - }, - bestiarygroups={ - }, - bestiarynets={ - }, - bestiaryrecipecategories={ - }, - bestiaryrecipecomponent={ - }, - bestiaryrecipeitemcreation={ - }, - bestiaryrecipes={ - }, - betrayalchoiceactions={ - }, - betrayalchoices={ - }, - betrayaldialogue={ - }, - betrayaldialoguecue={ - }, - betrayalflags={ - }, - betrayalforts={ - }, - betrayaljobs={ - }, - betrayalranks={ - }, - betrayalrelationshipstate={ - }, - betrayaltargetflags={ - }, - betrayaltargetjobachievements={ - }, - betrayaltargetlifescalingperlevel={ - }, - betrayaltargets={ - }, - betrayaltraitorrewards={ - }, - betrayalupgrades={ - }, - betrayalupgradeslots={ - }, - betrayalwalllifescalingperlevel={ - }, - beyonddemons={ - }, - beyondfactions={ - }, - bindablevirtualkeys={ - }, - blightbalanceperlevel={ - }, - blightbosslifescalingperlevel={ - }, - blightchesttypes={ - }, - blightcraftingitems={ + applydamagefunctions={ [1]={ list=false, - name="Oil", - refTo="BaseItemTypes", - type="Key", - width=300 - }, - [2]={ - list=false, - name="Tier", + name="Id", refTo="", - type="Int", - width=150 + type="String", + width=250 }, - [3]={ + [2]={ list=true, - name="Achievements", - refTo="", + name="StatsKeys", + refTo="Stats", type="Key", - width=150 - }, - [4]={ - list=false, - name="UseType", - refTo="", - type="Int", - width=150 + width=300 }, - [5]={ + [3]={ list=false, - name="NameShort", + name="", refTo="", - type="String", - width=150 - }, - [6]={ - list=false, - name="MapMod", - refTo="Mods", - type="Key", + type="Bool", width=150 } }, - blightcraftingrecipes={ + archetyperewards={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="BlightCraftingResultsKey", - refTo="BlightCraftingResults", + name="", + refTo="", type="Key", width=150 }, [3]={ list=true, - name="Recipe", - refTo="BlightCraftingItems", + name="Archetype", + refTo="Archetypes", type="Key", - width=810 - } - }, - blightcraftingresults={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=150 + width=300 }, - [2]={ + [4]={ list=false, - name="ModsKey", - refTo="Mods", + name="Gem", + refTo="BaseItemTypes", type="Key", width=150 }, - [3]={ + [5]={ list=false, - name="PassiveSkillsKey", - refTo="PassiveSkills", - type="Key", - width=260 + name="BK2File", + refTo="", + type="String", + width=240 } }, - blightcraftingtypes={ + archetypes={ [1]={ list=false, name="Id", @@ -2478,2565 +2990,2742 @@ return { }, [2]={ list=false, - name="", - refTo="", - type="Int", + name="CharactersKey", + refTo="Characters", + type="Key", width=150 }, [3]={ list=false, - name="", - refTo="", - type="Bool", - width=150 - } - }, - blightcraftinguniques={ - }, - blightedsporeauras={ - }, - blightencountertypes={ - }, - blightencounterwaves={ - }, - blightrewardtypes={ - }, - blightstashtablayout={ - }, - blighttopologies={ - }, - blighttopologynodes={ - }, - blighttowerauras={ - }, - blighttowers={ - }, - blighttowersperlevel={ - }, - bloodhiteffects={ - }, - bloodlines={ - }, - bloodtypes={ - }, - boltstatreference={ - }, - breachartvariations={ - }, - breachbosslifescalingperlevel={ - }, - breachelement={ - }, - breachstones={ - }, - breachstoneupgrades={ - }, - buffdefinitions={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 - }, - [2]={ - list=false, - name="Description", + name="PassiveSkillTreeURL", refTo="", type="String", - width=440 - }, - [3]={ - list=false, - name="Invisible", - refTo="", - type="Bool", - width=50 + width=240 }, [4]={ list=false, - name="Removable", + name="AscendancyClassName", refTo="", - type="Bool", - width=60 + type="String", + width=240 }, [5]={ list=false, - name="Name", + name="Description", refTo="", type="String", - width=170 + width=240 }, [6]={ - list=true, - name="Stats", - refTo="Stats", - type="Key", - width=610 + list=false, + name="UIImageFile", + refTo="", + type="String", + width=240 }, [7]={ list=false, - name="CancelOnDeath", + name="TutorialVideo_BKFile", refTo="", - type="Bool", - width=90 + type="String", + width=240 }, [8]={ list=false, - name="MergeMode", - refTo="BuffMergeModes", - type="Enum", - width=70 + name="", + refTo="", + type="Int", + width=150 }, [9]={ list=false, - name="ShowCount", + name="", refTo="", - type="Bool", - width=70 + type="Float", + width=150 }, [10]={ list=false, - name="MaxStat", - refTo="Stats", - type="Key", - width=250 + name="", + refTo="", + type="Float", + width=150 }, [11]={ list=false, - name="CurrentStat", - refTo="Stats", - type="Key", - width=170 + name="BackgroundImageFile", + refTo="", + type="String", + width=240 }, [12]={ list=false, - name="", + name="IsTemporary", refTo="", type="Bool", - width=60 + width=150 }, [13]={ list=false, name="", refTo="", - type="Enum", - width=60 + type="Bool", + width=150 }, [14]={ list=false, - name="Visual", - refTo="BuffVisuals", - type="Key", - width=180 + name="ArchetypeImage", + refTo="", + type="String", + width=240 }, [15]={ list=false, name="", refTo="", type="Bool", - width=40 + width=150 }, [16]={ list=false, name="", refTo="", type="Bool", - width=40 - }, - [17]={ - list=false, - name="", - refTo="", - type="Enum", - width=50 - }, - [18]={ + width=150 + } + }, + architectlifescalingperlevel={ + [1]={ list=false, - name="", + name="Level", refTo="", - type="Bool", - width=40 + type="Int", + width=150 }, - [19]={ + [2]={ list=false, - name="", + name="MoreLife", refTo="", - type="Bool", - width=40 - }, - [20]={ + type="Int", + width=150 + } + }, + archnemesismetarewards={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=40 + type="String", + width=220 }, - [21]={ + [2]={ list=false, - name="", + name="RewardText", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [22]={ + [3]={ list=false, - name="Limit", + name="RewardGroup", refTo="", type="Int", - width=40 - }, - [23]={ - list=false, - name="", - refTo="", - type="Bool", - width=40 + width=150 }, - [24]={ + [4]={ list=false, - name="Implementation", + name="ScriptArgument", refTo="", type="String", - width=180 + width=240 }, - [25]={ + [5]={ list=false, - name="isRecovery", + name="MinLevel", refTo="", - type="Bool", - width=60 + type="Int", + width=150 }, - [26]={ + [6]={ list=false, - name="", + name="MaxLevel", refTo="", - type="Bool", - width=40 - }, - [27]={ + type="Int", + width=150 + } + }, + archnemesismodcomboachievements={ + [1]={ list=false, - name="MinStat", - refTo="Stats", + name="Achievement", + refTo="AchievementItems", type="Key", - width=180 + width=150 }, - [28]={ + [2]={ + list=true, + name="Mods", + refTo="ArchnemesisMods", + type="Key", + width=150 + }, + [3]={ list=false, name="", refTo="", - type="Bool", - width=40 + type="Int", + width=150 }, - [29]={ + [4]={ list=false, - name="UIStackMode", + name="", refTo="", type="Int", - width=80 + width=150 }, - [30]={ + [5]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [31]={ + [6]={ list=false, - name="IsSkillBuff", + name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, - [32]={ + [7]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [33]={ - list=true, + [8]={ + list=false, name="", refTo="", type="Int", width=150 - }, - [34]={ + } + }, + archnemesismods={ + [1]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="Id", + refTo="Mods", + type="Key", + width=310 }, - [35]={ + [2]={ list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [36]={ - list=true, - name="", + name="Name", refTo="", - type="Key", + type="String", width=150 }, - [37]={ + [3]={ list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [38]={ - list=true, - name="Stats2", - refTo="Stats", - type="Key", - width=250 - }, - [39]={ - list=true, - name="GrantedFlags", - refTo="Stats", - type="Key", - width=250 - }, - [40]={ - list=true, - name="GrantedStats", - refTo="Stats", + name="Visual", + refTo="ArchnemesisModVisuals", type="Key", - width=450 + width=150 }, - [41]={ + [4]={ list=true, - name="ConditionStats", - refTo="Stats", - type="Key", + name="TextStyles", + refTo="", + type="String", width=150 }, - [42]={ + [5]={ list=false, name="", refTo="", type="Bool", - width=50 + width=70 }, - [43]={ + [6]={ list=false, name="", refTo="", type="Bool", - width=50 + width=70 }, - [44]={ + [7]={ list=false, name="", refTo="", type="Bool", - width=50 - }, - [45]={ + width=70 + } + }, + archnemesismodsfromchestmods={ + [1]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="ChestMod", + refTo="Mods", + type="Key", + width=150 }, - [46]={ + [2]={ list=false, - name="", - refTo="Stats", + name="ArchnemesisMod", + refTo="ArchnemesisMods", type="Key", - width=100 - }, - [47]={ - list=true, - name="", - refTo="", - type="Int", - width=50 - }, - [48]={ + width=150 + } + }, + archnemesismodvisuals={ + [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=50 + width=150 }, - [49]={ - list=true, - name="Stats3", - refTo="Stats", + [2]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", type="Key", width=150 }, - [50]={ - list=true, - name="", - refTo="", - type="Int", - width=50 + [3]={ + list=false, + name="BuffVisualOrbType", + refTo="BuffVisualOrbTypes", + type="Key", + width=150 }, - [51]={ + [4]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="MiscEffectPack", + refTo="MiscEffectPacks", + type="Key", + width=150 }, - [52]={ + [5]={ list=true, - name="", - refTo="", + name="BuffVisual", + refTo="BuffVisuals", type="Key", - width=50 + width=300 }, - [53]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 + [6]={ + list=true, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=300 }, - [54]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 + [7]={ + list=true, + name="MonsterMiscAnimated", + refTo="MiscAnimated", + type="Key", + width=300 }, - [55]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + [8]={ + list=true, + name="MonsterEffectPack", + refTo="MiscEffectPacks", + type="Key", + width=300 } }, - buffgroups={ - }, - buffmergemodes={ - }, - buffstackuimodes={ - }, - bufftemplates={ + archnemesisrecipes={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=380 + name="Result", + refTo="ArchnemesisMods", + type="Key", + width=150 }, [2]={ - list=false, - name="BuffDefinition", - refTo="BuffDefinitions", + list=true, + name="Recipe", + refTo="ArchnemesisMods", type="Key", - width=400 + width=150 }, [3]={ - list=true, - name="StatValues", + list=false, + name="", refTo="", type="Int", - width=100 + width=150 }, [4]={ list=false, - name="AuraRadius", + name="", refTo="", type="Int", - width=80 + width=150 }, [5]={ - list=true, + list=false, name="", refTo="", type="Int", width=150 }, [6]={ - list=true, + list=false, name="", - refTo="Mods", + refTo="", type="Int", width=150 }, [7]={ list=false, - name="Visual", - refTo="BuffVisuals", - type="Key", - width=350 + name="", + refTo="", + type="Int", + width=150 }, [8]={ list=false, - name="Duration", + name="", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, [9]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 + } + }, + areadifficultystats={ + [1]={ + list=false, + name="Id", + refTo="Stats", + type="Key", + width=150 }, - [10]={ + [2]={ list=true, - name="Stats", + name="Area", + refTo="WorldAreas", + type="Key", + width=300 + }, + [3]={ + list=false, + name="Stat", refTo="Stats", type="Key", - width=350 + width=150 + } + }, + areainfluencedoodads={ + [1]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 }, - [11]={ + [2]={ list=false, - name="", + name="StatValue", refTo="", type="Int", width=150 }, - [12]={ + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=true, + name="AOFiles", + refTo="", + type="String", + width=300 + }, + [5]={ list=false, name="", refTo="", type="Int", width=150 }, - [13]={ + [6]={ list=false, name="", refTo="", type="Bool", width=150 }, - [14]={ + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ list=false, name="", refTo="Stats", type="Key", width=150 + } + }, + areastatsperdifficulty={ + [1]={ + list=false, + name="Stat", + refTo="AreaDifficultyStats", + type="Key", + width=150 }, - [15]={ + [2]={ + list=false, + name="Difficulty", + refTo="", + type="Int", + width=150 + }, + [3]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 } }, - buffvisualartvariations={ + areatransitionanimations={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 + }, + [2]={ + list=false, + name="AnimationId", + refTo="", + type="String", + width=240 } }, - buffvisualorbart={ + areatransitionanimationtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 + } + }, + areatransitioninfo={ + [1]={ + list=false, + name="StartingArea", + refTo="WorldAreas", + type="Key", + width=150 }, [2]={ list=false, - name="MiscAnimated", - refTo="MiscAnimated", + name="EndingArea", + refTo="WorldAreas", type="Key", width=150 }, [3]={ - list=true, - name="", - refTo="", - type="Int", + list=false, + name="AnimationType", + refTo="AreaTransitionAnimationTypes", + type="Key", width=150 }, [4]={ - list=true, - name="", - refTo="", - type="String", + list=false, + name="AnimationMarauder", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [5]={ list=false, - name="", - refTo="", - type="String", + name="AnimationRanger", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [6]={ list=false, - name="", - refTo="", - type="String", + name="AnimationWitch", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [7]={ list=false, - name="", - refTo="", - type="String", + name="AnimationDualist", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [8]={ list=false, - name="", - refTo="", - type="String", + name="AnimationTemplar", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [9]={ list=false, - name="", - refTo="", - type="String", + name="AnimationShadow", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [10]={ list=false, - name="", - refTo="", - type="String", + name="AnimationScion", + refTo="AreaTransitionAnimations", + type="Key", width=150 }, [11]={ list=false, - name="", - refTo="", - type="Bool", + name="Animation", + refTo="MiscAnimated", + type="Key", width=150 }, [12]={ + list=true, + name="MiscObjectGround", + refTo="MiscObjects", + type="Key", + width=300 + }, + [13]={ list=false, name="", refTo="", - type="String", - width=150 - } - }, - buffvisualorbs={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=250 - }, - [2]={ - list=false, - name="OrbType", - refTo="BuffVisualOrbTypes", - type="Key", + type="Int", width=150 }, - [3]={ - list=true, - name="OrbArt", - refTo="BuffVisualOrbArt", - type="Key", - width=250 - }, - [4]={ - list=true, - name="OrbArtPlayer", - refTo="BuffVisualOrbArt", - type="Key", - width=250 - }, - [5]={ + [14]={ list=true, - name="OrbArt2", - refTo="BuffVisualOrbArt", + name="BossObject", + refTo="MiscObjects", type="Key", - width=150 + width=300 } }, - buffvisualorbtypes={ + areatype={ + }, + armourclasses={ + }, + armoursurfacetypes={ + }, + armourtypes={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=150 + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=400 }, [2]={ list=false, - name="", + name="Armour", refTo="", - type="Float", - width=70 + type="Int", + width=150 }, [3]={ list=false, - name="", + name="Evasion", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, [4]={ list=false, - name="", + name="EnergyShield", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, [5]={ list=false, - name="", + name="MovementPenalty", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, [6]={ list=false, - name="", + name="Ward", refTo="", type="Int", - width=50 + width=150 }, [7]={ list=false, name="", refTo="", - type="Bool", - width=50 - }, - [8]={ + type="Int", + width=150 + } + }, + arrowspearoverride={ + [1]={ list=false, - name="RadiusStat", - refTo="Stats", + name="ItemVisual", + refTo="ItemVisualIdentity", type="Key", - width=200 + width=150 }, - [9]={ + [2]={ list=false, - name="HeightStat", - refTo="Stats", + name="Override", + refTo="ProjectileOverrides", type="Key", - width=200 - }, - [10]={ + width=150 + } + }, + arrowstatreference={ + [1]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [11]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [12]={ - list=false, - name="", - refTo="", - type="Float", - width=50 - }, - [13]={ - list=false, - name="", - refTo="", - type="Int", - width=50 - }, - [14]={ - list=false, - name="", - refTo="", - type="Float", - width=50 - }, - [15]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [16]={ - list=false, - name="", - refTo="", - type="Float", - width=50 - }, - [17]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [18]={ + [2]={ list=false, name="", refTo="", type="String", - width=150 - }, - [19]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + width=240 } }, - buffvisuals={ + ascendancy={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=90 }, [2]={ list=false, - name="Icon", + name="Index", refTo="", - type="String", - width=250 + type="Int", + width=50 }, [3]={ - list=true, - name="", - refTo="", - type="String", - width=150 + list=false, + name="Class", + refTo="Characters", + type="Key", + width=250 }, [4]={ - list=true, - name="", + list=false, + name="FlavourRect", refTo="", type="String", - width=150 + width=120 }, [5]={ - list=true, - name="", + list=false, + name="FlavourColour", refTo="", - type="Key", - width=150 + type="String", + width=100 }, [6]={ list=false, - name="", + name="Name", refTo="", - type="Bool", - width=50 + type="String", + width=90 }, [7]={ list=false, - name="Name", + name="Flavour", refTo="", type="String", width=150 }, [8]={ list=false, - name="", + name="Audio", refTo="", - type="Key", - width=150 + type="String", + width=480 }, [9]={ list=false, - name="", + name="PassiveTreeImage", refTo="", - type="Key", + type="String", width=150 }, [10]={ list=false, - name="Description", + name="distanceTree", refTo="", - type="String", - width=150 + type="Int", + width=180 }, [11]={ list=false, - name="EPKFile", + name="TreeRegionAngle", refTo="", - type="String", - width=150 + type="Int", + width=100 }, [12]={ list=false, - name="", + name="BackgroundImage", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, [13]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, [14]={ - list=true, - name="", + list=false, + name="isDisabled", refTo="", - type="Int", + type="Bool", width=150 }, [15]={ - list=true, - name="EPKFiles", - refTo="", - type="String", - width=150 + list=false, + name="Replace", + refTo="Ascendancy", + type="ShortKey", + width=70 }, [16]={ - list=true, - name="Orbs", - refTo="BuffVisualOrbs", + list=false, + name="UIArt", + refTo="PassiveSkillTreeUIArt", type="Key", - width=150 + width=160 }, [17]={ list=false, - name="", - refTo="", + name="SelectSound", + refTo="SoundEffects", type="Key", - width=150 + width=120 }, [18]={ list=false, - name="", - refTo="", + name="ConfirmDownSound", + refTo="SoundEffects", type="Key", - width=150 + width=170 }, [19]={ list=false, - name="", - refTo="", + name="ConfirmUpSound", + refTo="SoundEffects", type="Key", - width=150 - }, - [20]={ + width=170 + } + }, + ascendancypassiveskilloverrides={ + [1]={ list=false, - name="", - refTo="", - type="ShortKey", + name="Id", + refTo="Ascendancy", + type="Key", width=150 }, - [21]={ + [2]={ list=false, - name="", - refTo="", - type="Float", - width=150 + name="OriginalNode", + refTo="PassiveSkills", + type="Key", + width=210 }, - [22]={ + [3]={ list=false, - name="", - refTo="", - type="Float", - width=150 - }, - [23]={ + name="SwitchedNode", + refTo="PassiveSkills", + type="Key", + width=240 + } + }, + atlasawakeningstats={ + }, + atlasbasetypedrops={ + }, + atlasclasspassiveclasses={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=150 + type="String", + width=240 }, - [24]={ + [2]={ list=false, - name="", + name="Description", refTo="", - type="Bool", - width=150 + type="String", + width=240 }, - [25]={ + [3]={ list=true, name="", refTo="", - type="Key", - width=150 + type="Int", + width=300 }, - [26]={ + [4]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [27]={ + [5]={ list=false, - name="", + name="TabActive", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [28]={ + [6]={ list=false, - name="", + name="TabInactive", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [29]={ - list=true, - name="", - refTo="", - type="Int", - width=50 - } - }, - buffvisualsartvariations={ - [1]={ + [7]={ list=false, - name="Buff", + name="MasterNormal", refTo="", type="String", - width=250 - }, - [2]={ - list=true, - name="Visuals", - refTo="BuffVisuals", - type="Key", - width=350 + width=240 }, - [3]={ + [8]={ list=false, - name="", + name="ActiveHover", refTo="", - type="Int", - width=80 - } - }, - buffvisualsetentries={ - [1]={ + type="String", + width=240 + }, + [9]={ list=false, - name="Id", + name="FrameBackground", refTo="", type="String", - width=150 + width=240 }, - [2]={ + [10]={ list=false, - name="", + name="ButtonBase", refTo="", - type="Int", - width=80 + type="String", + width=240 }, - [3]={ + [11]={ list=false, - name="Visual", - refTo="BuffVisuals", - type="Key", - width=250 + name="ButtonActive", + refTo="", + type="String", + width=240 }, - [4]={ + [12]={ list=false, - name="", + name="Tab", refTo="", - type="Int", - width=80 + type="String", + width=240 } }, - buffvisualshapeshiftoverride={ - }, - caravanstops={ - }, - chanceableitemclasses={ - }, - characteraudioevents={ + atlasclasspassives={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Event", - refTo="Questflags", + name="Class", + refTo="AtlasClassPassiveClasses", type="Key", width=150 }, [3]={ list=false, - name="", + name="KeystoneArt", refTo="", - type="Int", - width=150 + type="String", + width=240 }, [4]={ list=false, - name="", + name="KeystoneArtActive", refTo="", - type="Int", - width=150 + type="String", + width=240 }, [5]={ list=true, - name="GoddessAudio", - refTo="CharacterTextAudio", + name="Stats", + refTo="Stats", type="Key", - width=150 + width=300 }, [6]={ list=true, - name="JackTheAxeAudio", - refTo="CharacterTextAudio", - type="Key", - width=150 + name="StatValues", + refTo="", + type="Int", + width=300 }, [7]={ list=false, - name="", + name="Name", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [8]={ list=false, - name="", + name="FlavourText", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [9]={ - list=true, + list=false, name="", refTo="", - type="Key", - width=70 + type="UInt16", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 } }, - charactercreationbutton={ - }, - charactercreationdialogue={ - }, - charactercreationicons={ + atlasentities={ }, - charactereventtextaudio={ + atlasexilebossarenas={ [1]={ list=false, - name="Event", - refTo="CharacterAudioEvents", + name="Conqueror", + refTo="AtlasExiles", type="Key", - width=250 + width=150 }, [2]={ list=false, - name="Character", - refTo="Characters", - type="Key", - width=250 - }, - [3]={ - list=true, - name="", - refTo="CharacterTextAudio", + name="WorldArea", + refTo="WorldAreas", type="Key", - width=300 - }, - [4]={ - list=false, - name="", - refTo="", - type="Int", - width=100 + width=150 } }, - charactermeleeskills={ + atlasexileinfluence={ [1]={ list=false, - name="MainHandItem", - refTo="WieldableClasses", + name="Conqueror", + refTo="AtlasExiles", type="Key", - width=200 + width=150 }, [2]={ - list=false, - name="OffHandItem", - refTo="WieldableClasses", - type="Key", - width=200 - }, - [3]={ list=true, - name="SkillGem", - refTo="SkillGems", + name="Sets", + refTo="AtlasInfluenceSets", type="Key", - width=700 - }, - [4]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + width=300 } }, - characterpaneldescriptionmodes={ + atlasexileinfluencedata={ }, - characterpanelstatcontexts={ + atlasexileinfluenceoutcomes={ }, - characterpanelstats={ + atlasexileinfluenceoutcometypes={ }, - characterpaneltabs={ + atlasexileinfluencepacks={ }, - characters={ + atlasexileinfluencesets={ + }, + atlasexileregionquestflags={ + }, + atlasexiles={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ list=false, - name="Name", + name="", refTo="", - type="String", - width=70 + type="Int", + width=150 }, [3]={ list=false, - name="AnimatedObject", - refTo="", - type="String", - width=270 + name="InfluencedItemIncrStat", + refTo="Stats", + type="Key", + width=150 }, [4]={ list=false, - name="ActorFile", + name="MapIcon", refTo="", type="String", - width=270 + width=240 }, [5]={ list=false, - name="BaseMaxLife", + name="MapIcon2", refTo="", - type="Int", - width=100 - }, - [6]={ + type="String", + width=240 + } + }, + atlasfavouredmapslots={ + [1]={ list=false, - name="BaseMaxMana", + name="SlotId", refTo="", type="Int", - width=100 + width=150 }, - [7]={ + [2]={ list=false, - name="WeaponSpeed", + name="", refTo="", type="Int", - width=100 + width=150 }, - [8]={ + [3]={ list=false, - name="MinDamage", + name="Unlock", + refTo="", + type="String", + width=240 + } + }, + atlasfog={ + [1]={ + list=false, + name="", refTo="", type="Int", - width=100 + width=150 }, - [9]={ + [2]={ list=false, - name="MaxDamage", + name="", refTo="", type="Int", - width=100 + width=150 }, - [10]={ + [3]={ list=false, - name="MaxAttackDistance", + name="", refTo="", type="Int", - width=120 + width=150 }, - [11]={ + [4]={ list=false, - name="Icon", - refTo="", - type="String", - width=80 - }, - [12]={ - list=false, - name="IntegerId", + name="", refTo="", type="Int", - width=80 - }, - [13]={ + width=150 + } + }, + atlasinfluencedata={ + [1]={ list=false, - name="BaseStrength", - refTo="", - type="Int", - width=100 + name="InfluencePack", + refTo="AtlasInfluenceOutcomes", + type="Key", + width=150 }, - [14]={ + [2]={ + list=true, + name="MonsterPacks", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [3]={ list=false, - name="BaseDexterity", + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [4]={ + list=true, + name="SpawnChanceStat", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=true, + name="BuffStatValues", refTo="", type="Int", - width=100 + width=300 }, - [15]={ - list=false, - name="BaseIntelligence", + [6]={ + list=true, + name="SpawnChanceValue", refTo="", type="Int", - width=100 + width=300 }, - [16]={ - list=true, + [7]={ + list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, - [17]={ + [8]={ list=false, - name="Description", + name="", refTo="", - type="String", + type="Int", width=150 }, - [18]={ + [9]={ list=false, - name="StartSkillGem", - refTo="BaseItemTypes", + name="InfluencePackSizeStat", + refTo="Stats", type="Key", width=150 }, - [19]={ + [10]={ list=false, name="", refTo="", - type="Key", - width=30 + type="Int", + width=150 }, - [20]={ + [11]={ list=false, name="", refTo="", type="Int", - width=30 + width=150 }, - [21]={ + [12]={ list=false, name="", refTo="", type="Int", - width=30 + width=150 }, - [22]={ + [13]={ list=false, - name="CharacterSize", + name="", refTo="", type="Int", - width=80 + width=150 }, - [23]={ + [14]={ list=false, name="", refTo="", type="Int", - width=30 - }, - [24]={ + width=150 + } + }, + atlasinfluenceoutcomes={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Int", - width=30 + type="String", + width=240 }, - [25]={ + [2]={ list=false, name="", refTo="", type="Int", - width=30 + width=150 }, - [26]={ + [3]={ list=false, - name="IntroSoundFile", + name="Type", + refTo="AtlasInfluenceOutcomeTypes", + type="Enum", + width=150 + } + }, + atlasinfluenceoutcometypes={ + }, + atlasinfluencesets={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=150 + width=240 }, - [27]={ + [2]={ list=true, - name="StartWeapons", - refTo="BaseItemTypes", + name="InfluencePacks", + refTo="AtlasInfluenceOutcomes", type="Key", - width=150 + width=300 + } + }, + atlasmemoryline={ + [1]={ + list=false, + name="League", + refTo="", + type="String", + width=240 }, - [28]={ + [2]={ list=false, - name="Gender", + name="League2", refTo="", type="String", - width=60 + width=240 }, - [29]={ + [3]={ list=false, - name="TraitDescription", + name="StartPointArt", refTo="", type="String", - width=150 + width=240 }, - [30]={ + [4]={ list=false, - name="", + name="MidPointArt", refTo="", - type="Key", - width=30 + type="String", + width=240 }, - [31]={ + [5]={ list=false, - name="", + name="EndPointArt", refTo="", - type="Key", - width=30 + type="String", + width=240 }, - [32]={ - list=true, - name="", + [6]={ + list=false, + name="PathArt", refTo="", + type="String", + width=240 + } + }, + atlasmods={ + [1]={ + list=false, + name="Mod", + refTo="Mods", type="Key", - width=30 + width=320 }, - [33]={ + [2]={ list=false, - name="", + name="Tier", + refTo="", + type="Int", + width=70 + } + }, + atlasmodtiers={ + }, + atlasnode={ + [1]={ + list=false, + name="Id", refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Area1", + refTo="WorldAreas", type="Key", - width=50 + width=150 }, - [34]={ + [3]={ list=false, name="", refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="FlavourText", + refTo="FlavourText", type="Key", - width=50 + width=150 }, - [35]={ + [5]={ + list=true, + name="Connections", + refTo="AtlasNode", + type="Key", + width=300 + }, + [6]={ list=false, name="", refTo="", - type="Int", - width=30 + type="Float", + width=150 }, - [36]={ + [7]={ list=false, - name="PassiveTreeImage", + name="", refTo="", - type="String", + type="Float", width=150 }, - [37]={ + [8]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Float", + width=150 }, - [38]={ + [9]={ list=false, name="", refTo="", - type="Int", - width=30 + type="Float", + width=150 }, - [39]={ + [10]={ list=false, - name="AttrsAsId", + name="", refTo="", - type="String", + type="Float", width=150 }, - [40]={ + [11]={ list=false, - name="LoginScreen", + name="UniqueArt", refTo="", type="String", - width=150 + width=240 }, - [41]={ + [12]={ list=false, - name="PlayerCritter", + name="StartingNode", refTo="", - type="String", + type="Bool", width=150 }, - [42]={ + [13]={ list=false, - name="PlayerEffect", + name="NotOnAtlas", refTo="", - type="String", + type="Bool", width=150 }, - [43]={ + [14]={ + list=true, + name="DivCards", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [15]={ + list=true, + name="DivCardsHardmode", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [16]={ list=false, - name="AfterImage", + name="Tier", refTo="", - type="String", + type="Int", width=150 }, - [44]={ + [17]={ list=false, - name="Mirage", - refTo="MonsterVarieties", - type="Key", + name="HASH16", + refTo="", + type="UInt16", width=150 }, - [45]={ + [18]={ list=false, - name="CloneImmobile", - refTo="MonsterVarieties", - type="Key", + name="IsUniqueMap", + refTo="", + type="Bool", width=150 }, - [46]={ + [19]={ list=false, - name="ReplicateClone", - refTo="MonsterVarieties", + name="Region", + refTo="AtlasRegions", type="Key", width=150 }, - [47]={ + [20]={ list=false, - name="LightningClone", - refTo="MonsterVarieties", - type="Key", - width=150 + name="Node_DDSFile", + refTo="", + type="String", + width=240 }, - [48]={ + [21]={ list=false, - name="", + name="IsNormalMap", refTo="", - type="Float", - width=50 + type="Bool", + width=150 }, - [49]={ + [22]={ list=false, - name="", + name="RequiresSpecificItem", refTo="", - type="Float", - width=60 + type="Bool", + width=150 }, - [50]={ + [23]={ list=false, - name="SkillTreeBackground", - refTo="", - type="String", + name="VoidstoneSlot", + refTo="AtlasVoidstoneSlots", + type="Key", width=150 }, - [51]={ + [24]={ list=false, - name="Clone", - refTo="MonsterVarieties", + name="MapDeviceLayout", + refTo="MapDeviceLayouts", type="Key", width=150 }, - [52]={ + [25]={ list=true, - name="", + name="QuestStates", refTo="", - type="Key", - width=30 + type="Int", + width=300 }, - [53]={ + [26]={ list=false, - name="MirageWarrior", - refTo="MonsterVarieties", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, - [54]={ + [27]={ list=false, - name="DoubleTwo", - refTo="MonsterVarieties", + name="NodeDisplayName", + refTo="ClientStrings2", type="Key", width=150 }, - [55]={ + [28]={ list=false, - name="DarkExile", - refTo="MonsterVarieties", + name="Area2", + refTo="WorldAreas", type="Key", width=150 }, - [56]={ + [29]={ list=false, - name="Attr", + name="", refTo="", - type="String", + type="Bool", width=150 }, - [57]={ + [30]={ list=false, - name="AttrLowercase", + name="", refTo="", - type="String", + type="Bool", width=150 }, - [58]={ + [31]={ list=false, - name="Script", + name="", refTo="", - type="String", + type="Float", width=150 }, - [59]={ + [32]={ list=false, name="", refTo="", - type="Key", + type="Bool", width=150 }, - [60]={ + [33]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [61]={ + [34]={ list=false, name="", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, - [62]={ + [35]={ list=false, name="", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, - [63]={ + [36]={ list=false, name="", refTo="", - type="Float", - width=50 + type="Int", + width=150 }, - [64]={ + [37]={ list=false, - name="BaseClass", + name="", + refTo="", + type="Bool", + width=150 + } + }, + atlasnodedefinition={ + [1]={ + list=false, + name="Id", refTo="", type="String", + width=240 + }, + [2]={ + list=false, + name="Area1", + refTo="WorldAreas", + type="Key", width=150 }, - [65]={ + [3]={ list=false, name="", refTo="", type="Int", width=150 }, - [66]={ + [4]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, - [67]={ + [5]={ list=false, - name="", + name="NotOnAtlas", refTo="", - type="Key", + type="Bool", width=150 }, - [68]={ + [6]={ list=false, - name="", + name="IsUniqueMap", refTo="", - type="Float", + type="Bool", width=150 }, - [69]={ + [7]={ list=false, - name="GemCuttingIcon1", + name="Node_DDSFile", refTo="", type="String", - width=150 + width=240 }, - [70]={ + [8]={ list=false, - name="", + name="IsNormalMap", refTo="", - type="Float", + type="Bool", width=150 }, - [71]={ + [9]={ list=false, - name="GemCuttingIcon1", + name="RequiresSpecificItem", refTo="", - type="String", + type="Bool", width=150 }, - [72]={ + [10]={ list=false, - name="", - refTo="", + name="VoidstoneSlot", + refTo="AtlasVoidstoneSlots", type="Key", width=150 }, - [73]={ + [11]={ list=false, - name="", - refTo="ItemVisualIdentity", + name="MapDeviceLayout", + refTo="MapDeviceLayouts", type="Key", width=150 - } - }, - charactershapeshiftbasicskills={ - [1]={ + }, + [12]={ + list=true, + name="QuestStates", + refTo="", + type="Int", + width=300 + }, + [13]={ list=false, - name="Id", - refTo="ShapeshiftForms", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, - [2]={ + [14]={ list=false, - name="SkillGem", - refTo="SkillGems", + name="NodeDisplayName", + refTo="ClientStrings2", type="Key", - width=250 - } - }, - characterstartitems={ - }, - characterstartqueststate={ - }, - characterstartstates={ - }, - characterstartstateset={ - }, - charactertextaudio={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", width=150 }, - [2]={ + [15]={ list=false, - name="Text", - refTo="", - type="String", + name="Area2", + refTo="WorldAreas", + type="Key", width=150 }, - [3]={ + [16]={ list=false, - name="SoundFile", + name="", refTo="", - type="String", + type="Bool", width=150 }, - [4]={ + [17]={ list=false, - name="ParrotSoundFile", - refTo="", - type="String", - width=150 - }, - [5]={ - list=false, - name="", - refTo="", - type="Int", - width=150 - }, - [6]={ - list=false, - name="", - refTo="", - type="Int", + name="Header", + refTo="MapNodeHeader", + type="Key", width=150 } }, - charactervariationgroups={ - }, - chargevariations={ - }, - chaticons={ - }, - chestclusters={ - }, - chesteffects={ - }, - chestitemtemplates={ - }, - chests={ - }, - classpassiveskilloverrides={ + atlaspassivegrantedskillsfromsubtreepoints={ [1]={ list=false, - name="Character", - refTo="Characters", + name="Passive", + refTo="PassiveSkills", type="Key", - width=200 + width=150 }, [2]={ list=false, - name="OriginalNode", - refTo="PassiveSkills", + name="Tree", + refTo="AtlasPassiveSkillSubTrees", type="Key", - width=200 + width=150 }, [3]={ list=false, - name="SwitchedNode", - refTo="PassiveSkills", - type="Key", - width=200 + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 } }, - clientlakedifficulty={ - }, - clientleagueaction={ - }, - clientstrings={ + atlaspassiveskillsubtrees={ [1]={ list=false, name="Id", refTo="", type="String", - width=320 + width=240 }, [2]={ list=false, - name="Text", + name="UI_Image", refTo="", type="String", - width=670 + width=240 }, [3]={ list=false, - name="XBoxText", + name="UI_Background", refTo="", type="String", - width=150 + width=240 }, [4]={ list=false, - name="XBoxText2", + name="IllustrationX", refTo="", - type="String", - width=90 + type="Int", + width=150 }, [5]={ list=false, - name="HASH32", + name="IllustrationY", refTo="", - type="UInt", + type="Int", width=150 }, [6]={ list=false, - name="PlaystationText", + name="CounterX", refTo="", - type="String", + type="Int", width=150 }, [7]={ list=false, - name="", + name="CounterY", refTo="", - type="String", + type="Int", width=150 - } - }, - clientstrings2={ - [1]={ + }, + [8]={ list=false, - name="Id", - refTo="", - type="String", - width=280 + name="", + refTo="ClientStrings", + type="Key", + width=150 }, - [2]={ + [9]={ list=false, - name="Text", - refTo="", - type="String", - width=300 + name="", + refTo="ClientStrings", + type="Key", + width=150 }, - [3]={ + [10]={ list=false, name="", - refTo="", - type="String", + refTo="ClientStrings", + type="Key", width=150 }, - [4]={ + [11]={ list=false, name="", refTo="", type="String", - width=150 + width=240 }, - [5]={ + [12]={ list=false, - name="HASH32", + name="", refTo="", - type="UInt", - width=150 + type="String", + width=240 }, - [6]={ + [13]={ list=false, name="", refTo="", - type="String", + type="Float", width=150 }, - [7]={ + [14]={ list=false, - name="", + name="Description", refTo="", type="String", - width=150 + width=240 } }, - clientuiscreens={ + atlaspassiveskilltreegrouptype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } }, - cloneshot={ + atlaspoem={ }, - colours={ + atlaspositions={ [1]={ list=false, - name="Name", + name="", refTo="", - type="String", + type="Int", width=150 }, [2]={ list=false, - name="Red", + name="", refTo="", type="Int", width=150 }, [3]={ list=false, - name="Green", + name="X", refTo="", - type="Int", + type="Float", width=150 }, [4]={ list=false, - name="Blue", + name="Y", refTo="", - type="Int", + type="Float", + width=150 + } + }, + atlasprimordialaltarchoices={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", width=150 }, - [5]={ + [2]={ list=false, - name="RGB_String", + name="Type", + refTo="AtlasPrimordialAltarChoiceTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", refTo="", - type="String", + type="Bool", width=150 } }, - combatuiprompts={ - }, - commands={ + atlasprimordialaltarchoicetypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=300 + width=240 }, [2]={ list=false, - name="Command", + name="TopIconEater", refTo="", type="String", - width=150 + width=240 }, [3]={ list=false, - name="", + name="BottomIconEater", refTo="", - type="Bool", - width=150 + type="String", + width=240 }, [4]={ list=false, - name="EnglishCommand", + name="TopIconExarch", refTo="", type="String", - width=150 + width=240 }, [5]={ list=false, - name="Description", + name="BottomIconExarch", refTo="", type="String", - width=600 + width=240 }, [6]={ list=false, - name="", + name="Text", refTo="", - type="Bool", - width=150 + type="String", + width=240 } }, - completionnotifications={ - }, - componentarmour={ + atlasprimordialbosses={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=320 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="Armour", + name="", refTo="", type="Int", - width=70 + width=150 }, [3]={ list=false, - name="Evasion", + name="", refTo="", type="Int", - width=70 + width=150 }, [4]={ list=false, - name="EnergyShield", + name="", refTo="", type="Int", - width=70 + width=150 }, [5]={ list=false, - name="MovementPenalty", + name="", refTo="", type="Int", - width=100 - } - }, - componentattributerequirements={ - [1]={ + width=150 + }, + [6]={ list=false, - name="BaseItemType", - refTo="", - type="String", - width=310 + name="InfluenceComplete", + refTo="MiscAnimated", + type="Key", + width=150 }, - [2]={ + [7]={ list=false, - name="Str", - refTo="", - type="Int", - width=40 + name="MiniBossInvitation", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [3]={ + [8]={ list=false, - name="Dex", - refTo="", - type="Int", - width=40 + name="BossInvitation", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [4]={ + [9]={ list=false, - name="Int", - refTo="", - type="Int", - width=40 + name="PickUpKey", + refTo="QuestFlags", + type="Key", + width=150 }, - [5]={ + [10]={ list=false, - name="", - refTo="", - type="Int", + name="MinorBossKey", + refTo="QuestItems", + type="Key", + width=150 + }, + [11]={ + list=false, + name="BossQuestKey", + refTo="QuestItems", + type="Key", + width=150 + }, + [12]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + }, + [13]={ + list=false, + name="Altar", + refTo="MiscObjects", + type="Key", + width=150 + }, + [14]={ + list=false, + name="AltarActivated", + refTo="MiscAnimated", + type="Key", width=150 } }, - componentcharges={ + atlasprimordialbossinfluence={ [1]={ list=false, - name="BaseItemType", - refTo="", - type="String", - width=250 + name="Boss", + refTo="AtlasPrimordialBosses", + type="Key", + width=150 }, [2]={ list=false, - name="Max", + name="Progress", refTo="", type="Int", - width=50 + width=150 }, [3]={ list=false, - name="PerUse", + name="MinMapTier", refTo="", type="Int", - width=50 + width=150 }, [4]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, [5]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 + }, + [6]={ + list=false, + name="QuestItem", + refTo="QuestItems", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 } }, - componentweapon={ - }, - conditionalachievements={ - }, - cooldownbypasstypes={ - }, - cooldowngroups={ - }, - coreleagues={ - }, - corpseexplosiongibs={ - }, - corpsesinkvariations={ - }, - corpsetypetags={ + atlasprimordialbossoptions={ [1]={ list=false, - name="Tag", - refTo="Tags", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [2]={ list=false, - name="Name", + name="", refTo="", - type="String", + type="Int", width=150 }, [3]={ list=false, - name="Buff", - refTo="BuffDefinitions", - type="Key", - width=180 + name="DefaultIcon", + refTo="", + type="String", + width=240 }, [4]={ list=false, - name="Icon", + name="HoverIcon", refTo="", type="String", - width=150 + width=240 }, [5]={ list=false, - name="", + name="HighlightIcon", refTo="", - type="Int", - width=50 - } - }, - cosmeticsequippanelmode={ - }, - costtypes={ - [1]={ + type="String", + width=240 + }, + [6]={ list=false, - name="Resource", + name="EmptyIcon", refTo="", type="String", + width=240 + }, + [7]={ + list=false, + name="Description", + refTo="ClientStrings", + type="Key", width=150 }, - [2]={ + [8]={ list=false, - name="Stat", - refTo="Stats", + name="DescriptionActive", + refTo="ClientStrings", type="Key", width=150 }, - [3]={ + [9]={ list=false, - name="ResourceString", + name="ProgressTracker", refTo="", type="String", - width=190 + width=240 }, - [4]={ + [10]={ list=false, - name="Divisor", + name="ProgressTrackerFill", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [5]={ + [11]={ list=false, - name="PerMinute", + name="Name", refTo="", - type="Bool", - width=100 + type="String", + width=240 + }, + [12]={ + list=false, + name="MapDeviceTrackerFill", + refTo="", + type="String", + width=240 } }, - craftablemodtypes={ + atlasquadrant={ + }, + atlasregions={ [1]={ list=false, name="Id", - refTo="ModType", - type="Key", - width=320 + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="HASH16", - refTo="", - type="UInt16", + name="MemoryVault", + refTo="WorldAreas", + type="Key", width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 } }, - craftingbenchcustomactions={ + atlasregionupgraderegions={ }, - craftingbenchoptions={ + atlasregionupgradesinventorylayout={ + }, + atlassector={ + }, + atlasskillgraphs={ + }, + atlastowerinventorylayout={ [1]={ list=false, - name="HideoutNPC", - refTo="HideoutNPCs", - type="Key", - width=300 + name="Slot", + refTo="", + type="Int", + width=150 }, [2]={ list=false, - name="Order", + name="RequiredModifiers", refTo="", type="Int", - width=50 + width=150 }, [3]={ list=false, - name="Mod", - refTo="Mods", - type="Key", - width=260 + name="", + refTo="", + type="Int", + width=150 }, [4]={ - list=true, - name="Cost_BaseItemTypes", - refTo="BaseItemTypes", - type="Key", + list=false, + name="", + refTo="", + type="Int", width=150 }, [5]={ list=true, - name="CostValue", + name="", refTo="", - type="Int", - width=60 + type="Key", + width=300 }, [6]={ list=false, - name="RequiredLevel", + name="", refTo="", - type="Int", - width=100 - }, - [7]={ - list=false, - name="Name", + type="Bool", + width=150 + } + }, + atlasupgradesinventorylayout={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=200 + width=240 }, - [8]={ + [2]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [9]={ - list=true, - name="ItemClasses", - refTo="ItemClasses", + [3]={ + list=false, + name="Voidstone", + refTo="BaseItemTypes", type="Key", - width=130 + width=150 }, - [10]={ + [4]={ list=false, - name="Links", + name="", refTo="", type="Int", - width=50 + width=150 }, - [11]={ + [5]={ list=false, - name="Colours", + name="Objective", refTo="", type="String", - width=50 + width=240 }, - [12]={ + [6]={ list=false, - name="Sockets", + name="GrantAtlasUpgrade", + refTo="QuestFlags", + type="Key", + width=150 + }, + [7]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + attackskilldamagescalingtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + attackskilldamagescalingvalues={ + [1]={ + list=false, + name="Id", + refTo="AttackSkillDamageScalingType", + type="Key", + width=90 + }, + [2]={ + list=false, + name="Level", refTo="", type="Int", - width=50 + width=70 }, - [13]={ + [3]={ list=false, - name="ItemQuantity", + name="Multiplier", + refTo="", + type="Float", + width=150 + } + }, + attributerequirements={ + [1]={ + list=false, + name="BaseType", + refTo="BaseItemTypes", + type="Key", + width=400 + }, + [2]={ + list=false, + name="ReqStr", refTo="", type="Int", - width=80 + width=100 }, - [14]={ - list=true, - name="", + [3]={ + list=false, + name="ReqInt", refTo="", type="Int", width=100 }, - [15]={ + [4]={ list=false, - name="Description", + name="ReqDex", + refTo="", + type="Int", + width=100 + } + }, + attributes={ + }, + audiocharacterclass={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=150 + width=240 + } + }, + awarddisplay={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [16]={ + [2]={ list=false, - name="IsDisabled", + name="Text", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, - [17]={ + [3]={ list=false, - name="IsAreaOption", + name="BackgroundImage", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, - [18]={ - list=true, - name="RecipeIds", + [4]={ + list=false, + name="", refTo="", type="Int", - width=60 + width=150 }, - [19]={ + [5]={ list=false, - name="Tier", + name="", refTo="", - type="Int", - width=50 + type="Float", + width=150 }, - [20]={ - list=true, - name="ItemCategories", - refTo="CraftingItemClassCategories", + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="ForegroundImage", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", type="Key", - width=750 + width=150 }, - [21]={ + [11]={ list=false, name="", refTo="", type="Int", - width=60 + width=150 }, - [22]={ + [12]={ list=false, - name="UnlockCategories", - refTo="CraftingBenchUnlockCategories", + name="AwardVideo", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", type="Key", width=150 - }, - [23]={ + } + }, + azmerifeaturerooms={ + [1]={ list=false, - name="UnveilsRequired", + name="", refTo="", type="Int", - width=100 + width=150 }, - [24]={ + [2]={ list=false, - name="UnveilsRequired2", + name="", refTo="", type="Int", - width=100 + width=150 }, - [25]={ - list=true, + [3]={ + list=false, name="", refTo="", - type="Key", - width=50 + type="String", + width=240 }, - [26]={ + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ list=true, - name="KalandraAchievement", + name="Achievements", refTo="AchievementItems", type="Key", - width=150 + width=300 }, - [27]={ + [6]={ list=false, name="", refTo="", + type="Bool", + width=150 + } + }, + azmerilifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", type="Int", width=150 }, - [28]={ + [2]={ list=false, - name="", + name="MoreLife", refTo="", type="Int", width=150 + } + }, + azmeriwoodsdusttype={ + [1]={ + list=false, + name="AzmeriLeader", + refTo="", + type="String", + width=150 }, - [29]={ + [2]={ list=false, - name="VeiledMods", - refTo="Mods", - type="Key", - width=470 + name="BaseItemType", + refTo="", + type="String", + width=150 }, - [30]={ + [3]={ list=false, - name="AddEnchantment", - refTo="Mods", + name="Name", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="UISymbol", + refTo="MiscAnimated", type="Key", width=150 }, - [31]={ + [5]={ list=false, - name="SortCategory", - refTo="CraftingBenchSortCategories", + name="BeamArt", + refTo="MiscBeams", type="Key", width=150 }, - [32]={ + [6]={ list=false, - name="ModType", - refTo="ModType", + name="Text", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="Stat", + refTo="Stats", type="Key", - width=330 + width=250 }, - [33]={ + [8]={ list=false, - name="", + name="UiArt", refTo="", - type="Bool", + type="String", width=150 }, - [34]={ + [9]={ list=false, name="", refTo="", type="Int", - width=150 + width=50 }, - [35]={ + [10]={ list=false, - name="Stat1", - refTo="Stats", - type="Key", - width=150 + name="", + refTo="", + type="Int", + width=50 }, - [36]={ + [11]={ list=false, - name="Stat2", - refTo="Stats", + name="", + refTo="", type="Key", width=150 }, - [37]={ + [12]={ list=false, - name="Stat3", - refTo="Stats", - type="Key", - width=150 + name="", + refTo="", + type="String", + width=190 } }, - craftingbenchsortcategories={ + backenderrors={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Name", - refTo="ClientStrings", - type="Key", - width=300 - }, - [3]={ - list=false, - name="IsVisible", + name="Text", refTo="", - type="Bool", - width=150 + type="String", + width=240 } }, - craftingbenchspecificoptionid={ + ballisticbouncebehaviour={ [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 + width=220 }, [2]={ list=false, name="", refTo="", - type="Int", + type="Float", width=150 }, [3]={ list=false, name="", refTo="", - type="Int", + type="Float", width=150 }, [4]={ @@ -5047,724 +5736,551 @@ return { width=150 }, [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ list=false, name="", refTo="", type="Int", width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 } }, - craftingbenchunlockcategories={ + ballisticbounceoverride={ [1]={ list=false, name="Id", refTo="", type="String", - width=290 + width=270 }, [2]={ list=false, name="", refTo="", - type="Int", - width=70 + type="Float", + width=150 }, [3]={ - list=true, + list=false, name="", refTo="", - type="Int", - width=80 + type="Float", + width=150 }, [4]={ list=false, - name="UnlockType", + name="", refTo="", - type="String", + type="Float", width=150 }, [5]={ - list=true, + list=false, name="", refTo="", - type="Int", - width=150 + type="Bool", + width=80 }, [6]={ list=false, - name="ObtainedFrom", - refTo="", - type="String", - width=150 - } - }, - craftingitemclasscategories={ - [1]={ - list=false, - name="Id", + name="", refTo="", - type="String", - width=110 - }, - [2]={ - list=true, - name="ItemClasses", - refTo="ItemClasses", - type="Key", - width=610 + type="Int", + width=80 }, - [3]={ + [7]={ list=false, name="", refTo="", - type="String", - width=100 + type="Float", + width=150 }, - [4]={ + [8]={ list=false, name="", refTo="", - type="String", - width=130 - } - }, - crossbowskillboltoverride={ - [1]={ + type="Bool", + width=80 + }, + [9]={ list=false, name="", refTo="", - type="Key", - width=400 + type="Int", + width=80 }, - [2]={ + [10]={ list=false, name="", refTo="", - type="Key", - width=150 - } - }, - crucibledifficulty={ - }, - crucibleendgamemonsterpacks={ - }, - cruciblelifescalingperlevel={ - [1]={ + type="Bool", + width=80 + }, + [11]={ list=false, - name="Level", + name="", refTo="", type="Int", - width=150 + width=80 }, - [2]={ + [12]={ list=false, - name="LifeMore", + name="", refTo="", type="Int", - width=150 + width=80 } }, - crucibleplayerclassoffsets={ - }, - crucibletags={ + baseitemtypes={ [1]={ list=false, - name="Tags", + name="Id", refTo="", type="String", - width=150 + width=560 }, [2]={ list=false, - name="", + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=130 + }, + [3]={ + list=false, + name="Width", refTo="", - type="Bool", - width=150 - } - }, - currencyexchange={ - }, - currencyexchangecategories={ - }, - currencyitems={ - }, - currencyperitemclassconditions={ - }, - currencystashtablayout={ - }, - currencyuseeffects={ - }, - currencyusetypes={ - }, - customleaguemods={ - }, - customleaguemonsterreplacements={ - }, - customleagueroomreplacements={ - }, - customleaguetemplate={ - }, - daemonspawningdata={ - }, - damagecalculationtypes={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=210 - }, - [2]={ - list=true, - name="PhysStats", - refTo="Stats", - type="Key", - width=150 - }, - [3]={ - list=true, - name="FireStats", - refTo="Stats", - type="Key", - width=150 + type="Int", + width=40 }, [4]={ - list=true, - name="LightningStats", - refTo="Stats", - type="Key", - width=150 + list=false, + name="Height", + refTo="", + type="Int", + width=40 }, [5]={ - list=true, - name="ColdStats", - refTo="Stats", - type="Key", - width=150 + list=false, + name="Name", + refTo="", + type="String", + width=160 }, [6]={ - list=true, - name="ChaosStats", - refTo="Stats", - type="Key", - width=150 + list=false, + name="BaseType", + refTo="", + type="String", + width=290 }, [7]={ list=false, - name="CritChance", - refTo="Stats", - type="Key", - width=150 + name="DropLevel", + refTo="", + type="Int", + width=60 }, [8]={ list=false, - name="CritDamage", - refTo="Stats", + name="FlavourTextKey", + refTo="FlavourText", type="Key", - width=200 + width=100 }, [9]={ - list=false, - name="AlwaysCritFlag", - refTo="Stats", + list=true, + name="ImplicitMods", + refTo="Mods", type="Key", - width=150 + width=470 }, [10]={ list=false, - name="NeverCritFlag", - refTo="Stats", - type="Key", - width=100 + name="SizeOnGround", + refTo="", + type="Int", + width=30 }, [11]={ list=false, - name="SuppressChance", - refTo="Stats", + name="SoundEffect", + refTo="SoundEffects", type="Key", - width=100 + width=80 }, [12]={ - list=false, - name="LuckySuppressFlag", - refTo="Stats", + list=true, + name="Tags", + refTo="Tags", type="Key", - width=250 + width=150 }, [13]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="ModDomain", + refTo="ModDomains", + type="Enum", + width=80 }, [14]={ list=false, - name="SuppressEffect", - refTo="Stats", + name="ItemVisualIdentityKey", + refTo="ItemVisualIdentity", type="Key", - width=260 + width=150 }, [15]={ list=false, - name="StunThreshold", - refTo="Stats", - type="Key", - width=240 + name="HASH32", + refTo="", + type="UInt", + width=100 }, [16]={ - list=false, - name="IncStunDuration", - refTo="Stats", + list=true, + name="VendorRecipeAchievement", + refTo="AchievementItems", type="Key", - width=260 + width=180 }, [17]={ list=false, - name="MoreStunDuration", - refTo="Stats", - type="Key", - width=250 - }, - [18]={ - list=false, - name="CannotBlockFlag", - refTo="Stats", - type="String", - width=290 - }, - [19]={ - list=false, - name="SkillCannotBeBlocked", - refTo="Stats", - type="Key", - width=280 - }, - [20]={ - list=false, - name="", - refTo="", - type="Int", - width=50 - }, - [21]={ - list=false, - name="IsAttack", + name="Inflection", refTo="", - type="Bool", - width=100 + type="String", + width=80 }, - [22]={ + [18]={ list=false, - name="IncBlock", - refTo="Stats", + name="EquipAchievement", + refTo="AchievementItems", type="Key", - width=280 - }, - [23]={ - list=false, - name="IncProjectileBlock", - refTo="DamageCalculationTypes", - type="ShortKey", - width=260 + width=150 }, - [24]={ + [19]={ list=false, - name="IsAttack", + name="IsCorrupted", refTo="", type="Bool", - width=80 + width=90 }, - [25]={ - list=false, - name="BlockLuckyFlag", - refTo="Stats", + [20]={ + list=true, + name="IdentifyAchievement", + refTo="AchievementItems", type="Key", width=150 }, - [26]={ - list=false, - name="IncEnemyReducedBlock", - refTo="Stats", - type="Key", - width=170 - }, - [27]={ - list=false, - name="DeflectChance", - refTo="Stats", - type="Key", - width=100 - }, - [28]={ - list=false, - name="DeflectPercent", - refTo="Stats", - type="Key", - width=100 - }, - [29]={ - list=false, - name="DeflectLuckyFlag", - refTo="Stats", - type="Key", - width=100 - }, - [30]={ - list=false, - name="GlobalKnockbackFlag", - refTo="Stats", - type="Key", - width=120 - }, - [31]={ - list=false, - name="KnockbackOnCritlFlag", - refTo="Stats", + [21]={ + list=true, + name="IdentifyMagicAchievement", + refTo="AchievementItems", type="Key", width=150 }, - [32]={ + [22]={ list=false, - name="OffhandKnocbackChance", - refTo="Stats", - type="Key", - width=160 + name="FragmentBaseItemTypesKey", + refTo="BaseItemTypes", + type="ShortKey", + width=150 }, - [33]={ + [23]={ list=false, name="", - refTo="Stats", - type="Key", - width=150 + refTo="", + type="Bool", + width=50 }, - [34]={ + [24]={ list=false, - name="VirtualStatFlag", - refTo="Stats", + name="UncutGemSoundEffect", + refTo="SoundEffects", type="Key", width=100 }, - [35]={ + [25]={ list=false, name="", - refTo="Stats", + refTo="", type="Key", width=100 }, - [36]={ - list=false, - name="StunMultiplier", - refTo="Stats", - type="Key", - width=150 - }, - [37]={ - list=false, - name="OffHandStunMultiplier", - refTo="Stats", - type="Key", - width=150 - }, - [38]={ - list=false, - name="FakeHitType", - refTo="Stats", - type="Key", - width=320 - }, - [39]={ - list=false, - name="EffectiveDoubleCritChance", - refTo="Stats", - type="Key", - width=150 - }, - [40]={ - list=false, - name="", - refTo="Stats", - type="Key", - width=370 - }, - [41]={ + [26]={ list=false, name="", refTo="", type="Bool", width=150 }, - [42]={ + [27]={ list=false, - name="", - refTo="Stats", - type="Key", - width=150 + name="Unmodifiable", + refTo="", + type="Bool", + width=50 }, - [43]={ - list=false, - name="", - refTo="Stats", + [28]={ + list=true, + name="Achievement", + refTo="AchievementItems", type="Key", - width=150 + width=280 }, - [44]={ + [29]={ list=false, - name="", - refTo="stats", + name="ShopTag", + refTo="ShopTag", type="Key", width=150 }, - [45]={ + [30]={ list=false, name="", - refTo="Stats", + refTo="", type="Key", width=150 }, - [46]={ + [31]={ list=false, name="", - refTo="Stats", - type="Key", + refTo="", + type="Int", width=150 }, - [47]={ - list=false, + [32]={ + list=true, name="", - refTo="Stats", + refTo="", type="Key", - width=150 + width=300 }, - [48]={ - list=false, + [33]={ + list=true, name="", - refTo="Stats", + refTo="", type="Key", - width=150 + width=300 }, - [49]={ - list=false, - name="InevitableCrit", - refTo="Stats", + [34]={ + list=true, + name="", + refTo="", type="Key", - width=150 + width=300 } }, - damageeffectvariations={ + battlepasses={ [1]={ list=false, name="Id", refTo="", type="String", - width=300 + width=240 }, [2]={ - list=true, - name="MiscAnimated", - refTo="MiscAnimated", - type="Key", + list=false, + name="LeagueCategory", + refTo="", + type="Int", width=150 }, [3]={ - list=true, - name="EffectFile", + list=false, + name="International_BK2File", refTo="", type="String", - width=150 + width=240 }, [4]={ list=false, - name="", + name="China_BK2File", refTo="", - type="Int", - width=80 + type="String", + width=240 }, [5]={ list=false, - name="", + name="MapCompletionCount", refTo="", type="Int", - width=80 + width=150 }, [6]={ - list=true, + list=false, name="", refTo="", - type="String", + type="Bool", width=150 }, [7]={ - list=true, + list=false, name="", refTo="", type="String", - width=150 + width=240 }, [8]={ list=false, - name="MiscEffect", - refTo="misceffectpacks", + name="Mtx", + refTo="MtxTypes", type="Key", - width=200 + width=150 } }, - damagehiteffects={ - }, - damagehittypes={ - }, - damageparticleeffects={ - }, - damageparticleeffecttypes={ - }, - damagewhenhiteffects={ - }, - dances={ - }, - daressopitfights={ - }, - default={ - }, - defaultmonsterstats={ + battlepassrewards={ [1]={ list=false, - name="Level", - refTo="", - type="String", - width=50 + name="BattlePass", + refTo="BattlePasses", + type="Key", + width=150 }, [2]={ list=false, - name="Damage", + name="RewardTier", refTo="", - type="Float", - width=70 + type="Int", + width=150 }, [3]={ list=false, - name="Evasion", + name="", refTo="", type="Int", - width=70 + width=150 }, [4]={ list=false, - name="Accuracy", + name="", refTo="", type="Int", - width=70 + width=150 }, [5]={ list=false, - name="MonsterLife", + name="", refTo="", - type="Int", - width=70 + type="Bool", + width=150 }, [6]={ list=false, - name="XP", + name="Id", refTo="", - type="Int", - width=70 + type="String", + width=240 }, [7]={ - list=false, - name="MinionLife", - refTo="", - type="Int", - width=70 + list=true, + name="RewardedMTX", + refTo="MtxTypeGameSpecific", + type="Key", + width=300 }, [8]={ list=false, - name="Armour", + name="", refTo="", type="Int", - width=70 + width=150 }, [9]={ list=false, - name="ResistancePart", + name="RewardDescription", refTo="", - type="Int", - width=100 + type="String", + width=240 }, [10]={ list=false, - name="MinionDamage", + name="", refTo="", - type="Float", - width=100 + type="String", + width=240 }, [11]={ list=false, - name="EvasiveEvasion", + name="", refTo="", type="Int", - width=100 + width=150 }, [12]={ list=false, - name="AilmentThreshold", + name="", refTo="", type="Int", - width=100 + width=150 }, [13]={ list=false, - name="PoiseThreshold", + name="", refTo="", - type="Int", - width=100 + type="Bool", + width=150 }, [14]={ list=false, - name="AltLife2", + name="RewardTitle", refTo="", - type="Int", - width=70 + type="String", + width=240 }, [15]={ list=false, - name="LeechResistance", - refTo="", - type="Int", - width=100 + name="ItemFrameType", + refTo="ItemFrameType", + type="Key", + width=150 }, [16]={ list=false, - name="MoreElementalDamage", + name="", refTo="", type="Int", - width=140 + width=150 }, [17]={ list=false, - name="MoreChaosDamage", + name="", refTo="", type="Int", width=150 }, [18]={ list=false, - name="RareUniqueLeechResistance", + name="", refTo="", type="Int", width=150 }, [19]={ list=false, - name="UniqueMonsterDamageTakenFromMinions", + name="", refTo="", type="Int", - width=250 + width=150 }, [20]={ list=false, - name="MoreDamageAgainstNonUnique", - refTo="", - type="Int", - width=250 + name="BaseItemTypeReward", + refTo="BaseItemTypes", + type="Key", + width=150 }, [21]={ list=false, @@ -5774,781 +6290,704 @@ return { width=150 } }, - deliriumstashtablayout={ - }, - delveazuriteshop={ - }, - delvebiomes={ - }, - delvecatchupdepths={ - }, - delvecraftingmodifierdescriptions={ - }, - delvecraftingmodifiers={ - }, - delvecraftingtags={ - }, - delvedynamite={ - }, - delvefeaturerewards={ - }, - delvefeatures={ - }, - delveflares={ - }, - delvelevelscaling={ - }, - delvemonsterspawners={ - }, - delveresourceperlevel={ - }, - delverewardtierconstants={ - }, - delverobotvariations={ - }, - delverooms={ - }, - delvestashtablayout={ - }, - delveupgrades={ - }, - delveupgradetype={ + battlepassrewardtypes={ }, - descendancy={ + battlepasstracks={ [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="", - refTo="", - type="String", - width=150 - }, - [3]={ - list=false, - name="", - refTo="", - type="String", - width=150 - }, - [4]={ - list=false, - name="", + name="Description", refTo="", type="String", - width=400 + width=240 } }, - descentexiles={ - }, - descentrewardchests={ - }, - descentstarterchest={ - }, - destructivedamageeffects={ - }, - dialogueevent={ - }, - directions={ - }, - displayminionmonstertype={ + bestiarycapturablemonsters={ [1]={ list=false, - name="Id", - refTo="", - type="Int", - width=50 - }, - [2]={ - list=false, - name="MonsterVarieties", + name="MonsterVarietiesKey", refTo="MonsterVarieties", type="Key", - width=400 - } - }, - divinationcardart={ - }, - divinationcardstashtablayout={ - }, - doors={ - }, - dronebasetypes={ - }, - dronetypes={ - }, - dropeffects={ - }, - dropmodifiers={ - }, - droppool={ - }, - dropreplacementcustomreplacements={ - }, - dropreplacementcustomtargets={ - }, - dynamicstashslots={ - }, - eclipsemods={ - }, - effectdrivenskill={ - [1]={ - list=false, - name="", - refTo="", - type="Int", width=150 }, [2]={ - list=true, - name="", - refTo="miscanimated", + list=false, + name="BestiaryGroupsKey", + refTo="BestiaryGroups", type="Key", - width=500 + width=150 }, [3]={ - list=true, - name="", - refTo="", + list=false, + name="BestiaryEncountersKey", + refTo="BestiaryEncounters", type="Key", - width=50 + width=150 }, [4]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, [5]={ list=false, - name="", + name="IconSmall", refTo="", - type="Int", - width=50 + type="String", + width=240 }, [6]={ list=false, - name="", + name="Icon", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, [7]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="Boss_MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 }, [8]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="BestiaryGenusKey", + refTo="BestiaryGenus", + type="Key", + width=150 }, [9]={ - list=true, + list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [10]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="BestiaryCapturableMonstersKey", + refTo="BestiaryCapturableMonsters", + type="Key", + width=150 }, [11]={ list=false, - name="", + name="IsDisabled", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, [12]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, [13]={ list=false, name="", refTo="", - type="Int", - width=50 - }, - [14]={ + type="Bool", + width=150 + } + }, + bestiaryencounters={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [15]={ + [2]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="MonsterPacksKey", + refTo="MonsterPacks", + type="Key", + width=150 }, - [16]={ + [3]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 }, - [17]={ + [4]={ list=false, - name="", + name="MonsterSpawnerId", refTo="", - type="Int", - width=50 - }, - [18]={ + type="String", + width=240 + } + }, + bestiaryfamilies={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [19]={ + [2]={ list=false, - name="", + name="Name", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [20]={ + [3]={ list=false, - name="", + name="Icon", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [21]={ + [4]={ list=false, - name="", + name="IconSmall", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [22]={ + [5]={ list=false, - name="", + name="Illustration", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [23]={ + [6]={ list=false, - name="", + name="PageArt", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [24]={ + [7]={ list=false, - name="", + name="FlavourText", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [25]={ + [8]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, - [26]={ + [9]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="TagsKey", + refTo="Tags", + type="Key", + width=150 }, - [27]={ + [10]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [28]={ - list=false, - name="", - refTo="", - type="Int", - width=50 + [11]={ + list=true, + name="ModsKeys", + refTo="Mods", + type="Key", + width=300 }, - [29]={ + [12]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="CurrencyItemsKey", + refTo="CurrencyItems", + type="Key", + width=150 } }, - effectiveness={ - }, - effectivenesscostconstants={ + bestiarygenus={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Value", + name="Name", refTo="", - type="Float", - width=150 - } - }, - einharmissions={ - }, - einharpackfallback={ - }, - elderbossarenas={ - }, - elderguardians={ - }, - eldermapbossoverride={ - }, - endgamecorruptionmods={ - [1]={ + type="String", + width=240 + }, + [3]={ list=false, - name="Id", - refTo="Mods", + name="BestiaryGroupsKey", + refTo="BestiaryGroups", type="Key", - width=250 + width=150 }, - [2]={ - list=true, - name="ModWeight", + [4]={ + list=false, + name="Name2", refTo="", - type="Int", - width=150 + type="String", + width=240 + }, + [5]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 } }, - endgamemapbiomes={ + bestiarygroups={ [1]={ list=false, name="Id", refTo="", type="String", - width=100 + width=240 }, [2]={ list=false, - name="", + name="Description", refTo="", - type="Float", - width=80 + type="String", + width=240 }, [3]={ list=false, - name="", + name="Illustration", refTo="", - type="Float", - width=80 + type="String", + width=240 }, [4]={ list=false, - name="GroundType1", + name="Name", refTo="", type="String", - width=150 + width=240 }, [5]={ list=false, - name="", + name="Icon", refTo="", - type="Float", - width=80 + type="String", + width=240 }, [6]={ list=false, - name="", + name="IconSmall", refTo="", - type="Float", - width=80 + type="String", + width=240 }, [7]={ list=false, - name="", - refTo="", - type="Float", - width=80 + name="BestiaryFamiliesKey", + refTo="BestiaryFamilies", + type="Key", + width=150 }, [8]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + bestiarynets={ + [1]={ list=false, - name="", - refTo="", - type="Float", - width=80 - }, - [9]={ - list=false, - name="GroundType2", - refTo="", - type="String", + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", width=150 }, - [10]={ - list=true, + [2]={ + list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [11]={ + [3]={ list=false, - name="", + name="CaptureMinLevel", refTo="", - type="Float", - width=80 + type="Int", + width=150 }, - [12]={ + [4]={ list=false, - name="", + name="CaptureMaxLevel", refTo="", type="Int", - width=80 + width=150 }, - [13]={ + [5]={ list=false, - name="", + name="DropMinLevel", refTo="", type="Int", - width=80 + width=150 }, - [14]={ + [6]={ list=false, - name="", + name="DropMaxLevel", refTo="", type="Int", - width=80 + width=150 }, - [15]={ + [7]={ list=false, name="", refTo="", type="Int", - width=80 - }, - [16]={ - list=false, - name="GroundTypeCorrupted1", - refTo="", - type="String", width=150 }, - [17]={ + [8]={ list=false, - name="GroundTypeCorrupted2", + name="IsEnabled", refTo="", - type="String", + type="Bool", width=150 - }, - [18]={ + } + }, + bestiaryrecipecategories={ + [1]={ list=false, - name="Name", + name="Id", refTo="", type="String", - width=150 + width=240 }, - [19]={ + [2]={ list=false, - name="GroundType3", + name="Text", refTo="", type="String", - width=150 + width=240 } }, - endgamemapcompletionquests={ - }, - endgamemapcontent={ + bestiaryrecipecomponent={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ - list=true, - name="SpawnChance", + list=false, + name="MinLevel", refTo="", type="Int", - width=100 + width=150 }, [3]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="BestiaryFamiliesKey", + refTo="BestiaryFamilies", + type="Key", + width=150 }, [4]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="BestiaryGroupsKey", + refTo="BestiaryGroups", + type="Key", + width=150 }, [5]={ list=false, - name="", + name="ModsKey", + refTo="Mods", + type="Key", + width=150 + }, + [6]={ + list=false, + name="BestiaryCapturableMonstersKey", + refTo="BestiaryCapturableMonsters", + type="Key", + width=150 + }, + [7]={ + list=false, + name="BeastRarity", + refTo="Rarity", + type="Key", + width=150 + }, + [8]={ + list=false, + name="BestiaryGenusKey", + refTo="BestiaryGenus", + type="Key", + width=150 + } + }, + bestiaryrecipeitemcreation={ + }, + bestiaryrecipes={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=80 + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="BestiaryRecipeComponentKeys", + refTo="BestiaryRecipeComponent", + type="Key", + width=300 + }, + [4]={ + list=false, + name="Notes", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Category", + refTo="BestiaryRecipeCategories", + type="Key", + width=150 }, [6]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [7]={ list=true, - name="InherentStat", - refTo="Stats", + name="Achievements", + refTo="AchievementItems", type="Key", - width=220 + width=300 }, [8]={ - list=true, + list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [9]={ list=false, - name="Icon", + name="", refTo="", - type="String", + type="Int", width=150 }, [10]={ list=false, - name="Description", + name="", refTo="", - type="String", + type="Int", width=150 }, [11]={ list=false, - name="Name", - refTo="", - type="String", - width=100 - } - }, - endgamemapcontentset={ - [1]={ - list=false, - name="Id", + name="GameMode", refTo="", - type="String", + type="Int", width=150 }, - [2]={ - list=true, - name="EndGameMapContentKey", - refTo="EndGameMapContent", + [12]={ + list=false, + name="FlaskMod", + refTo="Mods", type="Key", - width=350 + width=150 } }, - endgamemapdecorations={ - }, - endgamemaplocation={ + betrayalchoiceactions={ [1]={ list=false, name="Id", refTo="", type="String", - width=260 + width=240 }, [2]={ - list=true, - name="Biomes", - refTo="EndGameMapBiomes", + list=false, + name="BetrayalChoicesKey", + refTo="BetrayalChoices", type="Key", - width=210 + width=150 }, [3]={ - list=true, - name="ConnectedBiomes", - refTo="EndGameMapBiomes", + list=false, + name="ClientStringsKey", + refTo="ClientStrings", type="Key", - width=190 + width=150 } }, - endgamemappins={ + betrayalchoices={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="UnavailablePin", - refTo="MiscAnimated", - type="Key", - width=150 + name="Text", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="AvailablePin", - refTo="MiscAnimated", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [4]={ - list=false, - name="ActivePin", - refTo="MiscAnimated", - type="Key", - width=150 - }, - [5]={ - list=false, - name="FailedPin", - refTo="MiscAnimated", - type="Key", - width=150 - }, - [6]={ - list=false, - name="CompletePin", - refTo="MiscAnimated", + list=true, + name="Achievements", + refTo="AchievementItems", type="Key", - width=150 + width=300 } }, - endgamemaps={ + betrayaldialogue={ [1]={ list=false, name="Id", - refTo="", - type="Int", - width=60 + refTo="BetrayalTargets", + type="Key", + width=150 }, [2]={ list=false, - name="BossVersion", - refTo="WorldAreas", - type="Key", - width=190 + name="", + refTo="", + type="Int", + width=150 }, [3]={ - list=true, + list=false, name="", refTo="", type="Int", - width=160 + width=150 }, [4]={ list=true, - name="NativePacks", - refTo="MonsterPacks", - type="Key", - width=230 + name="", + refTo="", + type="Int", + width=300 }, [5]={ list=false, - name="FlavourText", - refTo="", - type="String", - width=450 + name="BetrayalTargetsKey", + refTo="BetrayalTargets", + type="Key", + width=150 }, [6]={ list=false, - name="MinWatchstoneTier", - refTo="", - type="Int", - width=120 - }, - [7]={ - list=true, name="", refTo="", type="Int", - width=80 + width=150 }, - [8]={ + [7]={ list=false, - name="DefaultMapPin", - refTo="EndGameMapPins", + name="Job", + refTo="BetrayalJobs", type="Key", width=150 }, - [9]={ - list=false, - name="", - refTo="", + [8]={ + list=true, + name="Relationship", + refTo="BetrayalRelationshipState", type="Key", - width=340 + width=300 }, - [10]={ + [9]={ list=false, - name="ContentSetKey", - refTo="EndGameMapContentSet", + name="BetrayalUpgradesKey", + refTo="BetrayalUpgrades", type="Key", width=150 }, - [11]={ + [10]={ list=false, - name="CorruptedMapPin", - refTo="EndGameMapPins", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, - [12]={ - list=false, + [11]={ + list=true, name="", refTo="", type="Int", - width=80 + width=300 + }, + [12]={ + list=true, + name="PossibleChoices", + refTo="BetrayalChoiceActions", + type="Key", + width=300 }, [13]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [14]={ - list=false, - name="CompletedMapPin", - refTo="EndGameMapPins", - type="Key", - width=150 + list=true, + name="", + refTo="", + type="Int", + width=300 }, [15]={ list=false, - name="", - refTo="", + name="NPCTextAudioKey", + refTo="NPCTextAudio", type="Key", width=150 }, @@ -6556,600 +6995,503 @@ return { list=true, name="", refTo="", - type="Key", - width=150 + type="Int", + width=300 + } + }, + betrayaldialoguecue={ + }, + betrayalflags={ + }, + betrayalforts={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [17]={ + [2]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [18]={ + [3]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [19]={ + [4]={ list=false, name="", refTo="", - type="String", + type="Int", + width=150 + }, + [5]={ + list=false, + name="ExtraTerrainFeaturesKey", + refTo="ExtraTerrainFeatures", + type="Key", width=150 } }, - endlessledgechests={ - }, - environmentfootprints={ - }, - environments={ - }, - environmenttransitions={ - }, - essencemods={ + betrayaljobs={ [1]={ list=false, - name="Essence", - refTo="Essences", - type="Key", - width=390 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="TargetItemCategory", - refTo="EssenceTargetItemCategories", - type="Key", - width=150 + name="Text", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="Mod1", - refTo="Mods", + name="ExtraTerrainFeaturesKey", + refTo="ExtraTerrainFeatures", type="Key", width=150 }, [4]={ list=false, - name="Mod2", - refTo="Mods", - type="Key", - width=150 + name="IconArt", + refTo="", + type="String", + width=240 }, [5]={ list=false, name="", refTo="", - type="String", - width=270 + type="Int", + width=150 }, [6]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, [7]={ list=false, - name="", - refTo="", + name="WorldAreasKey", + refTo="WorldAreas", type="Key", width=150 - } - }, - essences={ - [1]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=370 - }, - [2]={ - list=false, - name="HASH32", - refTo="", - type="UInt", - width=100 }, - [3]={ + [8]={ list=true, - name="DropLevel", - refTo="", - type="Int", - width=80 + name="Completion_AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=300 }, - [4]={ + [9]={ list=true, - name="MonsterMod1", - refTo="Mods", + name="OpenChests_AchievementItemsKey", + refTo="AchievementItems", type="Key", - width=250 + width=300 }, - [5]={ + [10]={ list=true, - name="Weighting", - refTo="Mods", - type="Int", - width=70 - }, - [6]={ - list=false, - name="MonsterMod2", - refTo="Mods", + name="MissionCompletion_AchievementItemsKey", + refTo="AchievementItems", type="Key", - width=250 - }, - [7]={ + width=300 + } + }, + betrayalranks={ + [1]={ list=false, - name="IsPerfect", + name="Id", refTo="", - type="Bool", - width=150 + type="String", + width=240 }, - [8]={ + [2]={ list=false, - name="GreaterVariant", - refTo="Essences", - type="ShortKey", - width=250 + name="Text", + refTo="", + type="String", + width=240 }, - [9]={ + [3]={ list=false, - name="EssenceTier", + name="Level", refTo="", type="Int", - width=80 + width=150 }, - [10]={ + [4]={ list=false, - name="MapMod", - refTo="Stats", - type="Key", - width=150 + name="RankImage", + refTo="", + type="String", + width=240 } }, - essencestashtablayout={ - }, - essencetargetitemcategories={ + betrayalrelationshipstate={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ - list=true, - name="ItemClasses", - refTo="ItemClasses", - type="Key", - width=150 - }, - [3]={ list=false, name="Text", refTo="", type="String", - width=150 + width=240 } }, - essencetype={ + betrayaltargetflags={ + }, + betrayaltargetjobachievements={ [1]={ list=false, - name="Name", - refTo="", - type="String", - width=90 + name="BetrayalTargetsKey", + refTo="BetrayalTargets", + type="Key", + width=150 }, [2]={ list=false, - name="TypeTier", - refTo="", - type="Int", - width=60 + name="BetrayalJobsKey", + refTo="BetrayalJobs", + type="Key", + width=150 }, [3]={ list=false, - name="CorruptOnly", - refTo="", - type="Bool", - width=100 - }, - [4]={ - list=false, - name="WordsKey", - refTo="Words", + name="AchievementItemsKey", + refTo="AchievementItems", type="Key", width=150 } }, - eventcoins={ - }, - eventseason={ - }, - eventseasonrewards={ - }, - evergreenachievements={ - }, - evergreenachievementtypes={ - }, - executegeal={ - }, - expandingpulse={ - }, - expeditionareas={ - }, - expeditionbalanceperlevel={ - }, - expeditioncurrency={ - }, - expeditiondealfamilies={ - }, - expeditiondeals={ - }, - expeditiondealsdialogue={ - }, - expeditionfactions={ - }, - expeditionmarkerscommon={ - }, - expeditionnpcs={ - }, - expeditionrelicmodcategories={ - }, - expeditionrelicmods={ - }, - expeditionrelics={ - }, - expeditionstoragelayout={ - }, - expeditionterrainfeatures={ - }, - experiencelevels={ + betrayaltargetlifescalingperlevel={ [1]={ list=false, - name="", + name="Level", refTo="", - type="String", + type="Int", width=150 }, [2]={ list=false, - name="", + name="MoreLife", refTo="", type="Int", width=150 - }, - [3]={ + } + }, + betrayaltargets={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="UInt", - width=150 - } - }, - explodingstormbuffs={ - }, - extraterrainfeaturefamily={ - }, - extraterrainfeatures={ - }, - fixedhideoutdoodads={ - }, - fixedhideoutdoodadtypes={ - }, - fixedmissions={ - }, - flasks={ - [1]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=250 - }, - [2]={ - list=false, - name="Name", - refTo="", - type="String", + type="String", + width=240 + }, + [2]={ + list=false, + name="BetrayalRanksKey", + refTo="BetrayalRanks", + type="Key", width=150 }, [3]={ list=false, - name="", - refTo="FlaskType", - type="Enum", - width=50 + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 }, [4]={ list=false, - name="LifePerUse", - refTo="", - type="Int", - width=80 + name="BetrayalJobsKey", + refTo="BetrayalJobs", + type="Key", + width=150 }, [5]={ list=false, - name="ManaPerUse", + name="Art", refTo="", - type="Int", - width=80 + type="String", + width=240 }, [6]={ list=false, - name="RecoveryTime", + name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [7]={ list=false, - name="RecoveryTime2", - refTo="", - type="Int", + name="ItemClasses", + refTo="ItemClasses", + type="Key", width=150 }, [8]={ list=false, - name="Buff", - refTo="BuffDefinitions", - type="Key", - width=260 + name="FullName", + refTo="", + type="String", + width=240 }, [9]={ + list=false, + name="Safehouse_ARMFile", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="ShortName", + refTo="", + type="String", + width=240 + }, + [11]={ list=false, name="", refTo="", type="Int", width=150 }, - [10]={ - list=true, - name="UtilityBuffs", - refTo="UtilityFlaskBuffs", + [12]={ + list=false, + name="SafehouseLeader_AchievementItemsKey", + refTo="AchievementItems", type="Key", - width=240 - } - }, - flaskstashbasetypeordering={ - }, - flasktype={ - }, - flatphysicaldamagevalues={ - [1]={ + width=150 + }, + [13]={ list=false, - name="Id", - refTo="AttackSkillDamageScalingType", + name="Level3_AchievementItemsKey", + refTo="AchievementItems", type="Key", - width=80 + width=150 }, - [2]={ + [14]={ list=false, - name="Level", + name="", refTo="", type="Int", - width=80 + width=150 }, - [3]={ + [15]={ list=false, - name="MinPhys", + name="", refTo="", type="Int", - width=80 + width=150 }, - [4]={ + [16]={ list=false, - name="MaxPhys", + name="", refTo="", type="Int", - width=80 - } - }, - flavourtext={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 + width=150 }, - [2]={ + [17]={ list=false, - name="HASH16", - refTo="", - type="UInt16", - width=70 + name="UltimatumAchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=150 }, - [3]={ + [18]={ list=false, - name="Text", + name="ScriptArgument", refTo="", type="String", - width=500 + width=240 } }, - flavourtextimages={ - }, - footprints={ - }, - footstepaudio={ - }, - fragmentstashtablayout={ - }, - gambleprices={ - }, - gameconstants={ + betrayaltraitorrewards={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=300 + name="BetrayalJobsKey", + refTo="BetrayalJobs", + type="Key", + width=150 }, [2]={ list=false, - name="Value", - refTo="", - type="Int", - width=100 + name="BetrayalTargetsKey", + refTo="BetrayalTargets", + type="Key", + width=150 }, [3]={ list=false, - name="Divisor", + name="BetrayalRanksKey", + refTo="BetrayalRanks", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Description", refTo="", - type="Int", - width=100 - } - }, - gamelogos={ - }, - gameobjecttasks={ - }, - gameobjecttasksfromstats={ - }, - gamepadbutton={ - }, - gamepadbuttonbindaction={ - }, - gamepadbuttoncombination={ - }, - gamepaditemactiontypes={ - }, - gamepadthumbstick={ - }, - gamepadtype={ - }, - gamestats={ - [1]={ + type="String", + width=240 + }, + [5]={ list=false, - name="", + name="Description2", refTo="", type="String", - width=150 + width=240 } }, - gemeffects={ + betrayalupgrades={ [1]={ list=false, name="Id", refTo="", type="String", - width=200 + width=240 }, [2]={ list=false, name="Name", refTo="", type="String", - width=220 + width=240 }, [3]={ - list=false, - name="GrantedEffect", - refTo="GrantedEffects", - type="Key", - width=150 - }, - [4]={ list=false, name="Description", refTo="", type="String", - width=200 - }, - [5]={ - list=false, - name="SecondarySupportName", - refTo="GrantedEffects", - type="String", - width=150 + width=240 }, - [6]={ + [4]={ list=true, - name="Tags", - refTo="GemTags", + name="ModsKey", + refTo="Mods", type="Key", - width=500 + width=300 }, - [7]={ + [5]={ list=false, - name="HungryLoopMod", - refTo="Mods", - type="Key", - width=280 + name="ArtFile", + refTo="", + type="String", + width=240 }, - [8]={ + [6]={ list=false, - name="ItemColor", + name="BetrayalUpgradeSlotsKey", refTo="", type="Int", - width=80 + width=150 }, - [9]={ + [7]={ list=true, name="", refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="ItemVisualIdentityKey0", + refTo="ItemVisualIdentity", type="Key", - width=20 + width=150 + }, + [9]={ + list=false, + name="ItemVisualIdentityKey1", + refTo="ItemVisualIdentity", + type="Key", + width=150 }, [10]={ - list=true, - name="AdditionalGrantedEffects", + list=false, + name="GrantedEffectsKey", refTo="GrantedEffects", type="Key", - width=300 + width=150 }, [11]={ - list=false, - name="SpiritGem", - refTo="", - type="Bool", - width=100 - }, - [12]={ list=false, name="", refTo="", - type="Bool", - width=110 - }, - [13]={ - list=true, - name="GrantedEffectDisplayOrder", - refTo="", type="Int", width=150 }, - [14]={ + [12]={ list=false, - name="", + name="ItemClassesKey", + refTo="ItemClasses", + type="Key", + width=150 + } + }, + betrayalupgradeslots={ + }, + betrayalwalllifescalingperlevel={ + [1]={ + list=false, + name="Level", refTo="", type="Int", - width=50 + width=150 }, - [15]={ + [2]={ list=false, - name="", + name="MoreLife", refTo="", type="Int", - width=50 + width=150 } }, - gemitemvisualeffect={ - }, - gemitemvisualidentity={ + beyonddemons={ }, - gemtags={ + beyondfactions={ [1]={ list=false, name="Id", refTo="", type="String", + width=240 + }, + [2]={ + list=false, + name="Boss", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + bindablevirtualkeys={ + [1]={ + list=false, + name="KeyCode", + refTo="", + type="Int", width=150 }, [2]={ @@ -7157,88 +7499,23 @@ return { name="Name", refTo="", type="String", - width=150 + width=240 }, [3]={ - list=false, - name="LocalLevelStat", - refTo="Stats", - type="Key", - width=270 - }, - [4]={ - list=false, - name="LocalQualityStat", - refTo="Stats", - type="Key", - width=290 - }, - [5]={ - list=false, - name="GlobalSpellLevelStat", - refTo="Stats", - type="Key", - width=230 - } - }, - gemtypes={ - }, - gemvisualeffect={ - }, - genericbuffauras={ - [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 } }, - genericleaguerewardtypes={ - }, - genericleaguerewardtypevisuals={ - }, - genericskillindicator={ - }, - geometryattack={ - }, - geometrychannel={ - }, - geometryprojectiles={ - }, - geometrytrigger={ - }, - giftwrapartvariations={ - }, - globalaudioconfig={ - }, - goldactscaling={ - }, - goldbasetypeprices={ + blightbalanceperlevel={ [1]={ list=false, - name="BaseItemTypeKey", - refTo="BaseItemTypes", - type="Key", - width=530 - }, - [2]={ - list=false, - name="GoldPrice", + name="Level", refTo="", type="Int", width=150 - } - }, - goldconstants={ - }, - goldinherentskillpricesperlevel={ - [1]={ - list=false, - name="", - refTo="ActiveSkills", - type="Key", - width=340 }, [2]={ list=false, @@ -7248,718 +7525,645 @@ return { width=150 }, [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ list=false, name="", refTo="", type="Int", width=150 - } - }, - goldmodprices={ - [1]={ - list=false, - name="Id", - refTo="Mods", - type="Key", - width=390 }, - [2]={ + [5]={ list=false, - name="Value", + name="", refTo="", type="Int", width=150 }, - [3]={ + [6]={ list=false, - name="Weight?", + name="", refTo="", type="Int", width=150 }, - [4]={ + [7]={ list=false, name="", refTo="", type="Int", width=150 }, - [5]={ + [8]={ list=false, name="", refTo="", type="Int", width=150 }, - [6]={ + [9]={ list=false, - name="CraftableModTypes", - refTo="CraftableModTypes", - type="Key", - width=250 - }, - [7]={ - list=true, - name="CraftingTags", - refTo="AdvancedCraftingBenchCustomTags", - type="Key", + name="", + refTo="", + type="Int", width=150 } }, - goldrespecprices={ + blightbosslifescalingperlevel={ [1]={ list=false, name="Level", refTo="", type="Int", - width=100 + width=150 }, [2]={ list=false, - name="Cost", + name="MoreLife", refTo="", type="Int", - width=100 + width=150 } }, - goldvisualidentities={ - }, - grandmasters={ - }, - grantedeffectlabels={ + blightchesttypes={ [1]={ list=false, - name="Id", - refTo="", - type="String", + name="ChestsKey", + refTo="Chests", + type="Key", width=150 + } + }, + blightcraftingitems={ + [1]={ + list=false, + name="Oil", + refTo="BaseItemTypes", + type="Key", + width=300 }, [2]={ list=false, - name="Label", + name="Tier", refTo="", - type="String", + type="Int", width=150 }, [3]={ - list=false, - name="Show", - refTo="", - type="Bool", - width=60 + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=150 }, [4]={ list=false, - name="PrimaryStatSetStats", + name="UseType", refTo="", - type="Bool", - width=140 + type="Int", + width=150 }, [5]={ list=false, - name="SkillDescription", + name="NameShort", refTo="", - type="Bool", - width=100 + type="String", + width=150 + }, + [6]={ + list=false, + name="MapMod", + refTo="Mods", + type="Key", + width=150 } }, - grantedeffectqualitystats={ + blightcraftingrecipes={ [1]={ list=false, - name="GrantedEffect", - refTo="GrantedEffects", - type="Key", + name="Id", + refTo="", + type="String", width=150 }, [2]={ - list=true, - name="GrantedStats", - refTo="Stats", + list=false, + name="BlightCraftingResultsKey", + refTo="BlightCraftingResults", type="Key", - width=460 - }, - [3]={ - list=true, - name="StatValues", - refTo="", - type="Int", width=150 }, - [4]={ - list=true, - name="AddTypes", - refTo="ActiveSkillType", - type="Enum", - width=100 - }, - [5]={ - list=true, - name="AddMinionTypes", - refTo="ActiveSkillType", - type="Enum", - width=240 - }, - [6]={ + [3]={ list=true, - name="StatSetIndex", - refTo="", - type="Int", - width=150 + name="Recipe", + refTo="BlightCraftingItems", + type="Key", + width=810 } }, - grantedeffectqualitytypes={ - }, - grantedeffects={ + blightcraftingresults={ [1]={ list=false, name="Id", refTo="", type="String", - width=300 + width=150 }, [2]={ list=false, - name="IsSupport", - refTo="", - type="Bool", - width=60 + name="ModsKey", + refTo="Mods", + type="Key", + width=150 }, [3]={ - list=true, - name="SupportTypes", - refTo="ActiveSkillType", + list=false, + name="PassiveSkillsKey", + refTo="PassiveSkills", type="Key", - width=250 - }, - [4]={ + width=260 + } + }, + blightcraftingtypes={ + [1]={ list=false, - name="SupportGemLetter", + name="Id", refTo="", type="String", - width=100 - }, - [5]={ - list=true, - name="AddTypes", - refTo="ActiveSkillType", - type="Key", - width=90 - }, - [6]={ - list=true, - name="ExcludeTypes", - refTo="ActiveSkillType", - type="Key", width=150 }, - [7]={ - list=false, - name="SupportGemsOnly", - refTo="", - type="Bool", - width=100 - }, - [8]={ - list=false, - name="Hash32", - refTo="", - type="UInt", - width=80 - }, - [9]={ - list=false, - name="CannotBeSupported", - refTo="", - type="Bool", - width=110 - }, - [10]={ - list=false, - name="LifeLeech?", - refTo="", - type="Int", - width=70 - }, - [11]={ + [2]={ list=false, - name="CastTime", + name="", refTo="", type="Int", - width=70 - }, - [12]={ - list=false, - name="ActiveSkill", - refTo="ActiveSkills", - type="Key", - width=250 - }, - [13]={ - list=false, - name="IgnoreMinionTypes", - refTo="", - type="Bool", - width=100 + width=150 }, - [14]={ + [3]={ list=false, - name="CooldownNotRecoverDuringActive", + name="", refTo="", type="Bool", - width=180 - }, - [15]={ - list=true, - name="AddMinionTypes", - refTo="ActiveSkillType", - type="Key", width=150 - }, - [16]={ + } + }, + blightcraftinguniques={ + [1]={ list=false, - name="Animation", - refTo="Animation", + name="WordsKey", + refTo="Words", type="Key", - width=100 - }, - [17]={ + width=150 + } + }, + blightedsporeauras={ + [1]={ list=false, - name="MultiPartAchievement", - refTo="MultiPartAchievements", + name="BuffDefinitionsKey", + refTo="BuffDefinitions", type="Key", width=150 }, - [18]={ - list=false, - name="", - refTo="", - type="Bool", - width=40 - }, - [19]={ - list=false, - name="RegularVariant", + [2]={ + list=true, + name="BuffStatValues", refTo="", - type="ShortKey", - width=50 + type="Int", + width=300 }, - [20]={ + [3]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [21]={ - list=false, + [4]={ + list=true, name="", refTo="", type="Int", - width=50 + width=300 }, - [22]={ + [5]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 + } + }, + blightencountertypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [23]={ + [2]={ list=false, - name="", + name="Icon", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [24]={ + [3]={ list=false, - name="", + name="IsGeneric", refTo="", type="Bool", - width=50 + width=150 }, - [25]={ + [4]={ list=false, - name="GrantedEffectStatSets", - refTo="GrantedEffectStatSets", - type="Key", - width=250 - }, - [26]={ - list=true, - name="AdditionalStatSets", - refTo="GrantedEffectStatSets", - type="Key", - width=500 - }, - [27]={ + name="Weight", + refTo="", + type="Int", + width=150 + } + }, + blightencounterwaves={ + [1]={ list=false, - name="Audio", + name="MonsterSpawnerId", refTo="", type="String", - width=100 + width=240 }, - [28]={ - list=true, - name="CostType", - refTo="CostTypes", + [2]={ + list=false, + name="EncounterType", + refTo="BlightEncounterTypes", type="Key", width=150 }, - [29]={ + [3]={ list=false, name="", refTo="", - type="Bool", - width=150 - }, - [30]={ - list=true, - name="", - refTo="", type="Int", width=150 }, - [31]={ + [4]={ list=false, name="", refTo="", type="Int", width=150 }, - [32]={ - list=true, - name="WeaponRestrictions", - refTo="ActiveSkillWeaponRequirement", - type="Key", - width=290 - }, - [33]={ + [5]={ list=false, - name="HitAudio", + name="", refTo="", - type="String", - width=360 - }, - [34]={ - list=false, - name="MinionType", - refTo="MinionType", - type="Key", + type="Int", width=150 }, - [35]={ + [6]={ list=false, - name="CostBaseEffectiveness", + name="Wave", refTo="", - type="Float", + type="Int", width=150 - }, - [36]={ + } + }, + blightrewardtypes={ + [1]={ list=false, - name="CostIncrementalEffectiveness", + name="Id", refTo="", - type="Float", - width=150 + type="String", + width=240 }, - [37]={ + [2]={ list=false, - name="", + name="Icon", refTo="", - type="Int", - width=90 + type="String", + width=240 } }, - grantedeffectsperlevel={ + blightstashtablayout={ [1]={ list=false, - name="GrantedEffect", - refTo="GrantedEffects", - type="Key", - width=250 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="Level", - type="Int", - width=50 + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 }, [3]={ list=false, - name="CostMultiplier", + name="XOffset", refTo="", type="Int", - width=80 + width=150 }, [4]={ list=false, - name="StoredUses", + name="YOffset", refTo="", type="Int", width=150 }, [5]={ list=false, - name="Cooldown", + name="FirstSlotIndex", refTo="", type="Int", - width=80 + width=150 }, [6]={ list=false, - name="CooldownBypassType", - refTo="CooldownBypassTypes", - type="Enum", - width=130 + name="Width", + refTo="", + type="Int", + width=150 }, [7]={ list=false, - name="VaalSouls", - refTo="Stats", + name="Height", + refTo="", type="Int", - width=100 + width=150 }, [8]={ list=false, - name="VaalStoredUses", + name="SlotSize", refTo="", type="Int", - width=120 + width=150 }, [9]={ list=false, - name="CooldownGroup", + name="", refTo="", - type="Int", - width=90 + type="Bool", + width=150 }, [10]={ list=false, - name="PvPDamageMultiplier", + name="", refTo="", - type="Int", - width=120 + type="Bool", + width=150 }, [11]={ list=false, - name="SoulGainPreventionDuration", + name="", refTo="", - type="Int", + type="Bool", width=150 }, [12]={ list=false, - name="AttackSpeedMultiplier", + name="", refTo="", - type="Int", - width=130 - }, - [13]={ + type="Bool", + width=150 + } + }, + blighttopologies={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Int", - width=90 + type="String", + width=240 }, - [14]={ + [2]={ list=false, - name="", - refTo="", - type="Int", + name="BlightTopologyNodesKey", + refTo="BlightTopologyNodes", + type="Key", width=150 }, - [15]={ + [3]={ list=false, name="", refTo="", type="Int", width=150 }, - [16]={ + [4]={ list=false, name="", refTo="", type="Int", width=150 }, - [17]={ + [5]={ list=false, name="", refTo="", type="Int", width=150 }, - [18]={ + [6]={ list=false, - name="AttackTime", + name="", refTo="", type="Int", width=150 }, - [19]={ + [7]={ list=false, - name="SpiritReservation", + name="", refTo="", type="Int", width=150 }, - [20]={ + [8]={ list=false, name="", refTo="", type="Int", width=150 }, - [21]={ - list=true, - name="CostAmounts", - refTo="", - type="Int", - width=240 - }, - [22]={ - list=false, - name="ActorLevel", - refTo="", - type="Float", - width=100 - }, - [23]={ + [9]={ list=false, - name="ReservationMultiplier", + name="", refTo="", type="Int", width=150 } }, - grantedeffectstatsets={ + blighttopologynodes={ [1]={ list=false, name="Id", refTo="", type="String", - width=300 + width=240 }, [2]={ - list=false, - name="LabelType", - refTo="GrantedEffectLabels", - type="Key", - width=150 + list=true, + name="", + refTo="", + type="Int", + width=300 }, [3]={ - list=true, - name="ImplicitStats", - refTo="Stats", - type="Key", - width=600 + list=false, + name="Size", + refTo="", + type="Int", + width=150 }, [4]={ - list=true, - name="ConstantStats", - refTo="Stats", - type="Key", - width=800 + list=false, + name="Angle", + refTo="", + type="Int", + width=150 }, [5]={ list=true, - name="ConstantStatsValues", + name="", refTo="", type="Int", - width=200 + width=300 }, [6]={ - list=false, - name="BaseEffectiveness", + list=true, + name="", refTo="", - type="Float", - width=120 + type="Int", + width=300 }, [7]={ - list=false, - name="IncrementalEffectiveness", + list=true, + name="", refTo="", - type="Float", - width=130 + type="Int", + width=300 }, [8]={ - list=false, - name="DamageIncrementalEffectiveness", + list=true, + name="", refTo="", - type="Float", - width=200 + type="Int", + width=300 }, [9]={ list=true, - name="RemoveStats", - refTo="Stats", - type="Key", - width=870 + name="", + refTo="", + type="Int", + width=300 }, [10]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [11]={ list=false, - name="UseSetAttackMulti", + name="", refTo="", - type="Bool", - width=130 + type="Int", + width=150 } }, - grantedeffectstatsetsperlevel={ + blighttowerauras={ [1]={ list=false, - name="GrantedEffectStatSets", - refTo="GrantedEffectStatSets", - type="Key", - width=250 + name="Id", + refTo="", + type="Int", + width=150 }, [2]={ list=false, - name="GemLevel", - refTo="", - type="Int", - width=70 + name="BuffDefinitionsKey", + refTo="BuffDefinitions", + type="Key", + width=150 }, [3]={ list=false, - name="AttackCritChance", + name="", refTo="", type="Int", - width=100 + width=150 }, [4]={ list=false, - name="OffhandCritChance", + name="MiscAnimatedKey", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + blighttowers={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=120 + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 }, [5]={ list=true, - name="BaseResolvedValues", - refTo="Stats", - type="Int", - width=110 + name="NextUpgradeOptions", + refTo="BlightTowers", + type="Key", + width=300 }, [6]={ - list=true, - name="AdditionalStatsValues", - refTo="Stats", + list=false, + name="", + refTo="", type="Int", width=150 }, [7]={ - list=true, - name="GrantedEffect", - refTo="GrantedEffects", - type="Key", - width=190 + list=false, + name="Tier", + refTo="", + type="String", + width=240 }, [8]={ list=false, - name="", + name="Radius", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [9]={ list=false, @@ -7969,1667 +8173,44448 @@ return { width=150 }, [10]={ - list=true, - name="AdditionalBooleanStats", - refTo="Stats", + list=false, + name="SpendResourceAchievement", + refTo="AchievementItems", type="Key", - width=200 + width=150 }, [11]={ - list=true, - name="FloatStats", + list=false, + name="StatsKey", refTo="Stats", type="Key", - width=400 + width=150 }, [12]={ list=true, - name="InterpolationBases", - refTo="EffectivenessCostConstants", + name="StatsKeys", + refTo="Stats", type="Key", - width=150 + width=300 }, [13]={ list=true, - name="AdditionalStats", + name="StatsKeys2", refTo="Stats", type="Key", - width=400 + width=300 }, [14]={ - list=true, - name="StatInterpolations", + list=false, + name="", refTo="", - type="Int", + type="Bool", + width=150 + } + }, + blighttowersperlevel={ + [1]={ + list=false, + name="BlightTowersKey", + refTo="BlightTowers", + type="Key", width=150 }, - [15]={ - list=true, - name="FloatStatsValues", + [2]={ + list=false, + name="", refTo="", - type="Float", - width=270 + type="Int", + width=150 }, - [16]={ + [3]={ list=false, - name="ActorLevel", + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Cost", refTo="", - type="Float", + type="Int", width=150 }, - [17]={ + [5]={ list=false, - name="BaseMultiplier", + name="", refTo="", type="Int", width=150 } }, - grantedskillsocketnumbers={ + bloodhiteffects={ [1]={ list=false, - name="PlayerLevel", - refTo="", - type="Int", + name="BloodType", + refTo="BloodTypes", + type="Key", width=150 }, [2]={ list=false, - name="NumSupportSockets", + name="", refTo="", type="Int", width=150 - } - }, - graphicalitemreceptacle={ - }, - graphicalitemreceptacleslot={ - }, - groundeffecteffecttypes={ - }, - groundeffects={ - }, - groundeffecttypes={ - }, - hapticevents={ - }, - harbingermaps={ - }, - harbingers={ - }, - hardmodeextracontentchances={ - }, - harvestcolours={ - }, - harvestcraftcostscalingbybasetype={ - }, - harvestcraftfilters={ - }, - harvestcraftoptionicons={ - }, - harvestcraftoptions={ - }, - harvestcrafttiers={ - }, - harvestdurability={ - }, - harvestencounterscaling={ - }, - harvestinfrastructure={ - }, - harvestinfrastructurecategories={ - }, - harvestlifescalingperlevel={ - }, - harvestmetacraftingoptions={ - }, - harvestobjects={ - }, - harvestperlevelvalues={ - }, - harvestplantboosterfamilies={ - }, - harvestplantboosters={ - }, - harvestseeditems={ - }, - harvestseeds={ - }, - harvestseedtypes={ - }, - harvestspecialcraftcosts={ - }, - harvestspecialcraftoptions={ - }, - harveststoragelayout={ - }, - heistareaformationlayout={ - }, - heistareas={ - }, - heistbalanceperlevel={ - }, - heistblueprintwindowtypes={ - }, - heistchestrewardtypes={ - }, - heistchests={ - }, - heistchesttypes={ - }, - heistchokepointformation={ - }, - heistconstants={ - }, - heistcontracts={ - }, - heistdoodadnpcs={ - }, - heistdoors={ - }, - heistequipment={ - }, - heistformationmarkertype={ - }, - heistgeneration={ - }, - heistintroareas={ - }, - heistjobs={ - }, - heistjobsexperienceperlevel={ - }, - heistlocktype={ - }, - heistnpcauras={ - }, - heistnpcblueprinttypes={ - }, - heistnpcdialogue={ - }, - heistnpcs={ - }, - heistnpcstats={ - }, - heistobjectives={ - }, - heistobjectivevaluedescriptions={ - }, - heistpatrolpacks={ - }, - heistquestcontracts={ - }, - heistrevealingnpcs={ - }, - heistrooms={ - }, - heistroomtypes={ - }, - heiststoragelayout={ - }, - heistvaluescaling={ - }, - hellscapeaoreplacements={ - }, - hellscapeareapacks={ - }, - hellscapeexperiencelevels={ - }, - hellscapefactions={ - }, - hellscapeimmunemonsters={ - }, - hellscapeitemmodificationtiers={ - }, - hellscapelifescalingperlevel={ - }, - hellscapemodificationinventorylayout={ - }, - hellscapemods={ - }, - hellscapemonsterpacks={ - }, - hellscapepassives={ - }, - hellscapepassivetree={ - }, - hideoutcraftingbenchdoodads={ - }, - hideoutcraftingbenchinterfacevisuals={ - }, - hideoutdoodadcategory={ - }, - hideoutdoodads={ - }, - hideoutdoodadtags={ - }, - hideoutnpcs={ - [1]={ + }, + [3]={ list=false, - name="NPC", - refTo="NPCs", + name="Effect", + refTo="DamageEffectVariations", type="Key", - width=370 - } - }, - hideoutrarity={ - }, - hideoutresistpenalties={ - [1]={ + width=150 + }, + [4]={ list=false, - name="Name", + name="", refTo="", - type="String", + type="Key", width=150 }, - [2]={ + [5]={ list=false, - name="Value", + name="", refTo="", - type="Int", - width=100 + type="Key", + width=150 } }, - hideouts={ - }, - hideoutstashdoodads={ - }, - hideoutwaypointdoodads={ - }, - hudenergyshieldvisuals={ - }, - hudlifevisuals={ - }, - hudvisualsfromstat={ - }, - impactsounddata={ - }, - incubators={ - }, - incursionarchitect={ - }, - incursionbrackets={ - }, - incursionchestrewards={ - }, - incursionchests={ - }, - incursionroomadditionalbossdrops={ - }, - incursionroombossfightevents={ - }, - incursionrooms={ - }, - incursionuniqueupgradecomponents={ - }, - incursionuniqueupgrades={ + bloodlines={ }, - indexableskillgems={ + bloodtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=220 + width=240 }, [2]={ + list=true, + name="GroundEffect", + refTo="GroundEffects", + type="Key", + width=300 + }, + [3]={ list=false, - name="HASH16", - refTo="", - type="UInt16", + name="Visual", + refTo="BuffVisuals", + type="Key", width=150 }, - [3]={ + [4]={ + list=false, + name="VisualMoving", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [5]={ list=false, name="", refTo="", - type="Bool", + type="Float", width=150 }, - [4]={ + [6]={ list=false, name="", refTo="", - type="Bool", + type="Float", width=150 }, - [5]={ + [7]={ list=false, name="", refTo="", - type="Bool", + type="Float", width=150 }, - [6]={ - list=false, + [8]={ + list=true, + name="DeathEffect", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [9]={ + list=true, name="", refTo="", - type="Bool", + type="String", + width=300 + }, + [10]={ + list=false, + name="CorpseExplodeEffect", + refTo="MiscEffectPacks", + type="Key", width=150 } }, - indexablesupportgems={ + boltstatreference={ [1]={ list=false, name="Id", refTo="", type="Int", - width=80 + width=150 }, [2]={ list=false, - name="BaseItemType", - refTo="SkillGems", - type="Key", - width=300 - }, - [3]={ - list=false, - name="Skill", + name="AOFile", refTo="", type="String", - width=200 + width=240 } }, - indicatorconditions={ - }, - influenceexalts={ - }, - influencemodupgrades={ + bosslifescalingperlevel={ + [1]={ + list=false, + name="MonsterLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="LifeMultiplier", + refTo="", + type="Int", + width=150 + } }, - influencetags={ + breachartvariations={ [1]={ list=false, - name="ItemClass", - refTo="ItemClasses", + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Portal", + refTo="MiscAnimated", type="Key", width=150 }, - [2]={ - enumBase=1, + [3]={ list=false, - name="InfluenceType", - refTo="influencetypes", - type="Enum", + name="Chest", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="LargeChest", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Effect", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [6]={ + list=false, + name="BuffVisualSmall", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [7]={ + list=false, + name="BuffVisualBig", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [8]={ + list=false, + name="LargeChestMarker", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [9]={ + list=true, + name="SoulerCoaster", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [10]={ + list=false, + name="CloseEffect", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + breachbosslifescalingperlevel={ + [1]={ + list=false, + name="MonsterLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="LifeMultiplier", + refTo="", + type="Int", + width=150 + } + }, + breachelement={ + [1]={ + list=false, + name="Element", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ShardBaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="BaseBreachstone", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="BossMapMod", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=false, + name="DuplicateBoss", + refTo="Stats", + type="Key", + width=150 + } + }, + breachstashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + } + }, + breachstashtabsubstashgroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Group", + refTo="BreachStashTabSubStashGroup", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + } + }, + breachstones={ + [1]={ + list=false, + name="BaseType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MapTierEquivalent", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [4]={ + list=false, + name="UpgradesTo", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [5]={ + list=false, + name="UpgradeCurrency", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + breachstoneupgrades={ + }, + brequelcraftingitems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + brequelencounterskills={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, + brequelexchangelayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + brequelfruitrewardtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="PCPrompt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="ConsolePrompt", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + brequelfruittypes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Reward", + refTo="BrequelFruitRewardTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + brequelitemresourcevalues={ + [1]={ + list=false, + name="FleshgraftLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="GraftbloodStorage", + refTo="", + type="Int", + width=150 + } + }, + brequelpassivesubtrees={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="RewardStringSingle", + refTo="ClientStrings", + type="Key", + width=150 + }, + [3]={ + list=false, + name="RewardStringMultiple", + refTo="ClientStrings", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Wombgift", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + brequeltreepassiveunlocks={ + [1]={ + list=false, + name="Passive", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Tree", + refTo="BrequelPassiveSubTrees", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + brequeltreeslots={ + [1]={ + list=false, + name="PassiveSkill", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BrequelSubTree", + refTo="BrequelPassiveSubTrees", + type="Key", + width=150 + } + }, + buffdefinitions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=440 + }, + [3]={ + list=false, + name="Invisible", + refTo="", + type="Bool", + width=50 + }, + [4]={ + list=false, + name="Removable", + refTo="", + type="Bool", + width=60 + }, + [5]={ + list=false, + name="Name", + refTo="", + type="String", + width=170 + }, + [6]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=610 + }, + [7]={ + list=false, + name="CancelOnDeath", + refTo="", + type="Bool", + width=90 + }, + [8]={ + list=false, + name="MergeMode", + refTo="BuffMergeModes", + type="Enum", + width=70 + }, + [9]={ + list=false, + name="ShowCount", + refTo="", + type="Bool", + width=70 + }, + [10]={ + list=false, + name="MaxStat", + refTo="Stats", + type="Key", + width=250 + }, + [11]={ + list=false, + name="CurrentStat", + refTo="Stats", + type="Key", + width=170 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=60 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=60 + }, + [14]={ + list=false, + name="Visual", + refTo="BuffVisuals", + type="Key", + width=180 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [17]={ + list=false, + name="BuffCategory", + refTo="", + type="Int", + width=80 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [22]={ + list=false, + name="Limit", + refTo="", + type="Int", + width=40 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [24]={ + list=false, + name="Implementation", + refTo="", + type="String", + width=180 + }, + [25]={ + list=false, + name="isRecovery", + refTo="", + type="Bool", + width=60 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [27]={ + list=false, + name="MinStat", + refTo="Stats", + type="Key", + width=180 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [29]={ + list=false, + name="UIStackMode", + refTo="", + type="Int", + width=80 + }, + [30]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [31]={ + list=false, + name="IsSkillBuff", + refTo="", + type="Bool", + width=70 + }, + [32]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [33]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [36]={ + list=true, + name="MultiPartAchievement", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [38]={ + list=true, + name="Stats2", + refTo="Stats", + type="Key", + width=250 + }, + [39]={ + list=true, + name="GrantedFlags", + refTo="Stats", + type="Key", + width=250 + }, + [40]={ + list=true, + name="GrantedStats", + refTo="Stats", + type="Key", + width=450 + }, + [41]={ + list=true, + name="ConditionStats", + refTo="Stats", + type="Key", + width=150 + }, + [42]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [43]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [44]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [45]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [46]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=100 + }, + [47]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [48]={ + list=false, + name="", + refTo="", + type="String", + width=50 + }, + [49]={ + list=true, + name="Stats3", + refTo="Stats", + type="Key", + width=150 + }, + [50]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [51]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [52]={ + list=true, + name="PreloadGroup", + refTo="PreloadGroups", + type="Key", + width=50 + }, + [53]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [54]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [55]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + } + }, + buffgroups={ + }, + buffmergemodes={ + }, + buffstackuimodes={ + }, + bufftemplates={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=380 + }, + [2]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=400 + }, + [3]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=100 + }, + [4]={ + list=false, + name="AuraRadius", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Visual", + refTo="BuffVisuals", + type="Key", + width=350 + }, + [8]={ + list=false, + name="Duration", + refTo="", + type="Float", + width=50 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [10]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=350 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + buffvisualartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + } + }, + buffvisualorbart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + buffvisualorbs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="OrbType", + refTo="BuffVisualOrbTypes", + type="Key", + width=150 + }, + [3]={ + list=true, + name="OrbArt", + refTo="BuffVisualOrbArt", + type="Key", + width=250 + }, + [4]={ + list=true, + name="OrbArtPlayer", + refTo="BuffVisualOrbArt", + type="Key", + width=250 + }, + [5]={ + list=true, + name="OrbArt2", + refTo="BuffVisualOrbArt", + type="Key", + width=150 + } + }, + buffvisualorbtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=70 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [8]={ + list=false, + name="RadiusStat", + refTo="Stats", + type="Key", + width=200 + }, + [9]={ + list=false, + name="HeightStat", + refTo="Stats", + type="Key", + width=200 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [12]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [14]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [16]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [20]={ + list=true, + name="", + refTo="", + type="String", + width=300 + } + }, + buffvisuals={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=250 + }, + [3]={ + list=true, + name="EPKFiles1", + refTo="", + type="String", + width=150 + }, + [4]={ + list=true, + name="EPKFiles2", + refTo="", + type="String", + width=150 + }, + [5]={ + list=true, + name="PreloadGroups", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [7]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [8]={ + list=false, + name="MiscAnimated1", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [9]={ + list=false, + name="MiscAnimated2", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Description", + refTo="", + type="String", + width=150 + }, + [11]={ + list=false, + name="EPKFile", + refTo="", + type="String", + width=150 + }, + [12]={ + list=false, + name="HasExtraArt", + refTo="", + type="Bool", + width=50 + }, + [13]={ + list=false, + name="ExtraArt", + refTo="", + type="String", + width=150 + }, + [14]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=true, + name="EPKFiles", + refTo="", + type="String", + width=150 + }, + [16]={ + list=true, + name="Orbs", + refTo="BuffVisualOrbs", + type="Key", + width=150 + }, + [17]={ + list=false, + name="MiscAnimated3", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [18]={ + list=false, + name="WeaponEffect", + refTo="SkillWeaponEffects", + type="Key", + width=150 + }, + [19]={ + list=false, + name="FadeInVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [20]={ + list=false, + name="AudioEvent", + refTo="CharacterAudioEvents", + type="Key", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [25]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [29]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [30]={ + list=false, + name="FadeOutEffect", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + buffvisualsartvariations={ + [1]={ + list=false, + name="Buff", + refTo="", + type="String", + width=250 + }, + [2]={ + list=true, + name="Visuals", + refTo="BuffVisuals", + type="Key", + width=350 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + } + }, + buffvisualsetentries={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [3]={ + list=false, + name="Visual", + refTo="BuffVisuals", + type="Key", + width=250 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + } + }, + buffvisualshapeshiftoverride={ + [1]={ + list=false, + name="BuffVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [2]={ + list=false, + name="ShapeShiftVisualIdentity", + refTo="ShapeShiftVisualIdentity", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=true, + name="EPKFiles", + refTo="", + type="String", + width=300 + } + }, + buildplannerinventories={ + [1]={ + list=false, + name="Inventory", + refTo="Inventories", + type="Key", + width=150 + } + }, + buildplannerskilltrees={ + [1]={ + list=false, + name="PassiveSkillTree", + refTo="PassiveSkillTrees", + type="Key", + width=150 + } + }, + byocrafting={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Action", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="DescriptionRuthless", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="ActionRuthless", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="AchievementItems", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + caravanstops={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="MapPins", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=true, + name="", + refTo="WorldAreas", + type="Key", + width=300 + }, + [13]={ + list=false, + name="", + refTo="MapPins", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="MapPins", + type="Key", + width=150 + } + }, + chakraslots={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + } + }, + chanceableitemclasses={ + [1]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + characteraudioevents={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Event", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="GoddessAudio", + refTo="CharacterTextAudio", + type="Key", + width=150 + }, + [6]={ + list=true, + name="JackTheAxeAudio", + refTo="CharacterTextAudio", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [9]={ + list=true, + name="Cooldown", + refTo="MiscCooldowns", + type="Key", + width=70 + }, + [10]={ + list=false, + name="", + refTo="CharacterAudioEvents", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=true, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=300 + }, + [13]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="CharacterAudioEvents", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=true, + name="NPCAudio", + refTo="NPCTextAudio", + type="Key", + width=300 + } + }, + charactercreationbutton={ + [1]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + charactercreationdialogue={ + [1]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 + }, + [2]={ + list=false, + name="IntroAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="EscapeAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + } + }, + charactercreationicons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Video", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + } + }, + charactereventtextaudio={ + [1]={ + list=false, + name="Event", + refTo="CharacterAudioEvents", + type="Key", + width=250 + }, + [2]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=250 + }, + [3]={ + list=true, + name="TextAudio", + refTo="CharacterTextAudio", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=100 + }, + [5]={ + list=false, + name="NPCDialogue", + refTo="NPCTalkDialogue", + type="Key", + width=150 + } + }, + charactermeleeskills={ + [1]={ + list=false, + name="MainHandItem", + refTo="WieldableClasses", + type="Key", + width=200 + }, + [2]={ + list=false, + name="OffHandItem", + refTo="WieldableClasses", + type="Key", + width=200 + }, + [3]={ + list=true, + name="SkillGem", + refTo="SkillGems", + type="Key", + width=700 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + } + }, + characterpaneldescriptionmodes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="FormatString_Positive", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="FormatString_Negative", + refTo="", + type="String", + width=240 + } + }, + characterpanelstatcontexts={ + }, + characterpanelstats={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="StatsKeys1", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=false, + name="CharacterPanelDescriptionModesKey", + refTo="CharacterPanelDescriptionModes", + type="Key", + width=150 + }, + [5]={ + list=true, + name="StatsKeys2", + refTo="Stats", + type="Key", + width=300 + }, + [6]={ + list=true, + name="StatsKeys3", + refTo="Stats", + type="Key", + width=300 + }, + [7]={ + list=false, + name="CharacterPanelTabsKey", + refTo="CharacterPanelTabs", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="StatsKeys4", + refTo="Stats", + type="Key", + width=300 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="StatsKeys5", + refTo="Stats", + type="Key", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=true, + name="StatsKeys6", + refTo="Stats", + type="Key", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + characterpaneltabs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + characters={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=70 + }, + [3]={ + list=false, + name="AnimatedObject", + refTo="", + type="String", + width=270 + }, + [4]={ + list=false, + name="ActorFile", + refTo="", + type="String", + width=270 + }, + [5]={ + list=false, + name="BaseMaxLife", + refTo="", + type="Int", + width=100 + }, + [6]={ + list=false, + name="BaseMaxMana", + refTo="", + type="Int", + width=100 + }, + [7]={ + list=false, + name="WeaponSpeed", + refTo="", + type="Int", + width=100 + }, + [8]={ + list=false, + name="MinDamage", + refTo="", + type="Int", + width=100 + }, + [9]={ + list=false, + name="MaxDamage", + refTo="", + type="Int", + width=100 + }, + [10]={ + list=false, + name="MaxAttackDistance", + refTo="", + type="Int", + width=120 + }, + [11]={ + list=false, + name="Icon", + refTo="", + type="String", + width=80 + }, + [12]={ + list=false, + name="IntegerId", + refTo="", + type="Int", + width=80 + }, + [13]={ + list=false, + name="BaseStrength", + refTo="", + type="Int", + width=100 + }, + [14]={ + list=false, + name="BaseDexterity", + refTo="", + type="Int", + width=100 + }, + [15]={ + list=false, + name="BaseIntelligence", + refTo="", + type="Int", + width=100 + }, + [16]={ + list=true, + name="StartingSkill", + refTo="GrantedEffectsPerLevel", + type="Key", + width=150 + }, + [17]={ + list=false, + name="Description", + refTo="", + type="String", + width=150 + }, + [18]={ + list=false, + name="StartSkillGem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Key", + width=30 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=30 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=30 + }, + [22]={ + list=false, + name="CharacterSize", + refTo="", + type="Int", + width=80 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=30 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=30 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=30 + }, + [26]={ + list=false, + name="IntroSoundFile", + refTo="", + type="String", + width=150 + }, + [27]={ + list=true, + name="StartWeapons", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [28]={ + list=false, + name="Gender", + refTo="", + type="String", + width=60 + }, + [29]={ + list=false, + name="TraitDescription", + refTo="", + type="String", + width=150 + }, + [30]={ + list=false, + name="", + refTo="", + type="Key", + width=30 + }, + [31]={ + list=false, + name="", + refTo="", + type="Key", + width=30 + }, + [32]={ + list=true, + name="", + refTo="", + type="Key", + width=40 + }, + [33]={ + list=false, + name="LevelUpEffect", + refTo="MiscEffectPacks", + type="Key", + width=110 + }, + [34]={ + list=false, + name="", + refTo="", + type="Int", + width=40 + }, + [35]={ + list=false, + name="PassiveTreeImage", + refTo="", + type="String", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="String", + width=40 + }, + [37]={ + list=false, + name="AttrsAsId", + refTo="", + type="String", + width=90 + }, + [38]={ + list=false, + name="LoginScreen", + refTo="", + type="String", + width=100 + }, + [39]={ + list=false, + name="PlayerCritter", + refTo="", + type="String", + width=150 + }, + [40]={ + list=false, + name="PlayerEffect", + refTo="", + type="String", + width=150 + }, + [41]={ + list=false, + name="AfterImage", + refTo="", + type="String", + width=150 + }, + [42]={ + list=false, + name="Mirage", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [43]={ + list=false, + name="CloneImmobile", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [44]={ + list=false, + name="ReplicateClone", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [45]={ + list=false, + name="LightningClone", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [46]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [47]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [48]={ + list=false, + name="SkillTreeBackground", + refTo="", + type="String", + width=160 + }, + [49]={ + list=false, + name="Clone", + refTo="MonsterVarieties", + type="Key", + width=140 + }, + [50]={ + list=true, + name="", + refTo="", + type="Key", + width=40 + }, + [51]={ + list=false, + name="MirageWarrior", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [52]={ + list=false, + name="DoubleTwo", + refTo="MonsterVarieties", + type="Key", + width=110 + }, + [53]={ + list=false, + name="DarkExile", + refTo="MonsterVarieties", + type="Key", + width=170 + }, + [54]={ + list=false, + name="Attr", + refTo="", + type="String", + width=70 + }, + [55]={ + list=false, + name="AttrLowercase", + refTo="", + type="String", + width=110 + }, + [56]={ + list=false, + name="Script", + refTo="", + type="String", + width=90 + }, + [57]={ + list=false, + name="GhostArmMtx", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [58]={ + list=false, + name="", + refTo="", + type="Int", + width=40 + }, + [59]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [60]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [61]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [62]={ + list=false, + name="BaseClass", + refTo="", + type="String", + width=100 + }, + [63]={ + list=false, + name="StartingPassive", + refTo="StartingPassiveSkills", + type="Key", + width=110 + }, + [64]={ + list=false, + name="BaseClass", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [65]={ + list=true, + name="CreationIcons", + refTo="CharacterCreationIcons", + type="Key", + width=100 + }, + [66]={ + list=false, + name="", + refTo="", + type="Float", + width=40 + }, + [67]={ + list=false, + name="GemCuttingIcon", + refTo="", + type="String", + width=150 + }, + [68]={ + list=false, + name="Portrait", + refTo="NPCPortraits", + type="Key", + width=60 + }, + [69]={ + list=false, + name="", + refTo="ItemVisualIdentity", + type="Key", + width=150 + } + }, + charactershapeshiftbasicskills={ + [1]={ + list=false, + name="Id", + refTo="ShapeShiftForms", + type="Key", + width=150 + }, + [2]={ + list=false, + name="SkillGem", + refTo="SkillGems", + type="Key", + width=250 + } + }, + characterstartitems={ + }, + characterstartqueststate={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="QuestKeys", + refTo="Quest", + type="Key", + width=300 + }, + [3]={ + list=true, + name="QuestFlags", + refTo="QuestFlags", + type="Key", + width=300 + }, + [4]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [5]={ + list=true, + name="MapPinsKeys", + refTo="MapPins", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="QuestFlags", + type="Key", + width=300 + }, + [7]={ + list=true, + name="Areas", + refTo="WorldAreas", + type="Key", + width=300 + } + }, + characterstartstates={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="PassiveSkillsKeys", + refTo="PassiveSkills", + type="Key", + width=300 + }, + [6]={ + list=false, + name="CharacterStartStateSet", + refTo="CharacterStartStateSet", + type="Key", + width=150 + }, + [7]={ + list=false, + name="HubArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [8]={ + list=true, + name="CharacterStartQuestStates", + refTo="CharacterStartQuestState", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="InfoText", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="Ascendancy", + refTo="Ascendancy", + type="Key", + width=150 + }, + [12]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [13]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [14]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [15]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [16]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [17]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + characterstartstateset={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + charactertextaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="SoundFile", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="ParrotSoundFile", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + charactervariationgroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="CharacterBase", + refTo="Characters", + type="Key", + width=150 + }, + [3]={ + list=false, + name="CharacterVariation", + refTo="Characters", + type="Key", + width=150 + } + }, + chargevariations={ + [1]={ + list=false, + name="ChargeType", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="BuffVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + chaticons={ + [1]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Image", + refTo="", + type="String", + width=240 + } + }, + chestclusters={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="ChestsKeys", + refTo="Chests", + type="Key", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + chesteffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Normal_EPKFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Normal_Closed_AOFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Normal_Open_AOFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Magic_EPKFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Unique_EPKFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Rare_EPKFile", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Magic_Closed_AOFile", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="Unique_Closed_AOFile", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="Rare_Closed_AOFile", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="Magic_Open_AOFile", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="Unique_Open_AOFile", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="Rare_Open_AOFile", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="Normal_Open_EPKFile", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="Magic_Open_EPKFile", + refTo="", + type="String", + width=240 + }, + [16]={ + list=false, + name="Rare_Open_EPKFile", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="Unique_Open_EPKFile", + refTo="", + type="String", + width=240 + } + }, + chestitemtemplates={ + }, + chests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="AOFiles", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [12]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=true, + name="ModsKeys", + refTo="Mods", + type="Key", + width=300 + }, + [15]={ + list=true, + name="TagsKeys", + refTo="Tags", + type="Key", + width=300 + }, + [16]={ + list=false, + name="ChestEffectsKey", + refTo="ChestEffects", + type="Key", + width=150 + }, + [17]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [21]={ + list=false, + name="UnlockItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [22]={ + list=true, + name="Encounter_AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [23]={ + list=false, + name="Environment", + refTo="Environments", + type="Key", + width=150 + }, + [24]={ + list=false, + name="InheritsFrom", + refTo="", + type="String", + width=240 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [26]={ + list=false, + name="MinimapIcons", + refTo="MinimapIcons", + type="Key", + width=150 + }, + [27]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [28]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [30]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [32]={ + list=false, + name="Colour", + refTo="Colours", + type="Key", + width=150 + }, + [33]={ + list=false, + name="OutlineColour", + refTo="Colours", + type="Key", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [36]={ + list=true, + name="LeagueChallenges", + refTo="AchievementItems", + type="Key", + width=300 + }, + [37]={ + list=false, + name="IsHardmode", + refTo="", + type="Bool", + width=150 + }, + [38]={ + list=true, + name="StatsHardmode", + refTo="Stats", + type="Key", + width=300 + }, + [39]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [40]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [41]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [42]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [44]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [45]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [46]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [47]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [48]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + } + }, + chooseoneuniquenpcs={ + [1]={ + list=false, + name="NPC", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + classpassiveskilloverrides={ + [1]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=200 + }, + [2]={ + list=false, + name="OriginalNode", + refTo="PassiveSkills", + type="Key", + width=200 + }, + [3]={ + list=false, + name="SwitchedNode", + refTo="PassiveSkills", + type="Key", + width=200 + } + }, + clientlakedifficulty={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Scaling", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + clientleagueaction={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="GamepadButton", + refTo="GamepadButton", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="GamepadIcon", + refTo="", + type="String", + width=240 + } + }, + clientstrings={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=320 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=670 + }, + [3]={ + list=false, + name="XBoxText", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="XBoxText2", + refTo="", + type="String", + width=90 + }, + [5]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [6]={ + list=false, + name="PlaystationText", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + clientstrings2={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=280 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=300 + }, + [3]={ + list=false, + name="XBoxText", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="XBoxText2", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [6]={ + list=false, + name="PlaystationText", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + clientuiscreens={ + }, + cloneshot={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MiscAnimated1", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MiscAnimated2", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MiscAnimated3", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + colours={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Red", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Green", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Blue", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="RGB_String", + refTo="", + type="String", + width=150 + } + }, + combatuiprompts={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + commands={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="Command", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="EnglishCommand", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="Description", + refTo="", + type="String", + width=600 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + completionnotification={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Sound", + refTo="SoundEffects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="PopupMessage", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + completionnotifications={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Title", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="UIArt", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Video", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="", + refTo="Colours", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="Colours", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + componentarmour={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=320 + }, + [2]={ + list=false, + name="Armour", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=false, + name="Evasion", + refTo="", + type="Int", + width=70 + }, + [4]={ + list=false, + name="EnergyShield", + refTo="", + type="Int", + width=70 + }, + [5]={ + list=false, + name="MovementPenalty", + refTo="", + type="Int", + width=100 + } + }, + componentattributerequirements={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="String", + width=310 + }, + [2]={ + list=false, + name="Str", + refTo="", + type="Int", + width=40 + }, + [3]={ + list=false, + name="Dex", + refTo="", + type="Int", + width=40 + }, + [4]={ + list=false, + name="Int", + refTo="", + type="Int", + width=40 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + componentcharges={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="String", + width=250 + }, + [2]={ + list=false, + name="Max", + refTo="", + type="Int", + width=50 + }, + [3]={ + list=false, + name="PerUse", + refTo="", + type="Int", + width=50 + }, + [4]={ + list=false, + name="MaxCharges2", + refTo="", + type="Int", + width=50 + }, + [5]={ + list=false, + name="PerCharge2", + refTo="", + type="Int", + width=50 + } + }, + componentweapon={ + }, + conditionalachievements={ + [1]={ + list=false, + name="Achievement", + refTo="AchievementItems", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + contentcultures={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + cooldownbypasstypes={ + }, + cooldowngroups={ + }, + coreleagues={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=true, + name="", + refTo="Stats", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=true, + name="", + refTo="Stats", + type="Key", + width=300 + }, + [10]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=true, + name="", + refTo="Stats", + type="Key", + width=300 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="MapObjective", + refTo="EndgameMapObjectives", + type="Key", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [22]={ + list=false, + name="MapContent", + refTo="EndgameMapContent", + type="Key", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="AtlasStat", + refTo="Stats", + type="Key", + width=150 + } + }, + corpseexplosiongibs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="EPKFiles", + refTo="", + type="String", + width=300 + } + }, + corpsesinkareaoverrides={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + corpsesinkvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="EPKFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="AOFiles", + refTo="", + type="String", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + corpsetypetags={ + [1]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Buff", + refTo="BuffDefinitions", + type="Key", + width=180 + }, + [4]={ + list=false, + name="Icon", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [6]={ + list=false, + name="TypeTag", + refTo="TypeTags", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="MinimapIcon", + refTo="MinimapIcons", + type="Key", + width=150 + } + }, + cosmeticsequippanelmode={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="PanelUpperBackground", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="UpperBackground", + refTo="", + type="String", + width=240 + } + }, + cosmeticspaneltab={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Slot", + refTo="MicrotransactionSlot", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="", + refTo="MicrotransactionSlot", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="", + refTo="MicrotransactionSlot", + type="Key", + width=300 + } + }, + costtypes={ + [1]={ + list=false, + name="Resource", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ResourceString", + refTo="", + type="String", + width=190 + }, + [4]={ + list=false, + name="Divisor", + refTo="", + type="Int", + width=50 + }, + [5]={ + list=false, + name="PerMinute", + refTo="", + type="Bool", + width=100 + } + }, + craftablemodtypes={ + [1]={ + list=false, + name="Id", + refTo="ModType", + type="Key", + width=320 + }, + [2]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + } + }, + craftingbenchcustomactions={ + }, + craftingbenchoptions={ + [1]={ + list=false, + name="HideoutNPC", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="Order", + refTo="", + type="String", + width=50 + }, + [3]={ + list=true, + name="Mod", + refTo="", + type="Key", + width=260 + }, + [4]={ + list=false, + name="Cost_BaseItemTypes", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="CostValue", + refTo="CraftingBenchSortCategories", + type="Key", + width=60 + }, + [6]={ + list=false, + name="RequiredLevel", + refTo="", + type="Int", + width=100 + }, + [7]={ + list=true, + name="Name", + refTo="", + type="Key", + width=200 + }, + [8]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [9]={ + list=true, + name="ItemClasses", + refTo="CraftingItemClassCategories", + type="Key", + width=130 + }, + [10]={ + list=true, + name="Links", + refTo="", + type="Key", + width=50 + }, + [11]={ + list=true, + name="Colours", + refTo="", + type="Key", + width=50 + }, + [12]={ + list=false, + name="Sockets", + refTo="", + type="Bool", + width=50 + }, + [13]={ + list=true, + name="ItemQuantity", + refTo="", + type="Key", + width=80 + }, + [14]={ + list=true, + name="", + refTo="", + type="Key", + width=100 + }, + [15]={ + list=false, + name="Description", + refTo="", + type="Key", + width=150 + }, + [16]={ + list=false, + name="IsDisabled", + refTo="", + type="Key", + width=70 + }, + [17]={ + list=false, + name="IsAreaOption", + refTo="", + type="Bool", + width=80 + }, + [18]={ + list=true, + name="RecipeIds", + refTo="", + type="Int", + width=60 + }, + [19]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=50 + }, + [20]={ + list=true, + name="ItemCategories", + refTo="CraftingItemClassCategories", + type="Key", + width=750 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=60 + }, + [22]={ + list=false, + name="UnlockCategories", + refTo="CraftingBenchUnlockCategories", + type="Key", + width=150 + }, + [23]={ + list=false, + name="UnveilsRequired", + refTo="", + type="Int", + width=100 + }, + [24]={ + list=false, + name="UnveilsRequired2", + refTo="", + type="Int", + width=100 + }, + [25]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [26]={ + list=true, + name="KalandraAchievement", + refTo="AchievementItems", + type="Key", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [29]={ + list=false, + name="VeiledMods", + refTo="Mods", + type="Key", + width=470 + }, + [30]={ + list=false, + name="AddEnchantment", + refTo="Mods", + type="Key", + width=150 + }, + [31]={ + list=false, + name="SortCategory", + refTo="CraftingBenchSortCategories", + type="Key", + width=150 + }, + [32]={ + list=false, + name="ModType", + refTo="ModType", + type="Key", + width=330 + }, + [33]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [35]={ + list=false, + name="Stat1", + refTo="Stats", + type="Key", + width=150 + }, + [36]={ + list=false, + name="Stat2", + refTo="Stats", + type="Key", + width=150 + }, + [37]={ + list=false, + name="Stat3", + refTo="Stats", + type="Key", + width=150 + } + }, + craftingbenchsortcategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="ClientStrings", + type="Key", + width=300 + }, + [3]={ + list=false, + name="IsVisible", + refTo="", + type="Bool", + width=150 + } + }, + craftingbenchspecificoptionid={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + craftingbenchunlockcategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=290 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="UnlockType", + refTo="", + type="String", + width=150 + }, + [5]={ + list=true, + name="CraftingItemClassCategories", + refTo="CraftingItemClassCategories", + type="Key", + width=150 + }, + [6]={ + list=false, + name="ObtainedFrom", + refTo="", + type="String", + width=150 + } + }, + craftingitemclasscategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=110 + }, + [2]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=610 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=100 + }, + [4]={ + list=false, + name="Text", + refTo="", + type="String", + width=130 + } + }, + craftingspreecurrencies={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HasSpecificBaseItem", + refTo="", + type="Bool", + width=150 + } + }, + craftingspreetype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="CurrencyItem", + refTo="CurrencyItems", + type="Key", + width=300 + }, + [3]={ + list=true, + name="CurrencyCount", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + crossbowskillboltoverride={ + [1]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=400 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ProjectileOverride", + refTo="ProjectileOverrides", + type="Key", + width=150 + } + }, + crucibledifficulty={ + [1]={ + list=false, + name="Number", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + crucibleendgamemonsterpacks={ + [1]={ + list=false, + name="Tier", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + cruciblelifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="LifeMore", + refTo="", + type="Int", + width=150 + } + }, + crucibleplayerclassoffsets={ + [1]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + crucibletags={ + [1]={ + list=false, + name="Tags", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + currencyconsumeeffects={ + [1]={ + list=false, + name="BaeItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ConsumeEffect", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + currencyexchange={ + [1]={ + list=false, + name="Item", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Category", + refTo="CurrencyExchangeCategories", + type="Key", + width=150 + }, + [3]={ + list=false, + name="SubCategory", + refTo="CurrencyExchangeCategories", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="EnabledInChallengeLeague", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="GoldPurchaseFee", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + currencyexchangecategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + currencyitems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="StackSize", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="CurrencyUseType", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Action", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Directions", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="FullStack_BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="Usage_AchievementItems", + refTo="AchievementItems", + type="Key", + width=300 + }, + [9]={ + list=false, + name="Scroll", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="Possession_AchievementItem", + refTo="AchievementItems", + type="Key", + width=150 + }, + [11]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [12]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [13]={ + list=false, + name="CurrencyTab_StackSize", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="XBoxDirections", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=true, + name="ModifyMapsAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [17]={ + list=true, + name="ModifyContractsAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [18]={ + list=true, + name="CombineAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [19]={ + list=false, + name="ChangedForHardmode", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="DescriptionHardmode", + refTo="", + type="String", + width=240 + }, + [21]={ + list=false, + name="IsGold", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + currencyperitemclassconditions={ + [1]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + currencystashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="ShowIfEmpty", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="SlotGroup", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + } + }, + currencyuseeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BK2File", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="SoundFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="BK2File2", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + currencyuseeffectsfromitem={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Effect", + refTo="CurrencyUseEffects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, + currencyusetypes={ + }, + cursetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="HexproofStat", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=false, + name="ActionType", + refTo="ActionTypes", + type="Key", + width=150 + } + }, + customleaguemods={ + }, + customleaguemonsterreplacements={ + [1]={ + list=false, + name="RegularLeagueMonster", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="GauntletMonster", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + customleagueroomreplacements={ + [1]={ + list=false, + name="RegularLeague", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Gauntlet", + refTo="", + type="String", + width=240 + } + }, + customleaguetemplate={ + }, + customsocketart={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + } + }, + daemonspawningdata={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MonsterVarieties", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + damagecalculationtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=210 + }, + [2]={ + list=true, + name="PhysStats", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=true, + name="FireStats", + refTo="Stats", + type="Key", + width=150 + }, + [4]={ + list=true, + name="LightningStats", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=true, + name="ColdStats", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=true, + name="ChaosStats", + refTo="Stats", + type="Key", + width=150 + }, + [7]={ + list=false, + name="CritChance", + refTo="Stats", + type="Key", + width=150 + }, + [8]={ + list=false, + name="CritDamage", + refTo="Stats", + type="Key", + width=200 + }, + [9]={ + list=false, + name="AlwaysCritFlag", + refTo="Stats", + type="Key", + width=150 + }, + [10]={ + list=false, + name="NeverCritFlag", + refTo="Stats", + type="Key", + width=100 + }, + [11]={ + list=false, + name="SuppressChance", + refTo="Stats", + type="Key", + width=100 + }, + [12]={ + list=false, + name="LuckySuppressFlag", + refTo="Stats", + type="Key", + width=250 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [14]={ + list=false, + name="SuppressEffect", + refTo="Stats", + type="Key", + width=260 + }, + [15]={ + list=false, + name="StunThreshold", + refTo="Stats", + type="Key", + width=240 + }, + [16]={ + list=false, + name="IncStunDuration", + refTo="Stats", + type="Key", + width=260 + }, + [17]={ + list=false, + name="MoreStunDuration", + refTo="Stats", + type="Key", + width=250 + }, + [18]={ + list=false, + name="CannotBlockFlag", + refTo="", + type="String", + width=290 + }, + [19]={ + list=false, + name="SkillCannotBeBlocked", + refTo="VirtualStatContextFlags", + type="Key", + width=280 + }, + [20]={ + list=false, + name="Type", + refTo="", + type="Int", + width=50 + }, + [21]={ + list=false, + name="IsAttack", + refTo="", + type="Bool", + width=100 + }, + [22]={ + list=false, + name="IncBlock", + refTo="Stats", + type="Key", + width=280 + }, + [23]={ + list=false, + name="IncProjectileBlock", + refTo="DamageCalculationTypes", + type="ShortKey", + width=260 + }, + [24]={ + list=false, + name="IsAttack", + refTo="", + type="Bool", + width=80 + }, + [25]={ + list=false, + name="BlockLuckyFlag", + refTo="Stats", + type="Key", + width=150 + }, + [26]={ + list=false, + name="IncEnemyReducedBlock", + refTo="Stats", + type="Key", + width=170 + }, + [27]={ + list=false, + name="DeflectChance", + refTo="Stats", + type="Key", + width=100 + }, + [28]={ + list=false, + name="DeflectPercent", + refTo="Stats", + type="Key", + width=100 + }, + [29]={ + list=false, + name="DeflectLuckyFlag", + refTo="Stats", + type="Key", + width=100 + }, + [30]={ + list=false, + name="GlobalKnockbackFlag", + refTo="Stats", + type="Key", + width=120 + }, + [31]={ + list=false, + name="KnockbackOnCritlFlag", + refTo="Stats", + type="Key", + width=150 + }, + [32]={ + list=false, + name="OffhandKnocbackChance", + refTo="Stats", + type="Key", + width=160 + }, + [33]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [34]={ + list=false, + name="VirtualStatFlag", + refTo="Stats", + type="Key", + width=100 + }, + [35]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=100 + }, + [36]={ + list=false, + name="StunMultiplier", + refTo="Stats", + type="Key", + width=150 + }, + [37]={ + list=false, + name="OffHandStunMultiplier", + refTo="Stats", + type="Key", + width=150 + }, + [38]={ + list=false, + name="FakeHitType", + refTo="Stats", + type="Key", + width=320 + }, + [39]={ + list=false, + name="EffectiveDoubleCritChance", + refTo="Stats", + type="Key", + width=150 + }, + [40]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=370 + }, + [41]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [42]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [43]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [44]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [45]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [46]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [47]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [48]={ + list=false, + name="", + refTo="Stats", + type="Key", + width=150 + }, + [49]={ + list=false, + name="InevitableCrit", + refTo="Stats", + type="Key", + width=150 + } + }, + damageeffectvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=true, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=true, + name="EffectFile", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [8]={ + list=false, + name="MiscEffect", + refTo="MiscEffectPacks", + type="Key", + width=200 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + damagehiteffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="DamageEffectPC", + refTo="DamageEffectVariations", + type="Key", + width=300 + }, + [5]={ + list=true, + name="DamageEffectConsole", + refTo="DamageEffectVariations", + type="Key", + width=300 + } + }, + damagehittypes={ + }, + damageparticleeffects={ + [1]={ + list=false, + name="DamageParticleEffectTypes", + refTo="DamageParticleEffectTypes", + type="Enum", + width=150 + }, + [2]={ + list=false, + name="Variation", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="DamageEffect", + refTo="DamageEffectVariations", + type="Key", + width=150 + }, + [5]={ + list=false, + name="EffectAddon", + refTo="DamageEffectVariations", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + damageparticleeffecttypes={ + }, + damagewhenhiteffects={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HitEffect", + refTo="DamageHitEffects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + dances={ + [1]={ + list=false, + name="MtxTypeKey", + refTo="MtxTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="CharactersKey", + refTo="Characters", + type="Key", + width=150 + } + }, + daressopitfights={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MonsterPack", + refTo="MonsterPacks", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + default={ + }, + defaultmonsterstats={ + [1]={ + list=false, + name="Level", + refTo="", + type="String", + width=50 + }, + [2]={ + list=false, + name="Damage", + refTo="", + type="Float", + width=70 + }, + [3]={ + list=false, + name="Evasion", + refTo="", + type="Int", + width=70 + }, + [4]={ + list=false, + name="Accuracy", + refTo="", + type="Int", + width=70 + }, + [5]={ + list=false, + name="MonsterLife", + refTo="", + type="Int", + width=70 + }, + [6]={ + list=false, + name="XP", + refTo="", + type="Int", + width=70 + }, + [7]={ + list=false, + name="MinionLife", + refTo="", + type="Int", + width=70 + }, + [8]={ + list=false, + name="Armour", + refTo="", + type="Int", + width=70 + }, + [9]={ + list=false, + name="ResistancePart", + refTo="", + type="Int", + width=100 + }, + [10]={ + list=false, + name="MinionDamage", + refTo="", + type="Float", + width=100 + }, + [11]={ + list=false, + name="EvasiveEvasion", + refTo="", + type="Int", + width=100 + }, + [12]={ + list=false, + name="AilmentThreshold", + refTo="", + type="Int", + width=100 + }, + [13]={ + list=false, + name="PoiseThreshold", + refTo="", + type="Int", + width=100 + }, + [14]={ + list=false, + name="AltLife2", + refTo="", + type="Int", + width=70 + }, + [15]={ + list=false, + name="LeechResistance", + refTo="", + type="Int", + width=100 + }, + [16]={ + list=false, + name="MoreElementalDamage", + refTo="", + type="Int", + width=140 + }, + [17]={ + list=false, + name="MoreChaosDamage", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="RareUniqueLeechResistance", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="UniqueMonsterDamageTakenFromMinions", + refTo="", + type="Int", + width=250 + }, + [20]={ + list=false, + name="MoreDamageAgainstNonUnique", + refTo="", + type="Int", + width=250 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + deliriumstashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + }, + [11]={ + list=false, + name="ShowIfEmpty", + refTo="", + type="Bool", + width=150 + } + }, + delveazuriteshop={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="SpawnWeight", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Cost", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MinDepth", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="IsResonator", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delvebiomes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [4]={ + list=false, + name="UIImage", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="SpawnWeight_Depth", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=true, + name="SpawnWeight_Values", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="Art2D", + refTo="", + type="String", + width=240 + }, + [10]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + delvecatchupdepths={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Depth", + refTo="", + type="Int", + width=150 + } + }, + delvecraftingmodifierdescriptions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } + }, + delvecraftingmodifiers={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="AddedMods", + refTo="Mods", + type="Key", + width=300 + }, + [3]={ + list=true, + name="NegativeWeight_Tags", + refTo="Tags", + type="Key", + width=300 + }, + [4]={ + list=true, + name="NegativeWeight_Values", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=true, + name="ForcedAddMods", + refTo="Mods", + type="Key", + width=300 + }, + [6]={ + list=true, + name="ForbiddenDelveCraftingTags", + refTo="DelveCraftingTags", + type="Key", + width=300 + }, + [7]={ + list=true, + name="AllowedDelveCraftingTags", + refTo="DelveCraftingTags", + type="Key", + width=300 + }, + [8]={ + list=false, + name="CanMirrorItem", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="CorruptedEssenceChance", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="CanImproveQuality", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="HasLuckyRolls", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="SellPrice_Mods", + refTo="Mods", + type="Key", + width=300 + }, + [14]={ + list=false, + name="CanRollWhiteSockets", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=true, + name="Weight_Tags", + refTo="Tags", + type="Key", + width=300 + }, + [16]={ + list=true, + name="Weight_Values", + refTo="", + type="Int", + width=300 + }, + [17]={ + list=true, + name="DelveCraftingModifierDescriptions", + refTo="DelveCraftingModifierDescriptions", + type="Key", + width=300 + }, + [18]={ + list=true, + name="BlockedDelveCraftingModifierDescriptions", + refTo="DelveCraftingModifierDescriptions", + type="Key", + width=300 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [22]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + delvecraftingtags={ + [1]={ + list=false, + name="TagsKey", + refTo="Tags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="ItemClass", + refTo="", + type="String", + width=240 + } + }, + delvedynamite={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="ProjectilesKey", + refTo="Projectiles", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Dynamite_MiscObjectsKey", + refTo="MiscObjects", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="MiscAnimatedKey", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delvefeaturerewards={ + }, + delvefeatures={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="SpawnWeight", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Image", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=true, + name="MinDepth", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [12]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [13]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [14]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + delveflares={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Projectile", + refTo="Projectiles", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Object", + refTo="MiscObjects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delvelevelscaling={ + [1]={ + list=false, + name="Depth", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MonsterLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="SulphiteCost", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MonsterLevel2", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MoreMonsterDamage", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MoreMonsterLife", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="DarknessResistance", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="LightRadius", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delvemonsterspawners={ + [1]={ + list=false, + name="BaseMetadata", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [30]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [31]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + delveresourceperlevel={ + [1]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Sulphite", + refTo="", + type="Int", + width=150 + } + }, + delverewardtierconstants={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delverobotvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="Joint", + refTo="", + type="String", + width=300 + }, + [4]={ + list=false, + name="Pet", + refTo="Pet", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + delverooms={ + [1]={ + list=false, + name="DelveBiomesKey", + refTo="DelveBiomes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="DelveFeaturesKey", + refTo="DelveFeatures", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ARMFile", + refTo="", + type="String", + width=240 + } + }, + delvestashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="HideIfEmpty", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="Image", + refTo="", + type="String", + width=240 + } + }, + delveupgrades={ + [1]={ + list=false, + name="DelveUpgradeTypeKey", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="UpgradeLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="Cost", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + delveupgradetype={ + }, + descendancy={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="BackgroundImage", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=400 + }, + [5]={ + list=false, + name="CoordinateRect", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="RGBFlavourTextColour", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="UnlockCondition", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="SoundEffectOpen", + refTo="SoundEffects", + type="Key", + width=150 + }, + [9]={ + list=false, + name="SoundEffectAccept", + refTo="SoundEffects", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="PassiveTreeUIArt", + refTo="PassiveSkillTreeUIArtAscendancy", + type="Key", + width=150 + }, + [12]={ + list=false, + name="UIArt", + refTo="UIArtAscendancy", + type="Key", + width=150 + } + }, + descentexiles={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="CharactersKey", + refTo="Characters", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + descentrewardchests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="BaseItemTypesKeys1", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [3]={ + list=true, + name="BaseItemTypesKeys2", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [4]={ + list=true, + name="BaseItemTypesKeys3", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [5]={ + list=true, + name="BaseItemTypesKeys4", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [6]={ + list=true, + name="BaseItemTypesKeys5", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [7]={ + list=true, + name="BaseItemTypesKeys6", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [8]={ + list=true, + name="BaseItemTypesKeys7", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [9]={ + list=true, + name="BaseItemTypesKeys8", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [10]={ + list=true, + name="BaseItemTypesKeys9", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [11]={ + list=true, + name="BaseItemTypesKeys10", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [12]={ + list=true, + name="BaseItemTypesKeys11", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [13]={ + list=true, + name="BaseItemTypesKeys12", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [14]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [15]={ + list=true, + name="BaseItemTypesKeys13", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [16]={ + list=true, + name="BaseItemTypesKeys14", + refTo="BaseItemTypes", + type="Key", + width=300 + } + }, + descentstarterchest={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="CharactersKey", + refTo="Characters", + type="Key", + width=150 + }, + [3]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="SocketColours", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + } + }, + destructivedamageeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="StatKeys1", + refTo="Stats", + type="Key", + width=300 + }, + [3]={ + list=true, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=300 + }, + [4]={ + list=true, + name="StatKeys2", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=false, + name="StatKey3", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=false, + name="StatKey3Value", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=true, + name="StatKeys4", + refTo="Stats", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + dialogueevent={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Timer", + refTo="", + type="Int", + width=150 + } + }, + directions={ + }, + displaycasetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Base", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HoverMiddle", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="HoverRight", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Glass", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="CrackedGlass", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="TopLeftCorner", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="TopRightCorner", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="BottomLeftCorner", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="BottomRightCorner", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + displayminionmonstertype={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=50 + }, + [2]={ + list=false, + name="MonsterVarieties", + refTo="MonsterVarieties", + type="Key", + width=400 + } + }, + divinationcardart={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="VirtualFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="Influences", + refTo="InfluenceTypes", + type="Enum", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + divinationcardstashtablayout={ + [1]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="IsInGame", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="IsEnabled", + refTo="", + type="Bool", + width=150 + } + }, + doors={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + dronebasetypes={ + [1]={ + list=false, + name="BaseType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Type", + refTo="DroneTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Charges", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Duration", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="EnemyLimit", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Visual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Empowerment", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="UseAchievement", + refTo="AchievementItems", + type="Key", + width=150 + }, + [9]={ + list=false, + name="CreatedViaPowerCore", + refTo="", + type="Bool", + width=150 + } + }, + dronetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [4]={ + list=false, + name="DeployText", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="UnlockedStat", + refTo="Stats", + type="Key", + width=150 + }, + [7]={ + list=false, + name="SocketableText", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="NotPoweredText", + refTo="", + type="String", + width=240 + } + }, + dropeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + } + }, + dropmodifiers={ + }, + droppool={ + [1]={ + list=false, + name="Group", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="WeightHardmode", + refTo="", + type="Int", + width=150 + } + }, + dropreplacementcustomreplacements={ + }, + dropreplacementcustomtargets={ + }, + dynamicstashslots={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Icon_DDSFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + eclipsemods={ + [1]={ + list=false, + name="Key", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="SpawnWeight_TagsKeys", + refTo="Tags", + type="Key", + width=300 + }, + [3]={ + list=true, + name="SpawnWeight_Values", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="ModsKey", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="IsPrefix", + refTo="", + type="Bool", + width=150 + } + }, + effectdrivenskill={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=true, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=500 + }, + [3]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [9]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + } + }, + effectiveness={ + }, + effectivenesscostconstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Float", + width=150 + } + }, + einharmissions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + einharpackfallback={ + [1]={ + list=false, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [2]={ + list=true, + name="MonsterPack", + refTo="MonsterPacks", + type="Key", + width=300 + } + }, + elderbossarenas={ + [1]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + elderguardians={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MapIcon", + refTo="", + type="String", + width=240 + } + }, + eldermapbossoverride={ + [1]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=true, + name="MonsterVarietiesKeys", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [3]={ + list=false, + name="TerrainMetadata", + refTo="", + type="String", + width=240 + } + }, + emote={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Animation", + refTo="Animation", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamecleansedmods={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [2]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamecorruptionmods={ + [1]={ + list=false, + name="Id", + refTo="Mods", + type="Key", + width=250 + }, + [2]={ + list=true, + name="ModWeight", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgameextramapstatstodisplayonatlas={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + } + }, + endgamemapatlas={ + [1]={ + list=false, + name="Passives", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Map", + refTo="EndgameMaps", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="Biome", + refTo="EndgameMapBiomes", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [8]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="MapPin", + refTo="EndgameMapPins", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="BlockedMessage", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="SubTree", + refTo="AtlasPassiveSkillSubTrees", + type="Key", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="MapObjective", + refTo="EndgameMapObjectives", + type="Key", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="EndgameMapAtlas", + type="Key", + width=150 + }, + [21]={ + list=false, + name="BiomeGroundType", + refTo="EndgameMapBiomeGroundTypes", + type="Key", + width=150 + }, + [22]={ + list=false, + name="MapDecoration1", + refTo="EndgameMapDecorations", + type="Key", + width=150 + }, + [23]={ + list=false, + name="MapDecoration2", + refTo="EndgameMapDecorations", + type="Key", + width=150 + }, + [24]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [29]={ + list=false, + name="ClientString", + refTo="ClientStrings2", + type="Key", + width=150 + } + }, + endgamemapatlastowers={ + [1]={ + list=false, + name="RevealType", + refTo="EndgameMapRevealTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="AtlasNodes", + refTo="EndgameMapAtlas", + type="Key", + width=300 + }, + [4]={ + list=false, + name="SessionQuestFlag", + refTo="SessionQuestFlags", + type="Key", + width=150 + }, + [5]={ + list=true, + name="TowerAtlas", + refTo="EndgameMapAtlas", + type="Key", + width=300 + }, + [6]={ + list=true, + name="FortressAtlas", + refTo="EndgameMapAtlas", + type="Key", + width=300 + } + }, + endgamemapbiomegroundtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + endgamemapbiomes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=100 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [4]={ + list=false, + name="GroundType1", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [9]={ + list=false, + name="GroundType2", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Name", + refTo="", + type="String", + width=80 + }, + [11]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=80 + }, + [12]={ + list=false, + name="BossWorldArea", + refTo="WorldAreas", + type="Key", + width=80 + }, + [13]={ + list=true, + name="", + refTo="", + type="Int", + width=80 + }, + [14]={ + list=false, + name="AreaTag", + refTo="Tags", + type="Key", + width=80 + }, + [15]={ + list=false, + name="MonsterTag", + refTo="Tags", + type="Key", + width=80 + }, + [16]={ + list=false, + name="GroundTypeCorrupted1", + refTo="Stats", + type="Key", + width=150 + }, + [17]={ + list=false, + name="GroundTypeCorrupted2", + refTo="EndgameMapBiomeGroundTypes", + type="Key", + width=150 + }, + [18]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [19]={ + list=false, + name="GroundType3", + refTo="", + type="String", + width=150 + } + }, + endgamemapcompletionquests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="RequiredTier", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="RequiredCount", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + endgamemapconstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Values", + refTo="", + type="Int", + width=300 + } + }, + endgamemapcontent={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="SpawnChance", + refTo="Stats", + type="Key", + width=100 + }, + [3]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=80 + }, + [5]={ + list=false, + name="Name", + refTo="", + type="String", + width=80 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=false, + name="InherentStat", + refTo="EndgameMapObjectives", + type="Key", + width=220 + }, + [8]={ + list=false, + name="VisualIdentity", + refTo="EndgameMapContentVisualIdentity", + type="Key", + width=80 + }, + [9]={ + list=false, + name="Icon", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="Description", + refTo="", + type="String", + width=150 + }, + [11]={ + list=false, + name="Name", + refTo="", + type="String", + width=100 + } + }, + endgamemapcontentaddition={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [3]={ + list=true, + name="WorldAreas", + refTo="WorldAreas", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="", + refTo="EndgameMapContent", + type="Key", + width=300 + }, + [9]={ + list=false, + name="CompletionNotification", + refTo="CompletionNotifications", + type="Key", + width=150 + }, + [10]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamemapcontentframetype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Frame", + refTo="", + type="String", + width=240 + } + }, + endgamemapcontentset={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="EndGameMapContentKey", + refTo="EndgameMapContent", + type="Key", + width=350 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamemapcontentvisualidentity={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AtlasIcon", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="PassiveArt", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ContentFamily", + refTo="EndgameMapContentFrameType", + type="Key", + width=150 + } + }, + endgamemapcontentweightings={ + [1]={ + list=false, + name="MapContent", + refTo="EndgameMapContent", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="MapBiome", + refTo="EndgameMapBiomes", + type="Key", + width=300 + }, + [4]={ + list=true, + name="Weighting", + refTo="", + type="Int", + width=300 + } + }, + endgamemapdecorations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AnimatedObject", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="AdditionalAnimatedObjects", + refTo="", + type="String", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamemaplocation={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=260 + }, + [2]={ + list=true, + name="Biomes", + refTo="EndgameMapBiomes", + type="Key", + width=210 + }, + [3]={ + list=true, + name="ConnectedBiomes", + refTo="EndgameMapBiomes", + type="Key", + width=190 + } + }, + endgamemaplocations={ + [1]={ + list=false, + name="Map", + refTo="EndgameMaps", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Biomes", + refTo="EndgameMapBiomes", + type="Key", + width=300 + }, + [4]={ + list=true, + name="AdjacentBiomes", + refTo="EndgameMapBiomes", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + endgamemapnodestats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Mods", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [6]={ + list=false, + name="MapVisualIdentity", + refTo="EndgameMapContentVisualIdentity", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Name", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [8]={ + list=false, + name="Description", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamemapobjectives={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ObjectiveText", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="CompletionText", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ContentIcon", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="MiniMapIcon", + refTo="MinimapIcons", + type="Key", + width=150 + } + }, + endgamemappinicons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Icon1", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Icon2", + refTo="", + type="String", + width=240 + } + }, + endgamemappins={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="UnavailablePin", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="AvailablePin", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="ActivePin", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="FailedPin", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [6]={ + list=false, + name="CompletePin", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [7]={ + list=false, + name="HighlightEPK", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="RevealAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [9]={ + list=false, + name="RitualHighlightEPK", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="RitualSelectedEPK", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="DeliriumHighlightEPK", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="AudioAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + endgamemaprevealtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Script1", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Script2", + refTo="", + type="String", + width=240 + } + }, + endgamemaps={ + [1]={ + list=false, + name="Id", + refTo="WorldAreas", + type="Key", + width=230 + }, + [2]={ + list=true, + name="NativePacks", + refTo="MonsterPacks", + type="Key", + width=190 + }, + [3]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=160 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=40 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=40 + }, + [6]={ + list=false, + name="MapPin", + refTo="EndgameMapPins", + type="Key", + width=120 + }, + [7]={ + list=false, + name="Decorations", + refTo="EndgameMapDecorations", + type="Key", + width=80 + }, + [8]={ + list=false, + name="ContentSetKey", + refTo="EndgameMapContentSet", + type="Key", + width=150 + }, + [9]={ + list=false, + name="CorruptedMapPin", + refTo="EndgameMapPins", + type="Key", + width=340 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="CompletedMapPin", + refTo="EndgameMapPins", + type="Key", + width=120 + }, + [13]={ + list=false, + name="ObjectiveDescription", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [14]={ + list=false, + name="SpecialMapText", + refTo="", + type="String", + width=150 + }, + [15]={ + list=false, + name="SpecialMapFlavourText", + refTo="", + type="String", + width=150 + }, + [16]={ + list=false, + name="SpecialMapHelpText", + refTo="", + type="String", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=true, + name="MapContent", + refTo="EndgameMapContent", + type="Key", + width=300 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [27]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + endgamemaptablets={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="MapStats", + refTo="Stats", + type="Key", + width=300 + }, + [3]={ + list=true, + name="MapStatValues", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="TowerStat", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MapObjective", + refTo="EndgameMapObjectives", + type="Key", + width=150 + }, + [6]={ + list=false, + name="MapContent", + refTo="EndgameMapContent", + type="Key", + width=150 + }, + [7]={ + list=false, + name="League", + refTo="CoreLeagues", + type="Key", + width=150 + } + }, + endgamequicktravelhubs={ + [1]={ + list=false, + name="Area", + refTo="EndgameMaps", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Button", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ButtonHover", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="AtlasSubTree", + refTo="AtlasPassiveSkillSubTrees", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Description1", + refTo="ClientStrings", + type="Key", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Description2", + refTo="ClientStrings", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Sound", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + endgameregionactionbuttons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="QuickUseIcon", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [4]={ + list=false, + name="ButtonArt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="SoundEffectImpact", + refTo="SoundEffects", + type="Key", + width=150 + }, + [6]={ + list=false, + name="SoundEffectStart", + refTo="SoundEffects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + endgameregionactionbuttonsrequiredquestflags={ + [1]={ + list=false, + name="Button", + refTo="EndgameRegionActionButtons", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="KeywordPopup", + refTo="KeywordPopups", + type="Key", + width=150 + } + }, + endgameregionactioncurrencyitems={ + [1]={ + list=false, + name="Region", + refTo="EndgameRegionActionButtons", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BaseItemTypes", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="KeywordPopup", + refTo="KeywordPopups", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + endgamesplinterinfodisplay={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + endgamesplinterrecipes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Difficulty", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Cost", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="DestinationArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [8]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + endlessledgechests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=true, + name="BaseItemTypesKeys", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [4]={ + list=false, + name="SocketColour", + refTo="", + type="String", + width=240 + } + }, + environmentfootprints={ + [1]={ + list=false, + name="Environment", + refTo="Environments", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="AOFile", + refTo="", + type="String", + width=300 + } + }, + environments={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Base_ENVFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="Corrupted_ENVFiles", + refTo="", + type="String", + width=300 + }, + [4]={ + list=true, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [5]={ + list=true, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="EnvironmentTransitionsKey", + refTo="EnvironmentTransitions", + type="Key", + width=150 + }, + [8]={ + list=false, + name="PreloadGroup", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + environmenttransitions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="OTFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="Environment", + refTo="Environments", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + equipmentpreviewscene={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Environment", + refTo="Environments", + type="Key", + width=150 + }, + [3]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + } + }, + essencemods={ + [1]={ + list=false, + name="Essence", + refTo="Essences", + type="Key", + width=390 + }, + [2]={ + list=false, + name="TargetItemCategory", + refTo="EssenceTargetItemCategories", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Mod1", + refTo="Mods", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Mod2", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Text", + refTo="", + type="String", + width=270 + }, + [6]={ + list=true, + name="OutcomeMods", + refTo="Mods", + type="Key", + width=150 + }, + [7]={ + list=true, + name="OutcomeModWeights", + refTo="", + type="Int", + width=150 + } + }, + essencereplacementtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + essences={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=370 + }, + [2]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=100 + }, + [3]={ + list=true, + name="DropLevel", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=true, + name="MonsterMod1", + refTo="Mods", + type="Key", + width=250 + }, + [5]={ + list=true, + name="Weighting", + refTo="", + type="Int", + width=70 + }, + [6]={ + list=false, + name="MonsterMod2", + refTo="Mods", + type="Key", + width=250 + }, + [7]={ + list=false, + name="IsPerfect", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="GreaterVariant", + refTo="Essences", + type="ShortKey", + width=250 + }, + [9]={ + list=false, + name="EssenceTier", + refTo="", + type="Int", + width=80 + }, + [10]={ + list=false, + name="MapMod", + refTo="Stats", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [13]={ + list=true, + name="ReplacementType", + refTo="EssenceReplacementType", + type="Key", + width=300 + } + }, + essencestashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="ShowIfEmpty", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + } + }, + essencetargetitemcategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=150 + } + }, + essencetype={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", + width=90 + }, + [2]={ + list=false, + name="TypeTier", + refTo="", + type="Int", + width=60 + }, + [3]={ + list=false, + name="CorruptOnly", + refTo="", + type="Bool", + width=100 + }, + [4]={ + list=false, + name="WordsKey", + refTo="Words", + type="Key", + width=150 + } + }, + eventcoins={ + }, + eventseason={ + }, + eventseasonrewards={ + }, + evergreenachievements={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + evergreenachievementtypes={ + }, + executegeal={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [29]={ + list=true, + name="MetadataIDs", + refTo="", + type="String", + width=300 + }, + [30]={ + list=false, + name="ScriptCommand", + refTo="", + type="String", + width=240 + }, + [31]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [32]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [33]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [34]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [35]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [38]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [39]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [40]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [41]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [42]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [44]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [45]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expandingpulse={ + [1]={ + list=false, + name="IntId", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="StringId", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Float", + width=300 + }, + [5]={ + list=true, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + expedition2animatedperarea={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="RemnantAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="PlinthAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + expedition2craftingachievements={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="AchievementItem", + refTo="AchievementItems", + type="Key", + width=150 + } + }, + expedition2elementalmodconversions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="FireMod", + refTo="Mods", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ColdMod", + refTo="Mods", + type="Key", + width=150 + }, + [4]={ + list=false, + name="LightningMod", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="ChaosMod", + refTo="Mods", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + expedition2heathremnantseenleaguequestflags={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="QuestFlag", + refTo="", + type="Int", + width=150 + } + }, + expedition2monsterfactions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MonsterPack", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expedition2olrothslegacyruneclient={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [3]={ + list=true, + name="UniqueName", + refTo="Words", + type="Key", + width=300 + } + }, + expedition2recipes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Runes", + refTo="Expedition2Runes", + type="Key", + width=300 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="RuneCountRequired", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MinLevelReq", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MaxLevelReq", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Reward", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [8]={ + list=false, + name="RewardCount", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [18]={ + list=false, + name="Category", + refTo="ExpeditionCategory", + type="Key", + width=150 + }, + [19]={ + list=true, + name="RuneWeights", + refTo="Expedition2RunesWeights", + type="Key", + width=300 + }, + [20]={ + list=false, + name="DisabledText", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + expedition2remnantrewardperarea={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Reward", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="RewardCount", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + expedition2runes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ArchnemesisMod", + refTo="ArchnemesisMods", + type="Key", + width=150 + }, + [4]={ + list=false, + name="ArchnemesisModPower", + refTo="ArchnemesisMods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="TomeArt", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="RemnantArt", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="HitEffect", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=false, + name="EnemyArt", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + expedition2runesweights={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Rune", + refTo="Expedition2Runes", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expedition2shipnames={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } + }, + expedition2verisiumcrafts={ + [1]={ + list=false, + name="OriginalBaseType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="UniqueName", + refTo="Words", + type="Key", + width=150 + }, + [3]={ + list=false, + name="NewBaseType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=true, + name="CraftingItem", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [5]={ + list=true, + name="CraftingItemCount", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="Words", + type="Key", + width=150 + } + }, + expedition2warpingrunestattotag={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + } + }, + expeditionareas={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="PosX", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="PosY", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="TextAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [6]={ + list=true, + name="CompletionAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + expeditionbalanceperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expeditioncategory={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + expeditioncurrency={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="NPC", + refTo="ExpeditionNPCs", + type="Key", + width=150 + }, + [3]={ + list=false, + name="LootSound", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + expeditiondealfamilies={ + }, + expeditiondeals={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Function", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Arguments", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="DealFamily", + refTo="ExpeditionDealFamilies", + type="Enum", + width=150 + } + }, + expeditiondealsdialogue={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="ExpeditionCurrency", + refTo="ExpeditionCurrency", + type="Key", + width=150 + }, + [3]={ + list=false, + name="NPCTextAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + } + }, + expeditiondronetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + expeditionfactions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="FactionFlag", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FactionIcon", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="MonsterVarieties", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Progress1", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [8]={ + list=false, + name="Progress2Vaal", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Progress3Final", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Tags", + refTo="Tags", + type="Key", + width=150 + } + }, + expeditionmarkerscommon={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + } + }, + expeditionnpcs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [3]={ + list=false, + name="RerollItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="QuestFlags", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Faction", + refTo="ExpeditionFactions", + type="Key", + width=150 + }, + [8]={ + list=false, + name="Reroll", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [9]={ + list=false, + name="AllBombsPlaced", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [10]={ + list=false, + name="BombPlacedRemnant", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [11]={ + list=false, + name="BombPlacedTreasure", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [12]={ + list=false, + name="BombPlacedMonsters", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [13]={ + list=false, + name="BombPlacedGeneric", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [14]={ + list=false, + name="EncounterComplete", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expeditionrelicmodcategories={ + }, + expeditionrelicmods={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Categories", + refTo="ExpeditionRelicModCategories", + type="Enum", + width=300 + }, + [3]={ + list=true, + name="DestroyAchievements", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + expeditionrelics={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ItemTag", + refTo="Tags", + type="Key", + width=150 + }, + [4]={ + list=true, + name="AOFiles", + refTo="", + type="String", + width=300 + }, + [5]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + expeditionstashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Tab", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="HideIfEmpty", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + } + }, + expeditionstoragelayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="Currency", + refTo="ExpeditionCurrency", + type="Key", + width=150 + } + }, + expeditionterrainfeatures={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ExtraFeature", + refTo="ExtraTerrainFeatures", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ExpeditionFaction", + refTo="ExpeditionFactions", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [8]={ + list=true, + name="ExpeditionAreas", + refTo="ExpeditionAreas", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=true, + name="UnearthAchievements", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + experiencelevels={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Experience", + refTo="", + type="UInt", + width=150 + } + }, + explodingstormbuffs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BuffDefinitionsKey1", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Friendly_MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [11]={ + list=false, + name="MiscObjectsKey", + refTo="MiscObjects", + type="Key", + width=150 + }, + [12]={ + list=false, + name="MiscAnimatedKey", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [13]={ + list=false, + name="BuffVisualsKey", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [14]={ + list=false, + name="Enemy_MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="BuffDefinitionsKey2", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [19]={ + list=false, + name="IsOnlySpawningNearPlayer", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="PlayerBuffTemplate", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [21]={ + list=false, + name="MonsterBuffTemplate", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + extraterrainfeaturefamily={ + }, + extraterrainfeatures={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="ArmFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="TdtFiles", + refTo="", + type="String", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=false, + name="", + refTo="ExtraTerrainFeatures", + type="Key", + width=150 + }, + [7]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + fadeoncorpseconsumeepks={ + [1]={ + list=false, + name="Effect", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [2]={ + list=false, + name="FadeDuration", + refTo="", + type="Int", + width=150 + } + }, + fixedhideoutdoodads={ + }, + fixedhideoutdoodadtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="HideoutDoodadsKeys", + refTo="HideoutDoodads", + type="Key", + width=300 + }, + [3]={ + list=false, + name="BaseTypeHideoutDoodadsKey", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="UnlockQuest", + refTo="Quest", + type="Key", + width=150 + }, + [8]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + } + }, + fixedmissions={ + [1]={ + list=false, + name="", + refTo="QuestAchievements", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + flasks={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=250 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Type", + refTo="FlaskType", + type="Enum", + width=50 + }, + [4]={ + list=false, + name="LifePerUse", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="ManaPerUse", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=false, + name="RecoveryTime", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=false, + name="RecoveryTime2", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Buff", + refTo="BuffDefinitions", + type="Key", + width=260 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="UtilityBuffs", + refTo="UtilityFlaskBuffs", + type="Key", + width=240 + } + }, + flaskstashbasetypeordering={ + [1]={ + list=false, + name="Flask", + refTo="Flasks", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Order", + refTo="", + type="Int", + width=150 + } + }, + flasktype={ + }, + flatphysicaldamagevalues={ + [1]={ + list=false, + name="Id", + refTo="AttackSkillDamageScalingType", + type="Key", + width=80 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=80 + }, + [3]={ + list=false, + name="MinPhys", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="MaxPhys", + refTo="", + type="Int", + width=80 + } + }, + flavourtext={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=70 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=500 + } + }, + flavourtextdialogue={ + [1]={ + list=false, + name="FlavourText", + refTo="FlavourText", + type="Key", + width=150 + }, + [2]={ + list=false, + name="NPCDialogue", + refTo="NPCTextAudio", + type="Key", + width=150 + } + }, + flavourtextimages={ + }, + footprints={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Active_AOFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="Idle_AOFiles", + refTo="", + type="String", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + } + }, + footstepaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Index", + refTo="", + type="Int", + width=150 + } + }, + fragmentstashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="HideIfEmpty", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="Tab", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", + width=150 + } + }, + fragmentstashtabsubstashgroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ParentTab", + refTo="FragmentStashTabSubStashGroup", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + gambleprices={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BaseCost", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BaseCostPerlevel", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="CostExponentPerLevel", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="NewTab", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="TabName", + refTo="ClientStrings", + type="Key", + width=150 + }, + [7]={ + list=true, + name="InShop", + refTo="NPCShop", + type="Key", + width=300 + }, + [8]={ + list=true, + name="NotInShop", + refTo="NPCShop", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + gameconstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=100 + }, + [3]={ + list=false, + name="Divisor", + refTo="", + type="Int", + width=100 + } + }, + gamelogos={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="LogoIntl", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="LogoTW", + refTo="", + type="String", + width=240 + } + }, + gameobjecttasks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HASH16", + refTo="", + type="Int", + width=150 + } + }, + gameobjecttasksfromstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="GameObjectTask", + refTo="GameObjectTasks", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + gamepadbutton={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + gamepadbuttonbindaction={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="FlaskSlot", + refTo="", + type="Bool", + width=150 + } + }, + gamepadbuttoncombination={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Button1", + refTo="GamepadButton", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Button2", + refTo="GamepadButton", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + gamepaditemactiontypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ClientString", + refTo="ClientStrings", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + gamepadthumbstick={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + gamepadtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Console", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ImageFile", + refTo="", + type="String", + width=240 + } + }, + gamestats={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Id2", + refTo="", + type="String", + width=240 + } + }, + gemeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=220 + }, + [3]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=200 + }, + [5]={ + list=false, + name="SecondarySupportName", + refTo="", + type="String", + width=150 + }, + [6]={ + list=true, + name="Tags", + refTo="GemTags", + type="Key", + width=500 + }, + [7]={ + list=false, + name="HungryLoopMod", + refTo="Mods", + type="Key", + width=280 + }, + [8]={ + list=false, + name="ItemColor", + refTo="", + type="Int", + width=80 + }, + [9]={ + list=true, + name="", + refTo="", + type="Key", + width=20 + }, + [10]={ + list=true, + name="AdditionalGrantedEffects", + refTo="GrantedEffects", + type="Key", + width=300 + }, + [11]={ + list=false, + name="SpiritGem", + refTo="", + type="Bool", + width=100 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=110 + }, + [13]={ + list=true, + name="GrantedEffectDisplayOrder", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + } + }, + gemitemvisualeffect={ + }, + gemitemvisualidentity={ + }, + gemtags={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="LocalLevelStat", + refTo="Stats", + type="Key", + width=270 + }, + [4]={ + list=false, + name="LocalQualityStat", + refTo="Stats", + type="Key", + width=290 + }, + [5]={ + list=false, + name="GlobalSpellLevelStat", + refTo="Stats", + type="Key", + width=230 + } + }, + gemtypes={ + }, + gemvisualeffect={ + }, + genericbuffauras={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + genericleaguerewardtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + } + }, + genericleaguerewardtypevisuals={ + [1]={ + list=false, + name="Type", + refTo="GenericLeagueRewardTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MapIcon", + refTo="MinimapIcons", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + genericskillindicator={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Indicator", + refTo="GameObjectTasks", + type="Key", + width=150 + }, + [3]={ + list=true, + name="Condition", + refTo="IndicatorConditions", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + geometryattack={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=true, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [3]={ + list=true, + name="HitEffect", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [29]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [30]={ + list=true, + name="BuffValues", + refTo="", + type="Int", + width=300 + }, + [31]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [33]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [34]={ + list=false, + name="BuffVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [36]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [37]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [38]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [39]={ + list=false, + name="GeometryChannel", + refTo="GeometryChannel", + type="Key", + width=150 + }, + [40]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [41]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [42]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [43]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [44]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [45]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [46]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [47]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [48]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [49]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [50]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [51]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [52]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [53]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [54]={ + list=false, + name="ExecuteGeal", + refTo="ExecuteGEAL", + type="Key", + width=150 + }, + [55]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [56]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [57]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [58]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [59]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [60]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [61]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [62]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [63]={ + list=false, + name="GroundEffect", + refTo="GroundEffectTypes", + type="Key", + width=150 + }, + [64]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [65]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [66]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [67]={ + list=true, + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", + width=300 + } + }, + geometrychannel={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AnimationStart", + refTo="Animation", + type="Key", + width=150 + }, + [3]={ + list=false, + name="AnimationEnd", + refTo="Animation", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="MiscAnimated2", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=false, + name="EPKFile", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + geometryprojectiles={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Projectile", + refTo="Projectiles", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="GeometryChannel", + refTo="GeometryChannel", + type="Key", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + geometrytrigger={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=true, + name="GroundMarker", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [30]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [33]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [35]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [38]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [39]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [40]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [41]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 + }, + [42]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [44]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [45]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [46]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [47]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [48]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [49]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [50]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [51]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + giftwrapartvariations={ + [1]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Item", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + globalaudioconfig={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + goldactscaling={ + [1]={ + list=false, + name="Act", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + goldbasetypeprices={ + [1]={ + list=false, + name="BaseItemTypeKey", + refTo="BaseItemTypes", + type="Key", + width=530 + }, + [2]={ + list=false, + name="GoldPrice", + refTo="", + type="Int", + width=150 + } + }, + goldconstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + goldinherentskillpricesperlevel={ + [1]={ + list=false, + name="Skill", + refTo="SkillGems", + type="Key", + width=340 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Price", + refTo="", + type="Int", + width=150 + } + }, + goldmodprices={ + [1]={ + list=false, + name="Id", + refTo="Mods", + type="Key", + width=390 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Weight?", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="CraftableModTypes", + refTo="CraftableModTypes", + type="Key", + width=250 + }, + [7]={ + list=true, + name="CraftingTags", + refTo="AdvancedCraftingBenchCustomTags", + type="Key", + width=150 + } + }, + goldrespecprices={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=100 + }, + [2]={ + list=false, + name="Cost", + refTo="", + type="Int", + width=100 + } + }, + goldvisualidentities={ + [1]={ + list=false, + name="Icon", + refTo="EndgameMapPinIcons", + type="Key", + width=150 + }, + [2]={ + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + } + }, + grandmasters={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="GMFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="AISFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="ModsKeys", + refTo="Mods", + type="Key", + width=300 + }, + [5]={ + list=false, + name="CharacterLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + grantedeffectdisplayinforegrouping={ + [1]={ + list=false, + name="Id", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [2]={ + list=true, + name="GrantedEffects", + refTo="GrantedEffects", + type="Key", + width=300 + } + }, + grantedeffectlabels={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Label", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Show", + refTo="", + type="Bool", + width=60 + }, + [4]={ + list=false, + name="PrimaryStatSetStats", + refTo="", + type="Bool", + width=140 + }, + [5]={ + list=false, + name="SkillDescription", + refTo="", + type="Bool", + width=100 + } + }, + grantedeffectqualitystats={ + [1]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [2]={ + list=true, + name="GrantedStats", + refTo="Stats", + type="Key", + width=460 + }, + [3]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="AddTypes", + refTo="ActiveSkillType", + type="Key", + width=100 + }, + [5]={ + list=true, + name="AddMinionTypes", + refTo="ActiveSkillType", + type="Key", + width=240 + }, + [6]={ + list=true, + name="StatSetIndex", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="AltStats", + refTo="Stats", + type="Key", + width=300 + }, + [8]={ + list=true, + name="AltStatValuesPermille", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=true, + name="AltApplyToStatSets", + refTo="", + type="Int", + width=300 + } + }, + grantedeffectqualitytypes={ + }, + grantedeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="IsSupport", + refTo="", + type="Bool", + width=60 + }, + [3]={ + list=true, + name="SupportTypes", + refTo="ActiveSkillType", + type="Key", + width=250 + }, + [4]={ + list=false, + name="SupportGemLetter", + refTo="", + type="String", + width=100 + }, + [5]={ + list=true, + name="AddTypes", + refTo="ActiveSkillType", + type="Key", + width=90 + }, + [6]={ + list=true, + name="ExcludeTypes", + refTo="ActiveSkillType", + type="Key", + width=150 + }, + [7]={ + list=false, + name="SupportGemsOnly", + refTo="", + type="Bool", + width=100 + }, + [8]={ + list=false, + name="Hash32", + refTo="", + type="UInt", + width=80 + }, + [9]={ + list=false, + name="CannotBeSupported", + refTo="", + type="Bool", + width=110 + }, + [10]={ + list=false, + name="LifeLeech?", + refTo="", + type="Int", + width=70 + }, + [11]={ + list=false, + name="CastTime", + refTo="", + type="Int", + width=70 + }, + [12]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=250 + }, + [13]={ + list=false, + name="IgnoreMinionTypes", + refTo="", + type="Bool", + width=100 + }, + [14]={ + list=false, + name="CooldownNotRecoverDuringActive", + refTo="", + type="Bool", + width=180 + }, + [15]={ + list=true, + name="AddMinionTypes", + refTo="ActiveSkillType", + type="Key", + width=150 + }, + [16]={ + list=false, + name="Animation", + refTo="Animation", + type="Key", + width=100 + }, + [17]={ + list=false, + name="MultiPartAchievement", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [19]={ + list=false, + name="RegularVariant", + refTo="GrantedEffects", + type="ShortKey", + width=120 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [24]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [25]={ + list=false, + name="GrantedEffectStatSets", + refTo="GrantedEffectStatSets", + type="Key", + width=250 + }, + [26]={ + list=true, + name="AdditionalStatSets", + refTo="GrantedEffectStatSets", + type="Key", + width=500 + }, + [27]={ + list=false, + name="Audio", + refTo="", + type="String", + width=100 + }, + [28]={ + list=true, + name="CostType", + refTo="CostTypes", + type="Key", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [30]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [32]={ + list=true, + name="WeaponRestrictions", + refTo="ItemClasses", + type="Key", + width=290 + }, + [33]={ + list=false, + name="HitAudio", + refTo="", + type="String", + width=360 + }, + [34]={ + list=false, + name="MinionType", + refTo="MinionType", + type="Key", + width=150 + }, + [35]={ + list=false, + name="CostBaseEffectiveness", + refTo="", + type="Float", + width=150 + }, + [36]={ + list=false, + name="CostIncrementalEffectiveness", + refTo="", + type="Float", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="Int", + width=90 + } + }, + grantedeffectsperlevel={ + [1]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=250 + }, + [2]={ + list=false, + name="Level", + type="Int", + width=50 + }, + [3]={ + list=false, + name="CostMultiplier", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="StoredUses", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Cooldown", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=false, + name="CooldownBypassType", + refTo="CooldownBypassTypes", + type="Enum", + width=130 + }, + [7]={ + list=false, + name="VaalSouls", + refTo="", + type="Int", + width=100 + }, + [8]={ + list=false, + name="VaalStoredUses", + refTo="", + type="Int", + width=120 + }, + [9]={ + list=false, + name="CooldownGroup", + refTo="", + type="Int", + width=90 + }, + [10]={ + list=false, + name="PvPDamageMultiplier", + refTo="", + type="Int", + width=120 + }, + [11]={ + list=false, + name="SoulGainPreventionDuration", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="AttackSpeedMultiplier", + refTo="", + type="Int", + width=130 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=90 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="AttackTime", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="SpiritReservation", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=true, + name="CostAmounts", + refTo="", + type="Int", + width=240 + }, + [22]={ + list=false, + name="ActorLevel", + refTo="", + type="Float", + width=100 + }, + [23]={ + list=false, + name="ReservationMultiplier", + refTo="", + type="Int", + width=150 + } + }, + grantedeffectstatsets={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="LabelType", + refTo="GrantedEffectLabels", + type="Key", + width=150 + }, + [3]={ + list=true, + name="ImplicitStats", + refTo="Stats", + type="Key", + width=600 + }, + [4]={ + list=true, + name="ConstantStats", + refTo="Stats", + type="Key", + width=800 + }, + [5]={ + list=true, + name="ConstantStatsValues", + refTo="", + type="Int", + width=200 + }, + [6]={ + list=false, + name="BaseEffectiveness", + refTo="", + type="Float", + width=120 + }, + [7]={ + list=false, + name="IncrementalEffectiveness", + refTo="", + type="Float", + width=130 + }, + [8]={ + list=false, + name="DamageIncrementalEffectiveness", + refTo="", + type="Float", + width=200 + }, + [9]={ + list=true, + name="RemoveStats", + refTo="Stats", + type="Key", + width=870 + }, + [10]={ + list=false, + name="UseSetAttackMulti", + refTo="", + type="Bool", + width=130 + } + }, + grantedeffectstatsetsperlevel={ + [1]={ + list=false, + name="GrantedEffectStatSets", + refTo="GrantedEffectStatSets", + type="Key", + width=250 + }, + [2]={ + list=false, + name="GemLevel", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=false, + name="AttackCritChance", + refTo="", + type="Int", + width=100 + }, + [4]={ + list=false, + name="OffhandCritChance", + refTo="", + type="Int", + width=120 + }, + [5]={ + list=true, + name="BaseResolvedValues", + refTo="", + type="Int", + width=110 + }, + [6]={ + list=true, + name="AdditionalStatsValues", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=190 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="AdditionalBooleanStats", + refTo="Stats", + type="Key", + width=200 + }, + [11]={ + list=true, + name="FloatStats", + refTo="Stats", + type="Key", + width=400 + }, + [12]={ + list=true, + name="InterpolationBases", + refTo="EffectivenessCostConstants", + type="Key", + width=150 + }, + [13]={ + list=true, + name="AdditionalStats", + refTo="Stats", + type="Key", + width=400 + }, + [14]={ + list=true, + name="StatInterpolations", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=true, + name="FloatStatsValues", + refTo="", + type="Float", + width=270 + }, + [16]={ + list=false, + name="ActorLevel", + refTo="", + type="Float", + width=150 + }, + [17]={ + list=false, + name="BaseMultiplier", + refTo="", + type="Int", + width=150 + } + }, + grantedskillsocketnumbers={ + [1]={ + list=false, + name="PlayerLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="NumSupportSockets", + refTo="", + type="Int", + width=150 + } + }, + graphicalitemexchange={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Red", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Green", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Blue", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="ButtonLabel", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + graphicalitemexchangeslot={ + [1]={ + list=false, + name="Item", + refTo="GraphicalItemExchange", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Inventory", + refTo="Inventories", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="ItemCondition", + refTo="ItemConditions", + type="Key", + width=300 + }, + [14]={ + list=false, + name="GlowArt", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + graphicalitemreceptacle={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="HoverMessage", + refTo="ClientStrings", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="ErrorMessage", + refTo="ClientStrings", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="AreaName", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [12]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="Description", + refTo="ClientStrings", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + graphicalitemreceptacleadditionalbutton={ + [1]={ + list=false, + name="Receptacle", + refTo="GraphicalItemReceptacle", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Instructions", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + graphicalitemreceptacleslot={ + [1]={ + list=false, + name="GraphicalItemReceptacle", + refTo="GraphicalItemReceptacle", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Key", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=true, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [8]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + groundeffecteffecttypes={ + }, + groundeffects={ + [1]={ + list=false, + name="GroundEffectTypesKey", + refTo="GroundEffectTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="BuffVisual1", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="AOFile", + refTo="", + type="String", + width=300 + }, + [9]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [10]={ + list=false, + name="EndEffect", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="BuffVisual2", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [12]={ + list=false, + name="MiscObject1", + refTo="MiscObjects", + type="Key", + width=150 + }, + [13]={ + list=false, + name="MiscObject2", + refTo="MiscObjects", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="BuffVisual3", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + groundeffecttypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=false, + name="BuffDefinition1", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [6]={ + list=false, + name="BuffDefinition2", + refTo="BuffDefinitions", + type="Key", + width=150 + } + }, + hapticevents={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HapticAudio", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + harbingermaps={ + }, + harbingers={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + hardmodeextracontentchances={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="SingleSpawnChance", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="DoubleSpawnChance", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="TripleSpawnChance", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="NoSpawnChance", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="Leagues", + refTo="CoreLeagues", + type="Key", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [8]={ + list=true, + name="CoreLeague", + refTo="CoreLeagues", + type="Key", + width=300 + } + }, + harvestcolours={ + }, + harvestcraftcostscalingbybasetype={ + [1]={ + list=false, + name="Craft", + refTo="HarvestCraftOptions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Scale", + refTo="", + type="Int", + width=150 + } + }, + harvestcraftfilters={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + harvestcraftoptionicons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="DDSFile", + refTo="", + type="String", + width=240 + } + }, + harvestcraftoptions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Tier", + refTo="HarvestCraftTiers", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Command", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Parameters", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="MirageAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [7]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [8]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="IsEnchant", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="LifeforceType", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="LifeforceCost", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="SacredCost", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=true, + name="NecropolisAchievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + harvestcrafttiers={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="FrameImage", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="FrameHighlight", + refTo="", + type="String", + width=240 + } + }, + harvestdurability={ + }, + harvestencounterscaling={ + }, + harvestinfrastructure={ + [1]={ + list=false, + name="Object", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ClientStringsKey", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + harvestinfrastructurecategories={ + }, + harvestlifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MoreLife", + refTo="", + type="Int", + width=150 + } + }, + harvestmetacraftingoptions={ + }, + harvestobjects={ + }, + harvestperlevelvalues={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + harvestplantboosterfamilies={ + }, + harvestplantboosters={ + }, + harvestseeditems={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="DropStat", + refTo="Stats", + type="Key", + width=150 + } + }, + harvestseeds={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [7]={ + list=false, + name="SeedAnimation", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="HatchAnimation", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="SeedType", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + harvestseedtypes={ + }, + harvestspecialcraftcosts={ + }, + harvestspecialcraftoptions={ + }, + harveststoragelayout={ + }, + heistareaformationlayout={ + [1]={ + list=false, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistareas={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="EnvironmentsKey1", + refTo="Environments", + type="Key", + width=150 + }, + [5]={ + list=false, + name="EnvironmentsKey2", + refTo="Environments", + type="Key", + width=150 + }, + [6]={ + list=true, + name="HeistJobsKeys", + refTo="HeistJobs", + type="Key", + width=300 + }, + [7]={ + list=false, + name="Contract_BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [8]={ + list=false, + name="Blueprint_BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [9]={ + list=false, + name="DGRFile", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="Blueprint_DDSFile", + refTo="", + type="String", + width=240 + }, + [15]={ + list=true, + name="Achievements1", + refTo="AchievementItems", + type="Key", + width=300 + }, + [16]={ + list=true, + name="Achievements2", + refTo="AchievementItems", + type="Key", + width=300 + }, + [17]={ + list=false, + name="Reward", + refTo="ClientStrings", + type="Key", + width=150 + }, + [18]={ + list=true, + name="Achievements3", + refTo="AchievementItems", + type="Key", + width=300 + }, + [19]={ + list=false, + name="RewardHardmode", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + heistbalanceperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="HeistValueScalingKey1", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [9]={ + list=false, + name="HeistValueScalingKey2", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [10]={ + list=false, + name="HeistValueScalingKey3", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [11]={ + list=false, + name="HeistValueScalingKey4", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [12]={ + list=false, + name="HeistValueScalingKey5", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [17]={ + list=false, + name="HeistValueScalingKey6", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [18]={ + list=false, + name="HeistValueScalingKey7", + refTo="HeistValueScaling", + type="Key", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistblueprintwindowtypes={ + }, + heistchestrewardtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="RewardTypeName", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="HeistChestRewardTypes", + type="Key", + width=150 + }, + [5]={ + list=false, + name="RewardRoomName", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="RewardRoomName2", + refTo="", + type="String", + width=240 + }, + [10]={ + list=true, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistchests={ + [1]={ + list=false, + name="ChestsKey", + refTo="Chests", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=300 + }, + [4]={ + list=false, + name="HeistChestTypesKey", + refTo="HeistChestTypes", + type="Enum", + width=150 + } + }, + heistchesttypes={ + }, + heistchokepointformation={ + [1]={ + list=false, + name="", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="", + refTo="GrantedEffects", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistconstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Float", + width=150 + } + }, + heistcontracts={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistdoodadnpcs={ + [1]={ + list=false, + name="NPCsKey", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Stance", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="BetrayalTargetsKey", + refTo="BetrayalTargets", + type="Key", + width=150 + } + }, + heistdoors={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="HeistJobsKey1", + refTo="HeistJobs", + type="Key", + width=150 + }, + [4]={ + list=false, + name="HeistJobsKey2", + refTo="HeistJobs", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=150 + } + }, + heistequipment={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="RequiredJob_HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [3]={ + list=false, + name="RequiredLevel", + refTo="", + type="Int", + width=150 + } + }, + heistformationmarkertype={ + }, + heistgeneration={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistintroareas={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="DGRFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistjobs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="RequiredSkillIcon", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="SkillIcon", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MapIcon", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Level_StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Alert_StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Alarm_StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [11]={ + list=false, + name="Cost_StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [12]={ + list=false, + name="ExperienceGain_StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [13]={ + list=false, + name="ConsoleBlueprintLegend", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } + }, + heistjobsexperienceperlevel={ + [1]={ + list=false, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Experience", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + heistlocktype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [3]={ + list=false, + name="SkillIcon", + refTo="", + type="String", + width=240 + } + }, + heistnpcauras={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 + } + }, + heistnpcblueprinttypes={ + [1]={ + list=false, + name="NPCsKey", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistnpcdialogue={ + [1]={ + list=false, + name="DialogueEventKey", + refTo="DialogueEvent", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HeistNPCsKey", + refTo="HeistNPCs", + type="Key", + width=150 + }, + [3]={ + list=true, + name="AudioNormal", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [4]={ + list=true, + name="AudioLoud", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistnpcs={ + [1]={ + list=false, + name="NPCsKey", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=true, + name="SkillLevel_HeistJobsKeys", + refTo="HeistJobs", + type="Key", + width=300 + }, + [4]={ + list=false, + name="PortraitFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="HeistNPCStatsKeys", + refTo="HeistNPCStats", + type="Key", + width=300 + }, + [6]={ + list=true, + name="StatValues", + refTo="", + type="Float", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=true, + name="SkillLevel_Values", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="SilhouetteFile", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="HeistNPCsKey", + refTo="HeistNPCs", + type="Key", + width=150 + }, + [14]={ + list=true, + name="StatValues2", + refTo="", + type="Float", + width=300 + }, + [15]={ + list=false, + name="Ally_NPCsKey", + refTo="NPCs", + type="Key", + width=150 + }, + [16]={ + list=false, + name="ActiveNPCIcon", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [18]={ + list=true, + name="Equip_AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [19]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [20]={ + list=false, + name="Inventory", + refTo="Inventories", + type="Key", + width=150 + } + }, + heistnpcstats={ + [1]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + heistobjectives={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Scaling", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + heistobjectivevaluedescriptions={ + [1]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MarkersMultiply", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } + }, + heistpatrolpacks={ + [1]={ + list=false, + name="MonsterPacksKey", + refTo="MonsterPacks", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + heistquestcontracts={ + [1]={ + list=false, + name="HeistContractsKey", + refTo="HeistContracts", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HeistObjectivesKey", + refTo="HeistObjectives", + type="Key", + width=150 + }, + [3]={ + list=true, + name="HeistNPCsKey", + refTo="HeistNPCs", + type="Key", + width=300 + }, + [4]={ + list=false, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="HeistRoomsKey1", + refTo="HeistRooms", + type="Key", + width=150 + }, + [10]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="HaveObjective", + refTo="QuestFlags", + type="Key", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="QuestActive", + refTo="QuestFlags", + type="Key", + width=150 + }, + [20]={ + list=false, + name="HaveQuest", + refTo="QuestFlags", + type="Key", + width=150 + }, + [21]={ + list=false, + name="HaveObjective2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=false, + name="Objective", + refTo="", + type="String", + width=240 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [26]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [28]={ + list=false, + name="HeistIntroAreasKey", + refTo="HeistIntroAreas", + type="Key", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [30]={ + list=false, + name="HeistRoomsKey2", + refTo="HeistRooms", + type="Key", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + heistrevealingnpcs={ + [1]={ + list=false, + name="NPCsKey", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="PortraitFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="NPCAudioKey", + refTo="NPCAudio", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + heistrooms={ + [1]={ + list=false, + name="HeistAreasKey", + refTo="HeistAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ARMFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HeistJobsKey1", + refTo="HeistJobs", + type="Key", + width=150 + }, + [5]={ + list=false, + name="HeistJobsKey2", + refTo="HeistJobs", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + heistroomtypes={ + }, + heiststoragelayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="ButtonFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="HeistJobsKey", + refTo="HeistJobs", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + } + }, + heistvaluescaling={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + hellscapeaoreplacements={ + [1]={ + list=false, + name="Original", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [3]={ + list=false, + name="Replacement", + refTo="", + type="String", + width=240 + } + }, + hellscapeareapacks={ + [1]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=true, + name="MonsterPacks", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + hellscapeexperiencelevels={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Experience", + refTo="", + type="Int", + width=150 + } + }, + hellscapefactions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="Environments", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="Environments", + type="Key", + width=150 + }, + [4]={ + list=true, + name="", + refTo="Environments", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Boss", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + hellscapeimmunemonsters={ + [1]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + hellscapeitemmodificationtiers={ + [1]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="IsMap", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MinItemLvl", + refTo="", + type="Int", + width=150 + } + }, + hellscapelifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MoreLife", + refTo="", + type="Int", + width=150 + } + }, + hellscapemodificationinventorylayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Column", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Row", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="IsMapSlot", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=false, + name="StatValue", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="UnlockedWith", + refTo="HellscapePassives", + type="Key", + width=150 + }, + [11]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + } + }, + hellscapemods={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [2]={ + list=true, + name="TiersWhitelist", + refTo="", + type="Int", + width=300 + }, + [3]={ + list=false, + name="TransformAchievement", + refTo="AchievementItems", + type="Key", + width=150 + }, + [4]={ + list=true, + name="ModFamilies", + refTo="ModFamily", + type="Key", + width=300 + } + }, + hellscapemonsterpacks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MonsterPack", + refTo="MonsterPacks", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Faction", + refTo="HellscapeFactions", + type="Key", + width=150 + }, + [4]={ + list=false, + name="IsDonutPack", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="IsElite", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + } + }, + hellscapepassives={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=true, + name="StatsValues", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="Points", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="HASH16", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="IconMaxed", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + } + }, + hellscapepassivetree={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AllocationsRequired", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Passives", + refTo="HellscapePassives", + type="Key", + width=300 + } + }, + hideoutcraftingbenchdoodads={ + [1]={ + list=false, + name="CraftingBench", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [2]={ + list=false, + name="InterfaceVisuals", + refTo="HideoutCraftingBenchInterfaceVisuals", + type="Key", + width=150 + } + }, + hideoutcraftingbenchinterfacevisuals={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + hideoutdoodadcategory={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + hideoutdoodads={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Variation_AOFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="IsNonMasterDoodad", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="InheritsFrom", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="Tags", + refTo="HideoutDoodadTags", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="Hideout", + refTo="Hideouts", + type="Key", + width=150 + }, + [11]={ + list=false, + name="Category", + refTo="HideoutDoodadCategory", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=false, + name="AchievementReward", + refTo="AchievementSetRewards", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="HideoutSpecial", + refTo="Hideouts", + type="Key", + width=150 + }, + [17]={ + list=true, + name="HideoutItems", + refTo="HideoutDoodads", + type="Key", + width=300 + }, + [18]={ + list=false, + name="HideoutItemLink", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + hideoutdoodadtags={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + hideoutnpcs={ + [1]={ + list=false, + name="NPC", + refTo="NPCs", + type="Key", + width=370 + }, + [2]={ + list=false, + name="HideoutDoodad", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Ruleset", + refTo="Rulesets", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=true, + name="HideoutDoodads", + refTo="HideoutDoodads", + type="Key", + width=300 + } + }, + hideoutrarity={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + } + }, + hideoutresistpenalties={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=100 + } + }, + hideouts={ + [1]={ + list=false, + name="HideoutArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [3]={ + list=false, + name="HideoutFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ClaimSideArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [5]={ + list=false, + name="HideoutImage", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="IsEnabled", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="MtxType", + refTo="MtxTypes", + type="Key", + width=150 + }, + [11]={ + list=false, + name="ErrorMessage", + refTo="", + type="String", + width=240 + } + }, + hideoutsalvagebenchdoodads={ + [1]={ + list=false, + name="HideoutDoodads", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [2]={ + list=false, + name="InterfaceVisuals", + refTo="HideoutSalvageBenchInterfaceVisuals", + type="Key", + width=150 + } + }, + hideoutsalvagebenchinterfacevisuals={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="HammerArt", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ButtonArt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + hideoutstashdoodads={ + [1]={ + list=false, + name="Id", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + hideoutwaypointdoodads={ + [1]={ + list=false, + name="Waypoint", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Script1", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Script2", + refTo="", + type="String", + width=240 + } + }, + hudenergyshieldvisuals={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + hudlifevisuals={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [16]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + hudvisualsfromstat={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HudLifeVisual", + refTo="HudLifeVisuals", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HudESVisual", + refTo="HudEnergyShieldVisuals", + type="Key", + width=150 + } + }, + impactsounddata={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Sound", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + incubatorbaserequiredkillsperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="RequiredKills", + refTo="", + type="Int", + width=150 + } + }, + incubators={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Reward", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [5]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="RewardDescription", + refTo="ClientStrings", + type="Key", + width=150 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + incursion2corruptioncurrencies={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + incursion2crafting={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Icon_DDSFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="GlowIcon_DDSFile", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [12]={ + list=false, + name="CanTakeCurrency", + refTo="", + type="Bool", + width=150 + } + }, + incursion2encountertileperarea={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + incursion2medallions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Icon_DDSFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, + incursion2mutateduniquemodsclient={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + } + }, + incursion2roomperlevel={ + [1]={ + list=false, + name="Room", + refTo="Incursion2Rooms", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Icon_DDSFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [8]={ + list=true, + name="ModValues", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="Description2", + refTo="", + type="String", + width=240 + } + }, + incursion2rooms={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="IsPathway", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=true, + name="UpgradedBy", + refTo="Incursion2Rooms", + type="Key", + width=300 + }, + [4]={ + list=true, + name="ConvertedBy", + refTo="Incursion2Rooms", + type="Key", + width=300 + }, + [5]={ + list=true, + name="ConvertedTo", + refTo="Incursion2Rooms", + type="Key", + width=300 + }, + [6]={ + list=false, + name="UpgradedByPower", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="IsPresentDay", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="IsBossReward", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="Icon_DDSFile", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="RewardUnlockStat", + refTo="Stats", + type="Key", + width=150 + } + }, + incursion2templelevelpercharacterlevel={ + [1]={ + list=false, + name="CharacterLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + incursionarchitect={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + } + }, + incursionbrackets={ + [1]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Incursion_WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Template_WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [4]={ + list=true, + name="", + refTo="", + type="Float", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + incursionchestrewards={ + [1]={ + list=false, + name="IncursionRoomsKey", + refTo="IncursionRooms", + type="Key", + width=150 + }, + [2]={ + list=true, + name="IncursionChestsKeys", + refTo="IncursionChests", + type="Key", + width=300 + }, + [3]={ + list=false, + name="ChestMarkerMetadata", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [5]={ + list=true, + name="RuthlessIncursionChestsKeys", + refTo="IncursionChests", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + incursionchests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ChestsKey", + refTo="Chests", + type="Key", + width=150 + }, + [3]={ + list=false, + name="UniqueChestsKey", + refTo="UniqueChests", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + incursionroomadditionalbossdrops={ + }, + incursionroombossfightevents={ + [1]={ + list=false, + name="Room", + refTo="IncursionRooms", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="TurretMonster", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + incursionrooms={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="RoomUpgrade_IncursionRoomsKey", + refTo="IncursionRooms", + type="Key", + width=150 + }, + [6]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [7]={ + list=false, + name="PresentARMFile", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="HASH16", + refTo="", + type="UInt", + width=150 + }, + [9]={ + list=false, + name="IncursionArchitectKey", + refTo="IncursionArchitect", + type="Key", + width=150 + }, + [10]={ + list=false, + name="PastARMFile", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="TSIFile", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="UIIcon", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [15]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="RoomUpgradeFrom_IncursionRoomsKey", + refTo="IncursionRooms", + type="Key", + width=150 + }, + [19]={ + list=false, + name="ItemisedFlavourText", + refTo="FlavourText", + type="Key", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [21]={ + list=true, + name="", + refTo="Mods", + type="Key", + width=300 + } + }, + incursionuniqueupgradecomponents={ + [1]={ + list=false, + name="BaseUnique", + refTo="Words", + type="Key", + width=150 + }, + [2]={ + list=false, + name="UpgradeCurrency", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + incursionuniqueupgrades={ + }, + indexableskillgems={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=220 + }, + [2]={ + list=true, + name="HASH16", + refTo="SkillGems", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Name1", + refTo="", + type="String", + width=150 + }, + [4]={ + list=true, + name="SkillGem2", + refTo="SkillGems", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Name2", + refTo="", + type="String", + width=150 + }, + [6]={ + list=false, + name="IndexRuthless", + refTo="IndexableSkillGems", + type="Key", + width=150 + } + }, + indexablesupportgems={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="SkillGems", + type="Key", + width=300 + }, + [3]={ + list=false, + name="Skill", + refTo="", + type="String", + width=200 + } + }, + indicatorconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="MonsterStats", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="ConditionStat", + refTo="Stats", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=true, + name="Rarity", + refTo="Rarity", + type="Key", + width=300 + } + }, + influenceexalts={ + [1]={ + list=false, + name="Influence", + refTo="InfluenceTypes", + type="Enum", + width=150 + }, + [2]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + influencemodupgrades={ + [1]={ + list=false, + name="InfluenceMod", + refTo="Mods", + type="Key", + width=150 + }, + [2]={ + list=false, + name="UpgradedMod", + refTo="Mods", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HighestTier", + refTo="", + type="Bool", + width=150 + } + }, + influencetags={ + [1]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [2]={ + enumBase=1, + list=false, + name="InfluenceType", + refTo="InfluenceTypes", + type="Enum", + width=150 + }, + [3]={ + list=false, + name="tags", + refTo="Tags", + type="Key", + width=150 + } + }, + influencetypes={ + }, + interpolatebuffeffect={ + [1]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=200 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [5]={ + list=false, + name="Divisor", + refTo="", + type="Int", + width=80 + } + }, + invasionmonstergroups={ + }, + invasionmonsterrestrictions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=true, + name="MonsterVarietiesKeys", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + invasionmonsterroles={ + }, + invasionmonstersperarea={ + [1]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="MonsterVarietiesKeys1", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [5]={ + list=true, + name="MonsterVarietiesKeys2", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + inventories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="InventoryIdKey", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="InventoryTypeKey", + refTo="InventoryType", + type="Enum", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=true, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=300 + } + }, + inventoryid={ + }, + inventorytype={ + }, + islandcompleteflags={ + [1]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MapPin", + refTo="MapPins", + type="Key", + width=150 + } + }, + itemclasscategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=180 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + itemclasses={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="ItemClassCategory", + refTo="ItemClassCategories", + type="Key", + width=150 + }, + [4]={ + list=false, + name="RemovedIfLeavesArea", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=20 + }, + [6]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=150 + }, + [7]={ + list=false, + name="AllocateToMapOwner", + refTo="", + type="Bool", + width=130 + }, + [8]={ + list=false, + name="AlwaysAllocate", + refTo="", + type="Bool", + width=120 + }, + [9]={ + list=false, + name="CanHaveVeiledMods", + refTo="", + type="Bool", + width=130 + }, + [10]={ + list=false, + name="PickedUpQuest", + refTo="QuestFlags", + type="Key", + width=110 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [12]={ + list=false, + name="AlwaysShow", + refTo="", + type="Bool", + width=100 + }, + [13]={ + list=false, + name="CanBeCorrupted", + refTo="", + type="Bool", + width=100 + }, + [14]={ + list=false, + name="CanHaveIncubators", + refTo="", + type="Bool", + width=120 + }, + [15]={ + list=false, + name="CanHaveInfluence", + refTo="", + type="Bool", + width=120 + }, + [16]={ + list=false, + name="CanBeDoubleCorrupted", + refTo="", + type="Bool", + width=130 + }, + [17]={ + list=false, + name="CanHaveAspects", + refTo="", + type="Bool", + width=110 + }, + [18]={ + list=false, + name="ItemStance", + refTo="ItemStances", + type="Key", + width=110 + }, + [19]={ + list=false, + name="CanScourge", + refTo="", + type="Bool", + width=80 + }, + [20]={ + list=false, + name="CanUpgradeRarity", + refTo="", + type="Bool", + width=110 + }, + [21]={ + list=true, + name="Flags", + refTo="", + type="Int", + width=100 + }, + [22]={ + list=false, + name="Unmodifiable", + refTo="", + type="Bool", + width=100 + }, + [23]={ + list=false, + name="CanBeFractured", + refTo="", + type="Bool", + width=100 + }, + [24]={ + list=false, + name="EquipAchievements", + refTo="AchievementItems", + type="Key", + width=120 + }, + [25]={ + list=false, + name="UsedInMapDevice", + refTo="", + type="Bool", + width=100 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [27]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + itemclassflags={ + }, + itemconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="BaseItemTypes", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [9]={ + list=false, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Words", + refTo="Words", + type="Key", + width=150 + } + }, + itemcostperlevel={ + [1]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Cost", + refTo="ItemCosts", + type="Key", + width=150 + }, + [4]={ + list=false, + name="CostHardmode", + refTo="ItemCosts", + type="Key", + width=150 + } + }, + itemcosts={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Cost1Currencies", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [3]={ + list=true, + name="Cost1Values", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="Cost2Currencies", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [5]={ + list=true, + name="Cost2Values", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=true, + name="Cost3Currencies", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [7]={ + list=true, + name="Cost3Values", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=true, + name="Cost4Currencies", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [9]={ + list=true, + name="Cost4Values", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=true, + name="RuthlessWithGold", + refTo="", + type="Int", + width=300 + } + }, + itemcreationtemplatecustomaction={ + }, + itemdisenchantvalues={ + [1]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="BaseValue", + refTo="", + type="Int", + width=150 + } + }, + itemexperienceperlevel={ + [1]={ + list=false, + name="ItemExperienceType", + refTo="ItemExperienceTypes", + type="Key", + width=410 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=50 + }, + [3]={ + list=false, + name="Experience", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="PlayerLevel", + refTo="", + type="Int", + width=150 + } + }, + itemexperiencetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=270 + } + }, + itemframetype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="DoubleLine", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="HeaderSingle", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="HeaderDouble", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="HardmodeHeaderSingle", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="HardmodeHeaderDouble", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="Color", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=false, + name="Separator", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [12]={ + list=false, + name="DisplayString", + refTo="ClientStrings", + type="Key", + width=150 + }, + [13]={ + list=false, + name="ColorMarkup", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="", + refTo="ItemFrameType", + type="Key", + width=150 + } + }, + iteminherentskills={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=450 + }, + [2]={ + list=true, + name="Skill", + refTo="SkillGems", + type="Key", + width=400 + }, + [3]={ + list=false, + name="Mainhand", + refTo="", + type="Bool", + width=50 + } + }, + itemisedcorpse={ + [1]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=400 + }, + [2]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=500 + }, + [3]={ + list=false, + name="MonsterAbilities", + refTo="", + type="String", + width=600 + }, + [4]={ + list=false, + name="MonsterCategory", + refTo="CorpseTypeTags", + type="Key", + width=130 + } + }, + itemisedvisualeffect={ + [1]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="VisualEffect", + refTo="ItemVisualEffect", + type="Key", + width=150 + }, + [3]={ + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [4]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=300 + }, + [6]={ + list=true, + name="BaseItemTypes", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=true, + name="Name", + refTo="Words", + type="Key", + width=300 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [14]={ + list=true, + name="Character", + refTo="Characters", + type="Key", + width=300 + }, + [15]={ + list=true, + name="GrantedEffect", + refTo="GrantedEffectsPerLevel", + type="Key", + width=300 + }, + [16]={ + list=true, + name="OnKillEffect", + refTo="MicrotransactionOnKillEffects", + type="Key", + width=300 + }, + [17]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="EffectSlotType", + refTo="MicrotransactionSkillGemEffectSlotTypes", + type="Key", + width=150 + }, + [20]={ + list=false, + name="VisualEffectType", + refTo="ItemisedVisualEffectExclusiveTypes", + type="Key", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="GameObjectTask", + refTo="GameObjectTasks", + type="Key", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + itemisedvisualeffectexclusivetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + itemnotecode={ + [1]={ + list=false, + name="CurrencyItem", + refTo="CurrencyItems", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Code", + refTo="", + type="String", + width=240 + } + }, + itemsetnames={ + }, + itemshoptype={ + }, + itemspirit={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=430 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=150 + } + }, + itemstances={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="ItemStances", + type="Key", + width=150 + } + }, + itemsynthesiscorruptedmods={ + [1]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=170 + }, + [2]={ + list=true, + name="ImplicitMods", + refTo="Mods", + type="Key", + width=910 + } + }, + itemsynthesismods={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=120 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=350 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=440 + }, + [5]={ + list=true, + name="ImplicitMod", + refTo="Mods", + type="Key", + width=450 + } + }, + itemthemes={ + }, + itemtoggleable={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + itemtradedata={ + }, + itemvisualeffect={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="DaggerEPKFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BowEPKFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="OneHandedMaceEPKFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="OneHandedSwordEPKFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="TwoHandedSwordEPKFile", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="TwoHandedStaffEPKFile", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="TwoHandedMaceEPKFile", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="OneHandedAxeEPKFile", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="TwoHandedAxeEPKFile", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="ClawEPKFile", + refTo="", + type="String", + width=240 + }, + [16]={ + list=false, + name="PETFile", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="Shield", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="OnHitEffect", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [20]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [21]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [22]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [23]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [24]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [25]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + itemvisualheldbodymodel={ + [1]={ + list=false, + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MarauderAnimatedObject", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="RangerAnimatedObject", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="WitchAnimatedObject", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="DuelistAnimatedObject", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="TemplarAnimatedObject", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="ShadowAnimatedObject", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="ScionAnimatedObject", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="MarauderBone", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="RangerBone", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="WitchBone", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="DuelistBone", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="TemplarBone", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="ShadowBone", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="ScionBone", + refTo="", + type="String", + width=240 + }, + [16]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [20]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [21]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [22]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [23]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [24]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [25]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [26]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [27]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [28]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [29]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + itemvisualheldbodymodeloverridebyitemaffiliatedattributes={ + [1]={ + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + itemvisualheldmodeloverridebyitemaffiliatedattributes={ + [1]={ + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [2]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + itemvisualidentity={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=350 + }, + [2]={ + list=false, + name="DDSFile", + refTo="", + type="String", + width=370 + }, + [3]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=610 + }, + [4]={ + list=false, + name="InventorySound", + refTo="SoundEffects", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Hash", + refTo="", + type="UInt16", + width=70 + }, + [6]={ + list=false, + name="AOFile2", + refTo="", + type="String", + width=150 + }, + [7]={ + list=true, + name="MarauderSMFiles", + refTo="", + type="String", + width=150 + }, + [8]={ + list=true, + name="RangerSMFiles", + refTo="", + type="String", + width=150 + }, + [9]={ + list=true, + name="WitchSMFiles", + refTo="", + type="String", + width=150 + }, + [10]={ + list=true, + name="DuelistDexSMFiles", + refTo="", + type="String", + width=150 + }, + [11]={ + list=true, + name="TemplarSMFiles", + refTo="", + type="String", + width=150 + }, + [12]={ + list=true, + name="ShadowSMFiles", + refTo="", + type="String", + width=150 + }, + [13]={ + list=true, + name="ScionSMFiles", + refTo="", + type="String", + width=150 + }, + [14]={ + list=false, + name="MarauderShape", + refTo="", + type="String", + width=150 + }, + [15]={ + list=false, + name="RangerShape", + refTo="", + type="String", + width=150 + }, + [16]={ + list=false, + name="WitchShape", + refTo="", + type="String", + width=150 + }, + [17]={ + list=false, + name="DuelistShape", + refTo="", + type="String", + width=150 + }, + [18]={ + list=false, + name="TemplarShape", + refTo="", + type="String", + width=150 + }, + [19]={ + list=false, + name="ShadowShape", + refTo="", + type="String", + width=150 + }, + [20]={ + list=false, + name="ScionShape", + refTo="", + type="String", + width=150 + }, + [21]={ + list=false, + name="TwoHandSoundType", + refTo="WeaponSoundTypes", + type="Key", + width=50 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [23]={ + list=true, + name="Pickup_AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=170 + }, + [24]={ + list=true, + name="SMFiles", + refTo="", + type="String", + width=150 + }, + [25]={ + list=true, + name="Identify_AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=170 + }, + [26]={ + list=false, + name="EPKFile", + refTo="", + type="String", + width=150 + }, + [27]={ + list=true, + name="Corrupt_AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=160 + }, + [28]={ + list=false, + name="IsAlternateArt", + refTo="", + type="Bool", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [30]={ + list=false, + name="CreateCorruptedJewelAchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=230 + }, + [31]={ + list=false, + name="AnimationLocation", + refTo="", + type="String", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [33]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [35]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [38]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [39]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [40]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [41]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [42]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [44]={ + list=false, + name="IsAtlasOfWorldsMapIcon", + refTo="", + type="Bool", + width=150 + }, + [45]={ + list=false, + name="IsTier16Icon", + refTo="", + type="Bool", + width=150 + }, + [46]={ + list=true, + name="", + refTo="", + type="Int", + width=500 + }, + [47]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [48]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [49]={ + list=true, + name="", + refTo="", + type="String", + width=480 + }, + [50]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [51]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [52]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [53]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [54]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [55]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [56]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [57]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [58]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [59]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [60]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [61]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [62]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [63]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [64]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [65]={ + list=false, + name="Composition", + refTo="ItemVisualCompositions", + type="Enum", + width=150 + }, + [66]={ + list=false, + name="UniqueStat1", + refTo="Stats", + type="Key", + width=150 + }, + [67]={ + list=false, + name="UniqueStat2", + refTo="Stats", + type="Key", + width=150 + }, + [68]={ + list=false, + name="UniqueStat3", + refTo="Stats", + type="Key", + width=150 + }, + [69]={ + list=false, + name="UniqueStat4", + refTo="Stats", + type="Key", + width=150 + }, + [70]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [71]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [72]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [73]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [74]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [75]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [76]={ + list=false, + name="AudioEvent", + refTo="CharacterAudioEvents", + type="Key", + width=150 + }, + [77]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [78]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [79]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [80]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [81]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [82]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [83]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [84]={ + list=false, + name="CharacterSkin", + refTo="AlternateCharacterSkin", + type="Key", + width=150 + }, + [85]={ + list=false, + name="OneHandSoundType", + refTo="WeaponSoundTypes", + type="Key", + width=150 + }, + [86]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=300 + }, + [87]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [88]={ + list=false, + name="ShieldHeldAnimatedObject", + refTo="", + type="String", + width=150 + }, + [89]={ + list=false, + name="SheathAnimatedObject", + refTo="", + type="String", + width=240 + } + }, + itemvisualreplacement={ + [1]={ + list=false, + name="Id", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + } + }, + itemvisualsreplacedwithstat={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + } + }, + jobassassinationspawnergroups={ + [1]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + jobraidbrackets={ + [1]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + kalguurangemlevelcurrency={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="GemLevel", + refTo="", + type="Int", + width=150 + } + }, + kalguuransupportgemlimitperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="SupportCount", + refTo="", + type="Int", + width=150 + } + }, + keywordpopupitemreference={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="UniqueName", + refTo="Words", + type="Key", + width=150 + }, + [4]={ + list=false, + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [5]={ + list=false, + name="FlavourText", + refTo="FlavourText", + type="Key", + width=150 + }, + [6]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [7]={ + list=false, + name="ItemLevel", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + keywordpopupmodreference={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [3]={ + list=false, + name="StatDescription", + refTo="", + type="String", + width=240 + } + }, + keywordpopups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=380 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=330 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="ItemReference", + refTo="KeywordPopupItemReference", + type="Key", + width=150 + }, + [7]={ + list=false, + name="ModReference", + refTo="KeywordPopupModReference", + type="Key", + width=150 + } + }, + killstreakthresholds={ + [1]={ + list=false, + name="Kills", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=150 + } + }, + kioskmodecharactertutorials={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="PopupArt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="DescriptionGerman", + refTo="", + type="String", + width=240 + } + }, + kiraclevels={ + [1]={ + list=false, + name="MapAreaLevelOffered", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MapCompletion", + refTo="", + type="Int", + width=150 + } + }, + labyrinthareas={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Normal_WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [3]={ + list=true, + name="Cruel_WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [4]={ + list=true, + name="Merciless_WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [5]={ + list=true, + name="Endgame_WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + labyrinthbonusitems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="LabyrinthName", + refTo="", + type="String", + width=240 + } + }, + labyrinthexclusiongroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + labyrinthizarochests={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ChestsKey", + refTo="Chests", + type="Key", + width=150 + }, + [3]={ + list=false, + name="SpawnWeight", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="MinLabyrinthTier", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="MaxLabyrinthTier", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + labyrinthnodeoverrides={ + [1]={ + list=false, + name="Id1", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Id2", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + labyrinthrewards={ + }, + labyrinthrewardtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ObjectPath", + refTo="", + type="String", + width=240 + } + }, + labyrinths={ + [1]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="OfferingItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [5]={ + list=true, + name="RequiredTrials", + refTo="LabyrinthTrials", + type="Key", + width=300 + }, + [6]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="JewelReward", + refTo="Words", + type="Key", + width=150 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [11]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="CraftingFontDescription", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + labyrinthsecreteffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Buff_BuffDefinitionsKey", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [4]={ + list=true, + name="Buff_StatValues", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="OTFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="Buff_StatValuesRuthless", + refTo="", + type="Int", + width=300 + } + }, + labyrinthsecretlocations={ + }, + labyrinthsecrets={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Id2", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="LabyrinthSecretEffectsKeys0", + refTo="LabyrinthSecretEffects", + type="Key", + width=300 + }, + [7]={ + list=true, + name="LabyrinthSecretEffectsKeys1", + refTo="LabyrinthSecretEffects", + type="Key", + width=300 + }, + [8]={ + list=true, + name="LabyrinthSecretEffectsKeys2", + refTo="LabyrinthSecretEffects", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="LabyrinthSecretEffectsKeys3", + refTo="LabyrinthSecretEffects", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=150 + }, + [19]={ + list=false, + name="LabyrinthTierMinimum", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="LabyrinthTierMaximum", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + labyrinthsection={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ExclusionGroup", + refTo="LabyrinthExclusionGroups", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + labyrinthsectionlayout={ + [1]={ + list=false, + name="LabyrinthSectionKey", + refTo="LabyrinthSection", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="LabyrinthSectionLayoutKeys", + refTo="LabyrinthSectionLayout", + type="Key", + width=300 + }, + [4]={ + list=false, + name="LabyrinthSecretsKey0", + refTo="LabyrinthSecrets", + type="Key", + width=150 + }, + [5]={ + list=false, + name="LabyrinthSecretsKey1", + refTo="LabyrinthSecrets", + type="Key", + width=150 + }, + [6]={ + list=false, + name="LabyrinthAreasKey", + refTo="LabyrinthAreas", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Float0", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="Float1", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=true, + name="LabyrinthNodeOverridesKeys", + refTo="LabyrinthNodeOverrides", + type="Key", + width=300 + } + }, + labyrinthtrials={ + [1]={ + list=false, + name="WorldAreas", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="NPCTextAudioKey", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + labyrinthtrinkets={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="LabyrinthSecretsKey", + refTo="LabyrinthSecrets", + type="Key", + width=300 + }, + [3]={ + list=false, + name="Buff_BuffDefinitionsKey", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [4]={ + list=true, + name="Buff_StatValues", + refTo="", + type="Int", + width=300 + } + }, + lakebosslifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MoreLife", + refTo="", + type="Int", + width=150 + } + }, + lakemetaoptions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + lakemetaoptionsunlocktext={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + } + }, + lakeroomcompletion={ + [1]={ + list=false, + name="Room", + refTo="LakeRooms", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + lakerooms={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="ARMFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [5]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [6]={ + list=true, + name="StatsValues", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="Type", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [11]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="StampFamily", + refTo="StampFamily", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=true, + name="ExtraStats", + refTo="Stats", + type="Key", + width=300 + }, + [17]={ + list=true, + name="ExtraStatsValues", + refTo="", + type="Int", + width=300 + }, + [18]={ + list=false, + name="ReminderText", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="TextAudioIntro", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [20]={ + list=false, + name="TextAudioOutro", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + languages={ + }, + leaderboardmapdevice={ + [1]={ + list=false, + name="Doodad", + refTo="HideoutDoodads", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Leaderboard", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Counter", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="TrackerPin", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="IconHover", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="IconGlow", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Tracker", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + leaderboardmapdevicelabel={ + [1]={ + list=false, + name="MapDevice", + refTo="LeaderboardMapDevice", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Text", + refTo="ClientStrings2", + type="Key", + width=150 + }, + [8]={ + list=false, + name="ClientString", + refTo="ClientStrings", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + leaguecategory={ + }, + leaguecategorytodisplayname={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="LeagueName", + refTo="LeagueNames", + type="Key", + width=150 + } + }, + leagueflag={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Image", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="IsHC", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="IsSSF", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="Banner", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="IsRuthless", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="BannerArt", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="LogoArt", + refTo="", + type="String", + width=240 + } + }, + leagueflags={ + }, + leagueinfo={ + [1]={ + list=false, + name="PanelVersion", + refTo="LeagueInfoPanelVersions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="PanelId", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="PanelImage", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HeaderImage", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="Screenshots", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="TrailerVideoLink", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="BackgroundImage", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=true, + name="PanelItems", + refTo="", + type="String", + width=300 + } + }, + leagueinfopanelversions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + leaguenames={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name1", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Name2", + refTo="", + type="String", + width=150 + } + }, + leagueprogressquestflags={ + [1]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="CompletionString", + refTo="ClientStrings", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Boss", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + leaguequestflags={ + }, + leaguestaticrewards={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + leaguetrophy={ + }, + legacyatlasinfluenceoutcomes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + } + }, + legionbalanceperlevel={ + [1]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + legionchestcounts={ + [1]={ + list=false, + name="LegionFactionsKey", + refTo="LegionFactions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="LegionRanksKey", + refTo="LegionRanks", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + legionchests={ + }, + legionchesttypes={ + [1]={ + list=false, + name="", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Chest", + refTo="Chests", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HardmodeChest", + refTo="Chests", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Faction", + refTo="LegionFactions", + type="Key", + width=150 + } + }, + legionfactions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="SpawnWeight", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="LegionBalancePerLevelKey", + refTo="LegionBalancePerLevel", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="BuffVisualsKey", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [7]={ + list=false, + name="MiscAnimatedKey1", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [8]={ + list=false, + name="MiscAnimatedKey2", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [9]={ + list=false, + name="MiscAnimatedKey3", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [10]={ + list=true, + name="AchievementItemsKeys1", + refTo="AchievementItems", + type="Key", + width=300 + }, + [11]={ + list=false, + name="MiscAnimatedKey4", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [12]={ + list=false, + name="MiscAnimatedKey5", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [15]={ + list=true, + name="AchievementItemsKeys2", + refTo="AchievementItems", + type="Key", + width=300 + }, + [16]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [17]={ + list=false, + name="Shard", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="RewardJewelArt", + refTo="", + type="String", + width=240 + } + }, + legionmonstercounts={ + [1]={ + list=false, + name="LegionFactionsKey", + refTo="LegionFactions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="LegionRanksKey", + refTo="LegionRanks", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + legionmonstertypes={ + }, + legionmonstervarieties={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="LegionFactionsKey", + refTo="LegionFactions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="LegionRanksKey", + refTo="LegionRanks", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="MiscAnimatedKey", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [11]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [12]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [13]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [17]={ + list=false, + name="MonsterVarietiesKey2", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + legionranks={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="LegionBalancePerLevel", + refTo="LegionBalancePerLevel", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + legionranktypes={ + }, + legionrewards={ + }, + legionrewardtypes={ + }, + legionrewardtypevisuals={ + [1]={ + list=false, + name="IntId", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MinimapIconsKey", + refTo="MinimapIcons", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="MiscAnimatedKey", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + levelrelativeplayerscaling={ + [1]={ + list=false, + name="PlayerLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MonsterLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + levelupsoundeffect={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="SoundEffectStereo", + refTo="SoundEffects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + liquidemotionoutcomes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="RadiusJewel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="RubyPrefix", + refTo="Mods", + type="Key", + width=150 + }, + [4]={ + list=false, + name="RubySuffix", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="SapphirePrefix", + refTo="Mods", + type="Key", + width=150 + }, + [6]={ + list=false, + name="SapphireSuffix", + refTo="Mods", + type="Key", + width=150 + }, + [7]={ + list=false, + name="EmeraldPrefix", + refTo="Mods", + type="Key", + width=150 + }, + [8]={ + list=false, + name="EmeraldSuffix", + refTo="Mods", + type="Key", + width=150 + }, + [9]={ + list=false, + name="DiamondPrefix", + refTo="Mods", + type="Key", + width=150 + }, + [10]={ + list=false, + name="DiamondSuffix", + refTo="Mods", + type="Key", + width=150 + }, + [11]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + } + }, + loggedtriggerstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, + loginareas={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Environment", + refTo="Environments", + type="Key", + width=150 + } + }, + loreweaveexchangelayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + magicmonsterlifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Life", + refTo="", + type="Int", + width=150 + } + }, + mapambushvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=true, + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + mapcompletionachievements={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MapStatConditionsKeys", + refTo="MapStatConditions", + type="Key", + width=300 + }, + [3]={ + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [5]={ + list=true, + name="MapTierAchievementsKeys", + refTo="MapTierAchievements", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=true, + name="WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [8]={ + list=true, + name="Ruleset", + refTo="Rulesets", + type="Key", + width=300 + } + }, + mapconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=true, + name="RequiredStats", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=true, + name="IgnoreStats", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=true, + name="RequiredTag", + refTo="Tags", + type="Key", + width=300 + }, + [6]={ + list=true, + name="IgnoreTag", + refTo="Tags", + type="Key", + width=300 + }, + [7]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=true, + name="TagStats", + refTo="Stats", + type="Key", + width=300 + }, + [10]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + mapconnections={ + [1]={ + list=false, + name="MapPinsKey0", + refTo="MapPins", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MapPinsKey1", + refTo="MapPins", + type="Key", + width=150 + }, + [3]={ + list=false, + name="QuestFlagStart", + refTo="QuestFlags", + type="Key", + width=150 + }, + [4]={ + list=false, + name="RestrictedAreaText", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="QuestFlagEnd", + refTo="QuestFlags", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="QuestFlags", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + mapcreationinformation={ + [1]={ + list=false, + name="MapsKey", + refTo="Maps", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + } + }, + mapcurrencyinventorylayout={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="MapCurrencyInventoryLayout", + type="Key", + width=150 + } + }, + mapdevicerecipes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="RecipeItems", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [4]={ + list=false, + name="MicrotransactionPortalVariation", + refTo="MicrotransactionPortalVariations", + type="Key", + width=150 + }, + [5]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=true, + name="OpenAchievemnts", + refTo="AchievementItems", + type="Key", + width=300 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mapdevices={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [14]={ + list=false, + name="HideoutDoodad", + refTo="HideoutDoodads", + type="Key", + width=150 + } + }, + mapfragmentfamilies={ + }, + mapfragmentmods={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [3]={ + list=true, + name="AchievementItems", + refTo="AchievementItems", + type="Key", + width=300 + }, + [4]={ + list=false, + name="MapFragmentFamilies", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mapinhabitants={ + [1]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=true, + name="MonsterPacksKeys", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [3]={ + list=true, + name="BossMonsters", + refTo="MonsterVarieties", + type="Key", + width=300 + } + }, + mappins={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=true, + name="WorldAreasKeys", + refTo="WorldAreas", + type="Key", + width=300 + }, + [4]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=240 + }, + [6]={ + list=true, + name="QuestFlags1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [7]={ + list=false, + name="Act", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="QuestFlags2", + refTo="QuestFlags", + type="Key", + width=300 + }, + [9]={ + list=true, + name="QuestFlags3", + refTo="QuestFlags", + type="Key", + width=300 + }, + [10]={ + list=false, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="ParentMapPin", + refTo="MapPins", + type="Key", + width=150 + }, + [13]={ + list=false, + name="MetadataId", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="PinProperty", + refTo="VisualPinProperties", + type="Key", + width=150 + }, + [15]={ + list=false, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + mappurchasecosts={ + [1]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Cost", + refTo="ItemCosts", + type="Key", + width=150 + }, + [3]={ + list=false, + name="CostHardmode", + refTo="ItemCosts", + type="Key", + width=150 + } + }, + maps={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Regular_WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=true, + name="MonsterPacks", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [4]={ + list=false, + name="AchievementItem", + refTo="AchievementItems", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MapSeries", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mapseries={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BaseIcon_DDSFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Infected_DDSFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Shaper_DDSFile", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Elder_DDSFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Drawn_DDSFile", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Delirious_DDSFile", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="UberBlight_DDSFile", + refTo="", + type="String", + width=240 + } + }, + mapseriestiers={ + [1]={ + list=false, + name="MapsKey", + refTo="Maps", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MapWorldsTier", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BetrayalTier", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="SynthesisTier", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="LegionTier", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="BlightTier", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MetamorphosisTier", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="DeliriumTier", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="HarvestTier", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="HeistTier", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="RitualTier", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="ExpeditionTier", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="ScourgeTier", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="ArchnemesisTier", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="SentinelTier", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="KalandraTier", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="SanctumTier", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="CrucibleTier", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="AncestorTier", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="AzmeriTier", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="NecropolisTier", + refTo="", + type="Int", + width=150 + }, + [22]={ + list=false, + name="SettlersTier", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="SecretsTier", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="KeepersTier", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="MirageTier", + refTo="", + type="Int", + width=150 + } + }, + mapstashspecialtypeentries={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MapItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="DDSFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="DDSFileNew", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="IsShaperGuardian", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="IsElderGuardian", + refTo="", + type="Bool", + width=150 + } + }, + mapstashtablayout={ + }, + mapstashuniquemapinfo={ + [1]={ + list=false, + name="UniqueMap", + refTo="UniqueMaps", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + } + }, + mapstatachievements={ + }, + mapstatconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StatsKey", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="StatMin", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="StatMax", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mapstatsfrommapstats={ + }, + maptierachievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=300 + }, + [3]={ + list=true, + name="MapTiers", + refTo="", + type="Int", + width=300 + } + }, + maptiers={ + [1]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Level2", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + marktypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ActionType", + refTo="ActionTypes", + type="Key", + width=150 + } + }, + masterhideoutlevels={ + }, + mavendialog={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="TextAudioT1", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [3]={ + list=false, + name="TextAudioT2", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [4]={ + list=false, + name="TextAudioT3", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [5]={ + list=false, + name="TextAudioT4", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [6]={ + list=false, + name="TextAudioT5", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="TextAudioT6", + refTo="NPCTextAudio", + type="Key", + width=150 + } + }, + mavenfights={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="WitnessesRequired", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="MinMapTier", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="QuestFlags", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="WitnessAreas", + refTo="WorldAreas", + type="Key", + width=300 + }, + [12]={ + list=false, + name="", + refTo="QuestFlags", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [15]={ + list=true, + name="Achievements1", + refTo="AchievementItems", + type="Key", + width=300 + }, + [16]={ + list=true, + name="Achievements2", + refTo="AchievementItems", + type="Key", + width=300 + } + }, + mavenjewelradiuskeystones={ + [1]={ + list=false, + name="Keystone_Key", + refTo="PassiveSkills", + type="Key", + width=300 + } + }, + melee={ + [1]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MeleeTrail1", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MeleeTrail2", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [6]={ + list=false, + name="MeleeTrail3", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [7]={ + list=false, + name="MeleeTrail4", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [8]={ + list=false, + name="MeleeTrail5", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [9]={ + list=false, + name="MeleeTrail6", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [10]={ + list=false, + name="MeleeTrail7", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="SurgeEffect_EPKFile", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [15]={ + list=false, + name="MeleeTrail8", + refTo="MeleeTrails", + type="Key", + width=150 + }, + [16]={ + list=false, + name="MeleeTrail9", + refTo="MeleeTrails", + type="Key", + width=150 + } + }, + meleetrails={ + [1]={ + list=false, + name="EPKFile1", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="EPKFile2", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + memorylinetype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MemoryLine", + refTo="AtlasMemoryLine", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [4]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=true, + name="StatsValues", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Suffix", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + } + }, + metamorphlifescalingperlevel={ + }, + metamorphosismetamonsters={ + }, + metamorphosismetaskills={ + }, + metamorphosismetaskilltypes={ + }, + metamorphosisrewardtypeitemsclient={ + }, + metamorphosisrewardtypes={ + }, + metamorphosisscaling={ + }, + metamorphosisstashtablayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="YOffset", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="FirstSlotIndex", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="Width", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Height", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="SlotSize", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + micromigrationdata={ + [1]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="MysteryBox", + refTo="MysteryBoxes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MtxPack", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + } + }, + microtransactionafkeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ObjectTask", + refTo="GameObjectTasks", + type="Key", + width=150 + }, + [4]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffectsPerLevel", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [8]={ + list=true, + name="FlyingStat", + refTo="Stats", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactionappliedinventoryitemartvariations={ + [1]={ + list=false, + name="Id", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=true, + name="DDSFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + } + }, + microtransactioncategory={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="ShopTag", + refTo="ShopTag", + type="Key", + width=150 + }, + [8]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } + }, + microtransactioncategoryid={ + }, + microtransactioncharacterportraitvariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + } + }, + microtransactionchargevariations={ + [1]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="PowerChargeVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [4]={ + list=false, + name="EnduranceChargeVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [5]={ + list=false, + name="FrenzyChargeVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [6]={ + list=false, + name="PowerChargeMasteryVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [7]={ + list=false, + name="EnduranceChargeMasteryVisual", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [8]={ + list=false, + name="FrenzyChargeMasteryVisual", + refTo="BuffVisuals", + type="Key", + width=150 + } + }, + microtransactioncombineformula={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Result_Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [3]={ + list=true, + name="Ingredients_Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=300 + }, + [4]={ + list=false, + name="BK2File", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactionconditionalapparitionevents={ + [1]={ + list=false, + name="EventId", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Apparition", + refTo="MicrotransactionConditionalApparitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionconditionalapparitioneventtype={ + }, + microtransactionconditionalapparitionorientation={ + }, + microtransactionconditionalapparitionposition={ + }, + microtransactionconditionalapparitions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [3]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="PeriodicVariation", + refTo="MicrotransactionPeriodicCharacterEffectVariations", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactioncounters={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="CountInterval", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [4]={ + list=false, + name="FunctionCall", + refTo="", + type="String", + width=240 + } + }, + microtransactioncursorvariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="CursorType", + refTo="WindowCursors", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionequippediconvariations={ + [1]={ + list=false, + name="Id", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=true, + name="DDSFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + microtransactionfireworksvariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactiongemcategory={ + }, + microtransactionjewelvariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ActiveArt", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="BackgroundPupil", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="RadiiArt", + refTo="PassiveJewelRadiiArt", + type="Key", + width=150 + } + }, + microtransactionlevelupeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="SoundEffect", + refTo="LevelUpSoundEffect", + type="Key", + width=150 + } + }, + microtransactionobjecteffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Script1", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Script2", + refTo="", + type="String", + width=240 + }, + [5]={ + list=true, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [6]={ + list=true, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=300 + }, + [7]={ + list=false, + name="CorpseSinkVariation", + refTo="CorpseSinkVariations", + type="Key", + width=150 + }, + [8]={ + list=true, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactiononkillbeams={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Beam", + refTo="MiscBeams", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + microtransactiononkillconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Rarity", + refTo="MicrotransactionRarityDisplay", + type="Key", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [11]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + } + }, + microtransactiononkilleffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ObjectEffect1", + refTo="MicrotransactionObjectEffects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ObjectEffect2", + refTo="MicrotransactionObjectEffects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="KillCondition", + refTo="MicrotransactionOnKillConditions", + type="Key", + width=150 + }, + [5]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [6]={ + list=false, + name="OnKillBeam", + refTo="MicrotransactionOnKillBeams", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=true, + name="Counter", + refTo="MicrotransactionCounters", + type="Key", + width=300 + }, + [10]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + microtransactiononopenchesteffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [4]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionperiodiccharactereffectvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionplayershieldvariations={ + }, + microtransactionportalvariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="MapAOFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="PortalEffect", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="PortalEffectLarge", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="MiscObjectDummy", + refTo="MiscObjects", + type="Key", + width=150 + } + }, + microtransactionraritydisplay={ + [1]={ + list=false, + name="Rarity", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ItemFrame", + refTo="ItemFrameType", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + microtransactionrecyclecategories={ + }, + microtransactionrecycleoutcomes={ + [1]={ + list=false, + name="Id", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionrecyclesalvagevalues={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionreviveeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + microtransactionshapeshiftskins={ + [1]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="ShapeShiftForm", + refTo="ShapeShiftForms", + type="Key", + width=150 + }, + [3]={ + list=false, + name="VisualIdentity", + refTo="ShapeShiftVisualIdentity", + type="Key", + width=150 + } + }, + microtransactionskillgemeffectslottypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Type", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionslot={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="ShopTag", + refTo="ShopTag", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="InventorySlot", + refTo="Inventories", + type="Key", + width=150 + }, + [5]={ + list=false, + name="FlaskSlot", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="SlotName", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="FrameArt", + refTo="", + type="String", + width=240 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + microtransactionslotadditionaldefaultoptions={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + microtransactionslotfromshapeshiftform={ + [1]={ + list=false, + name="ShapeShiftForm", + refTo="ShapeShiftForms", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MtxSlotId", + refTo="", + type="Int", + width=150 + } + }, + microtransactionslotfromweaponset={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + microtransactionslotid={ + }, + microtransactionsocialframevariations={ + [1]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BK2File", + refTo="", + type="String", + width=240 + } + }, + microtransactiontrackingmapfragmenttypes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + minimapicons={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MinimapIconRadius", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="LargemapIconRadius", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="MinimapIconPointerMaxDistance", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + minioncommands={ + [1]={ + list=false, + name="GrantedEfffect", + refTo="GrantedEffects", + type="Key", + width=210 + }, + [2]={ + list=false, + name="Buff", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Effect", + refTo="MiscEffectPacks", + type="Key", + width=280 + } + }, + miniongemlevelscaling={ + [1]={ + list=false, + name="GemLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MinionLevel", + refTo="", + type="Int", + width=150 + } + }, + minionstats={ + [1]={ + list=false, + name="MinionStat", + refTo="Stats", + type="Key", + width=300 + }, + [2]={ + list=true, + name="PlayerStat", + refTo="Stats", + type="Key", + width=300 + }, + [3]={ + list=true, + name="MinionType", + refTo="MinionType", + type="Key", + width=200 + }, + [4]={ + list=true, + name="MinionType2", + refTo="MinionType", + type="Key", + width=200 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="CompanionStat", + refTo="", + type="Bool", + width=150 + } + }, + miniontype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="LimitStat", + refTo="Stats", + type="Key", + width=420 + }, + [3]={ + list=false, + name="ActiveCountStat", + refTo="Stats", + type="Key", + width=310 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [20]={ + list=false, + name="", + refTo="", + type="Key", + width=100 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + miniqueststates={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=true, + name="QuestFlagsStart", + refTo="QuestFlags", + type="Key", + width=300 + }, + [3]={ + list=true, + name="QuestFlagsEnd", + refTo="QuestFlags", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Act", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="TSIFile", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + miscanimated={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=150 + }, + [3]={ + list=true, + name="PreloadGroup", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=100 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=100 + }, + [6]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=100 + } + }, + miscanimatedartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=true, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=300 + } + }, + miscbeams={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=250 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=true, + name="PreloadGroup", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + } + }, + miscbeamsartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=true, + name="MiscBeams", + refTo="MiscBeams", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=300 + } + }, + misccooldowns={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + misceffectpacks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="EPKFile", + refTo="", + type="String", + width=750 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=true, + name="PreloadGroups", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [8]={ + list=false, + name="PlayerOnly_EPKFile", + refTo="", + type="String", + width=600 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + } + }, + misceffectpacksartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=true, + name="MiscEffectPacks", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [3]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=80 + } + }, + miscobjects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="EffectVirtualPath", + refTo="", + type="String", + width=250 + }, + [3]={ + list=true, + name="PreloadGroups", + refTo="PreloadGroups", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + miscobjectsartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=true, + name="Object", + refTo="MiscObjects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=300 + } + }, + miscparticles={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="PETFile", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + } + }, + miscparticlesartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=true, + name="MiscParticles", + refTo="MiscParticles", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=80 + } + }, + miscprojectilemod={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=80 + }, + [4]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=300 + }, + [5]={ + list=false, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=200 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=80 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=80 + } + }, + miscprojectilemodartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [5]={ + list=true, + name="MiscProjectileMod", + refTo="MiscProjectileMod", + type="Key", + width=150 + } + }, + missionfavourperlevel={ + }, + missiontilemap={ + }, + missiontimertypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Image", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BackgroundImage", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="SoundEffects", + refTo="SoundEffects", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Float", + width=300 + }, + [6]={ + list=false, + name="", + refTo="SoundEffects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="", + refTo="SoundEffects", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + missiontransitiontiles={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="TDTFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + mobileactoneatlasquestprogression={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [4]={ + list=true, + name="QuestFlags3", + refTo="QuestFlags", + type="Key", + width=300 + } + }, + mobileascendancythresholds={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + mobileatlaseldermemories={ + }, + mobileatlasinventorylayout={ + }, + mobilecharactercreation={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="ActiveSkills", + refTo="ActiveSkills", + type="Key", + width=300 + } + }, + mobilequestaudio={ + }, + mobileskillgemlayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Inventory", + refTo="Inventories", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + mobileskillgemlayoutpages={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Menu", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + mobiletutorial={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Group", + refTo="MobileTutorialGroup", + type="Key", + width=150 + } + }, + mobiletutorialgroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + moddomains={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=220 + } + }, + modeffectstats={ + [1]={ + list=false, + name="Stats", + refTo="Stats", + type="Key", + width=400 + }, + [2]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=220 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [6]={ + list=false, + name="MaxStacks", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + } + }, + modequivalencies={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="ModsKey0", + refTo="Mods", + type="Key", + width=350 + }, + [3]={ + list=false, + name="ModsKey1", + refTo="Mods", + type="Key", + width=350 + }, + [4]={ + list=false, + name="ModsKey2", + refTo="Mods", + type="Key", + width=350 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + } + }, + modfamily={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + } + }, + modgenerationtypes={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + modgrantedskills={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=300 + }, + [2]={ + list=false, + name="Skill Gem", + refTo="SkillGems", + type="Key", + width=400 + } + }, + mods={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=450 + }, + [2]={ + list=false, + name="Hash", + refTo="", + type="UInt16", + width=60 + }, + [3]={ + list=false, + name="Type", + refTo="ModType", + type="Key", + width=280 + }, + [4]={ + list=false, + name="Level", + refTo="", + type="Int", + width=60 + }, + [5]={ + list=false, + name="Stat1", + refTo="Stats", + type="Key", + width=400 + }, + [6]={ + list=false, + name="Stat2", + refTo="Stats", + type="Key", + width=200 + }, + [7]={ + list=false, + name="Stat3", + refTo="Stats", + type="Key", + width=200 + }, + [8]={ + list=false, + name="Stat4", + refTo="Stats", + type="Key", + width=200 + }, + [9]={ + list=false, + name="Domain", + refTo="ModDomains", + type="Enum", + width=140 + }, + [10]={ + list=false, + name="Name", + refTo="", + type="String", + width=350 + }, + [11]={ + list=false, + name="GenerationType", + refTo="ModGenerationTypes", + type="Enum", + width=120 + }, + [12]={ + list=true, + name="Family", + refTo="ModFamily", + type="Key", + width=300 + }, + [13]={ + list=false, + name="Stat1Value", + refTo="", + type="Interval", + width=70 + }, + [14]={ + list=false, + name="Stat2Value", + refTo="", + type="Interval", + width=70 + }, + [15]={ + list=false, + name="Stat3Value", + refTo="", + type="Interval", + width=70 + }, + [16]={ + list=false, + name="Stat4Value", + refTo="", + type="Interval", + width=70 + }, + [17]={ + list=true, + name="SpawnTags", + refTo="Tags", + type="Key", + width=150 + }, + [18]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [20]={ + list=true, + name="GrantedEffect", + refTo="GrantedEffectsPerLevel", + type="Key", + width=150 + }, + [21]={ + list=true, + name="AuraFlags", + refTo="ModAuraFlags", + type="Enum", + width=80 + }, + [22]={ + list=false, + name="Daemon", + refTo="", + type="String", + width=150 + }, + [23]={ + list=true, + name="MonsterKillAchievements", + refTo="AchievementItems", + type="Key", + width=150 + }, + [24]={ + list=true, + name="ArchnemesisType", + refTo="ModType", + type="Key", + width=240 + }, + [25]={ + list=false, + name="Stat5Value", + refTo="", + type="Interval", + width=60 + }, + [26]={ + list=false, + name="Stat5", + refTo="Stats", + type="Key", + width=150 + }, + [27]={ + list=true, + name="FullClear", + refTo="AchievementItems", + type="Key", + width=100 + }, + [28]={ + list=true, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=130 + }, + [29]={ + list=true, + name="GenerationWeightTags", + refTo="Tags", + type="Key", + width=130 + }, + [30]={ + list=true, + name="GenerationWeightValues", + refTo="", + type="Int", + width=130 + }, + [31]={ + list=true, + name="ModifyMapsAchievements", + refTo="AchievementItems", + type="Key", + width=150 + }, + [32]={ + list=false, + name="Stat6Value", + refTo="", + type="Interval", + width=130 + }, + [33]={ + list=false, + name="Stat6", + refTo="Stats", + type="Key", + width=150 + }, + [34]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=50 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [36]={ + list=true, + name="CraftingClassRestrictions", + refTo="ItemClasses", + type="Key", + width=150 + }, + [37]={ + list=false, + name="MonsterOnDeath", + refTo="", + type="String", + width=100 + }, + [38]={ + list=false, + name="", + refTo="", + type="Int", + width=200 + }, + [39]={ + list=true, + name="HeistAchievements", + refTo="AchievementItems", + type="Key", + width=230 + }, + [40]={ + list=false, + name="Heist_SubStatValue1", + refTo="", + type="Int", + width=150 + }, + [41]={ + list=false, + name="Heist_SubStatValue2", + refTo="", + type="Int", + width=150 + }, + [42]={ + list=false, + name="Heist_StatsKey0", + refTo="Stats", + type="Key", + width=150 + }, + [43]={ + list=false, + name="Heist_StatsKey1", + refTo="Stats", + type="Key", + width=150 + }, + [44]={ + list=false, + name="Heist_AddStatValue1", + refTo="", + type="Int", + width=240 + }, + [45]={ + list=false, + name="Heist_AddStatValue2", + refTo="", + type="Int", + width=150 + }, + [46]={ + list=false, + name="InfluenceTypes", + refTo="", + type="Int", + width=150 + }, + [47]={ + list=true, + name="ImplicitTags", + refTo="Tags", + type="Key", + width=150 + }, + [48]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [49]={ + list=false, + name="UnknownStat1", + refTo="", + type="Interval", + width=150 + }, + [50]={ + list=false, + name="UnknownStat2", + refTo="", + type="Interval", + width=150 + }, + [51]={ + list=false, + name="UnknownStat3", + refTo="", + type="Interval", + width=150 + }, + [52]={ + list=false, + name="UnknownStat4", + refTo="", + type="Interval", + width=150 + }, + [53]={ + list=false, + name="UnknownStat5", + refTo="", + type="Interval", + width=150 + }, + [54]={ + list=false, + name="UnknownStat6", + refTo="", + type="Interval", + width=150 + }, + [55]={ + list=false, + name="UnknownStat7", + refTo="", + type="Interval", + width=150 + }, + [56]={ + list=false, + name="UnknownStat8", + refTo="", + type="Interval", + width=150 + }, + [57]={ + list=false, + name="BuffTemplate", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [58]={ + list=false, + name="ArchnemesisMinionMod", + refTo="Mods", + type="ShortKey", + width=290 + }, + [59]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [60]={ + list=true, + name="BuffTemplate2", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [61]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [62]={ + list=true, + name="", + refTo="GrantedEffectsPerLevel", + type="Key", + width=90 + }, + [63]={ + list=false, + name="NodeType", + refTo="PassiveNodeTypes", + type="Enum", + width=120 + }, + [64]={ + list=false, + name="IsEssenceOnlyModifier", + refTo="", + type="Bool", + width=140 + }, + [65]={ + list=false, + name="SpawnLevel_Override", + refTo="", + type="Int", + width=130 + }, + [66]={ + list=true, + name="SpawnWeight", + refTo="", + type="Int", + width=150 + } + }, + modsellpricetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + } + }, + modsetnames={ + }, + modsets={ + }, + modtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=400 + }, + [2]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=510 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=320 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + monsteradditionalmonsterdrops={ + }, + monsteraggroaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Audio", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, + name="OGGFiles", + refTo="", + type="String", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="InheritFrom", + refTo="", + type="String", + width=240 + } + }, + monsterarmours={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ArtString_SMFile", + refTo="", + type="String", + width=240 + } + }, + monsterbehavior={ + }, + monsterbonuses={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=230 + }, + [2]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [3]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=300 + }, + [4]={ + list=true, + name="BuffValues", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=150 + } + }, + monstercategories={ + [1]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Type", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="HudImage", + refTo="", + type="String", + width=400 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monsterchancetodropitemtemplate={ + }, + monsterconditionaleffectpacks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MiscEffectPack1", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [3]={ + list=true, + name="MiscEffectPack2", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [4]={ + list=true, + name="MiscEffectPack3", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [5]={ + list=true, + name="MiscEffectPack4", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monsterconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=400 + }, + [4]={ + list=false, + name="NotRarity", + refTo="Rarity", + type="Key", + width=150 + }, + [5]={ + list=true, + name="NotStat", + refTo="Stats", + type="Key", + width=300 + }, + [6]={ + list=false, + name="MapBoss", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="NotMapBoss", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=400 + }, + [9]={ + list=true, + name="NotTags", + refTo="Tags", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="MinimumLevel", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="MaximumLevel", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [14]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=150 + } + }, + monsterdeathachievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MonsterVarietiesKeys", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [3]={ + list=true, + name="AchievementItemsKeys", + refTo="AchievementItems", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=true, + name="PlayerConditionsKeys", + refTo="PlayerConditions", + type="Key", + width=300 + }, + [6]={ + list=true, + name="MonsterDeathConditionsKeys", + refTo="MonsterDeathConditions", + type="Key", + width=300 + }, + [7]={ + list=true, + name="Area", + refTo="WorldAreas", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="Stats", + refTo="Stats", + type="Key", + width=150 + }, + [13]={ + list=true, + name="MultiPartAchievement1", + refTo="MultiPartAchievements", + type="Key", + width=300 + }, + [14]={ + list=true, + name="MapAchievement", + refTo="MapTierAchievements", + type="Key", + width=300 + }, + [15]={ + list=true, + name="MultiPartAchievement2", + refTo="MultiPartAchievements", + type="Key", + width=300 + }, + [16]={ + list=false, + name="MultiPartAchievement3", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=true, + name="NearbyMonsterConditionsKeys", + refTo="NearbyMonsterConditions", + type="Key", + width=300 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [20]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monsterdeathconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="Stat", + refTo="Stats", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=true, + name="Animation", + refTo="Animation", + type="Key", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="ActiveSkill1", + refTo="ActiveSkills", + type="Key", + width=150 + }, + [16]={ + list=false, + name="ActiveSkill2", + refTo="ActiveSkills", + type="Key", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monsterencounterskillgroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="MonsterVarieties", + refTo="MonsterVarieties", + type="Key", + width=300 + } + }, + monsterfleeconditions={ + }, + monstergroupentries={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MonsterGroupNamesId", + refTo="", + type="Int", + width=150 + } + }, + monstergroupnames={ + }, + monsterheightbrackets={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BuffVisuals1", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [4]={ + list=false, + name="BuffVisuals2", + refTo="BuffVisuals", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + monsterheights={ + [1]={ + list=false, + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="MonsterHeightBracket", + refTo="MonsterHeightBrackets", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monstermapbossdifficulty={ + [1]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="BossLifePercentIncrease", + refTo="", + type="Int", + width=170 + }, + [3]={ + list=false, + name="BossDamagePercentIncrease", + refTo="", + type="Int", + width=170 + }, + [4]={ + list=false, + name="Stat1", + refTo="Stats", + type="Key", + width=240 + }, + [5]={ + list=false, + name="Stat2", + refTo="Stats", + type="Key", + width=270 + }, + [6]={ + list=false, + name="Stat3", + refTo="Stats", + type="Key", + width=240 + }, + [7]={ + list=false, + name="BossIncItemQuantity", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Stat4", + refTo="Stats", + type="Key", + width=220 + }, + [9]={ + list=false, + name="BossIncItemRarity", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Stat5", + refTo="Stats", + type="Key", + width=330 + }, + [11]={ + list=false, + name="BossAilmentPercentDecrease", + refTo="", + type="Int", + width=150 + } + }, + monstermapdifficulty={ + [1]={ + list=false, + name="AreaLevel", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="LifePercentIncrease", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="DamagePercentIncrease", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Stat1", + refTo="Stats", + type="Key", + width=230 + }, + [5]={ + list=false, + name="Stat2", + refTo="Stats", + type="Key", + width=250 + }, + [6]={ + list=false, + name="Stat3", + refTo="Stats", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Stat3Value", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="Stat4", + refTo="Stats", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Stat4Value", + refTo="", + type="Int", + width=150 + } + }, + monstermortar={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Projectile", + refTo="Projectiles", + type="Key", + width=370 + }, + [3]={ + list=false, + name="Animation", + refTo="Animation", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [17]={ + list=false, + name="BounceAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [18]={ + list=false, + name="Bounces", + refTo="", + type="Int", + width=80 + }, + [19]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [20]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [21]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [23]={ + list=false, + name="Animation2", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="String", + width=100 + } + }, + monsterpackcounts={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + monsterpackentries={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=80 + }, + [2]={ + list=false, + name="MonsterPacksKey", + refTo="MonsterPacks", + type="Key", + width=240 + }, + [3]={ + list=false, + name="Flag", + refTo="", + type="Bool", + width=80 + }, + [4]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=90 + }, + [5]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=530 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + monsterpacks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="WorldAreas", + refTo="WorldAreas", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MinCount", + refTo="", + type="Int", + width=90 + }, + [4]={ + list=false, + name="MaxCount", + refTo="", + type="Int", + width=90 + }, + [5]={ + list=false, + name="BossMonsterChance", + refTo="", + type="Int", + width=120 + }, + [6]={ + list=false, + name="BossCount", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=true, + name="BossMonsters", + refTo="MonsterVarieties", + type="Key", + width=490 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="Grounds", + refTo="", + type="String", + width=150 + }, + [11]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [12]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=80 + }, + [13]={ + list=false, + name="MaxLevel", + refTo="", + type="Int", + width=80 + }, + [14]={ + list=true, + name="WorldAreas2", + refTo="Tags", + type="Key", + width=150 + }, + [15]={ + list=false, + name="Formation", + refTo="PackFormation", + type="Key", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [18]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [21]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [24]={ + list=true, + name="AdditionalMonsters", + refTo="MonsterVarieties", + type="Key", + width=480 + }, + [25]={ + list=true, + name="AdditionalCounts", + refTo="", + type="Int", + width=110 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [27]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + monsterprojectileattack={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="Projectile", + refTo="Projectiles", + type="Key", + width=390 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + } + }, + monsterprojectilespell={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="Projectile", + refTo="Projectiles", + type="Key", + width=390 + }, + [3]={ + list=false, + name="Animation", + refTo="Animation", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + monsterpushtypes={ + }, + monsterresistances={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="Fire1", + refTo="", + type="Int", + width=50 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [4]={ + list=true, + name="Fire2", + refTo="", + type="Int", + width=50 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [6]={ + list=true, + name="Fire3", + refTo="", + type="Int", + width=50 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [8]={ + list=true, + name="Fire4", + refTo="", + type="Int", + width=100 + }, + [9]={ + list=true, + name="Fire5", + refTo="", + type="Int", + width=100 + }, + [10]={ + list=true, + name="Cold1", + refTo="", + type="Int", + width=50 + }, + [11]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [12]={ + list=true, + name="Cold2", + refTo="", + type="Int", + width=50 + }, + [13]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [14]={ + list=true, + name="Cold3", + refTo="", + type="Int", + width=50 + }, + [15]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [16]={ + list=true, + name="Cold4", + refTo="", + type="Int", + width=100 + }, + [17]={ + list=true, + name="Cold5", + refTo="", + type="Int", + width=100 + }, + [18]={ + list=true, + name="Lightning1", + refTo="", + type="Int", + width=60 + }, + [19]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [20]={ + list=true, + name="Lightning2", + refTo="", + type="Int", + width=60 + }, + [21]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [22]={ + list=true, + name="Lightning3", + refTo="", + type="Int", + width=60 + }, + [23]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [24]={ + list=true, + name="Lightning4", + refTo="", + type="Int", + width=100 + }, + [25]={ + list=true, + name="Lightning5", + refTo="", + type="Int", + width=90 + }, + [26]={ + list=true, + name="Chaos1", + refTo="", + type="Int", + width=50 + }, + [27]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [28]={ + list=true, + name="Chaos2", + refTo="", + type="Int", + width=50 + }, + [29]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [30]={ + list=true, + name="Chaos3", + refTo="", + type="Int", + width=50 + }, + [31]={ + list=true, + name="", + refTo="", + type="Int", + width=30 + }, + [32]={ + list=true, + name="Chaos4", + refTo="", + type="Int", + width=100 + }, + [33]={ + list=true, + name="Chaos5", + refTo="", + type="Int", + width=80 + } + }, + monsterscalingbylevel={ + }, + monstersegments={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Shapes", + refTo="", + type="String", + width=240 + } + }, + monstershapeshift={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MonsterSource", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MonsterShapeshift", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [4]={ + list=false, + name="EffectSource", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [5]={ + list=false, + name="EffectDestination", + refTo="MiscEffectPacks", + type="Key", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [8]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [9]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [10]={ + list=false, + name="BuffTemplate", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + monstersize={ + }, + monsterskillsalivedead={ + }, + monsterskillsattackspell={ + }, + monsterskillsclientinstance={ + }, + monsterskillshull={ + }, + monsterskillsorientation={ + }, + monsterskillsplacement={ + }, + monsterskillsreference={ + }, + monsterskillssequencemode={ + }, + monsterskillsshape={ + }, + monsterskillstargets={ + }, + monsterskillswavedirection={ + }, + monsterspawnergroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + monsterspawnergroupsperlevel={ + [1]={ + list=false, + name="MonsterSpawnerGroupsKey", + refTo="MonsterSpawnerGroups", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + monsterspawneroverrides={ + [1]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Base_MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Override_MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + } + }, + monsterstatsfrommapstats={ + }, + monstertypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=300 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [3]={ + list=false, + name="IsPlayerMinion", + refTo="", + type="Bool", + width=180 + }, + [4]={ + list=false, + name="Armour", + refTo="", + type="Int", + width=60 + }, + [5]={ + list=false, + name="Evasion", + refTo="", + type="Int", + width=60 + }, + [6]={ + list=false, + name="EnergyShield", + refTo="", + type="Int", + width=70 + }, + [7]={ + list=false, + name="DamageSpread", + refTo="", + type="Int", + width=100 + }, + [8]={ + list=true, + name="Resistances", + refTo="MonsterResistances", + type="Key", + width=280 + }, + [9]={ + list=false, + name="BaseDamageIgnoresAttackSpeed", + refTo="", + type="Bool", + width=200 + }, + [10]={ + list=false, + name="TargetingBehaviour", + refTo="", + type="Int", + width=100 + } + }, + monstervarieties={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=570 + }, + [2]={ + list=false, + name="Type", + refTo="MonsterTypes", + type="Key", + width=260 + }, + [3]={ + list=false, + name="MovementSpeed", + refTo="", + type="Int", + width=100 + }, + [4]={ + list=false, + name="ObjectSize", + refTo="", + type="Enum", + width=60 + }, + [5]={ + list=false, + name="MinimumAttackRange", + refTo="", + type="Int", + width=110 + }, + [6]={ + list=false, + name="MaximumAttackRange", + refTo="", + type="Int", + width=110 + }, + [7]={ + list=true, + name="Actor", + refTo="", + type="String", + width=360 + }, + [8]={ + list=true, + name="AnimatedObject", + refTo="", + type="String", + width=390 + }, + [9]={ + list=false, + name="ObjectType", + refTo="", + type="String", + width=370 + }, + [10]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=500 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=50 + }, + [13]={ + list=false, + name="", + refTo="", + type="String", + width=50 + }, + [14]={ + list=false, + name="ModelSizeMultiplier", + refTo="", + type="Int", + width=120 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [17]={ + list=false, + name="WeaponSoundType", + refTo="WeaponSoundTypes", + type="Key", + width=110 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [20]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [21]={ + list=false, + name="ExperienceMultiplier", + refTo="", + type="Int", + width=120 + }, + [22]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [23]={ + list=false, + name="MinAgroRange", + refTo="", + type="Int", + width=100 + }, + [24]={ + list=false, + name="MaxAgroRange", + refTo="", + type="Int", + width=100 + }, + [25]={ + list=false, + name="SpotlightColour1", + refTo="", + type="Int", + width=100 + }, + [26]={ + list=false, + name="SpotlightColour2", + refTo="", + type="Int", + width=100 + }, + [27]={ + list=false, + name="SpotlightColour3", + refTo="", + type="Int", + width=100 + }, + [28]={ + list=true, + name="GrantedEffects", + refTo="GrantedEffects", + type="Key", + width=500 + }, + [29]={ + list=false, + name="AIScript", + refTo="", + type="String", + width=150 + }, + [30]={ + list=true, + name="ModsKeys2", + refTo="Mods", + type="Key", + width=200 + }, + [31]={ + list=false, + name="Stance", + refTo="", + type="String", + width=100 + }, + [32]={ + list=false, + name="BloodType", + refTo="BloodTypes", + type="Key", + width=120 + }, + [33]={ + list=false, + name="Name", + refTo="", + type="String", + width=200 + }, + [34]={ + list=false, + name="DamageMultiplier", + refTo="", + type="Int", + width=100 + }, + [35]={ + list=false, + name="LifeMultiplier", + refTo="", + type="Int", + width=100 + }, + [36]={ + list=false, + name="AttackDuration", + refTo="", + type="Int", + width=100 + }, + [37]={ + list=true, + name="MainHandItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [38]={ + list=true, + name="OffHandItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [39]={ + list=false, + name="BackItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [40]={ + list=false, + name="MainHandItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [41]={ + list=false, + name="OffHandItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [42]={ + list=false, + name="HelmetItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [44]={ + list=true, + name="KillSpecificMonsterCount", + refTo="AchievementItems", + type="Key", + width=150 + }, + [45]={ + list=true, + name="SpecialMods", + refTo="Mods", + type="Key", + width=150 + }, + [46]={ + list=true, + name="KillRare", + refTo="AchievementItems", + type="Key", + width=150 + }, + [47]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [48]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [49]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [50]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [51]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [52]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [53]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [54]={ + list=false, + name="Hash", + refTo="", + type="UInt16", + width=50 + }, + [55]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [56]={ + list=false, + name="", + refTo="", + type="String", + width=50 + }, + [57]={ + list=false, + name="AchievementFlashback", + refTo="AchievementItems", + type="Key", + width=150 + }, + [58]={ + list=false, + name="MonsterSegments", + refTo="MonsterSegments", + type="Key", + width=120 + }, + [59]={ + list=false, + name="MonsterArmours", + refTo="MonsterArmours", + type="Key", + width=120 + }, + [60]={ + list=false, + name="AchievementTalisman", + refTo="AchievementItems", + type="Key", + width=150 + }, + [61]={ + list=true, + name="ModsPart1", + refTo="Mods", + type="Key", + width=150 + }, + [62]={ + list=true, + name="ModsPart2", + refTo="Mods", + type="Key", + width=150 + }, + [63]={ + list=true, + name="ModsEndgame", + refTo="Mods", + type="Key", + width=150 + }, + [64]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [65]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [66]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [67]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [68]={ + list=true, + name="MultiPartAchievements", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [69]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [70]={ + list=false, + name="SinkAnimation", + refTo="", + type="String", + width=100 + }, + [71]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [72]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [73]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [74]={ + list=false, + name="NotSummoned", + refTo="", + type="Bool", + width=90 + }, + [75]={ + list=false, + name="NotSpectre", + refTo="", + type="Bool", + width=80 + }, + [76]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [77]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [78]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [79]={ + list=false, + name="SinkEffect", + refTo="", + type="Int", + width=100 + }, + [80]={ + list=false, + name="SinkEffect", + refTo="", + type="Int", + width=50 + }, + [81]={ + list=false, + name="MonsterConditionalEffectPack", + refTo="", + type="Int", + width=150 + }, + [82]={ + list=false, + name="MonsterConditionalEffectPack", + refTo="MonsterConditionalEffectPacks", + type="Key", + width=50 + }, + [83]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [84]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [85]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [86]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [87]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [88]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [89]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [90]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [91]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [92]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [93]={ + list=true, + name="InheritsFrom", + refTo="", + type="String", + width=140 + }, + [94]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [95]={ + list=false, + name="BossHealthBar", + refTo="", + type="Int", + width=100 + }, + [96]={ + list=false, + name="BossHealthBar", + refTo="", + type="Bool", + width=200 + }, + [97]={ + list=false, + name="TauntGrantedEffect", + refTo="GrantedEffects", + type="Key", + width=120 + }, + [98]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [99]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [100]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [101]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [102]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [103]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [104]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [105]={ + list=false, + name="Questflag", + refTo="QuestFlags", + type="Key", + width=120 + }, + [106]={ + list=false, + name="", + refTo="", + type="Float", + width=80 + }, + [107]={ + list=false, + name="", + refTo="", + type="Float", + width=50 + }, + [108]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [109]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [110]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [111]={ + list=false, + name="", + refTo="", + type="Int", + width=100 + }, + [112]={ + list=false, + name="PoiseThreshold", + refTo="", + type="Int", + width=150 + }, + [113]={ + list=false, + name="AttackCrit", + refTo="", + type="Float", + width=50 + }, + [114]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [115]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [116]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [117]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [118]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [119]={ + list=false, + name="MonsterCategory", + refTo="MonsterCategories", + type="Key", + width=140 + }, + [120]={ + list=false, + name="AggroAudio", + refTo="MonsterAggroAudio", + type="Key", + width=140 + }, + [121]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [122]={ + list=false, + name="", + refTo="", + type="Key", + width=80 + }, + [123]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [124]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [125]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [126]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [127]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [128]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + monstervarietiesartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=100 + }, + [3]={ + list=true, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=550 + } + }, + mousecursorsizesettings={ + [1]={ + list=false, + name="Size", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Ratio", + refTo="", + type="Float", + width=150 + } + }, + movedaemon={ + [1]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="MonsterVarietiesKeys", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [30]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [31]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [33]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [37]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [38]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mtxpreviewcameras={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + mtxsetbonus={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="ChatIcon", + refTo="ChatIcons", + type="Key", + width=150 + }, + [3]={ + list=true, + name="Portal", + refTo="MtxTypeGameSpecific", + type="Key", + width=300 + }, + [4]={ + list=true, + name="SetBonusStat", + refTo="Stats", + type="Key", + width=300 + }, + [5]={ + list=true, + name="Pets", + refTo="Pet", + type="Key", + width=300 + }, + [6]={ + list=true, + name="WeaponEffectStats", + refTo="Stats", + type="Key", + width=300 + } + }, + mtxtypegamespecific={ + [1]={ + list=false, + name="Type", + refTo="MtxTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [3]={ + list=false, + name="DDSFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Category", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mtxtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Description1", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Description2", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Type", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [11]={ + list=false, + name="ShopTag", + refTo="ShopTag", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [24]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [25]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [26]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + multipartachievementareas={ + [1]={ + list=false, + name="Achievement", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Area", + refTo="WorldAreas", + type="Key", + width=300 + }, + [3]={ + list=false, + name="MinimumAreaLevel", + refTo="", + type="Int", + width=150 + } + }, + multipartachievementconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MultiPartAchievementsKey1", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MultiPartAchievementsKey2", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + multipartachievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=350 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [3]={ + list=false, + name="Achievement", + refTo="AchievementItems", + type="Key", + width=210 + }, + [4]={ + list=false, + name="Threshold", + refTo="", + type="Int", + width=100 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=60 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + music={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="SoundFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BankFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="HASH16", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="IsAvailableInHideout", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="MusicCategories", + refTo="MusicCategories", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + musiccategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Order", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + mysteryboxes={ + [1]={ + list=false, + name="MtxTypesKey", + refTo="MtxTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BK2File", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BoxId", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="BundleId", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="Logo", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Gradient", + refTo="", + type="String", + width=240 + } + }, + nearbymonsterconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=260 + }, + [2]={ + list=true, + name="MonsterVarietiesKeys", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [3]={ + list=false, + name="MonsterAmount", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="IsNegated", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="IsLessThen", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="MinimumHealthPercentage", + refTo="", + type="Int", + width=150 + } + }, + nettiers={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + } + }, + notifications={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="Message", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + npcadditionalvendoritems={ + }, + npcaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Audio", + refTo="", + type="String", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=false, + name="VolumePercentage", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [6]={ + list=true, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + npcconversations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="DialogueEvent", + refTo="DialogueEvent", + type="Key", + width=150 + }, + [3]={ + list=true, + name="NPCTextAudioKeys", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + npcdialoguecutscene={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + npcdialoguecutscenesequences={ + [1]={ + list=false, + name="Cutscene", + refTo="NPCDialogueCutscene", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [5]={ + list=false, + name="Script1", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="Script2", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npcdialoguestyles={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="HeaderBaseFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ButtomFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="BannerFiles", + refTo="", + type="String", + width=300 + }, + [5]={ + list=true, + name="HeaderFiles", + refTo="", + type="String", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [12]={ + list=false, + name="", + refTo="NPCDialogueStyles", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [14]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [15]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + npcfollowervariations={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MiscAnimatedKey0", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="MiscAnimatedKey1", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [13]={ + list=true, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=300 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [19]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + npcmaster={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="Signature_ModsKey", + refTo="Mods", + type="Key", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=true, + name="SpawnWeight_TagsKeys", + refTo="Tags", + type="Key", + width=300 + }, + [7]={ + list=true, + name="SpawnWeight_Values", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="Audio", + refTo="NPCAudio", + type="Key", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="AreaDescription", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="AwardDisplay", + refTo="AwardDisplay", + type="Key", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="MasterChanceStat", + refTo="Stats", + type="Key", + width=150 + }, + [14]={ + list=false, + name="HasAreaMissions", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=true, + name="MasterAdditionalChanceStat", + refTo="Stats", + type="Key", + width=300 + }, + [16]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [17]={ + list=false, + name="MasterMissionOnCompletionStat", + refTo="Stats", + type="Key", + width=150 + } + }, + npcmasterlevels={ + }, + npcportraitaooverrides={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="NPCPortrait", + refTo="NPCPortraits", + type="Key", + width=150 + } + }, + npcportraits={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="PortraitFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npcs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=360 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="MetaData", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="QuestFlags", + refTo="QuestFlags", + type="Key", + width=150 + }, + [5]={ + list=false, + name="NPCMasterKey", + refTo="NPCMaster", + type="Key", + width=150 + }, + [6]={ + list=false, + name="ShortName", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="Act", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=true, + name="NPCAudios1", + refTo="NPCAudio", + type="Key", + width=150 + }, + [9]={ + list=true, + name="NPCAudios2", + refTo="NPCAudio", + type="Key", + width=150 + }, + [10]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [11]={ + list=false, + name="Model?", + refTo="NPCs", + type="Key", + width=230 + }, + [12]={ + list=false, + name="Portrait", + refTo="NPCPortraits", + type="Key", + width=100 + }, + [13]={ + list=false, + name="DialogueStyle", + refTo="NPCDialogueStyles", + type="Key", + width=100 + }, + [14]={ + list=false, + name="ShopSet", + refTo="NPCShops", + type="Key", + width=100 + }, + [15]={ + list=false, + name="Gender", + refTo="", + type="String", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=100 + }, + [17]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [18]={ + list=false, + name="NPCType", + refTo="NPCType", + type="Key", + width=150 + } + }, + npcshop={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="TabColours", + refTo="Colours", + type="Key", + width=300 + }, + [4]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [8]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [15]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + } + }, + npcshopadditionalitems={ + }, + npcshopgamblervisualidentity={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=true, + name="VisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=300 + } + }, + npcshops={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Shop", + refTo="NPCShop", + type="Key", + width=150 + } + }, + npcshopsellpricetype={ + }, + npctalk={ + [1]={ + list=false, + name="NPCKey", + refTo="NPCs", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="DialogueOption", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="", + refTo="QuestFlags", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="QuestFlags", + type="Key", + width=300 + }, + [6]={ + list=true, + name="", + refTo="QuestFlags", + type="Key", + width=300 + }, + [7]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="QuestFlags1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [9]={ + list=false, + name="Category", + refTo="NPCTalkCategory", + type="Key", + width=150 + }, + [10]={ + list=false, + name="QuestRewardOffersKey", + refTo="QuestRewardOffers", + type="Key", + width=150 + }, + [11]={ + list=false, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [12]={ + list=true, + name="NPCTextAudioKeys", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [13]={ + list=false, + name="Script2", + refTo="", + type="String", + width=240 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [17]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [19]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [20]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [22]={ + list=false, + name="BaseItemTypes", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [23]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [24]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [25]={ + list=false, + name="DialogueOption2", + refTo="", + type="String", + width=240 + }, + [26]={ + list=false, + name="ConsoleQuickAction", + refTo="NPCTalkConsoleQuickActions", + type="Key", + width=150 + }, + [27]={ + list=false, + name="Music1", + refTo="Music", + type="Key", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [29]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [30]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [31]={ + list=false, + name="Music2", + refTo="Music", + type="Key", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [33]={ + list=false, + name="QuestFlag3", + refTo="QuestFlags", + type="Key", + width=150 + }, + [34]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [35]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [36]={ + list=false, + name="", + refTo="NPCTalk", + type="Key", + width=150 + }, + [37]={ + list=true, + name="TalkDialogue", + refTo="NPCTalkDialogue", + type="Key", + width=300 + }, + [38]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [39]={ + list=true, + name="Ascendancy", + refTo="Ascendancy", + type="Key", + width=300 + }, + [40]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npctalkcategory={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npctalkconsolequickactions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Input", + refTo="GamepadButton", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Output", + refTo="GamepadButton", + type="Key", + width=150 + } + }, + npctalkdialogue={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="SkillCrafting", + refTo="SkillCraftingData", + type="Key", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + npctalkdialoguesteps={ + [1]={ + list=false, + name="NPCTalkDialogue", + refTo="NPCTalkDialogue", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Step", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="NPCTextAudio", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [4]={ + list=true, + name="NPCTalkDialogueTextAudio", + refTo="NPCTalkDialogueTextAudio", + type="Key", + width=300 + } + }, + npctalkdialoguetextaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="TargetCharacter", + refTo="Characters", + type="Key", + width=150 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="OGGFiles", + refTo="", + type="String", + width=300 + }, + [5]={ + list=true, + name="NPC1", + refTo="NPCs", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [7]={ + list=true, + name="TargetCharacters", + refTo="Characters", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [11]={ + list=true, + name="NPC2", + refTo="NPCs", + type="Key", + width=300 + }, + [12]={ + list=true, + name="NPC3", + refTo="NPCs", + type="Key", + width=300 + }, + [13]={ + list=true, + name="QuestFlag1", + refTo="QuestFlags", + type="Key", + width=300 + }, + [14]={ + list=true, + name="QuestFlag2", + refTo="QuestFlags", + type="Key", + width=300 + }, + [15]={ + list=true, + name="QuestFlag3", + refTo="QuestFlags", + type="Key", + width=300 + }, + [16]={ + list=true, + name="QuestFlag4", + refTo="", + type="Int", + width=300 + }, + [17]={ + list=true, + name="QuestFlag5", + refTo="", + type="Int", + width=300 + }, + [18]={ + list=false, + name="Video", + refTo="NPCTalkVideo", + type="Key", + width=150 + }, + [19]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + } + }, + npctalkmobilegroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + } + }, + npctalkvideo={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Video", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npctextaudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="Characters", + refTo="Characters", + type="Key", + width=230 + }, + [3]={ + list=false, + name="Text", + refTo="", + type="String", + width=400 + }, + [4]={ + list=true, + name="AudioFiles", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [12]={ + list=false, + name="NPCPortrait", + refTo="NPCPortraits", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [14]={ + list=true, + name="Cooldown", + refTo="MiscCooldowns", + type="Key", + width=300 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [16]={ + list=false, + name="NPCTalkVideo", + refTo="NPCTalkVideo", + type="Key", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + npctextaudiointerruptrules={ + }, + npctype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + } + }, + npcvendordialogue={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="NPC", + refTo="NPCs", + type="Key", + width=300 + }, + [3]={ + list=false, + name="NPCAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [4]={ + list=true, + name="DialogueCondition", + refTo="NPCVendorDialogueConditions", + type="Key", + width=300 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + npcvendordialogueconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Rarity", + refTo="Rarity", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Words", + refTo="Words", + type="Key", + width=150 + } + }, + oldmapstashtablayout={ + }, + ongoingbuffvariations={ + [1]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=250 + }, + [2]={ + list=false, + name="BuffDefinition", + refTo="BuffDefinitions", + type="Key", + width=210 + }, + [3]={ + list=true, + name="Stats1", + refTo="Stats", + type="Key", + width=630 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=true, + name="Stats2", + refTo="Stats", + type="Key", + width=880 + }, + [6]={ + list=false, + name="BuffDefinition2", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [7]={ + list=true, + name="Stats3", + refTo="Stats", + type="Key", + width=360 + } + }, + ongoingtriggervariations={ + [1]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=150 + }, + [2]={ + list=false, + name="BuffReserve", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [3]={ + list=false, + name="BuffCount", + refTo="BuffDefinitions", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + } + }, + onhiteffecttarget={ + }, + onkillachievements={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="GameStat", + refTo="GameStats", + type="Key", + width=150 + } + }, + orientations={ + }, + origin={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Format", + refTo="", + type="String", + width=240 + } + }, + packformation={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + pantheonpanellayout={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="X", + refTo="", + type="Int", + width=50 + }, + [3]={ + list=false, + name="Y", + refTo="", + type="Int", + width=50 + }, + [4]={ + list=false, + name="IsMajorGod", + refTo="", + type="Bool", + width=80 + }, + [5]={ + list=false, + name="CoverImage", + refTo="", + type="String", + width=380 + }, + [6]={ + list=false, + name="GodName2", + refTo="", + type="String", + width=220 + }, + [7]={ + list=false, + name="SelectionFrame", + refTo="", + type="String", + width=390 + }, + [8]={ + list=true, + name="Effect1StatsKey", + refTo="Stats", + type="Key", + width=650 + }, + [9]={ + list=true, + name="Effect1Values", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=true, + name="Effect2StatsKey", + refTo="Stats", + type="Key", + width=530 + }, + [11]={ + list=false, + name="GodName3", + refTo="", + type="String", + width=170 + }, + [12]={ + list=true, + name="Effect3Values", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=true, + name="Effect3StatsKey", + refTo="Stats", + type="Key", + width=470 + }, + [14]={ + list=false, + name="GodName4", + refTo="", + type="String", + width=170 + }, + [15]={ + list=true, + name="Effect4StatsKey", + refTo="Stats", + type="Key", + width=370 + }, + [16]={ + list=true, + name="Effect4Values", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="GodName1", + refTo="", + type="String", + width=150 + }, + [18]={ + list=true, + name="Effect2Values", + refTo="", + type="Int", + width=100 + }, + [19]={ + list=false, + name="QuestFlags1", + refTo="QuestFlags", + type="Key", + width=100 + }, + [20]={ + list=false, + name="QuestFlags2", + refTo="QuestFlags", + type="Key", + width=150 + }, + [21]={ + list=false, + name="QuestFlags3", + refTo="QuestFlags", + type="Key", + width=70 + }, + [22]={ + list=false, + name="QuestFlags4", + refTo="QuestFlags", + type="Key", + width=70 + }, + [23]={ + list=false, + name="IsDisabled", + refTo="", + type="Bool", + width=150 + }, + [24]={ + list=true, + name="", + refTo="", + type="Key", + width=100 + } + }, + pantheonsouls={ + [1]={ + list=false, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="CapturedVessel", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="QuestFlagUpgrade", + refTo="QuestFlags", + type="Key", + width=150 + }, + [4]={ + list=true, + name="CapturedMonster", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [5]={ + list=false, + name="PanelLayout", + refTo="PantheonPanelLayout", + type="Key", + width=150 + }, + [6]={ + list=false, + name="CapturedMonsterDescription", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="QuestFlagDowngrade", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + passivejewelart={ + [1]={ + list=false, + name="Item", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [2]={ + list=false, + name="JewelArt", + refTo="", + type="String", + width=550 + }, + [3]={ + list=false, + name="JewelBlueArt", + refTo="", + type="String", + width=480 + }, + [4]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + } + }, + passivejewelnodemodifyingstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=500 + }, + [2]={ + list=false, + name="ReplaceStat", + refTo="Stats", + type="Key", + width=250 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + } + }, + passivejewelradii={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", + width=100 + }, + [2]={ + list=false, + name="RingOuter", + refTo="", + type="Int", + width=100 + }, + [3]={ + list=false, + name="RingInner", + refTo="", + type="Int", + width=100 + }, + [4]={ + list=false, + name="Radius", + refTo="", + type="Int", + width=100 + } + }, + passivejewelradiiart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Cirlce1", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Cirlce2", + refTo="", + type="String", + width=110 + }, + [4]={ + list=false, + name="Glow", + refTo="", + type="String", + width=200 + }, + [5]={ + list=false, + name="", + refTo="PassiveJewelRadiiArt", + type="ShortKey", + width=70 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=40 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [8]={ + list=false, + name="Inverse1", + refTo="", + type="String", + width=480 + }, + [9]={ + list=false, + name="Inverse1Offset", + refTo="", + type="Int", + width=100 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=40 + }, + [11]={ + list=false, + name="Inverse2", + refTo="", + type="String", + width=180 + }, + [12]={ + list=false, + name="Inverse2Offset", + refTo="", + type="Int", + width=110 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + passivejewelslots={ + [1]={ + list=false, + name="Passive", + refTo="PassiveSkills", + type="Key", + width=180 + }, + [2]={ + list=false, + name="ClusterSize", + refTo="PassiveTreeExpansionJewelSizes", + type="Key", + width=80 + }, + [3]={ + list=false, + name="ClusterIndex", + refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="Parent", + refTo="PassiveJewelSlots", + type="ShortKey", + width=170 + }, + [5]={ + list=false, + name="Proxy", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [6]={ + list=true, + name="StartIndices", + refTo="", + type="Int", + width=210 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="UIArtOverride", + refTo="", + type="Bool", + width=200 + } + }, + passivejeweltransformations={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BaseStat", + refTo="Stats", + type="Key", + width=150 + }, + [4]={ + list=false, + name="TransformedStat", + refTo="Stats", + type="Key", + width=150 + } + }, + passivejeweltransformationtypes={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + } + }, + passivejeweluniqueart={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=50 + }, + [2]={ + list=false, + name="WordsKey", + refTo="Words", + type="Key", + width=100 + }, + [3]={ + list=false, + name="", + refTo="", + type="Key", + width=20 + }, + [4]={ + list=false, + name="JewelArt", + refTo="", + type="String", + width=560 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=20 + }, + [6]={ + list=false, + name="KeystoneArt", + refTo="", + type="String", + width=400 + } + }, + passivekeystonelist={ + [1]={ + list=false, + name="Id", + refTo="PassiveSkills", + type="Key", + width=300 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=300 + } + }, + passivenodetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + passiveoverridelimits={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=200 + } + }, + passiveskillbuffs={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=350 + }, + [2]={ + list=true, + name="", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="Buff", + refTo="BuffDefinitions", + type="Key", + width=350 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + passiveskillfiltercatagories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + passiveskillfiltergroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + } + }, + passiveskillfilteroptions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Filters", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="FilterGroup", + refTo="PassiveSkillFilterGroups", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [10]={ + list=false, + name="KeywordPopup", + refTo="KeywordPopups", + type="Key", + width=150 + } + }, + passiveskillmasteryeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Hash", + refTo="", + type="UInt16", + width=80 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=450 + }, + [4]={ + list=false, + name="Stat1", + refTo="", + type="Int", + width=80 + }, + [5]={ + list=false, + name="Stat2", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=false, + name="Stat3", + refTo="", + type="Int", + width=80 + }, + [7]={ + list=false, + name="AchievementItem", + refTo="AchievementItems", + type="Key", + width=150 + } + }, + passiveskillmasterygroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="MasteryEffects", + refTo="PassiveSkillMasteryEffects", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [4]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [5]={ + list=false, + name="MasteryCount", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=false, + name="MasteryArt", + refTo="PassiveSkillTreeMasteryArt", + type="Key", + width=150 + } + }, + passiveskilloverrides={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=220 + }, + [3]={ + list=false, + name="Icon", + refTo="", + type="String", + width=330 + }, + [4]={ + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=580 + }, + [5]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=100 + }, + [6]={ + list=false, + name="Hash", + refTo="", + type="Int", + width=100 + }, + [7]={ + list=false, + name="Background", + refTo="", + type="String", + width=530 + }, + [8]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffectsPerLevel", + type="Key", + width=250 + }, + [9]={ + list=false, + name="TattooType", + refTo="PassiveSkillOverrideTypes", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Limit", + refTo="PassiveOverrideLimits", + type="Key", + width=150 + }, + [11]={ + list=false, + name="MinimumConnected", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="MaximumConnected", + refTo="", + type="Int", + width=150 + }, + [13]={ + list=false, + name="PassiveSkill", + refTo="PassiveSkills", + type="Key", + width=150 + } + }, + passiveskilloverridetypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + passiveskills={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=350 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=330 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=780 + }, + [4]={ + list=false, + name="Stat1", + refTo="", + type="Int", + width=50 + }, + [5]={ + list=false, + name="Stat2", + refTo="", + type="Int", + width=50 + }, + [6]={ + list=false, + name="Stat3", + refTo="", + type="Int", + width=50 + }, + [7]={ + list=false, + name="Stat4", + refTo="", + type="Int", + width=50 + }, + [8]={ + list=false, + name="PassiveSkillNodeId", + refTo="", + type="UInt16", + width=100 + }, + [9]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [10]={ + list=true, + name="ClassStart", + refTo="Characters", + type="Key", + width=530 + }, + [11]={ + list=false, + name="Keystone", + refTo="", + type="Bool", + width=60 + }, + [12]={ + list=false, + name="Notable", + refTo="", + type="Bool", + width=60 + }, + [13]={ + list=false, + name="FlavourText", + refTo="", + type="String", + width=300 + }, + [14]={ + list=false, + name="IsOnlyImage", + refTo="", + type="Bool", + width=60 + }, + [15]={ + list=false, + name="Achievement", + refTo="AchievementItems", + type="Key", + width=150 + }, + [16]={ + list=false, + name="JewelSocket", + refTo="", + type="Bool", + width=70 + }, + [17]={ + list=false, + name="Ascendancy", + refTo="Ascendancy", + type="Key", + width=90 + }, + [18]={ + list=false, + name="AscendancyStart", + refTo="", + type="Bool", + width=100 + }, + [19]={ + list=true, + name="ReminderTexts", + refTo="ReminderText", + type="Key", + width=150 + }, + [20]={ + list=false, + name="PassivePointsGranted", + refTo="", + type="Int", + width=120 + }, + [21]={ + list=false, + name="MultipleChoice", + refTo="", + type="Bool", + width=80 + }, + [22]={ + list=false, + name="MultipleChoiceOption", + refTo="", + type="Bool", + width=110 + }, + [23]={ + list=false, + name="Stat5", + refTo="", + type="Int", + width=50 + }, + [24]={ + list=true, + name="PassiveSkillBuffs", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [25]={ + list=false, + name="AnointOnly", + refTo="", + type="Bool", + width=50 + }, + [26]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [27]={ + list=false, + name="ClusterNode", + refTo="", + type="Bool", + width=70 + }, + [28]={ + list=false, + name="Proxy", + refTo="", + type="Bool", + width=60 + }, + [29]={ + enumBase=1, + list=false, + name="Type", + refTo="PassiveSkillTypes", + type="Enum", + width=80 + }, + [30]={ + list=false, + name="MasteryGroup", + refTo="PassiveSkillMasteryGroups", + type="Key", + width=150 + }, + [31]={ + list=false, + name="AtlasMastery_rid", + refTo="AtlasPassiveSkillTreeGroupType", + type="Key", + width=150 + }, + [32]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [33]={ + list=false, + name="AtlasnodeGroup", + refTo="", + type="String", + width=190 + }, + [34]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [35]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [36]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [37]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [38]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [39]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [40]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [41]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [42]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [43]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [44]={ + list=false, + name="AudioEvent", + refTo="CharacterAudioEvents", + type="Key", + width=150 + }, + [45]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [46]={ + list=false, + name="Attribute", + refTo="", + type="Bool", + width=150 + }, + [47]={ + list=false, + name="AtlasSubTree", + refTo="AtlasPassiveSkillSubTrees", + type="Key", + width=150 + }, + [48]={ + list=false, + name="IsRootOfAtlas", + refTo="", + type="Bool", + width=150 + }, + [49]={ + list=false, + name="GrantedSkill", + refTo="SkillGems", + type="Key", + width=340 + }, + [50]={ + list=false, + name="WeaponPointsGranted", + refTo="", + type="Int", + width=150 + }, + [51]={ + list=false, + name="FreeAllocate", + refTo="", + type="Bool", + width=150 + }, + [52]={ + list=false, + name="ApplyToArmour?", + refTo="", + type="Bool", + width=150 + }, + [53]={ + list=true, + name="ConstraintNode", + refTo="PassiveSkills", + type="ShortKey", + width=200 + }, + [54]={ + list=false, + name="AscendancyUnlock", + refTo="Ascendancy", + type="Key", + width=150 + }, + [55]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [56]={ + list=false, + name="FrameArt", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=330 + }, + [57]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [58]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [59]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [60]={ + list=false, + name="BrequelTree", + refTo="BrequelPassiveSubTrees", + type="Key", + width=150 + }, + [61]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [62]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [63]={ + list=false, + name="StatValue6", + refTo="", + type="Int", + width=150 + }, + [64]={ + list=false, + name="StatValue7", + refTo="", + type="Int", + width=150 + }, + [65]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [66]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [67]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [68]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [69]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [70]={ + list=false, + name="Requirement", + refTo="ClientStrings", + type="Key", + width=150 + } + }, + passiveskillstatcategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + } + }, + passiveskilltattoos={ + [1]={ + list=false, + name="BaseItem", + refTo="BaseItemTypes", + type="Key", + width=380 + }, + [2]={ + list=false, + name="Override", + refTo="PassiveSkillOverrides", + type="Key", + width=150 + }, + [3]={ + list=false, + name="NodeTarget", + refTo="PassiveSkillTattooTargetSets", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Tribe", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="OverrideType", + refTo="PassiveSkillOverrideTypes", + type="Key", + width=150 + } + }, + passiveskilltattootargets={ + }, + passiveskilltattootargetsets={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="Set", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Type", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="Value", + refTo="", + type="String", + width=150 + } + }, + passiveskilltreeconnectionart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=380 + }, + [2]={ + list=false, + name="Normal", + refTo="", + type="String", + width=591 + }, + [3]={ + list=false, + name="NormalActive", + refTo="", + type="String", + width=633 + }, + [4]={ + list=false, + name="Intermediate", + refTo="", + type="String", + width=591 + }, + [5]={ + list=false, + name="IntermediateActive", + refTo="", + type="String", + width=591 + }, + [6]={ + list=false, + name="Mask", + refTo="", + type="String", + width=493 + }, + [7]={ + list=false, + name="LineOrnament1", + refTo="", + type="String", + width=381 + }, + [8]={ + list=false, + name="LineOrnament2", + refTo="", + type="String", + width=381 + } + }, + passiveskilltreemasteryart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Inactive", + refTo="", + type="String", + width=400 + }, + [3]={ + list=false, + name="Active", + refTo="", + type="String", + width=400 + }, + [4]={ + list=false, + name="Effect", + refTo="", + type="String", + width=400 + } + }, + passiveskilltreenodeframeart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=230 + }, + [2]={ + list=false, + name="Normal", + refTo="", + type="String", + width=605 + }, + [3]={ + list=false, + name="CanAllocate", + refTo="", + type="String", + width=640 + }, + [4]={ + list=false, + name="Active", + refTo="", + type="String", + width=626 + }, + [5]={ + list=false, + name="Mask", + refTo="", + type="String", + width=570 + }, + [6]={ + list=false, + name="Header", + refTo="", + type="String", + width=330 + } + }, + passiveskilltreenoderrameart={ + }, + passiveskilltrees={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="PassiveSkillGraph", + refTo="", + type="String", + width=390 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [4]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [17]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [18]={ + list=false, + name="ClientStrings", + refTo="ClientStrings", + type="Key", + width=200 + }, + [19]={ + list=false, + name="UIArt", + refTo="PassiveSkillTreeUIArt", + type="Key", + width=100 + }, + [20]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [21]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [22]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + passiveskilltreetutorial={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="CharactersKey", + refTo="Characters", + type="Key", + width=150 + }, + [3]={ + list=false, + name="PassiveChoiceA", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [4]={ + list=false, + name="ChoiceA_Description", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="ChoiceB_Description", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="PassiveChoiceB", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [7]={ + list=false, + name="ChoiceA_PassiveTreeURL", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="ChoiceB_PassiveTreeURL", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="NotableChoiceA", + refTo="PassiveSkills", + type="Key", + width=150 + }, + [10]={ + list=false, + name="NotableChoiceB", + refTo="PassiveSkills", + type="Key", + width=150 + } + }, + passiveskilltreeuiart={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="GroupBackgroundSmall", + refTo="", + type="String", + width=550 + }, + [3]={ + list=false, + name="GroupBackgroundMedium", + refTo="", + type="String", + width=550 + }, + [4]={ + list=false, + name="GroupBackgroundLarge", + refTo="", + type="String", + width=550 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="PassiveFrameNormal", + refTo="", + type="String", + width=550 + }, + [7]={ + list=false, + name="NotableFrameNormal", + refTo="", + type="String", + width=550 + }, + [8]={ + list=false, + name="KeystoneFrameNormal", + refTo="", + type="String", + width=550 + }, + [9]={ + list=false, + name="ConnectionsArt", + refTo="PassiveSkillTreeConnectionArt", + type="Key", + width=250 + }, + [10]={ + list=false, + name="PassiveFrame", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=210 + }, + [11]={ + list=false, + name="NotableFrame", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=190 + }, + [12]={ + list=false, + name="KeystoneFrame", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=200 + }, + [13]={ + list=false, + name="JewelFrame", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=190 + }, + [14]={ + list=false, + name="Glow", + refTo="", + type="String", + width=290 + }, + [15]={ + list=false, + name="AscendancyStart", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=150 + }, + [16]={ + list=false, + name="MultipleChoiceFrame", + refTo="PassiveSkillTreeNodeFrameArt", + type="Key", + width=150 + } + }, + passiveskilltypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + passiveskillvariants={ + [1]={ + list=false, + name="Type", + refTo="PassiveSkillVariantTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Variant", + refTo="PassiveSkills", + type="Key", + width=150 + } + }, + passiveskillvarianttypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + passivetreedecorators={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="BlockedArt", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [10]={ + list=false, + name="SkillTree", + refTo="PassiveSkillTrees", + type="Key", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + passivetreeexpansionjewels={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=360 + }, + [2]={ + list=false, + name="Size", + refTo="PassiveTreeExpansionJewelSizes", + type="Key", + width=70 + }, + [3]={ + list=false, + name="MinNodes", + refTo="", + type="Int", + width=70 + }, + [4]={ + list=false, + name="MaxNodes", + refTo="", + type="Int", + width=70 + }, + [5]={ + list=true, + name="SmallIndicies", + refTo="", + type="Int", + width=200 + }, + [6]={ + list=true, + name="NotableIndicies", + refTo="", + type="Int", + width=130 + }, + [7]={ + list=true, + name="SocketIndicies", + refTo="", + type="Int", + width=90 + }, + [8]={ + list=false, + name="TotalIndicies", + refTo="", + type="Int", + width=150 + } + }, + passivetreeexpansionjewelsizes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + passivetreeexpansionskills={ + [1]={ + list=false, + name="Node", + refTo="PassiveSkills", + type="Key", + width=320 + }, + [2]={ + list=false, + name="Mastery", + refTo="PassiveSkills", + type="Key", + width=410 + }, + [3]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=350 + }, + [4]={ + list=false, + name="JewelSize", + refTo="PassiveTreeExpansionJewelSizes", + type="Key", + width=70 + } + }, + passivetreeexpansionspecialskills={ + [1]={ + list=false, + name="Node", + refTo="PassiveSkills", + type="Key", + width=270 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=350 + } + }, + pathofendurance={ + }, + pcbangrewardmicros={ + [1]={ + list=false, + name="Mtx", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [2]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + } + }, + perandusbosses={ + }, + peranduschests={ + }, + perandusdaemons={ + }, + perandusguards={ + }, + perlevelvalues={ + }, + pet={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HASH16", + refTo="", + type="UInt16", + width=150 + }, + [4]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [5]={ + list=false, + name="Size", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=true, + name="HideoutTags", + refTo="HideoutDoodadTags", + type="Key", + width=300 + }, + [9]={ + list=false, + name="HideoutCategory", + refTo="HideoutDoodadCategory", + type="Key", + width=150 + }, + [10]={ + list=true, + name="GrantedSkill", + refTo="GrantedEffectsPerLevel", + type="Key", + width=300 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [16]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [18]={ + list=false, + name="ReviveEffect", + refTo="MicrotransactionReviveEffects", + type="Key", + width=150 + } + }, + playerbuffsfrommapstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=true, + name="BuffTemplate", + refTo="BuffTemplates", + type="Key", + width=300 + } + }, + playerconditions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="BuffDefinitionsKeys", + refTo="BuffDefinitions", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="BuffStacks", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="CharactersKey", + refTo="Characters", + type="Key", + width=150 + }, + [6]={ + list=true, + name="StatsKeys", + refTo="Stats", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="StatValue", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=true, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + playerminionintrinsicstats={ + [1]={ + list=false, + name="Id", + refTo="Stats", + type="Key", + width=350 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Int", + width=150 + } + }, + playertradewhisperformats={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=170 + }, + [2]={ + list=false, + name="Whisper", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="InStash", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="IsPriced", + refTo="", + type="Bool", + width=150 + } + }, + portalaudio={ + [1]={ + list=false, + name="Event", + refTo="PortalAudioEvents", + type="Key", + width=150 + }, + [2]={ + list=false, + name="PortalVariation", + refTo="MicrotransactionPortalVariations", + type="Key", + width=150 + }, + [3]={ + list=false, + name="NPCAudio", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + portalaudioevents={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + preloadfromstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 + }, + [2]={ + list=true, + name="Animation", + refTo="MiscAnimated", + type="Key", + width=300 + }, + [3]={ + list=true, + name="Object", + refTo="MiscObjects", + type="Key", + width=300 + }, + [4]={ + list=true, + name="BuffVisual", + refTo="BuffVisuals", + type="Key", + width=300 + }, + [5]={ + list=true, + name="EffectPack", + refTo="MiscEffectPacks", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="GroundEffect", + refTo="GroundEffects", + type="Key", + width=300 + } + }, + preloadgroups={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + preloadpriorities={ + }, + primalavatarvarieties={ + [1]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="SkillGem", + refTo="SkillGems", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ACTFile", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="AOFile", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + } + }, + primordialbosslifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="MoreLife", + refTo="", + type="Int", + width=150 + } + }, + projectilecollisiontypes={ + }, + projectileoverrides={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=300 + }, + [5]={ + list=false, + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + projectiles={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=370 + }, + [2]={ + list=true, + name="AOFiles", + refTo="", + type="String", + width=420 + }, + [3]={ + list=true, + name="LoopAnimationIds", + refTo="", + type="String", + width=200 + }, + [4]={ + list=true, + name="ImpactAnimationIds", + refTo="", + type="String", + width=200 + }, + [5]={ + list=false, + name="ProjectileSpeed", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [10]={ + list=false, + name="InheritsFrom", + refTo="", + type="String", + width=250 + }, + [11]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=70 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [15]={ + list=true, + name="Stuck_AOFile", + refTo="", + type="String", + width=150 + }, + [16]={ + list=false, + name="Bounce_AOFile", + refTo="", + type="String", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [20]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [21]={ + list=false, + name="Animation1", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [22]={ + list=false, + name="Animation2", + refTo="MiscAnimated", + type="Key", + width=200 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [26]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [28]={ + list=true, + name="", + refTo="", + type="String", + width=70 + }, + [29]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [30]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [31]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [32]={ + list=false, + name="BounceAnimation", + refTo="MiscAnimated", + type="Key", + width=260 + }, + [33]={ + list=false, + name="TerrainImpactAnimation", + refTo="MiscAnimated", + type="Key", + width=250 + }, + [34]={ + list=false, + name="DamageEffect", + refTo="DamageEffectVariations", + type="Key", + width=250 + }, + [35]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [36]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [37]={ + list=false, + name="DamageEffect", + refTo="DamageEffectVariations", + type="Key", + width=200 + }, + [38]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [39]={ + list=false, + name="BounceOverride", + refTo="BallisticBounceOverride", + type="Key", + width=150 + }, + [40]={ + list=false, + name="", + refTo="", + type="String", + width=150 + }, + [41]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [42]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [43]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + } + }, + projectilesartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=100 + }, + [3]={ + list=true, + name="Projectile", + refTo="Projectiles", + type="Key", + width=380 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=100 + } + }, + projectilevariations={ + }, + prophecies={ + }, + prophecychain={ + }, + prophecysetnames={ + }, + prophecysets={ + }, + prophecytype={ + }, + pvptypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Ruleset", + refTo="Rulesets", + type="Key", + width=150 + } + }, + quest={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=230 + }, + [2]={ + list=false, + name="Act", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=180 + }, + [4]={ + list=false, + name="Icon", + refTo="", + type="String", + width=150 + }, + [5]={ + list=false, + name="QuestId", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="Type", + refTo="QuestType", + type="Key", + width=150 + }, + [8]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="TrackerGroup", + refTo="QuestTrackerGroup", + type="Key", + width=40 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=80 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [13]={ + list=true, + name="NormalReward", + refTo="QuestRewardType", + type="Key", + width=150 + }, + [14]={ + list=true, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + questachievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="QuestStates", + refTo="", + type="Int", + width=300 + }, + [3]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [4]={ + list=true, + name="AchievementItems", + refTo="AchievementItems", + type="Key", + width=300 + }, + [5]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + questflags={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 + }, + [2]={ + list=false, + name="Hash32", + refTo="", + type="UInt", + width=150 + } + }, + questflagvisuals={ + [1]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Ascendancy", + refTo="Ascendancy", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 + } + }, + questitemnpcaudio={ + [1]={ + list=false, + name="QuestItem", + refTo="QuestItems", + type="Key", + width=150 + }, + [2]={ + list=false, + name="NPCAudio1", + refTo="NPCTextAudio", + type="Key", + width=150 + }, + [3]={ + list=true, + name="NPCAudio2", + refTo="NPCTextAudio", + type="Key", + width=300 + }, + [4]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + questitems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [2]={ + list=false, + name="TriggeredQuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [3]={ + list=false, + name="QuestComplete", + refTo="QuestFlags", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="HelpText", + refTo="ClientStrings", + type="Key", + width=150 + }, + [9]={ + list=false, + name="Description", + refTo="ClientStrings", + type="Key", + width=150 + }, + [10]={ + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [12]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [14]={ + list=true, + name="NPCs", + refTo="NPCs", + type="Key", + width=300 + }, + [15]={ + list=false, + name="QuestFlagUsed", + refTo="QuestFlags", + type="Key", + width=150 + }, + [16]={ + list=false, + name="BuffVisual", + refTo="BuffVisuals", + type="Key", + width=150 + } + }, + questrewardoffers={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=200 + }, + [2]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=200 + }, + [3]={ + list=false, + name="QuestFlags", + refTo="QuestFlags", + type="Key", + width=200 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=160 + }, + [5]={ + list=false, + name="RewardWindowTake", + refTo="ClientStrings", + type="Key", + width=50 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [8]={ + list=false, + name="RewardWindowTitle", + refTo="ClientStrings", + type="Key", + width=50 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [11]={ + list=false, + name="", + refTo="", + type="Bool", + width=100 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 + }, + [13]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [14]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + questrewards={ + [1]={ + list=false, + name="Id", + refTo="QuestRewardOffers", + type="Key", + width=150 + }, + [2]={ + list=false, + name="QuestPart", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=20 + }, + [4]={ + list=false, + name="BaseItemType", + refTo="", + type="Int", + width=460 + }, + [5]={ + list=false, + name="RewardItemLevel", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="QuestType", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="Reward", + refTo="BaseItemTypes", + type="Key", + width=160 + }, + [8]={ + list=false, + name="RewardLevel", + refTo="", + type="Int", + width=130 + }, + [9]={ + list=false, + name="RewardRarity", + refTo="Rarity", + type="Key", + width=110 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [12]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [13]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [14]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [15]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [17]={ + list=false, + name="RewardStack", + refTo="", + type="Int", + width=120 + }, + [18]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [20]={ + list=true, + name="", + refTo="", + type="Key", + width=50 + }, + [21]={ + list=false, + name="", + refTo="", + type="Int", + width=70 + }, + [22]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [24]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [25]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [26]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [27]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [29]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [30]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [31]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [32]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + questrewardtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=210 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=150 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + }, + [4]={ + list=false, + name="Description", + refTo="", + type="String", + width=300 + }, + [5]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=380 + }, + [6]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=290 + } + }, + queststatecalculation={ + }, + queststates={ + [1]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Order", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="FlagsPresent", + refTo="QuestFlags", + type="Key", + width=300 + }, + [4]={ + list=true, + name="FlagsMissing", + refTo="QuestFlags", + type="Key", + width=300 + }, + [5]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="Message", + refTo="", + type="String", + width=240 + }, + [8]={ + list=true, + name="MapPinsKeys", + refTo="MapPins", + type="Key", + width=300 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [10]={ + list=false, + name="MapPinsText", + refTo="", + type="String", + width=240 + }, + [11]={ + list=false, + name="MapPinsKey", + refTo="MapPins", + type="Key", + width=150 + }, + [12]={ + list=true, + name="WorldArea", + refTo="WorldAreas", + type="Key", + width=300 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [14]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [15]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="SoundEffect", + refTo="SoundEffects", + type="Key", + width=150 + }, + [18]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [19]={ + list=true, + name="QuestItem", + refTo="BaseItemTypes", + type="Key", + width=300 + }, + [20]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [21]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + queststaticrewards={ + [1]={ + list=false, + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=250 + }, + [2]={ + list=false, + name="WeaponPassives", + refTo="", + type="Int", + width=100 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=400 + }, + [4]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=100 + }, + [5]={ + list=false, + name="Quest", + refTo="Quest", + type="Key", + width=150 + }, + [6]={ + list=false, + name="AscendancyPointsRewarded", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="ClientString", + refTo="ClientStrings", + type="Key", + width=250 + }, + [8]={ + list=false, + name="WeaponSetPointsRewarded", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [10]={ + list=false, + name="Achievement", + refTo="QuestAchievements", + type="Key", + width=150 + } + }, + questtrackergroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="QuestType", + refTo="QuestType", + type="Key", + width=150 + } + }, + questtype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ + list=true, + name="Colour", + refTo="", + type="Int", + width=150 + } + }, + questvendorrewards={ + }, + raceareas={ + }, + racerewardtomicro={ + [1]={ + list=false, + name="Id", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [2]={ + list=false, + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", + width=150 + }, + [3]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + } + }, + races={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="Mods", + refTo="Mods", + type="Key", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=true, + name="Area", + refTo="WorldAreas", + type="Key", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [10]={ + list=true, + name="ModFamily", + refTo="ModFamily", + type="Key", + width=300 + } + }, + racetimes={ + [1]={ + list=false, + name="RacesKey", + refTo="Races", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Index", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="StartUNIXTime", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="EndUNIXTime", + refTo="", + type="Int", + width=150 + } + }, + randomuniquemonsters={ + }, + raremonsterlifescalingperlevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", width=150 }, - [3]={ + [2]={ list=false, - name="tags", - refTo="Tags", - type="Key", + name="Life", + refTo="", + type="Int", width=150 } }, - influencetypes={ - }, - interpolatebuffeffect={ + rarity={ [1]={ list=false, - name="BuffDefinition", - refTo="BuffDefinitions", - type="Key", - width=200 + name="Id", + refTo="", + type="String", + width=150 }, [2]={ list=false, - name="", + name="MinMods", refTo="", type="Int", - width=70 + width=80 }, [3]={ list=false, - name="", + name="MaxMods", refTo="", type="Int", - width=70 + width=80 }, [4]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=80 }, [5]={ list=false, - name="Divisor", + name="MaxPrefix", refTo="", type="Int", width=80 - } - }, - invasionmonstergroups={ - }, - invasionmonsterrestrictions={ - }, - invasionmonsterroles={ - }, - invasionmonstersperarea={ - }, - inventories={ - }, - inventoryid={ - }, - inventorytype={ - }, - itemclasscategories={ - [1]={ + }, + [6]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=180 + type="Int", + width=80 }, - [2]={ + [7]={ list=false, - name="Name", + name="MaxSuffix", + refTo="", + type="Int", + width=80 + }, + [8]={ + list=false, + name="Colour", refTo="", type="String", - width=150 + width=80 }, - [3]={ + [9]={ list=false, name="", refTo="", - type="Key", - width=150 + type="String", + width=80 } }, - itemclasses={ + raritymask={ + }, + realms={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, name="Name", refTo="", type="String", - width=150 + width=240 }, [3]={ - list=false, - name="ItemClassCategory", - refTo="ItemClassCategories", - type="Key", - width=150 + list=true, + name="Server", + refTo="", + type="String", + width=300 }, [4]={ list=false, - name="RemovedIfLeavesArea", + name="IsEnabled", refTo="", type="Bool", width=150 }, [5]={ list=true, - name="", + name="Server2", refTo="", - type="Key", - width=20 + type="String", + width=300 }, [6]={ - list=true, - name="Achievements", - refTo="AchievementItems", - type="Key", - width=150 - }, - [7]={ - list=false, - name="AllocateToMapOwner", - refTo="", - type="Bool", - width=130 - }, - [8]={ list=false, - name="AlwaysAllocate", + name="ShortName", refTo="", - type="Bool", - width=120 + type="String", + width=240 }, - [9]={ - list=false, - name="CanHaveVeiledMods", - refTo="", - type="Bool", - width=130 + [7]={ + list=true, + name="", + refTo="Realms", + type="Key", + width=300 }, - [10]={ + [8]={ list=false, - name="PickedUpQuest", - refTo="QuestFlags", + name="", + refTo="Realms", type="Key", - width=110 + width=150 }, - [11]={ + [9]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [12]={ + [10]={ list=false, - name="AlwaysShow", + name="IsGammaRealm", refTo="", type="Bool", - width=100 + width=150 }, - [13]={ - list=false, - name="CanBeCorrupted", + [11]={ + list=true, + name="SpeedtestUrl", refTo="", - type="Bool", - width=100 - }, - [14]={ + type="String", + width=300 + } + }, + recipeunlockdisplay={ + [1]={ list=false, - name="CanHaveIncubators", + name="RecipeId", refTo="", - type="Bool", - width=120 + type="Int", + width=150 }, - [15]={ + [2]={ list=false, - name="CanHaveInfluence", + name="Description", refTo="", - type="Bool", - width=120 + type="String", + width=320 }, - [16]={ - list=false, - name="CanBeDoubleCorrupted", - refTo="", - type="Bool", - width=130 + [3]={ + list=true, + name="CraftingItemClassCategoriesKeys", + refTo="CraftingItemClassCategories", + type="Key", + width=150 }, - [17]={ + [4]={ list=false, - name="CanHaveAspects", + name="UnlockDescription", refTo="", - type="Bool", - width=110 + type="String", + width=150 }, - [18]={ + [5]={ list=false, - name="CanTransferSkin", + name="Rank", refTo="", - type="Bool", - width=110 + type="Int", + width=150 }, - [19]={ + [6]={ list=false, - name="ItemStance", - refTo="ItemStances", + name="UnlockArea", + refTo="WorldAreas", type="Key", - width=90 + width=150 }, - [20]={ + [7]={ list=false, - name="CanScourge", + name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, - [21]={ + [8]={ list=false, - name="CanUpgradeRarity", - refTo="", - type="Bool", - width=110 - }, - [22]={ - list=true, - name="Flags", + name="", refTo="", type="Int", - width=100 + width=150 }, - [23]={ + [9]={ list=false, - name="Unmodifiable", + name="", refTo="", - type="Bool", - width=100 + type="Int", + width=150 }, - [24]={ + [10]={ list=false, - name="CanBeFractured", + name="", refTo="", - type="Bool", - width=100 - }, - [25]={ + type="Key", + width=150 + } + }, + recipeunlockobjects={ + [1]={ list=false, - name="EquipAchievements", - refTo="AchievementItems", + name="WorldAreasKey", + refTo="WorldAreas", type="Key", - width=120 + width=150 }, - [26]={ + [2]={ list=false, - name="UsedInMapDevice", + name="InheritsFrom", refTo="", - type="Bool", - width=100 + type="String", + width=240 }, - [27]={ + [3]={ list=false, - name="", + name="RecipeId", refTo="", - type="Bool", - width=80 + type="Int", + width=150 } }, - itemclassflags={ - }, - itemcostperlevel={ - }, - itemcosts={ - }, - itemcreationtemplatecustomaction={ - }, - itemdisenchantvalues={ + relativeimportanceconstants={ }, - itemexperienceperlevel={ + relicinventorylayout={ [1]={ list=false, - name="ItemExperienceType", - refTo="ItemExperienceTypes", - type="Key", - width=410 + name="", + refTo="", + type="Int", + width=150 }, [2]={ list=false, - name="Level", + name="", refTo="", type="Int", - width=50 + width=150 }, [3]={ list=false, - name="Experience", + name="", refTo="", type="Int", width=150 }, [4]={ list=false, - name="PlayerLevel", + name="Requirement", refTo="", - type="Int", - width=150 + type="String", + width=240 } }, - itemexperiencetypes={ + relicitemeffectvariations={ [1]={ list=false, name="Id", refTo="", type="String", - width=270 + width=240 + }, + [2]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="DDSFile", + refTo="", + type="String", + width=240 } }, - itemframetype={ - }, - iteminherentskills={ + remindertext={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=450 + name="Id", + refTo="", + type="String", + width=350 }, [2]={ - list=true, - name="Skill", - refTo="SkillGems", - type="Key", - width=400 + list=false, + name="Text", + refTo="", + type="String", + width=1000 }, [3]={ list=false, - name="Mainhand", + name="TextHardmode", refTo="", - type="Bool", - width=50 + type="String", + width=150 } }, - itemisedcorpse={ + reservationskillsaudio={ [1]={ list=false, - name="BaseItem", - refTo="BaseItemTypes", + name="ActiveSkill", + refTo="ActiveSkills", type="Key", - width=400 + width=150 }, [2]={ list=false, - name="Monster", - refTo="MonsterVarieties", - type="Key", - width=500 + name="", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="MonsterAbilities", + name="", refTo="", type="String", - width=600 + width=240 + } + }, + resistancepenaltyperarealevel={ + [1]={ + list=false, + name="Level", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="Penalty", + refTo="", + type="Int", + width=80 + } + }, + ritualatlaslinemods={ + [1]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Weighting", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ConditionStat", + refTo="Stats", + type="Key", + width=150 }, [4]={ list=false, - name="MonsterCategory", - refTo="CorpseTypeTags", + name="Mod2", + refTo="Mods", type="Key", - width=130 + width=150 } }, - itemisedvisualeffect={ - }, - itemisedvisualeffectexclusivetypes={ - }, - itemnotecode={ - }, - itemsetnames={ - }, - itemshoptype={ - }, - itemspirit={ + ritualatlaslinequestmaps={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", + name="Map", + refTo="EndgameMapAtlas", type="Key", - width=430 + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + ritualbalanceperlevel={ + [1]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 }, [2]={ list=false, - name="Value", + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [10]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [12]={ + list=false, + name="", refTo="", type="Int", width=150 - } - }, - itemstances={ - [1]={ + }, + [13]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [2]={ + [14]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [3]={ + [15]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 - } - }, - itemsynthesiscorruptedmods={ - [1]={ + }, + [16]={ list=false, - name="ItemClass", - refTo="ItemClasses", - type="Key", - width=170 + name="", + refTo="", + type="Int", + width=150 }, - [2]={ - list=true, - name="ImplicitMods", - refTo="Mods", - type="Key", - width=910 + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 } }, - itemsynthesismods={ + ritualconstants={ [1]={ list=false, name="Id", refTo="", type="String", - width=120 + width=300 }, [2]={ list=false, - name="Stat", - refTo="Stats", - type="Key", - width=350 - }, - [3]={ - list=false, - name="", + name="Value", refTo="", - type="Int", + type="Float", width=150 - }, - [4]={ - list=true, - name="ItemClasses", - refTo="ItemClasses", - type="Key", - width=440 - }, - [5]={ - list=true, - name="ImplicitMod", - refTo="Mods", - type="Key", - width=450 } }, - itemthemes={ - }, - itemtoggleable={ - }, - itemtradedata={ - }, - itemvisualeffect={ - }, - itemvisualheldbodymodel={ - }, - itemvisualheldbodymodeloverridebyitemaffiliatedattributes={ - }, - itemvisualidentity={ + ritualrunetypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=350 + width=170 }, [2]={ list=false, - name="DDSFile", - refTo="", - type="String", - width=370 + name="MiscAnimatedKey1", + refTo="MiscAnimated", + type="Key", + width=150 }, [3]={ list=false, - name="AOFile", + name="SpawnWeight", refTo="", - type="String", - width=610 + type="Int", + width=150 }, [4]={ list=false, - name="InventorySound", - refTo="SoundEffects", - type="Key", + name="LevelMin", + refTo="", + type="Int", width=150 }, [5]={ list=false, - name="Hash", + name="LevelMax", refTo="", - type="UInt16", - width=70 + type="Int", + width=150 }, [6]={ list=false, - name="AOFile2", - refTo="", - type="String", + name="BuffDefinitionsKey", + refTo="BuffDefinitions", + type="Key", width=150 }, [7]={ list=true, - name="MarauderSMFiles", + name="BuffStatValues", refTo="", - type="String", - width=150 + type="Int", + width=300 }, [8]={ list=true, - name="RangerSMFiles", - refTo="", - type="String", - width=150 + name="SpawnPatterns", + refTo="RitualSpawnPatterns", + type="Key", + width=300 }, [9]={ list=true, - name="WitchSMFiles", - refTo="", - type="String", - width=150 + name="ModsKey", + refTo="Mods", + type="Key", + width=300 }, [10]={ list=true, - name="DuelistDexSMFiles", + name="", refTo="", - type="String", - width=150 + type="Int", + width=300 }, [11]={ list=true, - name="TemplarSMFiles", + name="", refTo="", - type="String", - width=150 + type="Int", + width=300 }, [12]={ - list=true, - name="ShadowSMFiles", - refTo="", - type="String", + list=false, + name="MiscAnimatedKey2", + refTo="MiscAnimated", + type="Key", width=150 }, [13]={ - list=true, - name="ScionSMFiles", - refTo="", - type="String", + list=false, + name="EnvironmentsKey", + refTo="Environments", + type="Key", width=150 }, [14]={ list=false, - name="MarauderShape", + name="", refTo="", - type="String", + type="Int", width=150 }, [15]={ - list=false, - name="RangerShape", - refTo="", - type="String", - width=150 + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 }, [16]={ list=false, - name="WitchShape", + name="Type", refTo="", type="String", - width=150 + width=240 }, [17]={ list=false, - name="DuelistShape", + name="Description", refTo="", type="String", - width=150 + width=240 }, [18]={ list=false, - name="TemplarShape", - refTo="", - type="String", + name="DaemonSpawningDataKey", + refTo="DaemonSpawningData", + type="Key", width=150 }, [19]={ list=false, - name="ShadowShape", + name="", refTo="", - type="String", + type="Bool", width=150 }, [20]={ - list=false, - name="ScionShape", - refTo="", - type="String", - width=150 + list=true, + name="MonsterPacks", + refTo="MonsterPacks", + type="Key", + width=300 }, [21]={ list=false, name="", refTo="", - type="Key", - width=50 + type="Int", + width=150 }, [22]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, [23]={ - list=true, - name="Pickup_AchievementItemsKeys", - refTo="AchievementItems", - type="Key", - width=170 + list=false, + name="", + refTo="", + type="Int", + width=150 }, [24]={ - list=true, - name="SMFiles", + list=false, + name="", refTo="", - type="String", + type="Int", width=150 }, [25]={ - list=true, - name="Identify_AchievementItemsKeys", - refTo="AchievementItems", + list=false, + name="EnableStat", + refTo="Stats", type="Key", - width=170 + width=150 }, [26]={ list=false, - name="EPKFile", - refTo="", - type="String", + name="ChanceStat", + refTo="Stats", + type="Key", width=150 - }, - [27]={ - list=true, - name="Corrupt_AchievementItemsKeys", + } + }, + ritualsetkillachievements={ + [1]={ + list=false, + name="Achievement", refTo="AchievementItems", type="Key", - width=160 + width=150 }, - [28]={ + [2]={ + list=true, + name="KillBosses", + refTo="MonsterVarieties", + type="Key", + width=300 + } + }, + ritualspawnpatterns={ + [1]={ list=false, - name="IsAlternateArt", + name="Id", refTo="", - type="Bool", - width=150 + type="String", + width=240 }, - [29]={ + [2]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [30]={ - list=false, - name="CreateCorruptedJewelAchievementItemsKey", - refTo="AchievementItems", - type="Key", - width=230 - }, - [31]={ - list=false, - name="AnimationLocation", + [3]={ + list=true, + name="SpawnOrder", refTo="", type="String", - width=150 + width=300 }, - [32]={ + [4]={ list=false, name="", refTo="", - type="String", + type="Bool", width=150 - }, - [33]={ + } + }, + ritualstashtablayout={ + [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 + width=240 }, - [34]={ + [2]={ list=false, - name="", - refTo="", - type="String", + name="StoredItem", + refTo="BaseItemTypes", + type="Key", width=150 }, - [35]={ + [3]={ list=false, - name="", + name="XOffset", refTo="", - type="String", + type="Int", width=150 }, - [36]={ + [4]={ list=false, - name="", + name="YOffset", refTo="", - type="String", + type="Int", width=150 }, - [37]={ + [5]={ list=false, - name="", + name="FirstSlotIndex", refTo="", - type="String", + type="Int", width=150 }, - [38]={ + [6]={ list=false, - name="", + name="Width", refTo="", - type="String", + type="Int", width=150 }, - [39]={ + [7]={ list=false, - name="", + name="Height", refTo="", - type="String", + type="Int", width=150 }, - [40]={ + [8]={ list=false, - name="", + name="ShowIfEmpty", refTo="", - type="String", + type="Bool", width=150 }, - [41]={ + [9]={ list=false, - name="", + name="SlotSize", refTo="", - type="String", + type="Int", width=150 }, - [42]={ + [10]={ list=false, - name="", - refTo="", - type="String", + name="SlotStyle", + refTo="StashTabInventorySlotStyle", + type="Key", width=150 }, - [43]={ + [11]={ list=false, - name="", + name="MiniIcon", refTo="", type="String", - width=150 - }, - [44]={ + width=240 + } + }, + rogueexilelifescalingperlevel={ + [1]={ list=false, - name="IsAtlasOfWorldsMapIcon", + name="Level", refTo="", - type="Bool", + type="Int", width=150 }, - [45]={ + [2]={ list=false, - name="IsTier16Icon", + name="MoreLife", refTo="", - type="Bool", + type="Int", width=150 - }, - [46]={ - list=true, - name="Achievements", - refTo="AchievementItems", - type="Key", - width=500 - }, - [47]={ + } + }, + rogueexilemodbonuses={ + [1]={ list=false, - name="", - refTo="", - type="Bool", - width=150 - }, - [48]={ - list=true, - name="", - refTo="", + name="Mod", + refTo="Mods", type="Key", - width=150 + width=200 }, - [49]={ + [2]={ list=true, - name="", - refTo="", - type="String", - width=480 + name="Stats", + refTo="Stats", + type="Key", + width=400 }, - [50]={ + [3]={ list=true, - name="", + name="StatValues", refTo="", - type="String", + type="Int", + width=150 + } + }, + rogueexiles={ + [1]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", width=150 }, - [51]={ - list=true, + [2]={ + list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [52]={ - list=true, + [3]={ + list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [53]={ - list=true, + [4]={ + list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [54]={ - list=true, + [5]={ + list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [55]={ - list=true, + [6]={ + list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [56]={ + [7]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [57]={ + [8]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [58]={ + [9]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [59]={ + [10]={ list=false, - name="", - refTo="", - type="String", + name="AudioCharacter", + refTo="AudioCharacterClass", + type="Key", width=150 }, - [60]={ + [11]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [61]={ + [12]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [62]={ + [13]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [63]={ + [14]={ list=false, name="", refTo="", - type="String", + type="Key", width=150 }, - [64]={ + [15]={ list=false, - name="", - refTo="", - type="String", + name="Name", + refTo="Words", + type="Key", width=150 }, - [65]={ + [16]={ + list=true, + name="SpawnChanceStats", + refTo="Stats", + type="Key", + width=300 + }, + [17]={ list=false, name="", refTo="", type="Int", width=150 }, - [66]={ - list=false, - name="", + [18]={ + list=true, + name="VariationStat1", refTo="Stats", type="Key", - width=150 + width=300 }, - [67]={ - list=false, + [19]={ + list=true, + name="VariationStat2", + refTo="Stats", + type="Key", + width=300 + }, + [20]={ + list=true, name="", - refTo="Stats", + refTo="", type="Key", - width=150 + width=300 }, - [68]={ - list=false, + [21]={ + list=true, name="", refTo="", type="Key", - width=150 + width=300 }, - [69]={ + [22]={ list=false, name="", refTo="", type="Key", width=150 }, - [70]={ - list=true, + [23]={ + list=false, name="", refTo="", - type="String", + type="Int", width=150 - }, - [71]={ - list=true, - name="", + } + }, + rulesets={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=150 + width=240 }, - [72]={ + [2]={ list=true, name="", - refTo="", - type="String", - width=150 + refTo="Rulesets", + type="Key", + width=300 }, - [73]={ - list=true, + [3]={ + list=false, name="", refTo="", - type="String", + type="Bool", width=150 }, - [74]={ - list=true, + [4]={ + list=false, name="", refTo="", - type="String", + type="Bool", width=150 }, - [75]={ + [5]={ list=true, name="", refTo="", - type="String", - width=150 - }, - [76]={ - list=false, - name="AudioEvent", - refTo="CharacterAudioEvents", type="Key", - width=150 + width=300 }, - [77]={ + [6]={ list=false, name="", refTo="", type="String", - width=150 - }, - [78]={ + width=240 + } + }, + runiccircles={ + [1]={ list=false, name="", refTo="", type="String", - width=150 + width=240 }, - [79]={ + [2]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [80]={ - list=false, + [3]={ + list=true, name="", refTo="", - type="String", - width=150 + type="Int", + width=300 }, - [81]={ + [4]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 - }, - [82]={ + } + }, + safehousebyocrafting={ + [1]={ list=false, - name="", - refTo="", - type="String", + name="BetrayalJobsKey", + refTo="BetrayalJobs", + type="Key", width=150 }, - [83]={ + [2]={ list=false, - name="", - refTo="", - type="String", + name="BetrayalTargetsKey", + refTo="BetrayalTargets", + type="Key", width=150 }, - [84]={ + [3]={ list=false, - name="", + name="Rank", refTo="", - type="Key", + type="Int", width=150 }, - [85]={ + [4]={ list=false, - name="", - refTo="", + name="Craft", + refTo="BYOCrafting", type="Key", width=150 - }, - [86]={ + } + }, + safehousecraftingspree={ + }, + safehousecraftingspreecurrencies={ + [1]={ list=false, - name="SoundEffect", - refTo="SoundEffects", - type="Key", - width=300 + name="Id", + refTo="", + type="String", + width=240 }, - [87]={ + [2]={ list=false, - name="Animation", - refTo="MiscAnimated", + name="BaseItemTypesKey", + refTo="BaseItemTypes", type="Key", width=150 }, - [88]={ + [3]={ list=false, - name="", + name="HasSpecificBaseItem", refTo="", - type="String", + type="Bool", width=150 } }, - itemvisualreplacement={ - }, - jobassassinationspawnergroups={ - }, - jobraidbrackets={ - }, - keywordpopups={ + safehousecraftingspreetype={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ - list=false, - name="Name", - refTo="", - type="String", - width=150 + list=true, + name="Currencies", + refTo="SafehouseCraftingSpreeCurrencies", + type="Key", + width=300 }, [3]={ - list=false, - name="Description", + list=true, + name="CurrencyCount", refTo="", - type="String", - width=380 + type="Int", + width=300 }, [4]={ - list=false, + list=true, name="", refTo="", - type="String", - width=330 + type="Key", + width=300 }, [5]={ list=false, - name="", + name="Disabled", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="ItemClassText", refTo="", type="String", - width=300 + width=240 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 } }, - killstreakthresholds={ - }, - kioskmodecharactertutorials={ - }, - kiraclevels={ - }, - labyrinthareas={ - }, - labyrinthbonusitems={ - }, - labyrinthexclusiongroups={ - }, - labyrinthizarochests={ - }, - labyrinthnodeoverrides={ - }, - labyrinthrewards={ - }, - labyrinthrewardtypes={ - }, - labyrinths={ - }, - labyrinthsecreteffects={ - }, - labyrinthsecretlocations={ - }, - labyrinthsecrets={ - }, - labyrinthsection={ - }, - labyrinthsectionlayout={ - }, - labyrinthtrials={ - }, - labyrinthtrinkets={ - }, - lakebosslifescalingperlevel={ - }, - lakemetaoptions={ - }, - lakemetaoptionsunlocktext={ - }, - lakeroomcompletion={ - }, - lakerooms={ - }, - languages={ - }, - leaguecategory={ - }, - leagueflag={ - }, - leagueflags={ - }, - leagueinfo={ - }, - leagueinfopanelversions={ - }, - leaguenames={ + salvageboxes={ [1]={ list=false, - name="", - refTo="", - type="String", + name="MtxType", + refTo="MtxTypeGameSpecific", + type="Key", width=150 }, [2]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 + width=240 }, [3]={ list=false, name="", refTo="", type="String", - width=150 + width=240 } }, - leagueprogressquestflags={ - }, - leaguequestflags={ - }, - leaguestaticrewards={ - }, - leaguetrophy={ - }, - legacyatlasinfluenceoutcomes={ - }, - legionbalanceperlevel={ - }, - legionchestcounts={ - }, - legionchests={ - }, - legionchesttypes={ - }, - legionfactions={ - }, - legionmonstercounts={ - }, - legionmonstertypes={ - }, - legionmonstervarieties={ - }, - legionranks={ - }, - legionranktypes={ - }, - legionrewards={ - }, - legionrewardtypes={ - }, - legionrewardtypevisuals={ - }, - levelrelativeplayerscaling={ + sanctumairlocks={ [1]={ list=false, - name="", - refTo="", - type="Int", + name="Floor", + refTo="SanctumFloors", + type="Key", width=150 }, [2]={ @@ -9640,41 +52625,50 @@ return { width=150 }, [3]={ - list=false, + list=true, name="", refTo="", type="Int", - width=150 + width=300 }, [4]={ list=false, - name="", - refTo="", - type="Int", + name="Area1", + refTo="WorldAreas", + type="Key", width=150 }, [5]={ list=false, - name="", + name="Area2", + refTo="WorldAreas", + type="Key", + width=150 + } + }, + sanctumbalanceperlevel={ + [1]={ + list=false, + name="Level", refTo="", type="Int", width=150 }, - [6]={ + [2]={ list=false, name="", refTo="", type="Int", width=150 }, - [7]={ + [3]={ list=false, name="", refTo="", type="Int", width=150 }, - [8]={ + [4]={ list=false, name="", refTo="", @@ -9682,745 +52676,713 @@ return { width=150 } }, - loginareas={ - }, - magicmonsterlifescalingperlevel={ - }, - mapcompletionachievements={ - }, - mapconnections={ - }, - mapcreationinformation={ - }, - mapcurrencyinventorylayout={ - }, - mapdevicerecipes={ - }, - mapdevices={ - }, - mapfragmentfamilies={ - }, - mapfragmentmods={ - }, - mapinhabitants={ - }, - mappins={ - }, - mappurchasecosts={ - }, - maps={ - }, - mapseries={ - }, - mapseriestiers={ - }, - mapstashspecialtypeentries={ - }, - mapstashtablayout={ - }, - mapstashuniquemapinfo={ - }, - mapstatachievements={ - }, - mapstatconditions={ - }, - mapstatsfrommapstats={ - }, - maptierachievements={ - }, - maptiers={ - }, - masterhideoutlevels={ - }, - mavendialog={ - }, - mavenfights={ - }, - mavenjewelradiuskeystones={ + sanctumdefenceicons={ [1]={ list=false, - name="Keystone_Key", - refTo="PassiveSkills", + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Stat", + refTo="Stats", type="Key", - width=300 - } - }, - melee={ - }, - meleetrails={ - }, - memorylinetype={ - }, - metamorphlifescalingperlevel={ - }, - metamorphosismetamonsters={ - }, - metamorphosismetaskills={ - }, - metamorphosismetaskilltypes={ - }, - metamorphosisrewardtypeitemsclient={ - }, - metamorphosisrewardtypes={ - }, - metamorphosisscaling={ - }, - metamorphosisstashtablayout={ - }, - micromigrationdata={ - }, - microtransactionappliedinventoryitemartvariations={ - }, - microtransactioncategory={ - }, - microtransactioncategoryid={ - }, - microtransactioncharacterportraitvariations={ - }, - microtransactionchargevariations={ - }, - microtransactioncombineformula={ - }, - microtransactionconditionalapparitionevents={ - }, - microtransactionconditionalapparitioneventtype={ - }, - microtransactionconditionalapparitionorientation={ - }, - microtransactionconditionalapparitionposition={ - }, - microtransactionconditionalapparitions={ - }, - microtransactioncounters={ - }, - microtransactioncursorvariations={ - }, - microtransactionequippediconvariations={ - }, - microtransactionfireworksvariations={ - }, - microtransactiongemcategory={ - }, - microtransactionjewelvariations={ - }, - microtransactionlevelupeffects={ - }, - microtransactionobjecteffects={ - }, - microtransactiononkillbeams={ - }, - microtransactiononkillconditions={ - }, - microtransactiononkilleffects={ - }, - microtransactiononopenchesteffects={ - }, - microtransactionperiodiccharactereffectvariations={ - }, - microtransactionplayershieldvariations={ - }, - microtransactionportalvariations={ - }, - microtransactionraritydisplay={ - }, - microtransactionrecyclecategories={ - }, - microtransactionrecycleoutcomes={ - }, - microtransactionrecyclesalvagevalues={ - }, - microtransactionskillgemeffectslottypes={ - }, - microtransactionslot={ - }, - microtransactionslotadditionaldefaultoptions={ - }, - microtransactionslotid={ + width=150 + }, + [3]={ + list=false, + name="DefenceIcon", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="DefenceBrokenIcon", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="BrokenStat", + refTo="Stats", + type="Key", + width=150 + }, + [6]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + } }, - microtransactionsocialframevariations={ + sanctumdeferredrewarddisplaycategories={ }, - minimapicons={ + sanctumeffecttriggers={ }, - minioncommands={ + sanctumfloors={ [1]={ list=false, - name="GrantedEfffect", - refTo="GrantedEffects", - type="Key", - width=210 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="Buff", - refTo="BuffDefinitions", + name="Area", + refTo="WorldAreas", type="Key", width=150 }, [3]={ list=false, - name="", - refTo="", + name="Title", + refTo="ClientStrings", type="Key", width=150 }, [4]={ list=false, - name="Effect", - refTo="misceffectpacks", + name="RoomIcon", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="BossIcon", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Summary", + refTo="ClientStrings", type="Key", - width=280 + width=150 + }, + [8]={ + list=false, + name="Itemised", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [9]={ + list=false, + name="MinLevel", + refTo="", + type="Int", + width=150 } }, - miniongemlevelscaling={ + sanctumfodderlifescalingperlevel={ [1]={ list=false, - name="GemLevel", + name="Level", refTo="", type="Int", width=150 }, [2]={ list=false, - name="MinionLevel", + name="MoreLife", refTo="", type="Int", width=150 } }, - minionstats={ + sanctumimmediateeffecttype={ + }, + sanctumlifescalingperlevel={ [1]={ list=false, - name="MinionStat", - refTo="Stats", - type="Key", - width=300 + name="Level", + refTo="", + type="Int", + width=150 }, [2]={ - list=true, - name="PlayerStat", - refTo="Stats", - type="Key", - width=300 + list=false, + name="MoreLife", + refTo="", + type="Int", + width=150 + } + }, + sanctumpersistenteffectcategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Frame", + refTo="", + type="String", + width=240 }, [3]={ - list=true, - name="MinionType", - refTo="MinionType", - type="Key", - width=200 + list=false, + name="Popup", + refTo="", + type="String", + width=240 }, [4]={ - list=true, - name="MinionType2", - refTo="MinionType", - type="Key", - width=200 + list=false, + name="Glow", + refTo="", + type="String", + width=240 }, [5]={ list=false, - name="", + name="Curse", refTo="", type="Bool", width=150 }, [6]={ list=false, - name="CompanionStat", + name="Boon", + refTo="", + type="Bool", + width=150 + }, + [7]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [9]={ + list=false, + name="Deferral", refTo="", type="Bool", width=150 } }, - miniontype={ + sanctumpersistenteffectfamily={ + }, + sanctumpersistenteffects={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ - list=false, - name="LimitStat", - refTo="stats", + list=true, + name="Stats", + refTo="Stats", type="Key", - width=420 + width=300 }, [3]={ - list=false, - name="ActiveCountStat", - refTo="stats", - type="Key", - width=310 + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 }, [4]={ list=false, - name="", + name="Name", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [5]={ list=false, - name="", + name="Icon", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [6]={ list=false, name="", refTo="", type="Int", - width=70 + width=150 }, [7]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 }, [8]={ list=false, - name="", - refTo="", - type="Bool", - width=70 + name="EffectCategory", + refTo="SanctumPersistentEffectCategories", + type="Key", + width=150 }, [9]={ list=false, - name="", - refTo="", - type="Bool", - width=70 + name="NextEffect", + refTo="SanctumPersistentEffects", + type="Key", + width=150 }, [10]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [11]={ list=false, - name="", + name="BoonDesc", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [12]={ list=false, - name="", + name="CurseDesc", refTo="", - type="Bool", - width=70 + type="String", + width=240 }, [13]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [14]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [15]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 }, [16]={ - list=false, - name="", - refTo="", - type="Bool", - width=70 + list=true, + name="ConditionalAchievement", + refTo="ConditionalAchievements", + type="Key", + width=300 }, [17]={ - list=false, - name="", - refTo="", - type="Bool", - width=70 + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 }, [18]={ list=false, - name="", - refTo="", - type="Bool", - width=70 + name="FirstEffect", + refTo="SanctumPersistentEffects", + type="Key", + width=150 }, [19]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [20]={ list=false, name="", refTo="", - type="Key", - width=100 + type="Int", + width=150 }, [21]={ list=false, name="", refTo="", type="Bool", - width=70 - } - }, - miniqueststates={ - }, - miscanimated={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 - }, - [2]={ - list=false, - name="AOFile", - refTo="", - type="String", width=150 }, - [3]={ - list=true, - name="PreloadGroup", - refTo="", - type="Key", - width=150 - }, - [4]={ + [22]={ list=false, name="", refTo="", - type="Int", - width=100 + type="Bool", + width=150 }, - [5]={ + [23]={ list=false, - name="", + name="HASH16", refTo="", type="Int", - width=100 - }, - [6]={ - list=false, - name="HASH32", - refTo="", - type="UInt", - width=100 + width=150 } }, - miscanimatedartvariations={ + sanctumrewardobjects={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ - list=true, - name="MiscAnimated", - refTo="MiscAnimated", - type="Key", - width=300 - }, - [3]={ list=false, name="", refTo="", type="Int", width=150 }, - [4]={ + [3]={ list=false, - name="Variant", + name="", refTo="", - type="Int", + type="Bool", width=150 }, - [5]={ + [4]={ list=false, - name="Stat", - refTo="Stats", + name="Description", + refTo="ClientStrings", type="Key", - width=300 + width=150 } }, - miscbeams={ + sanctumrooms={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ list=false, - name="MiscAnimated", - refTo="MiscAnimated", - type="Key", - width=250 + name="ArmFile", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="", - refTo="", - type="Float", + name="RoomType", + refTo="SanctumRoomTypes", + type="Key", width=150 }, [4]={ - list=true, - name="PreloadGroup", - refTo="PreloadGroups", + list=false, + name="Script", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Floor", + refTo="SanctumFloors", type="Key", width=150 }, - [5]={ + [6]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [7]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 } }, - miscbeamsartvariations={ + sanctumroomtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ - list=true, - name="MiscBeams", - refTo="MiscBeams", - type="Key", - width=300 + list=false, + name="", + refTo="", + type="Bool", + width=150 }, [3]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [4]={ list=false, - name="Variant", - refTo="", - type="Int", + name="QuestFlagEnter", + refTo="SessionQuestFlags", + type="Key", width=150 }, [5]={ list=false, - name="Stat", - refTo="Stats", + name="QuestFlagComplete", + refTo="SessionQuestFlags", type="Key", - width=300 - } - }, - misccooldowns={ - }, - misceffectpacks={ - [1]={ + width=150 + }, + [6]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=250 + type="Bool", + width=150 }, - [2]={ + [7]={ list=false, - name="EPKFile", + name="Icon", refTo="", type="String", - width=750 + width=240 }, - [3]={ + [8]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, - [4]={ + [9]={ list=false, - name="", + name="Description", refTo="", - type="Int", - width=80 + type="String", + width=240 }, - [5]={ - list=false, + [10]={ + list=true, name="", refTo="", - type="Int", - width=80 + type="String", + width=300 }, - [6]={ + [11]={ list=true, - name="PreloadGroups", - refTo="PreloadGroups", + name="Rooms", + refTo="SanctumRooms", type="Key", - width=150 + width=300 }, - [7]={ + [12]={ list=false, name="", refTo="", - type="Bool", - width=80 - }, - [8]={ - list=false, - name="PlayerOnly_EPKFile", - refTo="", type="String", - width=600 + width=240 }, - [9]={ + [13]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 } }, - misceffectpacksartvariations={ + sanctumselectiondisplayoverride={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ - list=true, - name="MiscEffectPacks", - refTo="MiscEffectPacks", - type="Key", - width=300 + list=false, + name="Reward", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="Variant", + name="Icon", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="Downside", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="Item", + refTo="BaseItemTypes", + type="Key", + width=150 + } + }, + scarabs={ + [1]={ + list=false, + name="Type", refTo="", type="Int", - width=80 + width=150 + }, + [2]={ + list=false, + name="Tier", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 } }, - miscobjects={ + scarabtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ list=false, - name="EffectVirtualPath", - refTo="", - type="String", - width=250 + name="Tag", + refTo="Tags", + type="Key", + width=150 }, [3]={ - list=true, - name="PreloadGroups", - refTo="PreloadGroups", + list=false, + name="DisableDrops", + refTo="Stats", type="Key", width=150 }, [4]={ - list=false, - name="", - refTo="", - type="UInt", + list=false, + name="MoreLikely", + refTo="Stats", + type="Key", width=150 }, [5]={ list=false, - name="", - refTo="", - type="Int", + name="Count", + refTo="Stats", + type="Key", width=150 }, [6]={ list=false, name="", refTo="", - type="UInt", + type="Key", width=150 } }, - miscobjectsartvariations={ + scoutingreports={ [1]={ list=false, name="Id", refTo="", type="String", - width=250 + width=240 }, [2]={ - list=true, - name="Object", - refTo="MiscObjects", + list=false, + name="BaseItemType", + refTo="BaseItemTypes", type="Key", width=150 }, [3]={ list=false, - name="", + name="MinMapTier", refTo="", type="Int", - width=80 + width=150 + } + }, + sentinelcraftingcurrency={ + [1]={ + list=false, + name="Currency", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [4]={ + [2]={ list=false, - name="", + name="Type", refTo="", type="Int", - width=80 - }, - [5]={ - list=false, - name="Stat", - refTo="Stats", - type="Key", - width=300 + width=150 } }, - miscparticles={ + sentineldroneinventorylayout={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=250 + name="DroneType", + refTo="DroneTypes", + type="Key", + width=150 }, [2]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, [3]={ @@ -10428,52 +53390,36 @@ return { name="", refTo="", type="Int", - width=80 + width=150 }, [4]={ - list=true, - name="", - refTo="", - type="Key", - width=150 - } - }, - miscparticlesartvariations={ - [1]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=200 - }, - [2]={ - list=true, - name="MiscParticles", - refTo="MiscParticles", - type="Key", + type="Int", width=150 }, - [3]={ + [5]={ list=false, - name="Variant", + name="", refTo="", type="Int", - width=80 + width=150 } }, - miscprojectilemod={ + sentinelpassives={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="", + name="HASH16", refTo="", - type="String", + type="Int", width=150 }, [3]={ @@ -10481,1096 +53427,953 @@ return { name="", refTo="", type="String", - width=80 + width=240 }, [4]={ - list=false, - name="", - refTo="", - type="String", + list=true, + name="Stats", + refTo="SentinelPassiveStats", + type="Key", width=300 }, [5]={ - list=false, + list=true, name="", refTo="", - type="Key", - width=200 + type="Int", + width=300 }, [6]={ list=false, name="", refTo="", - type="Key", - width=80 + type="Int", + width=150 }, [7]={ list=false, name="", refTo="", - type="String", - width=80 - } - }, - miscprojectilemodartvariations={ - [1]={ + type="Int", + width=150 + }, + [8]={ list=false, - name="Id", - refTo="", - type="String", + name="PassiveType", + refTo="SentinelPassiveTypes", + type="Key", width=150 }, - [2]={ + [9]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [3]={ + [10]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [4]={ + [11]={ list=false, name="", refTo="", - type="Key", - width=150 - }, - [5]={ - list=true, - name="MiscProjectileMod", - refTo="MiscProjectileMod", - type="Key", + type="Int", width=150 } }, - missionfavourperlevel={ - }, - missiontilemap={ - }, - missiontimertypes={ - }, - missiontransitiontiles={ - }, - mobileactoneatlasquestprogression={ - }, - mobileascendancythresholds={ - }, - mobileatlaseldermemories={ - }, - mobileatlasinventorylayout={ - }, - mobilecharactercreation={ - }, - mobilequestaudio={ - }, - mobileskillgemlayout={ - }, - mobileskillgemlayoutpages={ - }, - mobiletutorial={ - }, - mobiletutorialgroup={ - }, - moddomains={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=220 - } - }, - modeffectstats={ + sentinelpassivestats={ [1]={ list=false, - name="Stats", + name="", refTo="Stats", type="Key", - width=400 + width=150 }, [2]={ - list=true, - name="Tags", - refTo="Tags", - type="Key", - width=220 - }, - [3]={ list=false, name="", - refTo="", - type="Bool", - width=80 + refTo="Stats", + type="Key", + width=150 }, - [4]={ + [3]={ list=false, name="", refTo="", type="Int", - width=80 - }, - [5]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 - }, - [6]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 - }, - [7]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 + width=150 } }, - modequivalencies={ + sentinelpassivetypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="ModsKey0", - refTo="Mods", - type="Key", - width=350 + name="DefaultIcon", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="ModsKey1", - refTo="Mods", - type="Key", - width=350 + name="ActiveIcon", + refTo="", + type="String", + width=240 }, [4]={ list=false, - name="ModsKey2", - refTo="Mods", + name="", + refTo="", type="Key", - width=350 + width=150 }, [5]={ list=false, name="", refTo="", - type="Bool", - width=50 - } - }, - modfamily={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 + type="Int", + width=150 } }, - modgenerationtypes={ + sentinelpowerexplevels={ [1]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 - } - }, - modgrantedskills={ - [1]={ - list=false, - name="Mod", - refTo="Mods", - type="Key", - width=300 }, [2]={ list=false, - name="Skill Gem", - refTo="skillgems", - type="Key", - width=400 + name="", + refTo="", + type="Int", + width=150 } }, - mods={ + sentinelstoragelayout={ [1]={ list=false, name="Id", refTo="", type="String", - width=450 + width=240 }, [2]={ list=false, - name="Hash", - refTo="", - type="UInt16", - width=60 + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 }, [3]={ list=false, - name="Type", - refTo="ModType", + name="", + refTo="", type="Key", - width=280 + width=150 }, [4]={ list=false, - name="Level", + name="", refTo="", - type="Int", - width=60 + type="Bool", + width=150 }, [5]={ list=false, - name="Stat1", - refTo="Stats", - type="Key", - width=400 + name="TabIcon", + refTo="", + type="String", + width=240 }, [6]={ list=false, - name="Stat2", - refTo="Stats", - type="Key", - width=200 + name="XOffset", + refTo="", + type="Int", + width=150 }, [7]={ list=false, - name="Stat3", - refTo="Stats", - type="Key", - width=200 + name="YOffset", + refTo="", + type="Int", + width=150 }, [8]={ list=false, - name="Stat4", - refTo="Stats", - type="Key", - width=200 + name="", + refTo="", + type="Int", + width=150 }, [9]={ list=false, - name="Domain", - refTo="modDomains", - type="Enum", - width=140 + name="", + refTo="", + type="Int", + width=150 }, [10]={ list=false, - name="Name", + name="Width", refTo="", - type="String", - width=350 + type="Int", + width=150 }, [11]={ list=false, - name="GenerationType", - refTo="modGenerationTypes", - type="Enum", - width=120 + name="Height", + refTo="", + type="Int", + width=150 }, [12]={ - list=true, - name="Family", - refTo="ModFamily", - type="Key", - width=300 - }, - [13]={ list=false, - name="Stat1Value", + name="SlotSize", refTo="", - type="Interval", - width=70 + type="Int", + width=150 }, - [14]={ + [13]={ list=false, - name="Stat2Value", - refTo="", - type="Interval", - width=70 - }, - [15]={ + name="", + refTo="ItemClasses", + type="Key", + width=150 + } + }, + sentineltaggedmonsterstats={ + [1]={ list=false, - name="Stat3Value", - refTo="", - type="Interval", - width=70 + name="TaggedStat", + refTo="Stats", + type="Key", + width=150 }, - [16]={ + [2]={ list=false, - name="Stat4Value", - refTo="", - type="Interval", - width=70 - }, - [17]={ - list=true, - name="SpawnTags", - refTo="Tags", + name="", + refTo="Stats", type="Key", width=150 }, - [18]={ + [3]={ list=true, - name="SpawnWeights", - refTo="Tags", - type="Int", - width=150 + name="BuffTemplate", + refTo="BuffTemplates", + type="Key", + width=300 }, - [19]={ - list=true, - name="Tags", - refTo="Tags", + [4]={ + list=false, + name="RewardType1", + refTo="GenericLeagueRewardTypes", type="Key", width=150 }, - [20]={ - list=true, - name="GrantedEffect", - refTo="GrantedEffectsPerLevel", + [5]={ + list=false, + name="RewardType2", + refTo="GenericLeagueRewardTypes", type="Key", width=150 - }, - [21]={ - list=true, - name="AuraFlags", - refTo="ModAuraFlags", - type="Enum", - width=80 - }, - [22]={ + } + }, + sessionquestflags={ + [1]={ list=false, - name="Daemon", + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 + } + }, + shaperguardians={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=150 + width=240 }, - [23]={ - list=true, - name="MonsterKillAchievements", - refTo="AchievementItems", + [2]={ + list=false, + name="WorldArea", + refTo="WorldAreas", type="Key", width=150 - }, - [24]={ - list=true, - name="ArchnemesisType", - refTo="ModType", + } + }, + shapermemoryfragments={ + }, + shaperorbs={ + }, + shapeshiftartvariations={ + [1]={ + list=false, + name="Id", + refTo="ShapeShiftForms", type="Key", - width=240 + width=150 }, - [25]={ + [2]={ list=false, - name="Stat5Value", + name="VariationId", refTo="", - type="Interval", - width=60 + type="Int", + width=150 }, - [26]={ + [3]={ list=false, - name="Stat5", - refTo="Stats", + name="VisualIdentity", + refTo="ShapeShiftVisualIdentity", type="Key", width=150 }, - [27]={ - list=true, - name="FullClear", - refTo="AchievementItems", - type="Key", - width=100 - }, - [28]={ - list=true, - name="AchievementItemsKey", - refTo="AchievementItems", - type="Key", - width=130 - }, - [29]={ - list=true, - name="GenerationWeightTags", - refTo="Tags", - type="Key", - width=130 - }, - [30]={ - list=true, - name="GenerationWeightValues", - refTo="Tags", - type="Int", - width=130 + [4]={ + list=false, + name="EffectSource", + refTo="MiscEffectPacks", + type="Key", + width=150 }, - [31]={ - list=true, - name="ModifyMapsAchievements", - refTo="AchievementItems", + [5]={ + list=false, + name="EffectDestination", + refTo="MiscEffectPacks", type="Key", width=150 }, - [32]={ + [6]={ list=false, - name="Stat6Value", - refTo="", - type="Interval", - width=130 + name="EffectParticles", + refTo="MiscEffectPacks", + type="Key", + width=150 }, - [33]={ + [7]={ list=false, - name="Stat6", - refTo="Stats", + name="EffectFadeIn", + refTo="MiscEffectPacks", type="Key", width=150 }, - [34]={ + [8]={ list=false, - name="MaxLevel", - refTo="", - type="Int", - width=50 + name="EffectPersistent", + refTo="MiscEffectPacks", + type="Key", + width=150 }, - [35]={ + [9]={ list=false, name="", refTo="", type="Bool", - width=40 - }, - [36]={ - list=true, - name="CraftingClassRestrictions", - refTo="ItemClasses", - type="Key", width=150 - }, - [37]={ + } + }, + shapeshiftbonemappings={ + [1]={ list=false, - name="MonsterOnDeath", + name="Id", refTo="", type="String", - width=100 + width=240 }, - [38]={ - list=false, + [2]={ + list=true, name="", refTo="", - type="Int", - width=200 + type="String", + width=300 }, - [39]={ + [3]={ list=true, - name="HeistAchievements", - refTo="AchievementItems", - type="Key", - width=230 + name="", + refTo="", + type="String", + width=300 }, - [40]={ + [4]={ + list=true, + name="", + refTo="", + type="String", + width=300 + } + }, + shapeshiftbonesizes={ + [1]={ list=false, - name="Heist_SubStatValue1", - refTo="Heist_SubStatValue1", - type="Int", + name="ShapeShiftForm", + refTo="ShapeShiftForms", + type="Key", width=150 }, - [41]={ + [2]={ list=false, - name="Heist_SubStatValue2", - refTo="GrantedEffectsPerLevel", - type="Int", - width=150 + name="Bone", + refTo="", + type="String", + width=240 }, - [42]={ + [3]={ list=false, - name="Heist_StatsKey0", - refTo="Stats", + name="Size", + refTo="", + type="Float", + width=150 + } + }, + shapeshiftformclones={ + [1]={ + list=false, + name="ShapeShiftForm", + refTo="ShapeShiftForms", type="Key", width=150 }, - [43]={ + [2]={ list=false, - name="Heist_StatsKey1", - refTo="Stats", + name="MonsterImmobile", + refTo="MonsterVarieties", type="Key", width=150 }, - [44]={ + [3]={ list=false, - name="Heist_AddStatValue1", + name="AfterImageEffect", refTo="", - type="Int", + type="String", width=240 }, - [45]={ + [4]={ list=false, - name="Heist_AddStatValue2", + name="PlayerEffect", refTo="", - type="Int", + type="String", + width=240 + } + }, + shapeshiftforms={ + [1]={ + list=false, + name="Name", + refTo="", + type="String", width=150 }, - [46]={ + [2]={ list=false, - name="InfluenceTypes", + name="AnimatedObject", refTo="", - type="Int", - width=150 + type="String", + width=200 }, - [47]={ + [3]={ list=true, - name="ImplicitTags", - refTo="Tags", + name="Stat", + refTo="Stats", type="Key", - width=150 - }, - [48]={ - list=false, - name="", - refTo="", - type="Bool", - width=150 + width=200 }, - [49]={ - list=false, - name="UnknownStat1", + [4]={ + list=true, + name="StatValues", refTo="", - type="Interval", + type="Int", width=150 }, - [50]={ + [5]={ list=false, - name="UnknownStat2", - refTo="", - type="Interval", - width=150 + name="WeaponSound", + refTo="WeaponSoundTypes", + type="Key", + width=100 }, - [51]={ + [6]={ list=false, - name="UnknownStat3", + name="", refTo="", - type="Interval", - width=150 + type="Int", + width=60 }, - [52]={ + [7]={ list=false, - name="UnknownStat4", + name="", refTo="", - type="Interval", - width=150 + type="String", + width=110 }, - [53]={ + [8]={ list=false, - name="UnknownStat5", + name="", refTo="", - type="Interval", + type="Int", width=150 }, - [54]={ + [9]={ list=false, - name="UnknownStat6", + name="", refTo="", - type="Interval", - width=150 + type="Float", + width=80 }, - [55]={ + [10]={ list=false, - name="UnknownStat7", + name="", refTo="", - type="Interval", - width=150 + type="Float", + width=80 }, - [56]={ + [11]={ list=false, - name="UnknownStat8", + name="", refTo="", - type="Interval", - width=150 + type="Float", + width=100 }, - [57]={ + [12]={ list=false, - name="BuffTemplate", - refTo="BuffTemplates", + name="Stat2", + refTo="Stats", type="Key", width=150 }, - [58]={ - list=false, - name="ArchnemesisMinionMod", - refTo="Mods", - type="ShortKey", - width=290 - }, - [59]={ + [13]={ list=false, - name="HASH32", + name="", refTo="", - type="UInt", - width=150 - }, - [60]={ - list=true, - name="BuffTemplate2", - refTo="BuffTemplates", - type="Key", + type="Int", width=150 }, - [61]={ + [14]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=100 }, - [62]={ - list=true, - name="", + [15]={ + list=false, + name="TransformedState", refTo="", - type="Key", - width=90 + type="String", + width=120 }, - [63]={ + [16]={ list=false, - name="NodeType", - refTo="passiveNodeTypes", - type="Enum", - width=70 + name="", + refTo="", + type="Float", + width=110 }, - [64]={ + [17]={ list=false, name="", refTo="", type="Bool", width=50 }, - [65]={ + [18]={ list=false, name="", refTo="", type="Int", - width=40 + width=50 }, - [66]={ - list=true, - name="SpawnWeight", - refTo="", - type="Int", - width=150 - } - }, - modsellpricetypes={ - [1]={ + [19]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=250 - } - }, - modsetnames={ - }, - modsets={ - }, - modtype={ - [1]={ + type="Bool", + width=50 + }, + [20]={ list=false, - name="Id", + name="", refTo="", - type="String", - width=400 + type="Int", + width=50 }, - [2]={ + [21]={ list=true, - name="Stats", + name="Stat3", refTo="Stats", type="Key", - width=510 + width=200 }, - [3]={ - list=true, + [22]={ + list=false, name="", refTo="", - type="Int", - width=320 + type="String", + width=150 }, - [4]={ + [23]={ list=false, name="", refTo="", type="Bool", - width=150 - } - }, - monsteradditionalmonsterdrops={ - }, - monsterarmours={ - }, - monsterbehavior={ - }, - monsterbonuses={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=230 - }, - [2]={ - list=true, - name="Mods", - refTo="Mods", - type="Key", - width=300 + width=50 }, - [3]={ + [24]={ list=false, - name="BuffDefinition", - refTo="buffdefinitions", - type="Key", - width=300 - }, - [4]={ - list=true, - name="BuffValues", + name="", refTo="", - type="Int", - width=150 + type="Bool", + width=50 }, - [5]={ - list=true, - name="Stats", + [25]={ + list=false, + name="ArtVariationStat", refTo="Stats", type="Key", width=150 }, - [6]={ - list=true, - name="StatValues", + [26]={ + list=false, + name="Name", refTo="", - type="Int", + type="String", width=150 } }, - monstercategories={ + shapeshifttransformdata={ [1]={ list=false, - name="Tag", - refTo="Tags", + name="BaseForm", + refTo="ShapeShiftForms", type="Key", width=150 }, [2]={ list=false, - name="Type", - refTo="", - type="String", + name="ShapeShiftTransform", + refTo="ShapeShiftForms", + type="Key", width=150 }, [3]={ list=false, - name="HudImage", - refTo="", - type="String", - width=400 - } - }, - monsterchancetodropitemtemplate={ - }, - monsterconditionaleffectpacks={ - }, - monsterconditions={ - [1]={ - list=false, - name="Id", + name="Pose", refTo="", type="String", - width=200 - }, - [2]={ - list=false, - name="Rarity", - refTo="Rarity", - type="Key", - width=150 - }, - [3]={ - list=false, - name="Stat", - refTo="Stats", - type="Key", - width=400 + width=240 }, [4]={ list=false, - name="NotRarity", - refTo="Rarity", - type="Key", + name="", + refTo="", + type="Float", width=150 }, [5]={ - list=true, - name="NotStat", - refTo="Stats", + list=false, + name="Animation", + refTo="Animation", type="Key", - width=300 + width=150 }, [6]={ list=false, - name="MapBoss", + name="", refTo="", type="Bool", width=150 }, [7]={ list=false, - name="NotMapBoss", + name="", refTo="", type="Bool", width=150 }, [8]={ - list=true, + list=false, name="", refTo="", - type="Key", - width=400 - }, - [9]={ - list=true, - name="", + type="Bool", + width=150 + } + }, + shapeshiftvisualidentity={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=150 + width=240 }, - [10]={ + [2]={ list=false, - name="", + name="AOFile", refTo="", - type="Int", - width=150 + type="String", + width=240 + } + }, + shieldtypes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=350 }, - [11]={ + [2]={ list=false, - name="", + name="Block", refTo="", type="Int", - width=150 + width=80 }, - [12]={ + [3]={ list=false, name="", refTo="", type="Int", width=150 - }, - [13]={ - list=false, - name="HASH32", - refTo="", - type="UInt", - width=150 } }, - monsterdeathachievements={ - }, - monsterdeathconditions={ - }, - monsterencounterskillgroups={ - }, - monsterfleeconditions={ - }, - monstergroupentries={ + shopcategory={ }, - monstergroupnames={ + shopcountry={ }, - monsterheightbrackets={ + shopcurrency={ }, - monsterheights={ + shopforumbadge={ }, - monstermapbossdifficulty={ + shopitemrecommendation={ [1]={ list=false, - name="AreaLevel", + name="Id", refTo="", - type="Int", - width=150 + type="String", + width=240 }, [2]={ - list=false, - name="BossLifePercentIncrease", - refTo="", - type="Int", - width=170 - }, - [3]={ - list=false, - name="BossDamagePercentIncrease", + list=true, + name="", refTo="", - type="Int", - width=170 + type="Key", + width=300 + }, + [3]={ + list=true, + name="Ascendancy", + refTo="Ascendancy", + type="Key", + width=300 }, [4]={ - list=false, - name="Stat1", - refTo="Stats", + list=true, + name="QuestFlag", + refTo="QuestFlags", type="Key", - width=240 + width=300 }, [5]={ - list=false, - name="Stat2", - refTo="Stats", + list=true, + name="", + refTo="", type="Key", - width=270 + width=300 }, [6]={ - list=false, - name="Stat3", - refTo="Stats", + list=true, + name="ItemClass", + refTo="ItemClasses", type="Key", - width=240 + width=300 }, [7]={ - list=false, - name="BossIncItemQuantity", + list=true, + name="", refTo="", type="Int", - width=150 + width=300 }, [8]={ - list=false, - name="Stat4", - refTo="Stats", + list=true, + name="SkillGem", + refTo="SkillGems", type="Key", - width=220 + width=300 }, [9]={ list=false, - name="BossIncItemRarity", + name="Mtx", refTo="", - type="Int", - width=150 + type="String", + width=240 }, [10]={ list=false, - name="Stat5", - refTo="Stats", - type="Key", - width=330 + name="", + refTo="", + type="Bool", + width=150 }, [11]={ list=false, - name="BossAilmentPercentDecrease", + name="", refTo="", - type="Int", + type="Bool", + width=150 + }, + [12]={ + list=false, + name="", + refTo="", + type="Bool", width=150 } }, - monstermapdifficulty={ + shopitemtostashid={ [1]={ list=false, - name="AreaLevel", + name="Id", refTo="", - type="Int", - width=80 + type="String", + width=240 }, [2]={ list=false, - name="LifePercentIncrease", + name="Id2", refTo="", - type="Int", + type="String", + width=240 + }, + [3]={ + list=false, + name="StashId", + refTo="StashId", + type="Enum", width=150 + } + }, + shoppackageplatform={ + }, + shoppaymentpackage={ + }, + shoppaymentpackageitems={ + }, + shoppaymentpackageprice={ + }, + shoppaymentpackageproxy={ + }, + shopregion={ + }, + shoptag={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="DamagePercentIncrease", + name="IsCategory", refTo="", - type="Int", + type="Bool", width=150 }, [4]={ list=false, - name="Stat1", - refTo="Stats", + name="Category", + refTo="ShopTag", type="Key", - width=230 + width=150 }, [5]={ list=false, - name="Stat2", - refTo="Stats", - type="Key", - width=250 + name="", + refTo="", + type="Bool", + width=150 }, [6]={ list=false, - name="Stat3", - refTo="Stats", - type="Key", - width=150 + name="SubFlagArt", + refTo="", + type="String", + width=240 }, [7]={ list=false, - name="Stat3Value", + name="IsGuild", refTo="", - type="Int", + type="Bool", width=150 }, [8]={ list=false, - name="Stat4", - refTo="Stats", + name="Parent", + refTo="ShopTag", type="Key", width=150 }, [9]={ list=false, - name="Stat4Value", + name="CategoryArt", refTo="", - type="Int", - width=150 + type="String", + width=240 } }, - monstermortar={ + shoptoken={ + }, + shrinebuffs={ + }, + shrines={ [1]={ list=false, name="Id", refTo="", - type="Int", + type="String", width=150 }, [2]={ list=false, - name="Projectile", - refTo="Projectiles", - type="Key", - width=370 + name="Timeout", + refTo="", + type="Int", + width=150 }, [3]={ list=false, - name="", + name="Shared", refTo="", - type="Key", + type="Bool", width=150 }, [4]={ list=false, - name="Animation", - refTo="MiscAnimated", + name="PlayerBuff", + refTo="BuffTemplates", type="Key", width=150 }, @@ -11579,189 +54382,171 @@ return { name="", refTo="", type="Int", - width=80 + width=150 }, [6]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [7]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="MonsterBuff", + refTo="BuffTemplates", + type="Key", + width=150 }, [8]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="MonsterVarieties", + refTo="MonsterVarieties", + type="Key", + width=150 }, [9]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="MonsterVarietiesPlayer", + refTo="MonsterVarieties", + type="Key", + width=150 }, [10]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [11]={ list=false, - name="", + name="Duration", refTo="", type="Int", - width=80 + width=150 }, [12]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="ShrineSounds", + refTo="ShrineSounds", + type="Key", + width=150 }, [13]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, [14]={ - list=false, - name="", - refTo="", - type="Int", - width=80 + list=true, + name="Achievement", + refTo="AchievementItems", + type="Key", + width=150 }, [15]={ list=false, - name="", + name="PVPOnly", refTo="", type="Bool", - width=80 + width=150 }, [16]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, [17]={ list=false, - name="BounceAnimation", - refTo="MiscAnimated", - type="Key", + name="LesserShrine", + refTo="", + type="Bool", width=150 }, [18]={ list=false, - name="Bounces", - refTo="", - type="Int", - width=80 + name="Description", + refTo="ClientStrings", + type="Key", + width=150 }, [19]={ list=false, - name="", - refTo="", - type="Float", - width=80 + name="Name", + refTo="ClientStrings", + type="Key", + width=150 }, [20]={ list=false, name="", refTo="", - type="Float", - width=80 + type="Bool", + width=150 }, [21]={ list=false, - name="", - refTo="", - type="Float", - width=80 + name="Mods", + refTo="Mods", + type="Key", + width=70 }, [22]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 - }, - [23]={ - list=false, - name="Animation2", - refTo="MiscAnimated", + list=true, + name="MonsterPacks", + refTo="MonsterPacks", type="Key", - width=150 + width=70 }, - [24]={ + [23]={ list=false, name="", refTo="", - type="String", - width=100 - } - }, - monsterpackcounts={ - }, - monsterpackentries={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=80 + type="Key", + width=70 }, - [2]={ + [24]={ list=false, - name="MonsterPacksKey", - refTo="MonsterPacks", + name="MapSpawnChanceStat", + refTo="Stats", type="Key", - width=240 + width=300 }, - [3]={ + [25]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="MapShrineEffectStat", + refTo="Stats", + type="Key", + width=150 }, - [4]={ + [26]={ list=false, - name="Weight", - refTo="", - type="Int", - width=90 + name="ElementalShrineChanceStat", + refTo="Stats", + type="Key", + width=150 }, - [5]={ - list=false, - name="MonsterVarietiesKey", - refTo="MonsterVarieties", + [27]={ + list=true, + name="EnableStat", + refTo="Stats", type="Key", - width=530 + width=300 }, - [6]={ + [28]={ list=false, - name="", - refTo="", - type="String", + name="BossBuffTemplate", + refTo="BuffTemplates", + type="Key", width=150 } }, - monsterpacks={ + shrinesounds={ [1]={ list=false, name="Id", @@ -11770,276 +54555,238 @@ return { width=240 }, [2]={ - list=true, - name="WorldAreas", - refTo="WorldAreas", - type="Key", - width=150 - }, - [3]={ - list=false, - name="MinCount", - refTo="", - type="Int", - width=90 - }, - [4]={ list=false, - name="MaxCount", + name="StereoSoundFile", refTo="", - type="Int", - width=90 + type="String", + width=240 }, - [5]={ + [3]={ list=false, - name="BossMonsterChance", + name="MonoSoundFile", refTo="", - type="Int", - width=120 - }, - [6]={ + type="String", + width=240 + } + }, + shrinevarieties={ + [1]={ list=false, - name="BossCount", - refTo="", - type="Int", - width=80 - }, - [7]={ - list=true, - name="BossMonsters", - refTo="MonsterVarieties", + name="Tag", + refTo="Tags", type="Key", - width=490 - }, - [8]={ - list=false, - name="", - refTo="", - type="Bool", - width=150 - }, - [9]={ - list=true, - name="", - refTo="", - type="Int", width=150 }, - [10]={ - list=true, - name="Grounds", + [2]={ + list=false, + name="AOFile", refTo="", type="String", - width=150 + width=240 }, - [11]={ - list=true, - name="Tags", - refTo="Tags", + [3]={ + list=false, + name="BuffVisual", + refTo="BuffVisuals", type="Key", width=150 - }, - [12]={ + } + }, + shrinevisualartvariations={ + [1]={ list=false, - name="MinLevel", - refTo="", - type="Int", - width=80 + name="Shrine", + refTo="Shrines", + type="Key", + width=150 }, - [13]={ + [2]={ list=false, - name="MaxLevel", - refTo="", - type="Int", - width=80 - }, - [14]={ - list=true, name="", refTo="", type="Int", width=150 }, - [15]={ + [3]={ list=false, - name="Formation", - refTo="PackFormation", + name="Visual", + refTo="BuffVisuals", type="Key", width=150 - }, - [16]={ - list=false, - name="", - refTo="", - type="Int", - width=80 - }, - [17]={ + } + }, + sigildisplay={ + [1]={ list=false, - name="", - refTo="", - type="Bool", - width=80 - }, - [18]={ - list=true, - name="", + name="Id", refTo="", type="String", - width=150 + width=240 }, - [19]={ + [2]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="Active_StatsKey", + refTo="Stats", + type="Key", + width=150 }, - [20]={ + [3]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="Inactive_StatsKey", + refTo="Stats", + type="Key", + width=150 }, - [21]={ + [4]={ list=false, - name="", + name="DDSFile", refTo="", type="String", - width=150 + width=240 }, - [22]={ + [5]={ list=false, - name="", + name="Inactive_ArtFile", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, - [23]={ + [6]={ list=false, - name="", - refTo="", - type="Bool", - width=80 - }, - [24]={ - list=true, - name="AdditionalMonsters", - refTo="MonsterVarieties", - type="Key", - width=480 - }, - [25]={ - list=true, - name="AdditionalCounts", + name="Active_ArtFile", refTo="", - type="Int", - width=110 + type="String", + width=240 }, - [26]={ + [7]={ list=false, - name="", + name="Frame_ArtFile", refTo="", - type="Bool", - width=50 + type="String", + width=240 } }, - monsterprojectileattack={ + singlegroundlaser={ [1]={ list=false, name="Id", refTo="", type="Int", - width=80 + width=150 }, [2]={ list=false, - name="Projectile", - refTo="Projectiles", + name="MiscBeams", + refTo="MiscBeams", type="Key", - width=390 + width=150 }, [3]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 }, [4]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, [6]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ list=false, name="", refTo="", type="Bool", - width=80 - } - }, - monsterprojectilespell={ - [1]={ + width=150 + }, + [9]={ list=false, - name="Id", + name="", refTo="", type="Int", - width=80 + width=150 }, - [2]={ + [10]={ list=false, - name="Projectile", - refTo="Projectiles", + name="", + refTo="", + type="Int", + width=150 + }, + [11]={ + list=false, + name="MiscBeamsPulse", + refTo="MiscBeams", type="Key", - width=390 + width=150 }, - [3]={ + [12]={ list=false, - name="Animation", - refTo="", + name="MiscAnimatedPulse", + refTo="MiscAnimated", type="Key", width=150 }, - [4]={ + [13]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [5]={ + [14]={ list=false, name="", refTo="", type="Bool", width=150 }, - [6]={ + [15]={ list=false, name="", refTo="", type="Int", width=150 }, - [7]={ + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [18]={ list=false, name="", refTo="", @@ -12047,280 +54794,241 @@ return { width=150 } }, - monsterpushtypes={ - }, - monsterresistances={ + skillartvariations={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=200 }, [2]={ list=true, - name="Fire1", - refTo="", - type="Int", - width=50 + name="AnimatedArt", + refTo="MiscAnimatedArtVariations", + type="Key", + width=150 }, [3]={ list=true, - name="", - refTo="", - type="Int", - width=30 + name="BeamArt", + refTo="MiscBeamsArtVariations", + type="Key", + width=150 }, [4]={ list=true, - name="Fire2", - refTo="", - type="Int", - width=50 + name="EffectPacksArt", + refTo="MiscEffectPacksArtVariations", + type="Key", + width=290 }, [5]={ list=true, - name="", - refTo="", - type="Int", - width=30 + name="ObjectArt", + refTo="MiscObjectsArtVariations", + type="Key", + width=150 }, [6]={ list=true, - name="Fire3", + name="Variant", refTo="", - type="Int", - width=50 + type="String", + width=400 }, [7]={ list=true, - name="", - refTo="", - type="Int", - width=30 + name="BuffVisuals", + refTo="BuffVisualsArtVariations", + type="Key", + width=150 }, [8]={ list=true, - name="Fire4", + name="VariantId?", refTo="", type="Int", width=100 }, [9]={ list=true, - name="", - refTo="", - type="Int", - width=100 + name="ProjectilesArt", + refTo="ProjectilesArtVariations", + type="Key", + width=350 }, [10]={ - list=true, - name="Cold1", - refTo="", - type="Int", - width=50 + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 }, [11]={ list=true, - name="", - refTo="", - type="Int", - width=30 + name="MonsterVarietiesArt", + refTo="MonsterVarietiesArtVariations", + type="Key", + width=150 }, [12]={ list=true, - name="Cold2", - refTo="", - type="Int", - width=50 + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=300 }, [13]={ list=true, - name="", - refTo="", - type="Int", - width=30 + name="GrantedEffect", + refTo="GrantedEffects", + type="Key", + width=150 }, [14]={ list=true, - name="Cold3", + name="Monster", refTo="", - type="Int", - width=50 + type="String", + width=150 }, [15]={ - list=true, + list=false, name="", refTo="", type="Int", - width=30 + width=150 }, [16]={ list=true, - name="Cold4", - refTo="", - type="Int", - width=100 + name="ProjectileModArt", + refTo="MiscProjectileModArtVariations", + type="Key", + width=150 }, [17]={ list=true, - name="", - refTo="", - type="Int", - width=100 + name="ParticleArt", + refTo="MiscParticlesArtVariations", + type="Key", + width=150 }, [18]={ list=true, - name="Lightning1", - refTo="", - type="Int", - width=60 + name="SkillWeaponEffectsArt", + refTo="SkillWeaponEffectsArtVariations", + type="Key", + width=150 }, [19]={ - list=true, - name="", - refTo="", - type="Int", - width=30 - }, - [20]={ - list=true, - name="Lightning2", - refTo="", - type="Int", - width=60 - }, - [21]={ - list=true, - name="", + list=false, + name="ArtVariationStat", + refTo="Stats", + type="Key", + width=150 + } + }, + skillcraftingdata={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=30 + type="String", + width=150 }, - [22]={ - list=true, - name="Lightning3", - refTo="", - type="Int", - width=60 + [2]={ + list=false, + name="Character", + refTo="Characters", + type="Key", + width=150 }, - [23]={ - list=true, - name="", + [3]={ + list=false, + name="ListBackground", refTo="", - type="Int", - width=30 + type="String", + width=240 }, - [24]={ - list=true, - name="Lightning4", + [4]={ + list=false, + name="Icon", refTo="", - type="Int", - width=100 + type="String", + width=240 }, - [25]={ - list=true, - name="", + [5]={ + list=false, + name="ConsoleIcon", refTo="", - type="Int", - width=90 + type="String", + width=240 }, - [26]={ - list=true, - name="Chaos1", + [6]={ + list=false, + name="Name", refTo="", - type="Int", - width=50 - }, - [27]={ - list=true, - name="", + type="String", + width=240 + } + }, + skillevents={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=30 + type="String", + width=190 }, - [28]={ - list=true, - name="Chaos2", - refTo="", - type="Int", - width=50 + [2]={ + list=false, + name="AudioEvent", + refTo="CharacterAudioEvents", + type="Key", + width=150 }, - [29]={ - list=true, - name="", + [3]={ + list=false, + name="HASH32", refTo="", - type="Int", - width=30 - }, - [30]={ - list=true, - name="Chaos3", + type="UInt", + width=150 + } + }, + skillgemgoldpriceperlevel={ + [1]={ + list=false, + name="Level", refTo="", type="Int", - width=50 + width=150 }, - [31]={ - list=true, - name="", + [2]={ + list=false, + name="Price", refTo="", type="Int", - width=30 - }, - [32]={ - list=true, - name="Chaos4", + width=150 + } + }, + skillgemgoldpriceperquality={ + [1]={ + list=false, + name="Quality", refTo="", type="Int", - width=100 + width=150 }, - [33]={ - list=true, - name="", + [2]={ + list=false, + name="Price", refTo="", type="Int", - width=80 + width=150 } }, - monsterscalingbylevel={ - }, - monstersegments={ - }, - monstershapeshift={ - }, - monstersize={ - }, - monsterskillsalivedead={ - }, - monsterskillsattackspell={ - }, - monsterskillsclientinstance={ - }, - monsterskillshull={ - }, - monsterskillsorientation={ - }, - monsterskillsplacement={ - }, - monsterskillsreference={ - }, - monsterskillssequencemode={ - }, - monsterskillsshape={ - }, - monsterskillstargets={ - }, - monsterskillswavedirection={ - }, - monsterspawnergroups={ - }, - monsterspawnergroupsperlevel={ - }, - monsterspawneroverrides={ - }, - monsterstatsfrommapstats={ - }, - monstertypes={ + skillgeminfo={ [1]={ list=false, name="Id", @@ -12330,1207 +55038,1137 @@ return { }, [2]={ list=false, - name="", + name="Description", refTo="", - type="Int", - width=80 + type="String", + width=870 }, [3]={ list=false, - name="IsPlayerMinion", + name="VideoURL1", refTo="", - type="Bool", - width=180 + type="String", + width=430 }, [4]={ list=false, - name="Armour", - refTo="", - type="Int", - width=60 + name="SkillGemsKey", + refTo="SkillGems", + type="Key", + width=150 }, [5]={ list=false, - name="Evasion", + name="VideoURL2", refTo="", - type="Int", - width=60 + type="String", + width=520 }, [6]={ - list=false, - name="EnergyShield", - refTo="", - type="Int", - width=70 + list=true, + name="CharactersKeys", + refTo="Characters", + type="Key", + width=150 }, [7]={ list=false, - name="DamageSpread", + name="", refTo="", type="Int", - width=100 + width=150 }, [8]={ - list=true, - name="Resistances", - refTo="MonsterResistances", - type="Key", - width=280 - }, - [9]={ - list=false, - name="BaseDamageIgnoresAttackSpeed", - refTo="", - type="Bool", - width=200 - }, - [10]={ list=false, - name="TargetingBehaviour", + name="", refTo="", - type="Int", - width=100 + type="String", + width=240 } }, - monstervarieties={ + skillgemlevelupeffects={ [1]={ list=false, name="Id", refTo="", type="String", - width=510 + width=240 + }, + [2]={ + list=false, + name="StrGemAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [3]={ + list=false, + name="DexGemAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ + list=false, + name="IntGemAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [5]={ + list=false, + name="OtherGemAnimation", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + skillgems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=400 }, [2]={ list=false, - name="Type", - refTo="MonsterTypes", - type="Key", - width=260 + name="Str", + refTo="", + type="Int", + width=40 }, [3]={ list=false, - name="MovementSpeed", + name="Dex", refTo="", type="Int", - width=100 + width=40 }, [4]={ list=false, - name="ObjectSize", + name="Int", refTo="", - type="Enum", - width=60 + type="Int", + width=40 }, [5]={ list=false, - name="MinimumAttackRange", - refTo="", - type="Int", - width=110 + name="VaalGem", + refTo="BaseItemTypes", + type="Key", + width=150 }, [6]={ list=false, - name="MaximumAttackRange", + name="IsVaalGem", refTo="", - type="Int", - width=110 + type="Bool", + width=70 }, [7]={ - list=true, - name="Actor", - refTo="", - type="String", - width=360 + list=false, + name="MinionGlobalSkillLevelStat", + refTo="Stats", + type="Key", + width=160 }, [8]={ - list=true, - name="AnimatedObject", + list=false, + name="IsSupport", refTo="", - type="String", - width=390 + type="Bool", + width=70 }, [9]={ list=false, - name="ObjectType", + name="", refTo="", - type="String", - width=370 + type="Int", + width=70 }, [10]={ - list=true, - name="Mods", - refTo="Mods", - type="Key", - width=500 - }, - [11]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=70 + }, + [11]={ + list=false, + name="AwakenedVariant", + refTo="SkillGems", + type="ShortKey", + width=110 }, [12]={ list=false, - name="", - refTo="", - type="String", - width=50 + name="RegularVariant", + refTo="SkillGems", + type="ShortKey", + width=110 }, [13]={ list=false, - name="", + name="GemColour", refTo="", - type="String", - width=50 + type="Int", + width=70 }, [14]={ list=false, - name="ModelSizeMultiplier", + name="MinLevelReq", refTo="", type="Int", - width=120 + width=90 }, [15]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="GemLevelProgression", + refTo="ItemExperienceTypes", + type="Key", + width=140 }, [16]={ - list=false, - name="", - refTo="", - type="Int", - width=50 + list=true, + name="CraftingTypes", + refTo="SkillCraftingData", + type="Key", + width=100 }, [17]={ - list=false, - name="", - refTo="", + list=true, + name="MtxSlotType", + refTo="MicrotransactionSkillGemEffectSlotTypes", type="Key", - width=50 + width=200 }, [18]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=70 }, [19]={ + list=true, + name="GemEffects", + refTo="GemEffects", + type="Key", + width=240 + }, + [20]={ list=false, name="", refTo="", - type="Int", - width=50 - }, - [20]={ - list=true, - name="Tags", - refTo="Tags", - type="Key", - width=150 + type="Bool", + width=70 }, [21]={ list=false, - name="ExperienceMultiplier", + name="TutorialVideo", refTo="", - type="Int", - width=120 + type="String", + width=350 }, [22]={ - list=true, - name="", + list=false, + name="HoverImage", refTo="", - type="Int", - width=50 + type="String", + width=70 }, [23]={ list=false, - name="MinAgroRange", + name="", refTo="", type="Int", width=100 }, [24]={ list=false, - name="MaxAgroRange", + name="Tier", refTo="", type="Int", width=100 }, [25]={ list=false, - name="SpotlightColour1", + name="", refTo="", - type="Int", - width=100 + type="Bool", + width=70 }, [26]={ list=false, - name="SpotlightColour2", + name="", refTo="", type="Int", - width=100 + width=70 }, [27]={ list=false, - name="SpotlightColour3", + name="", refTo="", - type="Int", - width=100 + type="Bool", + width=70 }, [28]={ list=true, - name="GrantedEffects", - refTo="GrantedEffects", + name="SearchTerms", + refTo="SkillGemSearchTerms", type="Key", - width=500 + width=70 }, [29]={ list=false, - name="AIScript", + name="SupportTier", refTo="", - type="String", - width=150 + type="Int", + width=70 }, [30]={ list=true, - name="ModsKeys2", - refTo="Mods", - type="Key", - width=200 - }, - [31]={ - list=false, - name="Stance", - refTo="", - type="String", - width=100 - }, - [32]={ - list=false, - name="", - refTo="", - type="Key", - width=120 - }, - [33]={ - list=false, - name="Name", - refTo="", - type="String", - width=200 - }, - [34]={ - list=false, - name="DamageMultiplier", - refTo="", - type="Int", - width=100 - }, - [35]={ - list=false, - name="LifeMultiplier", - refTo="", - type="Int", - width=100 - }, - [36]={ - list=false, - name="AttackDuration", + name="GroundEffect", refTo="", type="Int", - width=100 - }, - [37]={ - list=true, - name="MainHandItem", - refTo="ItemVisualIdentity", - type="Key", - width=150 + width=220 }, - [38]={ + [31]={ list=true, - name="OffHandItem", - refTo="ItemVisualIdentity", - type="Key", - width=150 - }, - [39]={ - list=false, - name="BackItem", - refTo="ItemVisualIdentity", - type="Key", - width=150 - }, - [40]={ - list=false, - name="MainHandItemClass", - refTo="ItemClasses", - type="Key", - width=150 - }, - [41]={ - list=false, - name="OffHandItemClass", - refTo="ItemClasses", + name="", + refTo="", type="Key", - width=150 + width=80 }, - [42]={ + [32]={ list=false, - name="HelmetItem", - refTo="ItemVisualIdentity", - type="Key", + name="BaseSkillGem", + refTo="SkillGems", + type="ShortKey", width=150 }, - [43]={ + [33]={ list=false, name="", refTo="", - type="Int", - width=50 - }, - [44]={ - list=true, - name="KillSpecificMonsterCount", - refTo="AchievementItems", - type="Key", - width=150 - }, - [45]={ - list=true, - name="SpecialMods", - refTo="Mods", - type="Key", - width=150 - }, - [46]={ - list=true, - name="KillRare", - refTo="AchievementItems", - type="Key", + type="Bool", width=150 }, - [47]={ + [34]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, - [48]={ + [35]={ list=false, name="", refTo="", - type="Int", - width=50 - }, - [49]={ - list=false, - name="", - refTo="AchievementItems", - type="Int", - width=50 - }, - [50]={ - list=false, - name="", - refTo="AchievementItems", - type="Int", - width=50 - }, - [51]={ + type="Bool", + width=150 + } + }, + skillgemsearchterms={ + [1]={ list=false, - name="", - refTo="AchievementItems", - type="Int", - width=50 + name="Id", + refTo="", + type="String", + width=150 }, - [52]={ + [2]={ list=false, - name="", + name="Name", refTo="", - type="Int", - width=50 - }, - [53]={ + type="String", + width=150 + } + }, + skillgemsforuniquestat={ + [1]={ list=false, - name="", + name="Id", refTo="", type="Int", width=50 }, - [54]={ - list=false, - name="Hash", - refTo="", - type="UInt16", - width=50 + [2]={ + list=true, + name="SkillGem", + refTo="SkillGems", + type="Key", + width=300 }, - [55]={ + [3]={ list=false, name="", refTo="", type="Bool", - width=40 + width=150 }, - [56]={ + [4]={ list=false, name="", refTo="", type="String", - width=50 - }, - [57]={ - list=false, - name="AchievementFlashback", - refTo="AchievementItems", - type="Key", width=150 - }, - [58]={ - list=false, - name="MonsterSegments", - refTo="MonsterSegments", - type="Key", - width=120 - }, - [59]={ - list=false, - name="MonsterArmours", - refTo="MonsterArmours", - type="Key", - width=120 - }, - [60]={ + } + }, + skillgemsupports={ + [1]={ list=false, - name="AchievementTalisman", - refTo="AchievementItems", - type="Key", - width=150 - }, - [61]={ - list=true, - name="ModsPart1", - refTo="Mods", - type="Key", - width=150 - }, - [62]={ - list=true, - name="ModsPart2", - refTo="Mods", + name="ActiveGem", + refTo="SkillGems", type="Key", - width=150 + width=350 }, - [63]={ + [2]={ list=true, - name="ModsEndgame", - refTo="Mods", - type="Key", - width=150 - }, - [64]={ - list=false, - name="", - refTo="", + name="SuggestedSupport", + refTo="SkillGems", type="Key", - width=50 - }, - [65]={ - list=false, - name="", - refTo="", - type="Int", - width=50 - }, - [66]={ + width=500 + } + }, + skillminevariations={ + [1]={ list=false, - name="", + name="SkillMinesKey", refTo="", type="Int", - width=50 - }, - [67]={ - list=true, - name="", - refTo="AchievementItems", - type="Key", - width=50 - }, - [68]={ - list=true, - name="MultiPartAchievements", - refTo="MultiPartAchievements", - type="Key", width=150 }, - [69]={ + [2]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [70]={ + [3]={ list=false, - name="SinkAnimation", - refTo="", - type="String", - width=100 - }, - [71]={ + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 + } + }, + skillmorphdisplay={ + [1]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="Skill", + refTo="ActiveSkills", + type="Key", + width=150 }, - [72]={ + [2]={ list=true, - name="", - refTo="MultiPartAchievements", + name="BuffDefinitions", + refTo="BuffDefinitions", type="Key", - width=50 - }, - [73]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 - }, - [74]={ - list=false, - name="NotSummoned", - refTo="", - type="Bool", - width=90 - }, - [75]={ - list=false, - name="NotSpectre", + width=300 + }, + [3]={ + list=true, + name="DDSFiles", refTo="", - type="Bool", - width=80 + type="String", + width=300 }, - [76]={ + [4]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [77]={ + [5]={ + list=true, + name="Overlay", + refTo="", + type="String", + width=300 + }, + [6]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [78]={ - list=false, + [7]={ + list=true, name="", refTo="", type="Float", - width=50 + width=300 }, - [79]={ + [8]={ list=false, - name="SinkEffect", + name="", refTo="", - type="String", - width=100 + type="Bool", + width=150 }, - [80]={ + [9]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [81]={ + [10]={ list=false, - name="MonsterConditionalEffectPack", - refTo="MonsterConditionalEffectPacks", + name="ActiveSkill", + refTo="ActiveSkills", type="Key", width=150 }, - [82]={ + [11]={ list=false, name="", refTo="", type="Bool", - width=50 - }, - [83]={ + width=150 + } + }, + skillmorphdisplayoverlaycondition={ + }, + skillmorphdisplayoverlaystyle={ + }, + skillsurgeeffects={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [84]={ + [2]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="GrantedEffectsKey", + refTo="GrantedEffects", + type="Key", + width=150 }, - [85]={ + [3]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="Stat", + refTo="Stats", + type="Key", + width=150 }, - [86]={ + [4]={ + list=false, + name="SurgeType", + refTo="SurgeTypes", + type="Key", + width=150 + }, + [5]={ list=false, name="", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [87]={ + [6]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Key", + width=150 }, - [88]={ + [7]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [89]={ + [8]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [90]={ + [9]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [91]={ + [10]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [92]={ - list=true, + [11]={ + list=false, name="", refTo="", - type="String", + type="Bool", width=150 }, - [93]={ + [12]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [94]={ + [13]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [95]={ + [14]={ list=false, - name="BossHealthBar", + name="", refTo="", type="Bool", - width=100 + width=150 }, - [96]={ + [15]={ list=false, name="", refTo="", - type="Key", - width=200 + type="Bool", + width=150 }, - [97]={ + [16]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [98]={ + [17]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, - [99]={ - list=false, + [18]={ + list=true, name="", refTo="", - type="Int", - width=50 + type="Key", + width=300 }, - [100]={ + [19]={ list=false, name="", refTo="", + type="Float", + width=150 + } + }, + skilltotemvariations={ + [1]={ + list=false, + name="SkillTotem", + refTo="", type="Int", - width=50 + width=60 }, - [101]={ + [2]={ list=false, - name="", + name="Variation", refTo="", type="Int", - width=50 + width=60 }, - [102]={ + [3]={ list=false, - name="", + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", + width=390 + } + }, + skilltrapvariations={ + [1]={ + list=false, + name="Id", refTo="", type="Int", - width=50 + width=150 }, - [103]={ + [2]={ list=false, - name="", + name="Metadata", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [104]={ + [3]={ list=false, - name="QuestFlag", - refTo="QuestFlags", + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=150 + } + }, + skillweaponeffects={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=190 + }, + [2]={ + list=false, + name="VisualEffect", + refTo="ItemVisualEffect", type="Key", width=150 }, - [105]={ + [3]={ list=false, name="", refTo="", - type="Float", - width=80 + type="Bool", + width=150 }, - [106]={ + [4]={ list=false, name="", refTo="", - type="Float", - width=80 + type="Int", + width=150 }, - [107]={ + [5]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 + } + }, + skillweaponeffectsartvariations={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [108]={ + [2]={ list=true, - name="", - refTo="", + name="WeaponEffect", + refTo="SkillWeaponEffects", type="Key", - width=50 + width=300 }, - [109]={ - list=true, + [3]={ + list=false, name="", - refTo="", + refTo="SkillWeaponEffectsArtVariations", type="Key", width=150 - }, - [110]={ + } + }, + socketablestashtablayout={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [111]={ + [2]={ list=false, - name="PoiseThreshold", + name="StoredItem", + refTo="BaseItemTypes", + type="Key", + width=150 + }, + [3]={ + list=false, + name="XOffset", refTo="", type="Int", - width=100 + width=150 }, - [112]={ + [4]={ list=false, - name="AttackCrit", + name="YOffset", refTo="", - type="Float", + type="Int", width=150 }, - [113]={ + [5]={ list=false, - name="", + name="FirstSlotIndex", refTo="", - type="Key", - width=50 + type="Int", + width=150 }, - [114]={ + [6]={ list=false, - name="", + name="Width", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [115]={ + [7]={ list=false, - name="", + name="Height", refTo="", type="Int", - width=50 + width=150 }, - [116]={ + [8]={ list=false, - name="", + name="ShowIfEmpty", refTo="", type="Bool", - width=50 + width=150 }, - [117]={ + [9]={ list=false, - name="", + name="SlotSize", refTo="", type="Int", - width=50 + width=150 }, - [118]={ + [10]={ list=false, - name="MonsterCategory", - refTo="MonsterCategories", + name="SlotStyle", + refTo="StashTabInventorySlotStyle", type="Key", width=150 }, - [119]={ + [11]={ list=false, - name="", - refTo="", + name="SubGroup", + refTo="SocketableStashTabSubGroup", type="Key", - width=140 + width=150 + } + }, + socketablestashtabsubgroup={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [120]={ + [2]={ list=false, - name="", + name="Name", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [121]={ + [3]={ list=false, - name="", + name="Icon", refTo="", - type="Key", - width=80 + type="String", + width=240 }, - [122]={ + [4]={ list=false, - name="", + name="PageArt", refTo="", - type="Bool", - width=80 + type="String", + width=240 }, - [123]={ - list=true, - name="", + [5]={ + list=false, + name="FirstPage", refTo="", - type="Int", - width=80 + type="Bool", + width=150 } }, - monstervarietiesartvariations={ + socketaudioevents={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=200 + name="SkillGem", + refTo="SkillGems", + type="Key", + width=150 }, [2]={ list=false, - name="Variant", - refTo="", - type="Int", - width=100 - }, - [3]={ - list=true, - name="Monster", - refTo="MonsterVarieties", + name="AudioEvent", + refTo="CharacterAudioEvents", type="Key", - width=550 + width=150 } }, - mousecursorsizesettings={ - }, - movedaemon={ - }, - mtxsetbonus={ - }, - mtxtypegamespecific={ - }, - mtxtypes={ - }, - multipartachievementareas={ - }, - multipartachievementconditions={ - }, - multipartachievements={ + socketnotches={ [1]={ list=false, name="Id", refTo="", type="String", - width=350 + width=150 }, [2]={ list=false, - name="", + name="Description", refTo="", - type="Int", - width=50 + type="String", + width=150 }, [3]={ list=false, - name="Achievement", - refTo="AchievementItems", - type="Key", - width=210 + name="RedSocketImage", + refTo="", + type="String", + width=370 }, [4]={ list=false, - name="Threshold", + name="BlueSocketImage", refTo="", - type="Int", - width=100 + type="String", + width=390 }, [5]={ list=false, - name="", + name="GreenSocketImage", refTo="", - type="Int", - width=60 - }, - [6]={ + type="String", + width=390 + } + }, + soulcorelimits={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", + type="String", width=150 }, - [7]={ + [2]={ list=false, - name="", + name="Limit", refTo="", - type="Bool", + type="Int", width=150 - } - }, - music={ - }, - musiccategories={ - }, - mysteryboxes={ - }, - nearbymonsterconditions={ - [1]={ + }, + [3]={ list=false, - name="", + name="Description", refTo="", type="String", - width=260 - } - }, - nettiers={ - }, - notifications={ - }, - npcadditionalvendoritems={ - }, - npcaudio={ - }, - npcconversations={ - }, - npcdialoguecutscene={ - }, - npcdialoguecutscenesequences={ - }, - npcdialoguestyles={ - }, - npcfollowervariations={ - }, - npcmaster={ - }, - npcmasterlevels={ - }, - npcportraitaooverrides={ - }, - npcportraits={ + width=200 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } }, - npcs={ + soulcores={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=360 + name="BaseItemTypes", + refTo="BaseItemTypes", + type="Key", + width=350 }, [2]={ list=false, - name="Name", + name="LevelReq", refTo="", - type="String", - width=150 + type="Int", + width=100 }, [3]={ list=false, - name="MetaData", - refTo="", - type="String", + name="Limit", + refTo="SoulCoreLimits", + type="Key", width=150 }, [4]={ list=false, - name="", - refTo="", + name="Description", + refTo="ClientStrings2", type="Key", - width=150 + width=340 }, [5]={ list=false, - name="", - refTo="NPCMaster", + name="Type", + refTo="SoulCoreTypes", type="Key", width=150 }, [6]={ list=false, - name="ShortName", - refTo="", - type="String", + name="TierHigher", + refTo="SoulCores", + type="Key", width=150 }, [7]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [8]={ - list=true, - name="NPCAudios1", - refTo="NPCAudio", - type="Key", + list=false, + name="", + refTo="", + type="Bool", width=150 }, [9]={ - list=true, - name="NPCAudios2", - refTo="NPCAudio", - type="Key", + list=false, + name="", + refTo="", + type="Bool", width=150 }, [10]={ list=false, - name="HASH16", + name="", refTo="", - type="UInt16", + type="Bool", width=150 }, [11]={ list=false, - name="Model?", - refTo="npcs", - type="ShortKey", - width=230 + name="ExtraDescription", + refTo="ClientStrings2", + type="Key", + width=150 }, [12]={ list=false, name="", refTo="", + type="Bool", + width=150 + } + }, + soulcoresperclass={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", type="Key", - width=100 + width=300 }, - [13]={ + [2]={ list=false, - name="", - refTo="", + name="ItemClass", + refTo="ItemClasses", type="Key", - width=100 + width=150 }, - [14]={ - list=false, - name="", - refTo="", + [3]={ + list=true, + name="Stats", + refTo="Stats", type="Key", - width=100 + width=800 }, - [15]={ + [4]={ + list=true, + name="StatsValues", + refTo="", + type="Int", + width=150 + } + }, + soulcorestatcategories={ + [1]={ list=false, - name="Gender", + name="Id", refTo="", type="String", width=150 }, - [16]={ + [2]={ + list=true, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [3]={ list=false, - name="", + name="Text", refTo="", - type="Bool", - width=100 + type="String", + width=250 }, - [17]={ + [4]={ list=false, name="", refTo="", - type="String", - width=150 + type="Int", + width=90 + } + }, + soulcorestats={ + [1]={ + list=false, + name="Id", + refTo="SoulCores", + type="Key", + width=350 }, - [18]={ + [2]={ list=false, - name="", + name="Category", + refTo="SoulCoreStatCategories", + type="Key", + width=150 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=500 + }, + [4]={ + list=true, + name="StatValue", refTo="", + type="Int", + width=150 + }, + [5]={ + list=true, + name="BondedStats", + refTo="Stats", type="Key", + width=520 + }, + [6]={ + list=true, + name="BondedValues", + refTo="", + type="Int", width=150 } }, - npcshop={ - }, - npcshopadditionalitems={ - }, - npcshopgamblervisualidentity={ - }, - npcshops={ - }, - npcshopsellpricetype={ - }, - npctalk={ - }, - npctalkcategory={ - }, - npctalkconsolequickactions={ - }, - npctalkmobilegroup={ - }, - npctextaudio={ + soulcoretypes={ [1]={ list=false, name="Id", @@ -13539,58 +56177,48 @@ return { width=150 }, [2]={ - list=true, - name="Characters", - refTo="Characters", + list=false, + name="EffectStat", + refTo="Stats", type="Key", - width=230 + width=200 }, [3]={ list=false, - name="", + name="Name", refTo="", type="String", - width=400 + width=200 }, [4]={ list=false, - name="", - refTo="", - type="Bool", - width=150 + name="CountStat", + refTo="Stats", + type="Key", + width=200 } }, - npctextaudiointerruptrules={ - }, - npctype={ - }, - npcvendordialogue={ - }, - npcvendordialogueconditions={ - }, - oldmapstashtablayout={ - }, - ongoingbuffvariations={ + soundeffects={ [1]={ list=false, - name="ActiveSkill", - refTo="ActiveSkills", - type="Key", - width=250 + name="Id", + refTo="", + type="String", + width=150 }, [2]={ list=false, - name="BuffDefinition", - refTo="BuffDefinitions", - type="Key", - width=210 + name="SoundFile", + refTo="", + type="String", + width=480 }, [3]={ - list=true, - name="Stats1", - refTo="Stats", - type="Key", - width=630 + list=false, + name="SoundFile_2D", + refTo="", + type="String", + width=360 }, [4]={ list=false, @@ -13600,590 +56228,722 @@ return { width=150 }, [5]={ - list=true, - name="Stats2", - refTo="stats", + list=false, + name="", + refTo="", + type="String", + width=150 + } + }, + spawnadditionalchestsorclusters={ + [1]={ + list=false, + name="StatsKey", + refTo="Stats", type="Key", - width=880 + width=150 }, - [6]={ + [2]={ list=false, - name="", - refTo="BuffDefinitions", + name="ChestsKey", + refTo="Chests", type="Key", width=150 }, - [7]={ - list=true, - name="Stats3", - refTo="stats", + [3]={ + list=false, + name="ChestClustersKey", + refTo="ChestClusters", type="Key", - width=360 + width=150 } }, - ongoingtriggervariations={ - }, - onhiteffecttarget={ - }, - onkillachievements={ - }, - orientations={ - }, - packformation={ - }, - pantheonpanellayout={ + spawnobject={ [1]={ list=false, name="Id", refTo="", - type="String", + type="Int", width=150 }, [2]={ - list=false, - name="X", - refTo="", - type="Int", - width=50 + list=true, + name="MiscObjects", + refTo="MiscObjects", + type="Key", + width=300 }, [3]={ - list=false, - name="Y", + list=true, + name="", refTo="", - type="Int", - width=50 + type="Key", + width=300 }, [4]={ list=false, - name="IsMajorGod", + name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [5]={ list=false, - name="CoverImage", + name="", refTo="", - type="String", - width=380 + type="Int", + width=150 }, [6]={ list=false, - name="GodName2", + name="", refTo="", - type="String", - width=220 + type="Int", + width=150 }, [7]={ list=false, - name="SelectionFrame", + name="", refTo="", - type="String", - width=390 + type="Int", + width=150 }, [8]={ - list=true, - name="Effect1StatsKey", - refTo="Stats", - type="Key", - width=650 + list=false, + name="", + refTo="", + type="Int", + width=150 }, [9]={ - list=true, - name="Effect1Values", + list=false, + name="", refTo="", type="Int", width=150 }, [10]={ - list=true, - name="Effect2StatsKey", - refTo="Stats", - type="Key", - width=530 + list=false, + name="", + refTo="", + type="Int", + width=150 }, [11]={ list=false, - name="GodName3", + name="", refTo="", - type="String", - width=170 + type="Int", + width=150 }, [12]={ - list=true, - name="Effect3Values", + list=false, + name="", refTo="", - type="Int", + type="Bool", width=150 }, [13]={ - list=true, - name="Effect3StatsKey", - refTo="Stats", - type="Key", - width=470 + list=false, + name="", + refTo="", + type="String", + width=240 }, [14]={ list=false, - name="GodName4", + name="", refTo="", - type="String", - width=170 + type="Int", + width=150 }, [15]={ - list=true, - name="Effect4StatsKey", - refTo="Stats", - type="Key", - width=370 + list=false, + name="", + refTo="", + type="Bool", + width=150 }, [16]={ - list=true, - name="Effect4Values", + list=false, + name="", refTo="", type="Int", width=150 - }, - [17]={ + } + }, + specialrooms={ + [1]={ list=false, - name="GodName1", + name="Id", refTo="", type="String", - width=150 + width=240 }, - [18]={ - list=true, - name="Effect2Values", + [2]={ + list=false, + name="ARMFile", refTo="", - type="Int", - width=100 - }, - [19]={ + type="String", + width=240 + } + }, + specialtiles={ + [1]={ list=false, - name="QuestFlags", - refTo="QuestFlags", - type="Key", - width=100 + name="Id", + refTo="", + type="String", + width=240 }, - [20]={ + [2]={ list=false, - name="AchievementItems", - refTo="AchievementItems", - type="Key", - width=150 - }, - [21]={ + name="TDTFile", + refTo="", + type="String", + width=240 + } + }, + spectreoverrides={ + [1]={ list=false, - name="QuestState1", - refTo="QuestStates", + name="Monster", + refTo="MonsterVarieties", type="Key", - width=70 + width=500 }, - [22]={ + [2]={ list=false, - name="QuestState2", - refTo="QuestStates", + name="Spectre", + refTo="MonsterVarieties", type="Key", - width=70 - }, - [23]={ - list=false, - name="IsDisabled", - refTo="", - type="Bool", - width=150 + width=500 }, - [24]={ + [3]={ list=true, name="", refTo="", type="Key", - width=100 + width=150 } }, - pantheonsouls={ - }, - passivejewelart={ + stampchoice={ [1]={ list=false, - name="Item", - refTo="BaseItemTypes", - type="Key", - width=300 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="JewelArt", + name="Room", + refTo="LakeRooms", + type="Key", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="Effect", refTo="", type="String", - width=550 + width=240 }, - [3]={ + [5]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="StampFamily", + refTo="StampFamily", + type="Key", + width=150 + }, + [7]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 + }, + [8]={ list=false, - name="JewelBlueArt", + name="HASH16", + refTo="", + type="UInt", + width=150 + } + }, + stampfamily={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=480 + width=240 }, - [4]={ + [2]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 } }, - passivejewelnodemodifyingstats={ + standalonebosses={ [1]={ list=false, - name="Stat", - refTo="Stats", + name="Monster", + refTo="MonsterVarieties", type="Key", - width=500 + width=150 }, [2]={ list=false, - name="ReplaceStat", - refTo="Stats", - type="Key", - width=250 + name="", + refTo="", + type="Int", + width=150 }, [3]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, [4]={ + list=true, + name="InvisibleMonster", + refTo="MonsterVarieties", + type="Key", + width=300 + }, + [5]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + standaloneoverride={ + [1]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Key", + width=150 }, - [5]={ + [2]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Key", + width=150 }, - [6]={ + [3]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 } }, - passivejewelradii={ + startingpassiveskills={ [1]={ list=false, - name="Name", + name="Id", refTo="", type="String", - width=100 + width=150 }, [2]={ + list=true, + name="PassiveSkills", + refTo="PassiveSkills", + type="Key", + width=300 + } + }, + stashavailabilities={ + [1]={ list=false, - name="RingOuter", + name="Id", refTo="", type="Int", - width=100 + width=150 }, - [3]={ + [2]={ list=false, - name="RingInner", + name="", refTo="", type="Int", - width=100 + width=150 }, - [4]={ + [3]={ list=false, - name="Radius", + name="Message", refTo="", - type="Int", - width=100 + type="String", + width=240 } }, - passivejewelradiiart={ + stashid={ + }, + stashtabaffinities={ [1]={ list=false, - name="Id", - refTo="", - type="String", + name="StashTabAffinityId", + refTo="StashTabAffinityId", + type="Key", width=150 }, [2]={ list=false, - name="Cirlce1", + name="Name", refTo="", type="String", - width=150 + width=240 }, [3]={ - list=false, - name="Cirlce2", - refTo="", - type="String", - width=110 + list=true, + name="ShowInStashes", + refTo="StashId", + type="Enum", + width=300 }, [4]={ list=false, - name="Glow", + name="", refTo="", - type="String", - width=200 + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", + type="Int", + width=150 + } + }, + stashtabaffinitybybaseitemtype={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", type="Key", - width=40 + width=150 }, - [6]={ + [2]={ + list=true, + name="StashTabAffinityId", + refTo="StashTabAffinityId", + type="Key", + width=300 + } + }, + stashtabaffinitybyitemclasscategory={ + [1]={ + list=false, + name="ItemClassCategory", + refTo="ItemClassCategories", + type="Key", + width=150 + }, + [2]={ list=false, - name="Inverse", + name="StashTabAffinityId", + refTo="StashTabAffinityId", + type="Key", + width=150 + } + }, + stashtabaffinityid={ + [1]={ + list=false, + name="Id", refTo="", type="String", - width=460 + width=240 + } + }, + stashtabinventoryslotstyle={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [7]={ + [2]={ + list=false, + name="BackgroundArt", + refTo="", + type="String", + width=240 + }, + [3]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [8]={ + [4]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [9]={ + [5]={ list=false, - name="Inverse2", + name="", refTo="", - type="String", - width=510 + type="Int", + width=150 }, - [10]={ + [6]={ list=false, - name="Inverse2Offset?", + name="", refTo="", type="Int", width=150 }, - [11]={ + [7]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [12]={ + [8]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 } }, - passivejewelslots={ + stashtype={ [1]={ list=false, - name="Passive", - refTo="PassiveSkills", - type="Key", - width=180 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="ClusterSize", - refTo="PassiveTreeExpansionJewelSizes", - type="Key", - width=80 + name="StashId", + refTo="StashId", + type="Enum", + width=150 }, [3]={ list=false, - name="ClusterIndex", + name="Id2", refTo="", - type="Int", - width=80 + type="String", + width=240 }, [4]={ list=false, - name="Parent", - refTo="PassiveJewelSlots", - type="Enum", - width=170 + name="", + refTo="", + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", - type="Enum", + type="Int", width=150 }, [6]={ list=false, - name="Proxy", - refTo="PassiveSkills", - type="Key", - width=210 - }, - [7]={ - list=true, - name="StartIndices", + name="", refTo="", type="Int", width=150 }, + [7]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, [8]={ list=false, - name="UIArtOverride", + name="ConsoleIcon", refTo="", + type="String", + width=240 + } + }, + statconvertaltattackcontainer={ + [1]={ + list=false, + name="AltStat", + refTo="Stats", type="Key", - width=200 + width=150 + }, + [2]={ + list=false, + name="NormalStat", + refTo="Stats", + type="Key", + width=150 + }, + [3]={ + list=true, + name="ExtraStat", + refTo="Stats", + type="Key", + width=300 } }, - passivejeweluniqueart={ + statdescriptionfunctions={ [1]={ list=false, - name="Id", + name="Name", refTo="", - type="Int", - width=50 + type="String", + width=280 }, [2]={ list=false, - name="WordsKey", - refTo="Words", + name="Stat", + refTo="", + type="String", + width=310 + } + }, + statistictrackingmapdevicelabels={ + [1]={ + list=false, + name="MapDevice", + refTo="StatisticTrackingMapDevices", type="Key", - width=100 + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 }, [3]={ list=false, name="", refTo="", - type="Key", - width=20 + type="Int", + width=150 }, [4]={ list=false, - name="JewelArt", + name="", refTo="", - type="String", - width=560 + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", - type="Key", - width=20 + type="Int", + width=150 }, [6]={ list=false, - name="KeystoneArt", + name="", refTo="", - type="String", - width=400 + type="Int", + width=150 } }, - passivekeystonelist={ + statistictrackingmapdevices={ [1]={ list=false, - name="Id", - refTo="PassiveSkills", + name="Doodad", + refTo="HideoutDoodads", type="Key", - width=300 + width=150 }, [2]={ list=false, - name="Name", - refTo="", - type="String", - width=300 - } - }, - passivenodetypes={ - [1]={ - list=false, - name="Id", + name="", refTo="", type="String", - width=150 - } - }, - passiveoverridelimits={ - [1]={ + width=240 + }, + [3]={ list=false, - name="Id", + name="IconDefault", refTo="", type="String", - width=150 + width=240 }, - [2]={ + [4]={ list=false, - name="Description", + name="IconHover", refTo="", type="String", - width=200 - } - }, - passiveskillbuffs={ - [1]={ + width=240 + }, + [5]={ list=false, - name="Id", + name="IconGlow", refTo="", type="String", - width=350 + width=240 }, - [2]={ - list=true, + [6]={ + list=false, name="", refTo="", - type="Float", + type="Int", width=150 }, - [3]={ - list=false, - name="Buff", - refTo="BuffDefinitions", - type="Key", - width=350 - }, - [4]={ + [7]={ list=false, name="", refTo="", type="Int", width=150 - } - }, - passiveskillfiltercatagories={ - }, - passiveskillfilteroptions={ - [1]={ + }, + [8]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [2]={ + [9]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [3]={ + [10]={ list=false, name="", refTo="", @@ -14191,70 +56951,58 @@ return { width=150 } }, - passiveskillmasteryeffects={ + statistictrackingmicrotransactioncountertype={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Hash", + name="", refTo="", - type="UInt16", - width=80 + type="String", + width=240 }, [3]={ - list=true, - name="Stats", - refTo="Stats", - type="Key", - width=450 - }, - [4]={ list=false, - name="Stat1", + name="Name", refTo="", - type="Int", - width=80 - }, - [5]={ + type="String", + width=240 + } + }, + statistictrackingmicrotransactiononenteringarea={ + [1]={ list=false, - name="Stat2", + name="", refTo="", - type="Int", - width=80 + type="Key", + width=150 }, - [6]={ + [2]={ list=false, - name="Stat3", + name="", refTo="", type="Int", - width=80 - }, - [7]={ - list=false, - name="AchievementItem", - refTo="AchievementItems", - type="Key", width=150 } }, - passiveskillmasterygroups={ + statistictrackingmicrotransactions={ [1]={ list=false, - name="Id", - refTo="", - type="String", + name="MtxTypeGameSpecific", + refTo="MtxTypeGameSpecific", + type="Key", width=150 }, [2]={ - list=true, - name="MasteryEffects", - refTo="PassiveSkillMasteryEffects", - type="Key", + list=false, + name="", + refTo="", + type="Bool", width=150 }, [3]={ @@ -14262,597 +57010,746 @@ return { name="", refTo="", type="Bool", - width=50 + width=150 }, [4]={ list=false, - name="SoundEffect", - refTo="SoundEffects", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, [5]={ list=false, - name="MasteryCount", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [6]={ list=false, - name="MasteryArt", - refTo="PassiveSkillTreeMasteryArt", - type="Key", + name="", + refTo="", + type="Bool", width=150 } }, - passiveskilloverrides={ + statistictrackingmicrotransactionsonkill={ [1]={ list=false, - name="Id", + name="", refTo="", - type="String", + type="Key", width=150 }, [2]={ list=false, - name="Name", + name="", refTo="", - type="String", - width=220 + type="Int", + width=150 + } + }, + statistictrackingmicrotransactionsstatistics={ + [1]={ + list=false, + name="StatisticTrackingMtx", + refTo="StatisticTrackingMicrotransactions", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 }, [3]={ list=false, - name="Icon", + name="", refTo="", - type="String", - width=330 + type="Int", + width=150 }, [4]={ - list=true, - name="StatsKeys", - refTo="Stats", + list=false, + name="VisualIdentity", + refTo="ItemVisualIdentity", type="Key", - width=580 + width=150 }, [5]={ - list=true, - name="StatValues", + list=false, + name="", refTo="", - type="Int", - width=100 + type="Bool", + width=150 }, [6]={ list=false, - name="Hash", + name="Icon", refTo="", - type="Int", - width=100 + type="String", + width=240 }, [7]={ list=false, - name="Background", + name="", refTo="", - type="String", - width=530 + type="Bool", + width=150 }, [8]={ list=false, - name="GrantedEffect", - refTo="GrantedEffectsPerLevel", + name="Description", + refTo="ClientStrings2", type="Key", - width=250 + width=150 }, [9]={ list=false, - name="TattooType", - refTo="passiveskilloverridetypes", + name="CounterType", + refTo="StatisticTrackingMicrotransactionCounterType", type="Key", width=150 }, [10]={ list=false, - name="Limit", - refTo="passiveoverridelimits", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [11]={ list=false, - name="MinimumConnected", + name="", refTo="", type="Int", width=150 }, [12]={ list=false, - name="MaximumConnected", + name="", refTo="", - type="Int", - width=150 - }, - [13]={ - list=false, - name="PassiveSkill", - refTo="PassiveSkills", - type="Key", + type="Bool", width=150 } }, - passiveskilloverridetypes={ + stats={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=310 }, [2]={ - list=false, - name="Stat", - refTo="Stats", - type="Key", - width=150 - }, - [3]={ list=false, name="", refTo="", type="Bool", - width=150 - } - }, - passiveskills={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=350 + width=50 }, - [2]={ + [3]={ list=false, - name="Icon", + name="Local", refTo="", - type="String", - width=330 - }, - [3]={ - list=true, - name="Stats", - refTo="Stats", - type="Key", - width=780 + type="Bool", + width=50 }, [4]={ list=false, - name="Stat1", + name="WeaponLocal", refTo="", - type="Int", - width=50 + type="Bool", + width=80 }, [5]={ list=false, - name="Stat2", - refTo="", - type="Int", - width=50 + name="Semantic", + refTo="StatSemantics", + type="Enum", + width=70 }, [6]={ list=false, - name="Stat3", + name="", refTo="", - type="Int", + type="Bool", width=50 }, [7]={ list=false, - name="Stat4", + name="Virtual", refTo="", - type="Int", + type="Bool", width=50 }, [8]={ list=false, - name="PassiveSkillNodeId", - refTo="", - type="UInt16", - width=100 + name="Main Hand Stat", + refTo="Stats", + type="ShortKey", + width=350 }, [9]={ list=false, - name="Name", - refTo="", - type="String", - width=150 + name="Off Hand Stat", + refTo="Stats", + type="ShortKey", + width=350 }, [10]={ - list=true, - name="ClassStart", - refTo="Characters", - type="Key", - width=530 + list=false, + name="", + refTo="", + type="Bool", + width=50 }, [11]={ list=false, - name="Keystone", + name="Hash", refTo="", - type="Bool", - width=60 + type="UInt", + width=80 }, [12]={ - list=false, - name="Notable", + list=true, + name="Skills", refTo="", - type="Bool", - width=60 + type="String", + width=150 }, [13]={ list=false, - name="FlavourText", - refTo="", - type="String", - width=300 + name="PassiveCategory", + refTo="PassiveSkillStatCategories", + type="Key", + width=110 }, [14]={ list=false, - name="IsOnlyImage", + name="CannotGrantToMinion", refTo="", type="Bool", - width=60 + width=120 }, [15]={ list=false, - name="Achievement", - refTo="AchievementItems", - type="Key", - width=150 + name="", + refTo="", + type="Bool", + width=50 }, [16]={ list=false, - name="JewelSocket", + name="IsScalable", refTo="", type="Bool", width=70 }, [17]={ - list=false, - name="Ascendancy", - refTo="Ascendancy", + list=true, + name="ContextFlags", + refTo="VirtualStatContextFlags", type="Key", - width=90 + width=270 }, [18]={ + list=true, + name="DotFlag", + refTo="VirtualStatContextFlags", + type="Key", + width=150 + }, + [19]={ list=false, - name="AscendancyStart", + name="WeaponHandCheck", refTo="", type="Bool", - width=100 - }, - [19]={ - list=true, - name="ReminderTexts", - refTo="ReminderText", - type="Key", width=150 + } + }, + statsaffectinggeneration={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=440 }, - [20]={ + [2]={ list=false, - name="PassivePointsGranted", + name="StatValue", refTo="", type="Int", - width=120 + width=150 }, - [21]={ + [3]={ list=false, - name="MultipleChoice", + name="", refTo="", type="Bool", - width=80 + width=150 + } + }, + statsets={ + }, + statsfromskillstats={ + [1]={ + list=false, + name="SkillCondition", + refTo="Stats", + type="Key", + width=280 }, - [22]={ + [2]={ list=false, - name="MultipleChoiceOption", - refTo="", - type="Bool", - width=110 + name="GrantedFlag", + refTo="Stats", + type="Key", + width=270 }, - [23]={ + [3]={ list=false, - name="Stat5", + name="FlagValue", refTo="", - type="Int", - width=50 + type="Bool", + width=150 + } + }, + statvisuals={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 }, - [24]={ + [2]={ list=true, - name="PassiveSkillBuffs", - refTo="BuffTemplates", + name="EPKFiles", + refTo="", + type="String", + width=300 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + } + }, + strdexintmissionextrarequirement={ + }, + strdexintmissions={ + }, + strongboxes={ + [1]={ + list=false, + name="ChestsKey", + refTo="Chests", type="Key", width=150 }, - [25]={ + [2]={ list=false, - name="AnointOnly", + name="SpawnWeight", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [26]={ + [3]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [27]={ + [4]={ list=false, - name="ClusterNode", + name="", refTo="", type="Bool", - width=70 + width=150 }, - [28]={ + [5]={ list=false, - name="Proxy", + name="", refTo="", type="Bool", - width=60 + width=150 }, - [29]={ - enumBase=1, + [6]={ list=false, - name="Type", - refTo="PassiveSkillTypes", - type="Enum", - width=80 + name="SpawnWeightIncrease", + refTo="Stats", + type="Key", + width=150 }, - [30]={ + [7]={ list=false, - name="MasteryGroup", - refTo="PassiveSkillMasteryGroups", + name="SpawnWeightHardmode", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="BasicSpawnChanceStat", + refTo="Stats", type="Key", width=150 }, - [31]={ + [9]={ + list=true, + name="RequiredSpawnStat", + refTo="Stats", + type="Key", + width=300 + }, + [10]={ + list=true, + name="BlockingSpawnStat", + refTo="Stats", + type="Key", + width=300 + } + }, + strongboxpacks={ + [1]={ list=false, - name="AtlasMastery_rid", - refTo="AtlasPassiveSkillTreeGroupType", + name="Id", + refTo="", + type="Int", + width=80 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=80 + }, + [3]={ + list=false, + name="MonsterPackKey", + refTo="MonsterPacks", + type="Key", + width=270 + } + }, + strongboxvarieties={ + [1]={ + list=false, + name="Strongbox", + refTo="Strongboxes", type="Key", width=150 }, - [32]={ + [2]={ list=false, - name="SoundEffect", - refTo="SoundEffects", + name="", + refTo="", type="Key", width=150 }, - [33]={ + [3]={ list=false, - name="AtlasnodeGroup", + name="AOFile", refTo="", type="String", - width=190 + width=240 + } + }, + suicideexplosion={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 }, - [34]={ + [2]={ + list=false, + name="MiscAnimated", + refTo="MiscAnimated", + type="Key", + width=470 + }, + [3]={ + list=false, + name="AnimationAlternate", + refTo="MiscAnimated", + type="Key", + width=150 + }, + [4]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [35]={ + [5]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [36]={ + [6]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [37]={ + [7]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [38]={ + [8]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [39]={ + [9]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 + } + }, + summonedspecificbarrels={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [40]={ - list=true, + [2]={ + list=false, + name="Chest", + refTo="Chests", + type="Key", + width=150 + }, + [3]={ + list=false, name="", refTo="", type="Key", width=150 }, - [41]={ + [4]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Key", + width=150 }, - [42]={ - list=true, + [5]={ + list=false, name="", refTo="", type="Key", - width=50 + width=150 }, - [43]={ + [6]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="String", + width=240 + } + }, + summonedspecificmonsters={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=80 }, - [44]={ + [2]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", + type="Key", + width=550 + }, + [3]={ list=false, name="", refTo="", + type="Int", + width=80 + }, + [4]={ + list=false, + name="SummonEffect", + refTo="MiscAnimated", type="Key", - width=150 + width=80 }, - [45]={ + [5]={ list=false, name="", refTo="", type="Bool", - width=150 + width=80 }, - [46]={ + [6]={ list=false, - name="Attribute", + name="", refTo="", type="Bool", - width=150 + width=80 }, - [47]={ + [7]={ list=false, - name="AtlasSubTree", - refTo="AtlasPassiveSkillSubTrees", - type="Key", - width=150 + name="", + refTo="", + type="Int", + width=80 }, - [48]={ + [8]={ list=false, - name="IsRootOfAtlas", + name="", + refTo="", + type="Int", + width=80 + }, + [9]={ + list=false, + name="", refTo="", type="Bool", - width=150 + width=80 + }, + [10]={ + list=false, + name="ModFamily", + refTo="ModFamily", + type="Key", + width=80 }, - [49]={ + [11]={ list=false, - name="GrantedSkill", - refTo="SkillGems", + name="", + refTo="", type="Key", - width=340 + width=80 }, - [50]={ + [12]={ list=false, - name="WeaponPointsGranted", + name="", refTo="", type="Int", - width=150 + width=80 }, - [51]={ + [13]={ list=false, - name="FreeAllocate", + name="", refTo="", type="Bool", - width=150 + width=80 }, - [52]={ + [14]={ list=false, - name="ApplyToArmour?", + name="", refTo="", - type="Bool", - width=150 + type="Int", + width=80 }, - [53]={ - list=true, - name="ConstraintNode", - refTo="PassiveSkills", - type="ShortKey", - width=200 + [15]={ + list=false, + name="", + refTo="", + type="String", + width=80 }, - [54]={ + [16]={ list=false, - name="AscendancyUnlock", - refTo="Ascendancy", - type="Key", - width=150 + name="", + refTo="", + type="Bool", + width=80 }, - [55]={ + [17]={ list=false, name="", refTo="", type="Bool", - width=150 + width=80 }, - [56]={ + [18]={ list=false, - name="FrameArt", - refTo="PassiveSkilltreeNodeFrameArt", - type="Key", - width=330 + name="", + refTo="", + type="Int", + width=80 } }, - passiveskillstatcategories={ + summonedspecificmonstersondeath={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Name", - refTo="", - type="String", - width=150 - } - }, - passiveskilltattoos={ - [1]={ - list=false, - name="BaseItem", - refTo="BaseItemTypes", + name="MonsterVarietiesKey", + refTo="MonsterVarieties", type="Key", - width=380 + width=150 }, - [2]={ + [3]={ list=false, - name="Override", - refTo="passiveskilloverrides", - type="Key", + name="", + refTo="", + type="Int", width=150 }, - [3]={ + [4]={ list=false, - name="NodeTarget", - refTo="passiveskilltattootargetsets", + name="MiscAnimated", + refTo="MiscAnimated", type="Key", width=150 }, - [4]={ + [5]={ list=false, name="", refTo="", type="Int", width=150 }, - [5]={ + [6]={ list=false, name="", refTo="", - type="Key", + type="Bool", width=150 } }, - passiveskilltattootargets={ + supershaperinfluence={ }, - passiveskilltattootargetsets={ + supporterpacksets={ + }, + supportgemfamily={ [1]={ list=false, name="Id", @@ -14861,845 +57758,759 @@ return { width=150 }, [2]={ - list=true, - name="", - refTo="", - type="Int", - width=150 - }, - [3]={ - list=false, - name="Type", - refTo="", - type="String", - width=150 - }, - [4]={ list=false, - name="Value", + name="Name", refTo="", type="String", width=150 } }, - passiveskilltreeconnectionart={ + supportgems={ [1]={ list=false, - name="Id", - refTo="", - type="String", - width=380 + name="SkillGem", + refTo="SkillGems", + type="Key", + width=340 }, [2]={ list=false, - name="Normal", + name="", refTo="", - type="String", - width=591 + type="Int", + width=50 }, [3]={ list=false, - name="NormalActive", + name="DDS", refTo="", type="String", - width=633 + width=150 }, [4]={ - list=false, - name="Intermediate", - refTo="", - type="String", - width=591 + list=true, + name="Family", + refTo="SupportGemFamily", + type="Key", + width=150 }, [5]={ list=false, - name="IntermediateActive", + name="Lineage", refTo="", - type="String", - width=591 + type="Bool", + width=150 }, [6]={ list=false, - name="Mask", - refTo="", - type="String", - width=493 + name="FlavourText", + refTo="FlavourText", + type="Key", + width=300 }, [7]={ list=false, - name="LineOrnament1", + name="", refTo="", - type="String", - width=381 + type="Key", + width=20 }, [8]={ list=false, - name="LineOrnament2", + name="SocketVisual", + refTo="SupportGemSocketedVisualIdentity", + type="Key", + width=200 + }, + [9]={ + list=false, + name="", refTo="", - type="String", - width=381 + type="Bool", + width=150 } }, - passiveskilltreemasteryart={ + supportgemsocketedvisualidentity={ [1]={ list=false, name="Id", refTo="", type="String", - width=200 + width=240 }, [2]={ list=false, - name="Inactive", + name="BackingIcon", refTo="", type="String", - width=400 + width=240 }, [3]={ list=false, - name="Active", - refTo="", - type="String", - width=400 - }, - [4]={ - list=false, - name="Effect", + name="ItemIcon", refTo="", type="String", - width=400 + width=240 } }, - passiveskilltreenodeframeart={ + surgecategory={ + }, + surgeeffectpackartvariations={ [1]={ list=false, name="Id", refTo="", type="String", - width=230 + width=240 }, [2]={ list=false, - name="Normal", + name="", refTo="", - type="String", - width=605 + type="Int", + width=150 }, [3]={ list=false, - name="CanAllocate", - refTo="", - type="String", - width=640 + name="VisualEffect", + refTo="ItemVisualEffect", + type="Key", + width=150 }, [4]={ list=false, - name="Active", + name="", refTo="", - type="String", - width=626 + type="Int", + width=150 }, [5]={ list=false, - name="Mask", + name="", refTo="", - type="String", - width=570 + type="Int", + width=150 }, [6]={ list=false, - name="Header", + name="", refTo="", - type="String", - width=330 + type="Bool", + width=150 } }, - passiveskilltreenoderrameart={ - }, - passiveskilltrees={ + surgeeffects={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="PassiveSkillGraph", - refTo="", - type="String", - width=390 + name="", + refTo="MiscAnimated", + type="Key", + width=150 }, [3]={ - list=false, + list=true, name="", refTo="", - type="Int", - width=50 + type="Float", + width=300 }, [4]={ - list=false, + list=true, name="", - refTo="", - type="Float", - width=150 + refTo="MiscAnimated", + type="Key", + width=300 }, [5]={ - list=false, - name="", - refTo="", - type="Float", - width=150 - }, - [6]={ - list=false, + list=true, name="", refTo="", - type="Float", - width=150 - }, - [7]={ + type="String", + width=300 + } + }, + surgetypes={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [8]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + [2]={ + list=true, + name="SurgeEffects", + refTo="SurgeEffects", + type="Key", + width=300 }, - [9]={ + [3]={ list=false, - name="", + name="IntId", refTo="", - type="Bool", - width=50 - }, - [10]={ + type="Int", + width=150 + } + }, + synthesis={ + }, + synthesisareas={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [11]={ + [2]={ list=false, - name="", + name="MinLevel", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [12]={ + [3]={ list=false, - name="", + name="MaxLevel", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [13]={ + [4]={ list=false, - name="", + name="Weight", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [14]={ + [5]={ list=false, - name="", - refTo="", - type="Bool", - width=50 + name="TopologiesKey", + refTo="Topologies", + type="Key", + width=150 }, - [15]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + [6]={ + list=true, + name="MonsterPacksKeys", + refTo="MonsterPacks", + type="Key", + width=300 }, - [16]={ + [7]={ list=false, - name="", + name="ArtFile", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [17]={ + [8]={ list=false, - name="", + name="Name", refTo="", - type="Bool", - width=50 - }, - [18]={ - list=false, - name="ClientStrings", - refTo="ClientStrings", - type="Key", - width=200 + type="String", + width=240 }, - [19]={ + [9]={ list=false, - name="UIArt", - refTo="passiveskilltreeuiart", + name="SynthesisAreaSizeKey", + refTo="SynthesisAreaSize", type="Key", - width=100 + width=150 }, - [20]={ + [10]={ list=false, - name="", - refTo="", + name="AchievementItemsKey", + refTo="AchievementItems", type="Key", - width=50 - }, - [21]={ + width=150 + } + }, + synthesisareasize={ + [1]={ list=false, - name="", + name="Id", refTo="", - type="Key", - width=50 + type="String", + width=240 }, - [22]={ + [2]={ list=false, name="", refTo="", - type="Float", + type="Int", width=150 }, - [23]={ + [3]={ list=false, name="", refTo="", - type="Float", + type="Int", width=150 }, - [24]={ + [4]={ list=false, name="", refTo="", - type="Float", + type="Int", width=150 } }, - passiveskilltreetutorial={ - }, - passiveskilltreeuiart={ + synthesisbonuses={ [1]={ list=false, - name="Id", - refTo="", - type="String", + name="ModsKey", + refTo="Mods", + type="Key", width=150 }, [2]={ list=false, - name="GroupBackgroundSmall", + name="", refTo="", - type="String", - width=550 + type="Int", + width=150 }, [3]={ list=false, - name="GroupBackgroundMedium", + name="", refTo="", - type="String", - width=550 + type="Int", + width=150 }, [4]={ list=false, - name="GroupBackgroundLarge", + name="", refTo="", - type="String", - width=550 + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, [6]={ list=false, - name="PassiveFrameNormal", - refTo="", - type="String", - width=550 - }, - [7]={ - list=false, - name="NotableFrameNormal", - refTo="", - type="String", - width=550 - }, - [8]={ - list=false, - name="KeystoneFrameNormal", - refTo="", - type="String", - width=550 - }, - [9]={ - list=false, - name="ConnectionsArt", - refTo="PassiveSkillTreeConnectionArt", - type="Key", - width=250 - }, - [10]={ - list=false, - name="PassiveFrame", - refTo="PassiveSkillTreeNodeFrameArt", - type="Key", - width=210 - }, - [11]={ - list=false, - name="NotableFrame", - refTo="PassiveSkillTreeNodeFrameArt", - type="Key", - width=190 - }, - [12]={ - list=false, - name="KeystoneFrame", - refTo="PassiveSkillTreeNodeFrameArt", - type="Key", - width=200 - }, - [13]={ - list=false, - name="JewelFrame", - refTo="PassiveSkillTreeNodeFrameArt", - type="Key", - width=190 - }, - [14]={ - list=false, - name="Glow", + name="", refTo="", - type="String", - width=290 + type="Int", + width=150 }, - [15]={ + [7]={ list=false, name="", refTo="", - type="Key", + type="Bool", width=150 - } - }, - passiveskilltypes={ - [1]={ + }, + [8]={ list=false, - name="Id", + name="", refTo="", - type="String", + type="Bool", width=150 } }, - passivetreeexpansionjewels={ + synthesisbrackets={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", + name="WorldAreasKey1", + refTo="WorldAreas", type="Key", - width=360 + width=150 }, [2]={ list=false, - name="Size", - refTo="PassiveTreeExpansionJewelSizes", - type="Key", - width=70 + name="MinLevel", + refTo="", + type="Int", + width=150 }, [3]={ list=false, - name="MinNodes", + name="MaxLevel", refTo="", type="Int", - width=70 + width=150 }, [4]={ list=false, - name="MaxNodes", - refTo="", - type="Int", - width=70 + name="WorldAreasKey2", + refTo="WorldAreas", + type="Key", + width=150 }, [5]={ - list=true, - name="SmallIndicies", + list=false, + name="", refTo="", type="Int", - width=200 + width=150 }, [6]={ - list=true, - name="NotableIndicies", + list=false, + name="", refTo="", type="Int", - width=130 + width=150 }, [7]={ - list=true, - name="SocketIndicies", + list=false, + name="", refTo="", type="Int", - width=90 + width=150 }, [8]={ list=false, - name="TotalIndicies", + name="", refTo="", type="Int", width=150 } }, - passivetreeexpansionjewelsizes={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=150 - } - }, - passivetreeexpansionskills={ + synthesisfragmentdialogue={ [1]={ list=false, - name="Node", - refTo="PassiveSkills", + name="Area", + refTo="SynthesisAreas", type="Key", - width=320 + width=150 }, [2]={ list=false, - name="Mastery", - refTo="PassiveSkills", + name="NPCTextAudioKey1", + refTo="NPCTextAudio", type="Key", - width=410 + width=150 }, [3]={ list=false, - name="Tag", - refTo="Tags", + name="NPCTextAudioKey2", + refTo="NPCTextAudio", type="Key", - width=350 + width=150 }, [4]={ list=false, - name="JewelSize", - refTo="PassiveTreeExpansionJewelSizes", + name="NPCTextAudioKey3", + refTo="NPCTextAudio", type="Key", - width=70 - } - }, - passivetreeexpansionspecialskills={ - [1]={ + width=150 + }, + [5]={ list=false, - name="Node", - refTo="PassiveSkills", + name="NPCTextAudioKey4", + refTo="NPCTextAudio", type="Key", - width=270 + width=150 }, - [2]={ + [6]={ list=false, - name="Stat", - refTo="Stats", + name="NPCTextAudioKey5", + refTo="NPCTextAudio", type="Key", - width=350 + width=150 + }, + [7]={ + list=false, + name="NPCTextAudioKey6", + refTo="NPCTextAudio", + type="Key", + width=150 } }, - pathofendurance={ - }, - pcbangrewardmicros={ - }, - perandusbosses={ - }, - peranduschests={ - }, - perandusdaemons={ - }, - perandusguards={ - }, - perlevelvalues={ - }, - pet={ - }, - playerconditions={ - }, - playerminionintrinsicstats={ + synthesisglobalmods={ [1]={ list=false, - name="Id", - refTo="Stats", + name="ModsKey", + refTo="Mods", type="Key", - width=350 + width=150 }, [2]={ list=false, - name="Value", + name="Weight", refTo="", type="Int", width=150 - } - }, - playertradewhisperformats={ - [1]={ + }, + [3]={ list=false, - name="Id", + name="MinLevel", refTo="", - type="String", - width=170 + type="Int", + width=150 }, - [2]={ + [4]={ list=false, - name="Whisper", + name="MaxLevel", refTo="", - type="String", + type="Int", width=150 - }, - [3]={ + } + }, + synthesismonsterexperienceperlevel={ + [1]={ list=false, - name="InStash", + name="Level", refTo="", - type="Bool", + type="Int", width=150 }, - [4]={ + [2]={ list=false, - name="IsPriced", + name="ExperienceBonus", refTo="", - type="Bool", + type="Int", width=150 } }, - portalaudio={ - }, - portalaudioevents={ - }, - preloadfromstats={ - }, - preloadgroups={ + synthesisrewardcategories={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 } }, - preloadpriorities={ - }, - primordialbosslifescalingperlevel={ - }, - projectilecollisiontypes={ - }, - projectileoverrides={ - }, - projectiles={ + synthesisrewardtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=370 + width=240 }, [2]={ - list=true, - name="AOFiles", + list=false, + name="Description", refTo="", type="String", - width=420 + width=240 }, [3]={ - list=true, - name="LoopAnimationIds", + list=false, + name="ArtFile", refTo="", type="String", - width=200 + width=240 }, [4]={ - list=true, - name="ImpactAnimationIds", + list=false, + name="AchievementItemsKey", + refTo="AchievementItems", + type="Key", + width=150 + } + }, + tablecharge={ + [1]={ + list=false, + name="", refTo="", - type="String", - width=200 + type="Int", + width=80 }, - [5]={ + [2]={ list=false, - name="ProjectileSpeed", + name="", refTo="", - type="Int", + type="Float", + width=80 + }, + [3]={ + list=false, + name="", + refTo="", + type="Float", width=150 }, - [6]={ + [4]={ list=false, name="", refTo="", type="Bool", - width=50 + width=80 }, - [7]={ + [5]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Key", + width=250 }, - [8]={ + [6]={ list=false, name="", refTo="", type="Bool", - width=50 + width=80 + }, + [7]={ + list=true, + name="TravelAnimation", + refTo="MiscAnimated", + type="Key", + width=320 + }, + [8]={ + list=false, + name="ImpactAnimation", + refTo="MiscAnimated", + type="Key", + width=80 }, [9]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=80 }, [10]={ list=false, - name="InheritsFrom", + name="", refTo="", - type="String", - width=250 + type="Int", + width=80 }, [11]={ list=false, name="", refTo="", - type="Key", - width=70 + type="Int", + width=80 }, [12]={ list=false, name="", refTo="", type="Int", - width=70 + width=80 }, [13]={ list=false, name="", refTo="", type="Bool", - width=70 + width=80 }, [14]={ list=false, name="", refTo="", type="Bool", - width=70 + width=80 }, [15]={ - list=true, - name="Stuck_AOFile", + list=false, + name="", refTo="", - type="String", - width=150 + type="Key", + width=80 }, [16]={ list=false, - name="Bounce_AOFile", + name="", refTo="", - type="String", - width=150 + type="Key", + width=80 }, [17]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [18]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=80 }, [19]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [20]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [21]={ list=false, - name="Animation1", - refTo="miscanimated", - type="Key", - width=150 + name="", + refTo="", + type="Int", + width=80 }, [22]={ list=false, - name="Animation2", - refTo="miscanimated", - type="Key", - width=200 + name="", + refTo="", + type="Int", + width=80 }, [23]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [24]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [25]={ list=false, name="", refTo="", type="Int", - width=50 + width=80 }, [26]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=80 }, [27]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=80 }, [28]={ - list=true, + list=false, name="", refTo="", - type="String", - width=70 + type="Int", + width=50 }, [29]={ list=false, @@ -15709,1057 +58520,943 @@ return { width=50 }, [30]={ - list=true, + list=false, name="", refTo="", - type="Int", + type="Bool", width=50 }, [31]={ list=false, name="", refTo="", - type="String", - width=150 + type="Int", + width=50 }, [32]={ list=false, - name="BounceAnimation", - refTo="MiscAnimated", - type="Key", - width=260 - }, - [33]={ + name="", + refTo="", + type="Int", + width=50 + } + }, + tablemonsterspawners={ + [1]={ list=false, - name="TerrainImpactAnimation", - refTo="MiscAnimated", - type="Key", - width=250 + name="Metadata", + refTo="", + type="String", + width=240 }, - [34]={ + [2]={ list=false, - name="DamageEffect", - refTo="DamageEffectVariations", + name="AreaLevel", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="SpawnsMonsters", + refTo="MonsterVarieties", type="Key", - width=250 + width=300 }, - [35]={ + [4]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [36]={ + [5]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [37]={ - list=false, - name="DamageEffect", - refTo="DamageEffectVariations", - type="Key", - width=200 - }, - [38]={ + [6]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [39]={ + [7]={ list=false, name="", - refTo="BallisticBounceOverride", - type="Key", + refTo="", + type="Int", width=150 }, - [40]={ + [8]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [41]={ - list=true, + [9]={ + list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [42]={ - list=true, + [10]={ + list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [43]={ + [11]={ list=false, name="", refTo="", - type="Bool", - width=70 - } - }, - projectilesartvariations={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", + type="Int", width=150 }, - [2]={ + [12]={ list=false, - name="Variant", + name="", refTo="", - type="Int", - width=100 - }, - [3]={ - list=true, - name="Projectile", - refTo="Projectiles", - type="Key", - width=380 + type="Bool", + width=150 }, - [4]={ + [13]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, - [5]={ + [14]={ list=false, name="", refTo="", - type="Key", - width=100 - } - }, - projectilevariations={ - }, - prophecies={ - }, - prophecychain={ - }, - prophecysetnames={ - }, - prophecysets={ - }, - prophecytype={ - }, - pvptypes={ - }, - quest={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=230 + type="Bool", + width=150 }, - [2]={ + [15]={ list=false, - name="Act", + name="", refTo="", - type="Int", + type="Bool", width=150 }, - [3]={ + [16]={ list=false, - name="Name", + name="", refTo="", - type="String", - width=180 + type="Bool", + width=150 }, - [4]={ + [17]={ list=false, - name="Icon", + name="", refTo="", - type="String", + type="Bool", width=150 }, - [5]={ + [18]={ list=false, - name="QuestId", + name="", refTo="", type="Int", width=150 }, - [6]={ + [19]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, - [7]={ + [20]={ list=false, - name="Type", - refTo="QuestType", - type="Key", - width=150 - }, - [8]={ - list=true, name="", refTo="", type="Int", width=150 }, - [9]={ + [21]={ list=false, name="", refTo="", type="Int", width=150 }, - [10]={ + [22]={ list=false, name="", refTo="", type="Key", - width=40 + width=150 }, - [11]={ + [23]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, - [12]={ + [24]={ list=false, name="", refTo="", type="Bool", - width=50 - }, - [13]={ - list=true, - name="NormalReward", - refTo="QuestRewardType", - type="Key", width=150 }, - [14]={ - list=false, - name="", - refTo="", - type="Key", - width=150 - } - }, - questachievements={ - }, - questflags={ - [1]={ + [25]={ list=false, - name="Id", + name="Script1", refTo="", type="String", - width=250 + width=240 }, - [2]={ + [26]={ list=false, - name="Hash32", + name="", refTo="", - type="UInt", + type="Bool", width=150 - } - }, - questitemnpcaudio={ - }, - questitems={ - }, - questrewardoffers={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 }, - [2]={ + [27]={ list=false, - name="Quest", - refTo="Quest", - type="Key", - width=200 + name="", + refTo="", + type="Bool", + width=150 }, - [3]={ + [28]={ list=false, - name="QuestFlags", - refTo="QuestFlags", - type="Key", - width=200 + name="Script2", + refTo="", + type="String", + width=240 }, - [4]={ - list=false, + [29]={ + list=true, name="", refTo="", type="Int", - width=160 + width=300 }, - [5]={ + [30]={ list=false, name="", refTo="", - type="Key", - width=50 + type="Int", + width=150 }, - [6]={ + [31]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [7]={ + [32]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [8]={ + [33]={ list=false, name="", refTo="", - type="Key", - width=50 + type="Int", + width=150 }, - [9]={ + [34]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [10]={ + [35]={ list=false, name="", refTo="", - type="Key", - width=50 + type="Int", + width=150 }, - [11]={ + [36]={ list=false, name="", refTo="", - type="Key", - width=100 + type="Int", + width=150 }, - [12]={ + [37]={ list=false, name="", refTo="", type="Int", - width=70 + width=150 } }, - questrewards={ + tacticiantotembuffs={ [1]={ list=false, name="Id", - refTo="QuestRewardOffers", + refTo="ActiveSkills", type="Key", width=150 }, [2]={ list=false, - name="QuestPart", + name="BuffTemplate", + refTo="BuffTemplates", + type="Key", + width=300 + } + }, + tags={ + [1]={ + list=false, + name="Id", refTo="", - type="Int", - width=70 + type="String", + width=150 + }, + [2]={ + list=false, + name="Hash32", + refTo="", + type="UInt", + width=150 }, [3]={ - list=true, - name="", + list=false, + name="DisplayText", refTo="", - type="Key", - width=20 + type="String", + width=210 }, [4]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", + list=true, + name="", + refTo="ClientStrings", type="Key", - width=460 + width=150 }, [5]={ list=false, - name="RewardItemLevel", + name="Text", refTo="", - type="Int", + type="String", + width=150 + } + }, + talismanmonstermods={ + [1]={ + list=false, + name="ModTypeKey", + refTo="ModType", + type="Key", width=150 }, - [6]={ + [2]={ list=false, - name="QuestType", - refTo="QuestType", + name="ModsKey", + refTo="Mods", type="Key", width=150 + } + }, + talismanpacks={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [7]={ + [2]={ + list=true, + name="MonsterPacksKeys", + refTo="MonsterPacks", + type="Key", + width=300 + }, + [3]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [8]={ + [4]={ list=false, name="", refTo="", - type="String", - width=50 + type="Int", + width=150 }, - [9]={ - list=true, - name="", - refTo="", + [5]={ + list=false, + name="MonsterVarietiesKey", + refTo="MonsterVarieties", type="Key", - width=50 + width=150 }, - [10]={ + [6]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Key", + width=150 }, - [11]={ + [7]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [12]={ + [8]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [13]={ - list=true, + [9]={ + list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [14]={ + [10]={ list=false, - name="", - refTo="", - type="String", - width=50 + name="MonsterPacksKey", + refTo="MonsterPacks", + type="Key", + width=150 + } + }, + talismans={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [15]={ - list=true, - name="", + [2]={ + list=false, + name="SpawnWeight", refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="ModsKey", + refTo="Mods", type="Key", - width=50 + width=150 }, - [16]={ + [4]={ list=false, - name="", + name="Tier", refTo="", type="Int", - width=50 + width=150 }, - [17]={ + [5]={ list=false, name="", refTo="", - type="Key", - width=50 + type="Bool", + width=150 }, - [18]={ + [6]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [19]={ - list=true, + [7]={ + list=false, name="", refTo="", type="Key", - width=50 + width=150 }, - [20]={ + [8]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Key", + width=150 }, - [21]={ + [9]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 } }, - questrewardtype={ + talkingpetaudioevents={ [1]={ list=false, - name="Id", + name="Event", refTo="", type="String", - width=210 + width=240 }, [2]={ list=false, - name="Icon", + name="", refTo="", - type="String", + type="Int", width=150 }, [3]={ list=false, - name="Name", + name="", refTo="", - type="String", + type="Int", width=150 }, [4]={ list=false, - name="Description", + name="", refTo="", - type="String", - width=300 + type="Int", + width=150 }, [5]={ - list=false, - name="BaseItemType", + list=true, + name="BaseItemTypeKey", refTo="BaseItemTypes", type="Key", - width=380 + width=300 }, [6]={ + list=true, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=300 + }, + [7]={ + list=false, + name="RepeatCooldown", + refTo="", + type="Int", + width=150 + }, + [8]={ list=false, name="", refTo="", - type="Key", - width=290 + type="Int", + width=150 } }, - queststatecalculation={ - }, - queststates={ - }, - queststaticrewards={ + talkingpetnpcaudio={ [1]={ list=false, - name="QuestFlag", - refTo="questflags", + name="Id", + refTo="TalkingPetAudioEvents", type="Key", - width=250 + width=150 }, [2]={ list=false, - name="WeaponPassives", - refTo="", - type="Int", - width=100 + name="NPC", + refTo="TalkingPets", + type="Key", + width=150 }, [3]={ list=true, - name="Stats", - refTo="Stats", + name="NPCAudio", + refTo="NPCTextAudio", type="Key", - width=400 + width=300 }, [4]={ - list=true, - name="StatValues", + list=false, + name="Animation", refTo="", - type="Int", - width=100 + type="String", + width=240 }, [5]={ list=false, - name="Quest", - refTo="Quest", - type="Key", - width=150 - }, - [6]={ - list=false, - name="AscendancyPointsRewarded", + name="", refTo="", - type="Int", + type="Bool", width=150 }, - [7]={ - list=false, - name="ClientString", - refTo="clientstrings", + [6]={ + list=true, + name="NPCAudio2", + refTo="NPCTextAudio", type="Key", - width=250 - }, - [8]={ - list=false, - name="WeaponSetPointsRewarded", - refTo="", - type="Int", - width=150 - }, - [9]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + width=300 } }, - questtrackergroup={ - }, - questtype={ + talkingpets={ [1]={ list=false, name="Id", - refTo="", - type="String", + refTo="NPCs", + type="Key", width=150 }, [2]={ list=true, - name="Colour", - refTo="", - type="Int", - width=150 + name="Pet", + refTo="Pet", + type="Key", + width=300 } }, - questvendorrewards={ - }, - raceareas={ - }, - racerewardtomicro={ - }, - races={ - }, - racetimes={ - }, - randomuniquemonsters={ - }, - raremonsterlifescalingperlevel={ - }, - rarity={ + tempesttypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="MinMods", - refTo="", - type="Int", - width=80 + name="MiscObject", + refTo="MiscObjects", + type="Key", + width=150 }, [3]={ list=false, - name="MaxMods", + name="", refTo="", - type="Int", - width=80 + type="Key", + width=150 }, [4]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [5]={ list=false, - name="MaxPrefix", + name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [6]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="BuffTemplatePlayer", + refTo="BuffTemplates", + type="Key", + width=150 }, [7]={ list=false, - name="MaxSuffix", - refTo="", - type="Int", - width=80 - }, - [8]={ - list=false, - name="Colour", - refTo="", - type="String", - width=80 - }, - [9]={ - list=false, - name="", - refTo="", - type="String", - width=80 - } - }, - raritymask={ - }, - realms={ - }, - recipeunlockdisplay={ - [1]={ + name="BuffTemplateMonster", + refTo="BuffTemplates", + type="Key", + width=150 + }, + [8]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, - [2]={ + [9]={ list=false, name="", - refTo="", - type="String", - width=320 + refTo="Stats", + type="Key", + width=150 }, - [3]={ + [10]={ list=false, name="", refTo="", type="Int", width=150 }, - [4]={ + [11]={ list=false, name="", refTo="", - type="Int", + type="Key", width=150 }, - [5]={ + [12]={ + list=false, + name="MiscBeam", + refTo="MiscBeams", + type="Key", + width=150 + }, + [13]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [6]={ + [14]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [7]={ + [15]={ list=false, name="", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [8]={ + [16]={ list=false, name="", refTo="", type="Int", width=150 + } + }, + tencentautolootpetcurrencies={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [9]={ + [2]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, - [10]={ - list=false, + [3]={ + list=true, name="", refTo="", type="Key", - width=150 + width=300 } }, - recipeunlockobjects={ - }, - relativeimportanceconstants={ - }, - relicinventorylayout={ - }, - relicitemeffectvariations={ + tencentautolootpetcurrenciesexcludable={ + [1]={ + list=false, + name="BaseItemTypesKey", + refTo="BaseItemTypes", + type="Key", + width=150 + } }, - remindertext={ + terrainplugins={ [1]={ list=false, name="Id", refTo="", type="String", - width=350 + width=240 }, [2]={ list=false, - name="Text", + name="", refTo="", - type="String", - width=1000 + type="Int", + width=150 }, [3]={ list=false, name="", refTo="", - type="String", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", width=150 } }, - reservationskillsaudio={ - }, - resistancepenaltyperarealevel={ + threetoonerecipes={ [1]={ list=false, - name="Level", + name="Id", refTo="", - type="Int", - width=80 + type="String", + width=150 }, [2]={ list=false, - name="Penalty", - refTo="", - type="Int", - width=80 - } - }, - ritualbalanceperlevel={ - }, - ritualconstants={ - [1]={ + name="InputBaseItem", + refTo="BaseItemTypes", + type="Key", + width=260 + }, + [3]={ + list=false, + name="OutputBaseItem", + refTo="BaseItemTypes", + type="Key", + width=280 + }, + [4]={ list=false, name="", refTo="", - type="String", - width=300 - } - }, - ritualrunetypes={ - [1]={ + type="Int", + width=150 + }, + [5]={ list=false, name="", refTo="", - type="String", - width=170 + type="Key", + width=150 + }, + [6]={ + list=true, + name="UpgradableInStashes", + refTo="StashId", + type="Enum", + width=300 } }, - ritualsetkillachievements={ - }, - ritualspawnpatterns={ - }, - rogueexilelifescalingperlevel={ - }, - rogueexilemodbonuses={ + tieredcurrency={ [1]={ list=false, - name="Mod", - refTo="Mods", + name="BaseItemType", + refTo="BaseItemTypes", type="Key", - width=200 + width=150 }, [2]={ - list=true, - name="Stats", - refTo="Stats", - type="Key", - width=400 + list=false, + name="Tier", + refTo="", + type="Int", + width=150 }, [3]={ - list=true, - name="StatValues", + list=false, + name="MinimumModLevel", refTo="", type="Int", width=150 + }, + [4]={ + list=false, + name="LowerTierBaseItemType", + refTo="BaseItemTypes", + type="Key", + width=150 } }, - rogueexiles={ - }, - rulesets={ - }, - runiccircles={ - }, - safehousebyocrafting={ - }, - safehousecraftingspree={ - }, - safehousecraftingspreecurrencies={ - }, - safehousecraftingspreetype={ - }, - salvageboxes={ - }, - sanctumairlocks={ - }, - sanctumbalanceperlevel={ - }, - sanctumdefenceicons={ - }, - sanctumdeferredrewarddisplaycategories={ - }, - sanctumeffecttriggers={ - }, - sanctumfloors={ - }, - sanctumfodderlifescalingperlevel={ - }, - sanctumimmediateeffecttype={ - }, - sanctumlifescalingperlevel={ - }, - sanctumpersistenteffectcategories={ - }, - sanctumpersistenteffectfamily={ - }, - sanctumpersistenteffects={ - }, - sanctumrewardobjects={ - }, - sanctumrooms={ - }, - sanctumroomtypes={ - }, - sanctumselectiondisplayoverride={ - }, - scarabs={ - }, - scarabtypes={ - }, - scoutingreports={ - }, - sentinelcraftingcurrency={ - }, - sentineldroneinventorylayout={ - }, - sentinelpassives={ - }, - sentinelpassivestats={ - }, - sentinelpassivetypes={ - }, - sentinelpowerexplevels={ - }, - sentinelstoragelayout={ - }, - sentineltaggedmonsterstats={ - }, - sessionquestflags={ - }, - shaperguardians={ - }, - shapermemoryfragments={ - }, - shaperorbs={ - }, - shapeshiftformclones={ - }, - shapeshiftforms={ + tieredmicrotransactions={ [1]={ list=false, - name="Name", - refTo="", - type="String", + name="MTX", + refTo="MtxTypeGameSpecific", + type="Key", width=150 }, [2]={ - list=false, - name="AnimatedObject", + list=true, + name="TierThresholds", refTo="", - type="String", - width=200 + type="Int", + width=300 }, [3]={ - list=true, - name="Stat", + list=false, + name="", refTo="Stats", type="Key", - width=200 + width=150 }, [4]={ list=true, - name="StatValues", + name="", refTo="", type="Int", - width=150 + width=300 }, [5]={ list=false, - name="WeaponClass", - refTo="WeaponClasses", + name="", + refTo="Stats", type="Key", - width=100 + width=150 }, [6]={ list=false, - name="", + name="TierCount", refTo="", type="Int", - width=60 + width=150 }, [7]={ - list=false, + list=true, name="", - refTo="", - type="String", - width=110 + refTo="Stats", + type="Key", + width=300 }, [8]={ - list=false, + list=true, name="", refTo="", type="Int", - width=150 + width=300 }, [9]={ - list=false, + list=true, name="", refTo="", - type="Float", - width=80 + type="Int", + width=300 }, [10]={ list=false, name="", refTo="", - type="Float", - width=80 + type="Bool", + width=150 }, [11]={ list=false, name="", refTo="", - type="Float", - width=100 + type="Bool", + width=150 }, [12]={ list=false, - name="Stat2", + name="", refTo="Stats", type="Key", width=150 @@ -16768,119 +59465,221 @@ return { list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [14]={ - list=false, + list=true, name="", refTo="", - type="Bool", - width=100 + type="Int", + width=300 + } + }, + tieredmicrotransactionsvisuals={ + [1]={ + list=false, + name="MTX", + refTo="MtxTypes", + type="Key", + width=150 }, - [15]={ + [2]={ list=false, - name="TransformedState", + name="Tier", refTo="", - type="String", - width=120 + type="Int", + width=150 }, - [16]={ + [3]={ list=false, - name="", + name="Description", refTo="", - type="Float", - width=110 + type="String", + width=240 }, - [17]={ + [4]={ list=false, - name="", + name="DDSFile", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, - [18]={ + [5]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [19]={ + [6]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="String", + width=240 + } + }, + timetrackingmapdeviceinterfaceartvariation={ + [1]={ + list=false, + name="MapDevice", + refTo="MapDevices", + type="Key", + width=150 }, - [20]={ + [2]={ list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [3]={ + list=true, name="", refTo="", type="Int", - width=50 + width=300 }, - [21]={ + [4]={ list=true, - name="Stat3", - refTo="Stats", - type="Key", - width=200 + name="", + refTo="", + type="Int", + width=300 }, - [22]={ - list=false, + [5]={ + list=true, name="", refTo="", + type="Int", + width=300 + } + }, + tips={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="TextXBox", + refTo="", type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", width=150 }, - [23]={ + [5]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [24]={ + [6]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [25]={ + [7]={ list=false, name="", - refTo="Stats", - type="Key", + refTo="", + type="Int", width=150 }, - [26]={ + [8]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [9]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 } }, - shapeshifttransformdata={ - }, - shieldtypes={ + topologies={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=350 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="Block", + name="DGRFile", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", refTo="", type="Int", - width=80 + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [7]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 }, - [3]={ + [9]={ list=false, name="", refTo="", @@ -16888,114 +59687,104 @@ return { width=150 } }, - shopcategory={ - }, - shopcountry={ - }, - shopcurrency={ - }, - shopforumbadge={ - }, - shoppackageplatform={ - }, - shoppaymentpackage={ - }, - shoppaymentpackageitems={ - }, - shoppaymentpackageprice={ - }, - shoppaymentpackageproxy={ - }, - shopregion={ - }, - shoptag={ - }, - shoptoken={ - }, - shrinebuffs={ - }, - shrines={ + tormentmodcolours={ [1]={ list=false, - name="Id", - refTo="", - type="String", + name="Mod", + refTo="Mods", + type="Key", width=150 }, [2]={ - list=false, - name="Timeout", + list=true, + name="", refTo="", - type="Int", + type="String", + width=300 + } + }, + tormentspirits={ + [1]={ + list=false, + name="MonsterVariety", + refTo="MonsterVarieties", + type="Key", width=150 }, + [2]={ + list=true, + name="SpiritMods", + refTo="Mods", + type="Key", + width=60 + }, [3]={ - list=false, - name="Shared", - refTo="", - type="Bool", - width=150 + list=true, + name="TouchedMods", + refTo="Mods", + type="Key", + width=300 }, [4]={ - list=false, - name="PlayerBuff", - refTo="BuffTemplates", + list=true, + name="MonsterPossessedMods1", + refTo="Mods", type="Key", width=150 }, [5]={ list=false, - name="", + name="MinZoneLevel", refTo="", type="Int", - width=150 + width=90 }, [6]={ list=false, - name="", + name="MaxZoneLevel", refTo="", type="Int", - width=150 + width=90 }, [7]={ list=false, - name="MonsterBuff", - refTo="BuffTemplates", - type="Key", - width=150 + name="SpawnWeight", + refTo="", + type="Int", + width=90 }, [8]={ list=false, - name="MonsterVarieties", + name="SummonedMonster", refTo="MonsterVarieties", type="Key", - width=150 + width=110 }, [9]={ - list=false, - name="MonsterVarietiesPlayer", - refTo="MonsterVarieties", - type="Key", - width=150 - }, - [10]={ list=false, name="", refTo="", type="Int", + width=50 + }, + [10]={ + list=true, + name="RarePossessedMod", + refTo="Mods", + type="Key", width=150 }, [11]={ - list=false, - name="Duration", - refTo="", - type="Int", + list=true, + name="UniquePossessedMod", + refTo="Mods", + type="Key", width=150 }, [12]={ list=false, - name="ShrineSounds", - refTo="ShrineSounds", + name="SpawnStat", + refTo="Stats", type="Key", width=150 }, @@ -17003,1145 +59792,1146 @@ return { list=false, name="", refTo="", - type="Bool", - width=150 + type="Int", + width=50 }, [14]={ - list=true, - name="Achievement", - refTo="AchievementItems", - type="Key", - width=150 - }, - [15]={ list=false, - name="PVPOnly", + name="Type", refTo="", - type="Bool", - width=150 + type="Int", + width=50 + }, + [15]={ + list=true, + name="PlayerPossessedMods", + refTo="Mods", + type="Key", + width=400 }, [16]={ - list=false, - name="", - refTo="", - type="Bool", - width=150 + list=true, + name="Quest", + refTo="QuestFlags", + type="Key", + width=100 }, [17]={ list=false, - name="LesserShrine", - refTo="", - type="Bool", + name="CharmStat", + refTo="Stats", + type="Key", width=150 }, [18]={ - list=false, - name="Description", - refTo="ClientStrings", + list=true, + name="", + refTo="", type="Key", width=150 }, [19]={ - list=false, - name="Name", - refTo="ClientStrings", - type="Key", + list=true, + name="", + refTo="", + type="Int", width=150 }, [20]={ list=false, name="", refTo="", - type="Bool", - width=150 + type="Key", + width=20 }, [21]={ list=false, - name="", - refTo="", + name="MonsterPossessedMods2", + refTo="Mods", type="Key", - width=70 + width=150 }, [22]={ list=true, - name="", - refTo="", + name="TalismanBase", + refTo="BaseItemTypes", type="Key", - width=70 + width=150 }, [23]={ list=false, name="", refTo="", - type="Key", - width=70 + type="Int", + width=50 }, [24]={ list=false, name="", + refTo="", + type="Int", + width=50 + }, + [25]={ + list=true, + name="", + refTo="", + type="Int", + width=50 + }, + [26]={ + list=false, + name="MapChanceStat", + refTo="Stats", + type="Key", + width=150 + }, + [27]={ + list=true, + name="MapEnabledStat", refTo="Stats", type="Key", width=300 + }, + [28]={ + list=false, + name="ChestMod", + refTo="Mods", + type="Key", + width=150 + }, + [29]={ + list=false, + name="MiscBeam", + refTo="MiscBeams", + type="Key", + width=150 } }, - shrinesounds={ - }, - shrinevisualartvariations={ - }, - sigildisplay={ + totemdefendervarieties={ + [1]={ + list=false, + name="Monster", + refTo="MonsterVarieties", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } }, - singlegroundlaser={ + touchinteractiontype={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Art", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="ArtHighlight", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } }, - skillartvariations={ + trademarketcategory={ [1]={ list=false, name="Id", refTo="", type="String", - width=200 + width=240 }, [2]={ - list=true, - name="AnimatedArt", - refTo="MiscAnimatedArtVariations", - type="Key", - width=150 + list=false, + name="Name", + refTo="", + type="String", + width=240 }, [3]={ - list=true, - name="BeamArt", - refTo="MiscBeamsArtVariations", - type="Key", + list=false, + name="StyleFlag", + refTo="TradeMarketCategoryStyleFlag", + type="Enum", width=150 }, [4]={ - list=true, - name="EffectPacksArt", - refTo="MiscEffectPacksArtVariations", + list=false, + name="Group", + refTo="TradeMarketCategoryGroups", type="Key", - width=290 + width=150 }, [5]={ list=true, - name="ObjectArt", - refTo="MiscObjectsArtVariations", - type="Key", - width=150 + name="", + refTo="", + type="Int", + width=300 }, [6]={ - list=true, - name="Variant", + list=false, + name="", refTo="", - type="String", - width=400 + type="Bool", + width=150 }, [7]={ - list=true, - name="BuffVisuals", - refTo="BuffVisualsArtVariations", - type="Key", + list=false, + name="IsDisabled", + refTo="", + type="Bool", width=150 + } + }, + traptools={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=400 }, - [8]={ - list=true, - name="VariantId?", + [2]={ + list=false, + name="DetonationType", refTo="", type="Int", width=100 }, - [9]={ - list=true, - name="ProjectilesArt", - refTo="ProjectilesArtVariations", - type="Key", - width=350 + [3]={ + list=false, + name="ThrowTime", + refTo="", + type="Int", + width=100 + } + }, + treasurehuntermissions={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [10]={ + [2]={ list=false, - name="Stat", - refTo="Stats", + name="", + refTo="", type="Key", width=150 }, - [11]={ - list=true, - name="MonsterVarietiesArt", - refTo="MonsterVarietiesArtVariations", + [3]={ + list=false, + name="", + refTo="", type="Key", width=150 }, - [12]={ + [4]={ list=true, - name="ActiveSkill", - refTo="ActiveSkills", + name="", + refTo="", type="Key", width=300 }, - [13]={ + [5]={ list=true, name="", refTo="", type="Key", - width=150 + width=300 }, - [14]={ + [6]={ list=true, name="", refTo="", - type="String", - width=150 + type="Key", + width=300 }, - [15]={ + [7]={ list=false, name="", refTo="", type="Int", width=150 }, - [16]={ - list=true, - name="ProjectileModArt", - refTo="MiscProjectileModArtVariations", - type="Key", - width=150 - }, - [17]={ - list=true, - name="ParticleArt", - refTo="MiscParticlesArtVariations", - type="Key", - width=150 - }, - [18]={ - list=true, - name="", - refTo="", - type="Key", - width=150 - }, - [19]={ + [8]={ list=false, name="", - refTo="Stats", - type="Key", - width=150 - } - }, - skillcraftingdata={ - [1]={ - list=false, - name="Id", refTo="", - type="String", + type="Int", width=150 }, - [2]={ + [9]={ list=false, name="", refTo="", type="Int", width=150 - } - }, - skillevents={ - [1]={ - list=false, - name="", - refTo="", - type="String", - width=190 - } - }, - skillgeminfo={ - [1]={ + }, + [10]={ list=false, name="", refTo="", type="String", - width=300 + width=240 }, - [2]={ + [11]={ list=false, name="", refTo="", type="String", - width=870 + width=240 }, - [3]={ + [12]={ list=false, - name="", + name="OTFile", refTo="", type="String", - width=430 + width=240 }, - [4]={ + [13]={ list=false, name="", refTo="", - type="Key", + type="Bool", width=150 }, - [5]={ - list=false, - name="", - refTo="", - type="String", - width=520 - }, - [6]={ + [14]={ list=false, name="", refTo="", type="Int", width=150 }, - [7]={ + [15]={ list=false, name="", refTo="", type="Int", width=150 - }, - [8]={ - list=false, - name="", - refTo="", - type="String", - width=240 } }, - skillgemlevelupeffects={ - }, - skillgems={ + triggerbeam={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=400 - }, - [2]={ - list=false, - name="Str", + name="", refTo="", type="Int", - width=40 + width=150 + }, + [2]={ + list=true, + name="", + refTo="MiscBeams", + type="Key", + width=300 }, [3]={ - list=false, - name="Dex", - refTo="", - type="Int", - width=40 + list=true, + name="", + refTo="MiscBeams", + type="Key", + width=300 }, [4]={ - list=false, - name="Int", + list=true, + name="", refTo="", type="Int", - width=40 + width=300 }, [5]={ list=false, - name="VaalGem", - refTo="BaseItemTypes", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, [6]={ list=false, - name="IsVaalGem", + name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [7]={ list=false, - name="MinionGlobalSkillLevelStat", - refTo="Stats", - type="Key", - width=160 + name="", + refTo="", + type="Int", + width=150 }, [8]={ list=false, - name="IsSupport", + name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [9]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [10]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 }, [11]={ - list=false, + list=true, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=300 }, [12]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 }, [13]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Int", + width=150 }, [14]={ list=false, - name="Awakened", - refTo="SkillGems", - type="Key", - width=70 + name="", + refTo="", + type="Bool", + width=150 }, [15]={ - list=false, - name="GemColour", + list=true, + name="", refTo="", - type="Int", - width=100 + type="String", + width=300 }, [16]={ - list=false, - name="MinLevelReq", + list=true, + name="", refTo="", - type="Int", - width=70 + type="Key", + width=300 }, [17]={ list=false, - name="GemLevelProgression", - refTo="ItemExperienceTypes", - type="Key", - width=200 - }, - [18]={ - list=true, - name="MtxSlotType", - refTo="MtxSlotTypes: [MicrotransactionSkillGemEffectSlotTypes]", - type="Key", - width=70 - }, - [19]={ - list=true, name="", refTo="", - type="ShortKey", - width=70 + type="Bool", + width=150 + } + }, + triggeredaudioeventvolumeoverrides={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [20]={ + [2]={ list=false, name="", refTo="", - type="Bool", - width=70 + type="Float", + width=150 }, - [21]={ + [3]={ list=true, - name="GemEffects", - refTo="GemEffects", + name="Actions", + refTo="ActionTypes", type="Key", - width=350 + width=300 }, - [22]={ + [4]={ list=false, name="", refTo="", - type="Bool", - width=70 - }, - [23]={ + type="Float", + width=150 + } + }, + triggerspawners={ + [1]={ list=false, - name="TutorialVideo", + name="Id", refTo="", type="String", - width=100 + width=240 }, - [24]={ - list=false, - name="HoverImage", + [2]={ + list=true, + name="", refTo="", - type="String", - width=100 + type="Int", + width=300 }, - [25]={ + [3]={ list=false, name="", refTo="", type="Int", - width=70 + width=150 }, - [26]={ - list=false, - name="Tier", + [4]={ + list=true, + name="", refTo="", type="Int", - width=70 + width=300 }, - [27]={ + [5]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 + } + }, + triggerstats={ + [1]={ + list=false, + name="Stat", + refTo="Stats", + type="Key", + width=150 }, - [28]={ + [2]={ list=false, name="", refTo="", - type="Int", - width=70 + type="Bool", + width=150 }, - [29]={ + [3]={ list=false, name="", refTo="", type="Bool", - width=70 + width=150 }, - [30]={ - list=true, - name="SearchTerms", - refTo="SkillGemSearchTerms", - type="Key", - width=220 + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 }, - [31]={ + [5]={ list=false, - name="SupportTier", + name="", refTo="", - type="Int", - width=80 + type="Bool", + width=150 } }, - skillgemsearchterms={ + trythenewleagueversions={ [1]={ list=false, - name="Id", + name="League", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Name", + name="Logo", refTo="", type="String", - width=150 + width=240 } }, - skillgemsforuniquestat={ + tutorial={ [1]={ list=false, name="Id", refTo="", - type="Int", - width=50 + type="String", + width=240 }, [2]={ - list=true, - name="SkillGem", - refTo="Skillgems", - type="Key", - width=300 + list=false, + name="UIFile", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="", + name="ClientString", + refTo="ClientStrings", + type="Key", + width=150 + }, + [4]={ + list=false, + name="IsEnabled", refTo="", type="Bool", width=150 }, - [4]={ + [5]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 - } - }, - skillgemsupports={ - [1]={ - list=false, - name="ActiveGem", - refTo="SkillGems", - type="Key", - width=350 }, - [2]={ + [6]={ list=true, - name="SuggestedSupport", - refTo="SkillGems", + name="QuestFlags", + refTo="QuestFlags", type="Key", - width=500 - } - }, - skillminevariations={ - }, - skillmorphdisplay={ - }, - skillmorphdisplayoverlaycondition={ - }, - skillmorphdisplayoverlaystyle={ - }, - skillsurgeeffects={ - }, - skilltotemvariations={ - [1]={ + width=300 + }, + [7]={ list=false, - name="SkillTotem", + name="QuestFlagComplete", + refTo="QuestFlags", + type="Key", + width=150 + }, + [8]={ + list=false, + name="", refTo="", type="Int", - width=60 + width=150 }, - [2]={ - list=false, - name="Variation", + [9]={ + list=true, + name="", refTo="", type="Int", - width=60 + width=300 }, - [3]={ + [10]={ list=false, - name="MonsterVariety", - refTo="MonsterVarieties", - type="Key", - width=390 - } - }, - skilltrapvariations={ - }, - skillweaponeffects={ - [1]={ + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ list=false, name="", refTo="", - type="String", - width=190 + type="Bool", + width=150 }, - [2]={ + [12]={ list=false, name="", refTo="", type="Int", width=150 + }, + [13]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 } }, - socketaudioevents={ + tutorialleaguequestflags={ + [1]={ + list=false, + name="Id", + refTo="", + type="Int", + width=150 + } }, - socketnotches={ + typetags={ [1]={ list=false, - name="", + name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="", - refTo="", - type="String", + name="Tag", + refTo="Tags", + type="Key", width=150 }, [3]={ list=false, - name="", + name="Name", refTo="", type="String", - width=370 + width=240 }, [4]={ list=false, - name="", + name="Icon", refTo="", type="String", - width=390 + width=240 }, [5]={ list=false, name="", - refTo="", - type="String", - width=390 + refTo="Stats", + type="Key", + width=150 } }, - soulcorelimits={ + uitalkcategories={ + }, + uitalktext={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Limit", - refTo="", - type="Int", + name="UITalkCategoriesKey", + refTo="UITalkCategories", + type="Enum", width=150 }, [3]={ list=false, - name="Description", + name="OGGFile", refTo="", type="String", - width=200 + width=240 }, [4]={ list=false, - name="", + name="Text", refTo="", - type="Bool", - width=150 - } - }, - soulcores={ - [1]={ - list=false, - name="BaseItemTypes", - refTo="BaseItemTypes", - type="Key", - width=350 + type="String", + width=240 }, - [2]={ + [5]={ list=false, - name="LevelReq", + name="", refTo="", - type="Int", - width=100 - }, - [3]={ - list=false, - name="Limit", - refTo="SoulCoreLimits", - type="Key", + type="Bool", width=150 }, - [4]={ - list=false, - name="Description", - refTo="ClientStrings2", - type="Key", - width=340 - }, - [5]={ + [6]={ list=false, - name="Type", - refTo="SoulCoreTypes", + name="NPCTextAudio", + refTo="NPCTextAudio", type="Key", width=150 } }, - soulcoresperclass={ + ultimatumencounters={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=300 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="ItemClass", - refTo="ItemClasses", - type="Key", - width=150 + name="Description", + refTo="", + type="String", + width=240 }, [3]={ list=true, - name="Stats", - refTo="Stats", + name="ModTypes", + refTo="UltimatumModifierTypes", type="Key", - width=800 + width=300 }, [4]={ - list=true, - name="StatsValues", - refTo="", - type="Int", - width=150 - } - }, - soulcorestatcategories={ - [1]={ list=false, - name="Id", + name="BossARMFile", refTo="", type="String", - width=150 + width=240 }, - [2]={ - list=true, - name="ItemClass", - refTo="ItemClasses", + [5]={ + list=false, + name="Type", + refTo="UltimatumEncounterTypes", type="Key", width=150 }, - [3]={ + [6]={ list=false, - name="Text", + name="Icon", refTo="", type="String", - width=250 + width=240 }, - [4]={ + [7]={ list=false, - name="", + name="HASH16", refTo="", type="Int", - width=90 - } - }, - soulcorestats={ - [1]={ - list=false, - name="Id", - refTo="SoulCores", - type="Key", - width=350 + width=150 }, - [2]={ + [8]={ list=false, - name="Category", - refTo="SoulCoreStatCategories", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, - [3]={ - list=true, - name="Stats", - refTo="Stats", - type="Key", - width=500 - }, - [4]={ - list=true, - name="StatValue", + [9]={ + list=false, + name="", refTo="", type="Int", width=150 }, - [5]={ - list=true, - name="BondedStats", - refTo="Stats", - type="Key", - width=520 - }, - [6]={ - list=true, - name="BondedValues", + [10]={ + list=false, + name="", refTo="", - type="Int", + type="Bool", width=150 } }, - soulcoretypes={ + ultimatumencountertypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="EffectStat", - refTo="Stats", - type="Key", - width=200 + name="Name", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 }, - [3]={ + [5]={ list=false, - name="Name", - refTo="", - type="String", - width=200 + name="QuestFlag", + refTo="QuestFlags", + type="Key", + width=150 }, - [4]={ + [6]={ list=false, - name="CountStat", - refTo="Stats", + name="NPCText", + refTo="NPCTextAudio", type="Key", - width=200 + width=150 } }, - soundeffects={ + ultimatumencountertypesserver={ + }, + ultimatumitemisedrewards={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="", + name="HASH16", refTo="", - type="String", - width=480 + type="Int", + width=150 }, [3]={ list=false, - name="", + name="RewardText", refTo="", type="String", - width=360 + width=240 }, [4]={ list=false, - name="", - refTo="", - type="Bool", + name="ItemVisualIdentityKey", + refTo="ItemVisualIdentity", + type="Key", width=150 }, [5]={ list=false, - name="", + name="RewardType", refTo="", - type="String", + type="Int", width=150 - } - }, - spawnadditionalchestsorclusters={ - }, - spawnobject={ - }, - specialrooms={ - }, - specialtiles={ - }, - spectreoverrides={ - [1]={ - list=false, - name="Monster", - refTo="MonsterVarieties", - type="Key", - width=500 }, - [2]={ + [6]={ list=false, - name="Spectre", - refTo="MonsterVarieties", + name="SacrificeItem", + refTo="BaseItemTypes", type="Key", - width=500 + width=150 }, - [3]={ - list=true, - name="", + [7]={ + list=false, + name="SacrificeAmount", refTo="", - type="Key", + type="Int", width=150 - } - }, - stampchoice={ - }, - stampfamily={ - }, - startingpassiveskills={ - [1]={ + }, + [8]={ list=false, - name="Id", + name="SacrificeText", refTo="", type="String", + width=240 + }, + [9]={ + list=false, + name="", + refTo="", + type="Bool", width=150 }, - [2]={ + [10]={ list=true, - name="PassiveSkills", - refTo="PassiveSkills", + name="TrialMods", + refTo="Mods", type="Key", width=300 } }, - stashid={ - }, - stashtabaffinities={ - }, - stashtype={ - }, - statconvertaltattackcontainer={ - }, - statdescriptionfunctions={ + ultimatummapmodifiers={ [1]={ list=false, - name="Name", - refTo="", - type="String", - width=280 + name="Stat", + refTo="Stats", + type="Key", + width=150 }, [2]={ - list=false, - name="Stat", - refTo="", - type="String", - width=310 + list=true, + name="Mods", + refTo="UltimatumModifiers", + type="Key", + width=300 } }, - statistictrackingmicrotransactions={ - }, - statistictrackingmicrotransactionsstatistics={ - }, - stats={ + ultimatummodifiers={ [1]={ list=false, name="Id", refTo="", type="String", - width=310 + width=240 }, [2]={ - list=false, - name="", - refTo="", - type="Bool", - width=50 + list=true, + name="Types", + refTo="UltimatumModifierTypes", + type="Key", + width=300 }, [3]={ - list=false, - name="Local", - refTo="", - type="Bool", - width=50 + list=true, + name="ExtraMods", + refTo="Mods", + type="Key", + width=300 }, [4]={ - list=false, - name="WeaponLocal", - refTo="", - type="Bool", - width=80 + list=true, + name="TypesFiltered", + refTo="UltimatumModifierTypes", + type="Key", + width=300 }, [5]={ - list=false, - name="Semantic", - refTo="StatSemantics", - type="Enum", - width=70 + list=true, + name="PreviousTier", + refTo="UltimatumModifiers", + type="Key", + width=300 }, [6]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, [7]={ list=false, - name="Virtual", + name="Name", refTo="", - type="Bool", - width=50 + type="String", + width=240 }, [8]={ list=false, - name="Main Hand Stat", - refTo="Stats", - type="ShortKey", - width=350 + name="Icon", + refTo="", + type="String", + width=240 }, [9]={ list=false, - name="Off Hand Stat", - refTo="Stats", - type="ShortKey", - width=350 + name="HASH16", + refTo="", + type="UInt16", + width=150 }, [10]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, [11]={ - list=false, - name="Hash", + list=true, + name="", refTo="", - type="UInt", - width=80 + type="String", + width=300 }, [12]={ list=true, - name="Skills", - refTo="", - type="String", - width=150 + name="BuffTemplates", + refTo="BuffTemplates", + type="Key", + width=300 }, [13]={ list=false, - name="PassiveCategory", - refTo="PassiveSkillStatCategories", - type="Key", - width=110 + name="Tier", + refTo="", + type="Int", + width=150 }, [14]={ list=false, - name="CannotGrantToMinion", + name="Description", refTo="", - type="Bool", - width=120 + type="String", + width=240 }, [15]={ - list=false, + list=true, name="", refTo="", - type="Bool", - width=50 + type="Key", + width=300 }, [16]={ list=false, - name="IsScalable", - refTo="", - type="Bool", - width=70 + name="TextAudio", + refTo="NPCTextAudio", + type="Key", + width=150 }, [17]={ - list=true, - name="ContextFlags", - refTo="VirtualStatContextFlags", + list=false, + name="", + refTo="", type="Key", - width=270 + width=150 }, [18]={ list=true, - name="DotFlag", - refTo="VirtualStatContextFlags", + name="MapStats", + refTo="Stats", type="Key", - width=150 + width=300 }, [19]={ + list=true, + name="MapStatValues", + refTo="", + type="Int", + width=300 + }, + [20]={ + list=true, + name="MapMods", + refTo="Mods", + type="Key", + width=300 + } + }, + ultimatummodifiertypes={ + [1]={ list=false, - name="WeaponHandCheck", + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", refTo="", type="Bool", width=150 } }, - statsaffectinggeneration={ + ultimatummonsterpackfamily={ [1]={ list=false, - name="", - refTo="Stats", - type="Key", - width=440 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, @@ -18151,1404 +60941,1493 @@ return { width=150 } }, - statsets={ - }, - statsfromskillstats={ + ultimatumrooms={ [1]={ list=false, - name="SkillCondition", - refTo="Stats", - type="Key", - width=280 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="GrantedFlag", - refTo="Stats", - type="Key", - width=270 + name="ARMFile", + refTo="", + type="String", + width=240 }, [3]={ list=false, - name="FlagValue", + name="EncounterType", + refTo="UltimatumEncounterTypes", + type="Key", + width=150 + }, + [4]={ + list=false, + name="", refTo="", - type="Bool", + type="Int", width=150 - } - }, - statvisuals={ - }, - strdexintmissionextrarequirement={ - }, - strdexintmissions={ - }, - strongboxes={ - }, - strongboxpacks={ - [1]={ + }, + [5]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [2]={ + [6]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [3]={ + [7]={ list=false, - name="MonsterPackKey", - refTo="MonsterPacks", + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="NPCAudio", + refTo="NPCTextAudio", type="Key", - width=270 + width=150 } }, - suicideexplosion={ + ultimatumtriallength={ [1]={ list=false, - name="Id", + name="MinAreaLevel", refTo="", type="Int", width=150 }, [2]={ list=false, - name="", - refTo="MonsterVarieties", - type="Key", - width=470 + name="Length", + refTo="", + type="Int", + width=150 + } + }, + ultimatumtrialmasteraudio={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Variant", + refTo="", + type="Int", + width=150 }, [3]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, [4]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=150 }, [5]={ list=false, - name="", - refTo="", - type="Bool", + name="TextAudio", + refTo="NPCTextAudio", + type="Key", width=150 }, [6]={ list=false, - name="", + name="RoundsMin", refTo="", - type="Bool", + type="Int", width=150 }, [7]={ list=false, - name="", + name="RoundsMax", refTo="", - type="Bool", + type="Int", width=150 + } + }, + ultimatumwagertypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [8]={ + [2]={ list=false, - name="", + name="HASH16", refTo="", - type="Int", + type="UInt16", width=150 }, - [9]={ + [3]={ list=false, - name="", + name="CurrencyItem", + refTo="CurrencyItems", + type="Key", + width=150 + }, + [4]={ + list=false, + name="Count", refTo="", - type="Bool", + type="Int", width=150 + }, + [5]={ + list=false, + name="DisplayText", + refTo="", + type="String", + width=240 } }, - summonedspecificbarrels={ - }, - summonedspecificmonsters={ + uncutgemadditionaltiers={ [1]={ list=false, - name="Id", + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=270 + }, + [2]={ + list=false, + name="PlayerLevel", refTo="", type="Int", - width=80 + width=100 + }, + [3]={ + list=false, + name="GemLevel", + refTo="", + type="Int", + width=100 + }, + [4]={ + list=false, + name="Weight", + refTo="", + type="Int", + width=100 + } + }, + uncutgems={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=300 }, [2]={ list=false, - name="MonsterVarietiesKey", - refTo="MonsterVarieties", + name="GemLevel", + refTo="", + type="Int", + width=150 + } + }, + uncutgemtiers={ + [1]={ + list=false, + name="ItemClass", + refTo="ItemClasses", type="Key", - width=550 + width=250 }, - [3]={ + [2]={ list=false, - name="", + name="GemLevel", refTo="", type="Int", - width=80 + width=100 }, - [4]={ + [3]={ list=false, - name="", + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=390 + } + }, + uniquechests={ + [1]={ + list=false, + name="Id", refTo="", + type="String", + width=220 + }, + [2]={ + list=false, + name="WordsKey", + refTo="Words", type="Key", - width=80 + width=150 }, - [5]={ + [3]={ list=false, - name="", + name="FlavourTextKey", + refTo="FlavourText", + type="Key", + width=150 + }, + [4]={ + list=false, + name="MinLevel", refTo="", - type="Bool", - width=80 + type="Int", + width=150 + }, + [5]={ + list=true, + name="ModsKeys", + refTo="Mods", + type="Key", + width=150 }, [6]={ list=false, - name="", + name="SpawnWeight", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [7]={ - list=false, + list=true, name="", refTo="", type="Int", - width=80 + width=300 }, [8]={ list=false, - name="", + name="AOFile", refTo="", - type="Int", - width=80 + type="String", + width=240 }, [9]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, [10]={ - list=false, + list=true, name="", refTo="", - type="Key", - width=80 + type="Int", + width=300 }, [11]={ list=false, - name="", - refTo="", + name="AppearanceChestsKey", + refTo="Chests", type="Key", - width=80 + width=150 }, [12]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="ChestsKey", + refTo="Chests", + type="Key", + width=150 }, [13]={ - list=false, - name="", - refTo="", - type="Bool", - width=80 + list=true, + name="Achievement", + refTo="AchievementItems", + type="Key", + width=300 }, [14]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [15]={ list=false, name="", refTo="", - type="String", - width=80 + type="Int", + width=150 }, [16]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, [17]={ list=false, - name="", - refTo="", - type="Bool", - width=80 + name="RequiredMapStat", + refTo="Stats", + type="Key", + width=150 + } + }, + uniquefragments={ + }, + uniquegoldprices={ + [1]={ + list=false, + name="Name", + refTo="Words", + type="Key", + width=150 }, - [18]={ + [2]={ list=false, - name="", + name="Price", refTo="", type="Int", - width=80 + width=150 } }, - summonedspecificmonstersondeath={ - }, - supershaperinfluence={ - }, - supporterpacksets={ + uniquejewellimits={ + [1]={ + list=false, + name="JewelName", + refTo="Words", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Limit", + refTo="", + type="Int", + width=150 + } }, - supportgemfamily={ + uniquemageslegacy={ [1]={ list=false, - name="Id", + name="Name", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Name", + name="DisplayText", refTo="", type="String", - width=150 + width=240 + }, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=300 + }, + [4]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=300 } }, - supportgems={ + uniquemapinfo={ + }, + uniquemaps={ [1]={ list=false, - name="SkillGem", - refTo="SkillGems", + name="ItemVisualIdentityKey", + refTo="ItemVisualIdentity", type="Key", - width=340 + width=150 }, [2]={ list=false, - name="", - refTo="", - type="Int", - width=50 + name="WorldAreasKey", + refTo="WorldAreas", + type="Key", + width=150 }, [3]={ list=false, - name="DDS", - refTo="", - type="String", + name="WordsKey", + refTo="Words", + type="Key", width=150 }, [4]={ - list=true, - name="Family", - refTo="SupportGemFamily", + list=false, + name="FlavourTextKey", + refTo="FlavourText", type="Key", width=150 }, [5]={ list=false, - name="Lineage", + name="", refTo="", type="Bool", width=150 }, [6]={ list=false, - name="FlavourText", - refTo="FlavourText", - type="Key", - width=300 + name="Name", + refTo="", + type="String", + width=240 }, [7]={ list=false, - name="", + name="IsDropDisabled", refTo="", + type="Bool", + width=150 + } + }, + uniqueorigins={ + [1]={ + list=false, + name="Unique", + refTo="Words", type="Key", - width=20 + width=150 }, - [8]={ + [2]={ list=false, - name="SocketVisual", - refTo="SupportGemSocketedVisualIdentity", + name="Origin", + refTo="Origin", type="Key", - width=200 + width=150 } }, - surgecategory={ - }, - surgeeffectpackartvariations={ - }, - surgeeffects={ - }, - surgetypes={ - }, - synthesis={ - }, - synthesisareas={ - }, - synthesisareasize={ - }, - synthesisbonuses={ - }, - synthesisbrackets={ - }, - synthesisfragmentdialogue={ - }, - synthesisglobalmods={ - }, - synthesismonsterexperienceperlevel={ - }, - synthesisrewardcategories={ - }, - synthesisrewardtypes={ + uniquesetnames={ }, - tablecharge={ + uniquestashlayout={ [1]={ list=false, - name="", - refTo="", - type="Int", - width=80 + name="WordsKey", + refTo="Words", + type="Key", + width=150 }, [2]={ list=false, - name="", - refTo="", - type="Float", - width=80 + name="ItemVisualIdentity", + refTo="ItemVisualIdentity", + type="Key", + width=150 }, [3]={ list=false, - name="", - refTo="", - type="Float", + name="UniqueStashTypes", + refTo="UniqueStashTypes", + type="Key", width=150 }, [4]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [5]={ list=false, name="", refTo="", - type="Key", - width=250 + type="Int", + width=150 }, [6]={ list=false, - name="", + name="OverrideWidth", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, [7]={ - list=true, - name="", + list=false, + name="OverrideHeight", refTo="", - type="Key", - width=320 + type="Int", + width=150 }, [8]={ list=false, - name="", + name="ShowIfEmptyChallengeLeague", refTo="", - type="Key", - width=80 + type="Bool", + width=150 }, [9]={ list=false, - name="", + name="ShowIfEmptyStandard", refTo="", - type="Int", - width=80 + type="Bool", + width=150 }, [10]={ list=false, - name="", + name="RenamedVersion", + refTo="UniqueStashLayout", + type="ShortKey", + width=150 + }, + [11]={ + list=false, + name="BaseVersion", + refTo="UniqueStashLayout", + type="ShortKey", + width=150 + }, + [12]={ + list=false, + name="IsAlternateArt", + refTo="", + type="Bool", + width=150 + } + }, + uniquestashtypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=100 + }, + [2]={ + list=false, + name="Order", refTo="", type="Int", width=80 }, - [11]={ + [3]={ list=false, - name="", + name="Width", refTo="", type="Int", width=80 }, - [12]={ + [4]={ list=false, - name="", + name="Height", refTo="", type="Int", width=80 }, - [13]={ + [5]={ list=false, - name="", + name="TotalCount", refTo="", - type="Bool", + type="Int", width=80 }, - [14]={ + [6]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=80 }, - [15]={ + [7]={ list=false, - name="", + name="Name", refTo="", - type="Key", - width=80 + type="String", + width=100 }, - [16]={ + [8]={ list=false, - name="", + name="StandardCount", refTo="", - type="Key", - width=80 + type="Int", + width=120 }, - [17]={ + [9]={ list=false, - name="", + name="Image", + refTo="", + type="String", + width=150 + }, + [10]={ + list=false, + name="ChallengeLeagueCount", refTo="", type="Int", - width=80 + width=120 }, - [18]={ + [11]={ list=false, - name="", + name="Disabled", refTo="", type="Bool", width=80 + } + }, + userinterfacemodecondition={ + }, + utilityflaskbuffs={ + [1]={ + list=false, + name="BuffDefinitionsKey", + refTo="BuffDefinitions", + type="Key", + width=250 }, - [19]={ + [2]={ + list=true, + name="StatValues", + refTo="", + type="Int", + width=240 + }, + [3]={ + list=true, + name="StatValues2", + refTo="", + type="Int", + width=250 + }, + [4]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Key", + width=250 + } + }, + villageuniquedisenchantvalues={ + [1]={ + list=false, + name="Unique", + refTo="Words", + type="Key", + width=150 }, - [20]={ + [2]={ + list=false, + name="Value", + refTo="", + type="Float", + width=150 + }, + [3]={ + list=false, + name="RuthlessValue", + refTo="", + type="Float", + width=150 + } + }, + virtualstatcontextflags={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + }, + [2]={ list=false, name="", refTo="", type="Int", width=80 + } + }, + visualpinproperties={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 }, - [21]={ + [2]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Key", + width=150 }, - [22]={ + [3]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Key", + width=150 }, - [23]={ + [4]={ list=false, name="", refTo="", - type="Int", - width=80 + type="Key", + width=150 }, - [24]={ + [5]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [25]={ + [6]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, - [26]={ + [7]={ list=false, name="", refTo="", - type="Bool", - width=80 + type="Int", + width=150 }, - [27]={ + [8]={ list=false, name="", refTo="", type="Bool", - width=80 + width=150 }, - [28]={ + [9]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [29]={ + [10]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Float", + width=150 }, - [30]={ + [11]={ list=false, name="", refTo="", - type="Bool", - width=50 + type="Int", + width=150 }, - [31]={ + [12]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [32]={ + [13]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 } }, - tablemonsterspawners={ - }, - tacticiantotembuffs={ + votestate={ [1]={ list=false, name="Id", - refTo="ActiveSkills", - type="Key", - width=150 + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="BuffTemplate", - refTo="BuffTemplates", - type="Key", - width=300 + name="Text", + refTo="", + type="String", + width=240 } }, - tags={ + votetype={ [1]={ list=false, name="Id", refTo="", type="String", - width=150 + width=240 }, [2]={ list=false, - name="Hash32", + name="Text", refTo="", - type="UInt", - width=150 + type="String", + width=240 }, [3]={ list=false, - name="DisplayText", + name="AcceptText", refTo="", type="String", - width=210 + width=240 }, [4]={ - list=true, - name="", - refTo="", - type="Key", - width=150 - }, - [5]={ list=false, - name="Text", + name="RejectText", refTo="", type="String", - width=150 - } - }, - talismanmonstermods={ - }, - talismanpacks={ - }, - talismans={ - }, - talkingpetaudioevents={ - }, - talkingpetnpcaudio={ - }, - talkingpets={ - }, - tencentautolootpetcurrencies={ - }, - tencentautolootpetcurrenciesexcludable={ - }, - terrainplugins={ - }, - threetoonerecipes={ - [1]={ + width=240 + }, + [5]={ list=false, name="", refTo="", - type="String", + type="Int", width=150 }, - [2]={ - list=false, - name="", - refTo="Mods", - type="Key", - width=260 - }, - [3]={ + [6]={ list=false, name="", - refTo="Mods", - type="Key", - width=280 + refTo="", + type="Int", + width=150 }, - [4]={ + [7]={ list=false, name="", refTo="", type="Int", width=150 }, - [5]={ + [8]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 } }, - tieredmicrotransactions={ - }, - tieredmicrotransactionsvisuals={ - }, - tips={ - }, - topologies={ - }, - tormentspirits={ + warbandsgraph={ [1]={ list=false, - name="MonsterVariety", - refTo="MonsterVarieties", + name="WorldAreasKey", + refTo="WorldAreas", type="Key", width=150 }, [2]={ list=true, - name="SpiritMods", + name="Connections", refTo="", - type="Key", - width=60 - }, - [3]={ - list=true, - name="TouchedMods", - refTo="Mods", - type="Key", + type="Int", width=300 - }, - [4]={ - list=true, - name="MonsterPossessedMods1", - refTo="Mods", + } + }, + warbandsmapgraph={ + [1]={ + list=false, + name="WorldAreasKey", + refTo="WorldAreas", type="Key", width=150 }, - [5]={ - list=false, - name="MinZoneLevel", + [2]={ + list=true, + name="Connections", refTo="", type="Int", - width=90 - }, - [6]={ + width=300 + } + }, + warbandspackmonsters={ + [1]={ list=false, - name="MaxZoneLevel", + name="Id", refTo="", - type="Int", - width=90 + type="String", + width=240 }, - [7]={ + [2]={ list=false, - name="SpawnWeight", + name="", refTo="", type="Int", - width=90 - }, - [8]={ - list=false, - name="SummonedMonster", - refTo="MonsterVarieties", - type="Key", - width=110 + width=150 }, - [9]={ + [3]={ list=false, name="", refTo="", - type="Int", - width=50 - }, - [10]={ - list=true, - name="RarePossessedMod", - refTo="Mods", - type="Key", + type="Bool", width=150 }, - [11]={ - list=true, - name="UniquePossessedMod", - refTo="Mods", - type="Key", + [4]={ + list=false, + name="", + refTo="", + type="Bool", width=150 }, - [12]={ + [5]={ list=false, - name="SpawnStat", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Bool", width=150 }, - [13]={ + [6]={ list=false, name="", refTo="", - type="Int", - width=50 + type="Bool", + width=150 }, - [14]={ + [7]={ list=false, name="", refTo="", type="Int", - width=50 + width=150 }, - [15]={ + [8]={ list=true, - name="PlayerPossessedMods", - refTo="Mods", + name="Tier4_MonsterVarietiesKeys", + refTo="MonsterVarieties", type="Key", - width=400 + width=300 }, - [16]={ + [9]={ list=true, - name="Quest", - refTo="QuestFlags", + name="Tier3_MonsterVarietiesKeys", + refTo="MonsterVarieties", type="Key", - width=100 + width=300 }, - [17]={ - list=false, - name="CharmStat", - refTo="Stats", + [10]={ + list=true, + name="Tier2_MonsterVarietiesKeys", + refTo="MonsterVarieties", type="Key", - width=150 + width=300 }, - [18]={ + [11]={ list=true, - name="", - refTo="", + name="Tier1_MonsterVarietiesKeys", + refTo="MonsterVarieties", type="Key", - width=150 + width=300 }, - [19]={ - list=true, - name="", + [12]={ + list=false, + name="Tier1Name", refTo="", - type="Int", - width=150 + type="String", + width=240 }, - [20]={ + [13]={ list=false, - name="", + name="Tier2Name", refTo="", - type="Key", - width=20 + type="String", + width=240 }, - [21]={ + [14]={ list=false, - name="MonsterPossessedMods2", - refTo="Mods", - type="Key", - width=150 - }, - [22]={ - list=true, - name="TalismanBase", - refTo="BaseItemTypes", - type="Key", - width=150 + name="Tier3Name", + refTo="", + type="String", + width=240 }, - [23]={ + [15]={ list=false, - name="", + name="Tier4Name", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [24]={ + [16]={ list=false, - name="", + name="Tier1Art", refTo="", - type="Int", - width=50 + type="String", + width=240 }, - [25]={ - list=true, - name="", - refTo="", - type="Int", - width=50 - } - }, - totemdefendervarieties={ - }, - touchinteractiontype={ - }, - trademarketcategory={ - }, - traptools={ - [1]={ + [17]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=400 + name="Tier2Art", + refTo="", + type="String", + width=240 }, - [2]={ + [18]={ list=false, - name="DetonationType", + name="Tier3Art", refTo="", - type="Int", - width=100 + type="String", + width=240 }, - [3]={ + [19]={ list=false, - name="ThrowTime", + name="Tier4Art", refTo="", - type="Int", - width=100 + type="String", + width=240 } }, - treasurehuntermissions={ - }, - triggerbeam={ - }, - triggeredaudioeventvolumeoverrides={ - }, - triggerspawners={ - }, - trythenewleagueversions={ - }, - tutorial={ - }, - typetags={ - }, - uitalkcategories={ - }, - uitalktext={ - }, - ultimatumencounters={ - }, - ultimatumencountertypes={ - }, - ultimatumencountertypesserver={ - }, - ultimatumitemisedrewards={ - }, - ultimatummapmodifiers={ - }, - ultimatummodifiers={ - }, - ultimatummodifiertypes={ - }, - ultimatummonsterpackfamily={ - }, - ultimatumrooms={ - }, - ultimatumtriallength={ - }, - ultimatumtrialmasteraudio={ - }, - ultimatumwagertypes={ - }, - uncutgemadditionaltiers={ + warbandspacknumbers={ [1]={ list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=270 + name="Id", + refTo="", + type="String", + width=240 }, [2]={ list=false, - name="PlayerLevel", + name="SpawnChance", refTo="", type="Int", - width=100 + width=150 }, [3]={ list=false, - name="GemLevel", + name="MinLevel", refTo="", type="Int", - width=100 + width=150 }, [4]={ list=false, - name="Weight", - refTo="", - type="Int", - width=100 - } - }, - uncutgems={ - [1]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=300 - }, - [2]={ - list=false, - name="GemLevel", + name="MaxLevel", refTo="", type="Int", width=150 - } - }, - uncutgemtiers={ - [1]={ - list=false, - name="ItemClass", - refTo="ItemClasses", - type="Key", - width=250 }, - [2]={ + [5]={ list=false, - name="GemLevel", + name="Tier4Number", refTo="", type="Int", - width=100 + width=150 }, - [3]={ - list=false, - name="BaseItemType", - refTo="BaseItemTypes", - type="Key", - width=390 - } - }, - uniquechests={ - [1]={ + [6]={ list=false, name="", refTo="", - type="String", - width=220 + type="Int", + width=150 }, - [2]={ + [7]={ list=false, - name="", + name="Tier3Number", refTo="", - type="Key", + type="Int", width=150 }, - [3]={ + [8]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, - [4]={ + [9]={ list=false, - name="", + name="Tier2Number", refTo="", type="Int", width=150 }, - [5]={ + [10]={ list=false, name="", refTo="", - type="Key", + type="Int", width=150 }, - [6]={ + [11]={ list=false, - name="", + name="Tier1Number", refTo="", - type="Key", + type="Int", width=150 } }, - uniquefragments={ - }, - uniquejewellimits={ + waystonestashtabsubgroups={ [1]={ list=false, - name="", + name="Tier", refTo="", - type="Key", + type="Int", width=150 }, [2]={ list=false, - name="", + name="Text", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Colour", refTo="", type="Int", width=150 + }, + [4]={ + list=false, + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=150 } }, - uniquemapinfo={ - }, - uniquemaps={ - }, - uniquesetnames={ + weaponarmourcommon={ }, - uniquestashlayout={ + weaponbufforbstype={ [1]={ list=false, - name="WordsKey", - refTo="Words", + name="", + refTo="", type="Key", width=150 }, [2]={ list=false, - name="ItemVisualIdentity", - refTo="ItemVisualIdentity", + name="", + refTo="", type="Key", width=150 }, [3]={ list=false, - name="UniqueStashTypes", - refTo="UniqueStashTypes", - type="Key", - width=150 + name="", + refTo="", + type="String", + width=240 }, [4]={ list=false, name="", refTo="", - type="Int", + type="Bool", width=150 }, [5]={ list=false, name="", refTo="", - type="Int", + type="Float", width=150 }, [6]={ list=false, - name="OverrideWidth", + name="", refTo="", - type="Int", + type="Float", width=150 }, [7]={ list=false, - name="OverrideHeight", + name="", refTo="", - type="Int", + type="Float", width=150 }, [8]={ list=false, - name="ShowIfEmptyChallengeLeague", + name="", refTo="", - type="Bool", + type="Int", width=150 }, [9]={ list=false, - name="ShowIfEmptyStandard", + name="", refTo="", - type="Bool", + type="Int", width=150 }, [10]={ list=false, - name="RenamedVersion", - refTo="UniqueStashLayout", - type="ShortKey", + name="", + refTo="", + type="Bool", width=150 - }, - [11]={ + } + }, + weaponclasses={ + [1]={ list=false, - name="BaseVersion", - refTo="UniqueStashLayout", - type="ShortKey", + name="ItemClass", + refTo="ItemClasses", + type="Key", width=150 }, - [12]={ + [2]={ list=false, - name="IsAlternateArt", + name="MaxRange", refTo="", - type="Bool", + type="Int", width=150 + }, + [3]={ + list=false, + name="DisplayName", + refTo="ClientStrings", + type="Key", + width=460 } }, - uniquestashtypes={ + weapondamagescaling={ + }, + weaponimpactsounddata={ [1]={ list=false, name="Id", refTo="", type="String", - width=100 + width=240 }, [2]={ list=false, - name="Order", + name="", refTo="", type="Int", - width=80 + width=150 }, [3]={ list=false, - name="Width", + name="", refTo="", type="Int", - width=80 + width=150 }, [4]={ list=false, - name="Height", + name="", refTo="", type="Int", - width=80 + width=150 }, [5]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [6]={ list=false, name="", refTo="", type="Int", - width=80 + width=150 }, [7]={ list=false, - name="Name", + name="", refTo="", - type="String", - width=100 + type="Int", + width=150 }, [8]={ list=false, - name="StandardCount", + name="", refTo="", type="Int", - width=120 - }, - [9]={ - list=false, - name="Image", - refTo="", - type="String", width=150 }, - [10]={ + [9]={ list=false, - name="ChallengeLeagueCount", + name="", refTo="", type="Int", - width=120 - }, - [11]={ - list=false, - name="Disabled", - refTo="", - type="Bool", - width=80 + width=150 } }, - userinterfacemodecondition={ - }, - utilityflaskbuffs={ + weaponpassiveskills={ [1]={ list=false, - name="BuffDefinitionsKey", - refTo="BuffDefinitions", - type="Key", - width=250 + name="Id", + refTo="", + type="String", + width=230 }, [2]={ - list=true, - name="StatValues", + list=false, + name="Tier", refTo="", type="Int", - width=240 + width=150 }, [3]={ + list=false, + name="Mod", + refTo="Mods", + type="Key", + width=150 + }, + [4]={ list=true, - name="StatValues2", + name="NodeSpawnLocation", refTo="", type="Int", - width=250 + width=300 }, - [4]={ + [5]={ + list=true, + name="Tags", + refTo="CrucibleTags", + type="Key", + width=300 + }, + [6]={ list=false, - name="", + name="Icon", refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Type", + refTo="WeaponPassiveSkillTypes", type="Key", - width=250 + width=150 + }, + [8]={ + list=true, + name="Achievements", + refTo="AchievementItems", + type="Key", + width=300 } }, - villageuniquedisenchantvalues={ + weaponpassiveskilltypes={ [1]={ list=false, - name="Unique", - refTo="Words.Text", - type="Key", - width=150 + name="Id", + refTo="", + type="String", + width=250 }, [2]={ list=false, name="", refTo="", - type="Float", + type="Int", width=150 } }, - virtualstatcontextflags={ + weaponpassivetreebalanceperitemlevel={ [1]={ list=false, name="Id", refTo="", - type="String", - width=150 + type="Int", + width=230 }, [2]={ list=false, - name="", + name="Bar1", refTo="", type="Int", - width=80 - } - }, - visualpinproperties={ - }, - votestate={ - }, - votetype={ - }, - warbandsgraph={ - }, - warbandsmapgraph={ - }, - warbandspackmonsters={ - }, - warbandspacknumbers={ - }, - weaponarmourcommon={ - }, - weaponclasses={ - [1]={ + width=150 + }, + [3]={ list=false, - name="ItemClass", - refTo="ItemClasses", - type="Key", + name="Bar2", + refTo="", + type="Int", width=150 }, - [2]={ + [4]={ list=false, - name="MaxRange", + name="Bar3", refTo="", type="Int", width=150 }, - [3]={ + [5]={ list=false, - name="DisplayName", - refTo="ClientStrings", - type="Key", - width=460 - } - }, - weapondamagescaling={ - }, - weaponimpactsounddata={ - }, - weaponpassiveskills={ - [1]={ + name="Bar4", + refTo="", + type="Int", + width=150 + }, + [6]={ list=false, - name="Id", + name="Bar5", refTo="", - type="String", - width=230 + type="Int", + width=150 } }, - weaponpassiveskilltypes={ + weaponpassivetreeuniquebasetypes={ [1]={ list=false, - name="Id", + name="UniqueBase", + refTo="BaseItemTypes", + type="Key", + width=500 + }, + [2]={ + list=false, + name="", refTo="", - type="String", - width=250 + type="Int", + width=150 } }, - weaponpassivetreebalanceperitemlevel={ + weaponsoundtypes={ [1]={ list=false, name="Id", refTo="", type="String", - width=230 - } - }, - weaponpassivetreeuniquebasetypes={ - [1]={ + width=240 + }, + [2]={ list=false, - name="UniqueBase", - refTo="BaseItemTypes", + name="Sound", + refTo="", type="String", - width=500 + width=240 } }, - weaponsoundtypes={ - }, weapontypes={ [1]={ list=false, @@ -19666,202 +62545,454 @@ return { }, [9]={ list=false, - name="MaxFire", - refTo="Stats", - type="Key", + name="MaxFire", + refTo="Stats", + type="Key", + width=150 + }, + [10]={ + list=false, + name="MinCold", + refTo="Stats", + type="Key", + width=150 + }, + [11]={ + list=false, + name="MaxCold", + refTo="Stats", + type="Key", + width=150 + }, + [12]={ + list=false, + name="MinLightning", + refTo="Stats", + type="Key", + width=150 + }, + [13]={ + list=false, + name="MaxLightning", + refTo="Stats", + type="Key", + width=150 + }, + [14]={ + list=false, + name="MinChaos", + refTo="Stats", + type="Key", + width=150 + }, + [15]={ + list=false, + name="MaxChaos", + refTo="Stats", + type="Key", + width=150 + }, + [16]={ + list=false, + name="CritMulti", + refTo="Stats", + type="Key", + width=150 + }, + [17]={ + list=false, + name="PhysDamage", + refTo="Stats", + type="Key", + width=150 + }, + [18]={ + list=false, + name="FireDamage", + refTo="Stats", + type="Key", + width=150 + }, + [19]={ + list=false, + name="ColdDamage", + refTo="Stats", + type="Key", + width=150 + }, + [20]={ + list=false, + name="Knockback", + refTo="Stats", + type="Key", + width=150 + }, + [21]={ + list=false, + name="CritKnockback", + refTo="Stats", + type="Key", + width=150 + }, + [22]={ + list=false, + name="Accuracy", + refTo="Stats", + type="Key", + width=150 + }, + [23]={ + list=false, + name="AccuracyInc", + refTo="Stats", + type="Key", + width=150 + }, + [24]={ + list=false, + name="AttackSpeed", + refTo="Stats", + type="Key", + width=150 + }, + [25]={ + list=false, + name="MeleeRange", + refTo="Stats", + type="Key", + width=150 + }, + [26]={ + list=false, + name="ElementalDamage", + refTo="Stats", + type="Key", + width=150 + }, + [27]={ + list=false, + name="Tag", + refTo="Tags", + type="Key", + width=150 + }, + [28]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + windowcursors={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="CursorDefault", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="CursorClick", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="CursorHover", + refTo="", + type="String", + width=240 + }, + [7]={ + list=false, + name="Description", + refTo="", + type="String", + width=240 + }, + [8]={ + list=false, + name="IsEnabled", + refTo="", + type="Bool", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } + }, + wordlists={ + }, + words={ + [1]={ + list=false, + name="Wordlist", + refTo="", + type="Int", + width=150 + }, + [2]={ + list=false, + name="Text", + refTo="", + type="String", + width=150 + }, + [3]={ + list=true, + name="SpawnWeight_Tags", + refTo="Tags", + type="Key", + width=150 + }, + [4]={ + list=true, + name="SpawnWeight_Values", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="HASH32", + refTo="", + type="UInt", + width=150 + }, + [6]={ + list=false, + name="Text2", + refTo="", + type="String", + width=150 + }, + [7]={ + list=false, + name="Inflection", + refTo="", + type="String", + width=150 + } + }, + worldarealeaguechances={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="Int", width=150 }, [10]={ list=false, - name="MinCold", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [11]={ list=false, - name="MaxCold", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [12]={ list=false, - name="MinLightning", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [13]={ list=false, - name="MaxLightning", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [14]={ list=false, - name="MinChaos", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [15]={ list=false, - name="MaxChaos", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [16]={ list=false, - name="CritMulti", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [17]={ list=false, - name="PhysDamage", - refTo="Stats", - type="Key", + name="AbyssChance", + refTo="", + type="Int", width=150 }, [18]={ list=false, - name="FireDamage", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [19]={ list=false, - name="ColdDamage", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [20]={ list=false, - name="Knockback", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [21]={ list=false, - name="CritKnockback", - refTo="Stats", - type="Key", + name="", + refTo="", + type="Int", width=150 }, [22]={ - list=false, - name="Accuracy", - refTo="Stats", - type="Key", - width=150 - }, - [23]={ - list=false, - name="AccuracyInc", - refTo="Stats", - type="Key", - width=150 - }, - [24]={ - list=false, - name="AttackSpeed", - refTo="Stats", - type="Key", - width=150 - }, - [25]={ - list=false, - name="MeleeRange", - refTo="Stats", - type="Key", - width=150 - }, - [26]={ - list=false, - name="ElementalDamage", - refTo="Stats", - type="Key", - width=150 - }, - [27]={ - list=false, - name="Tag", - refTo="Tags", - type="Key", - width=150 - }, - [28]={ list=false, name="", refTo="", type="Int", width=150 - } - }, - windowcursors={ - }, - wordlists={ - }, - words={ - [1]={ + }, + [23]={ list=false, - name="Wordlist", + name="", refTo="", type="Int", width=150 }, - [2]={ + [24]={ list=false, - name="Text", - refTo="", - type="String", - width=150 - }, - [3]={ - list=true, - name="SpawnWeight_Tags", - refTo="Tags", - type="Key", - width=150 - }, - [4]={ - list=true, - name="SpawnWeight_Values", + name="", refTo="", type="Int", width=150 }, - [5]={ + [25]={ list=false, - name="HASH32", + name="StoneCirclesChance", refTo="", type="Int", width=150 }, - [6]={ + [26]={ list=false, - name="Text2", + name="VaalTempleChance", refTo="", - type="String", + type="Int", width=150 }, - [7]={ + [27]={ list=false, - name="", + name="ExpeditionChance", refTo="", - type="String", + type="Int", width=150 } }, - worldarealeaguechances={ - }, worldareas={ [1]={ list=false, @@ -19950,7 +63081,7 @@ return { [13]={ list=true, name="Topologies", - refTo="", + refTo="Topologies", type="Key", width=150 }, @@ -19971,14 +63102,14 @@ return { [16]={ list=false, name="", - refTo="", + refTo="QuestFlags", type="Key", width=150 }, [17]={ list=false, name="", - refTo="", + refTo="QuestFlags", type="Key", width=150 }, @@ -19991,57 +63122,57 @@ return { }, [19]={ list=true, - name="", - refTo="", + name="Monsters_MonsterVarietiesKeys", + refTo="MonsterVarieties", type="Key", width=150 }, [20]={ list=true, - name="", - refTo="", + name="SpawnWeight_TagsKeys", + refTo="Tags", type="Key", width=150 }, [21]={ list=true, - name="", + name="SpawnWeight_Values", refTo="", - type="Key", + type="Int", width=150 }, [22]={ list=false, - name="", + name="IsMapArea", refTo="", type="Bool", width=150 }, [23]={ list=true, - name="", - refTo="", + name="FullClear_AchievementItemsKeys", + refTo="AchievementItems", type="Key", width=150 }, [24]={ list=false, - name="", - refTo="", + name="PVPType", + refTo="PVPTypes", type="Key", width=150 }, [25]={ list=false, - name="", - refTo="", + name="AchievementItemsKey", + refTo="AchievementItems", type="Key", width=80 }, [26]={ list=true, name="AreaMods", - refTo="", + refTo="Mods", type="Key", width=150 }, @@ -20061,7 +63192,7 @@ return { }, [29]={ list=false, - name="", + name="MaxLevel", refTo="", type="Int", width=80 @@ -20140,12 +63271,12 @@ return { list=true, name="", refTo="", - type="Int", + type="String", width=150 }, [41]={ list=false, - name="", + name="IsUniqueMapArea", refTo="", type="Bool", width=150 @@ -20259,7 +63390,7 @@ return { list=true, name="", refTo="", - type="Int", + type="Key", width=40 }, [58]={ @@ -20287,14 +63418,14 @@ return { list=false, name="", refTo="", - type="Int", + type="Key", width=50 }, [62]={ list=false, name="", refTo="", - type="Key", + type="Int", width=50 }, [63]={ @@ -20313,8 +63444,8 @@ return { }, [65]={ list=false, - name="", - refTo="", + name="Ruleset", + refTo="Rulesets", type="Key", width=50 }, @@ -20328,8 +63459,8 @@ return { [67]={ list=true, name="", - refTo="", - type="Key", + refTo="WorldAreas", + type="ShortKey", width=40 }, [68]={ @@ -20371,14 +63502,14 @@ return { list=false, name="", refTo="", - type="Key", + type="Int", width=50 }, [74]={ list=false, name="", refTo="", - type="Bool", + type="Int", width=50 }, [75]={ @@ -20387,13 +63518,327 @@ return { refTo="", type="Bool", width=50 + }, + [76]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [77]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [78]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [79]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [80]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + }, + [81]={ + list=true, + name="", + refTo="", + type="Key", + width=300 + }, + [82]={ + list=true, + name="", + refTo="", + type="Int", + width=300 + } + }, + worlddescriptionbutton={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="IconDefault", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="IconLight", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [5]={ + list=false, + name="IconWASD", + refTo="", + type="String", + width=240 + }, + [6]={ + list=false, + name="Sound1", + refTo="SoundEffects", + type="Key", + width=150 + }, + [7]={ + list=false, + name="Sound2", + refTo="SoundEffects", + type="Key", + width=150 } }, worldmaplegends={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="Icon", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="Name", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [6]={ + list=true, + name="Acts", + refTo="Acts", + type="Key", + width=300 + }, + [7]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="String", + width=240 + } + }, + worldmapquicktravelbuttons={ + [1]={ + list=false, + name="Area", + refTo="WorldAreas", + type="Key", + width=150 + }, + [2]={ + list=false, + name="Description", + refTo="ClientStrings", + type="Key", + width=150 + }, + [3]={ + list=false, + name="ButtonArt", + refTo="", + type="String", + width=240 + }, + [4]={ + list=false, + name="ButtonHoverArt", + refTo="", + type="String", + width=240 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="EndgameArea", + refTo="WorldAreas", + type="Key", + width=150 + } + }, + worldobjectdisplayedapplicableitems={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=true, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=300 + } }, worldpopupicontypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=240 + }, + [2]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [3]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [4]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [5]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [6]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [7]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [8]={ + list=false, + name="", + refTo="", + type="Float", + width=150 + }, + [9]={ + list=false, + name="", + refTo="", + type="String", + width=240 + }, + [10]={ + list=false, + name="", + refTo="", + type="Bool", + width=150 + }, + [11]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + } }, worldscreenmappindialogue={ + [1]={ + list=false, + name="Id", + refTo="MapPins", + type="Key", + width=150 + }, + [2]={ + list=false, + name="", + refTo="", + type="Int", + width=150 + }, + [3]={ + list=true, + name="NPCTalk", + refTo="NPCTalk", + type="Key", + width=300 + } }, zanalevels={ }, diff --git a/src/Modules/CalcActiveSkill.lua b/src/Modules/CalcActiveSkill.lua index cfea75c786..edd40d2b2a 100644 --- a/src/Modules/CalcActiveSkill.lua +++ b/src/Modules/CalcActiveSkill.lua @@ -214,7 +214,9 @@ function calcs.createActiveSkill(activeEffect, supportList, env, actor, socketGr -- Track how many active skills are supported by this support effect if supportEffect.isSupporting and activeEffect.srcInstance then supportEffect.isSupporting[activeEffect.srcInstance] = true - supportEffect.activeSkillLevel = activeEffect.srcInstance.level + if supportEffect.srcInstance ~= activeEffect.srcInstance or not (activeEffect.gemData and activeEffect.gemData.grantedEffect.support) then + supportEffect.activeSkillLevel = activeEffect.level + end end if supportEffect.grantedEffect.addFlags and not summonSkill then -- Support skill adds flags to supported skills (eg. Remote Mine adds 'mine') @@ -385,6 +387,15 @@ function calcs.buildActiveSkillModList(env, activeSkill) activeStatSet = activeEffect.statSet.statSet skillFlags = activeEffect.statSet.skillFlags end + -- Active skills granted by support gems inherit the level of the skill that support applied to. + if activeEffect.gemData and activeEffect.gemData.grantedEffect.support then + for _, supportEffect in ipairs(activeSkill.supportList) do + if supportEffect.srcInstance == activeEffect.srcInstance and supportEffect.activeSkillLevel then + activeEffect.level = supportEffect.activeSkillLevel + break + end + end + end local effectiveRange = 0 -- Set mode flags diff --git a/src/Modules/CalcDefence.lua b/src/Modules/CalcDefence.lua index a48d96f92a..b81aeada03 100644 --- a/src/Modules/CalcDefence.lua +++ b/src/Modules/CalcDefence.lua @@ -1484,7 +1484,7 @@ function calcs.defence(env, actor) end end - output.DeflectionRating = (output.Evasion * modDB:Sum("BASE", nil, "EvasionGainAsDeflection") / 100 + output.Armour * modDB:Sum("BASE", nil, "ArmourGainAsDeflection") / 100) * calcLib.mod(modDB, nil, "DeflectionRating") + output.DeflectionRating = modDB:Sum("BASE", nil, "DeflectionRating") + (output.Evasion * modDB:Sum("BASE", nil, "EvasionGainAsDeflection") / 100 + output.Armour * modDB:Sum("BASE", nil, "ArmourGainAsDeflection") / 100) * calcLib.mod(modDB, nil, "DeflectionRating") output.DeflectChance = calcs.deflectChance(output.DeflectionRating, enemyAccuracy) if modDB:Flag(nil, "DeflectIsLucky") then local notDeflect = 1 - output.DeflectChance / 100 diff --git a/src/Modules/CalcOffence.lua b/src/Modules/CalcOffence.lua index 38e79e58bd..fb4999f1bf 100644 --- a/src/Modules/CalcOffence.lua +++ b/src/Modules/CalcOffence.lua @@ -1448,7 +1448,7 @@ function calcs.offence(env, actor, activeSkill) end if skillModList:Flag(skillCfg, "RevivingMinion") then local MinionRevivalSpeedMod = calcLib.mod(skillModList, skillCfg, "MinionRevivalSpeed") - local baseMinionRevivalTime = data.misc.MinionRevivalTimeBase + local baseMinionRevivalTime = skillModList:Override(skillCfg, "BaseReviveTime") or data.misc.MinionRevivalTimeBase output.MinionRevivalSpeed = baseMinionRevivalTime * (1 / MinionRevivalSpeedMod) if breakdown then breakdown.MinionRevivalSpeed = { diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index d7e22ed7ea..1568e93b78 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -628,7 +628,7 @@ function calcs.initEnv(build, mode, override, specEnv) modDB:NewMod("TotemColdResist", "BASE", 40, "Base") modDB:NewMod("TotemLightningResist", "BASE", 40, "Base") modDB:NewMod("TotemChaosResist", "BASE", 20, "Base") - modDB:NewMod("MaximumRage", "BASE", data.characterConstants["maximum_rage"], "Base") + modDB:NewMod("MaximumRage", "BASE", data.gameConstants["BaseMaximumRage"], "Base") modDB:NewMod("MaximumFortification", "BASE", data.characterConstants["base_max_fortification"], "Base") modDB:NewMod("MaximumValour", "BASE", 50, "Base") modDB:NewMod("SoulEaterMax", "BASE", 45, "Base") diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index c88a54ef58..4f7a16d4bc 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -265,6 +265,7 @@ function sanitiseText(text) :gsub("\195\164", "a") -- U+00E4 LATIN SMALL LETTER A WITH DIAERESIS :gsub("\195\182", "o") -- U+00F6 LATIN SMALL LETTER O WITH DIAERESIS :gsub("\195\173", "i") -- U+00ED LATIN SMALL LETTER I WITH ACUTE + :gsub("\195\179", "o") -- U+00F3 LATIN SMALL LETTER O WITH ACUTE -- single-byte: Windows-1252 and similar :gsub("\150", "-") -- U+2013 EN DASH :gsub("\151", "-") -- U+2014 EM DASH diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index 120288fca1..c1b133a63c 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -587,6 +587,10 @@ local configSettings = { { var = "configSpectralWolfCount", type = "count", label = "# of Active Spectral Wolves:", ifSkill = "Summon Spectral Wolf", tooltip = "Sets the number of active Spectral Wolves.\nThe maximum number of Spectral Wolves is 10.", apply = function(val, modList, enemyModList) modList:NewMod("Multiplier:SpectralWolfCount", "BASE", m_min(val, 10), "Config") end }, + { label = "Spiraling Conspiracy:", ifSkill = "Spiraling Conspiracy" }, + { var = "configMistRavenCount", type = "count", label = "# of Active Mist Ravens:", ifSkill = "Spiraling Conspiracy", tooltip = "Sets the number of active Spiraling Conspiracy.\nThe maximum number of Spiraling Conspiracy is 30.", apply = function(val, modList, enemyModList) + modList:NewMod("Multiplier:MistRavenCount", "BASE", m_min(val, 30), "Config") + end }, { label = "Stance Skills:", ifSkill = { "Blood and Sand", "Flesh and Stone", "Lacerate", "Bladestorm", "Perforate", "Perforate of Duality" } }, { var = "bloodSandStance", type = "list", label = "Stance:", ifSkill = { "Blood and Sand", "Flesh and Stone", "Lacerate", "Bladestorm", "Perforate", "Perforate of Duality" }, list = {{val="BLOOD",label="Blood Stance"},{val="SAND",label="Sand Stance"}}, apply = function(val, modList, enemyModList) if val == "SAND" then @@ -1854,6 +1858,9 @@ Huge sets the radius to 11. { var = "conditionEnemyLightningExposure", type = "check", label = "Is the enemy Exposed to ^xADAA47Lightning?", ifFlag = "Condition:CanApplyLightningExposure", tooltip = "This applies -20% ^xADAA47Lightning Resistance ^7to the enemy.", apply = function(val, modList, enemyModList) enemyModList:NewMod("LightningExposure", "BASE", 20, "Config", { type = "Condition", var = "Effective" }, { type = "ActorCondition", actor = "enemy", var = "CanApplyLightningExposure" }) end }, + { var = "conditionEnemyIsolated", type = "check", label = "Is the enemy Isolated?", ifEnemyCond = "Isolated", tooltip = "A target is Isolated if none of its allies are within 6m of it.", apply = function(val, modList, enemyModList) + enemyModList:NewMod("Condition:Isolated", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) + end }, { var = "conditionEnemyIntimidated", type = "check", label = "Is the enemy Intimidated?", tooltip = "Intimidate is a Debuff that inflicts 10% increased damage taken and 10% reduced damage dealt.", apply = function(val, modList, enemyModList) enemyModList:NewMod("Condition:Intimidated", "FLAG", true, "Config", { type = "Condition", var = "Effective" }) end }, diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index afbeb68a6b..dd36455d30 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -5521,7 +5521,7 @@ local specialModList = { ["count as having maximum number of frenzy charges"] = { flag("HaveMaximumFrenzyCharges") }, ["count as having maximum number of endurance charges"] = { flag("HaveMaximumEnduranceCharges") }, ["quarterstaff skills that consume power charges count as consuming an additional power charge"] = { - mod("Multiplier:ExtraConsumablePowerCharges", "BASE", 1, 0, 0, { type = "SkillType", skillType = SkillType.QuarterstaffSkill }) + mod("Multiplier:ExtraConsumablePowerCharges", "BASE", 1, nil, ModFlag.Attack, 0, { type = "Condition", var = "UsingStaff" }) }, ["leftmost (%d+) magic utility flasks constantly apply their flask effects to you"] = function(num) return { mod("ActiveMagicUtilityFlasks", "BASE", num) } end, ["marauder: melee skills have (%d+)%% increased area of effect"] = function(num) return { mod("AreaOfEffect", "INC", num, { type = "Condition", var = "ConnectedToMarauderStart" }, { type = "SkillType", skillType = SkillType.Melee }) } end, diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png deleted file mode 100644 index b0dde6652b..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png deleted file mode 100644 index ecab85b20c..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png deleted file mode 100644 index bbd2106aaa..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png deleted file mode 100644 index bbcf1e893a..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png deleted file mode 100644 index 5995b30936..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png deleted file mode 100644 index 87f516c12a..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png deleted file mode 100644 index a81f9f73f8..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png deleted file mode 100644 index f497762cd3..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png deleted file mode 100644 index 99e5b74695..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png deleted file mode 100644 index 94e0111745..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediate9.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png deleted file mode 100644 index bcbab8d79e..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png deleted file mode 100644 index f54e0241bc..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png deleted file mode 100644 index 7808232c12..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png deleted file mode 100644 index 1c47cef599..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png deleted file mode 100644 index 0548ec5755..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png deleted file mode 100644 index 36e2e41bfc..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png deleted file mode 100644 index 13b51b347d..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png deleted file mode 100644 index 3aed93f0c1..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png deleted file mode 100644 index 293c29ba8a..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png deleted file mode 100644 index 5708aa4499..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_intermediateactive9.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png deleted file mode 100644 index 807a15cb6b..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png deleted file mode 100644 index 9d81202e03..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png deleted file mode 100644 index 9cb30e40dd..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png deleted file mode 100644 index d5bfb840f0..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png deleted file mode 100644 index ad4066633d..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png deleted file mode 100644 index 251c3acec0..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png deleted file mode 100644 index b0b11e259a..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png deleted file mode 100644 index 1b1fc16371..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png deleted file mode 100644 index bf820ad285..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png b/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png deleted file mode 100644 index 249d5da900..0000000000 Binary files a/src/TreeData/0_5/CharacterAscendancy_orbit_normal9.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png deleted file mode 100644 index afe76f3a66..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png deleted file mode 100644 index 77582cde4a..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png deleted file mode 100644 index 3548013e5f..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png deleted file mode 100644 index 9cfc7a98ae..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png deleted file mode 100644 index 18e1a83f7d..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png deleted file mode 100644 index 82245673d4..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png deleted file mode 100644 index 3bdc0f0229..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png deleted file mode 100644 index 3c4d0387b5..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png deleted file mode 100644 index 7e5cf46e9f..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png deleted file mode 100644 index 73c607e8a5..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediate9.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png deleted file mode 100644 index c48a2fb511..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png deleted file mode 100644 index ac566fac33..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png deleted file mode 100644 index 5415424e32..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png deleted file mode 100644 index 34ffd8aee1..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png deleted file mode 100644 index 29a4e9388c..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png deleted file mode 100644 index 02c448f481..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png deleted file mode 100644 index 7f8c58a328..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png deleted file mode 100644 index 5f6d8d72ff..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png deleted file mode 100644 index be0e2dec11..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png b/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png deleted file mode 100644 index 5abdd94672..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_intermediateactive9.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png deleted file mode 100644 index 32a27b7eb6..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal0.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png deleted file mode 100644 index 825913b423..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal1.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png deleted file mode 100644 index cd2c21bc99..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal2.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png deleted file mode 100644 index 3216494a4e..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal3.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png deleted file mode 100644 index 262f9d06e7..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal4.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png deleted file mode 100644 index a438206f72..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal5.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png deleted file mode 100644 index cf03863be9..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal6.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png deleted file mode 100644 index 38e6450c67..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal7.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png deleted file mode 100644 index a2d686b305..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal8.png and /dev/null differ diff --git a/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png b/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png deleted file mode 100644 index eec5bd608b..0000000000 Binary files a/src/TreeData/0_5/CharacterPlanned_orbit_normal9.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate0.png b/src/TreeData/0_5/Character_orbit_intermediate0.png deleted file mode 100644 index c88f1c1d1e..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate0.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate1.png b/src/TreeData/0_5/Character_orbit_intermediate1.png deleted file mode 100644 index e1be4ecef3..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate1.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate2.png b/src/TreeData/0_5/Character_orbit_intermediate2.png deleted file mode 100644 index 14cb23a69b..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate2.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate3.png b/src/TreeData/0_5/Character_orbit_intermediate3.png deleted file mode 100644 index c7b25aa31c..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate3.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate4.png b/src/TreeData/0_5/Character_orbit_intermediate4.png deleted file mode 100644 index e02bbb95f0..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate4.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate5.png b/src/TreeData/0_5/Character_orbit_intermediate5.png deleted file mode 100644 index 0963eb8578..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate5.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate6.png b/src/TreeData/0_5/Character_orbit_intermediate6.png deleted file mode 100644 index d2f4320508..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate6.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate7.png b/src/TreeData/0_5/Character_orbit_intermediate7.png deleted file mode 100644 index 16a567955a..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate7.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate8.png b/src/TreeData/0_5/Character_orbit_intermediate8.png deleted file mode 100644 index 82af5410c1..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate8.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediate9.png b/src/TreeData/0_5/Character_orbit_intermediate9.png deleted file mode 100644 index 4767a0eb74..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediate9.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive0.png b/src/TreeData/0_5/Character_orbit_intermediateactive0.png deleted file mode 100644 index a5acdf4fe9..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive0.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive1.png b/src/TreeData/0_5/Character_orbit_intermediateactive1.png deleted file mode 100644 index ab3f9ace30..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive1.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive2.png b/src/TreeData/0_5/Character_orbit_intermediateactive2.png deleted file mode 100644 index f07b73a9a5..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive2.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive3.png b/src/TreeData/0_5/Character_orbit_intermediateactive3.png deleted file mode 100644 index 3dd737413e..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive3.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive4.png b/src/TreeData/0_5/Character_orbit_intermediateactive4.png deleted file mode 100644 index 9195ce3980..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive4.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive5.png b/src/TreeData/0_5/Character_orbit_intermediateactive5.png deleted file mode 100644 index 794fe6143b..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive5.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive6.png b/src/TreeData/0_5/Character_orbit_intermediateactive6.png deleted file mode 100644 index e7c2241c99..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive6.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive7.png b/src/TreeData/0_5/Character_orbit_intermediateactive7.png deleted file mode 100644 index 984fc8cbc9..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive7.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive8.png b/src/TreeData/0_5/Character_orbit_intermediateactive8.png deleted file mode 100644 index e67d6ad801..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive8.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_intermediateactive9.png b/src/TreeData/0_5/Character_orbit_intermediateactive9.png deleted file mode 100644 index a1a09f0203..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_intermediateactive9.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal0.png b/src/TreeData/0_5/Character_orbit_normal0.png deleted file mode 100644 index f6afc9baf8..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal0.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal1.png b/src/TreeData/0_5/Character_orbit_normal1.png deleted file mode 100644 index 248f0be1f9..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal1.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal2.png b/src/TreeData/0_5/Character_orbit_normal2.png deleted file mode 100644 index fd059decde..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal2.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal3.png b/src/TreeData/0_5/Character_orbit_normal3.png deleted file mode 100644 index 64e55c960f..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal3.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal4.png b/src/TreeData/0_5/Character_orbit_normal4.png deleted file mode 100644 index 4891e304ae..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal4.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal5.png b/src/TreeData/0_5/Character_orbit_normal5.png deleted file mode 100644 index 2df8c2fa78..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal5.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal6.png b/src/TreeData/0_5/Character_orbit_normal6.png deleted file mode 100644 index c666dc1645..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal6.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal7.png b/src/TreeData/0_5/Character_orbit_normal7.png deleted file mode 100644 index 0f0df5b851..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal7.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal8.png b/src/TreeData/0_5/Character_orbit_normal8.png deleted file mode 100644 index 6ca023a695..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal8.png and /dev/null differ diff --git a/src/TreeData/0_5/Character_orbit_normal9.png b/src/TreeData/0_5/Character_orbit_normal9.png deleted file mode 100644 index 294c58c76f..0000000000 Binary files a/src/TreeData/0_5/Character_orbit_normal9.png and /dev/null differ diff --git a/src/TreeData/0_5/background-druid.webp b/src/TreeData/0_5/background-druid.webp deleted file mode 100644 index 91ccef0339..0000000000 Binary files a/src/TreeData/0_5/background-druid.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-huntress.webp b/src/TreeData/0_5/background-huntress.webp deleted file mode 100644 index d41f3a68ef..0000000000 Binary files a/src/TreeData/0_5/background-huntress.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-mercenary.webp b/src/TreeData/0_5/background-mercenary.webp deleted file mode 100644 index 8aa39faedc..0000000000 Binary files a/src/TreeData/0_5/background-mercenary.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-monk.webp b/src/TreeData/0_5/background-monk.webp deleted file mode 100644 index 7297d26990..0000000000 Binary files a/src/TreeData/0_5/background-monk.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-ranger.webp b/src/TreeData/0_5/background-ranger.webp deleted file mode 100644 index 4ae1cd5c88..0000000000 Binary files a/src/TreeData/0_5/background-ranger.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-sorceress.webp b/src/TreeData/0_5/background-sorceress.webp deleted file mode 100644 index 02450f959c..0000000000 Binary files a/src/TreeData/0_5/background-sorceress.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-warrior.webp b/src/TreeData/0_5/background-warrior.webp deleted file mode 100644 index 55e2f3f567..0000000000 Binary files a/src/TreeData/0_5/background-warrior.webp and /dev/null differ diff --git a/src/TreeData/0_5/background-witch.webp b/src/TreeData/0_5/background-witch.webp deleted file mode 100644 index 844b376fc0..0000000000 Binary files a/src/TreeData/0_5/background-witch.webp and /dev/null differ diff --git a/src/TreeData/0_5/background.webp b/src/TreeData/0_5/background.webp deleted file mode 100644 index b340a1844f..0000000000 Binary files a/src/TreeData/0_5/background.webp and /dev/null differ diff --git a/src/TreeData/0_5/frame.webp b/src/TreeData/0_5/frame.webp deleted file mode 100644 index 9192f0bddc..0000000000 Binary files a/src/TreeData/0_5/frame.webp and /dev/null differ diff --git a/src/TreeData/0_5/group-background.webp b/src/TreeData/0_5/group-background.webp deleted file mode 100644 index 013d1353b2..0000000000 Binary files a/src/TreeData/0_5/group-background.webp and /dev/null differ diff --git a/src/TreeData/0_5/mastery-effect-active.webp b/src/TreeData/0_5/mastery-effect-active.webp deleted file mode 100644 index 42bc268dc7..0000000000 Binary files a/src/TreeData/0_5/mastery-effect-active.webp and /dev/null differ diff --git a/src/TreeData/0_5/monster-categories_36_36_BC7.dds.zst b/src/TreeData/0_5/monster-categories_36_36_BC7.dds.zst deleted file mode 100644 index e103445ab7..0000000000 Binary files a/src/TreeData/0_5/monster-categories_36_36_BC7.dds.zst and /dev/null differ diff --git a/src/TreeData/0_5/skills.webp b/src/TreeData/0_5/skills.webp deleted file mode 100644 index 921c7fd137..0000000000 Binary files a/src/TreeData/0_5/skills.webp and /dev/null differ diff --git a/src/TreeData/0_5/tree.json b/src/TreeData/0_5/tree.json index 3643faa5b3..1a0f6bfc01 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},"monster-categories_36_36_BC7.dds.zst":{"Beast":1,"Construct":2,"Demon":3,"Eldritch":4,"Humanoid":5,"Undead":6},"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_-1723783960_-163230_.dds.zst":{"":1},"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/CompanionsNotable1.dds":61,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":62,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":63,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":64,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":65,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":75,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":92,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":93,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":94,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":95,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":96,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":100,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":103,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":104,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":105,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":106,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":107,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":109,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":120,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":121,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":122,"Art/2DArt/SkillIcons/passives/Harrier.dds":123,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Hearty.dds":125,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":126,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":127,"Art/2DArt/SkillIcons/passives/Hunter.dds":128,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":133,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":143,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":160,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":161,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":164,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":165,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":168,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":176,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":177,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":185,"Art/2DArt/SkillIcons/passives/Meleerange.dds":186,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":187,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":188,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":189,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":195,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":196,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":197,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":198,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":199,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":207,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":222,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":223,"Art/2DArt/SkillIcons/passives/Poison.dds":224,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":225,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":232,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":233,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":234,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":235,"Art/2DArt/SkillIcons/passives/RageNotable.dds":236,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":237,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":238,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":239,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":246,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":247,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":264,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":265,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":266,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":267,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":268,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":269,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":270,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":279,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":280,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":281,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":290,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":291,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":298,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":299,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":300,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":307,"Art/2DArt/SkillIcons/passives/Trap.dds":308,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":309,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":316,"Art/2DArt/SkillIcons/passives/Warrior.dds":317,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":318,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":326,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":327,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":334,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":335,"Art/2DArt/SkillIcons/passives/bodysoul.dds":336,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":337,"Art/2DArt/SkillIcons/passives/eagleeye.dds":338,"Art/2DArt/SkillIcons/passives/executioner.dds":339,"Art/2DArt/SkillIcons/passives/finesse.dds":340,"Art/2DArt/SkillIcons/passives/flameborn.dds":341,"Art/2DArt/SkillIcons/passives/frostborn.dds":342,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":343,"Art/2DArt/SkillIcons/passives/legstrength.dds":344,"Art/2DArt/SkillIcons/passives/lifeleech.dds":345,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":346,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":347,"Art/2DArt/SkillIcons/passives/steelspan.dds":348,"Art/2DArt/SkillIcons/passives/stormborn.dds":349,"Art/2DArt/SkillIcons/passives/strongarm.dds":350,"Art/2DArt/SkillIcons/passives/totemmax.dds":351,"Art/2DArt/SkillIcons/passives/vaalpact.dds":352},"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/ColdResistNode.dds":37,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":38,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":39,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":40,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":41,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":42,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":43,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":47,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":48,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":49,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":51,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":53,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":54,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":55,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":56,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":57,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":58,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":60,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":61,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":62,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":63,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":64,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":66,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":67,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":68,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":69,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":70,"Art/2DArt/SkillIcons/passives/MarkNode.dds":71,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":72,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":73,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":74,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":75,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":76,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":78,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":79,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":80,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":81,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":84,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":85,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":86,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":87,"Art/2DArt/SkillIcons/passives/Rage.dds":88,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":89,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":90,"Art/2DArt/SkillIcons/passives/Remnant.dds":91,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":92,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":93,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":94,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":95,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":96,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":97,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":98,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":100,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":101,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":102,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":103,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":104,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":105,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":106,"Art/2DArt/SkillIcons/passives/accuracydex.dds":107,"Art/2DArt/SkillIcons/passives/accuracystr.dds":108,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":109,"Art/2DArt/SkillIcons/passives/attackspeed.dds":110,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":111,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":112,"Art/2DArt/SkillIcons/passives/auraeffect.dds":113,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":114,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":115,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/blankInt.dds":117,"Art/2DArt/SkillIcons/passives/blankStr.dds":118,"Art/2DArt/SkillIcons/passives/blockstr.dds":119,"Art/2DArt/SkillIcons/passives/castspeed.dds":120,"Art/2DArt/SkillIcons/passives/chargedex.dds":121,"Art/2DArt/SkillIcons/passives/chargeint.dds":122,"Art/2DArt/SkillIcons/passives/chargestr.dds":123,"Art/2DArt/SkillIcons/passives/colddamage.dds":124,"Art/2DArt/SkillIcons/passives/coldresist.dds":125,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":126,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":128,"Art/2DArt/SkillIcons/passives/damage.dds":129,"Art/2DArt/SkillIcons/passives/damage_blue.dds":130,"Art/2DArt/SkillIcons/passives/damageaxe.dds":131,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":132,"Art/2DArt/SkillIcons/passives/damagespells.dds":133,"Art/2DArt/SkillIcons/passives/damagestaff.dds":134,"Art/2DArt/SkillIcons/passives/damagesword.dds":135,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":136,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":137,"Art/2DArt/SkillIcons/passives/energyshield.dds":138,"Art/2DArt/SkillIcons/passives/evade.dds":139,"Art/2DArt/SkillIcons/passives/firedamage.dds":140,"Art/2DArt/SkillIcons/passives/firedamageint.dds":141,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":142,"Art/2DArt/SkillIcons/passives/fireresist.dds":143,"Art/2DArt/SkillIcons/passives/flaskdex.dds":144,"Art/2DArt/SkillIcons/passives/flaskint.dds":145,"Art/2DArt/SkillIcons/passives/flaskstr.dds":146,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":147,"Art/2DArt/SkillIcons/passives/knockback.dds":148,"Art/2DArt/SkillIcons/passives/life1.dds":149,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":150,"Art/2DArt/SkillIcons/passives/lightningint.dds":151,"Art/2DArt/SkillIcons/passives/lightningstr.dds":152,"Art/2DArt/SkillIcons/passives/macedmg.dds":153,"Art/2DArt/SkillIcons/passives/mana.dds":154,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":155,"Art/2DArt/SkillIcons/passives/manastr.dds":156,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":157,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":158,"Art/2DArt/SkillIcons/passives/minionlife.dds":159,"Art/2DArt/SkillIcons/passives/minionstr.dds":160,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":161,"Art/2DArt/SkillIcons/passives/plusattribute.dds":162,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":163,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":164,"Art/2DArt/SkillIcons/passives/plusstrength.dds":165,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":166,"Art/2DArt/SkillIcons/passives/shieldblock.dds":167,"Art/2DArt/SkillIcons/passives/spellcritical.dds":168,"Art/2DArt/SkillIcons/passives/stun2h.dds":169,"Art/2DArt/SkillIcons/passives/stunstr.dds":170,"Art/2DArt/SkillIcons/passives/tempint.dds":171,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":172,"Art/2DArt/SkillIcons/passives/trapdamage.dds":173,"Art/2DArt/SkillIcons/passives/trapsmax.dds":174},"skills_0_0_.dds.zst":{"":1},"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/CompanionsNotable1.dds":61,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":62,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":63,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":64,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":65,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":75,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":92,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":93,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":94,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":95,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":96,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":100,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":103,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":104,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":105,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":106,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":107,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":109,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":120,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":121,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":122,"Art/2DArt/SkillIcons/passives/Harrier.dds":123,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Hearty.dds":125,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":126,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":127,"Art/2DArt/SkillIcons/passives/Hunter.dds":128,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":133,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":143,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":160,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":161,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":164,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":165,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":168,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":176,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":177,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":185,"Art/2DArt/SkillIcons/passives/Meleerange.dds":186,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":187,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":188,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":189,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":195,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":196,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":197,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":198,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":199,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":207,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":222,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":223,"Art/2DArt/SkillIcons/passives/Poison.dds":224,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":225,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":232,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":233,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":234,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":235,"Art/2DArt/SkillIcons/passives/RageNotable.dds":236,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":237,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":238,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":239,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":246,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":247,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":264,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":265,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":266,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":267,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":268,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":269,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":270,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":279,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":280,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":281,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":290,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":291,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":298,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":299,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":300,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":307,"Art/2DArt/SkillIcons/passives/Trap.dds":308,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":309,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":316,"Art/2DArt/SkillIcons/passives/Warrior.dds":317,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":318,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":326,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":327,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":334,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":335,"Art/2DArt/SkillIcons/passives/bodysoul.dds":336,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":337,"Art/2DArt/SkillIcons/passives/eagleeye.dds":338,"Art/2DArt/SkillIcons/passives/executioner.dds":339,"Art/2DArt/SkillIcons/passives/finesse.dds":340,"Art/2DArt/SkillIcons/passives/flameborn.dds":341,"Art/2DArt/SkillIcons/passives/frostborn.dds":342,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":343,"Art/2DArt/SkillIcons/passives/legstrength.dds":344,"Art/2DArt/SkillIcons/passives/lifeleech.dds":345,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":346,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":347,"Art/2DArt/SkillIcons/passives/steelspan.dds":348,"Art/2DArt/SkillIcons/passives/stormborn.dds":349,"Art/2DArt/SkillIcons/passives/strongarm.dds":350,"Art/2DArt/SkillIcons/passives/totemmax.dds":351,"Art/2DArt/SkillIcons/passives/vaalpact.dds":352},"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/ColdResistNode.dds":37,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":38,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":39,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":40,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":41,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":42,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":43,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":47,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":48,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":49,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":51,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":53,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":54,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":55,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":56,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":57,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":58,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":60,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":61,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":62,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":63,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":64,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":66,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":67,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":68,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":69,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":70,"Art/2DArt/SkillIcons/passives/MarkNode.dds":71,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":72,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":73,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":74,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":75,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":76,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":78,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":79,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":80,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":81,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":84,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":85,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":86,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":87,"Art/2DArt/SkillIcons/passives/Rage.dds":88,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":89,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":90,"Art/2DArt/SkillIcons/passives/Remnant.dds":91,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":92,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":93,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":94,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":95,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":96,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":97,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":98,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":100,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":101,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":102,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":103,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":104,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":105,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":106,"Art/2DArt/SkillIcons/passives/accuracydex.dds":107,"Art/2DArt/SkillIcons/passives/accuracystr.dds":108,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":109,"Art/2DArt/SkillIcons/passives/attackspeed.dds":110,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":111,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":112,"Art/2DArt/SkillIcons/passives/auraeffect.dds":113,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":114,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":115,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/blankInt.dds":117,"Art/2DArt/SkillIcons/passives/blankStr.dds":118,"Art/2DArt/SkillIcons/passives/blockstr.dds":119,"Art/2DArt/SkillIcons/passives/castspeed.dds":120,"Art/2DArt/SkillIcons/passives/chargedex.dds":121,"Art/2DArt/SkillIcons/passives/chargeint.dds":122,"Art/2DArt/SkillIcons/passives/chargestr.dds":123,"Art/2DArt/SkillIcons/passives/colddamage.dds":124,"Art/2DArt/SkillIcons/passives/coldresist.dds":125,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":126,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":128,"Art/2DArt/SkillIcons/passives/damage.dds":129,"Art/2DArt/SkillIcons/passives/damage_blue.dds":130,"Art/2DArt/SkillIcons/passives/damageaxe.dds":131,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":132,"Art/2DArt/SkillIcons/passives/damagespells.dds":133,"Art/2DArt/SkillIcons/passives/damagestaff.dds":134,"Art/2DArt/SkillIcons/passives/damagesword.dds":135,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":136,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":137,"Art/2DArt/SkillIcons/passives/energyshield.dds":138,"Art/2DArt/SkillIcons/passives/evade.dds":139,"Art/2DArt/SkillIcons/passives/firedamage.dds":140,"Art/2DArt/SkillIcons/passives/firedamageint.dds":141,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":142,"Art/2DArt/SkillIcons/passives/fireresist.dds":143,"Art/2DArt/SkillIcons/passives/flaskdex.dds":144,"Art/2DArt/SkillIcons/passives/flaskint.dds":145,"Art/2DArt/SkillIcons/passives/flaskstr.dds":146,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":147,"Art/2DArt/SkillIcons/passives/knockback.dds":148,"Art/2DArt/SkillIcons/passives/life1.dds":149,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":150,"Art/2DArt/SkillIcons/passives/lightningint.dds":151,"Art/2DArt/SkillIcons/passives/lightningstr.dds":152,"Art/2DArt/SkillIcons/passives/macedmg.dds":153,"Art/2DArt/SkillIcons/passives/mana.dds":154,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":155,"Art/2DArt/SkillIcons/passives/manastr.dds":156,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":157,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":158,"Art/2DArt/SkillIcons/passives/minionlife.dds":159,"Art/2DArt/SkillIcons/passives/minionstr.dds":160,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":161,"Art/2DArt/SkillIcons/passives/plusattribute.dds":162,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":163,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":164,"Art/2DArt/SkillIcons/passives/plusstrength.dds":165,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":166,"Art/2DArt/SkillIcons/passives/shieldblock.dds":167,"Art/2DArt/SkillIcons/passives/spellcritical.dds":168,"Art/2DArt/SkillIcons/passives/stun2h.dds":169,"Art/2DArt/SkillIcons/passives/stunstr.dds":170,"Art/2DArt/SkillIcons/passives/tempint.dds":171,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":172,"Art/2DArt/SkillIcons/passives/trapdamage.dds":173,"Art/2DArt/SkillIcons/passives/trapsmax.dds":174}},"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":[36025,57079,44309,44485,829,19966,43385,22221,7553,64139,15842],"orbits":[2,3,5,6,7],"x":-11682.6,"y":-5712.79},{"nodes":[18353,42762,11984,20496,3544,19953,50142,58197,35980],"orbits":[0,3,4,6,7],"x":-11664.2,"y":614.3},{"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":-11081.72,"y":-622.4},{"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":[1200],"orbits":[4],"x":-10682.77,"y":445.3},{"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":[65192,33423,15672,6999,59908,36197,27096,45400,63170,13691],"orbits":[0,3,7],"x":-10575.67,"y":-6386.37},{"nodes":[8850],"orbits":[0],"x":-10520.26,"y":-3933.98},{"nodes":[61896],"orbits":[0],"x":-10520.26,"y":-3710.82},{"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":[20989,42984,21184,20251],"orbits":[1,3,7],"x":-10401.12,"y":-377.96},{"nodes":[41768],"orbits":[0],"x":-10398.41,"y":-2166.4},{"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":[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":[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":[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":[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":[45354,64948,48264,12964],"orbits":[0,2],"x":-6563.83,"y":-4540.94},{"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":[21861,52807,61836,60551,65243,46421],"orbits":[0,2],"x":-6391.25,"y":-308.27},{"nodes":[38596],"orbits":[0],"x":-6378,"y":-8168.88},{"nodes":[3663],"orbits":[0],"x":-6370.88,"y":-1832.43},{"nodes":[43711,5544,14459],"orbits":[2],"x":-6370.69,"y":420.58},{"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":[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":[46380,21327,56876,1104],"orbits":[0,2],"x":-6249.06,"y":-4790.96},{"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":[35408,24767],"orbits":[2],"x":-6152.27,"y":-8668.35},{"nodes":[31925],"orbits":[0],"x":-6148.94,"y":-8372.25},{"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":[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":[36474],"orbits":[0],"x":-5914.3,"y":-8171.11},{"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":[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":[62948],"orbits":[0],"x":-5841.98,"y":-6866.01},{"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7],"x":-5794.96,"y":-3968.54},{"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":[25890,26863,54378,58198],"orbits":[0,2],"x":-5772.9,"y":-8770.8},{"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":[61471,61977,15580,49153],"orbits":[4],"x":-5699.67,"y":-4002.92},{"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":[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":[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":[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":[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":[1579],"orbits":[0],"x":3733.2751094136,"y":-16527.249541646},{"nodes":[32856],"orbits":[0],"x":3733.2751094136,"y":-14316.019541646},{"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":[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":[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":[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":[23825,11572,24325,32923,58215,40006,9896],"orbits":[2,3,4,7],"x":-4788.34,"y":-9175.84},{"nodes":[292],"orbits":[0],"x":-4776.07,"y":-9046.02},{"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":-10129.75},{"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":[31419,35787,42813,55491],"orbits":[1,7],"x":-4660.69,"y":223.67},{"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":[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":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3],"x":-1346.98,"y":-7376.61},{"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":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776,7333],"orbits":[0,2,3,4],"x":-949.03,"y":-5546.35},{"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":[10398,3472,56640,26682],"orbits":[7],"x":-691.9,"y":-7030.08},{"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":[13882],"orbits":[0],"x":-616.96,"y":-7619.15},{"nodes":[49512],"orbits":[0],"x":-613.84,"y":-7995.13},{"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4],"x":-612.8,"y":-8637.76},{"nodes":[51194,24060,3091,18793,33639,24087,8782],"orbits":[7,2],"x":-611.91,"y":-7670.28},{"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":[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":[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":[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":[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":[44605,2455,48588,13081],"orbits":[5],"x":-203.43,"y":2592.67},{"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":[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":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7],"x":5.06,"y":-6484.35},{"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":[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":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,2,7],"x":497.14,"y":-7601.82},{"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":[13909,31037,34866,40985,62679],"orbits":[2],"x":545.48,"y":-7039.3},{"nodes":[22691],"orbits":[0],"x":552.41,"y":-4284.19},{"nodes":[56978],"orbits":[0],"x":610.22,"y":8229.3},{"nodes":[8872],"orbits":[0],"x":615.53,"y":5034.86},{"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3],"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":[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":[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":[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":[17107],"orbits":[0],"x":1069.2,"y":-7546.83},{"nodes":[40345,42290,52254,37991],"orbits":[7],"x":1070.74,"y":-9412.83},{"nodes":[50540],"orbits":[0],"x":1073.28,"y":-9540.92},{"nodes":[17711],"orbits":[0],"x":1074.78,"y":-6113.73},{"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":[27853,59289,3365,52576,64550,22532],"orbits":[2,7],"x":1152.97,"y":4158.69},{"nodes":[33180,11788,14355,60269,8483,46989,6588],"orbits":[0,7],"x":1162.02,"y":-6821.54},{"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":[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":[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":3703.88,"y":-9989},{"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":[21080,1869,27095,48658,14890],"orbits":[0,2,7],"x":4022.98,"y":-4125.73},{"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":[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":[55938,41394,56844,40929,43633,40313,58363,10841],"orbits":[0,3,7],"x":4344.88,"y":-9579.04},{"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":[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":[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":[36623,3628,64474,31630,10729],"orbits":[0,2],"x":4939.08,"y":-9466.17},{"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":[56729,26308,27017,21349],"orbits":[2],"x":5001.21,"y":7989.42},{"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":[24210,26932,2200,35689,34543],"orbits":[0,2,7],"x":5279.5,"y":6677.73},{"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":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7],"x":5544.92,"y":8921.21},{"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":[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":[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":[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":[21801,30748,44369,24150],"orbits":[1,2,7],"x":6098.71,"y":-8410.42},{"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":[36365],"orbits":[6],"x":9688.2912025516,"y":12636.769100546},{"nodes":[4891],"orbits":[0],"x":9850.4112025516,"y":12521.869100546},{"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":1030,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":4,"stats":["15% increased chance to Shock"]},"16":{"ascendancyName":"Pathfinder","connections":[{"id":41619,"orbit":7}],"group":1522,"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"]},"30":{"ascendancyName":"Deadeye","connections":[],"group":1503,"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"]},"40":{"ascendancyName":"Pathfinder","connections":[],"group":1530,"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"]},"52":{"connections":[{"id":39131,"orbit":0}],"flavourText":"Tear my flesh and splinter my bones. You will never break my spirit.","group":184,"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"]},"55":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1098,"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"]},"59":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"60":{"connections":[{"id":58426,"orbit":0}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":2,"orbitIndex":13,"skill":60,"stats":["5% chance to Blind Enemies on Hit"]},"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"]},"71":{"connections":[{"id":62376,"orbit":0}],"group":463,"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"]},"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":1533,"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":[]},"94":{"connections":[{"id":27234,"orbit":0}],"group":907,"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"]},"95":{"connections":[{"id":8737,"orbit":0}],"group":495,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":95,"stats":["Minions deal 10% increased Damage"]},"97":{"connections":[{"id":52442,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":0,"skill":97,"stats":["3% increased Attack Speed"]},"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"]},"116":{"connections":[{"id":44359,"orbit":0}],"group":881,"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"]},"144":{"connections":[{"id":26598,"orbit":0}],"group":1200,"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"]},"151":{"connections":[{"id":34747,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":5,"skill":151,"stats":["16% increased Accuracy Rating at Close Range"]},"178":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":5,"orbitIndex":30,"skill":178,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"229":{"connections":[{"id":46365,"orbit":0}],"group":639,"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"]},"244":{"connections":[{"id":52354,"orbit":0}],"group":981,"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"]},"259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":507,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":259,"stats":[]},"261":{"connections":[{"id":1205,"orbit":0}],"group":1423,"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"]},"270":{"connections":[{"id":56219,"orbit":2}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":2,"orbitIndex":6,"skill":270,"stats":["Inherent loss of Rage is 15% slower"]},"292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":439,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":292,"stats":[]},"296":{"connections":[{"id":30959,"orbit":2},{"id":8145,"orbit":2},{"id":12992,"orbit":2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":7,"orbitIndex":18,"skill":296,"stats":["Damage Penetrates 3% of Enemy Elemental Resistances"]},"315":{"connections":[{"id":33216,"orbit":0}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":315,"stats":["10% increased Bleeding Duration"]},"326":{"connections":[{"id":31449,"orbit":0}],"group":1456,"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"]},"327":{"connections":[{"id":9652,"orbit":0}],"group":1295,"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"]},"328":{"connections":[{"id":25992,"orbit":0},{"id":60764,"orbit":0},{"id":21112,"orbit":0}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":0,"orbitIndex":0,"skill":328,"stats":["10% increased Accuracy Rating with Bows"]},"331":{"connections":[{"id":42103,"orbit":2}],"group":1261,"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"]},"336":{"connections":[{"id":4806,"orbit":-3}],"group":1305,"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"]},"338":{"connections":[{"id":20140,"orbit":0}],"group":915,"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"]},"354":{"connections":[{"id":48429,"orbit":0}],"group":736,"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"]},"364":{"connections":[{"id":2847,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":4,"skill":364,"stats":["+3 to all Attributes"]},"372":{"connections":[{"id":54340,"orbit":0}],"group":368,"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"]},"375":{"connections":[{"id":12276,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":17,"skill":375,"stats":["15% increased Damage with Maces"]},"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"]},"419":{"connections":[{"id":63400,"orbit":-7}],"group":1171,"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"]},"440":{"connections":[{"id":6133,"orbit":-5}],"group":105,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":440,"stats":["5% increased Block chance"]},"472":{"connections":[{"id":3744,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":472,"stats":["+8 to Dexterity"]},"479":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[{"id":29126,"orbit":2}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"483":{"connectionArt":"CharacterPlanned","connections":[{"id":12601,"orbit":2147483647},{"id":35745,"orbit":2147483647}],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"506":{"connections":[{"id":6416,"orbit":0}],"group":273,"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"]},"511":{"connections":[{"id":49734,"orbit":0}],"group":196,"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"]},"516":{"connections":[{"id":47157,"orbit":4}],"group":722,"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"]},"517":{"connections":[{"id":39037,"orbit":6},{"id":61027,"orbit":9}],"group":816,"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"]},"526":{"connections":[{"id":2645,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":4,"orbitIndex":4,"skill":526,"stats":["18% increased Stun Buildup with Maces"]},"528":{"ascendancyName":"Amazon","connections":[{"id":41008,"orbit":0}],"group":1540,"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"]},"535":{"connections":[{"id":34621,"orbit":0}],"group":1170,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":535,"stats":["15% increased Critical Damage Bonus"]},"541":{"connections":[],"group":205,"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"]},"558":{"connections":[],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":4,"skill":558,"stats":["12% increased Fire Damage"]},"589":{"connections":[{"id":14509,"orbit":0}],"group":106,"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"]},"630":{"connections":[{"id":13419,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":1,"orbitIndex":4,"skill":630,"stats":["15% increased Critical Damage Bonus"]},"632":{"connections":[{"id":56366,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":0,"orbitIndex":0,"skill":632,"stats":["3% increased Attack Speed with Daggers"]},"658":{"connections":[{"id":1861,"orbit":0}],"group":590,"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"]},"664":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1535,"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"]},"675":{"connections":[{"id":13489,"orbit":-9}],"group":132,"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"]},"703":{"connections":[{"id":44917,"orbit":-3}],"group":989,"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"]},"712":{"connections":[{"id":24948,"orbit":0}],"group":1384,"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"]},"722":{"connections":[{"id":3419,"orbit":0},{"id":15775,"orbit":0}],"group":1430,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":6952,"orbit":0}],"group":100,"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"]},"752":{"connections":[{"id":47420,"orbit":0}],"group":272,"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"]},"761":{"connectionArt":"CharacterPlanned","connections":[{"id":22133,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"762":{"ascendancyName":"Tactician","connections":[{"id":1988,"orbit":0}],"group":390,"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"]},"765":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"770":{"ascendancyName":"Infernalist","connections":[{"id":10694,"orbit":-7}],"group":759,"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"]},"829":{"connectionArt":"CharacterPlanned","connections":[{"id":36025,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":857,"stats":[]},"858":{"connections":[{"id":58387,"orbit":5}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":5,"orbitIndex":18,"skill":858,"stats":["7% increased Chaos Damage"]},"869":{"connections":[{"id":18959,"orbit":0}],"group":433,"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"]},"872":{"connections":[{"id":36556,"orbit":0}],"group":269,"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"]},"904":{"connections":[{"id":28578,"orbit":0}],"group":286,"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"]},"917":{"connections":[{"id":65160,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":10,"skill":917,"stats":["12% increased Stun Threshold"]},"934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"id":12526,"orbit":-4}],"group":763,"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"]},"968":{"connections":[{"id":6752,"orbit":0}],"group":602,"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"]},"989":{"connections":[{"id":26416,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":989,"stats":["15% increased Life Recovery from Flasks"]},"1019":{"connections":[{"id":45037,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1019,"stats":["12% increased Armour and Evasion Rating"]},"1020":{"connections":[{"id":54631,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":3,"skill":1020,"stats":["6% increased bonuses gained from Equipped Quiver"]},"1073":{"connections":[{"id":261,"orbit":0}],"group":1423,"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"]},"1087":{"connections":[{"id":25934,"orbit":0}],"group":401,"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"]},"1091":{"connections":[{"id":13333,"orbit":7},{"id":48699,"orbit":0}],"group":723,"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"]},"1104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":56876,"orbit":0}],"group":319,"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"]},"1130":{"connections":[{"id":29611,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":0,"orbitIndex":0,"skill":1130,"stats":["10% increased Damage with Flails"]},"1140":{"connections":[{"id":15507,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1143":{"connections":[{"id":58170,"orbit":0},{"id":50084,"orbit":0}],"group":650,"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"]},"1144":{"connections":[{"id":42070,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":1144,"stats":["8% increased Accuracy Rating"]},"1151":{"connections":[{"id":4113,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":8,"skill":1151,"stats":["15% increased Freeze Buildup"]},"1169":{"connections":[{"id":25031,"orbit":0}],"group":297,"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"]},"1170":{"connections":[{"id":58295,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":22,"skill":1170,"stats":["10% increased Attack Area Damage"]},"1200":{"connections":[{"id":53822,"orbit":-5},{"id":55190,"orbit":0},{"id":62313,"orbit":0},{"id":18353,"orbit":0}],"group":98,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":1205,"stats":[]},"1207":{"connections":[{"id":38323,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1214":{"connections":[{"id":53823,"orbit":-4}],"group":177,"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"]},"1215":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":1,"orbitIndex":5,"skill":1215,"stats":[]},"1218":{"connections":[{"id":14945,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":18,"skill":1218,"stats":["Minions have 10% increased maximum Life"]},"1220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":686,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":1220,"stats":[]},"1221":{"connections":[{"id":62237,"orbit":0},{"id":35743,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1221,"stats":["12% increased Armour and Evasion Rating"]},"1286":{"connections":[{"id":17903,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":12,"skill":1286,"stats":["16% increased Thorns damage"]},"1347":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":50098,"orbit":7}],"group":1533,"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"]},"1352":{"connections":[{"id":53216,"orbit":0}],"group":258,"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%"]},"1416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1416,"stats":[]},"1420":{"connections":[],"group":1144,"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"]},"1433":{"connections":[{"id":31238,"orbit":0},{"id":48530,"orbit":0},{"id":95,"orbit":0}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1442":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53108,"orbit":0}],"group":520,"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"]},"1447":{"connections":[{"id":22393,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":14,"skill":1447,"stats":["Minions deal 10% increased Damage"]},"1448":{"connections":[],"group":1308,"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"]},"1459":{"connections":[{"id":47252,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":12,"skill":1459,"stats":["16% increased Mana Regeneration Rate while stationary"]},"1468":{"connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":6,"skill":1468,"stats":["10% increased Mana Regeneration Rate"]},"1477":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":11037,"orbit":0}],"group":813,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":1477,"stats":[]},"1499":{"connections":[{"id":33830,"orbit":-2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":0,"skill":1499,"stats":["10% increased Life Regeneration rate"]},"1502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":269,"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"]},"1506":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1108,"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"]},"1514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":29527,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1514,"stats":[]},"1543":{"connections":[{"id":14096,"orbit":7},{"id":59376,"orbit":0}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":1,"orbitIndex":0,"skill":1543,"stats":["3% increased Cast Speed"]},"1546":{"connections":[],"group":632,"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"]},"1579":{"ascendancyName":"Chronomancer","connections":[{"id":3605,"orbit":-9}],"group":404,"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"]},"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":1513,"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":[]},"1599":{"connections":[{"id":31286,"orbit":0}],"group":1348,"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"]},"1603":{"connections":[{"id":32040,"orbit":0}],"group":1142,"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"]},"1628":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":2147483647},{"id":9554,"orbit":-7}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1631":{"connections":[{"id":29049,"orbit":3},{"id":14001,"orbit":-3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":4,"skill":1631,"stats":["10% increased Charm Effect Duration"]},"1680":{"connections":[],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Projectile Parry Range","orbit":2,"orbitIndex":2,"skill":1680,"stats":["20% increased Parry Range"]},"1700":{"connections":[{"id":48699,"orbit":0}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":2,"orbitIndex":12,"skill":1700,"stats":["10% increased Cold Damage"]},"1723":{"connections":[{"id":53595,"orbit":0},{"id":2134,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":1723,"stats":["10% increased Poison Duration"]},"1739":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"1755":{"connections":[{"id":18845,"orbit":-4}],"group":757,"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"]},"1773":{"connections":[{"id":51213,"orbit":4}],"group":1114,"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"]},"1778":{"connections":[{"id":30408,"orbit":0},{"id":17523,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":12,"skill":1778,"stats":["20% increased Hazard Duration"]},"1801":{"connections":[{"id":60,"orbit":3}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":7,"orbitIndex":5,"skill":1801,"stats":["5% chance to Blind Enemies on Hit"]},"1823":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"1825":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":167,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1825,"stats":[]},"1826":{"connections":[{"id":39037,"orbit":0}],"group":874,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"1841":{"connections":[{"id":9405,"orbit":5}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":1841,"stats":["15% increased Evasion Rating"]},"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"]},"1861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":590,"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"]},"1865":{"connections":[{"id":54934,"orbit":0}],"group":619,"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"]},"1869":{"connections":[{"id":27095,"orbit":-4}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":1,"skill":1869,"stats":["15% increased Freeze Buildup"]},"1878":{"connections":[{"id":14328,"orbit":0}],"group":433,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1913":{"connections":[{"id":38646,"orbit":0},{"id":36709,"orbit":0}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":3,"skill":1913,"stats":["+20 to Armour"]},"1915":{"connections":[{"id":60085,"orbit":0}],"group":899,"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"]},"1922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51184,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1922,"stats":[]},"1928":{"connections":[],"group":511,"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"]},"1953":{"connections":[{"id":23905,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":1953,"stats":["15% increased Magnitude of Shock you inflict"]},"1973":{"connections":[{"id":8607,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":8,"skill":1973,"stats":["10% increased Mana Recovery from Flasks"]},"1988":{"ascendancyName":"Tactician","connections":[],"group":416,"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"]},"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"]},"1995":{"connections":[],"group":1139,"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"]},"2021":{"connections":[{"id":25857,"orbit":2147483647}],"group":1414,"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"]},"2071":{"connections":[{"id":38420,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":0,"skill":2071,"stats":["10% increased Mana Regeneration Rate"]},"2074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":419,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2074,"stats":[]},"2091":{"connections":[],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":4,"orbitIndex":18,"skill":2091,"stats":["8% chance to Poison on Hit"]},"2102":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":712,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2102,"stats":[]},"2113":{"connections":[{"id":326,"orbit":0},{"id":59694,"orbit":0}],"group":1462,"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"]},"2119":{"connections":[{"id":53505,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":0,"skill":2119,"stats":["10% increased amount of Life Leeched"]},"2128":{"connections":[{"id":65256,"orbit":0}],"group":1241,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":2128,"stats":["10% increased Hazard Area of Effect"]},"2134":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":9703,"orbit":0}],"group":1484,"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"]},"2138":{"connections":[{"id":32523,"orbit":0}],"group":632,"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"]},"2174":{"connections":[{"id":19249,"orbit":4}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":70,"skill":2174,"stats":["15% increased Totem Damage"]},"2200":{"connections":[{"id":35689,"orbit":7}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":7,"orbitIndex":20,"skill":2200,"stats":["10% increased Damage"]},"2211":{"connections":[{"id":7473,"orbit":7}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":19,"skill":2211,"stats":["Herald Skills deal 20% increased Damage"]},"2244":{"connections":[],"group":431,"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"]},"2254":{"connections":[{"id":60685,"orbit":0},{"id":43736,"orbit":5},{"id":14666,"orbit":6}],"group":821,"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"]},"2334":{"connections":[{"id":65091,"orbit":6},{"id":3209,"orbit":-6}],"group":1396,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":2334,"stats":["+8 to Dexterity"]},"2335":{"connections":[{"id":18121,"orbit":0}],"group":1191,"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"]},"2336":{"connections":[{"id":63402,"orbit":2}],"group":403,"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"]},"2344":{"connections":[{"id":34317,"orbit":0}],"group":260,"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"]},"2361":{"connections":[{"id":34316,"orbit":0}],"group":1462,"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"]},"2394":{"connections":[],"group":833,"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"]},"2397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":666,"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"]},"2408":{"connections":[{"id":35696,"orbit":0},{"id":35534,"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":2408,"stats":["+5 to any Attribute"]},"2446":{"connections":[{"id":37164,"orbit":0}],"group":1171,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Elemental Damage","orbit":3,"orbitIndex":18,"skill":2446,"stats":["10% increased Elemental Damage"]},"2455":{"connections":[],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":11,"skill":2455,"stats":["8% increased Projectile Damage"]},"2461":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":44605,"orbit":0}],"group":809,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":2461,"stats":[]},"2486":{"connections":[{"id":63732,"orbit":3},{"id":19341,"orbit":4},{"id":58884,"orbit":0}],"group":891,"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"]},"2491":{"connections":[{"id":28175,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":10,"skill":2491,"stats":[]},"2500":{"connections":[{"id":6030,"orbit":7}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":10,"skill":2500,"stats":["8% chance to Poison on Hit"]},"2508":{"connections":[{"id":47168,"orbit":0},{"id":59425,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":18,"skill":2508,"stats":["3% of Damage taken Recouped as Life"]},"2511":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":544,"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"]},"2516":{"ascendancyName":"Lich","connections":[],"group":1225,"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"]},"2559":{"connections":[{"id":62542,"orbit":7}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":22,"skill":2559,"stats":["10% increased Flask Charges gained"]},"2560":{"connections":[{"id":20044,"orbit":0}],"group":1472,"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"]},"2575":{"connections":[{"id":65154,"orbit":0}],"group":172,"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"]},"2582":{"connections":[{"id":48116,"orbit":0},{"id":41861,"orbit":0},{"id":56847,"orbit":0}],"group":1448,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2606":{"connections":[{"id":47284,"orbit":0},{"id":20388,"orbit":0},{"id":15194,"orbit":0},{"id":3414,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":1,"orbitIndex":6,"skill":2606,"stats":["Minions have 10% increased maximum Life"]},"2645":{"connections":[{"id":14832,"orbit":0},{"id":52829,"orbit":0}],"group":126,"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"]},"2653":{"connections":[{"id":19203,"orbit":0},{"id":30896,"orbit":0}],"group":448,"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"]},"2672":{"connections":[{"id":45569,"orbit":6}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":2,"skill":2672,"stats":["15% increased Critical Spell Damage Bonus"]},"2702":{"ascendancyName":"Amazon","connections":[{"id":3065,"orbit":7}],"group":1550,"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"]},"2732":{"connections":[{"id":16790,"orbit":-2}],"group":907,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":1,"orbitIndex":11,"skill":2732,"stats":["8% increased Mana Cost Efficiency"]},"2733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":2733,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"2745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1371,"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"]},"2810":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-3}],"group":611,"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"]},"2814":{"connections":[{"id":41447,"orbit":0},{"id":19749,"orbit":0}],"group":1010,"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%"]},"2841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":939,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":2841,"stats":[]},"2843":{"connections":[{"id":61396,"orbit":0},{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"2847":{"connections":[{"id":45272,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2857":{"ascendancyName":"Stormweaver","connections":[{"id":7998,"orbit":0}],"group":517,"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"]},"2863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":540,"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"]},"2864":{"connections":[{"id":54818,"orbit":0},{"id":21468,"orbit":0},{"id":33369,"orbit":0},{"id":59480,"orbit":0},{"id":63360,"orbit":0}],"group":658,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2877":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"2888":{"connections":[{"id":8827,"orbit":0}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":15,"skill":2888,"stats":["8% increased amount of Life Leeched"]},"2936":{"connections":[{"id":13407,"orbit":-3}],"group":1485,"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"]},"2946":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Resistance Mastery","orbit":1,"orbitIndex":1,"skill":2946,"stats":[]},"2955":{"connections":[{"id":28800,"orbit":0}],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":2,"orbitIndex":0,"skill":2955,"stats":["10% increased Projectile Damage"]},"2964":{"connections":[{"id":18374,"orbit":-7}],"group":493,"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"]},"2978":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":2978,"stats":[]},"2995":{"ascendancyName":"Lich","connections":[{"id":2516,"orbit":4}],"group":1209,"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"]},"2999":{"connections":[],"group":270,"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"]},"3025":{"connections":[{"id":38732,"orbit":0},{"id":36782,"orbit":0},{"id":25594,"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":0,"orbitIndex":0,"skill":3025,"stats":["+5 to any Attribute"]},"3027":{"connections":[{"id":54228,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":22,"skill":3027,"stats":["10% increased Physical Damage"]},"3041":{"connections":[{"id":59795,"orbit":-4},{"id":858,"orbit":0},{"id":19240,"orbit":6}],"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":3,"orbitIndex":10,"skill":3041,"stats":["+5 to any Attribute"]},"3042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":51871,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":19,"skill":3042,"stats":[]},"3051":{"connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":0,"skill":3051,"stats":["Offerings have 30% increased Maximum Life"]},"3065":{"ascendancyName":"Amazon","connections":[],"group":1552,"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"]},"3084":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":30996,"orbit":2147483647}],"group":500,"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"]},"3091":{"connections":[{"id":24087,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":2,"orbitIndex":8,"skill":3091,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]},"3109":{"connections":[{"id":29514,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":6,"skill":3109,"stats":["10% increased Grenade Area of Effect"]},"3128":{"connections":[{"id":19722,"orbit":0}],"group":1251,"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"]},"3131":{"connections":[{"id":2394,"orbit":0}],"group":833,"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"]},"3165":{"ascendancyName":"Blood Mage","connections":[{"id":56162,"orbit":-4}],"group":1025,"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"]},"3170":{"connections":[{"id":65161,"orbit":0}],"group":1387,"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"]},"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"]},"3191":{"connections":[{"id":9863,"orbit":4}],"group":590,"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"]},"3203":{"connections":[{"id":30562,"orbit":-4},{"id":28464,"orbit":4}],"group":1115,"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"]},"3209":{"connections":[{"id":59720,"orbit":-6},{"id":65091,"orbit":4}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":16,"skill":3209,"stats":["15% increased Evasion Rating"]},"3215":{"connections":[{"id":44359,"orbit":0}],"group":881,"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"]},"3218":{"connections":[{"id":48171,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":17,"skill":3218,"stats":["10% increased Elemental Damage"]},"3223":{"ascendancyName":"Ritualist","connections":[{"id":7068,"orbit":-5},{"id":34785,"orbit":9}],"group":1556,"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"]},"3234":{"connections":[{"id":4447,"orbit":0},{"id":31745,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":8,"skill":3234,"stats":["15% increased Pin duration"]},"3242":{"connections":[{"id":59636,"orbit":-4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":3242,"stats":["10% increased Mana Regeneration Rate"]},"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"]},"3251":{"connections":[{"id":21984,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"3281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connectionArt":"CharacterPlanned","connections":[{"id":35720,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3282":{"connections":[{"id":52860,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":15,"skill":3282,"stats":["20% increased Ballista Immobilisation buildup"]},"3332":{"connections":[],"group":623,"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"]},"3336":{"connections":[{"id":30615,"orbit":0}],"group":1408,"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"]},"3339":{"connections":[{"id":45585,"orbit":0}],"group":453,"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"]},"3348":{"connections":[{"id":50767,"orbit":0}],"group":101,"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"]},"3355":{"connections":[{"id":25211,"orbit":0}],"group":608,"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"]},"3363":{"connections":[{"id":38433,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":11,"skill":3363,"stats":["Minions have 10% increased maximum Life"]},"3365":{"connections":[{"id":59289,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":17,"skill":3365,"stats":["15% increased Immobilisation buildup"]},"3367":{"aliasPassiveSocket":"voices_jewel_slot5","connections":[],"group":668,"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,"skill":3367,"stats":[]},"3414":{"connections":[{"id":14575,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":3414,"stats":["Minions have +20% to Lightning Resistance"]},"3419":{"connections":[{"id":20429,"orbit":0},{"id":30973,"orbit":2}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Damage","orbit":6,"orbitIndex":59,"skill":3419,"stats":["10% increased Damage with Daggers"]},"3431":{"connections":[{"id":43082,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":6,"skill":3431,"stats":["3% increased Skill Speed"]},"3438":{"connections":[{"id":18856,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":3,"skill":3438,"stats":["Invocated Spells deal 15% increased Damage"]},"3443":{"connections":[{"id":14548,"orbit":-4},{"id":63545,"orbit":-3},{"id":55180,"orbit":7}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":12,"skill":3443,"stats":["Minions deal 10% increased Damage"]},"3446":{"connections":[{"id":61938,"orbit":0},{"id":58088,"orbit":0},{"id":41147,"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":3446,"stats":["+5 to any Attribute"]},"3458":{"connections":[{"id":45609,"orbit":-4}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":23,"skill":3458,"stats":["15% increased Critical Damage Bonus"]},"3463":{"connections":[{"id":4328,"orbit":0},{"id":26885,"orbit":0},{"id":28021,"orbit":0}],"group":1211,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"3471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":676,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":3471,"stats":[]},"3472":{"connections":[{"id":26682,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":7,"orbitIndex":12,"skill":3472,"stats":["10% increased Critical Hit Chance for Spells"]},"3492":{"connections":[{"id":60313,"orbit":0},{"id":19112,"orbit":0}],"group":711,"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"]},"3516":{"connections":[{"id":62039,"orbit":0},{"id":23227,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":0,"skill":3516,"stats":["10% increased Melee Damage"]},"3543":{"connections":[{"id":31825,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":23,"skill":3543,"stats":["12% increased Attack Cold Damage"]},"3544":{"connectionArt":"CharacterPlanned","connections":[{"id":19953,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3567":{"connections":[{"id":53188,"orbit":0},{"id":10159,"orbit":0}],"group":1002,"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"]},"3601":{"connections":[{"id":47191,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":62,"skill":3601,"stats":["12% increased Fire Damage"]},"3605":{"ascendancyName":"Chronomancer","connections":[],"group":371,"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"]},"3624":{"connections":[{"id":18470,"orbit":0},{"id":10927,"orbit":0},{"id":16484,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":5,"skill":3624,"stats":["15% increased Pin Buildup"]},"3628":{"connections":[{"id":64474,"orbit":0},{"id":3251,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":19,"skill":3628,"stats":["6% faster start of Energy Shield Recharge"]},"3630":{"connections":[{"id":62624,"orbit":-5}],"group":1316,"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"]},"3640":{"connections":[{"id":37780,"orbit":2147483647},{"id":17724,"orbit":2147483647},{"id":14267,"orbit":0}],"group":1446,"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"]},"3652":{"connections":[{"id":56714,"orbit":3}],"group":483,"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"]},"3660":{"connections":[{"id":25619,"orbit":-7},{"id":57196,"orbit":0}],"group":845,"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"]},"3663":{"connections":[],"group":311,"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"]},"3665":{"connections":[{"id":32185,"orbit":-7}],"group":1009,"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"]},"3681":{"connectionArt":"CharacterPlanned","connections":[{"id":57386,"orbit":-8}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3685":{"connections":[{"id":32151,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":3685,"stats":["+3 to all Attributes"]},"3688":{"connections":[{"id":47614,"orbit":-7},{"id":32509,"orbit":0}],"group":1090,"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"]},"3698":{"connections":[{"id":33137,"orbit":0}],"group":289,"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"]},"3700":{"connections":[{"id":6842,"orbit":3}],"group":1276,"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"]},"3704":{"ascendancyName":"Witchhunter","connections":[{"id":32559,"orbit":0}],"group":281,"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"]},"3717":{"connections":[{"id":19998,"orbit":0},{"id":35653,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":3717,"stats":["12% increased Damage with Crossbows"]},"3723":{"connections":[{"id":16413,"orbit":0},{"id":17092,"orbit":0}],"group":226,"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"]},"3744":{"connections":[{"id":5332,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":10,"skill":3744,"stats":["+8 to Dexterity"]},"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"]},"3775":{"connections":[{"id":45244,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":12,"skill":3775,"stats":["15% increased Life Flask Charges gained"]},"3781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"3823":{"connections":[{"id":5726,"orbit":0}],"group":747,"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"]},"3843":{"connections":[{"id":65265,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":11,"skill":3843,"stats":["Parry has 25% increased Stun Buildup"]},"3866":{"connections":[{"id":32258,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":5,"skill":3866,"stats":["Minions have 12% increased maximum Life"]},"3893":{"connections":[{"id":28038,"orbit":-2}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":0,"skill":3893,"stats":["15% increased Evasion Rating"]},"3894":{"connections":[{"id":13307,"orbit":0},{"id":857,"orbit":0}],"group":609,"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"]},"3896":{"connectionArt":"CharacterPlanned","connections":[{"id":56320,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3918":{"connections":[{"id":59695,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":3918,"stats":["10% increased Mana Regeneration Rate"]},"3921":{"connections":[{"id":38398,"orbit":0}],"group":555,"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"]},"3936":{"connections":[{"id":13397,"orbit":0}],"group":693,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":3936,"stats":["10% increased Melee Damage"]},"3949":{"connections":[{"id":27296,"orbit":0},{"id":15247,"orbit":2}],"group":141,"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"]},"3985":{"connections":[{"id":48660,"orbit":0},{"id":64140,"orbit":3}],"group":1061,"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"]},"3987":{"ascendancyName":"Deadeye","connections":[{"id":30,"orbit":0}],"group":1502,"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"]},"3988":{"connections":[{"id":51832,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":13,"skill":3988,"stats":["Empowered Attacks deal 16% increased Damage"]},"3994":{"connections":[{"id":34908,"orbit":0}],"group":1358,"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"]},"3995":{"connections":[{"id":12311,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":13,"skill":3995,"stats":["15% increased Crossbow Reload Speed"]},"3999":{"connections":[{"id":37665,"orbit":4},{"id":57863,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":15,"skill":3999,"stats":["10% increased Attack Area Damage"]},"4015":{"connections":[{"id":47429,"orbit":3},{"id":59466,"orbit":-3}],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":4,"orbitIndex":6,"skill":4015,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"4017":{"connections":[{"id":10079,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4017,"stats":["10% increased Mana Regeneration Rate"]},"4031":{"connections":[{"id":50403,"orbit":0}],"group":1373,"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"]},"4046":{"connections":[{"id":8875,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":2,"orbitIndex":8,"skill":4046,"stats":["15% increased Electrocute Buildup"]},"4059":{"connections":[{"id":10382,"orbit":0},{"id":9510,"orbit":0},{"id":2446,"orbit":0},{"id":18744,"orbit":7},{"id":42339,"orbit":-7}],"group":1130,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4061":{"connections":[{"id":27491,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":36,"skill":4061,"stats":["15% increased maximum Energy Shield"]},"4083":{"connections":[{"id":33815,"orbit":0},{"id":43677,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":11,"skill":4083,"stats":["10% increased Magnitude of Poison you inflict"]},"4086":{"ascendancyName":"Tactician","connections":[],"group":452,"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"]},"4091":{"connections":[{"id":44316,"orbit":2147483647}],"group":271,"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"]},"4113":{"connections":[{"id":4627,"orbit":0}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":4,"skill":4113,"stats":["15% increased Freeze Buildup"]},"4128":{"connections":[{"id":54283,"orbit":3},{"id":54811,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":18,"skill":4128,"stats":["15% increased Armour"]},"4139":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":138,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":4139,"stats":[]},"4140":{"connections":[{"id":59093,"orbit":0},{"id":57273,"orbit":0},{"id":296,"orbit":0}],"group":224,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4157":{"connections":[{"id":49220,"orbit":-6}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":18,"skill":4157,"stats":["10% increased Critical Hit Chance"]},"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"]},"4203":{"connections":[{"id":30555,"orbit":4},{"id":42736,"orbit":-4},{"id":59603,"orbit":-4},{"id":49046,"orbit":0},{"id":42076,"orbit":3}],"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":4203,"stats":["+5 to any Attribute"]},"4238":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1201,"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"]},"4245":{"ascendancyName":"Tactician","connections":[{"id":54838,"orbit":0}],"group":340,"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"]},"4271":{"connections":[{"id":62887,"orbit":0},{"id":33225,"orbit":-3},{"id":61768,"orbit":-7},{"id":63926,"orbit":-2}],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":8,"skill":4271,"stats":["Minions have +8% to all Elemental Resistances"]},"4295":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":34248,"orbit":-3}],"group":537,"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"]},"4313":{"connections":[{"id":28992,"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":55896,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":7,"orbitIndex":6,"skill":4313,"stats":["8% increased Projectile Damage"]},"4328":{"connections":[{"id":21208,"orbit":0},{"id":44628,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4331":{"connections":[{"id":33590,"orbit":0}],"group":122,"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"]},"4345":{"connections":[{"id":45885,"orbit":0}],"group":701,"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"]},"4346":{"connections":[{"id":4519,"orbit":0},{"id":20677,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":4346,"stats":["10% increased Critical Hit Chance"]},"4364":{"connections":[{"id":23736,"orbit":0}],"group":1104,"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"]},"4367":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"4377":{"connections":[{"id":50273,"orbit":0}],"group":833,"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"]},"4378":{"connections":[{"id":6330,"orbit":0},{"id":59503,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":9,"skill":4378,"stats":["8% increased Accuracy Rating"]},"4407":{"connections":[],"group":581,"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"]},"4423":{"connections":[{"id":54058,"orbit":0}],"group":1477,"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"]},"4442":{"connections":[{"id":62034,"orbit":0}],"group":144,"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"]},"4447":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":984,"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"]},"4456":{"connections":[{"id":57710,"orbit":0},{"id":4776,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4467":{"connections":[{"id":42347,"orbit":-2}],"group":1469,"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"]},"4492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":795,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Attributes Mastery","orbit":0,"orbitIndex":0,"skill":4492,"stats":[]},"4519":{"connections":[{"id":13724,"orbit":0}],"group":1118,"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"]},"4527":{"connections":[{"id":54701,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4534":{"connections":[],"group":1293,"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"]},"4536":{"connections":[{"id":37514,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":1,"skill":4536,"stats":["3% increased Attack Speed with Quarterstaves"]},"4544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1166,"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"]},"4547":{"connections":[{"id":2946,"orbit":0}],"group":243,"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"]},"4552":{"connections":[{"id":50817,"orbit":2}],"group":1229,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":4552,"stats":["10% increased Mana Regeneration Rate"]},"4577":{"connections":[{"id":3999,"orbit":4}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":8,"skill":4577,"stats":["6% increased Area of Effect for Attacks"]},"4579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":910,"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"]},"4621":{"connectionArt":"CharacterPlanned","connections":[{"id":57202,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4623":{"connections":[{"id":48524,"orbit":4}],"group":472,"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"]},"4624":{"connections":[{"id":49550,"orbit":3}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":4624,"stats":["Gain 1 Rage on Melee Hit"]},"4627":{"connections":[{"id":44179,"orbit":0},{"id":55572,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.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"]},"4661":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":505,"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"]},"4663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":388,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":0,"orbitIndex":0,"skill":4663,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4664":{"connections":[{"id":43938,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":42,"skill":4664,"stats":["6% increased Trap Throwing Speed"]},"4665":{"connections":[{"id":1913,"orbit":0}],"group":655,"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"]},"4673":{"connections":[{"id":10047,"orbit":0},{"id":51812,"orbit":0}],"group":238,"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"]},"4681":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":26228,"orbit":0}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4709":{"connections":[],"group":1310,"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"]},"4716":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":678,"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"]},"4725":{"connections":[{"id":4140,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":4,"orbitIndex":63,"skill":4725,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"4739":{"connections":[{"id":18845,"orbit":0}],"group":798,"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"]},"4748":{"connections":[{"id":2254,"orbit":6}],"group":819,"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"]},"4776":{"connections":[{"id":14363,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":4776,"stats":["Damage Penetrates 6% Lightning Resistance"]},"4806":{"connections":[{"id":32183,"orbit":-4}],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":4806,"stats":["Damage Penetrates 6% Cold Resistance"]},"4810":{"connections":[{"id":48805,"orbit":7},{"id":6161,"orbit":0}],"group":1132,"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"]},"4828":{"connections":[{"id":19044,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4828,"stats":["10% increased Mana Regeneration Rate"]},"4844":{"connections":[{"id":33053,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":1,"skill":4844,"stats":["10% increased Projectile Damage"]},"4847":{"connections":[{"id":6294,"orbit":5}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":5,"orbitIndex":66,"skill":4847,"stats":["3% increased Cast Speed"]},"4850":{"connections":[{"id":35503,"orbit":0}],"group":968,"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"]},"4873":{"connectionArt":"CharacterPlanned","connections":[{"id":12683,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4882":{"connections":[{"id":38172,"orbit":0},{"id":51921,"orbit":0}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":3,"skill":4882,"stats":["15% increased Totem Damage"]},"4891":{"ascendancyName":"Ritualist","connections":[],"group":1566,"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"]},"4921":{"connections":[{"id":13524,"orbit":0}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":11,"skill":4921,"stats":["20% increased Presence Area of Effect"]},"4925":{"connections":[{"id":19779,"orbit":7}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":4925,"stats":["7% increased Chaos Damage"]},"4931":{"connections":[{"id":21404,"orbit":0},{"id":27307,"orbit":0}],"group":487,"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"]},"4948":{"connections":[],"group":382,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":6,"skill":4948,"stats":["Break 20% increased Armour"]},"4956":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":576,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":4956,"stats":[]},"4959":{"connections":[{"id":12166,"orbit":0}],"group":1253,"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"]},"4970":{"connections":[{"id":23195,"orbit":0}],"group":333,"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"]},"4985":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"5009":{"connections":[{"id":12169,"orbit":0}],"group":1242,"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"]},"5048":{"connections":[{"id":261,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":15,"skill":5048,"stats":["10% increased Magnitude of Poison you inflict"]},"5049":{"connections":[{"id":49231,"orbit":0},{"id":42177,"orbit":3}],"group":621,"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"]},"5066":{"connections":[{"id":6714,"orbit":0}],"group":654,"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"]},"5077":{"connections":[{"id":33400,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":4,"skill":5077,"stats":["15% increased Parry Hit Area of Effect"]},"5084":{"connections":[{"id":35324,"orbit":2}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":22,"skill":5084,"stats":["30% increased Flammability Magnitude"]},"5088":{"connections":[{"id":49537,"orbit":0}],"group":353,"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"]},"5098":{"connections":[{"id":16385,"orbit":-9},{"id":41651,"orbit":2147483647}],"group":667,"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"]},"5108":{"connections":[],"group":804,"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"]},"5163":{"connections":[{"id":26726,"orbit":0}],"group":1351,"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"]},"5186":{"connections":[{"id":6800,"orbit":3}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":5186,"stats":["11% increased Chaos Damage"]},"5188":{"connections":[{"id":27671,"orbit":0},{"id":38668,"orbit":0},{"id":24165,"orbit":0}],"group":1146,"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"]},"5191":{"connections":[{"id":54198,"orbit":0}],"group":1202,"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"]},"5227":{"connections":[{"id":51708,"orbit":0}],"group":1094,"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"]},"5257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"5284":{"connections":[{"id":32278,"orbit":0}],"group":512,"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"]},"5295":{"connections":[{"id":5961,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":5295,"stats":["Damage Penetrates 6% Lightning Resistance"]},"5305":{"connections":[{"id":3431,"orbit":0},{"id":24287,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":2,"skill":5305,"stats":["3% increased Skill Speed"]},"5314":{"connections":[{"id":29009,"orbit":0}],"group":774,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"5324":{"connections":[{"id":54437,"orbit":2147483647},{"id":2397,"orbit":0}],"group":666,"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"]},"5332":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":834,"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"]},"5335":{"connections":[{"id":52060,"orbit":0}],"group":1270,"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"]},"5348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5348,"stats":[]},"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"]},"5390":{"connections":[{"id":16142,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":14,"skill":5390,"stats":["15% increased Freeze Buildup"]},"5398":{"connections":[{"id":51820,"orbit":-6}],"group":292,"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"]},"5407":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":56910,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":5407,"stats":[]},"5410":{"connections":[{"id":33590,"orbit":0}],"group":122,"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"]},"5501":{"connections":[{"id":48821,"orbit":0}],"group":778,"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"]},"5544":{"connections":[{"id":43711,"orbit":3}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":10,"skill":5544,"stats":["30% increased Thorns Critical Damage Bonus"]},"5563":{"ascendancyName":"Amazon","connections":[{"id":47312,"orbit":-7}],"group":1557,"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"]},"5564":{"connections":[{"id":48833,"orbit":0},{"id":63585,"orbit":0}],"group":1053,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":5564,"stats":["15% increased Electrocute Buildup"]},"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"]},"5580":{"connections":[{"id":42710,"orbit":0}],"group":148,"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"]},"5594":{"connections":[{"id":50107,"orbit":0},{"id":8785,"orbit":0}],"group":1033,"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"]},"5642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":57405,"orbit":0}],"group":239,"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"]},"5663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":283,"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"]},"5681":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[],"group":451,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":5681,"stats":[]},"5686":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":202,"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"]},"5692":{"connections":[{"id":41154,"orbit":0},{"id":35708,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":8,"skill":5692,"stats":["12% increased Magnitude of Chill you inflict"]},"5695":{"connections":[{"id":32309,"orbit":7},{"id":50104,"orbit":5}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":20,"skill":5695,"stats":["15% increased Archon Buff duration"]},"5702":{"connections":[{"id":13411,"orbit":-5}],"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":5702,"stats":["+5 to any Attribute"]},"5703":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"5704":{"connections":[{"id":62166,"orbit":0}],"group":1180,"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"]},"5710":{"connections":[{"id":6839,"orbit":-3},{"id":38323,"orbit":0},{"id":14923,"orbit":0},{"id":6529,"orbit":-4}],"group":636,"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"]},"5726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":747,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5726,"stats":[]},"5728":{"connections":[{"id":17349,"orbit":-3},{"id":58138,"orbit":0}],"group":116,"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"]},"5733":{"ascendancyName":"Spirit Walker","connections":[{"id":56489,"orbit":0}],"group":1542,"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"]},"5740":{"connections":[{"id":40687,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":2,"orbitIndex":6,"skill":5740,"stats":["20% increased Presence Area of Effect"]},"5766":{"connections":[{"id":51416,"orbit":-4},{"id":16705,"orbit":4}],"group":1231,"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"]},"5777":{"connections":[{"id":58651,"orbit":0}],"group":567,"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"]},"5797":{"connections":[{"id":59538,"orbit":0}],"group":1355,"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"]},"5800":{"connections":[{"id":43149,"orbit":0},{"id":22975,"orbit":0}],"group":299,"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"]},"5802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1307,"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"]},"5817":{"ascendancyName":"Deadeye","connections":[],"group":1508,"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"]},"5826":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1069,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":22,"skill":5826,"stats":[]},"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":[]},"5862":{"connections":[{"id":22697,"orbit":-2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":7,"orbitIndex":14,"skill":5862,"stats":["+5% to Lightning Resistance"]},"5920":{"connections":[{"id":52574,"orbit":-3},{"id":51921,"orbit":5}],"group":630,"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"]},"5936":{"connections":[{"id":65248,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":5936,"stats":["10% increased Elemental Damage"]},"5961":{"connections":[{"id":54675,"orbit":0},{"id":11315,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":5961,"stats":["10% increased Lightning Damage"]},"5988":{"connections":[{"id":38459,"orbit":7}],"group":1084,"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"]},"6006":{"connections":[{"id":38105,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":62,"skill":6006,"stats":["15% increased maximum Energy Shield"]},"6008":{"connections":[{"id":58096,"orbit":2}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":19,"skill":6008,"stats":["10% increased Spell Damage"]},"6010":{"connections":[{"id":13367,"orbit":0},{"id":38969,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":6010,"stats":["12% increased Accuracy Rating"]},"6015":{"connections":[{"id":35426,"orbit":6}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6030":{"connections":[],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":5,"skill":6030,"stats":["8% chance to Poison on Hit"]},"6077":{"connections":[{"id":35645,"orbit":-2}],"group":529,"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"]},"6078":{"connections":[{"id":61119,"orbit":4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":1,"skill":6078,"stats":["8% chance to Poison on Hit"]},"6079":{"connections":[{"id":10242,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":6079,"stats":["3% of Damage taken Recouped as Life"]},"6088":{"connectionArt":"CharacterPlanned","connections":[{"id":54380,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6100":{"connectionArt":"CharacterPlanned","connections":[{"id":20963,"orbit":4}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6109":{"ascendancyName":"Amazon","connections":[{"id":63254,"orbit":0}],"group":1554,"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"]},"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"]},"6133":{"connections":[{"id":33402,"orbit":0},{"id":58138,"orbit":0}],"group":116,"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"]},"6153":{"connections":[{"id":44952,"orbit":0},{"id":10362,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":14,"skill":6153,"stats":["10% increased Life Regeneration rate"]},"6161":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":0,"orbitIndex":0,"skill":6161,"stats":[]},"6178":{"connections":[{"id":33415,"orbit":0}],"group":919,"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"]},"6222":{"connections":[{"id":57608,"orbit":0},{"id":65189,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Damage","orbit":7,"orbitIndex":11,"skill":6222,"stats":["10% increased Damage while Shapeshifted"]},"6229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":26490,"orbit":7}],"group":498,"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"]},"6266":{"connections":[{"id":60085,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":9,"skill":6266,"stats":["10% increased Damage against Demons"]},"6269":{"connections":[{"id":45990,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":2,"orbitIndex":1,"skill":6269,"stats":["3% increased Attack Speed with Axes"]},"6274":{"connections":[{"id":56567,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":17,"skill":6274,"stats":["8% increased Accuracy Rating"]},"6287":{"connections":[{"id":364,"orbit":2147483647}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":6287,"stats":["+8 to Intelligence"]},"6294":{"connections":[{"id":52429,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":4,"orbitIndex":54,"skill":6294,"stats":["3% increased Cast Speed"]},"6304":{"connections":[{"id":12125,"orbit":0}],"group":381,"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"]},"6330":{"connections":[],"group":1319,"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"]},"6338":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":2254,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":6338,"stats":[]},"6355":{"connections":[{"id":14110,"orbit":-4},{"id":38124,"orbit":4}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":2,"skill":6355,"stats":["15% increased Totem Damage"]},"6356":{"connections":[{"id":27900,"orbit":0}],"group":463,"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"]},"6416":{"connections":[{"id":51821,"orbit":0}],"group":273,"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"]},"6490":{"connections":[{"id":14082,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":6490,"stats":["10% increased Physical Damage"]},"6502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":174,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"name":"Flail Mastery","orbit":0,"orbitIndex":0,"skill":6502,"stats":[]},"6505":{"connections":[{"id":55060,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":3,"orbitIndex":4,"skill":6505,"stats":["15% chance to Pierce an Enemy"]},"6514":{"connections":[{"id":47173,"orbit":0}],"group":188,"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"]},"6529":{"connections":[{"id":32416,"orbit":-3}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":0,"skill":6529,"stats":["15% increased Armour"]},"6530":{"connections":[{"id":1448,"orbit":4},{"id":11825,"orbit":5}],"group":1308,"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"]},"6544":{"connections":[{"id":56061,"orbit":6},{"id":42604,"orbit":0}],"group":422,"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"]},"6570":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1256,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":6570,"stats":[]},"6588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":861,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":6588,"stats":[]},"6596":{"connections":[{"id":41171,"orbit":0}],"group":981,"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"]},"6623":{"connections":[{"id":12821,"orbit":0}],"group":505,"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"]},"6626":{"connections":[{"id":46475,"orbit":4}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":21,"skill":6626,"stats":["12% increased Armour and Evasion Rating"]},"6655":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":687,"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"]},"6660":{"connections":[{"id":39050,"orbit":-7}],"group":1223,"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"]},"6686":{"connections":[{"id":51184,"orbit":-4}],"group":757,"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"]},"6689":{"connections":[{"id":51735,"orbit":0}],"group":709,"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"]},"6714":{"connections":[{"id":41646,"orbit":0}],"group":654,"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"]},"6715":{"connections":[{"id":116,"orbit":3},{"id":41372,"orbit":0}],"group":881,"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"]},"6735":{"connections":[{"id":41935,"orbit":4},{"id":43460,"orbit":-5}],"group":169,"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"]},"6744":{"connections":[{"id":49357,"orbit":0},{"id":483,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6748":{"connections":[{"id":48618,"orbit":7},{"id":62122,"orbit":3}],"group":537,"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"]},"6752":{"connections":[{"id":7378,"orbit":0},{"id":29148,"orbit":4}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":23,"skill":6752,"stats":["12% increased Fire Damage"]},"6772":{"connections":[{"id":60505,"orbit":0}],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6789":{"connections":[{"id":4313,"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":22193,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":2,"orbitIndex":1,"skill":6789,"stats":["8% increased Projectile Damage"]},"6792":{"connections":[{"id":33245,"orbit":0},{"id":2408,"orbit":0}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":6,"skill":6792,"stats":["10% increased Projectile Damage"]},"6800":{"connections":[{"id":32438,"orbit":4}],"group":1306,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":6800,"stats":["11% increased Chaos Damage"]},"6839":{"connections":[{"id":39581,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":14,"skill":6839,"stats":["15% increased Stun Buildup"]},"6842":{"connections":[{"id":18472,"orbit":3}],"group":1276,"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"]},"6872":{"connections":[{"id":33939,"orbit":0}],"group":144,"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"]},"6874":{"connectionArt":"CharacterPlanned","connections":[{"id":34940,"orbit":-2}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6891":{"connections":[{"id":56265,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":22,"skill":6891,"stats":["15% increased Critical Damage Bonus"]},"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":600,"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"]},"6900":{"connections":[{"id":26479,"orbit":-6},{"id":45751,"orbit":0}],"group":250,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Maximum Block","orbit":5,"orbitIndex":0,"skill":6900,"stats":["+1% to maximum Block chance"]},"6912":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":6912,"stats":[]},"6923":{"connections":[{"id":1087,"orbit":0}],"group":401,"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"]},"6935":{"ascendancyName":"Witchhunter","connections":[],"group":302,"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"]},"6950":{"connections":[{"id":49804,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":2,"skill":6950,"stats":["10% increased Exposure Effect"]},"6951":{"connections":[{"id":23608,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":4,"orbitIndex":54,"skill":6951,"stats":["10% increased Magnitude of Poison you inflict"]},"6952":{"connections":[],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":18,"skill":6952,"stats":["6% increased Area of Effect for Attacks"]},"6988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":2,"orbitIndex":10,"skill":6988,"stats":[]},"6999":{"connectionArt":"CharacterPlanned","connections":[{"id":15672,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7023":{"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":7023,"stats":[]},"7049":{"connections":[{"id":22556,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":19,"skill":7049,"stats":["30% increased Armour while Surrounded"]},"7054":{"connections":[{"id":21142,"orbit":0},{"id":47009,"orbit":0},{"id":17088,"orbit":0}],"group":1144,"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"]},"7060":{"connections":[{"id":24339,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":7060,"stats":["10% increased Life Recovery from Flasks"]},"7062":{"connections":[{"id":16680,"orbit":0},{"id":61432,"orbit":0}],"group":919,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7068":{"ascendancyName":"Ritualist","connections":[],"group":1551,"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"]},"7104":{"connections":[{"id":54733,"orbit":-3},{"id":14258,"orbit":-3}],"group":843,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":19,"skill":7104,"stats":["15% increased Effect of Puppet Master"]},"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":277,"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":[]},"7128":{"connections":[],"group":314,"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"]},"7163":{"connections":[{"id":45100,"orbit":3},{"id":23013,"orbit":0}],"group":1232,"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"]},"7183":{"connections":[{"id":48589,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":5,"skill":7183,"stats":["10% increased Life Recovery from Flasks"]},"7201":{"connections":[{"id":516,"orbit":3}],"group":722,"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"]},"7204":{"connections":[{"id":53527,"orbit":0},{"id":4985,"orbit":0},{"id":64525,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":0,"orbitIndex":0,"skill":7204,"stats":["15% increased Stun Buildup"]},"7218":{"connections":[{"id":60203,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":22,"skill":7218,"stats":["+8 to Strength"]},"7246":{"ascendancyName":"Stormweaver","connections":[{"id":39204,"orbit":0}],"group":517,"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"]},"7251":{"connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":7251,"stats":["10% increased Attack Damage"]},"7258":{"connectionArt":"CharacterPlanned","connections":[{"id":11861,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7275":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":743,"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"]},"7294":{"connections":[{"id":65498,"orbit":0},{"id":39307,"orbit":0},{"id":41017,"orbit":0}],"group":1421,"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"]},"7302":{"connections":[{"id":52615,"orbit":0},{"id":30077,"orbit":0}],"group":1362,"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"]},"7333":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":7333,"stats":[]},"7338":{"connections":[{"id":52060,"orbit":0}],"group":1270,"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"]},"7341":{"connections":[{"id":33244,"orbit":0}],"group":347,"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"]},"7344":{"connections":[{"id":58182,"orbit":0},{"id":26931,"orbit":0}],"group":1003,"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"]},"7353":{"connections":[{"id":9046,"orbit":3}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":7353,"stats":["10% increased Critical Hit Chance"]},"7378":{"connections":[{"id":65016,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":20,"skill":7378,"stats":["12% increased Fire Damage"]},"7390":{"connections":[{"id":17150,"orbit":7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":4,"skill":7390,"stats":["12% increased Armour and Evasion Rating"]},"7392":{"connections":[{"id":10571,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":19,"skill":7392,"stats":["12% increased Stun Threshold"]},"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"]},"7405":{"connections":[{"id":4850,"orbit":0}],"group":996,"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"]},"7412":{"connections":[{"id":45709,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":15,"skill":7412,"stats":["15% increased Life Flask Charges gained"]},"7424":{"connections":[{"id":36994,"orbit":0},{"id":1823,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":0,"skill":7424,"stats":["15% increased maximum Energy Shield"]},"7449":{"connections":[{"id":53696,"orbit":0}],"group":1113,"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"]},"7465":{"connections":[{"id":17664,"orbit":0}],"group":1356,"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"]},"7473":{"connections":[{"id":64471,"orbit":-4}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":23,"skill":7473,"stats":["Herald Skills deal 20% increased Damage"]},"7488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":7488,"stats":[]},"7526":{"connections":[{"id":17447,"orbit":0},{"id":22972,"orbit":0},{"id":43044,"orbit":0},{"id":24210,"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":7526,"stats":["+5 to any Attribute"]},"7542":{"connections":[],"group":245,"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"]},"7553":{"connectionArt":"CharacterPlanned","connections":[{"id":43385,"orbit":-7},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7554":{"connections":[{"id":23039,"orbit":-7}],"group":363,"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"]},"7576":{"connections":[{"id":33866,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":7576,"stats":["8% increased Attack Damage"]},"7604":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1383,"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"]},"7621":{"ascendancyName":"Invoker","connections":[{"id":55611,"orbit":0}],"group":1505,"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"]},"7628":{"connections":[{"id":41646,"orbit":0},{"id":55231,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"7642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":463,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":8,"skill":7642,"stats":[]},"7651":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":21788,"orbit":0}],"group":1461,"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"]},"7668":{"connections":[{"id":62015,"orbit":0}],"group":367,"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"]},"7716":{"connections":[],"group":328,"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"]},"7720":{"connections":[{"id":32932,"orbit":0}],"group":502,"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"]},"7721":{"connections":[{"id":54232,"orbit":0},{"id":61534,"orbit":3},{"id":18629,"orbit":-6},{"id":64683,"orbit":0}],"group":655,"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"]},"7741":{"connections":[{"id":42500,"orbit":0}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"7777":{"connections":[{"id":26739,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"7782":{"connections":[{"id":6161,"orbit":0}],"group":1132,"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"]},"7788":{"connections":[{"id":57805,"orbit":5}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":4,"skill":7788,"stats":["8% increased Knockback Distance"]},"7793":{"ascendancyName":"Infernalist","connections":[{"id":18348,"orbit":6}],"group":759,"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"]},"7809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1367,"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"]},"7847":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1436,"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"]},"7878":{"connections":[{"id":53901,"orbit":7}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":16,"skill":7878,"stats":["5% increased Block chance"]},"7888":{"connections":[{"id":17101,"orbit":0},{"id":28963,"orbit":2}],"group":1446,"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"]},"7922":{"connections":[{"id":45962,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Flask Duration","orbit":2,"orbitIndex":17,"skill":7922,"stats":["10% increased Flask Effect Duration"]},"7947":{"connections":[{"id":26061,"orbit":2}],"group":910,"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"]},"7960":{"connections":[],"group":374,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":2,"skill":7960,"stats":[]},"7971":{"connections":[{"id":1468,"orbit":-7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":10,"skill":7971,"stats":["10% increased Mana Regeneration Rate"]},"7972":{"connections":[{"id":25229,"orbit":0},{"id":5663,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":4,"skill":7972,"stats":["20% increased Endurance Charge Duration"]},"7979":{"ascendancyName":"Amazon","connections":[{"id":19233,"orbit":0}],"group":1545,"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"]},"7998":{"ascendancyName":"Stormweaver","connections":[{"id":39640,"orbit":0}],"group":517,"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"]},"8045":{"connections":[{"id":64927,"orbit":-6},{"id":52464,"orbit":5}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":7,"skill":8045,"stats":["10% increased amount of Mana Leeched"]},"8092":{"connections":[{"id":44605,"orbit":6},{"id":59028,"orbit":0}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":11,"skill":8092,"stats":["10% increased Projectile Damage"]},"8107":{"connectionArt":"CharacterPlanned","connections":[{"id":18081,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8115":{"connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":8,"skill":8115,"stats":["15% increased Pin Buildup"]},"8143":{"ascendancyName":"Invoker","connections":[{"id":16100,"orbit":4}],"group":1505,"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"]},"8145":{"connections":[{"id":23331,"orbit":-6}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":9,"skill":8145,"stats":["Damage Penetrates 6% Fire Resistance"]},"8154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":3921,"orbit":0},{"id":38398,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":0,"orbitIndex":0,"skill":8154,"stats":[]},"8157":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":16,"skill":8157,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"8171":{"connections":[{"id":45162,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":22,"skill":8171,"stats":["20% increased Presence Area of Effect"]},"8246":{"connections":[{"id":37548,"orbit":0},{"id":64462,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":11,"skill":8246,"stats":["10% increased Attack Damage"]},"8248":{"connectionArt":"CharacterPlanned","connections":[{"id":48079,"orbit":0}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8249":{"connections":[{"id":63525,"orbit":0},{"id":16816,"orbit":0}],"group":1099,"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"]},"8260":{"connections":[{"id":21453,"orbit":0}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":0,"skill":8260,"stats":["20% increased Armour Break Duration"]},"8272":{"ascendancyName":"Witchhunter","connections":[],"group":219,"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"]},"8273":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":25565,"orbit":0}],"group":1390,"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"]},"8302":{"connections":[{"id":4467,"orbit":-3}],"group":1469,"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"]},"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":611,"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":[]},"8349":{"connections":[{"id":31644,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":19,"skill":8349,"stats":["+8 to Intelligence"]},"8357":{"connections":[{"id":10742,"orbit":0}],"group":475,"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"]},"8382":{"connections":[{"id":61863,"orbit":0}],"group":733,"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"]},"8397":{"connections":[{"id":41130,"orbit":0},{"id":1220,"orbit":0}],"group":689,"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"]},"8406":{"connections":[{"id":48305,"orbit":-4},{"id":5692,"orbit":0}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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":954,"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"]},"8421":{"connections":[{"id":35404,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":2,"orbitIndex":22,"skill":8421,"stats":["+5% to Cold Resistance"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8440":{"connections":[{"id":45013,"orbit":-7}],"group":891,"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"]},"8456":{"connections":[{"id":38329,"orbit":2147483647}],"group":1350,"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"]},"8460":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":8460,"stats":[]},"8483":{"connections":[{"id":6588,"orbit":0}],"group":861,"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"]},"8493":{"connections":[{"id":64471,"orbit":0},{"id":52860,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8509":{"connections":[{"id":59061,"orbit":9}],"group":218,"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"]},"8510":{"connections":[{"id":13030,"orbit":-3}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":8510,"stats":["Damaging Ailments deal damage 5% faster"]},"8522":{"connections":[{"id":26236,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":16,"skill":8522,"stats":["Meta Skills gain 8% increased Energy"]},"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"]},"8531":{"connections":[{"id":51534,"orbit":0},{"id":62661,"orbit":0}],"group":561,"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"]},"8535":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Spiked Whip","orbit":2,"orbitIndex":10,"skill":8535,"stats":["25% increased Damage with Flails"]},"8540":{"connections":[{"id":45230,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":10,"skill":8540,"stats":["10% increased Area of Effect of Curses"]},"8554":{"connections":[{"id":47191,"orbit":0}],"group":265,"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"]},"8556":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8556,"stats":[]},"8560":{"connections":[{"id":31273,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":1,"orbitIndex":11,"skill":8560,"stats":["10% increased Melee Damage"]},"8569":{"connections":[{"id":47177,"orbit":0},{"id":55507,"orbit":9},{"id":46034,"orbit":0},{"id":8540,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"8573":{"connections":[{"id":11526,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":26,"skill":8573,"stats":["12% increased Damage with Bows"]},"8600":{"connections":[{"id":27439,"orbit":0},{"id":40596,"orbit":8},{"id":44406,"orbit":4},{"id":43778,"orbit":0},{"id":31650,"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":8600,"stats":["+5 to any Attribute"]},"8606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1036,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8606,"stats":[]},"8607":{"connections":[{"id":46665,"orbit":0}],"group":255,"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"]},"8611":{"ascendancyName":"Lich","connections":[{"id":59,"orbit":-4}],"group":1173,"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"]},"8616":{"connections":[{"id":57710,"orbit":0},{"id":43576,"orbit":-4},{"id":36746,"orbit":4}],"group":776,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8629":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":395,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8629,"stats":[]},"8631":{"connections":[{"id":32660,"orbit":0},{"id":59256,"orbit":0},{"id":30979,"orbit":0}],"group":561,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":2,"skill":8631,"stats":["10% increased Critical Hit Chance"]},"8644":{"connections":[{"id":62496,"orbit":0},{"id":27417,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":51,"skill":8644,"stats":["10% increased Trap Damage"]},"8660":{"connections":[{"id":18846,"orbit":0}],"group":394,"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"]},"8693":{"connectionArt":"CharacterPlanned","connections":[{"id":35393,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8697":{"connections":[],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":8697,"stats":["12% increased Elemental Damage with Attacks"]},"8723":{"connectionArt":"CharacterPlanned","connections":[{"id":3681,"orbit":-5},{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8734":{"connections":[{"id":52743,"orbit":0}],"group":1370,"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"]},"8737":{"connections":[{"id":41511,"orbit":0},{"id":25927,"orbit":-7},{"id":6077,"orbit":-2},{"id":56284,"orbit":-2}],"group":531,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":8737,"stats":["Minions deal 10% increased Damage"]},"8782":{"connections":[{"id":13882,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Empowering Infusions","orbit":7,"orbitIndex":14,"recipe":["Suffering","Envy","Guilt"],"skill":8782,"stats":["30% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"8785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":8785,"stats":[]},"8789":{"connections":[{"id":63182,"orbit":3}],"group":1040,"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"]},"8791":{"connections":[{"id":32096,"orbit":0}],"group":1083,"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"]},"8800":{"connections":[{"id":28982,"orbit":0}],"group":135,"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"]},"8810":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":33751,"orbit":2}],"group":1085,"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"]},"8821":{"connections":[{"id":63863,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":8821,"stats":["12% increased Lightning Damage"]},"8827":{"connections":[{"id":16691,"orbit":0},{"id":28862,"orbit":0}],"group":435,"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"]},"8831":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":14082,"orbit":0}],"group":1194,"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"]},"8850":{"connections":[],"group":108,"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"]},"8852":{"connections":[],"group":138,"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"]},"8854":{"ascendancyName":"Infernalist","connections":[{"id":46644,"orbit":0}],"group":759,"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"]},"8867":{"ascendancyName":"Stormweaver","connections":[{"id":7246,"orbit":0}],"group":517,"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"]},"8872":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"id":2394,"orbit":0},{"id":45488,"orbit":0}],"group":832,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"name":"Dual Wielding Mastery","orbit":0,"orbitIndex":0,"skill":8872,"stats":[]},"8875":{"connections":[{"id":50687,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":1,"orbitIndex":8,"skill":8875,"stats":["15% increased Electrocute Buildup"]},"8881":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":321,"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"]},"8896":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1374,"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"]},"8904":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1337,"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"]},"8908":{"connections":[{"id":13711,"orbit":4}],"group":1115,"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"]},"8916":{"connections":[],"group":423,"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"]},"8938":{"connections":[{"id":33229,"orbit":-4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":16,"skill":8938,"stats":["5% chance to inflict Bleeding on Hit"]},"8957":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"8975":{"connections":[{"id":61196,"orbit":4}],"group":1004,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8982":{"connections":[{"id":14952,"orbit":0},{"id":58926,"orbit":0}],"group":330,"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"]},"8983":{"connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":8983,"stats":["Minions deal 12% increased Damage"]},"9009":{"connections":[],"group":314,"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"]},"9018":{"connections":[{"id":35918,"orbit":2}],"group":541,"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"]},"9020":{"connections":[{"id":35118,"orbit":0}],"group":981,"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"]},"9037":{"connections":[{"id":32353,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Skill Speed","orbit":2,"orbitIndex":23,"skill":9037,"stats":["3% increased Skill Speed while Shapeshifted"]},"9040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":45751,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":9040,"stats":[]},"9046":{"connections":[{"id":56776,"orbit":5}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":8,"skill":9046,"stats":["10% increased Critical Hit Chance"]},"9050":{"connections":[{"id":24958,"orbit":-4},{"id":37691,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":6,"orbitIndex":36,"skill":9050,"stats":["3% increased Attack Speed"]},"9065":{"connections":[{"id":752,"orbit":5}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":4,"orbitIndex":23,"skill":9065,"stats":["Minions deal 10% increased Damage"]},"9069":{"connections":[{"id":42245,"orbit":0}],"group":1172,"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"]},"9083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":9083,"stats":[]},"9085":{"connections":[],"flavourText":"Each nick and cut brings death one step closer.","group":1103,"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"]},"9089":{"connections":[{"id":3994,"orbit":0}],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Evasion Rating","orbit":1,"orbitIndex":3,"skill":9089,"stats":["15% increased Evasion Rating"]},"9106":{"connections":[{"id":54937,"orbit":7}],"group":133,"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"]},"9112":{"connections":[{"id":44612,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":1,"orbitIndex":11,"skill":9112,"stats":["25% increased Elemental Ailment Threshold"]},"9141":{"connections":[{"id":13748,"orbit":-6},{"id":35760,"orbit":6},{"id":5703,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":12,"skill":9141,"stats":["10% increased Elemental Damage"]},"9151":{"connections":[{"id":42302,"orbit":0}],"group":1293,"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"]},"9163":{"connections":[],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":8,"skill":9163,"stats":["18% increased Armour"]},"9164":{"connections":[{"id":25513,"orbit":0}],"group":754,"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"]},"9185":{"connections":[{"id":60107,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":9185,"stats":["10% increased Critical Hit Chance"]},"9187":{"connections":[{"id":20015,"orbit":0}],"group":392,"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"]},"9199":{"connections":[],"group":1293,"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"]},"9212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":296,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Mastery","orbit":1,"orbitIndex":3,"skill":9212,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9217":{"connections":[{"id":5108,"orbit":0},{"id":16538,"orbit":0},{"id":47733,"orbit":0}],"group":804,"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"]},"9221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":268,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":9221,"stats":[]},"9226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":524,"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"]},"9227":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"9240":{"connections":[{"id":21225,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":2,"orbitIndex":16,"skill":9240,"stats":["10% increased Damage with Spears"]},"9272":{"connections":[{"id":12906,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":0,"skill":9272,"stats":["10% increased Pin duration"]},"9275":{"connections":[{"id":5704,"orbit":0},{"id":63888,"orbit":0}],"group":1180,"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"]},"9290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":750,"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"]},"9294":{"ascendancyName":"Amazon","connections":[{"id":528,"orbit":0}],"group":1544,"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"]},"9323":{"connections":[{"id":40395,"orbit":0}],"group":106,"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"]},"9324":{"connections":[],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":21,"skill":9324,"stats":["8% increased Ignite Duration on Enemies"]},"9328":{"connections":[{"id":34782,"orbit":0}],"group":139,"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"]},"9352":{"connections":[{"id":32071,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":23,"skill":9352,"stats":["6% increased Area of Effect for Attacks"]},"9393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":972,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":1,"orbitIndex":8,"skill":9393,"stats":[]},"9405":{"connections":[{"id":59720,"orbit":6}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":9405,"stats":["15% increased Evasion Rating"]},"9411":{"connections":[{"id":49466,"orbit":0},{"id":64434,"orbit":0}],"group":1207,"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"]},"9414":{"connectionArt":"CharacterPlanned","connections":[],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9417":{"connections":[{"id":48121,"orbit":-6},{"id":13171,"orbit":5}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":9417,"stats":["16% increased Totem Life"]},"9421":{"connections":[{"id":60170,"orbit":0}],"group":1248,"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"]},"9441":{"connections":[{"id":5077,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":8,"skill":9441,"stats":["15% increased Parry Hit Area of Effect"]},"9442":{"connections":[{"id":37260,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":18,"skill":9442,"stats":["16% increased Warcry Speed"]},"9444":{"connections":[],"group":1462,"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"]},"9458":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":967,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":9458,"stats":[]},"9472":{"connections":[{"id":31991,"orbit":0},{"id":41062,"orbit":0}],"group":1097,"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"]},"9485":{"connections":[{"id":60685,"orbit":0}],"group":841,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"9510":{"connections":[{"id":16695,"orbit":0}],"group":1142,"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"]},"9528":{"connections":[{"id":62200,"orbit":-4}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":15,"skill":9528,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"9532":{"connections":[{"id":59368,"orbit":2}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":22,"skill":9532,"stats":["+4 to Strength","+4 to Dexterity"]},"9535":{"connections":[{"id":37434,"orbit":0}],"group":964,"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"]},"9554":{"connectionArt":"CharacterPlanned","connections":[{"id":8723,"orbit":9}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9568":{"connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":1,"skill":9568,"stats":["16% increased Totem Life"]},"9572":{"connections":[{"id":12822,"orbit":0}],"group":1056,"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"]},"9583":{"connections":[{"id":47316,"orbit":0}],"group":435,"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"]},"9586":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1152,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":4,"orbitIndex":10,"skill":9586,"stats":[]},"9638":{"connections":[{"id":39083,"orbit":-7}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":9638,"stats":["3% increased Skill Speed"]},"9642":{"connections":[{"id":517,"orbit":6},{"id":14666,"orbit":-4}],"group":819,"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"]},"9652":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1295,"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"]},"9663":{"connections":[{"id":19359,"orbit":-5}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Resistance","orbit":2,"orbitIndex":8,"skill":9663,"stats":["+5% to Chaos Resistance"]},"9698":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":228,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":22,"skill":9698,"stats":[]},"9703":{"connections":[{"id":6030,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":9703,"stats":["10% increased Poison Duration"]},"9710":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1516,"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"]},"9736":{"connections":[{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"9737":{"connections":[{"id":36522,"orbit":0},{"id":24813,"orbit":4},{"id":59480,"orbit":0},{"id":15590,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":51,"skill":9737,"stats":["6% increased Area of Effect for Attacks"]},"9745":{"connections":[{"id":58513,"orbit":2147483647}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":12,"skill":9745,"stats":["2% increased Movement Speed"]},"9750":{"connections":[{"id":1169,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":12,"skill":9750,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"9762":{"connections":[{"id":45824,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":6,"orbitIndex":5,"skill":9762,"stats":["10% increased Damage with Swords"]},"9782":{"connections":[{"id":20677,"orbit":0}],"group":1169,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":9782,"stats":["15% increased Critical Damage Bonus"]},"9796":{"connections":[{"id":62310,"orbit":-4}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":9796,"stats":["30% increased Flammability Magnitude"]},"9798":{"ascendancyName":"Pathfinder","connections":[{"id":24868,"orbit":0}],"group":1513,"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"]},"9825":{"connections":[{"id":934,"orbit":-4},{"id":21755,"orbit":9}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":0,"skill":9825,"stats":["15% increased Elemental Ailment Threshold"]},"9843":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"9857":{"connections":[{"id":54990,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":2,"orbitIndex":8,"skill":9857,"stats":["5% chance to inflict Bleeding on Hit"]},"9863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"flavourText":"A throne is the most devious trap of them all","group":590,"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"]},"9896":{"connections":[{"id":292,"orbit":0}],"group":438,"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"]},"9908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":380,"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"]},"9918":{"connections":[{"id":16626,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":4,"skill":9918,"stats":["10% increased Attack Area Damage"]},"9928":{"connections":[{"id":50403,"orbit":0}],"group":1373,"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"]},"9941":{"connections":[{"id":38888,"orbit":0}],"group":893,"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"]},"9968":{"connections":[{"id":38678,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"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"]},"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":1505,"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":[]},"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"]},"10011":{"connections":[],"group":1243,"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"]},"10029":{"connections":[{"id":19277,"orbit":0}],"group":394,"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"]},"10041":{"connections":[{"id":32799,"orbit":0}],"group":1083,"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"]},"10047":{"connections":[{"id":62757,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":10,"skill":10047,"stats":["15% increased Stun Buildup"]},"10053":{"connections":[{"id":19470,"orbit":0},{"id":9458,"orbit":0}],"group":967,"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"]},"10055":{"connections":[{"id":30554,"orbit":0},{"id":41497,"orbit":0}],"group":150,"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"]},"10058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":55149,"orbit":0},{"id":44373,"orbit":0}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":10058,"stats":[]},"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"]},"10079":{"connections":[{"id":5314,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":10079,"stats":["10% increased Mana Regeneration Rate"]},"10100":{"connections":[{"id":47263,"orbit":0},{"id":25300,"orbit":0}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10131":{"connections":[{"id":3251,"orbit":0},{"id":44669,"orbit":0},{"id":14127,"orbit":0},{"id":55947,"orbit":0}],"group":1067,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10156":{"connections":[{"id":6744,"orbit":-6}],"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":38,"skill":10156,"stats":["+5 to any Attribute"]},"10159":{"connections":[{"id":31977,"orbit":4}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":42,"skill":10159,"stats":["10% increased Mana Regeneration Rate"]},"10162":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":10162,"stats":[]},"10169":{"connections":[],"group":408,"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"]},"10192":{"connections":[{"id":3823,"orbit":0}],"group":747,"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"]},"10242":{"connections":[{"id":38111,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":10242,"stats":["3% of Damage taken Recouped as Life"]},"10245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":458,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":10245,"stats":[]},"10247":{"connections":[{"id":28370,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"10251":{"connections":[{"id":7204,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":16,"skill":10251,"stats":["15% increased Stun Buildup"]},"10260":{"connections":[{"id":33730,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":10260,"stats":["Channelling Skills deal 12% increased Damage"]},"10265":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"10267":{"connections":[{"id":8456,"orbit":2147483647}],"group":1350,"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"]},"10271":{"connections":[{"id":58038,"orbit":0}],"group":751,"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"]},"10273":{"connections":[{"id":45272,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":2,"skill":10273,"stats":["+3 to all Attributes"]},"10277":{"connections":[{"id":64064,"orbit":0}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":10277,"stats":["8% increased Accuracy Rating"]},"10286":{"connections":[{"id":38066,"orbit":-4}],"group":209,"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"]},"10295":{"connections":[{"id":27733,"orbit":0}],"group":270,"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"]},"10305":{"connections":[{"id":45586,"orbit":0},{"id":61490,"orbit":0}],"group":426,"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"]},"10314":{"connections":[{"id":16256,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":30,"skill":10314,"stats":["10% increased Mana Regeneration Rate"]},"10315":{"connections":[{"id":44699,"orbit":0},{"id":47443,"orbit":0},{"id":37971,"orbit":0}],"group":1497,"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"]},"10320":{"connections":[{"id":14548,"orbit":3}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":18,"skill":10320,"stats":["Minions have 10% increased maximum Life"]},"10362":{"connections":[{"id":10830,"orbit":0},{"id":9163,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":10362,"stats":["15% increased Armour"]},"10364":{"connections":[{"id":44683,"orbit":0},{"id":55342,"orbit":4},{"id":42857,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":4,"orbitIndex":48,"skill":10364,"stats":["4% increased Skill Speed"]},"10371":{"ascendancyName":"Tactician","connections":[],"group":303,"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"]},"10372":{"connections":[{"id":36191,"orbit":-3},{"id":55933,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":1,"orbitIndex":1,"skill":10372,"stats":["12% increased Stun Threshold"]},"10382":{"connections":[{"id":21984,"orbit":0},{"id":33979,"orbit":0}],"group":1160,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10398":{"connections":[{"id":3472,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Sudden Escalation","orbit":7,"orbitIndex":18,"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"]},"10423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":37905,"orbit":-7}],"group":1476,"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"]},"10429":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":916,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":11,"skill":10429,"stats":[]},"10452":{"connections":[{"id":44213,"orbit":0},{"id":1878,"orbit":0}],"group":433,"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"]},"10472":{"connections":[{"id":17687,"orbit":2},{"id":27422,"orbit":-2}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":0,"orbitIndex":0,"skill":10472,"stats":["10% increased Mana Recovery from Flasks"]},"10474":{"connections":[{"id":64443,"orbit":0},{"id":53785,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":12,"skill":10474,"stats":["6% increased Area of Effect for Attacks"]},"10484":{"connections":[{"id":42660,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":14,"skill":10484,"stats":["+2 to Maximum Rage"]},"10495":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":7,"orbitIndex":18,"skill":10495,"stats":[]},"10499":{"connections":[{"id":42583,"orbit":2147483647},{"id":51788,"orbit":8}],"group":654,"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"]},"10500":{"connections":[{"id":6900,"orbit":-6},{"id":9040,"orbit":0}],"group":250,"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"]},"10508":{"connections":[{"id":21684,"orbit":5}],"group":177,"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"]},"10534":{"connections":[{"id":46205,"orbit":-7}],"group":375,"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"]},"10552":{"connections":[{"id":703,"orbit":-3},{"id":18895,"orbit":3}],"group":989,"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"]},"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":611,"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"]},"10571":{"connections":[{"id":48240,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":17,"skill":10571,"stats":["12% increased Stun Threshold"]},"10576":{"connections":[{"id":58644,"orbit":0}],"group":1300,"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"]},"10602":{"connections":[{"id":8629,"orbit":0}],"group":398,"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"]},"10612":{"connections":[{"id":52003,"orbit":0}],"group":733,"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"]},"10635":{"connections":[{"id":31724,"orbit":0}],"group":419,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10648":{"connections":[{"id":26400,"orbit":0}],"group":1337,"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"]},"10671":{"connections":[{"id":5740,"orbit":0},{"id":23419,"orbit":0},{"id":51048,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":2,"orbitIndex":1,"skill":10671,"stats":["10% increased Attack Damage"]},"10677":{"connections":[{"id":56638,"orbit":3}],"group":995,"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"]},"10681":{"connections":[{"id":27581,"orbit":5},{"id":58138,"orbit":0}],"group":116,"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"]},"10694":{"ascendancyName":"Infernalist","connections":[],"group":805,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10727":{"connections":[{"id":1825,"orbit":0}],"group":167,"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"]},"10729":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":10729,"stats":[]},"10731":{"ascendancyName":"Chronomancer","connections":[],"group":326,"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"]},"10738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":10738,"stats":[]},"10742":{"connections":[{"id":41991,"orbit":0}],"group":475,"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"]},"10772":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":2119,"orbit":0}],"group":656,"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"]},"10774":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":35863,"orbit":0}],"group":437,"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"]},"10783":{"connections":[{"id":9762,"orbit":0},{"id":38564,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":2,"orbitIndex":16,"skill":10783,"stats":["10% increased Damage with Swords"]},"10824":{"connections":[{"id":49734,"orbit":-5}],"group":179,"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"]},"10830":{"connections":[{"id":59589,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":2,"skill":10830,"stats":["18% increased Armour"]},"10835":{"connections":[{"id":48026,"orbit":0},{"id":53367,"orbit":2147483647}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":3,"orbitIndex":16,"skill":10835,"stats":["Banner Skills have 20% increased Duration"]},"10841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":7,"orbitIndex":15,"skill":10841,"stats":[]},"10873":{"connections":[{"id":32777,"orbit":0}],"group":320,"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"]},"10881":{"connections":[{"id":36450,"orbit":3}],"group":1072,"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"]},"10909":{"connections":[{"id":16489,"orbit":9},{"id":33053,"orbit":3}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"10927":{"connections":[{"id":9272,"orbit":0},{"id":42250,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":3,"orbitIndex":3,"skill":10927,"stats":["10% increased Pin duration"]},"10944":{"connections":[],"group":1215,"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"]},"10987":{"ascendancyName":"Chronomancer","connections":[],"group":358,"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"]},"10998":{"connections":[{"id":21438,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"11014":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":11014,"stats":[]},"11015":{"connections":[{"id":45329,"orbit":0}],"group":1244,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":11015,"stats":["16% increased Hazard Damage"]},"11027":{"connections":[{"id":59433,"orbit":0}],"group":223,"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"]},"11032":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":11032,"stats":[]},"11037":{"connections":[{"id":57039,"orbit":0}],"group":765,"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"]},"11048":{"connections":[],"group":272,"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"]},"11066":{"connections":[{"id":26663,"orbit":2}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":19,"skill":11066,"stats":["5% increased Cooldown Recovery Rate"]},"11087":{"connections":[{"id":42635,"orbit":0}],"group":269,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":11087,"stats":["Channelling Skills deal 12% increased Damage"]},"11094":{"connections":[{"id":59303,"orbit":-6}],"group":1280,"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"]},"11153":{"connections":[{"id":5049,"orbit":0}],"group":621,"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"]},"11160":{"connectionArt":"CharacterPlanned","connections":[{"id":43721,"orbit":5},{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11178":{"connections":[{"id":24224,"orbit":0}],"group":176,"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"]},"11184":{"aliasPassiveSocket":"DeliriumAnoint_ZarokhsGift_","connections":[],"group":607,"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"],"skill":11184,"stats":["Jewel Socket"]},"11230":{"connections":[{"id":17672,"orbit":0}],"flavourText":"A properly disciplined mind gives rise to structured thought.","group":912,"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"]},"11248":{"connections":[{"id":35831,"orbit":0},{"id":21568,"orbit":0},{"id":46380,"orbit":0},{"id":48387,"orbit":0},{"id":22270,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"11252":{"connections":[{"id":39911,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":23,"skill":11252,"stats":["6% increased Area of Effect for Attacks"]},"11257":{"connections":[{"id":10271,"orbit":0},{"id":54282,"orbit":4}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":11,"skill":11257,"stats":["30% increased Evasion Rating while Surrounded"]},"11275":{"connections":[{"id":13893,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":12,"skill":11275,"stats":["Damage Penetrates 6% Fire Resistance"]},"11284":{"connections":[{"id":31697,"orbit":0},{"id":30985,"orbit":0},{"id":50104,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":7,"orbitIndex":7,"skill":11284,"stats":["10% increased Elemental Infusion duration"]},"11292":{"connections":[{"id":2575,"orbit":7},{"id":56757,"orbit":-7}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":0,"skill":11292,"stats":["20% increased Totem Placement speed"]},"11306":{"connections":[{"id":57880,"orbit":0}],"group":176,"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"]},"11311":{"connections":[{"id":38057,"orbit":0}],"group":802,"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"]},"11315":{"connections":[{"id":48846,"orbit":0}],"group":929,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":11315,"stats":["12% increased Lightning Damage"]},"11329":{"connections":[{"id":54676,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":22,"skill":11329,"stats":["10% increased Life Regeneration rate"]},"11330":{"connections":[{"id":22185,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":6,"skill":11330,"stats":["Debuffs on you expire 10% faster"]},"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"]},"11337":{"connections":[{"id":23427,"orbit":5},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":3,"orbitIndex":16,"skill":11337,"stats":["15% increased Magnitude of Chill you inflict"]},"11366":{"connections":[{"id":34927,"orbit":0},{"id":558,"orbit":6}],"group":718,"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"]},"11376":{"connections":[{"id":35492,"orbit":0}],"group":769,"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"]},"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"]},"11410":{"connections":[{"id":21755,"orbit":0}],"group":891,"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"]},"11428":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":244,"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% Critical Damage Bonus","Archon Buffs also grant +30% Critical Hit Chance"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11433":{"connections":[{"id":24630,"orbit":-6},{"id":44753,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":7,"orbitIndex":0,"skill":11433,"stats":["12% increased Fire Damage"]},"11463":{"connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":23,"skill":11463,"stats":["25% reduced Presence Area of Effect"]},"11464":{"connectionArt":"CharacterPlanned","connections":[{"id":27405,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11472":{"connections":[{"id":19880,"orbit":0},{"id":40270,"orbit":0}],"group":1203,"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"]},"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":1510,"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":[]},"11504":{"connections":[{"id":30839,"orbit":7},{"id":35696,"orbit":0}],"group":1303,"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"]},"11505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":602,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":11505,"stats":[]},"11509":{"connections":[{"id":7465,"orbit":0}],"group":1356,"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"]},"11525":{"connections":[{"id":64724,"orbit":0}],"group":178,"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"]},"11526":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":38993,"orbit":0}],"group":1461,"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"]},"11572":{"connections":[{"id":32923,"orbit":-7}],"group":438,"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"]},"11578":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1048,"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"]},"11580":{"connectionArt":"CharacterPlanned","connections":[{"id":34769,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11598":{"connections":[{"id":4536,"orbit":0},{"id":44516,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":0,"orbitIndex":0,"skill":11598,"stats":["3% increased Attack Speed with Quarterstaves"]},"11604":{"connections":[{"id":17088,"orbit":0},{"id":29408,"orbit":0},{"id":52765,"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":0,"orbitIndex":0,"skill":11604,"stats":["+5 to any Attribute"]},"11641":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":45248,"orbit":0},{"id":55582,"orbit":0}],"group":414,"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"]},"11656":{"connections":[{"id":53822,"orbit":0},{"id":9106,"orbit":-3}],"group":133,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11667":{"connections":[{"id":60085,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Immobilisation Buildup","orbit":1,"orbitIndex":10,"skill":11667,"stats":["10% increased Immobilisation buildup against Constructs"]},"11672":{"connections":[{"id":47177,"orbit":0},{"id":48030,"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":11672,"stats":["+5 to any Attribute"]},"11679":{"connections":[{"id":29148,"orbit":0},{"id":7424,"orbit":8},{"id":61042,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"11722":{"connections":[{"id":62431,"orbit":2}],"group":998,"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"]},"11736":{"connections":[{"id":62677,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":11736,"stats":["12% increased Lightning Damage"]},"11741":{"connections":[{"id":17282,"orbit":0},{"id":31159,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"11752":{"connections":[{"id":62455,"orbit":0},{"id":62258,"orbit":0},{"id":57616,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":2,"skill":11752,"stats":["Banner Skills have 20% increased Duration"]},"11764":{"connections":[{"id":38878,"orbit":7}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":7,"orbitIndex":11,"skill":11764,"stats":["Debuffs on you expire 10% faster"]},"11771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":52395,"orbit":0}],"group":1533,"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"]},"11774":{"connections":[],"group":1292,"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"]},"11776":{"ascendancyName":"Ritualist","connections":[{"id":37046,"orbit":6}],"group":1572,"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"]},"11786":{"connections":[{"id":7716,"orbit":2147483647}],"group":328,"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"]},"11788":{"connections":[{"id":14355,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":0,"skill":11788,"stats":["10% increased Spell Area Damage"]},"11813":{"connections":[{"id":30456,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":11813,"stats":["15% increased Evasion Rating"]},"11825":{"connections":[{"id":42794,"orbit":4},{"id":54984,"orbit":0},{"id":47374,"orbit":0},{"id":10648,"orbit":0}],"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":11825,"stats":["+5 to any Attribute"]},"11826":{"connections":[{"id":17726,"orbit":0}],"group":928,"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"]},"11836":{"connections":[{"id":32721,"orbit":0}],"group":1243,"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"]},"11838":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":33112,"orbit":-4}],"group":1072,"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"]},"11855":{"connections":[{"id":30829,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":11855,"stats":["8% increased Accuracy Rating"]},"11861":{"connectionArt":"CharacterPlanned","connections":[{"id":59795,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11871":{"connections":[{"id":47235,"orbit":0},{"id":53471,"orbit":0},{"id":24958,"orbit":0}],"group":1243,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":1,"skill":11871,"stats":["5% chance to Blind Enemies on Hit"]},"11873":{"connections":[{"id":50150,"orbit":0},{"id":62677,"orbit":0}],"group":840,"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"]},"11882":{"connections":[{"id":63888,"orbit":-5}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":3,"skill":11882,"stats":["10% increased chance to inflict Ailments"]},"11886":{"connections":[],"group":423,"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"]},"11916":{"connections":[],"group":801,"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"]},"11938":{"connections":[{"id":39964,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":0,"orbitIndex":0,"skill":11938,"stats":["10% increased Mana Regeneration Rate"]},"11980":{"connections":[{"id":20504,"orbit":-5}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":71,"skill":11980,"stats":["5% increased Block chance"]},"11984":{"connectionArt":"CharacterPlanned","connections":[{"id":42762,"orbit":2147483647}],"group":89,"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"],"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"]},"12005":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":23,"skill":12005,"stats":[]},"12033":{"ascendancyName":"Deadeye","connections":[],"group":1502,"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"]},"12054":{"ascendancyName":"Tactician","connections":[{"id":37523,"orbit":0}],"group":406,"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"]},"12066":{"connections":[{"id":48734,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":8,"skill":12066,"stats":["Aura Skills have 5% increased Magnitudes"]},"12078":{"connections":[{"id":53771,"orbit":-6},{"id":41877,"orbit":-4}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":39,"skill":12078,"stats":["10% increased Projectile Damage"]},"12116":{"connections":[{"id":42036,"orbit":0},{"id":52410,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":4,"orbitIndex":22,"skill":12116,"stats":["20% increased Parry Hit Area of Effect"]},"12120":{"connections":[{"id":51606,"orbit":-7}],"group":1236,"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"]},"12125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":381,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":12125,"stats":[]},"12166":{"connections":[],"group":1251,"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"]},"12169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":60138,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":2,"orbitIndex":13,"skill":12169,"stats":[]},"12174":{"connections":[{"id":18864,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":22,"skill":12174,"stats":["10% increased Magnitude of Ailments you inflict"]},"12183":{"ascendancyName":"Pathfinder","connections":[{"id":16433,"orbit":0}],"group":1526,"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"]},"12189":{"connections":[{"id":32859,"orbit":-4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":17,"skill":12189,"stats":["12% increased Damage with Plant Skills"]},"12208":{"connections":[{"id":32813,"orbit":-7}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":3,"skill":12208,"stats":["10% increased Life Recovery from Flasks"]},"12232":{"connections":[{"id":872,"orbit":0},{"id":11087,"orbit":0}],"group":269,"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"]},"12239":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":39881,"orbit":0},{"id":41811,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":12239,"stats":[]},"12245":{"connections":[{"id":13610,"orbit":0},{"id":19749,"orbit":0}],"group":1010,"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"]},"12249":{"connections":[{"id":12761,"orbit":-3}],"group":1109,"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"]},"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":1333,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"12255":{"connections":[{"id":989,"orbit":0},{"id":27740,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":12255,"stats":["10% increased Life Recovery from Flasks"]},"12276":{"connections":[{"id":13980,"orbit":0}],"group":126,"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"]},"12311":{"connections":[{"id":64119,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":16,"skill":12311,"stats":["15% increased Crossbow Reload Speed"]},"12322":{"connections":[{"id":53196,"orbit":0}],"group":972,"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"]},"12324":{"connections":[{"id":24764,"orbit":0}],"group":442,"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"]},"12329":{"connections":[{"id":17523,"orbit":4}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":0,"skill":12329,"stats":["16% increased Hazard Damage"]},"12337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":5295,"orbit":0}],"group":994,"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"]},"12367":{"connections":[],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":0,"skill":12367,"stats":["7% increased Chaos Damage"]},"12382":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":35849,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":11,"skill":12382,"stats":[]},"12412":{"connections":[],"group":608,"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"]},"12418":{"connections":[{"id":51832,"orbit":0},{"id":3988,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":21,"skill":12418,"stats":["Empowered Attacks deal 16% increased Damage"]},"12419":{"connections":[{"id":56063,"orbit":-1}],"group":950,"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"]},"12430":{"connections":[{"id":17584,"orbit":0}],"group":650,"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"]},"12451":{"connections":[{"id":24922,"orbit":-9}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":12451,"stats":["5% increased Cooldown Recovery Rate"]},"12462":{"connections":[{"id":64299,"orbit":0}],"group":567,"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"]},"12465":{"connections":[{"id":30040,"orbit":0}],"group":990,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":14,"skill":12465,"stats":["Break 20% increased Armour"]},"12471":{"connections":[{"id":19942,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":19,"skill":12471,"stats":["12% increased Elemental Damage with Attacks"]},"12488":{"ascendancyName":"Stormweaver","connections":[{"id":49189,"orbit":0}],"group":517,"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"]},"12498":{"connections":[{"id":30341,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":12498,"stats":["6% increased bonuses gained from Equipped Quiver"]},"12526":{"connections":[{"id":54818,"orbit":-9}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":12526,"stats":["15% increased Elemental Ailment Threshold"]},"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"]},"12601":{"connectionArt":"CharacterPlanned","connections":[{"id":50908,"orbit":0},{"id":35745,"orbit":2147483647}],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12610":{"connectionArt":"CharacterPlanned","connections":[{"id":4873,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12611":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":32155,"orbit":3},{"id":44204,"orbit":3}],"group":1200,"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"]},"12661":{"connections":[{"id":34984,"orbit":0}],"group":989,"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"]},"12683":{"connectionArt":"CharacterPlanned","connections":[{"id":33618,"orbit":0},{"id":61974,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1017,"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"]},"12751":{"connections":[],"group":498,"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"]},"12761":{"connections":[],"group":1109,"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"]},"12777":{"connections":[{"id":28950,"orbit":-8}],"group":674,"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"]},"12778":{"connections":[],"group":1132,"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"]},"12786":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"id":5777,"orbit":0},{"id":18465,"orbit":0},{"id":64299,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":12786,"stats":[]},"12795":{"ascendancyName":"Pathfinder","connections":[{"id":44871,"orbit":0},{"id":4739,"orbit":0}],"group":1529,"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"]},"12800":{"connections":[{"id":8896,"orbit":0}],"group":1363,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":12800,"stats":["25% increased Evasion Rating while Sprinting"]},"12817":{"connections":[{"id":22967,"orbit":-7}],"group":313,"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"]},"12821":{"connections":[],"group":505,"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"]},"12822":{"connections":[{"id":5826,"orbit":0}],"group":1056,"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"]},"12851":{"connections":[{"id":32507,"orbit":0},{"id":32727,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":5,"skill":12851,"stats":["10% increased Physical Damage"]},"12876":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"12882":{"ascendancyName":"Stormweaver","connections":[{"id":25618,"orbit":0}],"group":517,"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"]},"12890":{"connections":[{"id":2091,"orbit":0},{"id":42118,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"12893":{"connections":[{"id":65167,"orbit":3}],"group":1366,"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"]},"12906":{"connections":[{"id":3234,"orbit":0}],"group":984,"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"]},"12918":{"connections":[{"id":4017,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":12918,"stats":["10% increased Mana Regeneration Rate"]},"12925":{"connections":[{"id":61196,"orbit":5}],"group":979,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":2,"skill":12925,"stats":["15% increased chance to Shock"]},"12940":{"connectionArt":"CharacterPlanned","connections":[{"id":20637,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12964":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":301,"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"]},"12992":{"connections":[{"id":16485,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":22,"skill":12992,"stats":["Damage Penetrates 6% Lightning Resistance"]},"12998":{"connections":[{"id":30463,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"13030":{"connections":[{"id":55,"orbit":-3}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":13030,"stats":["Damaging Ailments deal damage 5% faster"]},"13065":{"ascendancyName":"Invoker","connections":[{"id":63236,"orbit":0}],"group":1505,"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"]},"13075":{"connections":[{"id":50392,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":0,"orbitIndex":0,"skill":13075,"stats":["+12 to Strength"]},"13081":{"connections":[{"id":14254,"orbit":-5}],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":17,"skill":13081,"stats":["10% increased Projectile Damage"]},"13108":{"connectionArt":"CharacterPlanned","connections":[],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13123":{"connections":[{"id":62723,"orbit":4}],"group":843,"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"]},"13157":{"connections":[{"id":30392,"orbit":3}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":1,"skill":13157,"stats":["10% increased Life Recovery from Flasks"]},"13171":{"connections":[{"id":24438,"orbit":5}],"group":464,"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"]},"13174":{"ascendancyName":"Infernalist","connections":[{"id":770,"orbit":0}],"group":759,"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"]},"13228":{"connectionArt":"CharacterPlanned","connections":[{"id":43486,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":593,"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"]},"13241":{"connections":[{"id":51921,"orbit":0},{"id":55746,"orbit":0},{"id":39732,"orbit":0}],"group":647,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13279":{"connections":[{"id":2864,"orbit":0},{"id":61657,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":611,"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"]},"13293":{"connections":[{"id":30457,"orbit":4}],"group":153,"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"]},"13294":{"connections":[{"id":20718,"orbit":2}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":1,"orbitIndex":7,"skill":13294,"stats":["10% increased Skill Effect Duration"]},"13307":{"connections":[],"group":609,"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"]},"13333":{"connections":[{"id":1700,"orbit":7}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":1,"orbitIndex":9,"skill":13333,"stats":["10% increased Cold Damage"]},"13341":{"connections":[{"id":63255,"orbit":0},{"id":56841,"orbit":0},{"id":18451,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":13341,"stats":["20% increased Frenzy Charge Duration"]},"13352":{"connections":[{"id":59180,"orbit":2147483647},{"id":38010,"orbit":0}],"group":508,"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"]},"13356":{"connections":[{"id":6229,"orbit":7}],"group":498,"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"]},"13359":{"connections":[{"id":31943,"orbit":0}],"group":733,"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"]},"13367":{"connections":[{"id":38969,"orbit":0},{"id":21713,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":14,"skill":13367,"stats":["8% increased Accuracy Rating"]},"13379":{"connections":[{"id":27761,"orbit":0}],"group":1078,"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"]},"13387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":659,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":5,"orbitIndex":0,"skill":13387,"stats":[]},"13397":{"connections":[{"id":1207,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13407":{"connections":[{"id":23040,"orbit":-3},{"id":51583,"orbit":0}],"group":1485,"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"]},"13411":{"connections":[{"id":34136,"orbit":7}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13419":{"connections":[{"id":14958,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":13419,"stats":["15% increased Critical Damage Bonus"]},"13425":{"connections":[{"id":315,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":13425,"stats":["10% increased Bleeding Duration"]},"13457":{"connections":[{"id":3630,"orbit":5},{"id":52445,"orbit":0}],"group":1316,"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"]},"13468":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13474":{"connections":[{"id":16084,"orbit":0}],"group":397,"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"]},"13482":{"connections":[{"id":30136,"orbit":0},{"id":15892,"orbit":0}],"group":197,"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"]},"13489":{"connections":[{"id":47517,"orbit":0}],"group":132,"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"]},"13500":{"connections":[{"id":41044,"orbit":-3},{"id":44733,"orbit":0}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":3,"orbitIndex":2,"skill":13500,"stats":["3% of Damage taken Recouped as Mana"]},"13505":{"connections":[{"id":4956,"orbit":0}],"group":578,"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"]},"13515":{"connections":[{"id":14601,"orbit":0}],"group":699,"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"]},"13524":{"connections":[{"id":54923,"orbit":0},{"id":259,"orbit":0}],"group":508,"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"]},"13537":{"connections":[{"id":49455,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":10,"skill":13537,"stats":["15% increased maximum Energy Shield"]},"13542":{"connections":[{"id":27492,"orbit":2147483647}],"group":835,"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"]},"13562":{"connections":[{"id":23650,"orbit":3}],"group":587,"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"]},"13576":{"connections":[{"id":17024,"orbit":0}],"group":991,"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"]},"13610":{"connections":[{"id":41447,"orbit":0}],"group":1010,"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"]},"13619":{"connections":[{"id":12208,"orbit":0},{"id":59600,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":0,"skill":13619,"stats":["15% increased Life Flask Charges gained"]},"13624":{"connections":[{"id":28258,"orbit":-2}],"group":1338,"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"]},"13634":{"connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":18,"skill":13634,"stats":["Offering Skills have 30% increased Duration"]},"13673":{"ascendancyName":"Stormweaver","connections":[{"id":61985,"orbit":-8}],"group":517,"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"]},"13691":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connectionArt":"CharacterPlanned","connections":[],"group":107,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":13691,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13701":{"connections":[{"id":17871,"orbit":0},{"id":59538,"orbit":0}],"group":1373,"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"]},"13708":{"connections":[],"group":754,"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"]},"13711":{"connections":[{"id":30562,"orbit":4}],"group":1115,"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"]},"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"]},"13724":{"connections":[{"id":20236,"orbit":0},{"id":33823,"orbit":0}],"group":1147,"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"]},"13738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":974,"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"]},"13748":{"connections":[{"id":38338,"orbit":-6},{"id":41029,"orbit":9}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":0,"skill":13748,"stats":["10% increased Elemental Damage"]},"13769":{"connections":[{"id":2254,"orbit":-4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":13769,"stats":["10% increased Mana Regeneration Rate"]},"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"]},"13777":{"connections":[{"id":38532,"orbit":0}],"group":210,"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"]},"13783":{"connections":[{"id":28992,"orbit":0}],"group":1015,"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"]},"13799":{"connections":[{"id":36576,"orbit":-3}],"group":1379,"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"]},"13823":{"connections":[{"id":63861,"orbit":0},{"id":32054,"orbit":0}],"group":1064,"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"]},"13828":{"connections":[{"id":1140,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":13828,"stats":["+16 to Evasion Rating"]},"13839":{"connections":[{"id":65287,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":6,"skill":13839,"stats":["15% increased Totem Damage"]},"13844":{"connections":[],"group":985,"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"]},"13845":{"connections":[{"id":28408,"orbit":-7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":13845,"stats":["Gain 1 Rage on Melee Hit"]},"13855":{"connections":[{"id":50626,"orbit":0},{"id":64370,"orbit":0}],"group":705,"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"]},"13856":{"connections":[{"id":18496,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":9,"skill":13856,"stats":["12% increased Magnitude of Ailments you inflict"]},"13862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":13862,"stats":[]},"13882":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":737,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":13882,"stats":[]},"13893":{"connections":[{"id":42390,"orbit":-5}],"group":104,"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"]},"13895":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"13909":{"connections":[{"id":31037,"orbit":0},{"id":62679,"orbit":0}],"group":829,"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"]},"13937":{"connections":[{"id":17791,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":7,"skill":13937,"stats":["14% increased Damage with Maces"]},"13942":{"connections":[{"id":65023,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":13942,"stats":["15% increased Armour"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13980":{"connections":[{"id":14832,"orbit":0},{"id":14693,"orbit":0}],"group":126,"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"]},"13987":{"connections":[{"id":7604,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":2,"orbitIndex":8,"skill":13987,"stats":["3% increased Melee Attack Speed"]},"14001":{"connections":[{"id":56893,"orbit":-3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":2,"orbitIndex":22,"skill":14001,"stats":["6% reduced Charm Charges used"]},"14026":{"connections":[],"group":146,"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"]},"14033":{"connections":[{"id":34553,"orbit":0}],"group":689,"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"]},"14045":{"connections":[{"id":33848,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":48,"skill":14045,"stats":["10% increased Projectile Damage"]},"14048":{"connections":[{"id":34717,"orbit":7}],"group":1297,"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"]},"14082":{"connections":[{"id":43964,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":7,"orbitIndex":8,"skill":14082,"stats":["10% increased Physical Damage"]},"14091":{"connections":[{"id":28860,"orbit":0},{"id":36449,"orbit":0},{"id":23993,"orbit":0}],"group":664,"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"]},"14096":{"connections":[{"id":44293,"orbit":7}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":14096,"stats":["3% increased Cast Speed"]},"14110":{"connections":[{"id":22484,"orbit":-4},{"id":35974,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":22,"skill":14110,"stats":["15% increased Totem Damage"]},"14113":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":10029,"orbit":0},{"id":8660,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":14113,"stats":[]},"14127":{"connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":13,"skill":14127,"stats":["8% reduced Skill Effect Duration"]},"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":611,"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"]},"14176":{"connections":[{"id":18004,"orbit":0}],"group":321,"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"]},"14205":{"connections":[{"id":25753,"orbit":0}],"group":502,"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"]},"14211":{"connections":[{"id":44540,"orbit":0}],"group":1158,"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"]},"14226":{"connections":[],"flavourText":"You circle the black scorpion with enmity, daring it time and again.","group":1398,"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"]},"14231":{"connections":[{"id":40453,"orbit":-7}],"group":1233,"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"]},"14254":{"connections":[{"id":97,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":4,"skill":14254,"stats":["3% increased Attack Speed"]},"14258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":13123,"orbit":-7}],"group":843,"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"]},"14262":{"connections":[{"id":32763,"orbit":0},{"id":21945,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14267":{"connections":[{"id":32763,"orbit":0},{"id":28976,"orbit":0},{"id":38212,"orbit":0},{"id":1499,"orbit":0}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14272":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":2,"orbitIndex":7,"skill":14272,"stats":[]},"14294":{"connections":[{"id":43818,"orbit":0}],"group":472,"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"]},"14324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":1468,"orbit":-2}],"group":793,"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"]},"14328":{"connections":[{"id":18959,"orbit":0}],"group":433,"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"]},"14340":{"connections":[{"id":26786,"orbit":0},{"id":26319,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14342":{"connections":[{"id":49256,"orbit":4}],"group":116,"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"]},"14343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1086,"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"]},"14355":{"connections":[{"id":8483,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":3,"skill":14355,"stats":["10% increased Spell Area Damage"]},"14363":{"connections":[{"id":61338,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":3,"orbitIndex":2,"skill":14363,"stats":["Damage Penetrates 6% Lightning Resistance"]},"14383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46601,"orbit":0}],"group":1227,"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"]},"14394":{"connections":[{"id":35743,"orbit":0}],"group":868,"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"]},"14418":{"connections":[{"id":16602,"orbit":2147483647}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":6,"skill":14418,"stats":["15% increased Evasion Rating"]},"14428":{"connections":[{"id":6287,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":14428,"stats":["+8 to Intelligence"]},"14429":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":393,"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"]},"14432":{"connectionArt":"CharacterPlanned","connections":[],"group":113,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14439":{"connections":[{"id":5728,"orbit":3}],"group":116,"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"]},"14446":{"connections":[{"id":61403,"orbit":0},{"id":22713,"orbit":0},{"id":58022,"orbit":9},{"id":45702,"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":0,"orbitIndex":0,"skill":14446,"stats":["+5 to any Attribute"]},"14459":{"connections":[{"id":5544,"orbit":3}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":2,"skill":14459,"stats":["30% increased Thorns Critical Damage Bonus"]},"14505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":14505,"stats":[]},"14508":{"ascendancyName":"Pathfinder","connections":[{"id":29074,"orbit":0}],"group":1513,"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"]},"14509":{"connections":[{"id":9323,"orbit":0}],"group":106,"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"]},"14511":{"connections":[{"id":18207,"orbit":-3},{"id":53719,"orbit":0}],"group":122,"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"]},"14515":{"connections":[{"id":43778,"orbit":0}],"group":289,"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"]},"14539":{"connections":[{"id":44776,"orbit":5}],"group":1426,"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"]},"14540":{"connections":[{"id":31903,"orbit":0}],"flavourText":"Stand your ground, child, keep your senses.\\nThe pain is fleeting, but victory is forever.","group":459,"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"]},"14548":{"connections":[{"id":59541,"orbit":7}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":0,"skill":14548,"stats":["Minions have 10% increased maximum Life"]},"14572":{"connections":[{"id":49657,"orbit":-6},{"id":11037,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":8,"skill":14572,"stats":["5% increased Cooldown Recovery Rate"]},"14575":{"connections":[],"group":604,"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"]},"14598":{"connections":[{"id":4345,"orbit":0}],"group":701,"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"]},"14601":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":0,"skill":14601,"stats":[]},"14602":{"connections":[{"id":42737,"orbit":0}],"group":568,"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"]},"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":338,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14655":{"connections":[{"id":372,"orbit":7}],"group":368,"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"]},"14658":{"connections":[{"id":12253,"orbit":0},{"id":22517,"orbit":0},{"id":52053,"orbit":0},{"id":1631,"orbit":0},{"id":57945,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14666":{"connections":[],"group":819,"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"]},"14686":{"connections":[{"id":48552,"orbit":0},{"id":53795,"orbit":-3}],"group":455,"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"]},"14693":{"connections":[{"id":13937,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":4,"orbitIndex":27,"skill":14693,"stats":["14% increased Damage with Maces"]},"14712":{"connections":[{"id":3866,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":2,"skill":14712,"stats":["Minions have 12% increased maximum Life"]},"14724":{"connections":[{"id":62185,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":14724,"stats":["20% increased Shock Duration"]},"14725":{"connections":[{"id":49220,"orbit":-5},{"id":34233,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":18,"skill":14725,"stats":["3% increased Skill Speed"]},"14739":{"connections":[{"id":49235,"orbit":0}],"group":712,"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"]},"14761":{"connections":[{"id":45215,"orbit":0},{"id":57775,"orbit":0}],"group":426,"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"]},"14769":{"connections":[{"id":40471,"orbit":-2}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":14769,"stats":["+8 to Dexterity"]},"14777":{"connections":[{"id":59466,"orbit":5},{"id":20015,"orbit":0}],"group":392,"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"]},"14832":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":126,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":14832,"stats":[]},"14882":{"connections":[{"id":5048,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":18,"skill":14882,"stats":["10% increased Magnitude of Poison you inflict"]},"14890":{"connections":[{"id":21080,"orbit":-4}],"group":1089,"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"]},"14923":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":636,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":14923,"stats":[]},"14926":{"connections":[{"id":50609,"orbit":0},{"id":56910,"orbit":-6}],"group":801,"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"]},"14934":{"connections":[{"id":32523,"orbit":0}],"group":632,"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"]},"14945":{"connections":[{"id":34552,"orbit":0},{"id":1447,"orbit":0}],"group":475,"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"]},"14952":{"connections":[{"id":21985,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":8,"skill":14952,"stats":["10% increased Skill Effect Duration"]},"14958":{"connections":[{"id":17548,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":1,"orbitIndex":10,"skill":14958,"stats":["10% increased Critical Hit Chance"]},"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"]},"14980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":282,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":14980,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14996":{"connections":[{"id":41620,"orbit":-7}],"group":354,"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"]},"14997":{"connections":[{"id":47856,"orbit":0},{"id":28370,"orbit":0}],"group":756,"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"]},"15030":{"connections":[{"id":45693,"orbit":0},{"id":21324,"orbit":0}],"group":1107,"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"]},"15044":{"ascendancyName":"Tactician","connections":[{"id":32560,"orbit":0},{"id":42845,"orbit":0}],"group":307,"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"]},"15083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":844,"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"]},"15114":{"connections":[{"id":6356,"orbit":5},{"id":71,"orbit":-5},{"id":7642,"orbit":0}],"group":463,"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"]},"15141":{"connectionArt":"CharacterPlanned","connections":[],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15180":{"connections":[{"id":61444,"orbit":-2}],"group":497,"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"]},"15182":{"connections":[{"id":54818,"orbit":0}],"group":741,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15194":{"connections":[{"id":25303,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":15194,"stats":["Minions have +20% to Fire Resistance"]},"15207":{"connections":[{"id":6330,"orbit":0}],"group":1319,"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"]},"15247":{"connections":[{"id":46683,"orbit":0}],"group":141,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":7,"skill":15247,"stats":["Empowered Attacks deal 16% increased Damage"]},"15270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":15270,"stats":[]},"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"]},"15301":{"connections":[{"id":4709,"orbit":0},{"id":64064,"orbit":0}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":15301,"stats":["8% increased Accuracy Rating"]},"15304":{"connections":[{"id":16466,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":15304,"stats":["3% increased Cast Speed"]},"15343":{"connections":[{"id":58692,"orbit":5}],"group":1405,"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"]},"15356":{"connections":[{"id":18815,"orbit":0}],"group":1394,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":15356,"stats":["Damage Penetrates 6% Lightning Resistance"]},"15358":{"connections":[{"id":10320,"orbit":7},{"id":44255,"orbit":-7}],"group":938,"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"]},"15374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":48035,"orbit":0}],"group":557,"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"]},"15408":{"connections":[{"id":2254,"orbit":4},{"id":6338,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":23,"skill":15408,"stats":["15% increased maximum Energy Shield"]},"15424":{"connections":[{"id":58157,"orbit":0},{"id":35151,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":15424,"stats":["15% increased Stun Threshold"]},"15427":{"connections":[{"id":57379,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":6,"skill":15427,"stats":["12% increased Melee Damage"]},"15443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1052,"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"]},"15494":{"connections":[{"id":1865,"orbit":0},{"id":43584,"orbit":0}],"group":619,"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"]},"15507":{"connections":[{"id":48401,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"15522":{"connections":[{"id":17348,"orbit":6},{"id":24630,"orbit":-6}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":3,"orbitIndex":21,"skill":15522,"stats":["12% increased Ignite Magnitude"]},"15580":{"connectionArt":"CharacterPlanned","connections":[{"id":61977,"orbit":0}],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15590":{"connections":[{"id":26356,"orbit":0}],"group":684,"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"]},"15606":{"connections":[{"id":41821,"orbit":0}],"group":215,"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%"]},"15617":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":522,"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"]},"15618":{"connections":[{"id":57710,"orbit":0}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":0,"skill":15618,"stats":["15% increased Critical Spell Damage Bonus"]},"15625":{"connections":[{"id":65161,"orbit":0},{"id":24287,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":12,"skill":15625,"stats":["15% increased Evasion Rating"]},"15628":{"connections":[{"id":36880,"orbit":3}],"group":431,"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"]},"15644":{"connections":[{"id":41538,"orbit":6},{"id":44612,"orbit":0}],"group":1081,"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"]},"15672":{"connectionArt":"CharacterPlanned","connections":[{"id":45400,"orbit":2147483647}],"group":107,"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"],"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"]},"15775":{"connections":[{"id":30808,"orbit":0},{"id":11598,"orbit":0},{"id":29959,"orbit":0},{"id":15343,"orbit":-5}],"group":1445,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15782":{"connections":[{"id":1433,"orbit":0},{"id":46628,"orbit":0},{"id":53675,"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":15782,"stats":["+5 to any Attribute"]},"15801":{"connections":[],"group":629,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":15801,"stats":["8% increased speed of Recoup Effects"]},"15809":{"connections":[{"id":31175,"orbit":0},{"id":26945,"orbit":7},{"id":18485,"orbit":0}],"group":669,"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"]},"15814":{"connections":[{"id":12800,"orbit":0}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":15814,"stats":["25% increased Evasion Rating while Sprinting"]},"15825":{"connections":[{"id":26592,"orbit":-3}],"group":179,"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"]},"15829":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46146,"orbit":0}],"group":1088,"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"]},"15838":{"connections":[{"id":15969,"orbit":0}],"group":659,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":2,"skill":15838,"stats":["10% increased chance to inflict Ailments"]},"15839":{"connections":[{"id":60085,"orbit":0}],"group":899,"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"]},"15842":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":88,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":3,"orbitIndex":10,"skill":15842,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15855":{"connections":[{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":41,"skill":15855,"stats":["10% increased Damage with Swords"]},"15876":{"connections":[{"id":7947,"orbit":2},{"id":46554,"orbit":0}],"group":910,"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"]},"15885":{"connections":[{"id":12367,"orbit":3},{"id":22783,"orbit":0},{"id":11679,"orbit":0},{"id":42680,"orbit":0}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15892":{"connections":[],"group":183,"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"]},"15899":{"connections":[{"id":21627,"orbit":9}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":6,"skill":15899,"stats":["10% increased Magnitude of Bleeding you inflict"]},"15913":{"connections":[{"id":32599,"orbit":2},{"id":61362,"orbit":-2},{"id":49734,"orbit":0}],"group":245,"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"]},"15969":{"connections":[{"id":41129,"orbit":0},{"id":59376,"orbit":0}],"group":659,"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"]},"15975":{"connections":[{"id":48198,"orbit":5}],"group":1003,"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"]},"15984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":838,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":15984,"stats":[]},"15986":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":6030,"orbit":0}],"group":1484,"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"]},"15991":{"connections":[{"id":15984,"orbit":0}],"group":840,"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"]},"16013":{"connections":[{"id":41811,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":7,"orbitIndex":6,"skill":16013,"stats":["5% chance to Daze on Hit"]},"16024":{"connections":[{"id":29288,"orbit":2}],"group":1172,"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"]},"16051":{"connections":[],"group":322,"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"]},"16084":{"connections":[{"id":57552,"orbit":0}],"group":396,"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"]},"16090":{"connections":[{"id":50302,"orbit":0}],"group":410,"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"]},"16100":{"ascendancyName":"Invoker","connections":[{"id":65173,"orbit":7}],"group":1505,"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"]},"16111":{"connections":[{"id":46268,"orbit":9},{"id":2397,"orbit":0},{"id":54099,"orbit":0}],"group":666,"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"]},"16114":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":16114,"stats":[]},"16121":{"connections":[{"id":56334,"orbit":7}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":16121,"stats":["Meta Skills gain 8% increased Energy"]},"16123":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":983,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":3,"orbitIndex":22,"skill":16123,"stats":[]},"16140":{"connections":[{"id":16013,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":2,"orbitIndex":10,"skill":16140,"stats":["5% chance to Daze on Hit"]},"16142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1458,"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"]},"16150":{"connections":[{"id":37971,"orbit":0}],"group":1493,"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"]},"16168":{"connections":[{"id":54232,"orbit":-5},{"id":25374,"orbit":0},{"id":45916,"orbit":0}],"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":6,"orbitIndex":48,"skill":16168,"stats":["+5 to any Attribute"]},"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"]},"16249":{"ascendancyName":"Tactician","connections":[],"group":294,"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"]},"16256":{"connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"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"]},"16311":{"connections":[{"id":32600,"orbit":0},{"id":14654,"orbit":0}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":20,"skill":16311,"stats":["10% increased Life Regeneration rate"]},"16329":{"connections":[{"id":39607,"orbit":-2}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Used","orbit":2,"orbitIndex":2,"skill":16329,"stats":["5% reduced Flask Charges used"]},"16332":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":-7},{"id":11160,"orbit":-9}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16347":{"connections":[{"id":52373,"orbit":0}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":2,"skill":16347,"stats":["+2 to Maximum Rage"]},"16367":{"connections":[],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":16367,"stats":["10% increased Elemental Damage"]},"16385":{"connections":[{"id":53320,"orbit":2147483647}],"group":667,"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"]},"16401":{"connections":[{"id":44490,"orbit":0}],"group":1352,"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"]},"16413":{"connections":[{"id":42660,"orbit":0}],"group":226,"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"]},"16433":{"ascendancyName":"Pathfinder","connections":[{"id":12795,"orbit":0},{"id":57253,"orbit":0},{"id":36676,"orbit":0}],"group":1525,"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":[]},"16460":{"connections":[{"id":28992,"orbit":0},{"id":6772,"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":6,"orbitIndex":18,"skill":16460,"stats":["+5 to any Attribute"]},"16466":{"connections":[{"id":40196,"orbit":0}],"group":1151,"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"]},"16484":{"connections":[{"id":25100,"orbit":0},{"id":18923,"orbit":0}],"group":1039,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16485":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":16485,"stats":["Damage Penetrates 6% Lightning Resistance"]},"16489":{"connections":[{"id":28556,"orbit":6},{"id":49799,"orbit":7}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16499":{"connections":[{"id":36814,"orbit":0}],"group":856,"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"]},"16506":{"connections":[{"id":35417,"orbit":-2}],"group":354,"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"]},"16538":{"connections":[{"id":44330,"orbit":0}],"group":804,"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"]},"16568":{"connections":[{"id":60992,"orbit":-2}],"group":1339,"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"]},"16596":{"connections":[{"id":38535,"orbit":7},{"id":5088,"orbit":0}],"group":353,"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"]},"16602":{"connections":[{"id":29285,"orbit":2},{"id":30657,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":23,"skill":16602,"stats":["15% increased Evasion Rating"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16618":{"connections":[{"id":24511,"orbit":0},{"id":4492,"orbit":0}],"group":795,"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"]},"16620":{"connections":[{"id":21161,"orbit":4}],"group":250,"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"]},"16626":{"connections":[{"id":53089,"orbit":0},{"id":62023,"orbit":0}],"group":291,"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"]},"16647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":545,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":16647,"stats":[]},"16680":{"connections":[{"id":48137,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":15,"skill":16680,"stats":["15% increased Crossbow Reload Speed"]},"16691":{"connections":[{"id":21716,"orbit":-5}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech Speed","orbit":7,"orbitIndex":6,"skill":16691,"stats":["Leech Life 15% faster"]},"16695":{"connections":[{"id":61926,"orbit":0}],"group":1142,"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"]},"16705":{"connections":[{"id":25851,"orbit":4},{"id":34621,"orbit":0},{"id":61834,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16721":{"connections":[{"id":32239,"orbit":4},{"id":34187,"orbit":6},{"id":18270,"orbit":6}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":0,"orbitIndex":0,"skill":16721,"stats":["12% increased Damage with Plant Skills"]},"16725":{"connections":[{"id":27373,"orbit":6},{"id":36629,"orbit":-6},{"id":54811,"orbit":0},{"id":36163,"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":16725,"stats":["+5 to any Attribute"]},"16744":{"connections":[{"id":24009,"orbit":-5},{"id":24748,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":12,"skill":16744,"stats":["15% increased Evasion Rating"]},"16784":{"connections":[{"id":31650,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":68,"skill":16784,"stats":["16% increased Totem Life"]},"16786":{"connections":[{"id":20467,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":14,"skill":16786,"stats":["15% increased Immobilisation buildup"]},"16790":{"connections":[{"id":27234,"orbit":0}],"group":907,"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"]},"16816":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1099,"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"]},"16861":{"connections":[{"id":27303,"orbit":-5}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":22,"skill":16861,"stats":["10% increased Critical Hit Chance"]},"16871":{"connections":[{"id":9532,"orbit":2}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":18,"skill":16871,"stats":["+4 to Strength","+4 to Dexterity"]},"16938":{"connections":[{"id":8789,"orbit":3}],"group":1040,"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"]},"16940":{"connections":[{"id":25446,"orbit":0}],"group":403,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17024":{"connections":[{"id":37372,"orbit":0}],"group":971,"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"]},"17025":{"connections":[{"id":13515,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":18,"skill":17025,"stats":["10% increased Lightning Damage"]},"17026":{"connections":[{"id":23373,"orbit":0}],"group":635,"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"]},"17029":{"connections":[{"id":45992,"orbit":0}],"group":467,"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"]},"17045":{"connections":[{"id":55131,"orbit":6}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":4,"orbitIndex":42,"skill":17045,"stats":["2% increased Movement Speed"]},"17057":{"connections":[{"id":17025,"orbit":2}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":1,"orbitIndex":0,"skill":17057,"stats":["10% increased Lightning Damage"]},"17058":{"ascendancyName":"Ritualist","connections":[],"group":1561,"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"]},"17059":{"connectionArt":"CharacterPlanned","connections":[{"id":6874,"orbit":-7}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17061":{"connections":[{"id":31773,"orbit":2}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":3,"orbitIndex":4,"skill":17061,"stats":["Archon recovery period expires 10% faster"]},"17077":{"connections":[{"id":51463,"orbit":0},{"id":36114,"orbit":0}],"group":1104,"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"]},"17088":{"connections":[{"id":51416,"orbit":4}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17092":{"connections":[{"id":10484,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":18,"skill":17092,"stats":["+2 to Maximum Rage"]},"17101":{"connections":[{"id":25362,"orbit":-2}],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":17,"skill":17101,"stats":["10% increased Attack Damage"]},"17107":{"connections":[{"id":11788,"orbit":3}],"group":852,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":0,"orbitIndex":0,"skill":17107,"stats":["10% increased Spell Area Damage"]},"17112":{"connections":[{"id":64900,"orbit":-7},{"id":4331,"orbit":2}],"group":122,"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"]},"17118":{"connections":[{"id":38814,"orbit":0},{"id":20049,"orbit":0},{"id":8789,"orbit":4}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17138":{"connections":[{"id":51903,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":17138,"stats":["10% increased Melee Damage"]},"17146":{"connections":[{"id":3843,"orbit":4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":17,"skill":17146,"stats":["20% increased Parry Damage"]},"17150":{"connections":[{"id":53647,"orbit":7},{"id":19750,"orbit":0}],"group":708,"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"]},"17215":{"connections":[{"id":4552,"orbit":2}],"group":1229,"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"]},"17229":{"connections":[{"id":34493,"orbit":0},{"id":47242,"orbit":0},{"id":29985,"orbit":0}],"group":262,"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"]},"17248":{"connections":[{"id":53960,"orbit":-5}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17254":{"connections":[{"id":14272,"orbit":0},{"id":26596,"orbit":0}],"group":1178,"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"]},"17260":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":335,"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"]},"17268":{"ascendancyName":"Invoker","connections":[{"id":7621,"orbit":3}],"group":1505,"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"]},"17282":{"connections":[{"id":47252,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":20,"skill":17282,"stats":["16% increased Mana Regeneration Rate while stationary"]},"17283":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":17283,"stats":[]},"17294":{"connections":[{"id":19330,"orbit":-5},{"id":27501,"orbit":4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":17294,"stats":["10% increased Life Regeneration rate"]},"17303":{"connections":[{"id":17026,"orbit":0},{"id":27992,"orbit":0}],"group":635,"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"]},"17316":{"connections":[{"id":40244,"orbit":-4},{"id":62986,"orbit":5}],"group":1201,"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"]},"17330":{"connections":[{"id":61927,"orbit":0}],"group":289,"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"]},"17340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62051,"orbit":-4}],"group":807,"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"]},"17348":{"connections":[{"id":11275,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":17,"skill":17348,"stats":["12% increased Ignite Magnitude"]},"17349":{"connections":[{"id":23940,"orbit":-3},{"id":58138,"orbit":0}],"group":116,"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"]},"17356":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"17366":{"connections":[{"id":29361,"orbit":0}],"group":923,"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"]},"17367":{"connections":[{"id":53941,"orbit":-6},{"id":12761,"orbit":0}],"group":1109,"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"]},"17372":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1383,"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"]},"17378":{"connections":[{"id":40894,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":22,"skill":17378,"stats":["Minions have 10% increased maximum Life"]},"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":783,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":6,"skill":17380,"stats":[]},"17394":{"connections":[{"id":45530,"orbit":-3}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":0,"skill":17394,"stats":["Minions cause 15% increased Stun Buildup"]},"17411":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":497,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":17411,"stats":[]},"17417":{"connections":[{"id":3652,"orbit":3},{"id":27999,"orbit":0}],"group":483,"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"]},"17420":{"connections":[{"id":18717,"orbit":0},{"id":25565,"orbit":0},{"id":15356,"orbit":0}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":17420,"stats":["12% increased Lightning Damage"]},"17447":{"connections":[{"id":24843,"orbit":-7},{"id":29320,"orbit":7}],"group":1213,"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"]},"17468":{"connections":[],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17501":{"connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":2,"orbitIndex":7,"skill":17501,"stats":["Minions deal 10% increased Damage"]},"17505":{"connections":[{"id":52106,"orbit":0},{"id":28774,"orbit":0},{"id":23382,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":30,"skill":17505,"stats":["3% increased Cast Speed"]},"17517":{"connections":[{"id":13233,"orbit":-4},{"id":17655,"orbit":9}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":12,"skill":17517,"stats":["5% increased Area of Effect"]},"17523":{"connections":[{"id":42032,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":17523,"stats":["16% increased Hazard Damage"]},"17532":{"connections":[{"id":61934,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":17532,"stats":["12% increased Stun Threshold"]},"17548":{"connections":[{"id":630,"orbit":0},{"id":31039,"orbit":0}],"group":1057,"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"]},"17553":{"connections":[],"group":920,"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"]},"17584":{"connections":[],"group":650,"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"]},"17587":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":166,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":9,"skill":17587,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17589":{"connections":[{"id":36085,"orbit":0},{"id":64462,"orbit":7}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":23,"skill":17589,"stats":["10% increased Attack Damage"]},"17600":{"connections":[{"id":18519,"orbit":3},{"id":32096,"orbit":0},{"id":10041,"orbit":-2}],"group":1083,"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"]},"17602":{"connections":[{"id":59799,"orbit":4},{"id":59798,"orbit":-4}],"group":1270,"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"]},"17625":{"connections":[{"id":10873,"orbit":-5}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":9,"skill":17625,"stats":["Gain 1 Rage on Melee Hit"]},"17646":{"ascendancyName":"Witchhunter","connections":[],"group":246,"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"]},"17655":{"connections":[],"group":567,"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"]},"17664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":11463,"orbit":0},{"id":33348,"orbit":0}],"group":1356,"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"]},"17668":{"connections":[{"id":17215,"orbit":2}],"group":1229,"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"]},"17672":{"connections":[{"id":38732,"orbit":0},{"id":64427,"orbit":0}],"group":911,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17686":{"connections":[{"id":53996,"orbit":0},{"id":43575,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":19,"skill":17686,"stats":["10% increased Melee Damage"]},"17687":{"connections":[{"id":2021,"orbit":-5}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges","orbit":7,"orbitIndex":0,"skill":17687,"stats":["15% increased Mana Flask Charges gained"]},"17696":{"connections":[],"group":710,"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"]},"17702":{"connections":[{"id":46882,"orbit":0},{"id":27262,"orbit":-3},{"id":20467,"orbit":2147483647}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17706":{"connections":[{"id":46972,"orbit":-2}],"group":894,"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"]},"17711":{"connections":[{"id":46989,"orbit":3}],"group":855,"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"]},"17724":{"connections":[{"id":17101,"orbit":-4}],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":13,"skill":17724,"stats":["10% increased Attack Damage"]},"17725":{"connections":[{"id":9221,"orbit":0}],"group":268,"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"]},"17726":{"connections":[{"id":33053,"orbit":7}],"group":928,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Stun Buildup","orbit":7,"orbitIndex":5,"skill":17726,"stats":["15% increased Stun Buildup"]},"17729":{"connectionArt":"CharacterPlanned","connections":[{"id":56466,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":478,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":17745,"stats":[]},"17750":{"connections":[{"id":658,"orbit":4}],"group":590,"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"]},"17754":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"17762":{"connections":[{"id":2964,"orbit":-7},{"id":28476,"orbit":0}],"group":493,"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"]},"17788":{"ascendancyName":"Lich","connections":[],"containJewelSocket":true,"group":1173,"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"]},"17791":{"connections":[{"id":526,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":7,"orbitIndex":3,"skill":17791,"stats":["18% increased Stun Buildup with Maces"]},"17792":{"connections":[{"id":48734,"orbit":3}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Presence Area","orbit":2,"orbitIndex":9,"skill":17792,"stats":["20% increased Presence Area of Effect"]},"17796":{"connections":[{"id":12412,"orbit":2147483647}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Cooldown Recovery Rate","orbit":2,"orbitIndex":12,"skill":17796,"stats":["5% increased Cooldown Recovery Rate"]},"17825":{"connections":[{"id":45585,"orbit":-7},{"id":46931,"orbit":-7},{"id":5681,"orbit":0}],"group":453,"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"]},"17854":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":55275,"orbit":7}],"group":1236,"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"]},"17867":{"connections":[{"id":37092,"orbit":0}],"group":665,"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"]},"17871":{"connections":[{"id":32672,"orbit":0}],"group":1373,"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"]},"17882":{"connections":[{"id":33596,"orbit":0}],"group":883,"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"]},"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17903":{"connections":[{"id":40117,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":8,"skill":17903,"stats":["16% increased Thorns damage"]},"17906":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":17906,"stats":[]},"17923":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":18826,"orbit":0}],"group":1533,"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"]},"17924":{"connections":[{"id":51867,"orbit":-7}],"group":386,"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"]},"17955":{"connections":[{"id":51708,"orbit":0}],"group":1094,"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"]},"17973":{"connections":[{"id":4748,"orbit":4},{"id":22691,"orbit":-6}],"group":819,"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"]},"17994":{"connections":[{"id":22565,"orbit":0}],"group":808,"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"]},"17999":{"connections":[{"id":51561,"orbit":0},{"id":42026,"orbit":0},{"id":63979,"orbit":0}],"group":297,"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"]},"18004":{"connections":[{"id":8881,"orbit":0}],"group":321,"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"]},"18049":{"connections":[{"id":5802,"orbit":0}],"group":1307,"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"]},"18073":{"connections":[{"id":49952,"orbit":7},{"id":63114,"orbit":4}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":2,"skill":18073,"stats":["12% increased Attack Damage"]},"18081":{"connectionArt":"CharacterPlanned","connections":[{"id":52993,"orbit":0},{"id":14980,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18086":{"connections":[{"id":62844,"orbit":0},{"id":7333,"orbit":0}],"group":730,"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"]},"18101":{"connections":[{"id":61615,"orbit":3},{"id":59413,"orbit":-3}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":18101,"stats":["8% increased speed of Recoup Effects"]},"18115":{"connections":[{"id":48856,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":7,"skill":18115,"stats":["12% increased Grenade Damage"]},"18121":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":18121,"stats":[]},"18146":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":57819,"orbit":2147483647}],"group":485,"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"]},"18157":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":29447,"orbit":-8}],"group":328,"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"]},"18158":{"ascendancyName":"Infernalist","connections":[],"group":735,"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"]},"18160":{"connections":[{"id":26945,"orbit":0}],"group":669,"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"]},"18167":{"connections":[{"id":49150,"orbit":-2}],"group":1172,"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"]},"18186":{"connections":[{"id":13942,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":18186,"stats":["15% increased Armour"]},"18207":{"connections":[{"id":53261,"orbit":-3}],"group":122,"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"]},"18245":{"connections":[{"id":30554,"orbit":0},{"id":21164,"orbit":0}],"group":150,"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"]},"18270":{"connections":[{"id":45874,"orbit":3}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":55,"skill":18270,"stats":["12% increased Damage with Plant Skills"]},"18280":{"ascendancyName":"Ritualist","connections":[],"group":1559,"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"]},"18308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":750,"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"]},"18314":{"connections":[{"id":60239,"orbit":-4},{"id":58593,"orbit":-6}],"group":1405,"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"]},"18348":{"ascendancyName":"Infernalist","connections":[{"id":19482,"orbit":5},{"id":8854,"orbit":0},{"id":46016,"orbit":8}],"group":759,"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"]},"18353":{"connectionArt":"CharacterPlanned","connections":[{"id":20496,"orbit":0},{"id":3544,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18374":{"connections":[],"group":493,"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"]},"18397":{"connections":[{"id":55063,"orbit":0},{"id":4139,"orbit":0}],"group":138,"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"]},"18407":{"connections":[],"group":732,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"18419":{"connections":[{"id":11014,"orbit":0},{"id":16784,"orbit":0},{"id":23667,"orbit":0}],"group":322,"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"]},"18441":{"connectionArt":"CharacterPlanned","connections":[{"id":34181,"orbit":0}],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18448":{"connections":[{"id":30141,"orbit":0},{"id":6872,"orbit":0},{"id":30457,"orbit":0},{"id":59039,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"18451":{"connections":[],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":12,"skill":18451,"stats":["20% increased Frenzy Charge Duration"]},"18465":{"connections":[{"id":39540,"orbit":0}],"group":567,"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"]},"18470":{"connections":[{"id":4447,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":1,"orbitIndex":4,"skill":18470,"stats":["15% increased Pin Buildup"]},"18472":{"connections":[{"id":46533,"orbit":0}],"group":1276,"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"]},"18485":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"18489":{"connections":[{"id":13356,"orbit":7},{"id":12751,"orbit":-7},{"id":37258,"orbit":0}],"group":498,"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"]},"18496":{"connections":[{"id":50616,"orbit":0}],"group":254,"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"]},"18505":{"connections":[{"id":45090,"orbit":0},{"id":50616,"orbit":0}],"group":254,"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"]},"18519":{"connections":[{"id":30910,"orbit":-7}],"group":1083,"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"]},"18548":{"connections":[{"id":28992,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":8,"skill":18548,"stats":["3% increased Attack Speed"]},"18568":{"connections":[{"id":46887,"orbit":-5}],"group":1227,"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"]},"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"]},"18624":{"connections":[{"id":39608,"orbit":-2},{"id":12329,"orbit":2}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":3,"orbitIndex":22,"skill":18624,"stats":["16% increased Hazard Damage"]},"18629":{"connections":[{"id":64327,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":0,"skill":18629,"stats":["5% increased Block chance"]},"18651":{"connections":[{"id":11736,"orbit":0},{"id":63863,"orbit":0}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18651,"stats":["12% increased Lightning Damage"]},"18678":{"ascendancyName":"Chronomancer","connections":[{"id":28153,"orbit":9}],"group":315,"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"]},"18684":{"connections":[],"flavourText":"\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"","group":127,"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"]},"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":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18717":{"connections":[{"id":60483,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18717,"stats":["12% increased Lightning Damage"]},"18737":{"connections":[{"id":17725,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":6,"skill":18737,"stats":["10% increased Critical Hit Chance"]},"18742":{"connections":[{"id":7721,"orbit":-6},{"id":62732,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":6,"skill":18742,"stats":["12% increased Stun Threshold"]},"18744":{"connections":[{"id":60324,"orbit":2}],"group":1108,"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"]},"18746":{"connections":[],"group":128,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":18746,"stats":["5% increased Block chance"]},"18793":{"connections":[{"id":33639,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":20,"skill":18793,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"18801":{"connections":[{"id":11752,"orbit":2147483647},{"id":63360,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":10,"skill":18801,"stats":["Banner Skills have 20% increased Duration"]},"18815":{"connections":[{"id":40990,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":18815,"stats":["Damage Penetrates 6% Lightning Resistance"]},"18818":{"connections":[{"id":29517,"orbit":0},{"id":49461,"orbit":2},{"id":21314,"orbit":-2}],"group":1123,"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"]},"18822":{"connections":[{"id":21567,"orbit":-3},{"id":47790,"orbit":3}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Damage","orbit":1,"orbitIndex":7,"skill":18822,"stats":["10% increased Damage"]},"18826":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":47344,"orbit":0}],"group":1533,"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"]},"18831":{"connections":[{"id":49545,"orbit":7}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":2,"orbitIndex":19,"skill":18831,"stats":["5% increased Block chance"]},"18845":{"connections":[{"id":55807,"orbit":-5}],"group":757,"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"]},"18846":{"connections":[],"group":394,"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"]},"18849":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"18856":{"connections":[{"id":24491,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":0,"skill":18856,"stats":["Invocated Spells deal 15% increased Damage"]},"18864":{"connections":[{"id":2745,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":2,"skill":18864,"stats":["10% increased Magnitude of Ailments you inflict"]},"18882":{"connections":[{"id":24045,"orbit":-2},{"id":26786,"orbit":0},{"id":30047,"orbit":0},{"id":29941,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"18895":{"connections":[{"id":12661,"orbit":3}],"group":989,"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"]},"18897":{"connections":[{"id":53185,"orbit":5}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Evasion Rating","orbit":2,"orbitIndex":4,"skill":18897,"stats":["15% increased Evasion Rating"]},"18910":{"connections":[{"id":10265,"orbit":0}],"group":1386,"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"]},"18913":{"connections":[{"id":12419,"orbit":-2}],"group":950,"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"]},"18923":{"connections":[{"id":61976,"orbit":0},{"id":17118,"orbit":0},{"id":39570,"orbit":0},{"id":9085,"orbit":0}],"group":1087,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"18940":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1517,"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"]},"18959":{"connections":[{"id":55843,"orbit":0}],"group":433,"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"]},"18969":{"connections":[],"group":1466,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":0,"orbitIndex":0,"skill":18969,"stats":["3% increased Attack Speed with Bows"]},"18970":{"connections":[{"id":17366,"orbit":-3},{"id":11938,"orbit":0}],"group":923,"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"]},"18972":{"connectionArt":"CharacterPlanned","connections":[{"id":34782,"orbit":0}],"group":155,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19001":{"connections":[{"id":16786,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":18,"skill":19001,"stats":["15% increased Immobilisation buildup"]},"19003":{"connections":[{"id":12166,"orbit":0},{"id":3128,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":19003,"stats":["10% increased Cold Damage"]},"19006":{"connections":[{"id":39461,"orbit":0}],"group":639,"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"]},"19011":{"connections":[{"id":45363,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":20,"skill":19011,"stats":["10% increased Melee Damage"]},"19027":{"connections":[{"id":21156,"orbit":-2},{"id":7847,"orbit":0}],"group":1436,"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"]},"19044":{"connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"19074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":7,"orbitIndex":6,"skill":19074,"stats":[]},"19104":{"connections":[{"id":29582,"orbit":0}],"group":986,"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"]},"19112":{"connections":[{"id":36358,"orbit":0}],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":19112,"stats":["7% increased Chaos Damage"]},"19122":{"connections":[{"id":28432,"orbit":0}],"group":440,"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"]},"19125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":760,"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"]},"19129":{"connections":[{"id":55066,"orbit":0},{"id":9290,"orbit":0}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":21,"skill":19129,"stats":["15% increased Pin Buildup"]},"19156":{"connections":[{"id":12249,"orbit":-7},{"id":17283,"orbit":0}],"group":1109,"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"]},"19162":{"connectionArt":"CharacterPlanned","connections":[{"id":34143,"orbit":0},{"id":31554,"orbit":5},{"id":15141,"orbit":2147483647}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19203":{"connections":[{"id":10260,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":21,"skill":19203,"stats":["Channelling Skills deal 12% increased Damage"]},"19223":{"connections":[{"id":21755,"orbit":0},{"id":53166,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":18,"skill":19223,"stats":["10% increased Attack Damage"]},"19224":{"connections":[{"id":32555,"orbit":0}],"group":964,"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"]},"19233":{"ascendancyName":"Amazon","connections":[{"id":42441,"orbit":0}],"group":1541,"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"]},"19236":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":153,"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"]},"19240":{"connections":[{"id":46358,"orbit":-6},{"id":4847,"orbit":5}],"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":19240,"stats":["+5 to any Attribute"]},"19249":{"connections":[{"id":33209,"orbit":4},{"id":40550,"orbit":0}],"group":375,"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"]},"19277":{"connections":[{"id":44783,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":12,"skill":19277,"stats":["10% increased Spell Area Damage"]},"19288":{"connections":[],"flavourText":"Utter trust in your defence unleashes ultimate potential.","group":961,"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"]},"19318":{"connections":[{"id":53795,"orbit":5}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":13,"skill":19318,"stats":["20% increased Effect of Puppet Master"]},"19330":{"connections":[],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":52,"skill":19330,"stats":["10% increased Life Regeneration rate"]},"19337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1180,"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"]},"19338":{"connections":[{"id":60,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":0,"skill":19338,"stats":["+8 to Dexterity"]},"19341":{"connections":[],"group":891,"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"]},"19342":{"connections":[{"id":17553,"orbit":-3},{"id":46296,"orbit":0},{"id":27493,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":8,"skill":19342,"stats":["10% increased Projectile Damage"]},"19355":{"connections":[],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":4,"skill":19355,"stats":["15% increased maximum Energy Shield"]},"19359":{"connections":[{"id":35095,"orbit":4},{"id":52245,"orbit":0}],"group":1431,"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"]},"19370":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"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"]},"19426":{"connections":[{"id":15443,"orbit":0}],"group":1052,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":4,"skill":19426,"stats":["10% increased Physical Damage"]},"19442":{"connections":[{"id":25170,"orbit":-3},{"id":8606,"orbit":0}],"group":1036,"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"]},"19461":{"connections":[{"id":64415,"orbit":0}],"group":1355,"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"]},"19470":{"connections":[],"group":967,"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"]},"19482":{"ascendancyName":"Infernalist","connections":[{"id":36564,"orbit":0}],"group":759,"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"]},"19542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":1448,"orbit":0}],"group":1308,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":19542,"stats":[]},"19546":{"connections":[{"id":5681,"orbit":0}],"group":453,"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"]},"19563":{"connections":[{"id":47931,"orbit":0},{"id":58496,"orbit":-7},{"id":6735,"orbit":7}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":19563,"stats":["12% increased Damage while Shapeshifted"]},"19573":{"connections":[{"id":38479,"orbit":-5},{"id":19342,"orbit":-3}],"group":920,"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"]},"19644":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"19674":{"connections":[{"id":41493,"orbit":0}],"group":325,"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"]},"19715":{"connections":[{"id":34927,"orbit":0}],"group":718,"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"]},"19722":{"connections":[],"group":1253,"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"]},"19749":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19749,"stats":[]},"19750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":19750,"stats":[]},"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"]},"19767":{"connections":[{"id":35223,"orbit":0},{"id":13895,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":10,"skill":19767,"stats":["3% increased Attack Speed with Spears"]},"19779":{"connections":[{"id":63891,"orbit":2}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":2,"orbitIndex":22,"skill":19779,"stats":["7% increased Chaos Damage"]},"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"]},"19796":{"connections":[{"id":18308,"orbit":0}],"group":750,"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"]},"19802":{"connections":[{"id":64399,"orbit":2}],"group":544,"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"]},"19808":{"connections":[],"group":1043,"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"]},"19820":{"connections":[{"id":5686,"orbit":0}],"group":202,"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"]},"19846":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":357,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19846,"stats":[]},"19873":{"connections":[{"id":13233,"orbit":4},{"id":17655,"orbit":-9}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":4,"skill":19873,"stats":["5% increased Area of Effect"]},"19880":{"connections":[{"id":59390,"orbit":0}],"group":1203,"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"]},"19942":{"connections":[{"id":1144,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":1,"skill":19942,"stats":["12% increased Elemental Damage with Attacks"]},"19953":{"connectionArt":"CharacterPlanned","connections":[{"id":50142,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19955":{"connections":[],"group":783,"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"]},"19966":{"connectionArt":"CharacterPlanned","connections":[{"id":829,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19998":{"connections":[{"id":44430,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":19998,"stats":["12% increased Damage with Crossbows"]},"20008":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1164,"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"]},"20015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":402,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":20015,"stats":[]},"20024":{"connections":[{"id":44223,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":22,"skill":20024,"stats":["15% increased Critical Damage Bonus"]},"20032":{"connections":[{"id":28680,"orbit":0},{"id":56762,"orbit":0}],"group":415,"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"]},"20044":{"connections":[{"id":30736,"orbit":0}],"group":1472,"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"]},"20049":{"connections":[{"id":32818,"orbit":5}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":0,"skill":20049,"stats":["10% increased Charm Charges gained"]},"20091":{"connections":[{"id":46565,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":43,"skill":20091,"stats":["10% increased Damage with Swords"]},"20105":{"connections":[{"id":13895,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Accuracy","orbit":0,"orbitIndex":0,"skill":20105,"stats":["10% increased Accuracy Rating with Spears"]},"20115":{"connections":[{"id":49734,"orbit":0},{"id":24420,"orbit":0},{"id":63243,"orbit":0},{"id":30258,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"20119":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":20119,"stats":[]},"20140":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":914,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":20140,"stats":[]},"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"]},"20205":{"connections":[{"id":33059,"orbit":0}],"group":939,"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"]},"20236":{"connections":[{"id":4346,"orbit":0}],"group":1119,"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"]},"20251":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":114,"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"]},"20289":{"connections":[{"id":61896,"orbit":0},{"id":50767,"orbit":0}],"group":112,"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"]},"20303":{"connections":[{"id":9908,"orbit":0}],"group":380,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":20303,"stats":["10% increased Life Regeneration rate"]},"20350":{"connections":[{"id":4948,"orbit":0},{"id":47006,"orbit":0},{"id":28304,"orbit":0}],"group":382,"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"]},"20387":{"connections":[{"id":57810,"orbit":0}],"group":963,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":20387,"stats":["15% increased chance to Shock"]},"20388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":597,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20397":{"connections":[{"id":4577,"orbit":3},{"id":8556,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Authority","orbit":7,"orbitIndex":11,"recipe":["Greed","Envy","Suffering"],"skill":20397,"stats":["15% increased Area of Effect for Attacks","10% increased Cooldown Recovery Rate"]},"20414":{"connections":[{"id":35043,"orbit":0},{"id":52410,"orbit":0},{"id":50146,"orbit":0}],"group":1442,"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"]},"20416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":440,"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"]},"20429":{"connections":[{"id":28797,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":62,"skill":20429,"stats":["3% increased Attack Speed with Daggers"]},"20437":{"ascendancyName":"Martial Artist","connections":[{"id":39552,"orbit":5}],"group":1510,"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"]},"20467":{"connections":[{"id":58312,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":3,"orbitIndex":12,"skill":20467,"stats":["5% increased Culling Strike Threshold"]},"20495":{"connections":[],"group":720,"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"]},"20496":{"connectionArt":"CharacterPlanned","connections":[{"id":11984,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20499":{"connections":[{"id":34327,"orbit":0},{"id":2336,"orbit":-2}],"group":403,"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"]},"20504":{"connections":[{"id":62341,"orbit":-5}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":0,"orbitIndex":0,"skill":20504,"stats":["Recover 5 Life when you Block"]},"20511":{"connections":[{"id":53804,"orbit":-7},{"id":49259,"orbit":0}],"group":227,"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"]},"20547":{"connections":[{"id":33340,"orbit":0},{"id":34412,"orbit":-2}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":11,"skill":20547,"stats":["15% increased Stun Buildup"]},"20558":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":225,"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"]},"20582":{"connections":[{"id":55329,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":6,"orbitIndex":21,"skill":20582,"stats":["15% increased Parried Debuff Duration"]},"20637":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":536,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Damage Mastery","orbit":0,"orbitIndex":0,"skill":20637,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51934,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":1,"orbitIndex":1,"skill":20641,"stats":[]},"20645":{"connections":[{"id":64284,"orbit":4}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":14,"skill":20645,"stats":["10% increased Attack Area Damage"]},"20649":{"connections":[{"id":62998,"orbit":0},{"id":2582,"orbit":0},{"id":65290,"orbit":0}],"group":1437,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":20649,"stats":["10% increased Lightning Damage"]},"20677":{"connections":[{"id":9586,"orbit":0},{"id":535,"orbit":0}],"group":1161,"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"]},"20686":{"connections":[],"group":875,"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"]},"20691":{"connections":[{"id":41739,"orbit":0}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":8,"skill":20691,"stats":["15% increased Stun Buildup"]},"20701":{"ascendancyName":"Disciple of Varashta","connections":[{"id":35880,"orbit":3}],"group":611,"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"]},"20718":{"connections":[{"id":30979,"orbit":-3}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":7,"orbitIndex":12,"skill":20718,"stats":["10% increased Skill Effect Duration"]},"20744":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":1,"orbitIndex":3,"skill":20744,"stats":[]},"20772":{"ascendancyName":"Lich","connections":[{"id":2877,"orbit":-4}],"group":1173,"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"]},"20779":{"connections":[{"id":43431,"orbit":9},{"id":50239,"orbit":5}],"group":964,"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"]},"20782":{"connections":[{"id":52191,"orbit":-3},{"id":42361,"orbit":0}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":20782,"stats":["7% increased Chaos Damage"]},"20787":{"connections":[{"id":5390,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":21,"skill":20787,"stats":["15% increased Freeze Buildup"]},"20791":{"connections":[{"id":13777,"orbit":0},{"id":11741,"orbit":0}],"group":210,"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"]},"20820":{"connections":[{"id":40166,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":20820,"stats":["3% increased Attack Speed"]},"20830":{"ascendancyName":"Witchhunter","connections":[{"id":37078,"orbit":8}],"group":318,"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"]},"20831":{"connections":[{"id":29843,"orbit":0},{"id":44875,"orbit":0}],"group":980,"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"]},"20837":{"connections":[{"id":61104,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":0,"orbitIndex":0,"skill":20837,"stats":["8% increased Knockback Distance"]},"20842":{"connections":[{"id":48026,"orbit":0},{"id":4661,"orbit":2147483647}],"group":505,"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"]},"20848":{"connections":[{"id":16721,"orbit":2147483647}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":7,"orbitIndex":8,"skill":20848,"stats":["12% increased Damage with Plant Skills"]},"20861":{"connections":[{"id":8522,"orbit":0},{"id":45350,"orbit":0},{"id":17672,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":12,"skill":20861,"stats":["Invocated Spells deal 15% increased Damage"]},"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"]},"20909":{"connections":[{"id":44891,"orbit":2147483647}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":1,"skill":20909,"stats":["Damage Penetrates 6% Cold Resistance"]},"20916":{"connections":[{"id":59355,"orbit":0}],"group":1168,"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"]},"20963":{"connectionArt":"CharacterPlanned","connections":[{"id":17587,"orbit":0}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20989":{"connections":[{"id":42984,"orbit":0},{"id":30141,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":3,"orbitIndex":9,"skill":20989,"stats":["6% increased Area of Effect"]},"21017":{"connections":[{"id":26969,"orbit":-7},{"id":55789,"orbit":7}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":5,"orbitIndex":0,"skill":21017,"stats":["10% increased Critical Hit Chance"]},"21070":{"connections":[{"id":57388,"orbit":0}],"group":228,"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"]},"21077":{"connections":[{"id":354,"orbit":0}],"group":736,"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"]},"21080":{"connections":[{"id":1869,"orbit":-4}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":19,"skill":21080,"stats":["15% increased Freeze Buildup"]},"21081":{"connections":[{"id":25745,"orbit":5}],"group":632,"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"]},"21089":{"connections":[{"id":31848,"orbit":7}],"group":264,"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"]},"21096":{"connections":[{"id":56388,"orbit":0}],"group":685,"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"]},"21111":{"connections":[{"id":33099,"orbit":-5}],"group":1268,"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"]},"21112":{"connections":[{"id":31055,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":4,"orbitIndex":57,"skill":21112,"stats":["10% increased Damage with Bows"]},"21127":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":292,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":30,"skill":21127,"stats":[]},"21142":{"connections":[{"id":55829,"orbit":7}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":5,"skill":21142,"stats":["6% increased Area of Effect for Attacks"]},"21156":{"connections":[{"id":34623,"orbit":0}],"group":1436,"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"]},"21161":{"connections":[{"id":10500,"orbit":5}],"group":250,"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"]},"21164":{"connections":[{"id":62670,"orbit":0}],"group":150,"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"]},"21184":{"connections":[{"id":20251,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":7,"orbitIndex":3,"skill":21184,"stats":["6% increased Area of Effect"]},"21205":{"connections":[{"id":44176,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":60,"skill":21205,"stats":["+3 to all Attributes"]},"21206":{"connections":[{"id":45899,"orbit":0},{"id":11505,"orbit":0}],"group":602,"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"]},"21208":{"connections":[],"group":1245,"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"]},"21213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":159,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21225":{"connections":[{"id":38369,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":3,"orbitIndex":16,"skill":21225,"stats":["10% increased Damage with Spears"]},"21227":{"connections":[{"id":36290,"orbit":-2}],"group":1294,"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"]},"21245":{"connections":[],"group":518,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":21245,"stats":["10% increased Critical Hit Chance for Spells"]},"21251":{"connections":[],"group":476,"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"]},"21274":{"connections":[{"id":39298,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21279":{"connections":[{"id":35534,"orbit":-3}],"group":1357,"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"]},"21280":{"connections":[{"id":28050,"orbit":0},{"id":61312,"orbit":0},{"id":40630,"orbit":0}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"21286":{"connections":[{"id":4128,"orbit":4},{"id":45992,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":14,"skill":21286,"stats":["15% increased Armour"]},"21291":{"connections":[{"id":59785,"orbit":0},{"id":32836,"orbit":-7}],"group":132,"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"]},"21314":{"connections":[{"id":50912,"orbit":-4}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":17,"skill":21314,"stats":["10% increased Attack Damage"]},"21324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":2,"orbitIndex":7,"skill":21324,"stats":[]},"21327":{"connections":[{"id":56876,"orbit":0}],"group":319,"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"]},"21336":{"connections":[{"id":62984,"orbit":0}],"group":1003,"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"]},"21349":{"connections":[],"group":1159,"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"]},"21374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":233,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":7,"orbitIndex":21,"skill":21374,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21380":{"connections":[],"group":1218,"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"]},"21387":{"connections":[{"id":53719,"orbit":0},{"id":3988,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21390":{"connections":[{"id":7972,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":12,"skill":21390,"stats":["20% increased Endurance Charge Duration"]},"21404":{"connections":[{"id":42825,"orbit":0}],"group":487,"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"]},"21413":{"connections":[{"id":28408,"orbit":0}],"group":180,"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"]},"21438":{"connections":[{"id":1019,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":21438,"stats":["12% increased Armour and Evasion Rating"]},"21453":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":10286,"orbit":0}],"group":220,"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"]},"21468":{"connections":[{"id":39274,"orbit":6}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":3,"orbitIndex":12,"skill":21468,"stats":["8% increased amount of Life Leeched"]},"21495":{"connections":[],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":14,"skill":21495,"stats":["12% increased Elemental Damage with Attacks"]},"21519":{"ascendancyName":"Spirit Walker","connections":[{"id":765,"orbit":0}],"group":1542,"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"]},"21537":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1474,"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"]},"21540":{"connections":[{"id":27658,"orbit":-3}],"group":836,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":21540,"stats":["3% of Damage taken Recouped as Life"]},"21549":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21567":{"connections":[{"id":59710,"orbit":0}],"group":320,"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"]},"21568":{"connections":[{"id":26196,"orbit":0},{"id":26300,"orbit":-5},{"id":41105,"orbit":0}],"group":290,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21572":{"connections":[{"id":6660,"orbit":-7},{"id":7526,"orbit":0}],"group":1223,"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"]},"21606":{"connections":[{"id":2606,"orbit":0},{"id":29148,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":12,"skill":21606,"stats":["Minions have 10% increased maximum Life"]},"21627":{"connections":[{"id":19796,"orbit":0}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":12,"skill":21627,"stats":["10% increased Magnitude of Bleeding you inflict"]},"21670":{"connections":[{"id":29358,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":1,"orbitIndex":7,"skill":21670,"stats":["15% increased Stun Buildup"]},"21684":{"connections":[{"id":1214,"orbit":5}],"group":177,"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"]},"21713":{"connections":[{"id":11604,"orbit":0},{"id":50588,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":20,"skill":21713,"stats":["8% increased Accuracy Rating"]},"21716":{"connections":[{"id":9583,"orbit":-5}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":4,"orbitIndex":9,"skill":21716,"stats":["8% increased amount of Life Leeched"]},"21721":{"connections":[{"id":15899,"orbit":0},{"id":55066,"orbit":0},{"id":62194,"orbit":2147483647}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":3,"orbitIndex":4,"skill":21721,"stats":["5% chance to inflict Bleeding on Hit"]},"21746":{"connections":[{"id":46782,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"21748":{"connections":[{"id":54725,"orbit":0},{"id":6570,"orbit":0}],"group":1245,"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"]},"21755":{"connections":[{"id":54127,"orbit":0},{"id":48635,"orbit":0},{"id":61281,"orbit":0},{"id":52274,"orbit":0}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21779":{"connections":[{"id":57204,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":19,"skill":21779,"stats":["15% increased Critical Damage Bonus"]},"21784":{"connections":[{"id":50118,"orbit":0},{"id":34443,"orbit":0}],"group":203,"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%"]},"21788":{"connections":[{"id":8573,"orbit":0},{"id":34612,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":21,"skill":21788,"stats":["12% increased Damage with Bows"]},"21792":{"connections":[{"id":29899,"orbit":2}],"group":1136,"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"]},"21801":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1226,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":1,"orbitIndex":10,"skill":21801,"stats":[]},"21809":{"connectionArt":"CharacterPlanned","connections":[{"id":19162,"orbit":-6}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21861":{"connections":[{"id":65243,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":18,"skill":21861,"stats":["20% increased Presence Area of Effect"]},"21871":{"connections":[{"id":51847,"orbit":0},{"id":37872,"orbit":0},{"id":25213,"orbit":0}],"group":839,"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"]},"21885":{"connections":[{"id":1352,"orbit":0}],"group":258,"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"]},"21945":{"connections":[{"id":61718,"orbit":0},{"id":26572,"orbit":0},{"id":39128,"orbit":0},{"id":54545,"orbit":0}],"group":1450,"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"]},"21982":{"connections":[{"id":47371,"orbit":0}],"group":367,"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"]},"21984":{"connections":[{"id":61403,"orbit":0}],"group":1190,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":4,"skill":21984,"stats":[]},"21985":{"connections":[{"id":48925,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":4,"skill":21985,"stats":["10% increased Skill Effect Duration"]},"22045":{"connections":[{"id":13505,"orbit":3}],"group":578,"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"]},"22049":{"connections":[{"id":60505,"orbit":0}],"group":1059,"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"]},"22057":{"connections":[{"id":30143,"orbit":2},{"id":36808,"orbit":4}],"group":1197,"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"]},"22063":{"connections":[{"id":5797,"orbit":0}],"group":1355,"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"]},"22115":{"connections":[{"id":61263,"orbit":0},{"id":59446,"orbit":0}],"group":1166,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Intelligence","orbit":1,"orbitIndex":10,"skill":22115,"stats":["+8 to Intelligence"]},"22133":{"connectionArt":"CharacterPlanned","connections":[{"id":39857,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22141":{"connections":[{"id":54521,"orbit":0},{"id":51797,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":6,"skill":22141,"stats":["3% of Damage taken Recouped as Life"]},"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":359,"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":[]},"22152":{"connections":[{"id":10382,"orbit":0},{"id":15304,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":10,"skill":22152,"stats":["3% increased Cast Speed"]},"22185":{"connections":[{"id":17796,"orbit":5}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":9,"skill":22185,"stats":["Debuffs on you expire 10% faster"]},"22188":{"connections":[{"id":38763,"orbit":-4},{"id":21274,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":0,"skill":22188,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"22208":{"connections":[{"id":15207,"orbit":0}],"group":1319,"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"]},"22219":{"connections":[{"id":52351,"orbit":-7}],"group":1090,"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"]},"22221":{"connectionArt":"CharacterPlanned","connections":[{"id":57079,"orbit":-7}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22270":{"connections":[{"id":1144,"orbit":0},{"id":12471,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":22270,"stats":["8% increased Accuracy Rating"]},"22271":{"connections":[{"id":15083,"orbit":0}],"group":848,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":22271,"stats":["15% increased chance to Shock"]},"22290":{"connections":[{"id":48821,"orbit":-6},{"id":36302,"orbit":0}],"group":778,"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"]},"22314":{"connections":[{"id":51184,"orbit":0},{"id":51968,"orbit":5}],"group":745,"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"]},"22329":{"connections":[{"id":58526,"orbit":-2}],"group":1261,"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"]},"22331":{"connections":[{"id":8983,"orbit":0},{"id":40200,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Resistances","orbit":1,"orbitIndex":3,"skill":22331,"stats":["Minions have +8% to all Elemental Resistances"]},"22359":{"connections":[{"id":60692,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":22359,"stats":["10% increased Elemental Damage"]},"22368":{"connections":[{"id":63182,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1040,"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"]},"22393":{"connections":[{"id":28458,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":22393,"stats":["Minions deal 10% increased Damage"]},"22419":{"connections":[{"id":18407,"orbit":0},{"id":4739,"orbit":0}],"group":749,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"22439":{"connections":[{"id":5936,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":22439,"stats":["10% increased Elemental Damage"]},"22484":{"connections":[{"id":5398,"orbit":-4}],"group":292,"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"]},"22517":{"connections":[{"id":59644,"orbit":4},{"id":32896,"orbit":-4}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":0,"skill":22517,"stats":["8% chance to Poison on Hit"]},"22532":{"connections":[{"id":60488,"orbit":0}],"group":860,"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"]},"22533":{"connections":[{"id":26663,"orbit":-2},{"id":21274,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":23,"skill":22533,"stats":["5% increased Cooldown Recovery Rate"]},"22538":{"connections":[{"id":64659,"orbit":0}],"group":608,"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"]},"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"]},"22556":{"connections":[{"id":11257,"orbit":0},{"id":35028,"orbit":7}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":15,"skill":22556,"stats":["30% increased Evasion Rating while Surrounded"]},"22558":{"connections":[{"id":55933,"orbit":0},{"id":20547,"orbit":0},{"id":62378,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22565":{"connections":[{"id":26648,"orbit":0}],"group":808,"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"]},"22616":{"connections":[{"id":51052,"orbit":0},{"id":17468,"orbit":0},{"id":48631,"orbit":0},{"id":19122,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22626":{"connections":[{"id":45227,"orbit":0},{"id":48717,"orbit":0}],"group":198,"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"]},"22661":{"ascendancyName":"Ritualist","connections":[{"id":30233,"orbit":8}],"group":1571,"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"]},"22682":{"connections":[],"group":1191,"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"]},"22691":{"connections":[{"id":39037,"orbit":-6},{"id":61027,"orbit":-9}],"group":830,"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"]},"22697":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":2,"orbitIndex":10,"skill":22697,"stats":["+5% to Lightning Resistance"]},"22710":{"connections":[{"id":45111,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":8,"skill":22710,"stats":["20% increased Curse Duration"]},"22713":{"connections":[{"id":19722,"orbit":0},{"id":4959,"orbit":0},{"id":19003,"orbit":0}],"group":1251,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":6,"skill":22713,"stats":["10% increased Cold Damage"]},"22726":{"connections":[],"group":1413,"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"]},"22783":{"connections":[{"id":18160,"orbit":0},{"id":17501,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":10,"skill":22783,"stats":["Minions deal 10% increased Damage"]},"22784":{"connections":[{"id":17057,"orbit":7},{"id":13515,"orbit":0}],"group":699,"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"]},"22795":{"connections":[{"id":28992,"orbit":0},{"id":42781,"orbit":0}],"group":1015,"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"]},"22811":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":3170,"orbit":0}],"group":1387,"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"]},"22817":{"connections":[{"id":55724,"orbit":0},{"id":29065,"orbit":0}],"group":1300,"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"]},"22821":{"connections":[{"id":3823,"orbit":0},{"id":22314,"orbit":0}],"group":745,"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"]},"22851":{"connections":[{"id":50268,"orbit":2147483647}],"group":1171,"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"]},"22864":{"connections":[{"id":57966,"orbit":0}],"group":1038,"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"]},"22873":{"connections":[{"id":7777,"orbit":7},{"id":64318,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":4,"skill":22873,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"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"]},"22927":{"connections":[{"id":20582,"orbit":0}],"group":1410,"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"]},"22928":{"connections":[{"id":27373,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22949":{"connections":[{"id":35171,"orbit":0}],"group":394,"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"]},"22959":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":960,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":22959,"stats":[]},"22962":{"connections":[{"id":22817,"orbit":0}],"group":1300,"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"]},"22967":{"connections":[{"id":49198,"orbit":-7},{"id":38921,"orbit":0}],"group":313,"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"]},"22972":{"connections":[{"id":43238,"orbit":0},{"id":50879,"orbit":0}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":22972,"stats":["16% increased Hazard Damage"]},"22975":{"connections":[{"id":27439,"orbit":0},{"id":26725,"orbit":0},{"id":51702,"orbit":0}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"22976":{"connections":[{"id":42250,"orbit":0}],"group":891,"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"]},"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"]},"23013":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":42,"skill":23013,"stats":[]},"23036":{"connections":[{"id":3339,"orbit":0},{"id":59208,"orbit":2}],"group":453,"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"]},"23039":{"connections":[{"id":64770,"orbit":-5}],"group":363,"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"]},"23040":{"connections":[{"id":38493,"orbit":4}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":23040,"stats":["15% increased Critical Damage Bonus"]},"23046":{"connections":[{"id":47976,"orbit":5}],"group":1294,"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"]},"23062":{"connections":[{"id":19122,"orbit":0}],"group":440,"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"]},"23078":{"connections":[{"id":47242,"orbit":0}],"group":262,"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"]},"23091":{"connections":[{"id":45885,"orbit":0},{"id":39515,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":23091,"stats":["12% increased Fire Damage"]},"23105":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1447,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":23105,"stats":[]},"23153":{"connections":[{"id":23996,"orbit":0},{"id":39298,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":14,"skill":23153,"stats":["15% increased Ballista damage"]},"23192":{"connections":[],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":42,"skill":23192,"stats":["5% increased Block chance"]},"23195":{"connections":[{"id":55375,"orbit":0}],"group":333,"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"]},"23221":{"connections":[],"group":1293,"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"]},"23227":{"connections":[],"group":613,"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"]},"23244":{"connections":[{"id":21792,"orbit":2},{"id":6912,"orbit":0}],"group":1136,"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"]},"23253":{"connections":[{"id":15625,"orbit":0},{"id":22811,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":6,"skill":23253,"stats":["15% increased Evasion Rating"]},"23259":{"connections":[{"id":22864,"orbit":0}],"group":1038,"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"]},"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":611,"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"]},"23305":{"connections":[{"id":21279,"orbit":-3},{"id":51602,"orbit":0}],"group":1357,"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"]},"23307":{"connections":[{"id":10100,"orbit":0},{"id":59945,"orbit":0},{"id":59886,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"23331":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":3,"skill":23331,"stats":["Damage Penetrates 6% Fire Resistance"]},"23343":{"connections":[{"id":58388,"orbit":3}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":21,"skill":23343,"stats":["10% increased Life Recovery from Flasks"]},"23352":{"ascendancyName":"Lich","connections":[{"id":8611,"orbit":-4}],"group":1173,"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"]},"23360":{"connections":[{"id":53566,"orbit":0}],"group":1104,"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"]},"23362":{"connections":[{"id":32672,"orbit":0},{"id":50403,"orbit":0}],"group":1373,"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"]},"23364":{"connections":[{"id":33781,"orbit":2},{"id":48614,"orbit":2}],"group":541,"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"]},"23373":{"connections":[{"id":23428,"orbit":0},{"id":8493,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":22,"skill":23373,"stats":["12% increased Grenade Damage"]},"23374":{"connections":[{"id":2500,"orbit":0}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":0,"orbitIndex":0,"skill":23374,"stats":["8% chance to Poison on Hit"]},"23382":{"connections":[{"id":59093,"orbit":0},{"id":7960,"orbit":0},{"id":9065,"orbit":0},{"id":54297,"orbit":0},{"id":26863,"orbit":0},{"id":8982,"orbit":0}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"23415":{"ascendancyName":"Invoker","connections":[{"id":8143,"orbit":9}],"group":1505,"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"]},"23416":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"23419":{"connections":[{"id":55930,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":20,"skill":23419,"stats":["15% increased Glory generation"]},"23427":{"connections":[{"id":62914,"orbit":5}],"group":783,"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"]},"23428":{"connections":[{"id":47623,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":18,"skill":23428,"stats":["12% increased Grenade Damage"]},"23436":{"connectionArt":"CharacterPlanned","connections":[{"id":29197,"orbit":-3}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23450":{"connections":[{"id":558,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":6,"skill":23450,"stats":["12% increased Fire Damage"]},"23455":{"connections":[{"id":49740,"orbit":0},{"id":55847,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":23455,"stats":["10% increased Cold Damage"]},"23508":{"ascendancyName":"Deadeye","connections":[],"group":1511,"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"]},"23547":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":23547,"stats":[]},"23570":{"connections":[{"id":41031,"orbit":0}],"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":4,"orbitIndex":18,"skill":23570,"stats":["+5 to any Attribute"]},"23587":{"ascendancyName":"Invoker","connections":[{"id":25434,"orbit":7},{"id":29133,"orbit":0}],"group":1505,"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"]},"23608":{"connections":[{"id":61741,"orbit":2},{"id":24401,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":20,"skill":23608,"stats":["10% increased Magnitude of Poison you inflict"]},"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"]},"23650":{"connections":[{"id":43895,"orbit":3}],"group":588,"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"]},"23667":{"connections":[{"id":25312,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":40,"skill":23667,"stats":["16% increased Totem Life"]},"23702":{"connections":[{"id":55802,"orbit":0},{"id":57196,"orbit":0},{"id":63445,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":10,"skill":23702,"stats":["3% increased Attack Speed"]},"23708":{"connectionArt":"CharacterPlanned","connections":[{"id":3896,"orbit":2147483647}],"group":413,"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"],"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":1173,"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":[]},"23724":{"connections":[{"id":7275,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":7,"orbitIndex":22,"skill":23724,"stats":["10% increased Lightning Damage"]},"23736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1104,"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"]},"23738":{"connections":[{"id":34520,"orbit":0}],"group":970,"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"]},"23764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":958,"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"]},"23786":{"connections":[{"id":33391,"orbit":0}],"group":1128,"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"]},"23797":{"connections":[{"id":31370,"orbit":2147483647}],"group":232,"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"]},"23822":{"connections":[{"id":9652,"orbit":0}],"group":1295,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":0,"skill":23822,"stats":["3% of Damage taken Recouped as Life"]},"23825":{"connections":[{"id":24325,"orbit":7},{"id":11572,"orbit":0}],"group":438,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate","orbit":7,"orbitIndex":15,"skill":23825,"stats":["10% increased Life Regeneration rate"]},"23839":{"connections":[{"id":51006,"orbit":-2}],"group":1288,"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"]},"23861":{"connections":[],"group":443,"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"]},"23879":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":354,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":23879,"stats":[]},"23880":{"ascendancyName":"Infernalist","connections":[{"id":13174,"orbit":3}],"group":759,"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"]},"23888":{"connections":[{"id":7390,"orbit":7},{"id":54099,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":0,"skill":23888,"stats":["12% increased Armour and Evasion Rating"]},"23905":{"connections":[{"id":27875,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":23905,"stats":["15% increased Magnitude of Shock you inflict"]},"23915":{"connections":[{"id":41529,"orbit":-1}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":23915,"stats":["15% increased Critical Damage Bonus"]},"23930":{"connections":[{"id":46024,"orbit":0},{"id":58295,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":40,"skill":23930,"stats":["10% increased Elemental Damage"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23939":{"connections":[{"id":857,"orbit":0}],"group":609,"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"]},"23940":{"connections":[{"id":14342,"orbit":3},{"id":58138,"orbit":0}],"group":116,"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"]},"23960":{"aliasPassiveSocket":"voices_jewel_slot3__","connections":[],"group":671,"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,"skill":23960,"stats":[]},"23961":{"connections":[{"id":8791,"orbit":-2}],"group":1083,"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"]},"23993":{"connections":[{"id":42981,"orbit":0},{"id":52684,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":23993,"stats":["12% increased Physical Damage"]},"23996":{"connections":[{"id":63828,"orbit":0},{"id":57785,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":23996,"stats":["15% increased Ballista damage"]},"24009":{"connections":[{"id":34433,"orbit":-4},{"id":21755,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":27,"skill":24009,"stats":["12% increased Armour and Evasion Rating"]},"24035":{"connections":[{"id":60741,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":18,"skill":24035,"stats":["10% increased Elemental Damage"]},"24039":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"24045":{"connections":[],"group":956,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":9,"skill":24045,"stats":["10% increased Mana Recovery from Flasks"]},"24060":{"connections":[{"id":3091,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":2,"orbitIndex":4,"skill":24060,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]},"24062":{"connections":[{"id":54351,"orbit":0}],"group":1231,"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"]},"24070":{"connections":[{"id":58397,"orbit":0}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":24070,"stats":["+8 to Dexterity"]},"24087":{"connections":[{"id":13882,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Everlasting Infusions","orbit":7,"orbitIndex":10,"recipe":["Guilt","Suffering","Despair"],"skill":24087,"stats":["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"]},"24120":{"connections":[{"id":10495,"orbit":0}],"group":1297,"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"]},"24129":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":24129,"stats":[]},"24135":{"ascendancyName":"Infernalist","connections":[{"id":34419,"orbit":0}],"group":759,"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"]},"24150":{"connections":[{"id":44369,"orbit":-7}],"group":1226,"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"]},"24165":{"connections":[{"id":8908,"orbit":0},{"id":25557,"orbit":0},{"id":4328,"orbit":-6},{"id":6079,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24178":{"connections":[{"id":32655,"orbit":-9}],"group":1291,"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"]},"24210":{"connections":[{"id":26932,"orbit":-7}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":7,"orbitIndex":0,"skill":24210,"stats":["20% increased Frenzy Charge Duration"]},"24224":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":176,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"name":"Axe Mastery","orbit":0,"orbitIndex":0,"skill":24224,"stats":[]},"24226":{"ascendancyName":"Deadeye","connections":[],"group":1501,"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"]},"24239":{"connections":[{"id":34136,"orbit":0}],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":9,"skill":24239,"stats":["Gain 5 Life per enemy killed"]},"24240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"id":11764,"orbit":-7}],"group":1217,"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"]},"24256":{"connections":[{"id":63541,"orbit":0}],"group":808,"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"]},"24259":{"connections":[{"id":62609,"orbit":0}],"group":322,"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"]},"24269":{"connections":[{"id":1448,"orbit":-4},{"id":42118,"orbit":-5}],"group":1308,"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"]},"24287":{"connections":[{"id":34015,"orbit":0},{"id":14226,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24295":{"ascendancyName":"Deadeye","connections":[{"id":37336,"orbit":2147483647}],"group":1502,"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"]},"24325":{"connections":[{"id":40006,"orbit":7}],"group":438,"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"]},"24338":{"connections":[{"id":48581,"orbit":0}],"group":659,"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"]},"24339":{"connections":[{"id":58295,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":24339,"stats":["10% increased Life Recovery from Flasks"]},"24368":{"connections":[{"id":37302,"orbit":0},{"id":40597,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":0,"skill":24368,"stats":["15% increased Ballista damage"]},"24401":{"connections":[{"id":63759,"orbit":0}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":24401,"stats":["10% increased Poison Duration"]},"24420":{"connections":[{"id":33829,"orbit":0},{"id":9442,"orbit":-2}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":22,"skill":24420,"stats":["10% increased Critical Hit Chance"]},"24430":{"connections":[{"id":3601,"orbit":0},{"id":38707,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":66,"skill":24430,"stats":["10% increased Elemental Damage"]},"24438":{"connections":[{"id":46748,"orbit":0},{"id":17745,"orbit":0}],"group":489,"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"]},"24475":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":59759,"orbit":-9}],"group":1533,"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"]},"24477":{"connections":[{"id":17532,"orbit":0}],"group":570,"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"]},"24481":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":24481,"stats":[]},"24483":{"connections":[{"id":32660,"orbit":0},{"id":62661,"orbit":0}],"group":561,"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"]},"24491":{"connections":[{"id":20140,"orbit":0}],"group":915,"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"]},"24511":{"connections":[{"id":49696,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":6,"skill":24511,"stats":["+3 to all Attributes"]},"24551":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":286,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":24551,"stats":[]},"24570":{"connections":[{"id":28441,"orbit":0}],"group":1243,"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"]},"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"]},"24646":{"connections":[{"id":61409,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":24646,"stats":["+12 to Strength"]},"24647":{"connections":[{"id":5702,"orbit":4},{"id":43691,"orbit":0},{"id":30634,"orbit":4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24655":{"connections":[{"id":7333,"orbit":0}],"group":730,"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"]},"24656":{"connections":[{"id":54152,"orbit":0},{"id":15814,"orbit":0}],"group":1361,"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"]},"24696":{"ascendancyName":"Tactician","connections":[{"id":4086,"orbit":0}],"group":441,"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"]},"24736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":3191,"orbit":3}],"group":590,"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"]},"24748":{"connections":[{"id":4716,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":15,"skill":24748,"stats":["15% increased Evasion Rating"]},"24753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":34747,"orbit":0},{"id":56567,"orbit":0},{"id":151,"orbit":0}],"group":586,"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"]},"24764":{"connections":[{"id":65226,"orbit":0}],"group":442,"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"]},"24766":{"connections":[{"id":11257,"orbit":-3},{"id":31566,"orbit":-7},{"id":51974,"orbit":0}],"group":751,"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"]},"24767":{"connections":[{"id":36474,"orbit":-3}],"group":331,"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"]},"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":1343,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24801":{"connections":[{"id":40736,"orbit":7}],"group":215,"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"]},"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"]},"24812":{"connections":[{"id":64643,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":11,"skill":24812,"stats":["20% increased Power Charge Duration"]},"24813":{"connections":[{"id":20397,"orbit":3}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":14,"skill":24813,"stats":["6% increased Area of Effect for Attacks"]},"24825":{"connections":[{"id":16460,"orbit":-3},{"id":29479,"orbit":-3},{"id":60738,"orbit":-3}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24843":{"connections":[{"id":1680,"orbit":-7},{"id":56860,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Evasion during Parry","orbit":7,"orbitIndex":20,"skill":24843,"stats":["25% increased Evasion Rating while Parrying"]},"24855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":39347,"orbit":0},{"id":48014,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":58,"skill":24855,"stats":[]},"24868":{"ascendancyName":"Pathfinder","connections":[{"id":33736,"orbit":0}],"group":1513,"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"]},"24871":{"connections":[{"id":10602,"orbit":0}],"group":398,"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"]},"24880":{"connections":[{"id":38501,"orbit":-7}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":5,"orbitIndex":36,"skill":24880,"stats":["3% increased Attack Speed"]},"24883":{"connections":[{"id":44573,"orbit":1}],"group":1318,"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"]},"24889":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1339,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":7,"orbitIndex":2,"skill":24889,"stats":[]},"24922":{"connections":[{"id":18923,"orbit":0},{"id":64345,"orbit":0},{"id":17077,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24929":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":192,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":2,"orbitIndex":19,"skill":24929,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"24948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1385,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":24948,"stats":[]},"24958":{"connections":[{"id":52464,"orbit":-4},{"id":41877,"orbit":6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24963":{"connections":[{"id":39298,"orbit":0},{"id":19224,"orbit":0}],"group":964,"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"]},"24993":{"connectionArt":"CharacterPlanned","connections":[{"id":54297,"orbit":6}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":539,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":25011,"stats":[]},"25014":{"connections":[{"id":50228,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":6,"skill":25014,"stats":["16% increased Warcry Speed"]},"25026":{"connections":[{"id":3567,"orbit":6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":25026,"stats":["10% increased Mana Regeneration Rate"]},"25029":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Charms Mastery","orbit":5,"orbitIndex":51,"skill":25029,"stats":[]},"25031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":25031,"stats":[]},"25055":{"connections":[{"id":41580,"orbit":3}],"group":1379,"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"]},"25058":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":4681,"orbit":2147483647}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25070":{"connections":[{"id":32903,"orbit":0},{"id":11252,"orbit":0},{"id":57821,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":19,"skill":25070,"stats":["6% increased Area of Effect for Attacks"]},"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"]},"25100":{"connections":[],"flavourText":"The fewer there are, the less you have to share.","group":1065,"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"]},"25101":{"connections":[{"id":22439,"orbit":5},{"id":52199,"orbit":0},{"id":44498,"orbit":-5}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":4,"skill":25101,"stats":["10% increased Exposure Effect"]},"25162":{"connections":[{"id":59785,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":10,"skill":25162,"stats":["6% increased Area of Effect for Attacks"]},"25170":{"connections":[{"id":30820,"orbit":3}],"group":1036,"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"]},"25172":{"ascendancyName":"Witchhunter","connections":[{"id":3704,"orbit":0}],"group":278,"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"]},"25211":{"connections":[{"id":11330,"orbit":0}],"group":608,"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"]},"25213":{"connections":[{"id":19223,"orbit":0}],"group":839,"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"]},"25229":{"connections":[{"id":21390,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":20,"skill":25229,"stats":["20% increased Endurance Charge Duration"]},"25239":{"ascendancyName":"Infernalist","connections":[{"id":63894,"orbit":-3}],"group":759,"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"]},"25281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":10,"skill":25281,"stats":[]},"25300":{"connections":[{"id":61796,"orbit":0}],"group":200,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":0,"orbitIndex":0,"skill":25300,"stats":["Break 20% increased Armour"]},"25303":{"connections":[],"group":572,"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"]},"25304":{"connections":[{"id":61056,"orbit":-2}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":5,"skill":25304,"stats":["Meta Skills gain 8% increased Energy"]},"25312":{"connections":[{"id":24259,"orbit":0},{"id":64405,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":36,"skill":25312,"stats":["15% increased Totem Damage"]},"25315":{"connections":[{"id":19820,"orbit":0}],"group":202,"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"]},"25337":{"connectionArt":"CharacterPlanned","connections":[{"id":34990,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25361":{"connections":[],"group":1382,"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"]},"25362":{"connections":[{"id":23105,"orbit":0}],"group":1446,"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%"]},"25363":{"connections":[{"id":44098,"orbit":0},{"id":1823,"orbit":0},{"id":34531,"orbit":0}],"group":676,"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"]},"25374":{"connections":[{"id":45969,"orbit":6}],"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":6,"orbitIndex":42,"skill":25374,"stats":["+5 to any Attribute"]},"25429":{"connections":[{"id":38103,"orbit":-8},{"id":34084,"orbit":0}],"group":622,"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"]},"25434":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"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"]},"25446":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":403,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":25446,"stats":[]},"25458":{"connections":[{"id":37568,"orbit":3}],"group":1238,"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"]},"25482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":61472,"orbit":0},{"id":51702,"orbit":0},{"id":60620,"orbit":0}],"group":385,"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"]},"25503":{"connections":[{"id":27068,"orbit":0},{"id":45632,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":25503,"stats":["10% increased Mana Regeneration Rate"]},"25513":{"connections":[],"group":754,"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"]},"25520":{"connections":[],"flavourText":"The notes may change, but the song remains the same.","group":1220,"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"]},"25528":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":3,"orbitIndex":15,"skill":25528,"stats":[]},"25557":{"connections":[{"id":29763,"orbit":0},{"id":4059,"orbit":0},{"id":26804,"orbit":0}],"group":1045,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"25565":{"connections":[{"id":722,"orbit":0}],"group":1401,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":2,"skill":25565,"stats":["12% increased Lightning Damage"]},"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":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25586":{"connections":[{"id":38993,"orbit":0}],"group":1461,"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"]},"25591":{"connections":[{"id":25315,"orbit":0},{"id":4527,"orbit":0}],"group":202,"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"]},"25594":{"connections":[{"id":34030,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":7,"orbitIndex":0,"skill":25594,"stats":["Offerings have 15% increased Maximum Life"]},"25618":{"ascendancyName":"Stormweaver","connections":[{"id":38578,"orbit":0}],"group":517,"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"]},"25619":{"connections":[{"id":43562,"orbit":3}],"group":845,"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"]},"25620":{"connections":[{"id":9083,"orbit":0}],"group":1066,"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"]},"25648":{"connections":[{"id":10824,"orbit":-4},{"id":58894,"orbit":5},{"id":45736,"orbit":-7}],"group":179,"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"]},"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":611,"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"]},"25678":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":2147483647}],"group":233,"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"],"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":611,"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"]},"25700":{"connections":[{"id":41096,"orbit":4}],"group":1200,"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"]},"25711":{"connections":[{"id":58038,"orbit":-7}],"group":751,"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"]},"25729":{"connections":[{"id":33093,"orbit":0}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":12,"skill":25729,"stats":["3% increased Cast Speed"]},"25745":{"connections":[{"id":31890,"orbit":4}],"group":632,"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"]},"25753":{"connections":[{"id":63268,"orbit":0},{"id":25990,"orbit":0}],"group":502,"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"]},"25763":{"connections":[{"id":61170,"orbit":7},{"id":62963,"orbit":0}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":25763,"stats":["10% increased Fire Damage"]},"25779":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":41076,"orbit":0}],"group":1533,"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"]},"25781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"25807":{"connections":[{"id":53683,"orbit":0}],"group":901,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":25807,"stats":["15% increased Crossbow Reload Speed"]},"25827":{"connections":[{"id":55241,"orbit":0}],"group":1011,"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"]},"25829":{"connections":[{"id":57791,"orbit":0}],"group":662,"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"]},"25851":{"connections":[{"id":52695,"orbit":-6},{"id":36270,"orbit":5}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":6,"orbitIndex":0,"skill":25851,"stats":["5% chance to Daze on Hit"]},"25857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":4,"orbitIndex":68,"skill":25857,"stats":[]},"25885":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":31116,"orbit":0}],"group":1533,"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"]},"25890":{"connections":[{"id":54378,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":5,"skill":25890,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"25893":{"connections":[{"id":51169,"orbit":-2}],"group":793,"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"]},"25915":{"connections":[{"id":8916,"orbit":2}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":2,"skill":25915,"stats":["12% increased Damage while Shapeshifted"]},"25927":{"connections":[{"id":32847,"orbit":-2}],"group":535,"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"]},"25934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":401,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":7,"orbitIndex":12,"skill":25934,"stats":[]},"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"]},"25971":{"connections":[],"group":1216,"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"]},"25990":{"connections":[{"id":43461,"orbit":0}],"group":502,"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"]},"25992":{"connections":[],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":6,"orbitIndex":7,"skill":25992,"stats":["10% increased Accuracy Rating with Bows"]},"26034":{"connections":[{"id":45631,"orbit":-5}],"group":1316,"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"]},"26061":{"connections":[{"id":4579,"orbit":2}],"group":910,"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"]},"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"]},"26068":{"connections":[{"id":37389,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":4,"skill":26068,"stats":["10% increased Attack Damage"]},"26070":{"connections":[{"id":35977,"orbit":0}],"group":343,"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"]},"26085":{"ascendancyName":"Lich","connections":[{"id":20772,"orbit":-4}],"group":1173,"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"]},"26092":{"connections":[{"id":52392,"orbit":0}],"group":401,"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"]},"26104":{"connections":[{"id":43282,"orbit":5},{"id":55672,"orbit":4},{"id":32186,"orbit":0},{"id":27611,"orbit":0},{"id":12005,"orbit":0}],"group":205,"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"]},"26107":{"connections":[{"id":33713,"orbit":7},{"id":56023,"orbit":0}],"group":1326,"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"]},"26135":{"connections":[{"id":2335,"orbit":0}],"group":1191,"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"]},"26148":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":308,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":26148,"stats":[]},"26176":{"connections":[{"id":43650,"orbit":0}],"group":228,"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"]},"26178":{"aliasPassiveSocket":"voices_jewel_slot2","connections":[],"group":672,"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,"skill":26178,"stats":[]},"26194":{"connections":[{"id":37872,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":0,"skill":26194,"stats":["20% increased Presence Area of Effect"]},"26196":{"connections":[{"id":11741,"orbit":0},{"id":39710,"orbit":0}],"group":263,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26196,"stats":[]},"26211":{"connections":[{"id":24883,"orbit":0}],"group":1318,"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"]},"26214":{"connections":[],"group":1021,"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"]},"26228":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26236":{"connections":[{"id":38069,"orbit":-2}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":20,"skill":26236,"stats":["Meta Skills gain 8% increased Energy"]},"26268":{"connections":[{"id":22710,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":12,"skill":26268,"stats":["20% increased Curse Duration"]},"26282":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"26283":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1537,"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"]},"26291":{"connections":[{"id":48935,"orbit":0}],"group":274,"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"]},"26294":{"ascendancyName":"Spirit Walker","connections":[{"id":41401,"orbit":5}],"group":1542,"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"]},"26300":{"connectionArt":"CharacterPlanned","connections":[{"id":23436,"orbit":-4}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26308":{"connections":[{"id":27017,"orbit":-9}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":10,"skill":26308,"stats":["20% increased Evasion Rating while moving"]},"26319":{"connections":[{"id":30990,"orbit":-7}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":0,"skill":26319,"stats":["10% increased Critical Hit Chance"]},"26324":{"connections":[{"id":46023,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":26324,"stats":["15% increased Armour"]},"26331":{"connections":[{"id":3128,"orbit":0},{"id":12166,"orbit":0}],"group":1253,"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"]},"26339":{"connections":[{"id":64405,"orbit":0},{"id":11014,"orbit":0}],"group":322,"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"]},"26356":{"connections":[{"id":8556,"orbit":0}],"group":684,"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"]},"26363":{"connections":[{"id":49291,"orbit":0},{"id":52803,"orbit":0}],"group":1249,"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"]},"26383":{"ascendancyName":"Blood Mage","connections":[{"id":48551,"orbit":8}],"group":954,"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%"]},"26400":{"connections":[{"id":8904,"orbit":0}],"group":1337,"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"]},"26416":{"connections":[{"id":35792,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":16,"skill":26416,"stats":["15% increased Life Recovery from Flasks"]},"26432":{"connections":[{"id":12890,"orbit":0},{"id":60735,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26437":{"connections":[{"id":51129,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":26437,"stats":["Break 20% increased Armour"]},"26447":{"connections":[{"id":12918,"orbit":0},{"id":49633,"orbit":0}],"group":815,"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"]},"26479":{"connections":[{"id":64324,"orbit":4},{"id":9040,"orbit":0}],"group":250,"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"]},"26490":{"connections":[{"id":12751,"orbit":0}],"group":498,"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"]},"26518":{"connections":[],"group":249,"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"]},"26520":{"connections":[{"id":14340,"orbit":0},{"id":37190,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":11,"skill":26520,"stats":["8% increased amount of Life Leeched"]},"26532":{"connections":[{"id":46023,"orbit":-3},{"id":41657,"orbit":3},{"id":36629,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":6,"skill":26532,"stats":["15% increased Armour"]},"26556":{"connections":[{"id":58692,"orbit":4},{"id":59657,"orbit":-2}],"group":1405,"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"]},"26563":{"connections":[{"id":12778,"orbit":-4},{"id":6161,"orbit":0}],"group":1132,"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"]},"26565":{"connections":[{"id":40024,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":26565,"stats":["10% increased Poison Duration"]},"26568":{"connections":[{"id":59367,"orbit":0},{"id":37258,"orbit":0}],"group":437,"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"]},"26572":{"connections":[{"id":47514,"orbit":0}],"group":1450,"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"]},"26592":{"connections":[{"id":58894,"orbit":-3}],"group":179,"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"]},"26596":{"connections":[{"id":5766,"orbit":5},{"id":51416,"orbit":-5}],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":19,"skill":26596,"stats":["3% increased Cast Speed"]},"26598":{"connections":[{"id":33366,"orbit":3},{"id":19880,"orbit":0},{"id":14658,"orbit":0},{"id":23915,"orbit":0},{"id":52501,"orbit":0}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26614":{"connections":[{"id":44344,"orbit":0},{"id":46275,"orbit":0}],"group":609,"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"]},"26638":{"ascendancyName":"Chronomancer","connections":[],"group":351,"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"]},"26648":{"connections":[{"id":24256,"orbit":0},{"id":52125,"orbit":0}],"group":808,"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"]},"26663":{"connections":[{"id":44765,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":0,"orbitIndex":0,"skill":26663,"stats":["5% increased Cooldown Recovery Rate"]},"26682":{"connections":[{"id":46819,"orbit":0},{"id":56640,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":7,"orbitIndex":6,"skill":26682,"stats":["15% increased Critical Spell Damage Bonus"]},"26697":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"id":59263,"orbit":0},{"id":27290,"orbit":0},{"id":46565,"orbit":0}],"group":551,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"name":"Sword Mastery","orbit":0,"orbitIndex":0,"skill":26697,"stats":[]},"26725":{"connections":[{"id":57703,"orbit":0}],"group":287,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26725,"stats":[]},"26726":{"connections":[{"id":48103,"orbit":0}],"group":1351,"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"]},"26739":{"connections":[{"id":43893,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":26739,"stats":["10% increased Elemental Damage"]},"26762":{"connections":[{"id":35380,"orbit":-2}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":0,"orbitIndex":0,"skill":26762,"stats":["10% increased Withered Magnitude"]},"26772":{"connections":[{"id":24240,"orbit":2},{"id":45774,"orbit":3}],"group":1217,"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"]},"26786":{"connections":[{"id":64352,"orbit":0},{"id":48568,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26798":{"connections":[{"id":9638,"orbit":-7}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":26798,"stats":["3% increased Skill Speed"]},"26804":{"connections":[{"id":55405,"orbit":0},{"id":59909,"orbit":0}],"group":1066,"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"]},"26830":{"connections":[],"group":990,"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"]},"26863":{"connections":[{"id":25890,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":21,"skill":26863,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"26885":{"connections":[{"id":59775,"orbit":-4}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":60,"skill":26885,"stats":["7% increased Chaos Damage"]},"26895":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":26895,"stats":[]},"26905":{"connections":[{"id":8821,"orbit":0}],"group":870,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":2,"skill":26905,"stats":["12% increased Lightning Damage"]},"26926":{"connections":[{"id":39416,"orbit":0},{"id":45333,"orbit":-7}],"group":701,"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"]},"26931":{"connections":[{"id":48198,"orbit":5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":10,"skill":26931,"stats":["Gain 3 Life per enemy killed"]},"26932":{"connections":[{"id":34543,"orbit":-2}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":6,"skill":26932,"stats":["20% increased Frenzy Charge Duration"]},"26945":{"connections":[],"group":669,"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"]},"26952":{"connections":[{"id":59661,"orbit":0},{"id":31626,"orbit":0}],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":20,"skill":26952,"stats":["20% increased Flammability Magnitude"]},"26969":{"connections":[{"id":16861,"orbit":2}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":4,"orbitIndex":69,"skill":26969,"stats":["10% increased Critical Hit Chance"]},"27009":{"connections":[{"id":30459,"orbit":0}],"group":817,"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"]},"27017":{"connections":[{"id":21349,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":22,"skill":27017,"stats":["20% increased Evasion Rating while moving"]},"27048":{"connections":[{"id":47375,"orbit":8}],"group":1475,"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"]},"27068":{"connections":[{"id":35831,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":14,"skill":27068,"stats":["10% increased Mana Regeneration Rate"]},"27082":{"connections":[{"id":3446,"orbit":0},{"id":24646,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27095":{"connections":[{"id":14890,"orbit":-4},{"id":48658,"orbit":0}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":7,"skill":27095,"stats":["15% increased Freeze Buildup"]},"27096":{"connectionArt":"CharacterPlanned","connections":[{"id":33423,"orbit":2147483647},{"id":13691,"orbit":0}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27108":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":47796,"orbit":0}],"group":691,"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"]},"27176":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1054,"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"]},"27186":{"connections":[{"id":62963,"orbit":0}],"group":682,"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"]},"27216":{"connections":[{"id":30546,"orbit":-7}],"group":205,"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"]},"27234":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":903,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":27234,"stats":[]},"27262":{"connections":[{"id":49110,"orbit":7}],"group":1121,"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"]},"27274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":2,"skill":27274,"stats":[]},"27290":{"connections":[{"id":38564,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Heavy Blade","orbit":0,"orbitIndex":0,"skill":27290,"stats":["25% increased Damage with Swords"]},"27296":{"connections":[{"id":59777,"orbit":0},{"id":11275,"orbit":-9},{"id":18684,"orbit":0},{"id":21670,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27303":{"connections":[{"id":43142,"orbit":0}],"group":337,"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"]},"27307":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":487,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":27307,"stats":[]},"27373":{"connections":[{"id":53405,"orbit":-6},{"id":51369,"orbit":-6}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"27388":{"connections":[{"id":28578,"orbit":0},{"id":24551,"orbit":0}],"group":286,"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"]},"27405":{"connectionArt":"CharacterPlanned","connections":[{"id":30781,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27417":{"connections":[{"id":64295,"orbit":0},{"id":37616,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Destructive Apparatus","orbit":6,"orbitIndex":54,"skill":27417,"stats":["25% increased Trap Damage"]},"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"]},"27422":{"connections":[{"id":2021,"orbit":5}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":7,"orbitIndex":21,"skill":27422,"stats":["10% increased Mana Recovery from Flasks"]},"27434":{"connections":[{"id":15984,"orbit":0}],"group":840,"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"]},"27439":{"connections":[{"id":21982,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27491":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"27492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":827,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":27492,"stats":[]},"27493":{"connections":[{"id":17118,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":24,"skill":27493,"stats":["10% increased Projectile Damage"]},"27501":{"connections":[],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":44,"skill":27501,"stats":["10% increased Life Regeneration rate"]},"27513":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1421,"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"]},"27540":{"connections":[{"id":62973,"orbit":0}],"group":343,"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"]},"27572":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27581":{"connections":[{"id":50510,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":12,"skill":27581,"stats":["5% increased Block chance"]},"27611":{"connections":[{"id":30546,"orbit":7},{"id":28489,"orbit":8}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":7,"orbitIndex":18,"skill":27611,"stats":["12% increased Elemental Damage while Shapeshifted"]},"27626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":15628,"orbit":0}],"group":431,"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"]},"27638":{"connections":[{"id":38010,"orbit":0}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":3,"skill":27638,"stats":["15% increased Glory generation"]},"27658":{"connections":[{"id":13542,"orbit":-3}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":27658,"stats":["3% of Damage taken Recouped as Life"]},"27662":{"connections":[],"group":1011,"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"]},"27667":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"27671":{"connections":[{"id":32681,"orbit":2147483647}],"group":1146,"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"]},"27674":{"connections":[{"id":44082,"orbit":0}],"group":487,"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"]},"27686":{"ascendancyName":"Invoker","connections":[{"id":12876,"orbit":0}],"group":1505,"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"]},"27687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":177,"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"]},"27704":{"connections":[],"group":1397,"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"]},"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":1454,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27726":{"connections":[{"id":7721,"orbit":-4}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":8,"skill":27726,"stats":["15% increased Armour"]},"27733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":44005,"orbit":0},{"id":2999,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":4,"orbitIndex":30,"skill":27733,"stats":[]},"27740":{"connections":[{"id":35792,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":2,"orbitIndex":6,"skill":27740,"stats":["Gain 1 Rage on Melee Hit"]},"27761":{"connections":[{"id":5826,"orbit":0}],"group":1069,"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"]},"27773":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"27779":{"connections":[],"group":803,"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"]},"27785":{"connections":[{"id":63863,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":10,"skill":27785,"stats":["Damage Penetrates 6% Lightning Resistance"]},"27834":{"connections":[{"id":63659,"orbit":0},{"id":34449,"orbit":0}],"group":1418,"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"]},"27853":{"connections":[{"id":52576,"orbit":0},{"id":3365,"orbit":0},{"id":58109,"orbit":0}],"group":860,"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"]},"27859":{"connections":[{"id":38694,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":12,"skill":27859,"stats":["Herald Skills deal 20% increased Damage"]},"27875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":32123,"orbit":0}],"group":1221,"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"]},"27900":{"connections":[{"id":54640,"orbit":5}],"group":420,"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"]},"27910":{"connections":[{"id":64056,"orbit":0},{"id":53938,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":0,"skill":27910,"stats":["10% increased Attack Damage"]},"27950":{"connections":[{"id":26324,"orbit":0},{"id":52462,"orbit":0}],"group":466,"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"]},"27980":{"connections":[{"id":270,"orbit":-2},{"id":28981,"orbit":2}],"group":186,"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"]},"27990":{"ascendancyName":"Chronomancer","connections":[{"id":49049,"orbit":-3}],"group":387,"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"]},"27992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":634,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":27992,"stats":[]},"27999":{"connections":[{"id":45777,"orbit":0}],"group":483,"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"]},"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":417,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28021":{"connections":[{"id":9782,"orbit":0}],"group":1181,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":28021,"stats":["15% increased Critical Damage Bonus"]},"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"]},"28038":{"connections":[{"id":56488,"orbit":0}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":28038,"stats":["15% increased Evasion Rating"]},"28044":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1455,"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"]},"28050":{"connections":[{"id":63888,"orbit":0},{"id":53539,"orbit":0}],"group":1051,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28061":{"connections":[{"id":35878,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":8,"skill":28061,"stats":["12% increased Elemental Damage with Attacks"]},"28086":{"connections":[{"id":57088,"orbit":-6},{"id":144,"orbit":0}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":28086,"stats":["Damage Penetrates 6% Cold Resistance"]},"28092":{"connections":[{"id":17061,"orbit":7}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":7,"orbitIndex":8,"skill":28092,"stats":["Archon recovery period expires 10% faster"]},"28101":{"connections":[{"id":57571,"orbit":0},{"id":43867,"orbit":-7}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":12,"skill":28101,"stats":["Damage Penetrates 6% Fire Resistance"]},"28106":{"connections":[{"id":3775,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":8,"skill":28106,"stats":["15% increased Life Flask Charges gained"]},"28142":{"connections":[{"id":17702,"orbit":0},{"id":44684,"orbit":0},{"id":46961,"orbit":0}],"group":1165,"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"]},"28153":{"ascendancyName":"Chronomancer","connections":[{"id":63002,"orbit":9}],"group":342,"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"]},"28175":{"connections":[{"id":64471,"orbit":0},{"id":21716,"orbit":0},{"id":48026,"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":28175,"stats":["+5 to any Attribute"]},"28199":{"connections":[{"id":46431,"orbit":0}],"group":1263,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Immobilisation Buildup","orbit":0,"orbitIndex":0,"skill":28199,"stats":["20% increased Hazard Immobilisation buildup"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28214":{"connections":[{"id":1973,"orbit":0},{"id":58295,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":4,"skill":28214,"stats":["10% increased Mana Recovery from Flasks"]},"28223":{"connectionArt":"CharacterPlanned","connections":[{"id":6100,"orbit":3}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28229":{"connections":[{"id":50485,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":0,"skill":28229,"stats":["10% increased Area of Effect of Curses"]},"28254":{"ascendancyName":"Spirit Walker","connectionArt":"CharacterPlanned","connections":[],"group":1542,"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"],"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":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":0,"orbitIndex":0,"skill":28258,"stats":["10% increased Effect of your Mark Skills"]},"28267":{"connections":[{"id":2672,"orbit":0},{"id":35085,"orbit":0}],"group":218,"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"]},"28268":{"connections":[{"id":36630,"orbit":0},{"id":20837,"orbit":0}],"group":1042,"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"]},"28304":{"connections":[{"id":37258,"orbit":0},{"id":2491,"orbit":0}],"group":412,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28329":{"connections":[{"id":36723,"orbit":3}],"group":1276,"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"]},"28361":{"connections":[],"group":792,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":16,"skill":28361,"stats":["12% increased Stun Threshold"]},"28370":{"connections":[{"id":7628,"orbit":0},{"id":11916,"orbit":-6},{"id":37450,"orbit":-6}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28371":{"connections":[{"id":60560,"orbit":-3}],"group":1364,"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"]},"28408":{"connections":[{"id":65042,"orbit":0}],"group":180,"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"]},"28414":{"connections":[{"id":47853,"orbit":0}],"group":1428,"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"]},"28431":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"28432":{"connections":[{"id":20416,"orbit":0},{"id":23062,"orbit":0}],"group":440,"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"]},"28441":{"connections":[{"id":10011,"orbit":0}],"group":1243,"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"]},"28446":{"connections":[{"id":12430,"orbit":0},{"id":50084,"orbit":0}],"group":650,"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"]},"28458":{"connections":[{"id":38972,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":10,"skill":28458,"stats":["Minions deal 10% increased Damage"]},"28464":{"connections":[{"id":8908,"orbit":0}],"group":1124,"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"]},"28476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":493,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":28476,"stats":[]},"28482":{"connections":[{"id":19846,"orbit":0}],"group":357,"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"]},"28489":{"connectionArt":"CharacterPlanned","connections":[{"id":27216,"orbit":8},{"id":56890,"orbit":0}],"group":205,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28492":{"connections":[{"id":54099,"orbit":0}],"flavourText":"Why should I dodge blows that I do not fear?","group":725,"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"]},"28510":{"connections":[{"id":45969,"orbit":-5},{"id":10247,"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":6,"orbitIndex":56,"skill":28510,"stats":["+5 to any Attribute"]},"28516":{"connections":[{"id":7542,"orbit":2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":8,"skill":28516,"stats":["6% increased Area of Effect"]},"28542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":62785,"orbit":7}],"group":382,"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"]},"28556":{"connections":[],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28564":{"connections":[{"id":8460,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":2,"orbitIndex":8,"skill":28564,"stats":["16% increased Warcry Speed"]},"28573":{"connections":[],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":6,"skill":28573,"stats":["Minions Revive 5% faster"]},"28578":{"connections":[],"group":286,"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"]},"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"]},"28613":{"connections":[{"id":39598,"orbit":0},{"id":30553,"orbit":0}],"group":141,"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"]},"28623":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":28623,"stats":[]},"28625":{"connections":[{"id":32135,"orbit":5},{"id":35848,"orbit":0}],"group":972,"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"]},"28638":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"id":37514,"orbit":0},{"id":2113,"orbit":0}],"group":1464,"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"name":"Quarterstaff Mastery","orbit":0,"orbitIndex":0,"skill":28638,"stats":[]},"28680":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":28680,"stats":[]},"28693":{"connections":[{"id":49280,"orbit":7}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":1,"skill":28693,"stats":["12% increased Armour and Evasion Rating"]},"28718":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":651,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":28718,"stats":[]},"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"]},"28770":{"connectionArt":"CharacterPlanned","connections":[{"id":479,"orbit":-7}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28774":{"connections":[{"id":2999,"orbit":0},{"id":10295,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":26,"skill":28774,"stats":["3% increased Cast Speed"]},"28797":{"connections":[{"id":632,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":65,"skill":28797,"stats":["3% increased Attack Speed with Daggers"]},"28800":{"connections":[{"id":55308,"orbit":0}],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":28800,"stats":["10% increased Projectile Damage"]},"28823":{"connections":[{"id":21111,"orbit":4},{"id":59303,"orbit":5}],"group":1280,"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"]},"28835":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":56847,"orbit":0},{"id":60480,"orbit":0},{"id":8157,"orbit":0}],"group":1455,"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"]},"28839":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":16,"skill":28839,"stats":["3% increased Cast Speed"]},"28859":{"connections":[{"id":45382,"orbit":0}],"group":1429,"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"]},"28860":{"connections":[{"id":56104,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":18,"skill":28860,"stats":["Break 20% increased Armour"]},"28862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":435,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":28862,"stats":[]},"28863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":839,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":28863,"stats":[]},"28892":{"connections":[{"id":13845,"orbit":7},{"id":65042,"orbit":0}],"group":180,"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"]},"28903":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":28903,"stats":[]},"28950":{"connections":[{"id":63469,"orbit":0},{"id":10156,"orbit":0},{"id":19873,"orbit":9},{"id":44948,"orbit":0},{"id":41838,"orbit":-8}],"group":642,"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"]},"28963":{"connections":[{"id":23105,"orbit":0}],"group":1446,"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"]},"28975":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":26905,"orbit":0}],"group":871,"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"]},"28976":{"connections":[{"id":23374,"orbit":0},{"id":29458,"orbit":0}],"group":1481,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":0,"orbitIndex":0,"skill":28976,"stats":["10% increased Magnitude of Poison you inflict"]},"28981":{"connections":[{"id":34871,"orbit":-2}],"group":186,"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"]},"28982":{"connections":[{"id":31295,"orbit":0},{"id":55190,"orbit":0},{"id":32845,"orbit":0},{"id":45226,"orbit":0}],"group":99,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28992":{"connections":[{"id":62628,"orbit":0},{"id":43923,"orbit":0}],"group":927,"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"]},"29009":{"connections":[{"id":59362,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29041":{"connections":[{"id":31388,"orbit":0},{"id":52298,"orbit":0}],"group":288,"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"]},"29049":{"connections":[{"id":56893,"orbit":3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":10,"skill":29049,"stats":["10% increased Charm Effect Duration"]},"29065":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":1,"orbitIndex":7,"skill":29065,"stats":[]},"29074":{"ascendancyName":"Pathfinder","connections":[],"group":1513,"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"]},"29098":{"connections":[{"id":43588,"orbit":0},{"id":10727,"orbit":-2}],"group":167,"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"]},"29126":{"connectionArt":"CharacterPlanned","connections":[{"id":32353,"orbit":-7}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29133":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":2}],"group":1505,"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"]},"29148":{"connections":[{"id":34840,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29162":{"ascendancyName":"Tactician","connections":[{"id":15044,"orbit":0}],"group":329,"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"]},"29197":{"connectionArt":"CharacterPlanned","connections":[{"id":11428,"orbit":-7}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29240":{"connections":[{"id":55668,"orbit":0},{"id":10881,"orbit":0},{"id":31977,"orbit":0},{"id":57513,"orbit":0}],"group":1035,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29246":{"connections":[{"id":22927,"orbit":0},{"id":35043,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":6,"orbitIndex":27,"skill":29246,"stats":["10% increased Parried Debuff Magnitude"]},"29270":{"connections":[{"id":7251,"orbit":-2}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":20,"skill":29270,"stats":["10% increased Attack Damage"]},"29285":{"connections":[{"id":9745,"orbit":2147483647},{"id":38463,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":19,"skill":29285,"stats":["2% increased Movement Speed"]},"29288":{"connections":[{"id":36759,"orbit":0}],"group":1172,"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"]},"29306":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":17668,"orbit":1}],"group":1229,"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"]},"29320":{"connections":[{"id":1680,"orbit":7},{"id":56860,"orbit":0}],"group":1213,"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"]},"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"]},"29328":{"connections":[{"id":43201,"orbit":0}],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":61,"skill":29328,"stats":["10% increased chance to inflict Ailments"]},"29358":{"connections":[{"id":917,"orbit":-7}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":7,"skill":29358,"stats":["15% increased Stun Buildup"]},"29361":{"connections":[],"group":923,"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"]},"29369":{"connections":[{"id":11337,"orbit":5},{"id":41669,"orbit":-4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":4,"orbitIndex":42,"skill":29369,"stats":["15% increased Magnitude of Chill you inflict"]},"29372":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[{"id":7720,"orbit":0},{"id":63268,"orbit":0}],"group":502,"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"]},"29391":{"connections":[{"id":29009,"orbit":-3},{"id":5314,"orbit":3},{"id":50715,"orbit":3},{"id":61354,"orbit":0},{"id":29800,"orbit":-3}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":6,"skill":29391,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"29398":{"ascendancyName":"Stormweaver","connections":[{"id":18849,"orbit":0}],"group":517,"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"]},"29399":{"connections":[{"id":23888,"orbit":7},{"id":51446,"orbit":-7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":20,"skill":29399,"stats":["12% increased Armour and Evasion Rating"]},"29402":{"connections":[{"id":4046,"orbit":0},{"id":54282,"orbit":0},{"id":38270,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":7,"orbitIndex":3,"skill":29402,"stats":["15% increased Electrocute Buildup"]},"29408":{"connections":[{"id":31888,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":8,"skill":29408,"stats":["8% increased Mana Cost Efficiency"]},"29432":{"connections":[{"id":4061,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":48,"skill":29432,"stats":["15% increased maximum Energy Shield"]},"29447":{"connections":[{"id":11786,"orbit":2147483647}],"group":328,"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"]},"29458":{"connections":[],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":14,"skill":29458,"stats":["10% increased Magnitude of Poison you inflict"]},"29479":{"connections":[{"id":50469,"orbit":0}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"29502":{"connections":[{"id":36302,"orbit":4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":29502,"stats":["3% increased Cast Speed"]},"29514":{"connections":[{"id":39431,"orbit":0}],"group":736,"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"]},"29517":{"connections":[{"id":32701,"orbit":0},{"id":37695,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"29527":{"connections":[{"id":61800,"orbit":0}],"group":1364,"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"]},"29582":{"connections":[{"id":35987,"orbit":0}],"group":967,"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"]},"29611":{"connections":[{"id":41768,"orbit":0},{"id":61393,"orbit":0},{"id":28201,"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":29611,"stats":["+5 to any Attribute"]},"29652":{"connections":[{"id":15180,"orbit":0},{"id":6008,"orbit":0},{"id":32194,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":11,"skill":29652,"stats":["10% increased Spell Damage"]},"29663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connectionArt":"CharacterPlanned","connections":[],"group":298,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Movement Mastery","orbit":2,"orbitIndex":6,"skill":29663,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29695":{"connections":[],"group":811,"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"]},"29762":{"connections":[{"id":8460,"orbit":0},{"id":40328,"orbit":-2}],"group":193,"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"]},"29763":{"connections":[{"id":39423,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":29763,"stats":["Damage Penetrates 6% Lightning Resistance"]},"29788":{"connections":[{"id":46060,"orbit":-2}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":4,"skill":29788,"stats":["8% increased amount of Life Leeched"]},"29800":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"29843":{"connections":[{"id":35987,"orbit":0}],"group":980,"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"]},"29871":{"ascendancyName":"Deadeye","connections":[{"id":24226,"orbit":0}],"group":1504,"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"]},"29881":{"connections":[{"id":25446,"orbit":0}],"group":403,"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"]},"29899":{"connections":[{"id":19001,"orbit":0},{"id":6912,"orbit":0}],"group":1136,"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"]},"29914":{"connections":[{"id":46931,"orbit":0}],"group":453,"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"]},"29930":{"connections":[{"id":16938,"orbit":3},{"id":47088,"orbit":0}],"group":1040,"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"]},"29941":{"connections":[{"id":60829,"orbit":0},{"id":57517,"orbit":0}],"group":1042,"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"]},"29959":{"connections":[{"id":6891,"orbit":3},{"id":60362,"orbit":-3}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":14,"skill":29959,"stats":["15% increased Critical Damage Bonus"]},"29985":{"connectionArt":"CharacterPlanned","connections":[{"id":61113,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29990":{"connections":[{"id":36217,"orbit":0},{"id":47477,"orbit":-9},{"id":30808,"orbit":0}],"group":1438,"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"]},"29993":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":288,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":8,"skill":29993,"stats":[]},"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"]},"30040":{"connections":[{"id":56016,"orbit":0}],"group":990,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":7,"skill":30040,"stats":["Break 20% increased Armour"]},"30047":{"connections":[{"id":21280,"orbit":0},{"id":18451,"orbit":0},{"id":45650,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30061":{"connections":[{"id":31908,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":4,"skill":30061,"stats":["6% increased Curse Magnitudes"]},"30071":{"ascendancyName":"Blood Mage","connections":[{"id":27667,"orbit":-9}],"group":954,"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"]},"30077":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":30077,"stats":[]},"30082":{"connections":[{"id":43155,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":30082,"stats":["15% increased Crossbow Reload Speed"]},"30102":{"connections":[{"id":43944,"orbit":2147483647},{"id":53177,"orbit":0}],"group":1281,"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"]},"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"]},"30117":{"ascendancyName":"Blood Mage","connections":[{"id":26383,"orbit":5},{"id":8415,"orbit":-5}],"group":900,"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"]},"30123":{"connections":[{"id":6923,"orbit":0},{"id":26092,"orbit":0}],"group":401,"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"]},"30132":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":58416,"orbit":2147483647},{"id":49130,"orbit":2147483647}],"group":1312,"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"]},"30136":{"connections":[{"id":22626,"orbit":0}],"group":198,"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"]},"30141":{"connections":[{"id":55190,"orbit":0}],"group":120,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30143":{"connections":[{"id":34201,"orbit":9}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":0,"skill":30143,"stats":["5% increased Block chance"]},"30151":{"ascendancyName":"Tactician","connections":[{"id":32637,"orbit":0}],"group":378,"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"]},"30197":{"connections":[{"id":52415,"orbit":0}],"group":1291,"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"]},"30210":{"connections":[{"id":64650,"orbit":0}],"group":1138,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Evasion Rating","orbit":2,"orbitIndex":6,"skill":30210,"stats":["15% increased Evasion Rating"]},"30219":{"connections":[{"id":45177,"orbit":-2}],"group":589,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":1,"orbitIndex":10,"skill":30219,"stats":["8% increased Accuracy Rating"]},"30233":{"ascendancyName":"Ritualist","connections":[],"group":1570,"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"]},"30252":{"connections":[{"id":20049,"orbit":4},{"id":48135,"orbit":-4}],"group":1017,"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"]},"30258":{"connections":[{"id":40105,"orbit":0}],"group":225,"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"]},"30265":{"ascendancyName":"Disciple of Varashta","connections":[],"group":580,"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"]},"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"]},"30334":{"connections":[{"id":9324,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":0,"skill":30334,"stats":["8% increased Ignite Duration on Enemies"]},"30341":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":1995,"orbit":0},{"id":37946,"orbit":0}],"group":1155,"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"]},"30346":{"connections":[{"id":44871,"orbit":0},{"id":29695,"orbit":-5},{"id":34006,"orbit":6}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":13,"skill":30346,"stats":["+10 to maximum Energy Shield"]},"30371":{"connections":[{"id":27687,"orbit":-4}],"group":177,"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"]},"30372":{"connections":[{"id":42065,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":23,"skill":30372,"stats":["Damage Penetrates 6% Lightning Resistance"]},"30390":{"connections":[{"id":33978,"orbit":3}],"group":456,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":30390,"stats":["5% increased Block chance"]},"30392":{"connections":[{"id":28106,"orbit":0},{"id":41016,"orbit":0}],"group":1148,"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"]},"30393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":58894,"orbit":0},{"id":15825,"orbit":0}],"group":179,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":30393,"stats":[]},"30395":{"connections":[{"id":9221,"orbit":0}],"group":268,"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"]},"30408":{"connections":[{"id":17906,"orbit":0}],"group":1443,"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"]},"30456":{"connections":[{"id":38044,"orbit":-5}],"group":1176,"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"]},"30457":{"connections":[{"id":54416,"orbit":4}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":12,"skill":30457,"stats":["15% increased Armour"]},"30459":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":3,"skill":30459,"stats":[]},"30463":{"connections":[{"id":58971,"orbit":-7},{"id":9968,"orbit":-6}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":3,"skill":30463,"stats":["15% increased Elemental Ailment Threshold"]},"30523":{"connections":[{"id":35492,"orbit":0}],"group":769,"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"]},"30539":{"connections":[{"id":25620,"orbit":0}],"group":1066,"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"]},"30546":{"connections":[{"id":12005,"orbit":0}],"group":205,"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"]},"30553":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":152,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":30553,"stats":[]},"30554":{"connections":[{"id":29611,"orbit":0}],"group":150,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":20,"skill":30554,"stats":["Minions have 10% increased maximum Life"]},"30555":{"connections":[{"id":53960,"orbit":3}],"group":902,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30562":{"connections":[{"id":11032,"orbit":0}],"group":1115,"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"]},"30615":{"connections":[],"group":1408,"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"]},"30634":{"connections":[],"group":1020,"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"]},"30657":{"connections":[{"id":38463,"orbit":0},{"id":6842,"orbit":0},{"id":59064,"orbit":0},{"id":58848,"orbit":0},{"id":32891,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30662":{"connections":[{"id":26291,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":32,"skill":30662,"stats":["12% increased Lightning Damage"]},"30695":{"connections":[{"id":13783,"orbit":0},{"id":19808,"orbit":0},{"id":56472,"orbit":0}],"group":1015,"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"]},"30701":{"connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":8,"skill":30701,"stats":["6% reduced Projectile Speed"]},"30704":{"connections":[{"id":22045,"orbit":0}],"group":578,"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"]},"30720":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"30736":{"connections":[{"id":52180,"orbit":-2}],"group":1472,"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"]},"30748":{"connections":[{"id":21801,"orbit":0}],"group":1226,"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"]},"30780":{"connections":[{"id":17112,"orbit":-2},{"id":5410,"orbit":-2}],"group":122,"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"]},"30781":{"connectionArt":"CharacterPlanned","connections":[{"id":63772,"orbit":2147483647}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"30808":{"connections":[{"id":14267,"orbit":0},{"id":28101,"orbit":-4},{"id":28859,"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":30808,"stats":["+5 to any Attribute"]},"30820":{"connections":[{"id":26786,"orbit":0}],"group":1036,"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"]},"30829":{"connections":[{"id":56999,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":0,"skill":30829,"stats":["8% increased Accuracy Rating"]},"30834":{"connections":[{"id":50216,"orbit":0},{"id":57967,"orbit":0}],"group":610,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":2,"skill":30834,"stats":["10% increased Mana Regeneration Rate"]},"30839":{"connections":[{"id":35671,"orbit":-3}],"group":1303,"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"]},"30871":{"connections":[{"id":12208,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":9,"skill":30871,"stats":["10% increased Life Recovery from Flasks"]},"30896":{"connections":[{"id":49172,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":13,"skill":30896,"stats":["3% increased Skill Speed with Channelling Skills"]},"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"]},"30905":{"connections":[{"id":8697,"orbit":5},{"id":34201,"orbit":6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":21,"skill":30905,"stats":["12% increased Elemental Damage with Attacks"]},"30910":{"connections":[{"id":59647,"orbit":-7}],"group":1083,"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"]},"30959":{"connections":[{"id":31778,"orbit":2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":30959,"stats":["Damage Penetrates 6% Cold Resistance"]},"30973":{"connections":[{"id":49320,"orbit":0}],"group":1444,"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"]},"30979":{"connections":[{"id":46358,"orbit":0},{"id":44733,"orbit":0},{"id":12610,"orbit":0}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30985":{"connections":[{"id":12324,"orbit":0}],"group":442,"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"]},"30990":{"connections":[{"id":58939,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":16,"skill":30990,"stats":["10% increased Critical Hit Chance"]},"30996":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53762,"orbit":0},{"id":18146,"orbit":0}],"group":513,"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"]},"31010":{"connections":[],"group":205,"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"]},"31017":{"connections":[{"id":26339,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":31017,"stats":["15% increased Totem Damage"]},"31037":{"connections":[{"id":34866,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":22,"skill":31037,"stats":["Remnants you create have 10% increased effect"]},"31039":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":31039,"stats":[]},"31055":{"connections":[{"id":18969,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":2,"orbitIndex":19,"skill":31055,"stats":["3% increased Attack Speed with Bows"]},"31112":{"connections":[],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike","orbit":7,"orbitIndex":2,"skill":31112,"stats":["10% increased Ballista Critical Hit Chance"]},"31116":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"31129":{"connections":[{"id":37971,"orbit":0}],"group":1496,"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"]},"31159":{"connections":[{"id":46017,"orbit":0}],"group":248,"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"]},"31172":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1303,"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"]},"31175":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"31189":{"connections":[{"id":28863,"orbit":0}],"group":839,"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"]},"31223":{"ascendancyName":"Blood Mage","connections":[],"group":976,"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"]},"31238":{"connections":[{"id":48552,"orbit":0},{"id":45918,"orbit":0},{"id":10452,"orbit":0}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"31273":{"connections":[{"id":17372,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":2,"orbitIndex":4,"skill":31273,"stats":["10% increased Melee Damage"]},"31284":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":21380,"orbit":0}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":3,"skill":31284,"stats":[]},"31286":{"connections":[{"id":16140,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical","orbit":3,"orbitIndex":14,"skill":31286,"stats":["10% increased Physical Damage"]},"31290":{"connections":[{"id":32474,"orbit":0},{"id":60332,"orbit":0},{"id":32764,"orbit":0},{"id":37609,"orbit":0}],"group":159,"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"]},"31292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":31292,"stats":[]},"31295":{"connections":[{"id":9352,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":21,"skill":31295,"stats":["6% increased Area of Effect for Attacks"]},"31326":{"connections":[{"id":44092,"orbit":0},{"id":11505,"orbit":0}],"group":602,"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"]},"31345":{"connections":[{"id":55400,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":11,"skill":31345,"stats":["Damage Penetrates 6% Lightning Resistance"]},"31364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1391,"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"]},"31366":{"connections":[{"id":57518,"orbit":4},{"id":3843,"orbit":-4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":5,"skill":31366,"stats":["Parry has 20% increased Stun Buildup"]},"31370":{"connections":[{"id":32448,"orbit":2147483647}],"group":232,"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"]},"31373":{"connections":[{"id":50561,"orbit":0},{"id":47173,"orbit":0}],"group":188,"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"]},"31388":{"connections":[{"id":51394,"orbit":0}],"group":288,"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"]},"31409":{"connections":[{"id":50437,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":3,"skill":31409,"stats":["15% increased Evasion Rating"]},"31419":{"connections":[{"id":35787,"orbit":3},{"id":53405,"orbit":4}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":9,"skill":31419,"stats":["10% increased Skill Effect Duration"]},"31433":{"connections":[{"id":21495,"orbit":-4},{"id":5348,"orbit":0}],"group":1271,"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"]},"31449":{"connections":[{"id":9444,"orbit":0}],"group":1462,"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"]},"31517":{"connections":[{"id":11722,"orbit":0},{"id":46034,"orbit":0}],"group":998,"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"]},"31545":{"connections":[{"id":8171,"orbit":0},{"id":3446,"orbit":0}],"group":215,"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"]},"31554":{"connectionArt":"CharacterPlanned","connections":[{"id":49929,"orbit":0}],"group":137,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31566":{"connections":[{"id":7049,"orbit":0},{"id":54818,"orbit":9}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":23,"skill":31566,"stats":["30% increased Armour while Surrounded"]},"31609":{"connections":[{"id":36163,"orbit":-4}],"group":456,"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"]},"31626":{"connections":[{"id":50516,"orbit":0}],"group":1010,"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"]},"31630":{"connections":[{"id":64474,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":7,"skill":31630,"stats":["6% faster start of Energy Shield Recharge"]},"31644":{"connections":[{"id":14739,"orbit":0},{"id":34058,"orbit":0}],"group":712,"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"]},"31647":{"connections":[{"id":23305,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":12,"skill":31647,"stats":["+8 to Dexterity"]},"31650":{"connections":[{"id":16051,"orbit":0},{"id":31017,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":0,"skill":31650,"stats":["15% increased Totem Damage"]},"31673":{"connections":[{"id":48649,"orbit":0}],"group":515,"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"]},"31692":{"connections":[{"id":46197,"orbit":0}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":3,"skill":31692,"stats":["10% increased Critical Hit Chance"]},"31697":{"connections":[{"id":51303,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":4,"skill":31697,"stats":["10% increased Elemental Infusion duration"]},"31724":{"connections":[{"id":2074,"orbit":0}],"group":419,"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"]},"31745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":984,"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"]},"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"]},"31757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connectionArt":"CharacterPlanned","connections":[],"group":137,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":6,"orbitIndex":9,"skill":31757,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31763":{"connections":[{"id":43155,"orbit":0}],"group":919,"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"]},"31765":{"connections":[{"id":59538,"orbit":0},{"id":722,"orbit":0},{"id":41886,"orbit":0},{"id":61421,"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":31765,"stats":["+5 to any Attribute"]},"31773":{"connections":[{"id":55011,"orbit":0}],"group":550,"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"]},"31778":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":31778,"stats":["Damage Penetrates 6% Cold Resistance"]},"31779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":210,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":31779,"stats":[]},"31805":{"connections":[{"id":44461,"orbit":-3}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":15,"skill":31805,"stats":["10% increased Skill Effect Duration"]},"31825":{"connections":[{"id":16142,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":6,"skill":31825,"stats":["12% increased Attack Cold Damage"]},"31826":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"31848":{"connections":[{"id":40117,"orbit":7}],"group":264,"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"]},"31855":{"connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":7,"skill":31855,"stats":["10% increased Life Recovery from Flasks"]},"31888":{"connections":[{"id":34300,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":4,"skill":31888,"stats":["8% increased Mana Cost Efficiency"]},"31890":{"connections":[{"id":38827,"orbit":7}],"group":632,"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"]},"31898":{"connections":[{"id":3921,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":7,"skill":31898,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"31903":{"connections":[{"id":37612,"orbit":0},{"id":56605,"orbit":0},{"id":38010,"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":0,"orbitIndex":0,"skill":31903,"stats":["+5 to any Attribute"]},"31908":{"connections":[{"id":5594,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":8,"skill":31908,"stats":["6% increased Curse Magnitudes"]},"31918":{"connections":[{"id":4534,"orbit":-3},{"id":60323,"orbit":-9}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":7,"orbitIndex":15,"skill":31918,"stats":["15% chance to Pierce an Enemy"]},"31925":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":38596,"orbit":3}],"group":332,"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"]},"31928":{"connections":[{"id":50574,"orbit":0},{"id":15443,"orbit":0}],"group":1052,"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"]},"31943":{"connections":[{"id":8382,"orbit":0}],"group":733,"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"]},"31950":{"connections":[{"id":58329,"orbit":0},{"id":8569,"orbit":0},{"id":21080,"orbit":0},{"id":7405,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"31955":{"connections":[{"id":37641,"orbit":0}],"group":275,"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"]},"31977":{"connections":[{"id":4828,"orbit":0},{"id":10314,"orbit":6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":5,"orbitIndex":36,"skill":31977,"stats":["10% increased Mana Regeneration Rate"]},"31991":{"connections":[{"id":36070,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":15,"skill":31991,"stats":["6% increased Area of Effect for Attacks"]},"32009":{"connections":[{"id":36814,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":32009,"stats":["20% increased Curse Duration"]},"32016":{"connections":[{"id":5766,"orbit":-6},{"id":49984,"orbit":0}],"group":1231,"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"]},"32040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":32040,"stats":[]},"32054":{"connections":[{"id":62153,"orbit":0}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":15,"skill":32054,"stats":["15% increased Critical Spell Damage Bonus"]},"32071":{"connections":[{"id":15427,"orbit":0},{"id":49111,"orbit":0}],"group":135,"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"]},"32078":{"connections":[{"id":16940,"orbit":0}],"group":403,"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"]},"32096":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1083,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":32096,"stats":[]},"32123":{"connections":[{"id":54678,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":4,"skill":32123,"stats":["15% increased chance to Shock"]},"32128":{"connections":[{"id":18101,"orbit":7},{"id":15801,"orbit":0}],"group":605,"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"]},"32135":{"connections":[{"id":12322,"orbit":5},{"id":16484,"orbit":-9}],"group":972,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":4,"orbitIndex":12,"skill":32135,"stats":["10% increased Flask Charges gained"]},"32148":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Rattling Ball","orbit":2,"orbitIndex":2,"skill":32148,"stats":["25% increased Damage with Flails"]},"32151":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":679,"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"]},"32155":{"connections":[{"id":25700,"orbit":4}],"group":1200,"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"]},"32183":{"connections":[{"id":28371,"orbit":4}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"32185":{"connections":[{"id":17118,"orbit":0}],"group":1019,"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"]},"32186":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":4,"orbitIndex":43,"skill":32186,"stats":["10% increased Accuracy Rating while Shapeshifted"]},"32194":{"connections":[{"id":55933,"orbit":0},{"id":36478,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"32233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":826,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":21,"skill":32233,"stats":[]},"32239":{"connections":[{"id":9009,"orbit":-3}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":1,"skill":32239,"stats":["12% increased Damage with Plant Skills"]},"32241":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":32241,"stats":[]},"32258":{"connections":[{"id":19644,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":8,"skill":32258,"stats":["Minions have 12% increased maximum Life"]},"32271":{"connections":[{"id":54311,"orbit":-2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":15,"skill":32271,"stats":["30% increased Flammability Magnitude"]},"32274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":908,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":32274,"stats":[]},"32278":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":501,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":11,"skill":32278,"stats":[]},"32301":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50277,"orbit":0}],"group":1309,"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"]},"32309":{"connections":[{"id":59070,"orbit":2}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":16,"skill":32309,"stats":["15% increased Archon Buff duration"]},"32319":{"connections":[{"id":33542,"orbit":0}],"group":1492,"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"]},"32349":{"connections":[{"id":3446,"orbit":0}],"flavourText":"The Titans did not vanish from this world. Their might lives on - in you.","group":208,"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"]},"32353":{"connections":[{"id":41180,"orbit":0}],"group":335,"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"]},"32354":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":6626,"orbit":-2}],"group":678,"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"]},"32364":{"connections":[{"id":32858,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":7,"skill":32364,"stats":["10% increased Ignite Magnitude"]},"32399":{"connections":[{"id":46857,"orbit":-7}],"group":1246,"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"]},"32404":{"connections":[{"id":15618,"orbit":6},{"id":5501,"orbit":0},{"id":22290,"orbit":-6}],"group":778,"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"]},"32416":{"connections":[{"id":27726,"orbit":-3}],"group":595,"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"]},"32427":{"connections":[{"id":4456,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":18,"skill":32427,"stats":["Damage Penetrates 6% Cold Resistance"]},"32436":{"connections":[{"id":5332,"orbit":2147483647}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":14,"skill":32436,"stats":["+8 to Intelligence"]},"32438":{"connections":[{"id":55149,"orbit":4}],"group":1277,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":32438,"stats":["11% increased Chaos Damage"]},"32442":{"connections":[{"id":2361,"orbit":0}],"group":1471,"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"]},"32448":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":232,"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"]},"32474":{"connections":[{"id":29611,"orbit":0},{"id":47931,"orbit":0},{"id":55888,"orbit":0},{"id":36025,"orbit":-9},{"id":61942,"orbit":0}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"32507":{"connections":[],"group":683,"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"]},"32509":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32509,"stats":[]},"32523":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":1546,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32523,"stats":[]},"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":[]},"32543":{"connections":[],"group":1433,"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"]},"32545":{"connections":[{"id":61196,"orbit":4}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":2,"skill":32545,"stats":["3% increased Skill Speed"]},"32549":{"connections":[{"id":29098,"orbit":-2},{"id":32474,"orbit":3}],"group":167,"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"]},"32555":{"connections":[{"id":9535,"orbit":2147483647}],"group":964,"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"]},"32559":{"ascendancyName":"Witchhunter","connections":[{"id":46535,"orbit":0}],"group":280,"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"]},"32560":{"ascendancyName":"Tactician","connections":[{"id":16249,"orbit":0}],"group":300,"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"]},"32561":{"connections":[{"id":51825,"orbit":0}],"group":754,"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"]},"32564":{"connections":[{"id":37519,"orbit":0},{"id":39207,"orbit":0},{"id":2864,"orbit":0}],"group":641,"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"]},"32597":{"connections":[{"id":12777,"orbit":0}],"group":674,"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"]},"32599":{"connections":[{"id":28516,"orbit":2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":12,"skill":32599,"stats":["6% increased Area of Effect"]},"32600":{"connections":[{"id":6304,"orbit":0},{"id":20303,"orbit":-7}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":12,"skill":32600,"stats":["10% increased Life Regeneration rate"]},"32637":{"ascendancyName":"Tactician","connections":[],"group":377,"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%"]},"32655":{"connections":[{"id":33514,"orbit":0}],"group":1291,"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"]},"32660":{"connections":[],"group":561,"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"]},"32664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1146,"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"]},"32672":{"connections":[{"id":4031,"orbit":0},{"id":9928,"orbit":0}],"group":1373,"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"]},"32681":{"connections":[{"id":32664,"orbit":0},{"id":38668,"orbit":2147483647}],"group":1146,"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"]},"32683":{"connections":[{"id":53149,"orbit":0},{"id":54413,"orbit":0}],"group":1023,"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"]},"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":759,"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":[]},"32701":{"connections":[{"id":21746,"orbit":0},{"id":26598,"orbit":0},{"id":22115,"orbit":0},{"id":43877,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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":611,"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"]},"32721":{"connections":[{"id":10011,"orbit":0}],"group":1243,"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"]},"32727":{"connections":[],"group":683,"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"]},"32745":{"connections":[{"id":50104,"orbit":0},{"id":61179,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":0,"orbitIndex":0,"skill":32745,"stats":["10% increased Physical Damage"]},"32763":{"connections":[],"group":1473,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":6,"skill":32763,"stats":[]},"32764":{"connections":[{"id":21213,"orbit":0},{"id":37609,"orbit":0}],"group":159,"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"]},"32768":{"connectionArt":"CharacterPlanned","connections":[{"id":8107,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"32771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34817,"orbit":0}],"group":1533,"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"]},"32777":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":320,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":15,"skill":32777,"stats":[]},"32799":{"connections":[{"id":23961,"orbit":0},{"id":32096,"orbit":0}],"group":1083,"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"]},"32813":{"connections":[{"id":59600,"orbit":-7},{"id":35809,"orbit":0}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":12,"skill":32813,"stats":["10% increased Life Recovery from Flasks"]},"32818":{"connections":[{"id":48135,"orbit":4}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":6,"skill":32818,"stats":["10% increased Charm Charges gained"]},"32836":{"connections":[{"id":675,"orbit":3}],"group":132,"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"]},"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"]},"32847":{"connections":[],"group":516,"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"]},"32856":{"ascendancyName":"Chronomancer","connections":[{"id":58747,"orbit":0},{"id":3605,"orbit":9}],"group":405,"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"]},"32858":{"connections":[{"id":1073,"orbit":0},{"id":1205,"orbit":0}],"group":1423,"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"]},"32859":{"connections":[{"id":15114,"orbit":-4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":9,"skill":32859,"stats":["12% increased Damage with Plant Skills"]},"32885":{"connections":[{"id":6689,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":33,"skill":32885,"stats":["5% increased Block chance"]},"32891":{"connections":[{"id":331,"orbit":-2},{"id":22329,"orbit":-7}],"group":1261,"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"]},"32896":{"connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":9,"skill":32896,"stats":["8% chance to Poison on Hit"]},"32903":{"connections":[{"id":25361,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":15,"skill":32903,"stats":["6% increased Area of Effect for Attacks"]},"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"]},"32923":{"connections":[{"id":58215,"orbit":4}],"group":438,"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"]},"32932":{"connections":[{"id":14205,"orbit":0},{"id":63268,"orbit":0}],"group":502,"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"]},"32943":{"connections":[{"id":16938,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1040,"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"]},"32951":{"connections":[{"id":39280,"orbit":0},{"id":41522,"orbit":0}],"group":1071,"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"]},"32952":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":365,"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"]},"32964":{"connections":[{"id":34617,"orbit":5}],"group":363,"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"]},"32976":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":14428,"orbit":0},{"id":38776,"orbit":0},{"id":34202,"orbit":0}],"group":758,"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"]},"33037":{"connections":[{"id":47683,"orbit":0}],"group":828,"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"]},"33045":{"connections":[{"id":62303,"orbit":-4}],"group":295,"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"]},"33053":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":33053,"stats":["10% increased Projectile Damage"]},"33059":{"connections":[{"id":2841,"orbit":0}],"group":939,"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"]},"33080":{"connections":[{"id":43254,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":18,"skill":33080,"stats":["10% increased Parried Debuff Magnitude"]},"33093":{"connections":[{"id":30077,"orbit":0}],"group":1362,"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"]},"33099":{"connections":[{"id":25029,"orbit":0}],"group":1268,"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"]},"33112":{"connections":[{"id":10881,"orbit":-7}],"group":1072,"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"]},"33137":{"connections":[{"id":36894,"orbit":0},{"id":17330,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Damage","orbit":2,"orbitIndex":17,"skill":33137,"stats":["10% increased Magnitude of Bleeding you inflict"]},"33141":{"ascendancyName":"Lich","connections":[{"id":33570,"orbit":4}],"group":1173,"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"]},"33180":{"connections":[{"id":46989,"orbit":0},{"id":60269,"orbit":0}],"group":861,"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"]},"33203":{"connectionArt":"CharacterPlanned","connections":[{"id":55033,"orbit":-8},{"id":38707,"orbit":6}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33209":{"connections":[],"group":375,"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"]},"33216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":729,"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"]},"33221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":26331,"orbit":0},{"id":19722,"orbit":0},{"id":4959,"orbit":0}],"group":1252,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":33221,"stats":[]},"33225":{"connections":[],"group":924,"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"]},"33229":{"connections":[{"id":64996,"orbit":0},{"id":6161,"orbit":0}],"group":1132,"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"]},"33240":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"33242":{"connections":[{"id":15838,"orbit":0}],"group":659,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":5,"orbitIndex":2,"skill":33242,"stats":["10% increased chance to inflict Ailments"]},"33244":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":376,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":33244,"stats":[]},"33245":{"connections":[{"id":9151,"orbit":0},{"id":31918,"orbit":-7},{"id":45331,"orbit":7}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":1,"orbitIndex":3,"skill":33245,"stats":["10% increased Projectile Damage"]},"33254":{"connections":[],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":1,"skill":33254,"stats":["10% increased Spell Damage"]},"33340":{"connections":[{"id":51267,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":15,"skill":33340,"stats":["15% increased Stun Buildup"]},"33345":{"connections":[{"id":61923,"orbit":0},{"id":10131,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":14,"skill":33345,"stats":["10% increased Mana Regeneration Rate"]},"33348":{"connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":7,"skill":33348,"stats":["25% increased Presence Area of Effect"]},"33366":{"connections":[{"id":10944,"orbit":-3}],"group":1215,"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"]},"33369":{"connections":[],"flavourText":"My ancestral pact was sealed. Forevermore, I would gain sustenance\\nonly from the ravaged flesh of my enemies.","group":681,"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"]},"33391":{"connections":[{"id":56330,"orbit":0},{"id":49661,"orbit":0}],"group":1128,"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"]},"33393":{"connections":[{"id":41747,"orbit":-3}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":5,"orbitIndex":15,"skill":33393,"stats":["10% increased Damage with Flails"]},"33397":{"connections":[{"id":39594,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":21,"skill":33397,"stats":["12% increased Fire Damage"]},"33400":{"connections":[],"group":1047,"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"]},"33402":{"connections":[{"id":58125,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":54,"skill":33402,"stats":["5% increased Block chance"]},"33404":{"connections":[{"id":57821,"orbit":0}],"flavourText":"Burn the spirit to vitalise the flesh.","group":1323,"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"]},"33408":{"connections":[],"group":119,"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"]},"33415":{"connections":[{"id":31763,"orbit":0}],"group":919,"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"]},"33423":{"connectionArt":"CharacterPlanned","connections":[{"id":65192,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33445":{"connections":[{"id":30143,"orbit":-2}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":3,"skill":33445,"stats":["5% increased Block chance"]},"33452":{"connections":[{"id":23192,"orbit":-6},{"id":52796,"orbit":9}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":5,"orbitIndex":54,"skill":33452,"stats":["5% increased Block chance"]},"33463":{"connections":[{"id":41877,"orbit":6},{"id":31286,"orbit":0},{"id":45304,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"33514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":33514,"stats":[]},"33518":{"connections":[{"id":63579,"orbit":6}],"group":641,"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"]},"33542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1492,"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"]},"33556":{"connections":[{"id":55473,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":2,"skill":33556,"stats":["8% increased Melee Damage"]},"33562":{"connections":[{"id":27216,"orbit":0},{"id":27611,"orbit":0}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":33562,"stats":["12% increased Damage while Shapeshifted"]},"33570":{"ascendancyName":"Lich","connections":[{"id":36696,"orbit":5}],"group":1173,"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"]},"33585":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"33590":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":131,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33590,"stats":[]},"33596":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":33596,"stats":[]},"33601":{"connections":[{"id":35708,"orbit":-2},{"id":2863,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":20,"skill":33601,"stats":["15% increased Freeze Buildup"]},"33604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":630,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33604,"stats":[]},"33612":{"connections":[{"id":8983,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":1,"orbitIndex":8,"skill":33612,"stats":["Minions deal 12% increased Damage"]},"33618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":39990,"orbit":0}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":10,"skill":33618,"stats":[]},"33639":{"connections":[{"id":8782,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":16,"skill":33639,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"33713":{"connections":[{"id":57462,"orbit":-2}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":2,"orbitIndex":17,"skill":33713,"stats":["8% increased Projectile Speed"]},"33722":{"connections":[{"id":4140,"orbit":0},{"id":55048,"orbit":0},{"id":27980,"orbit":0},{"id":61811,"orbit":0}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"33729":{"connections":[{"id":45712,"orbit":4}],"group":1200,"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"]},"33730":{"connections":[{"id":60809,"orbit":0}],"group":448,"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"]},"33736":{"ascendancyName":"Pathfinder","connections":[{"id":61991,"orbit":0}],"group":1513,"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"]},"33751":{"connections":[{"id":12451,"orbit":7}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":18,"skill":33751,"stats":["5% increased Cooldown Recovery Rate"]},"33781":{"connections":[{"id":65493,"orbit":2}],"group":541,"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"]},"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":[]},"33815":{"connections":[{"id":35644,"orbit":6}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":5,"skill":33815,"stats":["10% increased Poison Duration"]},"33823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":33823,"stats":[]},"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"]},"33829":{"connections":[{"id":18737,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":33829,"stats":["10% increased Critical Hit Chance"]},"33830":{"connections":[{"id":35031,"orbit":-2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":5,"skill":33830,"stats":["10% increased Life Regeneration rate"]},"33838":{"connections":[{"id":46182,"orbit":-4}],"group":1134,"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"]},"33848":{"connections":[{"id":47677,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":4,"orbitIndex":51,"skill":33848,"stats":["8% increased Projectile Speed"]},"33866":{"connections":[{"id":49220,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":33866,"stats":["8% increased Attack Damage"]},"33887":{"connections":[{"id":61432,"orbit":0}],"group":919,"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"]},"33922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":6950,"orbit":0}],"group":886,"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%"]},"33939":{"connections":[{"id":62034,"orbit":0}],"group":144,"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"]},"33946":{"connections":[{"id":34074,"orbit":0},{"id":57227,"orbit":0}],"group":1038,"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"]},"33964":{"connections":[{"id":64295,"orbit":0}],"group":1418,"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"]},"33974":{"connections":[{"id":31189,"orbit":0}],"group":839,"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"]},"33978":{"connections":[{"id":31609,"orbit":7},{"id":62581,"orbit":0}],"group":456,"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"]},"33979":{"connections":[],"flavourText":"To me, brave companions! Feel my radiance flow through you!","group":1126,"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"]},"34006":{"connections":[{"id":15408,"orbit":3}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":19,"skill":34006,"stats":["15% increased maximum Energy Shield"]},"34015":{"connections":[{"id":22927,"orbit":0},{"id":59083,"orbit":0},{"id":14882,"orbit":0},{"id":10472,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34030":{"connections":[{"id":47441,"orbit":0},{"id":13634,"orbit":0},{"id":42614,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":0,"orbitIndex":0,"skill":34030,"stats":["Offerings have 15% increased Maximum Life"]},"34058":{"connections":[{"id":59376,"orbit":-6},{"id":4456,"orbit":0}],"group":700,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34061":{"connections":[{"id":52442,"orbit":5},{"id":38057,"orbit":0}],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":55,"skill":34061,"stats":["12% increased Armour and Evasion Rating"]},"34074":{"connections":[{"id":23259,"orbit":4}],"group":1038,"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"]},"34076":{"connections":[{"id":37244,"orbit":3}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Recovery","orbit":7,"orbitIndex":12,"skill":34076,"stats":["25% increased Block Recovery"]},"34081":{"ascendancyName":"Martial Artist","connections":[{"id":19370,"orbit":9}],"group":1510,"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"]},"34084":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":622,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":4,"skill":34084,"stats":[]},"34090":{"connections":[{"id":14655,"orbit":7},{"id":64870,"orbit":-7}],"group":368,"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"]},"34096":{"connections":[{"id":58096,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":3,"orbitIndex":23,"skill":34096,"stats":["12% increased Spell Damage"]},"34136":{"connections":[{"id":29479,"orbit":-5}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"34143":{"connectionArt":"CharacterPlanned","connections":[{"id":36408,"orbit":0}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34168":{"connections":[{"id":16123,"orbit":0},{"id":4157,"orbit":0},{"id":55088,"orbit":0}],"group":977,"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"]},"34181":{"connectionArt":"CharacterPlanned","connections":[{"id":45422,"orbit":0}],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34187":{"connections":[{"id":7128,"orbit":-5}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":60,"skill":34187,"stats":["12% increased Damage with Plant Skills"]},"34199":{"connections":[],"group":769,"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"]},"34201":{"connections":[{"id":24922,"orbit":0},{"id":46882,"orbit":0},{"id":17316,"orbit":0}],"group":1145,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34202":{"connections":[{"id":49285,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":34202,"stats":["+8 to Strength"]},"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":611,"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"]},"34210":{"connections":[{"id":54811,"orbit":0},{"id":64939,"orbit":0}],"group":400,"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"]},"34233":{"connections":[{"id":16123,"orbit":0},{"id":32545,"orbit":0}],"group":983,"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"]},"34248":{"connections":[{"id":37327,"orbit":7}],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":34248,"stats":["10% increased Mana Regeneration Rate"]},"34290":{"connections":[{"id":57832,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":4,"skill":34290,"stats":["10% increased Ignite Magnitude"]},"34300":{"connections":[{"id":45481,"orbit":0},{"id":13862,"orbit":0}],"group":1110,"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"]},"34305":{"connections":[{"id":31545,"orbit":0}],"group":215,"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"]},"34308":{"connections":[{"id":37414,"orbit":0},{"id":10245,"orbit":0}],"group":458,"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"]},"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"]},"34316":{"connections":[],"group":1462,"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"]},"34317":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":260,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":34317,"stats":[]},"34324":{"connections":[{"id":56838,"orbit":-5},{"id":52445,"orbit":0}],"group":1316,"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"]},"34327":{"connections":[{"id":32078,"orbit":0}],"group":403,"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"]},"34340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":17294,"orbit":0}],"group":691,"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"]},"34367":{"connections":[{"id":48774,"orbit":3}],"group":810,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":34367,"stats":["3% of Damage taken Recouped as Life"]},"34375":{"connections":[{"id":48745,"orbit":-2}],"group":460,"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"]},"34401":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":34401,"stats":[]},"34412":{"connections":[{"id":25915,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":7,"skill":34412,"stats":["12% increased Damage while Shapeshifted"]},"34415":{"connections":[{"id":55422,"orbit":4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":4,"orbitIndex":61,"skill":34415,"stats":["12% increased Physical Damage"]},"34419":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"34425":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":47021,"orbit":2}],"group":1438,"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"]},"34433":{"connections":[{"id":32354,"orbit":7}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":9,"skill":34433,"stats":["12% increased Armour and Evasion Rating"]},"34443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":203,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":34443,"stats":[]},"34449":{"connections":[{"id":37688,"orbit":0}],"group":1418,"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"]},"34473":{"connections":[{"id":42361,"orbit":0}],"group":1266,"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"]},"34478":{"connections":[{"id":43064,"orbit":0},{"id":56701,"orbit":0}],"group":1402,"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"]},"34487":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":526,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":34487,"stats":[]},"34490":{"connectionArt":"CharacterPlanned","connections":[{"id":18972,"orbit":0}],"group":155,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34493":{"connections":[{"id":65328,"orbit":0},{"id":54964,"orbit":0},{"id":49593,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":9,"skill":34493,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"34497":{"connections":[],"flavourText":"Skip a beat, hold your breath. Too slow a poison, only death.","group":1321,"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"]},"34501":{"ascendancyName":"Witchhunter","connections":[{"id":6935,"orbit":0}],"group":277,"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"]},"34520":{"connections":[{"id":55575,"orbit":0},{"id":14548,"orbit":4},{"id":63545,"orbit":-4}],"group":970,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":15,"skill":34520,"stats":["10% increased Physical Damage"]},"34531":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"34541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":63762,"orbit":0}],"group":1370,"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"]},"34543":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1175,"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"]},"34552":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":475,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":34552,"stats":[]},"34553":{"connections":[{"id":1220,"orbit":0}],"group":689,"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"]},"34567":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"34612":{"connections":[{"id":60764,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":16,"skill":34612,"stats":["12% increased Damage with Bows"]},"34617":{"connections":[],"group":363,"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"]},"34621":{"connections":[{"id":38541,"orbit":0}],"group":1182,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":34621,"stats":["15% increased Critical Damage Bonus"]},"34623":{"connections":[{"id":14769,"orbit":0},{"id":14262,"orbit":0}],"group":1436,"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"]},"34626":{"connections":[{"id":61142,"orbit":0},{"id":4527,"orbit":0}],"group":207,"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"]},"34671":{"connections":[{"id":24477,"orbit":0},{"id":48418,"orbit":0}],"group":570,"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"]},"34702":{"connections":[{"id":55664,"orbit":-4},{"id":63246,"orbit":-4},{"id":16568,"orbit":-7}],"group":1339,"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"]},"34717":{"connections":[{"id":24120,"orbit":4}],"group":1297,"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"]},"34747":{"connections":[{"id":6274,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":23,"skill":34747,"stats":["8% increased Accuracy Rating"]},"34769":{"connectionArt":"CharacterPlanned","connections":[{"id":52115,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34782":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":155,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":7,"orbitIndex":0,"skill":34782,"stats":[]},"34785":{"ascendancyName":"Ritualist","connections":[{"id":58574,"orbit":-9},{"id":42017,"orbit":0},{"id":17058,"orbit":9}],"group":1558,"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"]},"34813":{"connections":[{"id":7218,"orbit":0},{"id":62505,"orbit":0},{"id":472,"orbit":0},{"id":2847,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":4,"orbitIndex":60,"skill":34813,"stats":["+3 to all Attributes"]},"34817":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"34818":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":1,"skill":34818,"stats":["+5% to Fire Resistance"]},"34840":{"connections":[{"id":1433,"orbit":0},{"id":27674,"orbit":0},{"id":48618,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34845":{"connections":[{"id":60273,"orbit":0}],"group":1259,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":34845,"stats":["10% increased Hazard Area of Effect"]},"34853":{"connections":[{"id":25458,"orbit":-2},{"id":43044,"orbit":0}],"group":1238,"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"]},"34866":{"connections":[{"id":40985,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":2,"skill":34866,"stats":["Remnants you create have 10% increased effect"]},"34871":{"connections":[{"id":52764,"orbit":2}],"group":186,"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"]},"34882":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":11641,"orbit":2147483647}],"group":428,"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"]},"34892":{"connections":[{"id":12066,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":11,"skill":34892,"stats":["Aura Skills have 5% increased Magnitudes"]},"34898":{"connections":[{"id":38463,"orbit":0}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":5,"orbitIndex":31,"skill":34898,"stats":["Debuffs on you expire 10% faster"]},"34908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Staunch Deflection","orbit":3,"orbitIndex":23,"recipe":["Guilt","Despair","Fear"],"skill":34908,"stats":["Deflected Hits cannot inflict Maim on you","Deflected Hits cannot inflict Bleeding on you"]},"34912":{"connections":[{"id":4664,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":45,"skill":34912,"stats":["10% increased Trap Damage"]},"34927":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":718,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":34927,"stats":[]},"34940":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connectionArt":"CharacterPlanned","connections":[],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34968":{"connections":[{"id":64637,"orbit":0}],"group":1433,"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"]},"34984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":989,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":34984,"stats":[]},"34990":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35011":{"connections":[{"id":10305,"orbit":0}],"group":426,"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"]},"35015":{"connections":[{"id":6655,"orbit":0}],"group":688,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":35015,"stats":["10% increased Magnitude of Bleeding you inflict"]},"35028":{"connections":[{"id":51974,"orbit":0}],"group":751,"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"]},"35031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1479,"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"]},"35033":{"ascendancyName":"Amazon","connections":[{"id":55796,"orbit":0}],"group":1547,"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"]},"35043":{"connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":4,"orbitIndex":36,"skill":35043,"stats":["10% increased Parried Debuff Magnitude"]},"35046":{"connections":[],"group":862,"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"]},"35048":{"connections":[{"id":43650,"orbit":0}],"group":228,"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"]},"35058":{"connections":[{"id":64650,"orbit":0}],"group":1138,"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"]},"35085":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":218,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":35085,"stats":[]},"35095":{"connections":[{"id":41886,"orbit":2}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage","orbit":2,"orbitIndex":20,"skill":35095,"stats":["10% increased Chaos Damage"]},"35118":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":981,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":35118,"stats":[]},"35151":{"connections":[{"id":44453,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":7,"orbitIndex":23,"skill":35151,"stats":["15% increased Stun Threshold"]},"35171":{"connections":[{"id":18846,"orbit":0}],"group":394,"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"]},"35173":{"connections":[{"id":1599,"orbit":0}],"group":1348,"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"]},"35187":{"ascendancyName":"Amazon","connections":[],"group":1532,"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"]},"35223":{"connections":[{"id":55680,"orbit":0},{"id":9227,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":3,"orbitIndex":4,"skill":35223,"stats":["3% increased Attack Speed with Spears"]},"35234":{"connections":[{"id":35660,"orbit":0},{"id":6789,"orbit":0},{"id":56651,"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":14623,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":7,"orbitIndex":19,"skill":35234,"stats":["10% increased Projectile Damage"]},"35265":{"connections":[{"id":31903,"orbit":0},{"id":48589,"orbit":0},{"id":18374,"orbit":0},{"id":6274,"orbit":0}],"group":533,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"35284":{"connections":[{"id":31898,"orbit":-2},{"id":64471,"orbit":-7}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":3,"skill":35284,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"35324":{"connections":[{"id":34927,"orbit":0},{"id":34290,"orbit":4}],"group":718,"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"]},"35369":{"connections":[{"id":1459,"orbit":0}],"group":242,"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"]},"35380":{"connections":[{"id":44373,"orbit":-2}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":2,"orbitIndex":20,"skill":35380,"stats":["10% increased Withered Magnitude"]},"35393":{"connectionArt":"CharacterPlanned","connections":[{"id":23708,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35404":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":7,"orbitIndex":2,"skill":35404,"stats":["+5% to Cold Resistance"]},"35408":{"connections":[{"id":24767,"orbit":7},{"id":23382,"orbit":0}],"group":331,"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"]},"35417":{"connections":[{"id":28770,"orbit":3},{"id":23879,"orbit":0}],"group":354,"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"]},"35426":{"connections":[{"id":8406,"orbit":6}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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"]},"35477":{"connections":[{"id":10277,"orbit":0}],"group":1310,"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"]},"35492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":769,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":21,"skill":35492,"stats":[]},"35503":{"connections":[{"id":23764,"orbit":0}],"group":982,"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"]},"35534":{"connections":[{"id":44280,"orbit":-3}],"group":1357,"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"]},"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":[]},"35560":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":577,"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"]},"35564":{"connections":[{"id":18121,"orbit":0},{"id":65310,"orbit":0}],"group":1191,"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"]},"35581":{"connections":[{"id":26895,"orbit":0}],"group":514,"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"]},"35594":{"connections":[],"group":990,"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"]},"35602":{"connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":12,"skill":35602,"stats":["Offerings have 30% reduced Maximum Life"]},"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"]},"35623":{"connections":[{"id":24736,"orbit":0}],"group":590,"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"]},"35644":{"connections":[{"id":45193,"orbit":6},{"id":65009,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":23,"skill":35644,"stats":["10% increased Magnitude of Poison you inflict"]},"35645":{"connections":[],"group":510,"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"]},"35653":{"connections":[{"id":35653,"orbit":0},{"id":65468,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":0,"orbitIndex":0,"skill":35653,"stats":["12% increased Grenade Damage"]},"35660":{"connections":[{"id":18548,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":13,"skill":35660,"stats":["3% increased Attack Speed"]},"35671":{"connections":[{"id":31172,"orbit":3}],"group":1303,"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"]},"35688":{"connections":[{"id":16618,"orbit":0}],"group":795,"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"]},"35689":{"connections":[{"id":34543,"orbit":2}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":2,"orbitIndex":14,"skill":35689,"stats":["10% increased Damage"]},"35696":{"connections":[{"id":24070,"orbit":0},{"id":64064,"orbit":0},{"id":1020,"orbit":0},{"id":10267,"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":35696,"stats":["+5 to any Attribute"]},"35708":{"connections":[{"id":2863,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":2,"skill":35708,"stats":["12% increased Magnitude of Chill you inflict"]},"35720":{"connectionArt":"CharacterPlanned","connections":[{"id":7258,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35739":{"connections":[{"id":42410,"orbit":3},{"id":8556,"orbit":0}],"group":684,"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"]},"35743":{"connections":[{"id":60116,"orbit":0}],"group":868,"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"]},"35745":{"connectionArt":"CharacterPlanned","connections":[],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35755":{"connections":[{"id":54058,"orbit":0}],"group":1477,"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"]},"35760":{"connections":[{"id":22359,"orbit":6}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":35760,"stats":["10% increased Elemental Damage"]},"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"]},"35787":{"connections":[{"id":42813,"orbit":7}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":1,"orbitIndex":0,"skill":35787,"stats":["10% increased Skill Effect Duration"]},"35792":{"connections":[],"group":285,"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"]},"35801":{"ascendancyName":"Deadeye","connections":[{"id":23508,"orbit":0}],"group":1512,"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"]},"35809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1206,"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"]},"35831":{"connections":[{"id":904,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":9,"skill":35831,"stats":["10% increased Mana Regeneration Rate"]},"35848":{"connections":[],"group":972,"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"]},"35849":{"connections":[],"group":248,"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"]},"35855":{"connections":[{"id":48583,"orbit":0},{"id":35859,"orbit":0}],"group":896,"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"]},"35859":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":896,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":35859,"stats":[]},"35863":{"connections":[{"id":51732,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":35863,"stats":["3% increased Attack Speed"]},"35876":{"connections":[{"id":53194,"orbit":4},{"id":35977,"orbit":0},{"id":27540,"orbit":0}],"group":343,"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"]},"35878":{"connections":[{"id":50884,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":11,"skill":35878,"stats":["12% increased Elemental Damage with Attacks"]},"35880":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"35896":{"connections":[{"id":55668,"orbit":0},{"id":53266,"orbit":0},{"id":17672,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"35901":{"connections":[{"id":12120,"orbit":-6},{"id":62464,"orbit":6},{"id":60735,"orbit":0},{"id":6951,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"35918":{"connections":[{"id":52038,"orbit":0}],"group":541,"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"]},"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"]},"35921":{"connections":[{"id":5642,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":35921,"stats":["6% increased Area of Effect for Attacks"]},"35966":{"connections":[{"id":44316,"orbit":2147483647}],"group":271,"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"]},"35974":{"connections":[{"id":51105,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":22,"skill":35974,"stats":["16% increased Totem Life"]},"35977":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":35977,"stats":[]},"35980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":89,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":35980,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35985":{"connections":[],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":5,"orbitIndex":18,"skill":35985,"stats":["10% increased Melee Damage"]},"35987":{"connections":[{"id":32274,"orbit":0},{"id":19470,"orbit":0},{"id":55397,"orbit":0}],"group":908,"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"]},"36025":{"connectionArt":"CharacterPlanned","connections":[{"id":44309,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36027":{"connections":[{"id":18073,"orbit":2}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":36027,"stats":["12% increased Attack Damage"]},"36070":{"connections":[{"id":14045,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":45,"skill":36070,"stats":["6% increased Area of Effect for Attacks"]},"36071":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern","connections":[],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"name":"Spear Mastery","orbit":5,"orbitIndex":12,"skill":36071,"stats":[]},"36085":{"connections":[{"id":37548,"orbit":0},{"id":15270,"orbit":0}],"group":1403,"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"]},"36100":{"connections":[{"id":34782,"orbit":0}],"group":157,"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"]},"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":611,"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"]},"36114":{"connections":[{"id":23360,"orbit":0}],"group":1104,"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"]},"36163":{"connections":[{"id":30390,"orbit":-4}],"group":456,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":2,"orbitIndex":9,"skill":36163,"stats":["5% increased Block chance"]},"36169":{"connections":[{"id":29514,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":23,"skill":36169,"stats":["10% increased Grenade Area of Effect"]},"36170":{"connections":[{"id":53853,"orbit":-3},{"id":7628,"orbit":-4}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":13,"skill":36170,"stats":["12% increased Armour and Evasion Rating"]},"36191":{"connections":[{"id":40325,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":21,"skill":36191,"stats":["12% increased Stun Threshold"]},"36197":{"connectionArt":"CharacterPlanned","connections":[{"id":27096,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36217":{"connections":[],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":2,"skill":36217,"stats":["15% increased Volatility Explosion delay"]},"36231":{"connections":[{"id":3336,"orbit":0},{"id":31765,"orbit":0}],"group":1408,"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"]},"36250":{"connections":[{"id":56368,"orbit":-7},{"id":49214,"orbit":3},{"id":55897,"orbit":3}],"group":123,"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"]},"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":360,"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":[]},"36270":{"connections":[{"id":5009,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":3,"orbitIndex":1,"skill":36270,"stats":["5% chance to Daze on Hit"]},"36286":{"connections":[{"id":41130,"orbit":0},{"id":14033,"orbit":0},{"id":34058,"orbit":0}],"group":689,"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"]},"36290":{"connections":[{"id":23046,"orbit":-2}],"group":1294,"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"]},"36293":{"connections":[{"id":27785,"orbit":0},{"id":55708,"orbit":0}],"group":879,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":36293,"stats":["Damage Penetrates 6% Lightning Resistance"]},"36298":{"connections":[{"id":8510,"orbit":3},{"id":40918,"orbit":6}],"group":1116,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect","orbit":0,"orbitIndex":0,"skill":36298,"stats":["10% increased Magnitude of Ailments you inflict"]},"36302":{"connections":[{"id":47307,"orbit":6}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Practiced Signs","orbit":7,"orbitIndex":0,"skill":36302,"stats":["6% increased Cast Speed"]},"36325":{"connections":[{"id":54148,"orbit":-5}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":4,"orbitIndex":71,"skill":36325,"stats":["Damage Penetrates 6% Fire Resistance"]},"36333":{"connections":[{"id":62360,"orbit":0},{"id":49259,"orbit":0}],"group":227,"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"]},"36341":{"connections":[{"id":35118,"orbit":0}],"group":981,"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"]},"36358":{"connections":[{"id":12367,"orbit":0}],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":36358,"stats":["7% increased Chaos Damage"]},"36364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1406,"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"]},"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":1565,"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":[]},"36379":{"connections":[{"id":25026,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":58,"skill":36379,"stats":["10% increased Mana Regeneration Rate"]},"36389":{"connections":[{"id":53989,"orbit":8}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":8,"orbitIndex":59,"skill":36389,"stats":["Gain 1 Rage on Melee Hit"]},"36408":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36449":{"connections":[{"id":8115,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":6,"skill":36449,"stats":["15% increased Pin Buildup"]},"36450":{"connections":[{"id":11838,"orbit":-4}],"group":1072,"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"]},"36474":{"connections":[{"id":31925,"orbit":3}],"group":352,"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"]},"36478":{"connections":[{"id":43014,"orbit":2147483647},{"id":48714,"orbit":2147483647}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":36478,"stats":["10% increased Attack Damage"]},"36479":{"connections":[{"id":12925,"orbit":0}],"group":979,"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"]},"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"]},"36507":{"connections":[{"id":60313,"orbit":0}],"group":711,"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"]},"36522":{"connections":[{"id":3999,"orbit":0},{"id":54099,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":33,"skill":36522,"stats":["6% increased Area of Effect for Attacks"]},"36540":{"connections":[{"id":56988,"orbit":0}],"group":1381,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Resistance","orbit":0,"orbitIndex":0,"skill":36540,"stats":["+5% to Lightning Resistance"]},"36556":{"connections":[{"id":1502,"orbit":0}],"group":269,"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"]},"36564":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"36576":{"connections":[{"id":25055,"orbit":-3},{"id":54984,"orbit":0}],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":14,"skill":36576,"stats":["10% increased Attack Damage"]},"36596":{"connections":[{"id":45013,"orbit":-3},{"id":56118,"orbit":-5}],"group":891,"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"]},"36602":{"connections":[{"id":18465,"orbit":0}],"group":567,"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"]},"36623":{"connections":[{"id":10729,"orbit":0},{"id":31630,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Convalescence","orbit":2,"orbitIndex":3,"recipe":["Disgust","Suffering","Greed"],"skill":36623,"stats":["10% reduced Energy Shield Recharge Rate","20% faster start of Energy Shield Recharge"]},"36629":{"connections":[{"id":44659,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"36630":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[{"id":49473,"orbit":0}],"group":1042,"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"]},"36639":{"connections":[{"id":62677,"orbit":-6},{"id":32009,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":22,"skill":36639,"stats":["20% increased Curse Duration"]},"36643":{"ascendancyName":"Martial Artist","connections":[{"id":1739,"orbit":9}],"group":1510,"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"]},"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"]},"36676":{"ascendancyName":"Pathfinder","connections":[{"id":46454,"orbit":0}],"group":1528,"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"]},"36677":{"connections":[{"id":9240,"orbit":0},{"id":36071,"orbit":0},{"id":9227,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":0,"orbitIndex":0,"skill":36677,"stats":["10% increased Damage with Spears"]},"36696":{"ascendancyName":"Lich","connections":[{"id":28431,"orbit":4}],"group":1173,"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"]},"36709":{"connections":[],"group":655,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":6,"skill":36709,"stats":["12% increased Stun Threshold"]},"36723":{"connections":[{"id":3700,"orbit":0}],"group":1276,"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"]},"36728":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":534,"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"]},"36737":{"connections":[{"id":7542,"orbit":-2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":0,"skill":36737,"stats":["10% increased Area Damage"]},"36746":{"connections":[{"id":40691,"orbit":-3}],"group":793,"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"]},"36759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1184,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":36759,"stats":[]},"36778":{"connections":[{"id":36479,"orbit":0}],"group":979,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":58,"skill":36778,"stats":["15% increased chance to Shock"]},"36782":{"connections":[{"id":1151,"orbit":0}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":12,"skill":36782,"stats":["15% increased Freeze Buildup"]},"36788":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":25781,"orbit":0}],"group":1533,"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"]},"36808":{"connections":[{"id":34076,"orbit":3},{"id":37795,"orbit":0}],"group":1197,"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"]},"36814":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":6,"skill":36814,"stats":["20% increased Curse Duration"]},"36822":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":58591,"orbit":0}],"group":543,"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"]},"36880":{"connections":[{"id":43036,"orbit":3}],"group":431,"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"]},"36891":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56783,"orbit":9}],"group":611,"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"]},"36894":{"connections":[{"id":61938,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":20,"skill":36894,"stats":["5% chance to inflict Bleeding on Hit"]},"36927":{"connections":[{"id":44756,"orbit":5}],"group":1338,"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"]},"36931":{"connections":[],"group":1075,"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"]},"36976":{"connections":[],"group":1338,"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"]},"36994":{"connections":[{"id":27491,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":12,"skill":36994,"stats":["15% increased maximum Energy Shield"]},"36997":{"connections":[{"id":27761,"orbit":0}],"group":1055,"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"]},"37026":{"connections":[{"id":27513,"orbit":0}],"group":1421,"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"]},"37046":{"ascendancyName":"Ritualist","connections":[],"group":1568,"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"]},"37078":{"ascendancyName":"Witchhunter","connections":[],"group":345,"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"]},"37092":{"connections":[{"id":55817,"orbit":0}],"group":665,"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"]},"37164":{"connections":[{"id":419,"orbit":2147483647}],"group":1171,"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"]},"37187":{"connections":[{"id":14026,"orbit":-4},{"id":63085,"orbit":5}],"group":147,"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"]},"37190":{"connections":[{"id":35855,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":7,"skill":37190,"stats":["8% increased amount of Life Leeched"]},"37220":{"connections":[{"id":17955,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":9,"skill":37220,"stats":["15% increased Evasion Rating"]},"37226":{"connections":[{"id":4015,"orbit":2},{"id":9187,"orbit":-6}],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":4,"skill":37226,"stats":["16% increased Warcry Speed"]},"37242":{"connections":[{"id":16871,"orbit":2},{"id":54031,"orbit":0}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":14,"skill":37242,"stats":["12% increased Stun Threshold"]},"37244":{"connections":[{"id":33445,"orbit":3},{"id":37795,"orbit":0}],"group":1197,"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"]},"37250":{"connections":[{"id":1420,"orbit":0}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":2,"orbitIndex":16,"skill":37250,"stats":["10% increased Attack Area Damage"]},"37258":{"connections":[{"id":31903,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"37260":{"connections":[{"id":30395,"orbit":2}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":13,"skill":37260,"stats":["16% increased Warcry Speed"]},"37266":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":29930,"orbit":0}],"group":1040,"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"]},"37276":{"connections":[{"id":33244,"orbit":0}],"group":376,"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"]},"37279":{"connections":[{"id":41159,"orbit":0}],"group":840,"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"]},"37290":{"connections":[{"id":28892,"orbit":0}],"group":180,"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"]},"37302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"37304":{"connections":[{"id":336,"orbit":4},{"id":61921,"orbit":-4},{"id":64543,"orbit":0}],"group":1305,"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"]},"37327":{"connections":[],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":37327,"stats":["10% increased Mana Regeneration Rate"]},"37336":{"ascendancyName":"Deadeye","connections":[{"id":35801,"orbit":0}],"group":1514,"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"]},"37361":{"connections":[{"id":40043,"orbit":2147483647}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":37361,"stats":["10% increased Magnitude of Bleeding you inflict"]},"37372":{"connections":[{"id":13738,"orbit":0}],"group":993,"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"]},"37389":{"connections":[{"id":37644,"orbit":0},{"id":28061,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":37389,"stats":["10% increased Attack Damage"]},"37397":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":372,"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"]},"37408":{"connections":[{"id":31855,"orbit":7},{"id":46761,"orbit":0}],"group":1082,"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"]},"37414":{"connections":[{"id":65193,"orbit":0}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":37414,"stats":["10% increased Accuracy Rating"]},"37434":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":964,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":10,"skill":37434,"stats":[]},"37450":{"connections":[],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":46,"skill":37450,"stats":["10% increased chance to inflict Ailments"]},"37484":{"connections":[],"flavourText":"The irrepressible spirit of the wilds burns within you, roaring to be let loose.","group":134,"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"]},"37509":{"connections":[{"id":57921,"orbit":-2}],"group":354,"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"]},"37514":{"connections":[{"id":32442,"orbit":0},{"id":64700,"orbit":0}],"group":1462,"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"]},"37519":{"connections":[{"id":17045,"orbit":0}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":7,"orbitIndex":14,"skill":37519,"stats":["2% increased Movement Speed"]},"37523":{"ascendancyName":"Tactician","connections":[{"id":24696,"orbit":0}],"group":430,"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"]},"37532":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":37532,"stats":[]},"37543":{"connections":[{"id":16647,"orbit":0}],"group":545,"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"]},"37548":{"connections":[{"id":37742,"orbit":0},{"id":17589,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":5,"skill":37548,"stats":["10% increased amount of Mana Leeched"]},"37568":{"connections":[{"id":45370,"orbit":0}],"group":1238,"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"]},"37593":{"connections":[],"group":849,"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"]},"37594":{"connections":[{"id":8983,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":5,"orbitIndex":38,"skill":37594,"stats":["Minions deal 12% increased Damage"]},"37604":{"ascendancyName":"Martial Artist","connections":[{"id":51546,"orbit":9}],"group":1510,"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"]},"37608":{"connections":[{"id":53524,"orbit":0},{"id":61042,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":4,"orbitIndex":51,"skill":37608,"stats":["10% increased Physical Damage"]},"37609":{"connections":[{"id":21213,"orbit":0},{"id":60332,"orbit":0}],"group":159,"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"]},"37612":{"connections":[{"id":13279,"orbit":0},{"id":17532,"orbit":0},{"id":60191,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"37616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":5,"orbitIndex":45,"skill":37616,"stats":[]},"37629":{"connections":[{"id":55933,"orbit":0},{"id":41338,"orbit":-7},{"id":8248,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"37641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":273,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":37641,"stats":[]},"37644":{"connections":[{"id":46874,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":0,"skill":37644,"stats":["12% increased Attack Physical Damage"]},"37665":{"connections":[{"id":35739,"orbit":3}],"group":684,"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"]},"37688":{"connections":[{"id":37616,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Devestating Devices","orbit":6,"orbitIndex":36,"skill":37688,"stats":["25% increased Trap Damage"]},"37691":{"connections":[{"id":42750,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":13,"skill":37691,"stats":["10% increased Attack Damage"]},"37694":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37695":{"connections":[{"id":11813,"orbit":-5}],"group":1157,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":37695,"stats":["15% increased Evasion Rating"]},"37742":{"connections":[{"id":15270,"orbit":0},{"id":8246,"orbit":0}],"group":1403,"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"]},"37746":{"connections":[{"id":6544,"orbit":-2}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":19,"skill":37746,"stats":["30% increased Flammability Magnitude"]},"37767":{"connections":[{"id":9020,"orbit":0},{"id":6596,"orbit":0},{"id":63731,"orbit":0}],"group":981,"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"]},"37769":{"ascendancyName":"Spirit Walker","connections":[{"id":62743,"orbit":0}],"group":1542,"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"]},"37778":{"connectionArt":"CharacterPlanned","connections":[{"id":24929,"orbit":0},{"id":13108,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37780":{"connections":[{"id":7888,"orbit":0}],"group":1446,"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"]},"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"]},"37795":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":37795,"stats":[]},"37806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1012,"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"]},"37813":{"connections":[{"id":14724,"orbit":0},{"id":50701,"orbit":0}],"group":1313,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":37813,"stats":["20% increased Shock Duration"]},"37846":{"connections":[],"group":171,"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"]},"37869":{"connections":[{"id":60068,"orbit":-2},{"id":21413,"orbit":0}],"group":180,"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"]},"37872":{"connections":[{"id":28863,"orbit":0}],"group":839,"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"]},"37876":{"connections":[{"id":52615,"orbit":3},{"id":25729,"orbit":-3}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":4,"orbitIndex":45,"skill":37876,"stats":["10% increased Spell Damage"]},"37888":{"connectionArt":"CharacterPlanned","connections":[{"id":29663,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37905":{"connections":[],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":3,"orbitIndex":2,"skill":37905,"stats":["30% increased Flammability Magnitude"]},"37946":{"connections":[],"group":1167,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Stun Buildup","orbit":0,"orbitIndex":0,"skill":37946,"stats":["20% increased Projectile Stun Buildup"]},"37951":{"connections":[{"id":41020,"orbit":0},{"id":9089,"orbit":0}],"group":1358,"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"]},"37956":{"connections":[{"id":35581,"orbit":3}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":37956,"stats":["8% reduced Skill Effect Duration"]},"37963":{"connections":[],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":13,"skill":37963,"stats":["10% increased Damage with Swords"]},"37967":{"connections":[],"group":617,"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"]},"37971":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":37971,"stats":[]},"37972":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":-4},{"id":18280,"orbit":5}],"group":1564,"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"]},"37974":{"connections":[{"id":62230,"orbit":0}],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":68,"skill":37974,"stats":["15% increased maximum Energy Shield"]},"37991":{"connections":[{"id":52254,"orbit":0}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":18,"skill":37991,"stats":["6% increased Curse Magnitudes"]},"38003":{"connections":[{"id":63526,"orbit":4}],"group":792,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":20,"skill":38003,"stats":["12% increased Stun Threshold"]},"38004":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1515,"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"]},"38010":{"connections":[],"group":508,"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"]},"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"]},"38044":{"connections":[{"id":37695,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":38044,"stats":["15% increased Evasion Rating"]},"38053":{"connections":[{"id":28564,"orbit":5},{"id":8460,"orbit":0},{"id":9528,"orbit":-2}],"group":193,"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"]},"38057":{"connections":[],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":58,"skill":38057,"stats":["12% increased Armour and Evasion Rating"]},"38066":{"connections":[{"id":25300,"orbit":0}],"group":209,"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"]},"38068":{"connections":[],"group":739,"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"]},"38069":{"connections":[{"id":338,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":0,"skill":38069,"stats":["Meta Skills gain 8% increased Energy"]},"38103":{"connections":[{"id":6898,"orbit":-8}],"group":622,"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"]},"38105":{"connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":67,"skill":38105,"stats":["15% increased maximum Energy Shield"]},"38111":{"connections":[{"id":32241,"orbit":0}],"group":1214,"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"]},"38124":{"connections":[{"id":51820,"orbit":8}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":26,"skill":38124,"stats":["15% increased Totem Damage"]},"38130":{"connections":[],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":12,"skill":38130,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"38138":{"connections":[{"id":35688,"orbit":0}],"group":795,"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"]},"38143":{"connections":[],"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":2,"orbitIndex":18,"skill":38143,"stats":["+5 to any Attribute"]},"38172":{"connections":[{"id":60568,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":5,"skill":38172,"stats":["20% increased Totem Placement speed"]},"38212":{"connections":[{"id":57683,"orbit":0}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":38212,"stats":["3% of Damage taken Recouped as Life"]},"38215":{"connections":[{"id":61921,"orbit":-3}],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":4,"skill":38215,"stats":["Damage Penetrates 6% Lightning Resistance"]},"38235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":570,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":38235,"stats":[]},"38270":{"connections":[{"id":23724,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":38270,"stats":["10% increased Lightning Damage"]},"38292":{"connections":[{"id":33397,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":15,"skill":38292,"stats":["30% increased Flammability Magnitude"]},"38300":{"connections":[{"id":39716,"orbit":-7},{"id":57373,"orbit":-7}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":38300,"stats":["30% increased Flammability Magnitude"]},"38313":{"connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Speed","orbit":2,"orbitIndex":16,"skill":38313,"stats":["10% increased Projectile Speed"]},"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":[]},"38323":{"connections":[{"id":6015,"orbit":-6},{"id":22928,"orbit":-5}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38329":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1350,"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"]},"38338":{"connections":[{"id":5257,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":60,"skill":38338,"stats":["10% increased Elemental Damage"]},"38342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1450,"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"]},"38365":{"connections":[{"id":34626,"orbit":0},{"id":46499,"orbit":0}],"group":207,"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"]},"38368":{"connections":[{"id":35966,"orbit":-2},{"id":4091,"orbit":2}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":38368,"stats":["3% of Damage taken Recouped as Life"]},"38369":{"connections":[{"id":18910,"orbit":0}],"group":1386,"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"]},"38398":{"connections":[{"id":2211,"orbit":7}],"group":555,"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"]},"38420":{"connections":[{"id":37543,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":20,"skill":38420,"stats":["10% increased Mana Regeneration Rate"]},"38430":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[{"id":10499,"orbit":0}],"group":657,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":38430,"stats":[]},"38433":{"connections":[{"id":55375,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":17,"skill":38433,"stats":["Minions have 10% increased maximum Life"]},"38459":{"connections":[{"id":38568,"orbit":0}],"group":1084,"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"]},"38463":{"connections":[{"id":46882,"orbit":0},{"id":21111,"orbit":-6},{"id":43522,"orbit":5},{"id":22329,"orbit":0}],"group":1260,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38474":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connectionArt":"CharacterPlanned","connections":[],"group":530,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleed Mastery","orbit":7,"orbitIndex":13,"skill":38474,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38479":{"connections":[{"id":17553,"orbit":-5}],"group":920,"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"]},"38493":{"connections":[{"id":55621,"orbit":4}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":45,"skill":38493,"stats":["15% increased Critical Damage Bonus"]},"38497":{"connections":[{"id":62803,"orbit":-5}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":19,"skill":38497,"stats":["6% reduced Charm Charges used"]},"38501":{"connections":[{"id":47796,"orbit":-4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":40,"skill":38501,"stats":["3% increased Attack Speed"]},"38532":{"connections":[{"id":31779,"orbit":0}],"group":210,"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"]},"38535":{"connections":[{"id":61063,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"38537":{"connections":[{"id":54983,"orbit":-3},{"id":51583,"orbit":0}],"group":1485,"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"]},"38541":{"connections":[{"id":61601,"orbit":0}],"group":1193,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":38541,"stats":["10% increased Critical Hit Chance"]},"38564":{"connections":[{"id":20091,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":15,"skill":38564,"stats":["10% increased Damage with Swords"]},"38568":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":1,"orbitIndex":2,"skill":38568,"stats":[]},"38570":{"connections":[{"id":53895,"orbit":2},{"id":27992,"orbit":0}],"group":635,"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"]},"38578":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"38596":{"connections":[{"id":35408,"orbit":-3}],"group":310,"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"]},"38601":{"ascendancyName":"Witchhunter","connections":[{"id":34501,"orbit":0}],"group":277,"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"]},"38614":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":27662,"orbit":0},{"id":44201,"orbit":0}],"group":1011,"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"]},"38628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1484,"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%"]},"38646":{"connections":[{"id":23570,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":38646,"stats":["+20 to Armour"]},"38663":{"connections":[{"id":3516,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Critical Chance","orbit":7,"orbitIndex":6,"skill":38663,"stats":["10% increased Melee Critical Hit Chance"]},"38668":{"connections":[],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion","orbit":7,"orbitIndex":7,"skill":38668,"stats":["15% increased Evasion Rating"]},"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"]},"38676":{"connections":[{"id":27910,"orbit":-8},{"id":56045,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":6,"skill":38676,"stats":["10% increased Attack Damage"]},"38678":{"connections":[{"id":30463,"orbit":-7},{"id":60464,"orbit":-6}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":19,"skill":38678,"stats":["15% increased Elemental Ailment Threshold"]},"38694":{"connections":[{"id":22188,"orbit":-4}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":8,"skill":38694,"stats":["Herald Skills deal 20% increased Damage"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38703":{"connections":[{"id":8249,"orbit":0}],"group":1099,"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"]},"38707":{"connections":[{"id":49734,"orbit":0},{"id":28564,"orbit":0},{"id":11464,"orbit":0},{"id":3723,"orbit":0}],"group":211,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38728":{"connections":[{"id":14539,"orbit":5}],"group":1426,"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"]},"38732":{"connections":[{"id":17107,"orbit":-3}],"group":851,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38763":{"connections":[{"id":27859,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":16,"skill":38763,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"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"]},"38776":{"connections":[{"id":57816,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":38776,"stats":["+8 to Dexterity"]},"38779":{"connections":[{"id":44605,"orbit":5},{"id":44836,"orbit":0}],"group":788,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":8,"skill":38779,"stats":["12% increased Armour and Evasion Rating"]},"38814":{"connections":[{"id":19288,"orbit":0},{"id":62341,"orbit":0},{"id":11980,"orbit":0}],"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":0,"orbitIndex":0,"skill":38814,"stats":["+5 to any Attribute"]},"38827":{"connections":[{"id":1546,"orbit":7}],"group":632,"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"]},"38835":{"connections":[{"id":4091,"orbit":-7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":7,"orbitIndex":16,"skill":38835,"stats":["8% increased speed of Recoup Effects"]},"38856":{"connections":[{"id":49357,"orbit":0},{"id":2071,"orbit":0},{"id":21081,"orbit":5},{"id":56090,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"38876":{"connections":[{"id":61490,"orbit":0},{"id":31903,"orbit":0}],"group":450,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38878":{"connections":[{"id":34898,"orbit":-7}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":4,"orbitIndex":35,"skill":38878,"stats":["Debuffs on you expire 10% faster"]},"38888":{"connections":[{"id":39116,"orbit":0}],"group":893,"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"]},"38895":{"connections":[{"id":8697,"orbit":3},{"id":48660,"orbit":0}],"group":1061,"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"]},"38921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":2,"orbitIndex":1,"skill":38921,"stats":[]},"38923":{"connections":[{"id":61429,"orbit":3},{"id":511,"orbit":-3}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Skill Speed","orbit":7,"orbitIndex":14,"skill":38923,"stats":["3% increased Skill Speed"]},"38944":{"connections":[{"id":43338,"orbit":0},{"id":59538,"orbit":0}],"group":1355,"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"]},"38965":{"connections":[{"id":65226,"orbit":0}],"group":442,"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"]},"38966":{"connections":[{"id":30210,"orbit":0},{"id":35058,"orbit":0},{"id":61976,"orbit":0}],"group":1138,"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"]},"38969":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":50588,"orbit":0}],"group":1154,"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"]},"38972":{"connections":[{"id":34552,"orbit":0},{"id":8357,"orbit":0}],"group":475,"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"]},"38993":{"connections":[{"id":21112,"orbit":0}],"group":1470,"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"]},"39037":{"connections":[{"id":11672,"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":39037,"stats":["+5 to any Attribute"]},"39050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1223,"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"]},"39083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":454,"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"]},"39087":{"aliasPassiveSocket":"voices_jewel_slot4","connections":[],"group":670,"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,"skill":39087,"stats":[]},"39102":{"connectionArt":"CharacterPlanned","connections":[{"id":13228,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":893,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":3,"orbitIndex":14,"skill":39116,"stats":[]},"39128":{"connections":[{"id":47514,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":4,"skill":39128,"stats":["15% increased Magnitude of Daze"]},"39130":{"connections":[{"id":14294,"orbit":-5}],"group":472,"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"]},"39131":{"connections":[{"id":11741,"orbit":0},{"id":55596,"orbit":0}],"group":185,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39190":{"connections":[{"id":8800,"orbit":0}],"group":135,"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"]},"39204":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"39207":{"connections":[{"id":33518,"orbit":0}],"group":641,"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"]},"39228":{"connections":[{"id":62603,"orbit":0},{"id":63021,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":18,"skill":39228,"stats":["Damage Penetrates 6% Fire Resistance"]},"39237":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":39237,"stats":[]},"39241":{"ascendancyName":"Lich","connections":[{"id":58932,"orbit":-4}],"group":1150,"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"]},"39274":{"connections":[{"id":2119,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":6,"skill":39274,"stats":["Leech Life 8% slower"]},"39280":{"connections":[{"id":44669,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":1,"skill":39280,"stats":["10% increased Skill Effect Duration"]},"39292":{"ascendancyName":"Pathfinder","connections":[{"id":40,"orbit":-7}],"group":1531,"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"]},"39298":{"connections":[{"id":38814,"orbit":0},{"id":3995,"orbit":0},{"id":18115,"orbit":0},{"id":1019,"orbit":0}],"group":917,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39307":{"connections":[{"id":37026,"orbit":0}],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":1,"orbitIndex":6,"skill":39307,"stats":["10% increased Physical Damage"]},"39347":{"connections":[],"group":212,"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"]},"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"]},"39369":{"connections":[{"id":2936,"orbit":3},{"id":51583,"orbit":0}],"group":1485,"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"]},"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"]},"39416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":695,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":39416,"stats":[]},"39423":{"connections":[{"id":53207,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":20,"skill":39423,"stats":["Damage Penetrates 6% Lightning Resistance"]},"39431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":39431,"stats":[]},"39448":{"connections":[{"id":11178,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":21,"skill":39448,"stats":["3% increased Attack Speed with Axes"]},"39461":{"connections":[{"id":229,"orbit":0}],"group":639,"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"]},"39470":{"ascendancyName":"Infernalist","connections":[{"id":17754,"orbit":-6}],"group":759,"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"]},"39495":{"connections":[{"id":46386,"orbit":2147483647},{"id":27048,"orbit":9}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39495,"stats":["Companions deal 12% increased Damage"]},"39515":{"connections":[{"id":23450,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":8,"skill":39515,"stats":["12% increased Fire Damage"]},"39517":{"connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":39517,"stats":["5% increased Block chance"]},"39540":{"connections":[{"id":55933,"orbit":0},{"id":50558,"orbit":0}],"group":567,"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"]},"39552":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"39564":{"connections":[{"id":62039,"orbit":0},{"id":38663,"orbit":0},{"id":13279,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":12,"skill":39564,"stats":["10% increased Melee Damage"]},"39567":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"39568":{"connections":[],"group":1235,"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"]},"39569":{"connections":[{"id":35901,"orbit":0},{"id":3458,"orbit":-4},{"id":7353,"orbit":3}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":2,"skill":39569,"stats":["15% increased Critical Damage Bonus"]},"39570":{"connections":[{"id":49394,"orbit":6}],"group":1128,"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"]},"39581":{"connections":[{"id":46325,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":8,"skill":39581,"stats":["15% increased Stun Buildup"]},"39594":{"connections":[{"id":51248,"orbit":0},{"id":53294,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":3,"skill":39594,"stats":["Damage Penetrates 6% Fire Resistance"]},"39595":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"39598":{"connections":[{"id":3949,"orbit":0}],"group":141,"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"]},"39607":{"connections":[{"id":2559,"orbit":-2},{"id":45713,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":12,"skill":39607,"stats":["10% increased Flask Charges gained"]},"39608":{"connections":[{"id":1778,"orbit":-3}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":20,"skill":39608,"stats":["20% increased Hazard Duration"]},"39621":{"connections":[{"id":14176,"orbit":0},{"id":57703,"orbit":0}],"group":321,"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"]},"39640":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"39658":{"connections":[{"id":18831,"orbit":7},{"id":15030,"orbit":-2}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":7,"orbitIndex":1,"skill":39658,"stats":["5% increased Block chance"]},"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"]},"39710":{"connections":[{"id":51821,"orbit":0},{"id":12232,"orbit":0},{"id":33045,"orbit":-4}],"group":256,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39716":{"connections":[{"id":31326,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":12,"skill":39716,"stats":["30% increased Flammability Magnitude"]},"39723":{"ascendancyName":"Deadeye","connections":[{"id":5817,"orbit":0}],"group":1502,"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"]},"39732":{"connections":[{"id":30219,"orbit":-2}],"group":589,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":10,"skill":39732,"stats":["8% increased Accuracy Rating"]},"39752":{"connections":[{"id":5936,"orbit":0},{"id":38068,"orbit":0}],"group":739,"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"]},"39759":{"connections":[{"id":48035,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":10,"skill":39759,"stats":["10% increased Life Regeneration rate"]},"39839":{"connections":[{"id":20205,"orbit":0},{"id":14340,"orbit":0}],"group":939,"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"]},"39857":{"connectionArt":"CharacterPlanned","connections":[{"id":4663,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39881":{"connections":[{"id":16013,"orbit":0},{"id":35173,"orbit":0}],"group":1353,"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"]},"39884":{"connections":[{"id":40271,"orbit":0}],"group":1005,"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"]},"39886":{"connections":[{"id":56935,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39887":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"39911":{"connections":[],"group":1382,"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"]},"39935":{"connections":[{"id":44344,"orbit":0}],"flavourText":"I give you everything, my pets. Do not disappoint me.","group":573,"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"]},"39964":{"connections":[{"id":48198,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":4,"skill":39964,"stats":["10% increased Mana Regeneration Rate"]},"39986":{"connections":[{"id":57933,"orbit":0}],"group":1483,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39986,"stats":["Companions deal 12% increased Damage"]},"39987":{"connections":[{"id":18913,"orbit":-3},{"id":47177,"orbit":-5}],"group":950,"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"]},"39990":{"connections":[{"id":13294,"orbit":2},{"id":61974,"orbit":0}],"group":584,"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"]},"40006":{"connections":[{"id":9896,"orbit":-7},{"id":292,"orbit":0}],"group":438,"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"]},"40024":{"connections":[{"id":2091,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":4,"skill":40024,"stats":["8% chance to Poison on Hit"]},"40043":{"connections":[{"id":54990,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":0,"skill":40043,"stats":["10% increased Magnitude of Bleeding you inflict"]},"40068":{"connections":[{"id":32683,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":38,"skill":40068,"stats":["15% increased Freeze Buildup"]},"40073":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":951,"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"]},"40105":{"connections":[{"id":20558,"orbit":0}],"group":225,"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"]},"40110":{"connections":[{"id":42347,"orbit":3}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":7,"orbitIndex":8,"skill":40110,"stats":["10% increased Blind Effect"]},"40117":{"connections":[{"id":64023,"orbit":0}],"group":264,"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"]},"40166":{"connections":[{"id":32399,"orbit":-3}],"group":1230,"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"]},"40196":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":40196,"stats":[]},"40200":{"connections":[{"id":33612,"orbit":0},{"id":61842,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":2,"orbitIndex":0,"skill":40200,"stats":["Minions deal 12% increased Damage"]},"40213":{"connections":[{"id":55846,"orbit":0},{"id":24481,"orbit":0}],"group":1060,"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"]},"40244":{"connections":[{"id":43263,"orbit":-3}],"group":1201,"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"]},"40270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1203,"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"]},"40271":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":2,"skill":40271,"stats":[]},"40276":{"connections":[{"id":32745,"orbit":0},{"id":60241,"orbit":0}],"group":490,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":40276,"stats":["5% chance to inflict Bleeding on Hit"]},"40292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":299,"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"]},"40313":{"connections":[{"id":58363,"orbit":2},{"id":56844,"orbit":-2},{"id":3251,"orbit":0}],"group":1102,"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"]},"40325":{"connections":[{"id":7392,"orbit":0},{"id":48505,"orbit":0}],"group":462,"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"]},"40328":{"connections":[{"id":28564,"orbit":-5}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":3,"skill":40328,"stats":["16% increased Warcry Speed"]},"40333":{"connections":[{"id":24178,"orbit":2}],"group":1291,"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"]},"40336":{"connections":[{"id":6655,"orbit":0}],"group":702,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":40336,"stats":["5% chance to inflict Bleeding on Hit"]},"40341":{"connections":[{"id":17340,"orbit":-3},{"id":21274,"orbit":9}],"group":807,"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"]},"40345":{"connections":[{"id":37991,"orbit":0},{"id":50540,"orbit":0}],"group":853,"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"]},"40377":{"connections":[{"id":46318,"orbit":7},{"id":7554,"orbit":-3},{"id":46628,"orbit":0}],"group":363,"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"]},"40395":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":40395,"stats":[]},"40399":{"connections":[{"id":20641,"orbit":0}],"group":1233,"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"]},"40453":{"connections":[{"id":25304,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":9,"skill":40453,"stats":["Meta Skills gain 8% increased Energy"]},"40471":{"connections":[{"id":19027,"orbit":-2},{"id":7847,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":40471,"stats":["+8 to Dexterity"]},"40480":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":1953,"orbit":0}],"group":1186,"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"]},"40511":{"connectionArt":"CharacterPlanned","connections":[{"id":55375,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"40550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":375,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":0,"skill":40550,"stats":[]},"40596":{"connections":[],"group":305,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":36,"skill":40596,"stats":["12% increased Stun Threshold"]},"40597":{"connections":[{"id":53607,"orbit":0},{"id":58817,"orbit":0}],"group":601,"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"]},"40626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1258,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":40626,"stats":[]},"40630":{"connections":[{"id":44527,"orbit":0}],"group":1014,"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"]},"40632":{"connections":[{"id":48889,"orbit":-2}],"group":1174,"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"]},"40687":{"connections":[],"group":1058,"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"]},"40691":{"connections":[{"id":25893,"orbit":7}],"group":793,"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"]},"40719":{"ascendancyName":"Witchhunter","connections":[{"id":17646,"orbit":0}],"group":277,"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"]},"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":517,"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":[]},"40736":{"connections":[{"id":34305,"orbit":0},{"id":15606,"orbit":2}],"group":215,"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"]},"40760":{"connections":[{"id":21779,"orbit":0},{"id":9185,"orbit":0},{"id":47177,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":1,"skill":40760,"stats":["10% increased Critical Hit Chance"]},"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":850,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"40803":{"connections":[{"id":3218,"orbit":0},{"id":44298,"orbit":0}],"group":249,"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"]},"40894":{"connections":[{"id":1218,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":20,"skill":40894,"stats":["Minions have 10% increased maximum Life"]},"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"]},"40918":{"connections":[{"id":1773,"orbit":-4}],"group":1112,"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"]},"40929":{"connections":[{"id":43633,"orbit":-7}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":21,"skill":40929,"stats":["15% increased Archon Buff duration"]},"40975":{"connections":[{"id":24368,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":40975,"stats":["15% increased Ballista damage"]},"40985":{"connections":[{"id":62679,"orbit":0}],"group":829,"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"]},"40990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1395,"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"]},"41008":{"ascendancyName":"Amazon","connections":[],"group":1534,"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"]},"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"]},"41016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":41016,"stats":[]},"41017":{"connections":[{"id":14262,"orbit":0},{"id":1801,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41020":{"connections":[{"id":3994,"orbit":0}],"group":1358,"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"]},"41029":{"connections":[{"id":25827,"orbit":0},{"id":44563,"orbit":-4},{"id":25557,"orbit":0},{"id":22219,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41031":{"connections":[{"id":54232,"orbit":0}],"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":4,"orbitIndex":27,"skill":41031,"stats":["+5 to any Attribute"]},"41033":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":55872,"orbit":0}],"group":1095,"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"]},"41044":{"connections":[{"id":47591,"orbit":-7}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":7,"orbitIndex":10,"skill":41044,"stats":["3% of Damage taken Recouped as Mana"]},"41062":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":4,"orbitIndex":48,"skill":41062,"stats":[]},"41076":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":32771,"orbit":0}],"group":1533,"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"]},"41085":{"ascendancyName":"Spirit Walker","connections":[{"id":4367,"orbit":0},{"id":46070,"orbit":0}],"group":1542,"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"]},"41096":{"connections":[{"id":35901,"orbit":0},{"id":31345,"orbit":5}],"group":1200,"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"]},"41105":{"connections":[{"id":38835,"orbit":0},{"id":54288,"orbit":7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":12,"skill":41105,"stats":["3% of Damage taken Recouped as Life"]},"41126":{"connections":[{"id":1170,"orbit":0},{"id":9918,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":4,"skill":41126,"stats":["10% increased Attack Area Damage"]},"41129":{"connections":[{"id":24338,"orbit":0}],"group":659,"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"]},"41130":{"connections":[],"group":689,"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"]},"41147":{"connections":[{"id":23797,"orbit":-6}],"group":232,"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"]},"41154":{"connections":[{"id":33601,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":14,"skill":41154,"stats":["20% increased Freeze Buildup"]},"41159":{"connections":[{"id":27434,"orbit":0}],"group":840,"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"]},"41163":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":41163,"stats":[]},"41171":{"connections":[{"id":36341,"orbit":0}],"group":981,"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"]},"41180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":335,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":41180,"stats":[]},"41186":{"connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":5,"orbitIndex":0,"skill":41186,"stats":["20% increased Totem Placement speed"]},"41210":{"connections":[{"id":1477,"orbit":0},{"id":43578,"orbit":0}],"group":800,"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"]},"41225":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":41225,"stats":[]},"41298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41298,"stats":[]},"41338":{"connections":[{"id":31673,"orbit":0}],"group":515,"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"]},"41363":{"connections":[{"id":62518,"orbit":-5}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Lightning Resistance","orbit":4,"orbitIndex":9,"skill":41363,"stats":["+5% to Lightning Resistance"]},"41372":{"connections":[{"id":48030,"orbit":0}],"group":881,"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"]},"41384":{"connections":[{"id":51672,"orbit":0}],"group":275,"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"]},"41394":{"connections":[{"id":10841,"orbit":0}],"group":1102,"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"]},"41401":{"ascendancyName":"Spirit Walker","connections":[{"id":62702,"orbit":0}],"group":1542,"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"]},"41414":{"connections":[{"id":4547,"orbit":-7}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Cold Resistance","orbit":7,"orbitIndex":23,"skill":41414,"stats":["+5% to Cold Resistance"]},"41415":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":588,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":41415,"stats":[]},"41442":{"connections":[{"id":58088,"orbit":5}],"group":250,"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"]},"41447":{"connections":[],"group":1010,"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"]},"41493":{"connections":[{"id":50253,"orbit":9}],"group":334,"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"]},"41497":{"connections":[{"id":21164,"orbit":0}],"group":150,"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"]},"41511":{"connections":[{"id":35560,"orbit":0}],"group":552,"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"]},"41512":{"connections":[],"group":884,"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"]},"41522":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":41522,"stats":[]},"41529":{"connections":[{"id":21380,"orbit":-2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":5,"skill":41529,"stats":["15% increased Critical Damage Bonus"]},"41538":{"connections":[{"id":9112,"orbit":3},{"id":30047,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":41538,"stats":["15% increased Elemental Ailment Threshold"]},"41573":{"connections":[{"id":24655,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":10,"skill":41573,"stats":["Damage Penetrates 6% Fire Resistance"]},"41580":{"connections":[{"id":13799,"orbit":3},{"id":41298,"orbit":0}],"group":1379,"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"]},"41609":{"connections":[],"group":205,"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"]},"41615":{"connections":[{"id":10534,"orbit":4},{"id":22616,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":10,"skill":41615,"stats":["20% increased Totem Placement speed"]},"41619":{"ascendancyName":"Pathfinder","connections":[],"group":1523,"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"]},"41620":{"connections":[{"id":23879,"orbit":0}],"group":354,"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"]},"41645":{"connections":[{"id":6490,"orbit":0},{"id":10382,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":20,"skill":41645,"stats":["10% increased Physical Damage"]},"41646":{"connections":[{"id":48670,"orbit":0},{"id":14091,"orbit":0},{"id":17867,"orbit":0}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41651":{"connections":[{"id":43791,"orbit":0},{"id":53320,"orbit":-5}],"group":667,"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"]},"41654":{"connections":[{"id":41033,"orbit":2147483647}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":5,"skill":41654,"stats":["Offerings have 15% increased Maximum Life"]},"41657":{"connections":[],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":10,"skill":41657,"stats":["15% increased Armour"]},"41665":{"connections":[{"id":50562,"orbit":6}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":2,"skill":41665,"stats":["15% increased Critical Damage Bonus"]},"41669":{"connections":[],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":12,"skill":41669,"stats":["12% increased Cold Damage"]},"41701":{"connections":[{"id":11741,"orbit":0},{"id":11027,"orbit":0}],"group":223,"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"]},"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":1549,"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":[]},"41739":{"connections":[{"id":35265,"orbit":0}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":2,"skill":41739,"stats":["15% increased Stun Buildup"]},"41747":{"connections":[{"id":61847,"orbit":3}],"group":175,"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"]},"41751":{"ascendancyName":"Martial Artist","connections":[{"id":65228,"orbit":3}],"group":1510,"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"]},"41753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1440,"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"]},"41768":{"connections":[{"id":28982,"orbit":0},{"id":53123,"orbit":0},{"id":46399,"orbit":0},{"id":37484,"orbit":0}],"group":115,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41770":{"connections":[{"id":33080,"orbit":0},{"id":9441,"orbit":0},{"id":16484,"orbit":0}],"group":1047,"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"]},"41811":{"connections":[{"id":35173,"orbit":0}],"group":1348,"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"]},"41821":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":214,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41821,"stats":[]},"41838":{"connections":[{"id":25429,"orbit":-8}],"group":622,"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"]},"41861":{"connections":[],"flavourText":"Bonds forged in battle surpass ties of blood.","group":1435,"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"]},"41873":{"connections":[],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":22,"skill":41873,"stats":["20% increased Frenzy Charge Duration"]},"41875":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1509,"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"]},"41877":{"connections":[{"id":53958,"orbit":0},{"id":64601,"orbit":0}],"group":1290,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41886":{"connections":[{"id":9663,"orbit":7}],"group":1431,"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"]},"41905":{"connections":[{"id":56926,"orbit":0},{"id":44255,"orbit":7}],"group":938,"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"]},"41935":{"connections":[{"id":34782,"orbit":0}],"group":168,"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"]},"41965":{"connections":[{"id":1755,"orbit":-6}],"group":757,"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"]},"41972":{"connections":[{"id":56649,"orbit":4},{"id":60515,"orbit":-4}],"group":783,"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"]},"41991":{"connections":[{"id":61026,"orbit":0}],"group":475,"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"]},"42017":{"ascendancyName":"Ritualist","connections":[],"group":1562,"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"]},"42026":{"connections":[{"id":63813,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":0,"skill":42026,"stats":["16% increased Warcry Speed"]},"42032":{"connections":[{"id":17906,"orbit":0}],"group":1443,"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%"]},"42035":{"ascendancyName":"Chronomancer","connections":[],"group":358,"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"]},"42036":{"connections":[{"id":50146,"orbit":0}],"group":1442,"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"]},"42045":{"connections":[{"id":50535,"orbit":7},{"id":52003,"orbit":0}],"group":733,"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"]},"42059":{"connections":[{"id":36333,"orbit":3}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":4,"orbitIndex":60,"skill":42059,"stats":["Empowered Attacks deal 16% increased Damage"]},"42065":{"connections":[{"id":37532,"orbit":0}],"group":1224,"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"]},"42070":{"connections":[{"id":26148,"orbit":0}],"group":308,"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"]},"42076":{"connections":[{"id":17706,"orbit":-7}],"group":894,"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"]},"42077":{"connections":[{"id":56564,"orbit":0},{"id":2102,"orbit":0}],"group":712,"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"]},"42078":{"connectionArt":"CharacterPlanned","connections":[],"group":1405,"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"],"unlockConstraint":{"nodes":[59657,49356]}},"42103":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62427,"orbit":-2}],"group":1261,"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"]},"42111":{"connections":[{"id":21387,"orbit":0},{"id":26437,"orbit":0}],"group":199,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":42111,"stats":["Break 20% increased Armour"]},"42118":{"connections":[{"id":2408,"orbit":0},{"id":57518,"orbit":0},{"id":11509,"orbit":0},{"id":43102,"orbit":0},{"id":49485,"orbit":0}],"group":1336,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42127":{"connections":[{"id":4456,"orbit":0},{"id":41573,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":10,"skill":42127,"stats":["Damage Penetrates 6% Fire Resistance"]},"42169":{"connections":[{"id":24963,"orbit":-4}],"group":964,"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"]},"42177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":11153,"orbit":3}],"group":621,"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"]},"42205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":353,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":42205,"stats":[]},"42226":{"connections":[{"id":34892,"orbit":0},{"id":17792,"orbit":9}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":42226,"stats":["+10 to Intelligence"]},"42245":{"connections":[{"id":16024,"orbit":2},{"id":18167,"orbit":-2}],"group":1172,"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"]},"42250":{"connections":[{"id":26786,"orbit":0},{"id":16484,"orbit":0},{"id":44014,"orbit":0},{"id":45137,"orbit":0}],"group":1013,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"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"]},"42280":{"connections":[{"id":21205,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":22,"skill":42280,"stats":["+3 to all Attributes"]},"42290":{"connections":[{"id":38732,"orbit":-8}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":10,"skill":42290,"stats":["6% increased Curse Magnitudes"]},"42302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":45331,"orbit":4},{"id":31918,"orbit":-4}],"group":1293,"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"]},"42339":{"connections":[{"id":60974,"orbit":-2}],"group":1108,"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"]},"42347":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1469,"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"]},"42350":{"connections":[{"id":61438,"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":6,"orbitIndex":67,"skill":42350,"stats":["+5 to any Attribute"]},"42354":{"connections":[{"id":43562,"orbit":2},{"id":3660,"orbit":7}],"group":845,"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"]},"42361":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":42361,"stats":[]},"42379":{"connections":[{"id":16705,"orbit":0},{"id":25520,"orbit":0},{"id":3463,"orbit":0},{"id":4552,"orbit":0}],"group":1212,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42390":{"connections":[{"id":11433,"orbit":3},{"id":63608,"orbit":0}],"group":104,"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"]},"42410":{"connections":[{"id":9737,"orbit":4}],"group":684,"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"]},"42416":{"ascendancyName":"Deadeye","connections":[],"group":1502,"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":[]},"42441":{"ascendancyName":"Amazon","connections":[],"group":1536,"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"]},"42452":{"connections":[{"id":51743,"orbit":3}],"group":354,"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"]},"42460":{"connections":[{"id":11882,"orbit":5}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":7,"orbitIndex":3,"skill":42460,"stats":["10% increased chance to inflict Ailments"]},"42500":{"connections":[{"id":59881,"orbit":0}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"42522":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"42578":{"connections":[{"id":23192,"orbit":-6}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":11,"skill":42578,"stats":["5% increased Block chance"]},"42583":{"connections":[{"id":6714,"orbit":2147483647}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Life Regeneration Rate","orbit":2,"orbitIndex":18,"skill":42583,"stats":["10% increased Life Regeneration rate"]},"42604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":422,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":42604,"stats":[]},"42614":{"connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":6,"skill":42614,"stats":["Offering Skills have 30% reduced Duration"]},"42635":{"connections":[{"id":1502,"orbit":0}],"group":269,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":6,"skill":42635,"stats":["Channelling Skills deal 12% increased Damage"]},"42658":{"connections":[],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42660":{"connections":[{"id":54849,"orbit":0}],"group":226,"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"]},"42680":{"connections":[],"flavourText":"Let the Darkness consume you.\\nBeyond the veil of death,\\nthere burns a black fire.","group":706,"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"]},"42710":{"connections":[{"id":41186,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":20,"skill":42710,"stats":["20% increased Totem Placement speed"]},"42714":{"connections":[{"id":29065,"orbit":0}],"group":1300,"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"]},"42736":{"connections":[{"id":60685,"orbit":-3}],"group":885,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42737":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":568,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":7,"orbitIndex":4,"skill":42737,"stats":[]},"42750":{"connections":[{"id":17088,"orbit":4},{"id":9050,"orbit":-4}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":6,"orbitIndex":42,"skill":42750,"stats":["10% increased Attack Damage"]},"42760":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1296,"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"]},"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":[]},"42762":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"42781":{"connections":[{"id":55429,"orbit":0},{"id":56472,"orbit":0}],"group":1015,"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"]},"42794":{"connections":[{"id":31433,"orbit":-5}],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":42794,"stats":["12% increased Elemental Damage with Attacks"]},"42802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":42802,"stats":[]},"42805":{"connections":[{"id":26034,"orbit":-5}],"group":1316,"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"]},"42813":{"connections":[{"id":55491,"orbit":0}],"group":446,"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"]},"42825":{"connections":[{"id":31238,"orbit":0}],"group":487,"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"]},"42845":{"ascendancyName":"Tactician","connections":[{"id":10371,"orbit":0}],"group":317,"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"]},"42857":{"connections":[{"id":20024,"orbit":3},{"id":7576,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":7,"orbitIndex":16,"skill":42857,"stats":["4% increased Skill Speed"]},"42914":{"connections":[{"id":33393,"orbit":0},{"id":50847,"orbit":0}],"group":142,"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"]},"42959":{"connections":[{"id":32896,"orbit":-2},{"id":28903,"orbit":0}],"group":1283,"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"]},"42974":{"connections":[{"id":46152,"orbit":3},{"id":8302,"orbit":-7},{"id":30808,"orbit":0}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Chance","orbit":2,"orbitIndex":18,"skill":42974,"stats":["5% chance to Blind Enemies on Hit"]},"42981":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":56104,"orbit":0}],"group":664,"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"]},"42984":{"connections":[{"id":21184,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":1,"orbitIndex":8,"skill":42984,"stats":["6% increased Area of Effect"]},"42998":{"connections":[{"id":40333,"orbit":2}],"group":1291,"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"]},"42999":{"connections":[{"id":4925,"orbit":3}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":10,"skill":42999,"stats":["7% increased Chaos Damage"]},"43014":{"connections":[{"id":34308,"orbit":0}],"group":458,"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"]},"43036":{"connections":[{"id":2244,"orbit":4}],"group":431,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":18,"skill":43036,"stats":["10% increased Mana Regeneration Rate"]},"43044":{"connections":[{"id":63566,"orbit":0},{"id":38678,"orbit":0},{"id":21495,"orbit":-6}],"group":1237,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"43064":{"connections":[{"id":47853,"orbit":0}],"group":1407,"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"]},"43077":{"connections":[{"id":26592,"orbit":-2},{"id":43250,"orbit":3}],"group":179,"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"]},"43082":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1359,"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"]},"43088":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1455,"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"]},"43090":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1372,"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"]},"43095":{"ascendancyName":"Amazon","connections":[{"id":35187,"orbit":0}],"group":1538,"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"]},"43102":{"connections":[{"id":30197,"orbit":0},{"id":42998,"orbit":-9}],"group":1291,"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"]},"43128":{"ascendancyName":"Chronomancer","connections":[{"id":10731,"orbit":4}],"group":362,"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"]},"43131":{"ascendancyName":"Witchhunter","connections":[{"id":61973,"orbit":-9}],"group":277,"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"]},"43139":{"connections":[{"id":38068,"orbit":0}],"group":739,"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"]},"43142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":337,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":43142,"stats":[]},"43149":{"connections":[{"id":40292,"orbit":0}],"group":299,"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"]},"43155":{"connections":[{"id":7062,"orbit":0}],"group":919,"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"]},"43164":{"connections":[{"id":5710,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":20,"skill":43164,"stats":["8% increased Melee Damage"]},"43174":{"connections":[{"id":28542,"orbit":-7}],"group":382,"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"]},"43183":{"connections":[{"id":11153,"orbit":0}],"group":621,"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"]},"43201":{"connections":[{"id":43383,"orbit":0}],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":56,"skill":43201,"stats":["10% increased chance to inflict Ailments"]},"43238":{"connections":[{"id":14211,"orbit":-7}],"group":1158,"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"]},"43250":{"connections":[],"group":145,"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"]},"43254":{"connections":[{"id":33400,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":22,"skill":43254,"stats":["10% increased Parried Debuff Magnitude"]},"43263":{"connections":[{"id":64492,"orbit":-2}],"group":1201,"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"]},"43281":{"connections":[{"id":47359,"orbit":0},{"id":51934,"orbit":7}],"group":1233,"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"]},"43282":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":6,"orbitIndex":49,"skill":43282,"stats":["12% increased Elemental Damage while Shapeshifted"]},"43324":{"connectionArt":"CharacterPlanned","connections":[{"id":57596,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43338":{"connections":[{"id":56767,"orbit":0}],"group":1355,"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"]},"43366":{"connections":[{"id":2606,"orbit":0},{"id":4407,"orbit":0}],"group":583,"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"]},"43383":{"connections":[{"id":62588,"orbit":0},{"id":37450,"orbit":0}],"group":766,"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"]},"43385":{"connectionArt":"CharacterPlanned","connections":[{"id":64139,"orbit":-5}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43396":{"connections":[{"id":40550,"orbit":0}],"group":375,"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"]},"43423":{"connections":[{"id":48660,"orbit":0}],"group":1061,"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"]},"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":611,"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"]},"43431":{"connections":[{"id":38814,"orbit":0},{"id":19224,"orbit":0}],"group":964,"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"]},"43443":{"connections":[{"id":32148,"orbit":0},{"id":49370,"orbit":0},{"id":8535,"orbit":0}],"group":173,"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"]},"43444":{"connections":[],"group":791,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":8,"skill":43444,"stats":["8% increased Knockback Distance"]},"43453":{"connections":[{"id":64050,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":43453,"stats":["3% increased Movement Speed while Sprinting"]},"43460":{"connections":[{"id":63678,"orbit":4},{"id":63085,"orbit":-5}],"group":164,"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"]},"43461":{"connections":[{"id":51299,"orbit":0}],"group":502,"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"]},"43486":{"connectionArt":"CharacterPlanned","connections":[{"id":54289,"orbit":0},{"id":39102,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43507":{"connections":[{"id":40292,"orbit":0}],"group":299,"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"]},"43522":{"connections":[{"id":38497,"orbit":4},{"id":33099,"orbit":6}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":7,"skill":43522,"stats":["6% reduced Charm Charges used"]},"43557":{"connections":[],"group":769,"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"]},"43562":{"connections":[{"id":3660,"orbit":0}],"group":845,"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"]},"43575":{"connections":[{"id":41512,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":16,"skill":43575,"stats":["10% increased Melee Damage"]},"43576":{"connections":[{"id":7971,"orbit":3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":8,"skill":43576,"stats":["10% increased Mana Regeneration Rate"]},"43578":{"connections":[],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":26,"skill":43578,"stats":["10% increased Projectile Damage"]},"43579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":35369,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":9,"skill":43579,"stats":[]},"43584":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":619,"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"]},"43588":{"connections":[{"id":61835,"orbit":-2},{"id":39131,"orbit":3}],"group":167,"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"]},"43633":{"connections":[{"id":10841,"orbit":0}],"group":1102,"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"]},"43647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":32507,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":2,"orbitIndex":17,"skill":43647,"stats":[]},"43650":{"connections":[{"id":21070,"orbit":0},{"id":53386,"orbit":0}],"group":228,"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"]},"43653":{"connections":[{"id":26518,"orbit":0},{"id":48171,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":9,"skill":43653,"stats":["12% increased Cold Damage"]},"43677":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1125,"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"]},"43691":{"connections":[{"id":21746,"orbit":0},{"id":55270,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"43711":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":312,"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"]},"43713":{"connections":[{"id":3051,"orbit":0},{"id":27009,"orbit":0},{"id":35602,"orbit":0}],"group":817,"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"]},"43720":{"connections":[],"group":1227,"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"]},"43721":{"connectionArt":"CharacterPlanned","connections":[{"id":24993,"orbit":8}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43736":{"connections":[{"id":29695,"orbit":4}],"group":811,"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"]},"43746":{"connections":[{"id":16460,"orbit":0},{"id":38143,"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":3,"orbitIndex":6,"skill":43746,"stats":["+5 to any Attribute"]},"43778":{"connections":[{"id":36894,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":2,"skill":43778,"stats":["5% chance to inflict Bleeding on Hit"]},"43791":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":667,"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"]},"43818":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":473,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":43818,"stats":[]},"43829":{"connections":[{"id":51944,"orbit":0},{"id":45576,"orbit":0}],"group":828,"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"]},"43842":{"connections":[{"id":5695,"orbit":2},{"id":28092,"orbit":2}],"group":550,"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"]},"43843":{"connections":[{"id":17417,"orbit":0}],"group":483,"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"]},"43854":{"connections":[{"id":52038,"orbit":0}],"group":541,"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"]},"43867":{"connections":[{"id":10423,"orbit":2}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":23,"skill":43867,"stats":["Damage Penetrates 6% Fire Resistance"]},"43877":{"connections":[{"id":51522,"orbit":-2},{"id":47895,"orbit":-2}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":1,"orbitIndex":7,"skill":43877,"stats":["3% increased Attack Speed"]},"43893":{"connections":[{"id":55101,"orbit":0},{"id":1433,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":10,"skill":43893,"stats":["10% increased Elemental Damage"]},"43895":{"connections":[{"id":48670,"orbit":-5}],"group":587,"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"]},"43923":{"connections":[{"id":19104,"orbit":0}],"group":967,"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"]},"43938":{"connections":[{"id":37688,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":39,"skill":43938,"stats":["6% increased Trap Throwing Speed"]},"43939":{"connections":[{"id":48267,"orbit":0},{"id":56214,"orbit":0}],"group":178,"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%"]},"43941":{"connections":[{"id":48314,"orbit":-7}],"group":103,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":43941,"stats":["3% increased Skill Speed while Shapeshifted"]},"43944":{"connections":[{"id":23547,"orbit":0}],"group":1281,"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"]},"43964":{"connections":[{"id":41645,"orbit":0}],"group":1194,"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"]},"43979":{"connections":[{"id":50837,"orbit":0},{"id":26926,"orbit":0}],"group":701,"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"]},"44005":{"connections":[],"group":270,"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"]},"44014":{"connections":[{"id":11855,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":44014,"stats":["8% increased Accuracy Rating"]},"44017":{"connections":[{"id":4527,"orbit":0}],"flavourText":"Great tacticians learn that consistency often trumps potential.","group":231,"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"]},"44069":{"connections":[{"id":29358,"orbit":-7}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":4,"skill":44069,"stats":["15% increased Stun Buildup"]},"44082":{"connections":[{"id":4931,"orbit":0}],"group":487,"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"]},"44092":{"connections":[{"id":54911,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":0,"skill":44092,"stats":["12% increased Ignite Magnitude"]},"44098":{"connections":[{"id":4061,"orbit":0},{"id":34531,"orbit":0}],"group":676,"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"]},"44141":{"connections":[{"id":18969,"orbit":0},{"id":21788,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":3,"orbitIndex":7,"skill":44141,"stats":["3% increased Attack Speed with Bows"]},"44176":{"connections":[{"id":57047,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":44176,"stats":["+3 to all Attributes"]},"44179":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":44179,"stats":[]},"44188":{"connections":[{"id":64427,"orbit":0}],"group":930,"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"]},"44201":{"connections":[],"group":1011,"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"]},"44204":{"connections":[{"id":33729,"orbit":3}],"group":1200,"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"]},"44213":{"connections":[{"id":869,"orbit":0}],"group":433,"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"]},"44223":{"connections":[],"group":916,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":1,"skill":44223,"stats":["15% increased Critical Damage Bonus"]},"44239":{"connections":[{"id":29479,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":16,"skill":44239,"stats":["15% increased Pin Buildup"]},"44255":{"connections":[{"id":28573,"orbit":-3}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":12,"skill":44255,"stats":["Minions Revive 5% faster"]},"44280":{"connections":[{"id":23305,"orbit":-3}],"group":1357,"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"]},"44293":{"connections":[],"group":660,"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"]},"44298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":46024,"orbit":0}],"group":267,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":44298,"stats":[]},"44299":{"connections":[{"id":38105,"orbit":0},{"id":49455,"orbit":0},{"id":857,"orbit":0}],"group":609,"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"]},"44309":{"connectionArt":"CharacterPlanned","connections":[{"id":44485,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44316":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":271,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":6,"skill":44316,"stats":[]},"44330":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":804,"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"]},"44343":{"connections":[{"id":55276,"orbit":5}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44344":{"connections":[{"id":28092,"orbit":4}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"44345":{"connections":[{"id":48833,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44345,"stats":["10% increased Lightning Damage"]},"44357":{"ascendancyName":"Invoker","connections":[{"id":63713,"orbit":-9}],"group":1505,"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"]},"44359":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":881,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":44359,"stats":[]},"44369":{"connections":[{"id":30748,"orbit":0}],"group":1226,"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"]},"44371":{"ascendancyName":"Tactician","connections":[{"id":30151,"orbit":0}],"group":379,"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"]},"44372":{"connections":[{"id":11679,"orbit":0},{"id":25829,"orbit":0}],"group":662,"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"]},"44373":{"connections":[],"group":1304,"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"]},"44406":{"connections":[],"group":409,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":0,"skill":44406,"stats":["15% increased Stun Buildup"]},"44419":{"connections":[{"id":7251,"orbit":7},{"id":29788,"orbit":-7}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":10,"skill":44419,"stats":["8% increased amount of Life Leeched"]},"44420":{"connections":[{"id":28021,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":44420,"stats":["10% increased Critical Hit Chance"]},"44423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":25971,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":2,"orbitIndex":1,"skill":44423,"stats":[]},"44430":{"connections":[{"id":7062,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":44430,"stats":["12% increased Damage with Crossbows"]},"44452":{"connectionArt":"CharacterPlanned","connections":[{"id":21809,"orbit":-6}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44453":{"connections":[{"id":42760,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":3,"skill":44453,"stats":["15% increased Stun Threshold"]},"44455":{"connections":[{"id":41669,"orbit":0},{"id":60515,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44455,"stats":["12% increased Cold Damage"]},"44461":{"connections":[{"id":54998,"orbit":-7}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":21,"skill":44461,"stats":["10% increased Skill Effect Duration"]},"44484":{"ascendancyName":"Stormweaver","connections":[{"id":42522,"orbit":0}],"group":517,"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"]},"44485":{"connectionArt":"CharacterPlanned","connections":[{"id":7553,"orbit":-3}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44487":{"connections":[{"id":39884,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":5,"skill":44487,"stats":["10% increased Ignite Magnitude"]},"44490":{"connections":[{"id":43090,"orbit":0}],"group":1344,"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"]},"44498":{"connections":[{"id":22439,"orbit":-5},{"id":38068,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":20,"skill":44498,"stats":["10% increased Exposure Effect"]},"44516":{"connections":[{"id":2113,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":13,"skill":44516,"stats":["3% increased Attack Speed with Quarterstaves"]},"44522":{"connections":[{"id":47831,"orbit":0}],"group":1370,"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"]},"44527":{"connections":[{"id":44875,"orbit":0}],"group":980,"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"]},"44540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":4,"skill":44540,"stats":[]},"44560":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44563":{"connections":[{"id":59053,"orbit":7}],"group":1077,"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"]},"44566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":876,"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"]},"44573":{"connections":[],"group":1318,"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"]},"44605":{"connections":[{"id":59881,"orbit":-6},{"id":13081,"orbit":0}],"group":764,"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"]},"44608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":906,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":44608,"stats":[]},"44612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":44612,"stats":[]},"44628":{"connections":[{"id":20820,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":44628,"stats":["3% increased Attack Speed"]},"44659":{"connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44669":{"connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":9,"skill":44669,"stats":["10% increased Skill Effect Duration"]},"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":872,"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","name":"SIX","orbit":0,"orbitIndex":0,"skill":44683,"stats":[]},"44684":{"connections":[{"id":5191,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":44684,"stats":["Companions have 10% increased Attack Speed"]},"44690":{"connections":[{"id":14127,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":5,"skill":44690,"stats":["8% reduced Skill Effect Duration"]},"44699":{"connections":[{"id":16150,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":44699,"stats":["8% increased Reservation Efficiency of Companion Skills"]},"44707":{"connections":[{"id":54785,"orbit":0},{"id":7628,"orbit":0}],"group":709,"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"]},"44733":{"connections":[{"id":10742,"orbit":0},{"id":29432,"orbit":-9},{"id":1433,"orbit":0},{"id":49363,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44746":{"ascendancyName":"Tactician","connections":[{"id":4245,"orbit":0}],"group":341,"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"]},"44753":{"connections":[{"id":63608,"orbit":0}],"group":104,"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"]},"44756":{"connections":[{"id":44841,"orbit":5}],"group":1338,"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"]},"44765":{"connections":[{"id":32233,"orbit":0}],"group":826,"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"]},"44776":{"connections":[{"id":48773,"orbit":0},{"id":1841,"orbit":5}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":5,"orbitIndex":18,"skill":44776,"stats":["15% increased Evasion Rating"]},"44783":{"connections":[{"id":22949,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":44783,"stats":["10% increased Spell Area Damage"]},"44787":{"connections":[{"id":14654,"orbit":0},{"id":49192,"orbit":0},{"id":51683,"orbit":-4}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":14,"skill":44787,"stats":["20% increased Totem Placement speed"]},"44836":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":47150,"orbit":0}],"group":788,"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"]},"44841":{"connections":[{"id":36927,"orbit":0},{"id":28258,"orbit":2}],"group":1338,"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"]},"44850":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[{"id":59438,"orbit":2147483647},{"id":32128,"orbit":-3}],"group":628,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":44850,"stats":[]},"44871":{"connections":[{"id":54447,"orbit":0},{"id":56216,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":3,"orbitIndex":2,"skill":44871,"stats":["+10 to maximum Energy Shield"]},"44872":{"connections":[{"id":11248,"orbit":0},{"id":22949,"orbit":0},{"id":4970,"orbit":0},{"id":3363,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"44875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":980,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":44875,"stats":[]},"44891":{"connections":[{"id":52537,"orbit":2147483647},{"id":15775,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":7,"skill":44891,"stats":["Damage Penetrates 6% Cold Resistance"]},"44902":{"connections":[{"id":511,"orbit":3}],"group":196,"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"]},"44917":{"connections":[{"id":34984,"orbit":0}],"group":989,"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"]},"44932":{"connections":[{"id":54984,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":3,"orbitIndex":4,"skill":44932,"stats":["15% increased Magnitude of Shock you inflict"]},"44948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":675,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":44948,"stats":[]},"44951":{"connections":[{"id":5777,"orbit":0}],"group":567,"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"]},"44952":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":9163,"orbit":0}],"group":162,"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"]},"44974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1219,"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"]},"44983":{"connections":[{"id":3685,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":22,"skill":44983,"stats":["+3 to all Attributes"]},"45012":{"connections":[{"id":8246,"orbit":0},{"id":64462,"orbit":0},{"id":41017,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":12,"skill":45012,"stats":["10% increased Attack Damage"]},"45013":{"connections":[{"id":58884,"orbit":0}],"group":891,"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"]},"45019":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":956,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":45019,"stats":[]},"45037":{"connections":[{"id":9736,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":17,"skill":45037,"stats":["12% increased Armour and Evasion Rating"]},"45075":{"connections":[{"id":43507,"orbit":0},{"id":27439,"orbit":0}],"group":299,"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"]},"45086":{"connections":[{"id":34520,"orbit":0}],"group":970,"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"]},"45090":{"connections":[{"id":36027,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":19,"skill":45090,"stats":["12% increased Attack Damage"]},"45100":{"connections":[{"id":56928,"orbit":-3}],"group":1232,"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"]},"45111":{"connections":[{"id":14446,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":45111,"stats":["20% increased Curse Duration"]},"45137":{"connections":[{"id":44487,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":8,"skill":45137,"stats":["10% increased Ignite Magnitude"]},"45162":{"connections":[{"id":24801,"orbit":7},{"id":63031,"orbit":-2}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":18,"skill":45162,"stats":["20% increased Presence Area of Effect"]},"45177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":589,"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"]},"45193":{"connections":[{"id":4083,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":17,"skill":45193,"stats":["10% increased Magnitude of Poison you inflict"]},"45202":{"connections":[{"id":59093,"orbit":0}],"flavourText":"A wooden construct, mute and blind.\\nBut fear the wrath of shackled mind.","group":259,"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"]},"45215":{"connections":[{"id":53187,"orbit":0}],"group":426,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45227":{"connections":[{"id":42111,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":1,"skill":45227,"stats":["Break 20% increased Armour"]},"45228":{"ascendancyName":"Spirit Walker","connections":[{"id":39887,"orbit":4}],"group":1542,"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"]},"45230":{"connections":[{"id":28229,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":4,"skill":45230,"stats":["10% increased Area of Effect of Curses"]},"45244":{"connections":[{"id":23343,"orbit":0},{"id":41016,"orbit":0}],"group":1148,"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"]},"45248":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":14429,"orbit":2147483647}],"group":407,"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"]},"45272":{"connections":[{"id":42280,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":0,"skill":45272,"stats":["+3 to all Attributes"]},"45278":{"connections":[{"id":38138,"orbit":0}],"group":795,"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"]},"45301":{"connections":[{"id":31724,"orbit":0}],"group":419,"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"]},"45304":{"connections":[{"id":6078,"orbit":-4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":18,"skill":45304,"stats":["10% increased Poison Duration"]},"45319":{"connections":[{"id":55041,"orbit":0},{"id":26135,"orbit":0},{"id":3251,"orbit":0}],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage","orbit":3,"orbitIndex":16,"skill":45319,"stats":["8% increased Spell Damage"]},"45327":{"connections":[{"id":10251,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":16,"skill":45327,"stats":["15% increased Stun Buildup"]},"45329":{"connections":[{"id":2128,"orbit":0},{"id":40626,"orbit":0}],"group":1228,"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"]},"45331":{"connections":[{"id":23221,"orbit":7},{"id":60323,"orbit":9}],"group":1293,"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"]},"45333":{"connections":[{"id":59781,"orbit":-2}],"group":701,"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"]},"45343":{"connections":[{"id":50483,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":7,"orbitIndex":19,"skill":45343,"stats":["Minions have 8% increased Area of Effect"]},"45350":{"connections":[{"id":3438,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":6,"skill":45350,"stats":["Invocated Spells deal 15% increased Damage"]},"45354":{"connections":[{"id":64948,"orbit":0},{"id":21568,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":18,"skill":45354,"stats":["Aura Skills have 5% increased Magnitudes"]},"45363":{"connections":[{"id":31292,"orbit":0},{"id":58528,"orbit":0}],"group":527,"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"]},"45370":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1238,"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"]},"45382":{"connections":[{"id":53265,"orbit":0}],"group":1429,"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"]},"45383":{"connections":[{"id":23930,"orbit":0},{"id":30662,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":45383,"stats":["12% increased Lightning Damage"]},"45390":{"connections":[{"id":13624,"orbit":0},{"id":28258,"orbit":2}],"group":1338,"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"]},"45400":{"connectionArt":"CharacterPlanned","connections":[{"id":59908,"orbit":2147483647},{"id":13691,"orbit":0}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45422":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connectionArt":"CharacterPlanned","connections":[],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45481":{"connections":[{"id":52765,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":45481,"stats":["10% increased Mana Regeneration Rate"]},"45488":{"connections":[{"id":4377,"orbit":0}],"group":833,"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"]},"45494":{"connections":[],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":9,"skill":45494,"stats":["20% increased Ballista Immobilisation buildup"]},"45497":{"connections":[{"id":13333,"orbit":-7},{"id":17057,"orbit":0},{"id":61170,"orbit":7}],"group":698,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":45497,"stats":["10% increased Elemental Damage"]},"45503":{"connections":[{"id":37746,"orbit":4}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":0,"skill":45503,"stats":["30% increased Flammability Magnitude"]},"45522":{"connections":[{"id":22314,"orbit":5}],"group":747,"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":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"45530":{"connections":[{"id":55180,"orbit":-7}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":18,"skill":45530,"stats":["Minions cause 15% increased Stun Buildup"]},"45569":{"connections":[{"id":55596,"orbit":0}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":45569,"stats":["15% increased Critical Spell Damage Bonus"]},"45570":{"connections":[{"id":43713,"orbit":0},{"id":29009,"orbit":0}],"group":817,"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"]},"45576":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":828,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":7,"orbitIndex":3,"skill":45576,"stats":[]},"45585":{"connections":[{"id":55617,"orbit":0},{"id":37258,"orbit":5}],"group":453,"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"]},"45586":{"connections":[{"id":14761,"orbit":0}],"group":426,"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"]},"45599":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":6689,"orbit":0},{"id":32885,"orbit":0}],"group":709,"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"]},"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":611,"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"]},"45609":{"connections":[],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":20,"skill":45609,"stats":["15% increased Critical Damage Bonus"]},"45612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":53901,"orbit":0}],"group":460,"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"]},"45631":{"connections":[{"id":3630,"orbit":-5}],"group":1316,"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"]},"45632":{"connections":[{"id":24551,"orbit":0}],"group":286,"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"]},"45650":{"connections":[{"id":9572,"orbit":0},{"id":36997,"orbit":0}],"group":1056,"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"]},"45693":{"connections":[{"id":64851,"orbit":0}],"group":1107,"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"]},"45702":{"connections":[{"id":61333,"orbit":-3},{"id":31692,"orbit":3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":19,"skill":45702,"stats":["10% increased Critical Hit Chance"]},"45709":{"connections":[{"id":52803,"orbit":0}],"group":1249,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":21,"skill":45709,"stats":["15% increased Life Flask Charges gained"]},"45712":{"connections":[{"id":65009,"orbit":0}],"group":1200,"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"]},"45713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1342,"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"]},"45736":{"connections":[{"id":15825,"orbit":-3}],"group":179,"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"]},"45751":{"connections":[],"group":250,"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"]},"45774":{"connections":[{"id":54975,"orbit":3}],"group":1217,"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"]},"45777":{"connections":[{"id":47212,"orbit":0}],"group":483,"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"]},"45798":{"connections":[{"id":62578,"orbit":-7},{"id":46615,"orbit":7}],"group":1281,"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"]},"45808":{"connections":[{"id":35623,"orbit":0}],"group":590,"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"]},"45824":{"connections":[{"id":61441,"orbit":0},{"id":8493,"orbit":0}],"group":599,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":0,"orbitIndex":0,"skill":45824,"stats":["10% increased Damage with Swords"]},"45874":{"connections":[],"group":314,"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"]},"45885":{"connections":[{"id":54521,"orbit":0},{"id":59362,"orbit":0},{"id":45497,"orbit":4},{"id":13359,"orbit":9}],"group":726,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"45899":{"connections":[{"id":968,"orbit":0}],"group":602,"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"]},"45916":{"connections":[{"id":27501,"orbit":-4},{"id":19330,"orbit":4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":5,"orbitIndex":48,"skill":45916,"stats":["10% increased Life Regeneration rate"]},"45918":{"connections":[],"flavourText":"While the mind endures, so too will the body.","group":424,"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"]},"45923":{"connections":[{"id":50084,"orbit":0},{"id":52319,"orbit":0}],"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":6,"orbitIndex":31,"skill":45923,"stats":["+5 to any Attribute"]},"45962":{"connections":[{"id":7183,"orbit":-6},{"id":15617,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":3,"orbitIndex":23,"skill":45962,"stats":["10% increased Life Recovery from Flasks"]},"45969":{"connections":[{"id":28693,"orbit":-7},{"id":24880,"orbit":0}],"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":6,"orbitIndex":36,"skill":45969,"stats":["+5 to any Attribute"]},"45990":{"connections":[{"id":39448,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":23,"skill":45990,"stats":["4% increased Attack Speed with Axes"]},"45992":{"connections":[{"id":41657,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":12,"skill":45992,"stats":["15% increased Armour"]},"46016":{"ascendancyName":"Infernalist","connections":[{"id":24039,"orbit":7}],"group":759,"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"]},"46017":{"connections":[{"id":54962,"orbit":0}],"group":248,"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"]},"46023":{"connections":[],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":46023,"stats":["15% increased Armour"]},"46024":{"connections":[],"group":274,"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"]},"46034":{"connections":[{"id":41029,"orbit":0},{"id":10552,"orbit":0}],"group":1031,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":[]},"46060":{"connections":[{"id":29270,"orbit":-2},{"id":7488,"orbit":0}],"group":566,"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"]},"46069":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"46070":{"ascendancyName":"Spirit Walker","connections":[{"id":62424,"orbit":0}],"group":1542,"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"]},"46071":{"ascendancyName":"Amazon","connections":[{"id":9294,"orbit":0}],"group":1546,"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"]},"46088":{"connections":[{"id":13823,"orbit":0}],"group":1064,"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"]},"46091":{"ascendancyName":"Disciple of Varashta","connections":[{"id":30265,"orbit":-9},{"id":64223,"orbit":6}],"group":611,"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"]},"46124":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"46146":{"connections":[{"id":43691,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":4,"skill":46146,"stats":["10% increased amount of Mana Leeched"]},"46152":{"connections":[{"id":40110,"orbit":4}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":1,"orbitIndex":6,"skill":46152,"stats":["10% increased Blind Effect"]},"46157":{"connections":[{"id":37806,"orbit":0}],"group":1008,"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"]},"46171":{"connections":[{"id":61421,"orbit":7}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Critical Chance","orbit":7,"orbitIndex":13,"skill":46171,"stats":["10% increased Critical Hit Chance"]},"46182":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":42460,"orbit":4}],"group":1134,"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"]},"46197":{"connections":[{"id":39237,"orbit":0}],"group":1311,"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"]},"46205":{"connections":[{"id":2174,"orbit":7},{"id":33209,"orbit":-7},{"id":51683,"orbit":-7}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":46205,"stats":["15% increased Totem Damage"]},"46224":{"connections":[{"id":24045,"orbit":0},{"id":45019,"orbit":0}],"group":956,"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"]},"46268":{"connections":[{"id":5324,"orbit":-5},{"id":2397,"orbit":0}],"group":666,"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"]},"46275":{"connections":[{"id":3894,"orbit":0}],"group":609,"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"]},"46296":{"connections":[],"group":920,"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"]},"46300":{"connections":[{"id":63021,"orbit":0},{"id":52774,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":14,"skill":46300,"stats":["30% increased Flammability Magnitude"]},"46318":{"connections":[{"id":32964,"orbit":3}],"group":363,"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"]},"46325":{"connections":[{"id":3936,"orbit":0},{"id":33556,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":5,"skill":46325,"stats":["10% increased Melee Damage"]},"46343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"id":13708,"orbit":0},{"id":25513,"orbit":0},{"id":47363,"orbit":0}],"group":731,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":46343,"stats":[]},"46358":{"connections":[{"id":50423,"orbit":0},{"id":59376,"orbit":0},{"id":59442,"orbit":-5}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"46365":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":639,"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"]},"46380":{"connections":[{"id":21327,"orbit":0}],"group":319,"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"]},"46384":{"connections":[{"id":18746,"orbit":-5},{"id":58138,"orbit":0}],"group":116,"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"]},"46386":{"connections":[{"id":39986,"orbit":0}],"group":1486,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":46386,"stats":["Companions deal 12% increased Damage"]},"46399":{"connections":[{"id":589,"orbit":0},{"id":50820,"orbit":0}],"group":106,"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"]},"46402":{"connections":[{"id":18923,"orbit":0},{"id":37220,"orbit":0},{"id":50342,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":13,"skill":46402,"stats":["15% increased Evasion Rating"]},"46421":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":309,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":46421,"stats":[]},"46431":{"connections":[{"id":11015,"orbit":0},{"id":38463,"orbit":0}],"group":1255,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":46431,"stats":["16% increased Hazard Damage"]},"46454":{"ascendancyName":"Pathfinder","connections":[],"group":1527,"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"]},"46475":{"connections":[{"id":18186,"orbit":5},{"id":51299,"orbit":0},{"id":16385,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":63,"skill":46475,"stats":["12% increased Armour and Evasion Rating"]},"46499":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":207,"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"]},"46522":{"ascendancyName":"Tactician","connections":[{"id":44746,"orbit":0}],"group":349,"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"]},"46533":{"connections":[{"id":28329,"orbit":3}],"group":1276,"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"]},"46535":{"ascendancyName":"Witchhunter","connections":[],"group":279,"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"]},"46554":{"connections":[{"id":62677,"orbit":0},{"id":36379,"orbit":0},{"id":10131,"orbit":0},{"id":42999,"orbit":-3}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"46561":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":943,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":2,"orbitIndex":6,"skill":46561,"stats":[]},"46565":{"connections":[{"id":15855,"orbit":0}],"group":525,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Stance Breaker","orbit":0,"orbitIndex":0,"skill":46565,"stats":["25% increased Damage with Swords"]},"46601":{"connections":[{"id":18568,"orbit":0},{"id":43720,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":18,"skill":46601,"stats":["10% increased amount of Mana Leeched"]},"46604":{"connections":[{"id":2138,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":17,"skill":46604,"stats":["7% increased Chaos Damage"]},"46615":{"connections":[{"id":53177,"orbit":7}],"group":1281,"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"]},"46628":{"connections":[{"id":40894,"orbit":0},{"id":44872,"orbit":0},{"id":50184,"orbit":0},{"id":25337,"orbit":0},{"id":20848,"orbit":-8}],"group":429,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"46644":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"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"]},"46665":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":253,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46665,"stats":[]},"46674":{"connections":[{"id":35921,"orbit":0},{"id":64807,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":16,"skill":46674,"stats":["6% increased Area of Effect for Attacks"]},"46683":{"connections":[{"id":30553,"orbit":0}],"group":141,"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"]},"46688":{"connections":[{"id":4238,"orbit":-2}],"group":1201,"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"]},"46692":{"connections":[{"id":9393,"orbit":0}],"group":972,"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"]},"46696":{"connections":[{"id":8629,"orbit":0}],"group":398,"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"]},"46705":{"connections":[{"id":12822,"orbit":0}],"group":1056,"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"]},"46741":{"connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":22,"skill":46741,"stats":["15% increased Stun Buildup"]},"46742":{"connections":[],"flavourText":"Balance is good in all things, but especially in the realm of magic.","group":494,"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"]},"46748":{"connections":[{"id":51206,"orbit":5},{"id":60568,"orbit":-5}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":46748,"stats":["16% increased Totem Life"]},"46760":{"connections":[{"id":51534,"orbit":0},{"id":8631,"orbit":0}],"group":561,"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"]},"46761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46761,"stats":[]},"46782":{"connections":[{"id":53698,"orbit":3}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":46782,"stats":["10% increased Attack Damage"]},"46819":{"connections":[{"id":8616,"orbit":0},{"id":13909,"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":46819,"stats":["+5 to any Attribute"]},"46854":{"ascendancyName":"Deadeye","connections":[{"id":12033,"orbit":0},{"id":42416,"orbit":0}],"group":1502,"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"]},"46857":{"connections":[{"id":52971,"orbit":-2}],"group":1269,"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"]},"46874":{"connections":[{"id":7449,"orbit":0},{"id":53696,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":21,"skill":46874,"stats":["12% increased Attack Physical Damage"]},"46882":{"connections":[],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":8,"skill":46882,"stats":[]},"46887":{"connections":[{"id":43720,"orbit":-6},{"id":38463,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":6,"skill":46887,"stats":["10% increased amount of Mana Leeched"]},"46931":{"connections":[{"id":23036,"orbit":0},{"id":28175,"orbit":5}],"group":453,"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"]},"46961":{"connections":[{"id":5191,"orbit":0}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":46961,"stats":["3% increased Attack Speed"]},"46972":{"connections":[{"id":54783,"orbit":0}],"group":894,"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"]},"46989":{"connections":[],"group":861,"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"]},"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":1502,"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":[]},"47006":{"connections":[{"id":43174,"orbit":7}],"group":382,"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"]},"47009":{"connections":[{"id":37250,"orbit":-7}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":7,"orbitIndex":11,"skill":47009,"stats":["10% increased Attack Area Damage"]},"47021":{"connections":[{"id":36217,"orbit":1}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":0,"skill":47021,"stats":["15% increased Volatility Explosion delay"]},"47088":{"connections":[],"group":1040,"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"]},"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"]},"47150":{"connections":[{"id":56910,"orbit":-5}],"group":788,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":47150,"stats":["12% increased Armour and Evasion Rating"]},"47155":{"connections":[{"id":35896,"orbit":0},{"id":63545,"orbit":2},{"id":17394,"orbit":-2}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":3,"skill":47155,"stats":["Minions deal 10% increased Damage"]},"47157":{"connections":[{"id":61347,"orbit":4},{"id":54818,"orbit":0}],"group":722,"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"]},"47168":{"connections":[{"id":6006,"orbit":-4},{"id":54521,"orbit":0},{"id":55412,"orbit":-4},{"id":25570,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47173":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":47173,"stats":[]},"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":716,"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","name":"MARAUDER","orbit":0,"orbitIndex":0,"skill":47175,"stats":[]},"47177":{"connections":[],"group":935,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"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"]},"47191":{"connections":[],"group":265,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":58,"skill":47191,"stats":["12% increased Fire Damage"]},"47212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":483,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":47212,"stats":[]},"47235":{"connections":[{"id":24570,"orbit":0}],"group":1243,"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"]},"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"]},"47242":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":47242,"stats":[]},"47252":{"connections":[],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":47252,"stats":["16% increased Mana Regeneration Rate while stationary"]},"47263":{"connections":[{"id":38707,"orbit":0},{"id":18448,"orbit":0},{"id":58295,"orbit":0},{"id":60068,"orbit":0}],"group":194,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47270":{"connections":[],"group":783,"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"]},"47284":{"connections":[{"id":3332,"orbit":0}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":47284,"stats":["Minions have +20% to Cold Resistance"]},"47307":{"connections":[{"id":2254,"orbit":5}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":4,"skill":47307,"stats":["3% increased Cast Speed"]},"47312":{"ascendancyName":"Amazon","connections":[],"group":1555,"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"]},"47316":{"connections":[{"id":2888,"orbit":0},{"id":28862,"orbit":0}],"group":435,"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"]},"47344":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":3781,"orbit":0}],"group":1533,"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"]},"47359":{"connections":[{"id":14231,"orbit":-7}],"group":1233,"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"]},"47363":{"connections":[],"group":754,"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"]},"47371":{"connections":[{"id":7668,"orbit":0}],"group":367,"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"]},"47374":{"connections":[{"id":18049,"orbit":0}],"group":1307,"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"]},"47375":{"connections":[{"id":63618,"orbit":5}],"group":1482,"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"]},"47418":{"connections":[{"id":23839,"orbit":0},{"id":10738,"orbit":0}],"group":1288,"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"]},"47420":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":11048,"orbit":0},{"id":52676,"orbit":7}],"group":272,"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"]},"47429":{"connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":6,"orbitIndex":6,"skill":47429,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"47441":{"connections":[{"id":61992,"orbit":0}],"group":825,"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"]},"47442":{"ascendancyName":"Blood Mage","connections":[{"id":65518,"orbit":0}],"group":954,"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"]},"47443":{"connections":[{"id":31129,"orbit":0}],"group":1494,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":47443,"stats":["8% increased Reservation Efficiency of Companion Skills"]},"47477":{"connections":[{"id":51774,"orbit":1}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":6,"skill":47477,"stats":["15% reduced Volatility Explosion delay"]},"47514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1450,"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"]},"47517":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":47517,"stats":[]},"47555":{"connections":[{"id":51184,"orbit":0},{"id":18407,"orbit":0},{"id":39886,"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":22,"skill":47555,"stats":["+5 to any Attribute"]},"47560":{"connections":[],"group":1293,"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"]},"47591":{"connections":[{"id":9226,"orbit":-2}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":2,"orbitIndex":16,"skill":47591,"stats":["3% of Damage taken Recouped as Mana"]},"47606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":186,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":47606,"stats":[]},"47614":{"connections":[{"id":22219,"orbit":-7}],"group":1090,"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"]},"47623":{"connections":[{"id":38570,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":2,"orbitIndex":14,"skill":47623,"stats":["12% increased Grenade Damage"]},"47633":{"connectionArt":"CharacterPlanned","connections":[{"id":57002,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"47635":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1177,"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"]},"47677":{"connections":[{"id":9472,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":7,"orbitIndex":17,"skill":47677,"stats":["8% increased Projectile Speed"]},"47683":{"connections":[],"group":828,"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"]},"47709":{"connections":[{"id":63814,"orbit":0},{"id":40336,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":47709,"stats":["5% chance to inflict Bleeding on Hit"]},"47722":{"connections":[{"id":6514,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":3,"orbitIndex":4,"skill":47722,"stats":["16% increased Damage with Warcries"]},"47733":{"connections":[],"group":804,"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"]},"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"]},"47754":{"connections":[{"id":23455,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":16,"skill":47754,"stats":["10% increased Cold Damage"]},"47759":{"connections":[{"id":62677,"orbit":2147483647}],"flavourText":"Your grandchildren will awaken screaming in memory of what I utter today.","group":882,"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"]},"47782":{"connections":[{"id":38003,"orbit":4},{"id":28361,"orbit":-4}],"group":792,"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"]},"47790":{"connections":[{"id":17625,"orbit":0}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":47790,"stats":["Gain 1 Rage on Melee Hit"]},"47796":{"connections":[{"id":62640,"orbit":-4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":47796,"stats":["3% increased Attack Speed"]},"47821":{"connections":[{"id":41033,"orbit":9}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":2,"orbitIndex":17,"skill":47821,"stats":["Offering Skills have 15% increased Buff effect"]},"47831":{"connections":[{"id":8734,"orbit":0},{"id":49996,"orbit":0}],"group":1370,"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"]},"47833":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":925,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":47833,"stats":[]},"47853":{"connections":[],"group":1420,"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"]},"47856":{"connections":[{"id":32561,"orbit":0}],"group":754,"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"]},"47893":{"connections":[{"id":57774,"orbit":0}],"group":833,"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"]},"47895":{"connections":[{"id":56493,"orbit":-2}],"group":1162,"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"]},"47931":{"connections":[{"id":33722,"orbit":0},{"id":39131,"orbit":0},{"id":9324,"orbit":0},{"id":53329,"orbit":0},{"id":63170,"orbit":0}],"group":156,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47976":{"connections":[{"id":14446,"orbit":0},{"id":37876,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48006":{"connections":[{"id":33604,"orbit":0}],"group":630,"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"]},"48007":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":36302,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":48007,"stats":[]},"48014":{"connections":[],"group":212,"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"]},"48026":{"connections":[{"id":65439,"orbit":0},{"id":6623,"orbit":0}],"group":505,"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"]},"48030":{"connections":[{"id":62436,"orbit":0}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":1,"skill":48030,"stats":["15% increased maximum Energy Shield"]},"48035":{"connections":[{"id":11329,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":3,"skill":48035,"stats":["10% increased Life Regeneration rate"]},"48079":{"connectionArt":"CharacterPlanned","connections":[{"id":60014,"orbit":-7}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48103":{"connections":[{"id":52875,"orbit":0}],"group":1351,"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"]},"48116":{"connections":[{"id":21112,"orbit":0},{"id":34015,"orbit":0},{"id":18624,"orbit":0}],"group":1434,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48121":{"connections":[{"id":24438,"orbit":-5}],"group":486,"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"]},"48135":{"connections":[{"id":12750,"orbit":0}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":12,"skill":48135,"stats":["10% increased Charm Charges gained"]},"48137":{"connections":[{"id":33887,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":11,"skill":48137,"stats":["15% increased Crossbow Reload Speed"]},"48160":{"connectionArt":"CharacterPlanned","connections":[{"id":37778,"orbit":2147483647}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48171":{"connections":[],"group":249,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":13,"skill":48171,"stats":["12% increased Cold Damage"]},"48198":{"connections":[{"id":29361,"orbit":3},{"id":65437,"orbit":-5},{"id":40068,"orbit":-6},{"id":1215,"orbit":0},{"id":13411,"orbit":6}],"group":923,"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"]},"48215":{"connections":[{"id":516,"orbit":0},{"id":7201,"orbit":0},{"id":64488,"orbit":0},{"id":61347,"orbit":0}],"group":722,"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"]},"48240":{"connections":[{"id":48505,"orbit":0}],"group":462,"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"]},"48264":{"connections":[{"id":12964,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":1,"skill":48264,"stats":["Aura Skills have 5% increased Magnitudes"]},"48267":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":178,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":48267,"stats":[]},"48290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"id":55180,"orbit":0},{"id":49088,"orbit":0}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":15,"skill":48290,"stats":[]},"48305":{"connections":[{"id":37629,"orbit":6}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48314":{"connections":[{"id":61896,"orbit":5},{"id":3348,"orbit":-7},{"id":55897,"orbit":-3}],"group":102,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":48314,"stats":["3% increased Skill Speed while Shapeshifted"]},"48387":{"connections":[{"id":34415,"orbit":-4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":5,"orbitIndex":56,"skill":48387,"stats":["12% increased Physical Damage"]},"48401":{"connections":[{"id":35987,"orbit":0},{"id":61312,"orbit":0},{"id":10909,"orbit":5}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"48418":{"connections":[{"id":38235,"orbit":0}],"group":570,"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"]},"48429":{"connections":[{"id":58714,"orbit":0},{"id":36169,"orbit":0}],"group":736,"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"]},"48462":{"connections":[{"id":11094,"orbit":5},{"id":62803,"orbit":5}],"group":1329,"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"]},"48505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":462,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":18,"skill":48505,"stats":[]},"48524":{"connections":[{"id":43818,"orbit":0}],"group":472,"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"]},"48530":{"connections":[{"id":39130,"orbit":0},{"id":4623,"orbit":0}],"group":472,"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"]},"48531":{"connections":[{"id":13987,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":1,"orbitIndex":7,"skill":48531,"stats":["3% increased Melee Attack Speed"]},"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"]},"48544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":40166,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":48544,"stats":[]},"48551":{"ascendancyName":"Blood Mage","connections":[{"id":52703,"orbit":9}],"group":909,"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"]},"48552":{"connections":[{"id":43036,"orbit":0},{"id":7960,"orbit":0},{"id":23825,"orbit":0}],"group":432,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48565":{"connections":[{"id":47242,"orbit":0}],"group":262,"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"]},"48568":{"connections":[{"id":16489,"orbit":0}],"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":48568,"stats":["+5 to any Attribute"]},"48581":{"connections":[{"id":33242,"orbit":0},{"id":13387,"orbit":0}],"group":659,"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"]},"48583":{"connections":[{"id":58783,"orbit":0}],"group":896,"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"]},"48585":{"connections":[{"id":20831,"orbit":0},{"id":56325,"orbit":0}],"group":997,"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"]},"48588":{"connections":[{"id":2455,"orbit":0},{"id":13081,"orbit":0}],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":14,"skill":48588,"stats":["8% increased Projectile Damage"]},"48589":{"connections":[{"id":7922,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":11,"skill":48589,"stats":["10% increased Life Recovery from Flasks"]},"48611":{"connections":[{"id":4271,"orbit":0},{"id":46554,"orbit":0}],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":0,"skill":48611,"stats":["Minions have +8% to all Elemental Resistances"]},"48614":{"connections":[{"id":9018,"orbit":2}],"group":541,"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"]},"48617":{"connections":[{"id":1915,"orbit":0},{"id":11667,"orbit":0},{"id":15839,"orbit":0},{"id":6266,"orbit":0},{"id":2978,"orbit":0}],"group":899,"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"]},"48618":{"connections":[{"id":37327,"orbit":7}],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":12,"skill":48618,"stats":["10% increased Mana Regeneration Rate"]},"48631":{"connections":[{"id":35426,"orbit":0},{"id":59006,"orbit":-4}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48635":{"connections":[{"id":63526,"orbit":0},{"id":28361,"orbit":4},{"id":43444,"orbit":-4}],"group":789,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48649":{"connections":[{"id":51485,"orbit":0}],"group":515,"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"]},"48658":{"connections":[],"group":1089,"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"]},"48660":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":48660,"stats":[]},"48670":{"connections":[{"id":13241,"orbit":0},{"id":53589,"orbit":0},{"id":51299,"orbit":0},{"id":49231,"orbit":0},{"id":1865,"orbit":0}],"group":653,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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"]},"48699":{"connections":[{"id":14601,"orbit":0}],"group":723,"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"]},"48714":{"connections":[],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Speed","orbit":2,"orbitIndex":10,"skill":48714,"stats":["3% increased Attack Speed"]},"48717":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":199,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":7,"orbitIndex":16,"skill":48717,"stats":[]},"48734":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":1452,"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"]},"48745":{"connections":[{"id":22558,"orbit":0},{"id":7878,"orbit":-2}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":48745,"stats":["5% increased Block chance"]},"48761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connectionArt":"CharacterPlanned","connections":[],"group":479,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":48761,"stats":[],"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":1460,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48774":{"connections":[{"id":27492,"orbit":2147483647}],"group":814,"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"]},"48805":{"connections":[{"id":7782,"orbit":4},{"id":26563,"orbit":0}],"group":1132,"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"]},"48821":{"connections":[{"id":15618,"orbit":-6}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":48821,"stats":["15% increased Critical Spell Damage Bonus"]},"48828":{"connectionArt":"CharacterPlanned","connections":[{"id":34840,"orbit":0}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48833":{"connections":[{"id":4,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48833,"stats":["10% increased Lightning Damage"]},"48836":{"connections":[{"id":33542,"orbit":0}],"group":1492,"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"]},"48846":{"connections":[{"id":44566,"orbit":0}],"group":897,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48846,"stats":["12% increased Lightning Damage"]},"48856":{"connections":[{"id":17882,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":4,"skill":48856,"stats":["12% increased Grenade Damage"]},"48889":{"connections":[{"id":28038,"orbit":0},{"id":56488,"orbit":0}],"group":1174,"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"]},"48925":{"connections":[{"id":54887,"orbit":0}],"group":330,"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%"]},"48935":{"connectionArt":"CharacterPlanned","connections":[{"id":61367,"orbit":2147483647}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48974":{"connections":[{"id":47418,"orbit":0},{"id":10738,"orbit":0}],"group":1288,"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"]},"48979":{"connections":[{"id":51820,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":3,"orbitIndex":10,"skill":48979,"stats":["16% increased Totem Life"]},"49023":{"connections":[{"id":12817,"orbit":3},{"id":22975,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":1,"orbitIndex":6,"skill":49023,"stats":["5% increased Block chance"]},"49046":{"connections":[{"id":8569,"orbit":0}],"group":942,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49049":{"ascendancyName":"Chronomancer","connections":[],"group":391,"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%"]},"49088":{"connections":[{"id":17394,"orbit":7}],"group":913,"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"]},"49107":{"connections":[{"id":54562,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":14,"skill":49107,"stats":["10% increased Critical Hit Chance"]},"49110":{"connections":[{"id":54746,"orbit":-7}],"group":1106,"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"]},"49111":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":49111,"stats":[]},"49130":{"connections":[],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":19,"skill":49130,"stats":["6% reduced Projectile Speed"]},"49150":{"connections":[{"id":36759,"orbit":0}],"group":1172,"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"]},"49153":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49165":{"ascendancyName":"Deadeye","connections":[{"id":59913,"orbit":0}],"group":1502,"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"]},"49172":{"connections":[{"id":33730,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":9,"skill":49172,"stats":["3% increased Skill Speed with Channelling Skills"]},"49189":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"49192":{"connections":[{"id":43396,"orbit":0},{"id":41615,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":12,"skill":49192,"stats":["20% increased Totem Placement speed"]},"49198":{"connections":[{"id":49023,"orbit":3}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":7,"orbitIndex":22,"skill":49198,"stats":["5% increased Block chance"]},"49214":{"connections":[{"id":50767,"orbit":0}],"group":125,"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"]},"49220":{"connections":[{"id":10429,"orbit":0},{"id":44223,"orbit":-3},{"id":53960,"orbit":-6},{"id":21336,"orbit":5},{"id":36778,"orbit":6}],"group":916,"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"]},"49231":{"connections":[{"id":43183,"orbit":0}],"group":621,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":0,"skill":49231,"stats":["3% increased Attack Speed"]},"49235":{"connections":[{"id":42077,"orbit":0}],"group":712,"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"]},"49256":{"connections":[{"id":14439,"orbit":4}],"group":116,"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"]},"49258":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":49259,"stats":[]},"49280":{"connections":[{"id":36170,"orbit":3}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":49280,"stats":["12% increased Armour and Evasion Rating"]},"49285":{"connections":[{"id":364,"orbit":9}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":22,"skill":49285,"stats":["+8 to Strength"]},"49291":{"connections":[{"id":57945,"orbit":0}],"group":1250,"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"]},"49320":{"connections":[{"id":52215,"orbit":0}],"group":1444,"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"]},"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"]},"49356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1405,"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"]},"49357":{"connections":[{"id":32194,"orbit":0},{"id":51618,"orbit":-9}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"49363":{"connections":[],"flavourText":"The world is a pattern, moving in natural waves.\\nWith enough force, those waves can be made to converge...","group":548,"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"]},"49370":{"connections":[{"id":6502,"orbit":0}],"group":173,"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"]},"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"]},"49388":{"connections":[{"id":37304,"orbit":0},{"id":38215,"orbit":-7},{"id":4806,"orbit":7}],"group":1305,"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"]},"49391":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":49391,"stats":[]},"49394":{"connections":[{"id":23786,"orbit":0}],"group":1128,"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"]},"49406":{"connections":[{"id":52125,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":45,"skill":49406,"stats":["10% increased Projectile Damage"]},"49455":{"connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":5,"skill":49455,"stats":["15% increased maximum Energy Shield"]},"49461":{"connections":[{"id":50912,"orbit":2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Speed","orbit":2,"orbitIndex":23,"skill":49461,"stats":["3% increased Attack Speed"]},"49466":{"connections":[{"id":30871,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":12,"skill":49466,"stats":["10% increased Life Recovery from Flasks"]},"49473":{"connections":[{"id":61104,"orbit":0}],"group":1062,"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"]},"49485":{"connections":[{"id":12174,"orbit":-9},{"id":49107,"orbit":9}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Dexterity","orbit":2,"orbitIndex":18,"skill":49485,"stats":["+8 to Dexterity"]},"49497":{"connections":[{"id":23244,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":6,"skill":49497,"stats":["5% increased Culling Strike Threshold"]},"49503":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1519,"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"]},"49512":{"connections":[{"id":61419,"orbit":0},{"id":15885,"orbit":0},{"id":5936,"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":49512,"stats":["+5 to any Attribute"]},"49537":{"connections":[],"group":353,"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"]},"49543":{"connectionArt":"CharacterPlanned","connections":[{"id":13108,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49545":{"connections":[{"id":64851,"orbit":2}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":7,"orbitIndex":13,"skill":49545,"stats":["20% increased Parry Damage"]},"49547":{"connections":[],"flavourText":"Hope is a mistake. Pain is the only truth.","group":425,"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"]},"49550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":549,"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"]},"49593":{"connections":[{"id":4725,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":7,"orbitIndex":21,"skill":49593,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"49618":{"connections":[{"id":38663,"orbit":0},{"id":55348,"orbit":0}],"group":614,"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"]},"49633":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":815,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":49633,"stats":[]},"49642":{"connections":[{"id":4882,"orbit":0}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":1,"skill":49642,"stats":["15% increased Totem Damage"]},"49657":{"connections":[{"id":54417,"orbit":0},{"id":63526,"orbit":6},{"id":43578,"orbit":6},{"id":58109,"orbit":0}],"group":784,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"49661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1128,"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"]},"49691":{"connections":[{"id":13828,"orbit":0},{"id":31409,"orbit":0},{"id":61106,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":21,"skill":49691,"stats":["+16 to Evasion Rating"]},"49696":{"connections":[{"id":10273,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":12,"skill":49696,"stats":["+3 to all Attributes"]},"49734":{"connections":[{"id":46741,"orbit":0},{"id":9414,"orbit":0},{"id":32768,"orbit":0}],"group":229,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49740":{"connections":[{"id":27274,"orbit":0}],"group":1063,"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"]},"49759":{"ascendancyName":"Stormweaver","connections":[{"id":2857,"orbit":6}],"group":517,"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"]},"49769":{"connectionArt":"CharacterPlanned","connections":[{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49799":{"connections":[{"id":46224,"orbit":0}],"group":956,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":20,"skill":49799,"stats":["10% increased Mana Recovery from Flasks"]},"49804":{"connections":[{"id":24035,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":22,"skill":49804,"stats":["10% increased Exposure Effect"]},"49929":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":137,"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"],"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":348,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49952":{"connections":[{"id":13856,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":6,"skill":49952,"stats":["12% increased Magnitude of Ailments you inflict"]},"49968":{"connections":[{"id":20008,"orbit":0}],"group":1164,"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"]},"49976":{"connections":[{"id":62936,"orbit":7},{"id":47976,"orbit":-3}],"group":1294,"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"]},"49984":{"connections":[],"group":1231,"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"]},"49993":{"connections":[{"id":40632,"orbit":2},{"id":64434,"orbit":0},{"id":7526,"orbit":0}],"group":1174,"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"]},"49996":{"connections":[{"id":32183,"orbit":0},{"id":38215,"orbit":-4},{"id":5163,"orbit":3},{"id":33463,"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":49996,"stats":["+5 to any Attribute"]},"50023":{"connections":[{"id":4921,"orbit":0},{"id":259,"orbit":0}],"group":508,"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"]},"50062":{"connections":[{"id":37641,"orbit":0}],"group":273,"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"]},"50084":{"connections":[{"id":61525,"orbit":0}],"group":692,"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"]},"50098":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":11771,"orbit":0}],"group":1533,"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"]},"50104":{"connections":[{"id":47168,"orbit":0},{"id":37594,"orbit":0},{"id":7960,"orbit":0},{"id":46742,"orbit":0}],"group":482,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"50107":{"connections":[{"id":50881,"orbit":0}],"group":1033,"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"]},"50118":{"connections":[{"id":55450,"orbit":0}],"group":203,"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"]},"50121":{"connections":[{"id":3128,"orbit":0}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":50121,"stats":["10% increased Cold Damage"]},"50124":{"connections":[{"id":62237,"orbit":0}],"group":868,"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"]},"50142":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50146":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":3,"orbitIndex":8,"skill":50146,"stats":[]},"50150":{"connections":[{"id":37279,"orbit":0}],"group":840,"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"]},"50184":{"connectionArt":"CharacterPlanned","connections":[{"id":46069,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50192":{"ascendancyName":"Blood Mage","connections":[{"id":31223,"orbit":-9}],"group":1018,"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"]},"50216":{"connections":[{"id":44951,"orbit":3},{"id":17655,"orbit":4}],"group":610,"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"]},"50219":{"ascendancyName":"Chronomancer","connections":[{"id":42035,"orbit":0}],"group":358,"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"]},"50228":{"connections":[{"id":20511,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":50228,"stats":["10% increased Fire Damage"]},"50239":{"connections":[{"id":37434,"orbit":0}],"group":964,"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"]},"50253":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":350,"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"]},"50268":{"connections":[{"id":2446,"orbit":0}],"group":1171,"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"]},"50273":{"connections":[{"id":47893,"orbit":0},{"id":63267,"orbit":0},{"id":3131,"orbit":0}],"group":833,"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"]},"50277":{"connections":[{"id":50701,"orbit":0}],"group":1324,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50277,"stats":["15% increased Magnitude of Shock you inflict"]},"50302":{"connections":[{"id":63470,"orbit":0}],"group":410,"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"]},"50328":{"connections":[{"id":28992,"orbit":0},{"id":10053,"orbit":0}],"group":967,"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"]},"50342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":5227,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":17,"skill":50342,"stats":["15% increased Evasion Rating"]},"50383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":752,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":50383,"stats":[]},"50392":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":206,"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"]},"50403":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1373,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50403,"stats":[]},"50420":{"connections":[{"id":51241,"orbit":-2},{"id":31364,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":2,"skill":50420,"stats":["10% increased Charm Charges gained"]},"50423":{"connections":[{"id":38856,"orbit":0},{"id":23364,"orbit":0},{"id":56547,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"50437":{"connections":[{"id":35987,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":50437,"stats":["15% increased Evasion Rating"]},"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":873,"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","name":"RANGER","orbit":0,"orbitIndex":0,"skill":50459,"stats":[]},"50469":{"connections":[{"id":32701,"orbit":0}],"group":1105,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"50483":{"connections":[{"id":61842,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":22,"skill":50483,"stats":["Minions have 8% increased Area of Effect"]},"50485":{"connections":[{"id":22959,"orbit":0}],"group":960,"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"]},"50510":{"connections":[{"id":46384,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":18,"skill":50510,"stats":["5% increased Block chance"]},"50516":{"connections":[{"id":2814,"orbit":0}],"group":1010,"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"]},"50535":{"connections":[{"id":10612,"orbit":2}],"group":733,"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"]},"50540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"id":16499,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":50540,"stats":[]},"50558":{"connections":[{"id":32194,"orbit":0},{"id":12462,"orbit":0}],"group":567,"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"]},"50561":{"connections":[{"id":12418,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":18,"skill":50561,"stats":["Empowered Attacks deal 16% increased Damage"]},"50562":{"connections":[{"id":43142,"orbit":0}],"group":337,"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"]},"50574":{"connections":[{"id":19426,"orbit":0},{"id":46034,"orbit":0}],"group":1052,"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"]},"50588":{"connections":[{"id":6010,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":2,"skill":50588,"stats":["8% increased Accuracy Rating"]},"50609":{"connections":[{"id":11916,"orbit":0}],"group":801,"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"]},"50616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":252,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":50616,"stats":[]},"50626":{"connections":[{"id":32597,"orbit":0}],"group":674,"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"]},"50629":{"connections":[{"id":3218,"orbit":0},{"id":23930,"orbit":0},{"id":24430,"orbit":0}],"group":266,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":50629,"stats":["10% increased Elemental Damage"]},"50635":{"connections":[{"id":25971,"orbit":0},{"id":42750,"orbit":5},{"id":9050,"orbit":-5}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":13,"skill":50635,"stats":["3% increased Attack Speed"]},"50673":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":58526,"orbit":-2},{"id":62427,"orbit":-2}],"group":1261,"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"]},"50687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":743,"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"]},"50701":{"connections":[{"id":44932,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50701,"stats":["15% increased Magnitude of Shock you inflict"]},"50715":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"50720":{"connections":[{"id":43557,"orbit":0},{"id":11376,"orbit":-3},{"id":34199,"orbit":3},{"id":30523,"orbit":3}],"group":769,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":23,"skill":50720,"stats":["Minions deal 10% increased Damage"]},"50755":{"connections":[{"id":10131,"orbit":9},{"id":39567,"orbit":0},{"id":19355,"orbit":8}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":5,"skill":50755,"stats":["+8 to Intelligence"]},"50757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":295,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":50757,"stats":[]},"50767":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":112,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":0,"skill":50767,"stats":[]},"50795":{"connections":[{"id":58013,"orbit":0},{"id":20744,"orbit":0}],"group":952,"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"]},"50816":{"connections":[{"id":46554,"orbit":-9},{"id":39567,"orbit":0},{"id":37974,"orbit":-5}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":67,"skill":50816,"stats":["+8 to Intelligence"]},"50817":{"connections":[{"id":61355,"orbit":2}],"group":1229,"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"]},"50820":{"connections":[{"id":65472,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":17,"skill":50820,"stats":["15% increased Glory generation"]},"50837":{"connections":[{"id":14598,"orbit":0}],"group":701,"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"]},"50847":{"connections":[{"id":1130,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":7,"orbitIndex":5,"skill":50847,"stats":["10% increased Damage with Flails"]},"50879":{"connections":[{"id":14211,"orbit":7}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":4,"skill":50879,"stats":["16% increased Hazard Damage"]},"50881":{"connections":[{"id":55420,"orbit":0}],"group":1033,"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"]},"50884":{"connections":[{"id":53696,"orbit":0}],"group":1113,"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"]},"50908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50912":{"connections":[],"group":1123,"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"]},"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":786,"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","name":"DUELIST","orbit":0,"orbitIndex":0,"skill":50986,"stats":[]},"51006":{"connections":[{"id":41877,"orbit":0}],"group":1288,"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"]},"51040":{"connections":[{"id":9652,"orbit":0}],"group":1295,"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"]},"51048":{"connections":[{"id":17702,"orbit":0},{"id":58814,"orbit":0},{"id":33946,"orbit":0},{"id":30910,"orbit":0}],"group":1068,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"51052":{"connections":[{"id":22558,"orbit":0},{"id":761,"orbit":-8},{"id":51183,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51105":{"connections":[{"id":48979,"orbit":0},{"id":21127,"orbit":0}],"group":292,"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"]},"51129":{"connections":[{"id":15892,"orbit":0},{"id":48717,"orbit":0}],"group":183,"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"]},"51142":{"ascendancyName":"Lich","connections":[{"id":26085,"orbit":-4}],"group":1173,"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"]},"51169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":793,"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"]},"51183":{"connections":[{"id":45301,"orbit":0},{"id":10635,"orbit":0}],"group":419,"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"]},"51184":{"connections":[{"id":41965,"orbit":-4},{"id":29502,"orbit":6},{"id":3242,"orbit":-4}],"group":746,"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"]},"51194":{"connections":[{"id":24060,"orbit":4},{"id":18793,"orbit":-5},{"id":49512,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":0,"skill":51194,"stats":["10% increased Elemental Infusion duration"]},"51206":{"connections":[{"id":49642,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":17,"skill":51206,"stats":["15% increased Totem Damage"]},"51210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":195,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":51210,"stats":[]},"51213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":64747,"orbit":5}],"group":1122,"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"]},"51234":{"connections":[{"id":15991,"orbit":-2},{"id":27434,"orbit":7}],"group":840,"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"]},"51241":{"connections":[{"id":55118,"orbit":-2}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":10,"skill":51241,"stats":["10% increased Charm Charges gained"]},"51248":{"connections":[{"id":38292,"orbit":0},{"id":6015,"orbit":4}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":9,"skill":51248,"stats":["10% increased Fire Damage"]},"51267":{"connections":[{"id":11886,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":19,"skill":51267,"stats":["15% increased Stun Buildup"]},"51299":{"connections":[{"id":35265,"orbit":0},{"id":19802,"orbit":0},{"id":44419,"orbit":0}],"group":565,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51303":{"connections":[{"id":38965,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":1,"orbitIndex":11,"skill":51303,"stats":["10% increased Elemental Infusion duration"]},"51335":{"connections":[{"id":51968,"orbit":-6},{"id":5726,"orbit":0}],"group":747,"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"]},"51336":{"connections":[{"id":56818,"orbit":4},{"id":53965,"orbit":0}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":45,"skill":51336,"stats":["12% increased Elemental Damage with Attacks"]},"51369":{"connections":[{"id":56061,"orbit":0},{"id":45503,"orbit":0}],"group":422,"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"]},"51394":{"connections":[{"id":29993,"orbit":0}],"group":288,"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"]},"51416":{"connections":[{"id":32016,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":54,"skill":51416,"stats":["3% increased Cast Speed"]},"51446":{"connections":[{"id":53647,"orbit":-7},{"id":19750,"orbit":0}],"group":708,"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"]},"51454":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":492,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":51454,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51463":{"connections":[{"id":4364,"orbit":0}],"group":1104,"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"]},"51485":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":515,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":51485,"stats":[]},"51509":{"connections":[{"id":35848,"orbit":7},{"id":9393,"orbit":0}],"group":972,"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"]},"51522":{"connections":[{"id":56493,"orbit":-7}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":22,"skill":51522,"stats":["3% increased Attack Speed"]},"51534":{"connections":[{"id":24483,"orbit":0}],"group":561,"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"]},"51535":{"connections":[{"id":8852,"orbit":0}],"group":138,"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"]},"51546":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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 if","you have the Way of the Mountain Ascendancy Passive Skill"]},"51561":{"connections":[{"id":25312,"orbit":0},{"id":2491,"orbit":0},{"id":7716,"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":51561,"stats":["+5 to any Attribute"]},"51565":{"connections":[{"id":2335,"orbit":0},{"id":22682,"orbit":0}],"group":1191,"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"]},"51583":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":51583,"stats":[]},"51602":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1357,"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"]},"51606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":65207,"orbit":-7}],"group":1236,"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"]},"51618":{"connectionArt":"CharacterPlanned","connections":[{"id":11580,"orbit":0},{"id":43324,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51672":{"connections":[{"id":31955,"orbit":0}],"group":275,"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"]},"51683":{"connections":[],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":22,"skill":51683,"stats":["15% increased Totem Damage"]},"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"]},"51702":{"connections":[],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":16,"skill":51702,"stats":["+8 to Strength"]},"51707":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":38728,"orbit":5},{"id":41163,"orbit":0}],"group":1426,"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"]},"51708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":51708,"stats":[]},"51728":{"connections":[{"id":6505,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":2,"orbitIndex":7,"skill":51728,"stats":["15% chance to Pierce an Enemy"]},"51732":{"connections":[{"id":26568,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":16,"skill":51732,"stats":["3% increased Attack Speed"]},"51735":{"connections":[{"id":44707,"orbit":0}],"group":709,"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"]},"51737":{"ascendancyName":"Witchhunter","connections":[{"id":8272,"orbit":-8}],"group":235,"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"]},"51741":{"connections":[{"id":61834,"orbit":0},{"id":57230,"orbit":-4},{"id":57821,"orbit":0},{"id":45798,"orbit":0},{"id":15424,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51743":{"connections":[{"id":57617,"orbit":3}],"group":354,"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"]},"51749":{"connections":[{"id":30141,"orbit":0}],"flavourText":"Lay open your veins, and draw power from your own spilled life.","group":129,"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"]},"51774":{"connections":[{"id":34425,"orbit":2}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":16,"skill":51774,"stats":["15% reduced Volatility Explosion delay"]},"51788":{"connections":[{"id":5066,"orbit":-2}],"group":654,"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"]},"51795":{"connections":[{"id":32271,"orbit":-2},{"id":53632,"orbit":7}],"group":357,"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"]},"51797":{"connections":[{"id":23939,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":51797,"stats":["3% of Damage taken Recouped as Life"]},"51807":{"connections":[{"id":57089,"orbit":0}],"group":203,"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"]},"51812":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":51812,"stats":[]},"51820":{"connections":[{"id":21127,"orbit":0}],"group":292,"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"]},"51821":{"connections":[{"id":20115,"orbit":0},{"id":25014,"orbit":0},{"id":39102,"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":51821,"stats":["+5 to any Attribute"]},"51825":{"connections":[{"id":47363,"orbit":0},{"id":9164,"orbit":0},{"id":13708,"orbit":0}],"group":754,"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"]},"51832":{"connections":[{"id":47722,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":2,"orbitIndex":6,"skill":51832,"stats":["16% increased Damage with Warcries"]},"51847":{"connections":[{"id":33974,"orbit":0}],"group":839,"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"]},"51850":{"connectionArt":"CharacterPlanned","connections":[{"id":9535,"orbit":0},{"id":37434,"orbit":0}],"group":964,"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"],"unlockConstraint":{"nodes":[50239,9535,61309]}},"51867":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":386,"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"]},"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"]},"51871":{"connections":[{"id":8045,"orbit":0}],"group":1279,"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"]},"51891":{"connections":[{"id":25528,"orbit":0}],"group":1294,"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"]},"51892":{"connections":[{"id":59387,"orbit":0},{"id":64427,"orbit":0},{"id":44188,"orbit":0}],"group":930,"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"]},"51903":{"connections":[{"id":55058,"orbit":0},{"id":39347,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":17,"skill":51903,"stats":["10% increased Melee Damage"]},"51921":{"connections":[{"id":36629,"orbit":-4}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51934":{"connections":[],"group":1233,"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"]},"51944":{"connections":[{"id":49406,"orbit":0},{"id":51728,"orbit":0},{"id":47683,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":15,"skill":51944,"stats":["10% increased Projectile Damage"]},"51968":{"connections":[],"group":747,"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"]},"51974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"id":25711,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":51974,"stats":[]},"52003":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":742,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":2,"orbitIndex":18,"skill":52003,"stats":[]},"52038":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":542,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":52038,"stats":[]},"52053":{"connections":[{"id":14048,"orbit":3},{"id":24120,"orbit":-4}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":16,"skill":52053,"stats":["10% increased Mana Regeneration Rate"]},"52060":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52060,"stats":[]},"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%"]},"52106":{"connections":[{"id":44005,"orbit":0},{"id":10295,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":34,"skill":52106,"stats":["3% increased Cast Speed"]},"52115":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"52125":{"connections":[{"id":2847,"orbit":0},{"id":21721,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"52126":{"connections":[{"id":21885,"orbit":3}],"group":258,"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"]},"52180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1472,"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"]},"52191":{"connections":[{"id":57724,"orbit":-7}],"group":1247,"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"]},"52199":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":44498,"orbit":0}],"group":739,"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"]},"52215":{"connections":[{"id":56366,"orbit":0}],"group":1467,"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"]},"52220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":216,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":52220,"stats":[]},"52229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":662,"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"]},"52241":{"connections":[{"id":94,"orbit":2}],"group":907,"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"]},"52245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1431,"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"]},"52254":{"connections":[{"id":42290,"orbit":0}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":14,"skill":52254,"stats":["6% increased Curse Magnitudes"]},"52257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1412,"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"]},"52260":{"connections":[{"id":3688,"orbit":-2}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":8,"skill":52260,"stats":["Meta Skills gain 8% increased Energy"]},"52274":{"connections":[{"id":3109,"orbit":0},{"id":21077,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":9,"skill":52274,"stats":["12% increased Grenade Damage"]},"52295":{"ascendancyName":"Martial Artist","connections":[{"id":39595,"orbit":7}],"group":1510,"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"]},"52298":{"connections":[{"id":4527,"orbit":0},{"id":26725,"orbit":0},{"id":53308,"orbit":0},{"id":31805,"orbit":0},{"id":52126,"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":52298,"stats":["+5 to any Attribute"]},"52300":{"connections":[{"id":53440,"orbit":0}],"group":176,"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"]},"52319":{"connections":[{"id":48305,"orbit":-6}],"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":6,"orbitIndex":36,"skill":52319,"stats":["+5 to any Attribute"]},"52348":{"connections":[{"id":51206,"orbit":-5},{"id":34487,"orbit":0}],"group":526,"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"]},"52351":{"connections":[{"id":52260,"orbit":0}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":12,"skill":52351,"stats":["Meta Skills gain 8% increased Energy"]},"52354":{"connections":[{"id":41171,"orbit":0}],"group":975,"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"]},"52361":{"connections":[{"id":26107,"orbit":7}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":2,"orbitIndex":9,"skill":52361,"stats":["10% increased Projectile Damage"]},"52373":{"connections":[{"id":37276,"orbit":-2},{"id":56342,"orbit":7}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":20,"skill":52373,"stats":["+2 to Maximum Rage"]},"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"]},"52392":{"connections":[{"id":25934,"orbit":0}],"group":401,"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"]},"52395":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":56331,"orbit":0},{"id":26283,"orbit":0},{"id":664,"orbit":0}],"group":1533,"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":[]},"52399":{"connections":[{"id":9444,"orbit":0}],"group":1462,"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"]},"52410":{"connections":[],"group":1442,"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"]},"52415":{"connections":[{"id":32655,"orbit":0}],"group":1291,"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"]},"52429":{"connections":[{"id":58930,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":13,"skill":52429,"stats":["3% increased Cast Speed"]},"52440":{"connections":[{"id":53893,"orbit":0}],"group":203,"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"]},"52442":{"connections":[],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":52442,"stats":["3% increased Attack Speed"]},"52445":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52445,"stats":[]},"52448":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"52454":{"connections":[{"id":46604,"orbit":3}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":21,"skill":52454,"stats":["7% increased Chaos Damage"]},"52462":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":466,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":52462,"stats":[]},"52464":{"connections":[],"group":1231,"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"]},"52501":{"connections":[{"id":60700,"orbit":2147483647}],"group":1219,"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"]},"52537":{"connections":[],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Penetration","orbit":2,"orbitIndex":13,"skill":52537,"stats":["10% increased Magnitude of Chill you inflict"]},"52556":{"connections":[{"id":16347,"orbit":-7},{"id":28304,"orbit":0}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":8,"skill":52556,"stats":["+2 to Maximum Rage"]},"52568":{"connections":[{"id":3665,"orbit":-7},{"id":62779,"orbit":0}],"group":987,"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"]},"52574":{"connections":[{"id":55478,"orbit":-7}],"group":630,"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"]},"52576":{"connections":[{"id":64550,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":9,"skill":52576,"stats":["20% increased Damage against Immobilised Enemies"]},"52615":{"connections":[],"group":1362,"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"]},"52618":{"connections":[{"id":32777,"orbit":0}],"group":320,"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"]},"52630":{"connections":[{"id":61800,"orbit":0},{"id":28371,"orbit":0}],"group":1364,"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"]},"52659":{"connections":[{"id":10362,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":20,"skill":52659,"stats":["10% increased Life Regeneration rate"]},"52676":{"connections":[],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":7,"orbitIndex":3,"skill":52676,"stats":["16% increased Minion Duration"]},"52684":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":8115,"orbit":0}],"group":664,"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"]},"52695":{"connections":[{"id":57230,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":1,"skill":52695,"stats":["10% increased Physical Damage"]},"52703":{"ascendancyName":"Blood Mage","connections":[],"group":940,"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"]},"52743":{"connections":[{"id":34541,"orbit":0}],"group":1370,"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"]},"52746":{"connections":[{"id":9796,"orbit":0},{"id":64471,"orbit":3}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":52746,"stats":["12% increased Fire Damage"]},"52764":{"connections":[{"id":47606,"orbit":0}],"group":186,"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"]},"52765":{"connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":52765,"stats":["10% increased Mana Regeneration Rate"]},"52774":{"connections":[{"id":5084,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":52774,"stats":["30% increased Flammability Magnitude"]},"52796":{"connections":[{"id":30371,"orbit":-6}],"group":177,"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"]},"52799":{"connections":[{"id":47270,"orbit":-4},{"id":19955,"orbit":4},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":3,"orbitIndex":0,"skill":52799,"stats":["15% increased Freeze Buildup"]},"52800":{"connections":[{"id":57615,"orbit":0}],"group":1492,"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"]},"52803":{"connections":[{"id":59356,"orbit":0}],"group":1249,"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"]},"52807":{"connections":[{"id":60551,"orbit":0},{"id":61836,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":52807,"stats":["15% increased Presence Area of Effect"]},"52829":{"connections":[{"id":375,"orbit":0}],"group":126,"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"]},"52836":{"connections":[{"id":11980,"orbit":7},{"id":56806,"orbit":0}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":66,"skill":52836,"stats":["5% increased Block chance"]},"52860":{"connections":[{"id":45494,"orbit":0},{"id":40975,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":12,"skill":52860,"stats":["15% increased Ballista damage"]},"52875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1351,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":52875,"stats":[]},"52971":{"connections":[{"id":21227,"orbit":-2},{"id":25528,"orbit":0}],"group":1294,"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"]},"52973":{"connections":[{"id":12851,"orbit":0},{"id":57555,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":2,"orbitIndex":11,"skill":52973,"stats":["15% chance to Impale on Spell Hit"]},"52980":{"connections":[{"id":18970,"orbit":0},{"id":44343,"orbit":-4}],"group":923,"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"]},"52993":{"connectionArt":"CharacterPlanned","connections":[{"id":9414,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53030":{"connections":[{"id":11525,"orbit":0},{"id":48267,"orbit":0}],"group":178,"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"]},"53089":{"connections":[{"id":9918,"orbit":0},{"id":10474,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":53089,"stats":["6% increased Area of Effect for Attacks"]},"53094":{"connections":[{"id":38703,"orbit":0},{"id":51048,"orbit":0}],"group":1099,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":20,"skill":53094,"stats":["8% increased Accuracy Rating"]},"53108":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36822,"orbit":0}],"group":532,"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"]},"53123":{"connections":[{"id":8421,"orbit":-2},{"id":54982,"orbit":-2},{"id":5862,"orbit":-2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","name":"Shaman","orbit":7,"orbitIndex":18,"skill":53123,"stats":["+3% to all Elemental Resistances"]},"53131":{"connections":[{"id":7060,"orbit":0},{"id":46665,"orbit":0}],"group":255,"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"]},"53149":{"connections":[{"id":24647,"orbit":-5}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":22,"skill":53149,"stats":["15% increased Freeze Buildup"]},"53150":{"connections":[{"id":15270,"orbit":0},{"id":17589,"orbit":0}],"group":1403,"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"]},"53166":{"connections":[{"id":26194,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":21,"skill":53166,"stats":["20% increased Presence Area of Effect"]},"53177":{"connections":[{"id":43944,"orbit":2147483647}],"group":1281,"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"]},"53185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1449,"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"]},"53187":{"connections":[{"id":35011,"orbit":0},{"id":57775,"orbit":0}],"group":426,"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"]},"53188":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":53188,"stats":[]},"53194":{"connections":[{"id":38130,"orbit":3}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":16,"skill":53194,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"53196":{"connections":[{"id":46692,"orbit":0}],"group":972,"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"]},"53207":{"connections":[{"id":47635,"orbit":0},{"id":56914,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":1,"orbitIndex":4,"skill":53207,"stats":["Damage Penetrates 6% Lightning Resistance"]},"53216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":258,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":53216,"stats":[]},"53261":{"connections":[{"id":30780,"orbit":-2}],"group":122,"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"]},"53265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1429,"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"]},"53266":{"connections":[{"id":13576,"orbit":0},{"id":20387,"orbit":0},{"id":53560,"orbit":0}],"group":955,"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"]},"53272":{"connections":[{"id":2560,"orbit":0},{"id":2582,"orbit":0}],"group":1472,"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"]},"53280":{"ascendancyName":"Martial Artist","connections":[{"id":41751,"orbit":3}],"group":1510,"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"]},"53294":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":33397,"orbit":0}],"group":546,"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"]},"53308":{"connections":[{"id":17138,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":5,"skill":53308,"stats":["10% increased Melee Damage"]},"53320":{"connections":[{"id":43791,"orbit":0}],"group":667,"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"]},"53324":{"connections":[],"group":455,"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"]},"53329":{"connections":[{"id":64724,"orbit":0}],"group":178,"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"]},"53354":{"connections":[{"id":36250,"orbit":4},{"id":33408,"orbit":5},{"id":20289,"orbit":0}],"group":118,"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"]},"53367":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":505,"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"]},"53373":{"connections":[{"id":39517,"orbit":3},{"id":36629,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":4,"orbitIndex":45,"skill":53373,"stats":["12% increased Stun Threshold"]},"53386":{"connections":[{"id":57388,"orbit":0}],"group":228,"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"]},"53396":{"connections":[{"id":10156,"orbit":6}],"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":6,"orbitIndex":12,"skill":53396,"stats":["+5 to any Attribute"]},"53405":{"connections":[{"id":17468,"orbit":0},{"id":16090,"orbit":6},{"id":26798,"orbit":4},{"id":8693,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"53440":{"connections":[{"id":11306,"orbit":0}],"group":176,"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"]},"53443":{"connections":[{"id":5710,"orbit":-6},{"id":59767,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":8,"skill":53443,"stats":["10% increased Attack Area Damage"]},"53444":{"connections":[{"id":752,"orbit":5}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":4,"orbitIndex":31,"skill":53444,"stats":["12% increased Minion Duration"]},"53471":{"connections":[{"id":11836,"orbit":0}],"group":1243,"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"]},"53505":{"connections":[{"id":21468,"orbit":6}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":18,"skill":53505,"stats":["Leech Life 8% faster"]},"53524":{"connections":[{"id":32727,"orbit":0}],"group":683,"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"]},"53527":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"53539":{"connections":[{"id":46705,"orbit":0},{"id":13379,"orbit":0}],"group":1056,"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"]},"53560":{"connections":[{"id":46157,"orbit":0}],"group":988,"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"]},"53566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1104,"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"]},"53589":{"connections":[{"id":25374,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"53595":{"connections":[{"id":29458,"orbit":7},{"id":38628,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":19,"skill":53595,"stats":["10% increased Magnitude of Poison you inflict"]},"53607":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"53632":{"connections":[{"id":28482,"orbit":3}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":2,"orbitIndex":8,"skill":53632,"stats":["12% increased Fire Damage"]},"53647":{"connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":12,"skill":53647,"stats":["12% increased Armour and Evasion Rating"]},"53675":{"connections":[{"id":59498,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":0,"skill":53675,"stats":["15% increased Presence Area of Effect"]},"53683":{"connections":[{"id":30082,"orbit":0},{"id":61432,"orbit":0}],"group":921,"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"]},"53696":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":53696,"stats":[]},"53697":{"connections":[{"id":47555,"orbit":7},{"id":3041,"orbit":-3}],"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":5,"orbitIndex":26,"skill":53697,"stats":["+5 to any Attribute"]},"53698":{"connections":[{"id":20916,"orbit":-3},{"id":59355,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":53698,"stats":["10% increased Attack Damage"]},"53719":{"connections":[{"id":27082,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"53762":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36728,"orbit":2147483647}],"group":521,"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"]},"53771":{"connections":[{"id":52361,"orbit":-2}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":9,"skill":53771,"stats":["10% increased Projectile Damage"]},"53785":{"connections":[{"id":1170,"orbit":0},{"id":23307,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":18,"skill":53785,"stats":["6% increased Area of Effect for Attacks"]},"53795":{"connections":[{"id":62210,"orbit":5},{"id":53324,"orbit":-4},{"id":64804,"orbit":-5}],"group":455,"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"]},"53804":{"connections":[{"id":56112,"orbit":7}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":4,"orbitIndex":48,"skill":53804,"stats":["10% increased Fire Damage"]},"53822":{"connections":[],"group":133,"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"]},"53823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":10508,"orbit":-3}],"group":177,"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"]},"53853":{"connections":[{"id":57320,"orbit":0}],"group":697,"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"]},"53893":{"connections":[{"id":21784,"orbit":0}],"group":203,"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"]},"53895":{"connections":[{"id":17303,"orbit":2}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Fuse Duration","orbit":3,"orbitIndex":8,"skill":53895,"stats":["15% reduced Grenade Detonation Time"]},"53901":{"connections":[{"id":34375,"orbit":7}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":3,"orbitIndex":12,"skill":53901,"stats":["5% increased Block chance"]},"53910":{"connectionArt":"CharacterPlanned","connections":[{"id":9212,"orbit":0},{"id":58368,"orbit":7}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":58838,"orbit":0},{"id":40596,"orbit":0}],"group":305,"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"]},"53935":{"connections":[{"id":10677,"orbit":2},{"id":25281,"orbit":0}],"group":995,"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"]},"53938":{"connections":[{"id":36931,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":18,"skill":53938,"stats":["10% increased Attack Damage"]},"53941":{"connections":[{"id":17283,"orbit":0}],"group":1109,"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"]},"53958":{"connections":[{"id":51006,"orbit":2}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":53958,"stats":["10% increased Mana Recovery from Flasks"]},"53960":{"connections":[{"id":8975,"orbit":-5}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"53965":{"connections":[{"id":12337,"orbit":0}],"group":1026,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":53965,"stats":["Damage Penetrates 6% Lightning Resistance"]},"53975":{"connections":[{"id":33254,"orbit":0}],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":8,"skill":53975,"stats":["10% increased Spell Damage"]},"53989":{"connections":[{"id":29372,"orbit":8}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":6,"orbitIndex":59,"skill":53989,"stats":["Gain 1 Rage on Melee Hit"]},"53996":{"connections":[{"id":9941,"orbit":7},{"id":28556,"orbit":3}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":22,"skill":53996,"stats":["8% increased Melee Damage"]},"54031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1409,"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"]},"54036":{"connections":[{"id":30720,"orbit":0},{"id":15809,"orbit":-7},{"id":17501,"orbit":-7},{"id":18485,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":3,"orbitIndex":2,"skill":54036,"stats":["Minions deal 10% increased Damage"]},"54058":{"connections":[{"id":62001,"orbit":0}],"group":1477,"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"]},"54067":{"connections":[{"id":27626,"orbit":0},{"id":2244,"orbit":-4}],"group":431,"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"]},"54099":{"connections":[{"id":8493,"orbit":0},{"id":2847,"orbit":0},{"id":55700,"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":0,"orbitIndex":0,"skill":54099,"stats":["+5 to any Attribute"]},"54127":{"connections":[{"id":54282,"orbit":0},{"id":15182,"orbit":0},{"id":56978,"orbit":0}],"group":796,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":54127,"stats":[]},"54138":{"connections":[{"id":38564,"orbit":0},{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":2,"orbitIndex":12,"skill":54138,"stats":["3% increased Attack Speed with Swords"]},"54148":{"connections":[{"id":52746,"orbit":0},{"id":56934,"orbit":0}],"group":558,"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"]},"54152":{"connections":[{"id":43453,"orbit":0}],"group":1347,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":54152,"stats":["3% increased Movement Speed while Sprinting"]},"54176":{"connections":[{"id":55463,"orbit":0},{"id":26598,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54176,"stats":["15% increased chance to Shock"]},"54194":{"ascendancyName":"Chronomancer","connections":[{"id":10987,"orbit":0}],"group":358,"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"]},"54198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":54198,"stats":[]},"54228":{"connections":[{"id":64240,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":2,"skill":54228,"stats":["10% increased Physical Damage"]},"54232":{"connections":[{"id":44659,"orbit":5}],"group":661,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54282":{"connections":[{"id":52125,"orbit":0},{"id":11066,"orbit":2147483647}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"54283":{"connections":[{"id":26324,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":21,"skill":54283,"stats":["15% increased Armour"]},"54288":{"connections":[{"id":35966,"orbit":7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":54288,"stats":["3% of Damage taken Recouped as Life"]},"54289":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54297":{"connectionArt":"CharacterPlanned","connections":[{"id":25678,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54311":{"connections":[{"id":28482,"orbit":7}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":54311,"stats":["30% increased Flammability Magnitude"]},"54340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":368,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":2,"orbitIndex":3,"skill":54340,"stats":[]},"54351":{"connections":[{"id":52464,"orbit":-6}],"group":1231,"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"]},"54378":{"connections":[{"id":26863,"orbit":0},{"id":58198,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":13,"skill":54378,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"54380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":434,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":54380,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54413":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":3,"orbitIndex":10,"skill":54413,"stats":[]},"54416":{"connections":[{"id":60274,"orbit":4}],"group":153,"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"]},"54417":{"connections":[],"group":784,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"54437":{"connections":[{"id":16111,"orbit":-5},{"id":2397,"orbit":0},{"id":8493,"orbit":0}],"group":666,"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"]},"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":780,"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","name":"WITCH","orbit":0,"orbitIndex":0,"skill":54447,"stats":[]},"54453":{"connections":[{"id":19006,"orbit":0},{"id":61042,"orbit":0}],"group":639,"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"]},"54485":{"connections":[{"id":25482,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":54485,"stats":["+8 to Strength"]},"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"]},"54521":{"connections":[{"id":13537,"orbit":5},{"id":58789,"orbit":0},{"id":22185,"orbit":4}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54545":{"connections":[{"id":38342,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":0,"skill":54545,"stats":["15% increased Magnitude of Daze"]},"54557":{"connections":[{"id":9421,"orbit":-6}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":2,"skill":54557,"stats":["Damage Penetrates 6% Cold Resistance"]},"54562":{"connections":[{"id":2745,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":10,"skill":54562,"stats":["10% increased Critical Hit Chance"]},"54631":{"connections":[{"id":30132,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":54631,"stats":["6% increased bonuses gained from Equipped Quiver"]},"54632":{"connections":[{"id":36507,"orbit":0}],"group":711,"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"]},"54640":{"connections":[{"id":64042,"orbit":0}],"group":420,"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"]},"54675":{"connections":[{"id":58814,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":54675,"stats":["10% increased Lightning Damage"]},"54676":{"connections":[{"id":39759,"orbit":0},{"id":37612,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":15,"skill":54676,"stats":["10% increased Life Regeneration rate"]},"54678":{"connections":[{"id":41877,"orbit":0}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54678,"stats":["15% increased chance to Shock"]},"54701":{"connections":[{"id":21089,"orbit":2},{"id":1286,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":16,"skill":54701,"stats":["16% increased Thorns damage"]},"54708":{"connections":[{"id":13855,"orbit":0},{"id":3918,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":11,"skill":54708,"stats":["10% increased Mana Regeneration Rate"]},"54725":{"connections":[{"id":56336,"orbit":0}],"group":1245,"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"]},"54733":{"connections":[{"id":5314,"orbit":-4}],"group":843,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":55,"skill":54733,"stats":["15% increased Effect of Puppet Master"]},"54746":{"connections":[{"id":14343,"orbit":7}],"group":1096,"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"]},"54783":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":895,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":10,"skill":54783,"stats":[]},"54785":{"connections":[{"id":32885,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":7,"skill":54785,"stats":["5% increased Block chance"]},"54805":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":1077,"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"]},"54811":{"connections":[{"id":13474,"orbit":0}],"group":399,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54814":{"connections":[{"id":16114,"orbit":0}],"group":445,"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"]},"54818":{"connections":[{"id":18801,"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":0,"orbitIndex":0,"skill":54818,"stats":["+5 to any Attribute"]},"54838":{"ascendancyName":"Tactician","connections":[],"group":339,"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"]},"54849":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":226,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":54849,"stats":[]},"54883":{"connections":[{"id":34473,"orbit":-2}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":54883,"stats":["7% increased Chaos Damage"]},"54886":{"connections":[{"id":56997,"orbit":-4}],"group":443,"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"]},"54887":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":330,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":54887,"stats":[]},"54892":{"ascendancyName":"Tactician","connections":[{"id":44371,"orbit":0}],"group":370,"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"]},"54911":{"connections":[{"id":11505,"orbit":0},{"id":39716,"orbit":0}],"group":602,"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"]},"54923":{"connections":[{"id":27638,"orbit":2147483647}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":7,"skill":54923,"stats":["15% increased Glory generation"]},"54934":{"connections":[{"id":15494,"orbit":0}],"group":619,"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"]},"54937":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":133,"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"]},"54962":{"connections":[{"id":35849,"orbit":0}],"group":248,"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"]},"54964":{"connections":[{"id":23078,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":16,"skill":54964,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"54975":{"connections":[{"id":7526,"orbit":-9}],"group":1217,"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"]},"54982":{"connections":[{"id":34818,"orbit":-9}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":7,"skill":54982,"stats":["+5% to Fire Resistance"]},"54983":{"connections":[{"id":39369,"orbit":3}],"group":1485,"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"]},"54984":{"connections":[{"id":34015,"orbit":0},{"id":34702,"orbit":-4},{"id":55118,"orbit":0},{"id":37951,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54985":{"connections":[{"id":14602,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":7,"skill":54985,"stats":["8% increased Bolt Speed"]},"54990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":727,"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"]},"54998":{"connections":[{"id":29993,"orbit":0}],"group":288,"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"]},"54999":{"connections":[{"id":14511,"orbit":-3}],"group":122,"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"]},"55011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":550,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":55011,"stats":[]},"55033":{"connectionArt":"CharacterPlanned","connections":[{"id":17059,"orbit":-3}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55041":{"connections":[{"id":35564,"orbit":0}],"group":1191,"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"]},"55048":{"connections":[],"flavourText":"Embrace the pain, drink it in.\\nYour enemies will know your agony tenfold.","group":201,"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"]},"55058":{"connections":[{"id":63790,"orbit":0}],"group":212,"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"]},"55060":{"connections":[{"id":33037,"orbit":0},{"id":45576,"orbit":0}],"group":828,"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"]},"55063":{"connections":[{"id":51535,"orbit":4}],"group":138,"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"]},"55066":{"connections":[{"id":19796,"orbit":0}],"group":750,"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"]},"55088":{"connections":[{"id":61196,"orbit":5}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":55088,"stats":["10% increased Critical Hit Chance"]},"55101":{"connections":[{"id":58016,"orbit":7}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":55101,"stats":["10% increased Elemental Damage"]},"55104":{"connections":[{"id":33254,"orbit":-7},{"id":19125,"orbit":7}],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":22,"skill":55104,"stats":["10% increased Spell Damage"]},"55118":{"connections":[{"id":50420,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":18,"skill":55118,"stats":["10% increased Charm Charges gained"]},"55131":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":641,"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"]},"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"]},"55149":{"connections":[],"group":1284,"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"]},"55152":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":3,"orbitIndex":1,"skill":55152,"stats":[]},"55180":{"connections":[],"group":913,"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"]},"55190":{"connections":[],"group":95,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":0,"skill":55190,"stats":[]},"55193":{"connections":[{"id":10944,"orbit":-2}],"group":1215,"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"]},"55227":{"connections":[{"id":29479,"orbit":0},{"id":15829,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":13,"skill":55227,"stats":["10% increased amount of Mana Leeched"]},"55231":{"connections":[{"id":37361,"orbit":0},{"id":9857,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":7,"orbitIndex":13,"skill":55231,"stats":["5% chance to inflict Bleeding on Hit"]},"55235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":63830,"orbit":0},{"id":44756,"orbit":0},{"id":36976,"orbit":0}],"group":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"name":"Mark Mastery","orbit":1,"orbitIndex":4,"skill":55235,"stats":[]},"55241":{"connections":[{"id":38614,"orbit":0}],"group":1011,"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"]},"55250":{"connections":[{"id":56649,"orbit":-4},{"id":41669,"orbit":4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":4,"orbitIndex":30,"skill":55250,"stats":["Damage Penetrates 6% Cold Resistance"]},"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"]},"55270":{"connections":[{"id":60083,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":1,"skill":55270,"stats":["15% increased Pin Buildup"]},"55275":{"connections":[{"id":12890,"orbit":6}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":2,"skill":55275,"stats":["15% increased Evasion Rating"]},"55276":{"connections":[{"id":13411,"orbit":5}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":38313,"orbit":0},{"id":30701,"orbit":0}],"group":418,"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"]},"55329":{"connections":[{"id":42036,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":4,"orbitIndex":12,"skill":55329,"stats":["15% increased Parried Debuff Duration"]},"55342":{"connections":[{"id":17248,"orbit":-5}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":23227,"orbit":0}],"group":615,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":55348,"stats":[]},"55375":{"connections":[{"id":62748,"orbit":0}],"group":333,"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%"]},"55377":{"connections":[{"id":26211,"orbit":0},{"id":33463,"orbit":0}],"group":1318,"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"]},"55397":{"connections":[{"id":44527,"orbit":0}],"group":980,"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"]},"55400":{"connections":[{"id":30372,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":5,"skill":55400,"stats":["Damage Penetrates 6% Lightning Resistance"]},"55405":{"connections":[{"id":25620,"orbit":0}],"group":1066,"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"]},"55412":{"connections":[{"id":22538,"orbit":0},{"id":17796,"orbit":-4}],"group":608,"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"]},"55420":{"connections":[{"id":30061,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":0,"skill":55420,"stats":["6% increased Curse Magnitudes"]},"55422":{"connections":[{"id":54640,"orbit":4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":17,"skill":55422,"stats":["12% increased Physical Damage"]},"55429":{"connections":[{"id":22049,"orbit":0}],"group":1041,"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"]},"55450":{"connections":[{"id":57089,"orbit":0},{"id":34443,"orbit":0}],"group":203,"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"]},"55463":{"connections":[{"id":27875,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":14,"skill":55463,"stats":["15% increased chance to Shock"]},"55473":{"connections":[{"id":43164,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":23,"skill":55473,"stats":["8% increased Melee Damage"]},"55478":{"connections":[{"id":48006,"orbit":4},{"id":16168,"orbit":-3}],"group":630,"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"]},"55491":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":446,"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"name":"Reservation Mastery","orbit":1,"orbitIndex":7,"skill":55491,"stats":[]},"55507":{"connections":[{"id":22359,"orbit":-6},{"id":38338,"orbit":6}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":16,"skill":55507,"stats":["10% increased Elemental Damage"]},"55536":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":34882,"orbit":2147483647},{"id":1442,"orbit":0},{"id":3084,"orbit":2147483647}],"group":457,"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":[]},"55554":{"connections":[{"id":8821,"orbit":0},{"id":22271,"orbit":0}],"group":859,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":55554,"stats":["15% increased chance to Shock"]},"55568":{"connections":[{"id":41522,"orbit":0},{"id":44690,"orbit":0}],"group":1071,"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"]},"55572":{"connections":[{"id":57626,"orbit":0}],"group":822,"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"]},"55575":{"connections":[{"id":58002,"orbit":0}],"group":970,"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"]},"55582":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":60287,"orbit":2147483647}],"group":384,"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"]},"55596":{"connections":[{"id":8509,"orbit":0}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":16,"skill":55596,"stats":["15% increased Critical Damage Bonus"]},"55598":{"connections":[{"id":15644,"orbit":4},{"id":9112,"orbit":-3},{"id":28050,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":2,"skill":55598,"stats":["15% increased Elemental Ailment Threshold"]},"55611":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":-2}],"group":1505,"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"]},"55617":{"connections":[{"id":29914,"orbit":0},{"id":19546,"orbit":2}],"group":453,"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"]},"55621":{"connections":[{"id":38537,"orbit":-3}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":16,"skill":55621,"stats":["10% increased Critical Hit Chance"]},"55635":{"connections":[{"id":52440,"orbit":0},{"id":51807,"orbit":0},{"id":33722,"orbit":0}],"group":203,"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"]},"55664":{"connections":[{"id":31826,"orbit":-3}],"group":1339,"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"]},"55668":{"connections":[{"id":25557,"orbit":0},{"id":47754,"orbit":0},{"id":55420,"orbit":0}],"group":1032,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"55672":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":5,"orbitIndex":46,"skill":55672,"stats":["10% increased Accuracy Rating while Shapeshifted"]},"55680":{"connections":[{"id":61112,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":14,"skill":55680,"stats":["3% increased Attack Speed with Spears"]},"55700":{"connections":[{"id":44983,"orbit":2147483647}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":8,"skill":55700,"stats":["+3 to all Attributes"]},"55708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":879,"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"]},"55724":{"connections":[{"id":42714,"orbit":0}],"group":1300,"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"]},"55746":{"connections":[{"id":61935,"orbit":-2}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":4,"skill":55746,"stats":["Gain 1 Rage on Melee Hit"]},"55789":{"connections":[{"id":41665,"orbit":-2}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":3,"skill":55789,"stats":["15% increased Critical Damage Bonus"]},"55796":{"ascendancyName":"Amazon","connections":[{"id":43095,"orbit":0}],"group":1543,"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"]},"55802":{"connections":[{"id":2847,"orbit":0},{"id":3717,"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":55802,"stats":["+5 to any Attribute"]},"55807":{"connections":[{"id":6686,"orbit":-4}],"group":757,"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"]},"55817":{"connections":[{"id":58674,"orbit":0}],"group":665,"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"]},"55829":{"connections":[{"id":1420,"orbit":2147483647}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":0,"skill":55829,"stats":["6% increased Area of Effect for Attacks"]},"55835":{"connections":[{"id":52537,"orbit":2147483647},{"id":20909,"orbit":-9},{"id":7023,"orbit":0}],"group":1422,"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"]},"55843":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":433,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":55843,"stats":[]},"55846":{"connections":[{"id":24239,"orbit":0}],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":5,"skill":55846,"stats":["Gain 5 Life per enemy killed"]},"55847":{"connections":[{"id":27274,"orbit":0}],"group":1063,"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"]},"55872":{"connections":[],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":3,"orbitIndex":23,"skill":55872,"stats":["Offering Skills have 15% increased Buff effect"]},"55888":{"connections":[{"id":18746,"orbit":0},{"id":49256,"orbit":0},{"id":440,"orbit":0}],"group":117,"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"]},"55897":{"connectionArt":"CharacterPlanned","connections":[{"id":14432,"orbit":0}],"group":111,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55909":{"connections":[{"id":64046,"orbit":0}],"group":747,"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":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"55925":{"connections":[{"id":37290,"orbit":0}],"group":180,"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"]},"55930":{"connections":[{"id":40687,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":16,"skill":55930,"stats":["15% increased Glory generation"]},"55931":{"connections":[{"id":62034,"orbit":0},{"id":62313,"orbit":0}],"group":144,"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"]},"55933":{"connections":[{"id":60886,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55938":{"connections":[{"id":41394,"orbit":7}],"group":1102,"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"]},"55947":{"connections":[{"id":46088,"orbit":3}],"group":1064,"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"]},"55995":{"connections":[{"id":41873,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":55995,"stats":["20% increased Frenzy Charge Duration"]},"56016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":65149,"orbit":-8},{"id":35594,"orbit":2147483647}],"group":990,"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"]},"56023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1322,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56023,"stats":[]},"56045":{"connections":[{"id":24647,"orbit":4},{"id":11604,"orbit":0}],"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":0,"orbitIndex":0,"skill":56045,"stats":["+5 to any Attribute"]},"56061":{"connections":[],"group":422,"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"]},"56063":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":950,"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"]},"56090":{"connectionArt":"CharacterPlanned","connections":[{"id":59136,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56104":{"connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":16,"skill":56104,"stats":["Break 20% increased Armour"]},"56112":{"connections":[{"id":42059,"orbit":-2},{"id":49259,"orbit":0}],"group":227,"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"]},"56118":{"connections":[{"id":19341,"orbit":-5},{"id":22976,"orbit":0}],"group":891,"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"]},"56162":{"ascendancyName":"Blood Mage","connections":[{"id":50192,"orbit":-9}],"group":954,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56214":{"connections":[{"id":30334,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":3,"skill":56214,"stats":["8% increased Ignite Duration on Enemies"]},"56216":{"connections":[{"id":9485,"orbit":0}],"group":818,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56219":{"connections":[{"id":52764,"orbit":-2}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":7,"orbitIndex":2,"skill":56219,"stats":["Inherent loss of Rage is 15% slower"]},"56237":{"connections":[{"id":1825,"orbit":0}],"group":167,"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"]},"56265":{"connections":[{"id":42802,"orbit":0}],"group":1451,"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"]},"56284":{"connections":[{"id":1928,"orbit":-2}],"group":523,"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"]},"56320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connectionArt":"CharacterPlanned","connections":[],"group":413,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":56320,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56325":{"connections":[{"id":21280,"orbit":0}],"group":1024,"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"]},"56330":{"connections":[{"id":39570,"orbit":2147483647}],"group":1128,"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"]},"56331":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1539,"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"]},"56334":{"connections":[{"id":46171,"orbit":7},{"id":41753,"orbit":0}],"group":1440,"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"]},"56336":{"connections":[{"id":21208,"orbit":0}],"group":1245,"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"]},"56342":{"connections":[{"id":7341,"orbit":3}],"group":346,"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"]},"56349":{"connections":[],"flavourText":"Give up everything in pursuit of greatness - even life itself.","group":1240,"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"]},"56360":{"connections":[{"id":24812,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":19,"skill":56360,"stats":["20% increased Power Charge Duration"]},"56366":{"connections":[{"id":35755,"orbit":0}],"group":1477,"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"]},"56368":{"connections":[{"id":61393,"orbit":-4}],"group":124,"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"]},"56388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":685,"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"]},"56409":{"connections":[{"id":25101,"orbit":0},{"id":43139,"orbit":0},{"id":65248,"orbit":0}],"group":739,"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"]},"56453":{"connections":[{"id":37691,"orbit":0}],"group":1231,"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"]},"56466":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56472":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56472,"stats":[]},"56488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1174,"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"]},"56489":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"56493":{"connections":[],"group":1162,"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"]},"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"]},"56547":{"connections":[{"id":12189,"orbit":4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":21,"skill":56547,"stats":["12% increased Damage with Plant Skills"]},"56564":{"connections":[{"id":8349,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":15,"skill":56564,"stats":["+8 to Intelligence"]},"56567":{"connections":[{"id":151,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":11,"skill":56567,"stats":["8% increased Accuracy Rating"]},"56595":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":443,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":56595,"stats":[]},"56605":{"connections":[],"flavourText":"In battle, certainty is worth a little pain.","group":484,"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"]},"56616":{"connections":[{"id":13562,"orbit":3},{"id":41415,"orbit":0}],"group":588,"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"]},"56618":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1520,"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"]},"56638":{"connections":[],"group":995,"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"]},"56640":{"connections":[{"id":10398,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":7,"orbitIndex":0,"skill":56640,"stats":["15% increased Critical Spell Damage Bonus"]},"56649":{"connections":[{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":8,"skill":56649,"stats":["Damage Penetrates 6% Cold Resistance"]},"56651":{"connections":[{"id":38143,"orbit":0}],"group":888,"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"]},"56666":{"connections":[],"group":703,"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"]},"56701":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":56701,"stats":[]},"56703":{"connections":[{"id":15782,"orbit":0},{"id":28839,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":8,"skill":56703,"stats":["3% increased Cast Speed"]},"56714":{"connections":[{"id":47212,"orbit":0}],"group":483,"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"]},"56729":{"connections":[{"id":26308,"orbit":0},{"id":34201,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":16,"skill":56729,"stats":["20% increased Evasion Rating while moving"]},"56757":{"connections":[{"id":10100,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":10,"skill":56757,"stats":["20% increased Totem Placement speed"]},"56761":{"connections":[{"id":8560,"orbit":0},{"id":48531,"orbit":0},{"id":2408,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":18,"skill":56761,"stats":["8% increased Melee Damage"]},"56762":{"connections":[{"id":28839,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":56762,"stats":["3% increased Cast Speed"]},"56767":{"connections":[{"id":19461,"orbit":0},{"id":1416,"orbit":0}],"group":1355,"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"]},"56776":{"connections":[{"id":45609,"orbit":5},{"id":24129,"orbit":0}],"group":1188,"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"]},"56783":{"ascendancyName":"Disciple of Varashta","connections":[],"group":648,"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"]},"56806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":1007,"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"]},"56818":{"connections":[{"id":43423,"orbit":-3},{"id":62510,"orbit":-6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":18,"skill":56818,"stats":["12% increased Elemental Damage with Attacks"]},"56838":{"connections":[{"id":42805,"orbit":-4},{"id":62624,"orbit":5}],"group":1316,"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"]},"56841":{"connections":[{"id":18451,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":20,"skill":56841,"stats":["20% increased Frenzy Charge Duration"]},"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"]},"56844":{"connections":[{"id":40929,"orbit":-2}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":0,"skill":56844,"stats":["15% increased Archon Buff duration"]},"56847":{"connections":[],"group":1455,"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"]},"56857":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"56860":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1213,"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"]},"56876":{"connections":[{"id":46380,"orbit":0}],"group":319,"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"]},"56890":{"connectionArt":"CharacterPlanned","connections":[{"id":12005,"orbit":0}],"group":205,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56893":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1262,"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"]},"56897":{"connections":[],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Damage","orbit":7,"orbitIndex":10,"skill":56897,"stats":["10% increased Ballista Critical Damage Bonus"]},"56910":{"connections":[{"id":28510,"orbit":6},{"id":34061,"orbit":0},{"id":29328,"orbit":6}],"group":802,"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"]},"56914":{"connections":[{"id":50121,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":5,"skill":56914,"stats":["Damage Penetrates 6% Lightning Resistance"]},"56926":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":938,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":3,"skill":56926,"stats":[]},"56928":{"connections":[{"id":62350,"orbit":7}],"group":1232,"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"]},"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"]},"56934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":558,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":56934,"stats":[]},"56935":{"connections":[{"id":57710,"orbit":0},{"id":34058,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56956":{"connections":[{"id":15885,"orbit":-4},{"id":54632,"orbit":0}],"group":711,"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"]},"56978":{"connections":[{"id":21274,"orbit":0}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1369,"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"]},"56996":{"connections":[{"id":9568,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":4,"orbitIndex":3,"skill":56996,"stats":["16% increased Totem Life"]},"56997":{"connections":[{"id":23861,"orbit":-5},{"id":56595,"orbit":0}],"group":443,"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"]},"56999":{"connections":[],"group":969,"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"]},"57002":{"connectionArt":"CharacterPlanned","connections":[{"id":48761,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57021":{"connections":[{"id":8957,"orbit":0},{"id":45343,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":16,"skill":57021,"stats":["Minions have 8% increased Area of Effect"]},"57039":{"connections":[{"id":44605,"orbit":6}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":4,"skill":57039,"stats":["5% increased Cooldown Recovery Rate"]},"57047":{"connections":[{"id":45278,"orbit":0},{"id":4492,"orbit":0}],"group":795,"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"]},"57069":{"connections":[{"id":52257,"orbit":0}],"group":1424,"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"]},"57079":{"connectionArt":"CharacterPlanned","connections":[{"id":19966,"orbit":-3},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57088":{"connections":[{"id":54557,"orbit":-5}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":20,"skill":57088,"stats":["Damage Penetrates 6% Cold Resistance"]},"57089":{"connections":[],"group":203,"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"]},"57110":{"connections":[{"id":62159,"orbit":-2},{"id":46561,"orbit":0}],"group":943,"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"]},"57141":{"ascendancyName":"Pathfinder","connections":[],"group":1518,"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":[]},"57178":{"connections":[{"id":21245,"orbit":0},{"id":5284,"orbit":0}],"group":519,"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"]},"57181":{"ascendancyName":"Invoker","connections":[{"id":52448,"orbit":-7}],"group":1505,"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"]},"57190":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":27859,"orbit":0}],"group":867,"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"]},"57196":{"connections":[],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":14,"skill":57196,"stats":["3% increased Attack Speed"]},"57202":{"connectionArt":"CharacterPlanned","connections":[{"id":1628,"orbit":2147483647}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57204":{"connections":[{"id":47833,"orbit":0}],"group":925,"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"]},"57227":{"connections":[{"id":23259,"orbit":-5}],"group":1038,"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"]},"57230":{"connections":[{"id":25851,"orbit":-4},{"id":36270,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":6,"orbitIndex":6,"skill":57230,"stats":["10% increased Physical Damage"]},"57253":{"ascendancyName":"Pathfinder","connections":[{"id":38646,"orbit":0},{"id":3936,"orbit":0}],"group":1524,"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"]},"57273":{"connections":[{"id":33562,"orbit":0}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":4,"orbitIndex":33,"skill":57273,"stats":["12% increased Damage while Shapeshifted"]},"57320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":697,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":57320,"stats":[]},"57373":{"connections":[{"id":44733,"orbit":4}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":57373,"stats":["30% increased Flammability Magnitude"]},"57379":{"connections":[{"id":39190,"orbit":0},{"id":49111,"orbit":0}],"group":135,"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"]},"57386":{"connectionArt":"CharacterPlanned","connections":[{"id":4621,"orbit":-6}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57388":{"connections":[{"id":9698,"orbit":0}],"group":228,"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"]},"57405":{"connections":[{"id":64807,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":2,"skill":57405,"stats":["10% increased Attack Area Damage"]},"57449":{"ascendancyName":"Martial Artist","connections":[{"id":17356,"orbit":9},{"id":19370,"orbit":-9}],"group":1510,"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"]},"57462":{"connections":[{"id":12078,"orbit":-6}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":3,"orbitIndex":17,"skill":57462,"stats":["8% increased Projectile Speed"]},"57471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":42578,"orbit":-4}],"group":177,"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"]},"57513":{"connections":[],"flavourText":"What need have I for defence when my enemies\\nare reduced to ash and splinters?","group":1044,"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"]},"57517":{"connections":[{"id":28268,"orbit":0}],"group":1029,"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"]},"57518":{"connections":[{"id":17146,"orbit":4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":23,"skill":57518,"stats":["20% increased Parry Damage"]},"57552":{"connections":[{"id":24871,"orbit":0},{"id":46696,"orbit":0}],"group":398,"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"]},"57555":{"connections":[{"id":37608,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":7,"orbitIndex":15,"skill":57555,"stats":["15% chance to Impale on Spell Hit"]},"57571":{"connections":[{"id":37905,"orbit":-3}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":6,"skill":57571,"stats":["30% increased Flammability Magnitude"]},"57596":{"connectionArt":"CharacterPlanned","connections":[{"id":13468,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57608":{"connections":[{"id":61703,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Physical Damage","orbit":2,"orbitIndex":15,"skill":57608,"stats":["12% increased Physical Damage while Shapeshifted"]},"57615":{"connections":[{"id":32319,"orbit":0},{"id":48836,"orbit":0}],"group":1492,"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"]},"57616":{"connections":[{"id":56388,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":4,"orbitIndex":3,"skill":57616,"stats":["Banner Skills have 20% increased Duration"]},"57617":{"connections":[{"id":14996,"orbit":-2},{"id":16506,"orbit":-2},{"id":37509,"orbit":-2},{"id":23879,"orbit":0}],"group":354,"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"]},"57626":{"connections":[{"id":36782,"orbit":0}],"group":823,"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"]},"57683":{"connections":[{"id":35031,"orbit":2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":11,"skill":57683,"stats":["3% of Damage taken Recouped as Life"]},"57703":{"connections":[{"id":54811,"orbit":0},{"id":54485,"orbit":0},{"id":38130,"orbit":0},{"id":19674,"orbit":0}],"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":57703,"stats":["+5 to any Attribute"]},"57710":{"connections":[{"id":39037,"orbit":0},{"id":40783,"orbit":0},{"id":53975,"orbit":0},{"id":58090,"orbit":2147483647}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"57724":{"connections":[{"id":54883,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":20,"skill":57724,"stats":["7% increased Chaos Damage"]},"57774":{"connections":[{"id":49657,"orbit":0}],"group":833,"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"]},"57775":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":427,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":57775,"stats":[]},"57785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":31112,"orbit":0},{"id":56897,"orbit":0}],"group":931,"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"]},"57791":{"connections":[{"id":52229,"orbit":0}],"group":662,"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"]},"57805":{"connections":[{"id":43444,"orbit":4}],"group":791,"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"]},"57810":{"connections":[{"id":40073,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":57810,"stats":["15% increased chance to Shock"]},"57816":{"connections":[{"id":364,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":8,"skill":57816,"stats":["+8 to Dexterity"]},"57819":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":503,"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"]},"57821":{"connections":[{"id":31765,"orbit":0},{"id":26034,"orbit":0}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"57832":{"connections":[{"id":46300,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":9,"skill":57832,"stats":["10% increased Ignite Magnitude"]},"57846":{"connections":[{"id":63451,"orbit":0},{"id":38876,"orbit":6}],"group":409,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":12,"skill":57846,"stats":["15% increased Stun Buildup"]},"57863":{"connections":[{"id":26356,"orbit":0}],"group":684,"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"]},"57880":{"connections":[{"id":27082,"orbit":0},{"id":6269,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Damage","orbit":3,"orbitIndex":3,"skill":57880,"stats":["12% increased Damage with Axes"]},"57921":{"connections":[{"id":23879,"orbit":0}],"group":354,"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"]},"57933":{"connections":[{"id":16150,"orbit":0}],"group":1490,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":57933,"stats":["Companions deal 12% increased Damage"]},"57945":{"connections":[{"id":7412,"orbit":0}],"group":1250,"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"]},"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"]},"57966":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":57966,"stats":[]},"57967":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":610,"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"]},"57970":{"connections":[{"id":55995,"orbit":0},{"id":21537,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":10,"skill":57970,"stats":["20% increased Frenzy Charge Duration"]},"58002":{"connections":[{"id":45086,"orbit":0},{"id":55668,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":3,"orbitIndex":3,"skill":58002,"stats":["10% increased Physical Damage"]},"58013":{"connections":[{"id":4844,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":4,"skill":58013,"stats":["10% increased Projectile Damage"]},"58016":{"connections":[{"id":49537,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"58022":{"connections":[{"id":5186,"orbit":3},{"id":26762,"orbit":-7}],"group":1314,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":58022,"stats":["11% increased Chaos Damage"]},"58038":{"connections":[{"id":31566,"orbit":0}],"group":751,"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"]},"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":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58088":{"connections":[{"id":16620,"orbit":5}],"group":250,"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"]},"58090":{"connections":[{"id":21540,"orbit":4},{"id":34367,"orbit":3}],"group":812,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":58090,"stats":["3% of Damage taken Recouped as Life"]},"58096":{"connections":[{"id":17411,"orbit":0}],"group":497,"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"]},"58109":{"connections":[{"id":14340,"orbit":0}],"group":847,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"58115":{"connections":[{"id":52241,"orbit":2},{"id":11672,"orbit":0}],"group":907,"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"]},"58117":{"connections":[{"id":41186,"orbit":0},{"id":13839,"orbit":0},{"id":56996,"orbit":0},{"id":53719,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":3,"skill":58117,"stats":["15% increased Totem Damage"]},"58125":{"connections":[{"id":10681,"orbit":5}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":60,"skill":58125,"stats":["5% increased Block chance"]},"58138":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":116,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":1,"orbitIndex":6,"skill":58138,"stats":[]},"58149":{"ascendancyName":"Ritualist","connections":[{"id":62804,"orbit":8}],"group":1567,"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"]},"58157":{"connections":[{"id":61149,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":7,"orbitIndex":17,"skill":58157,"stats":["20% increased Stun Recovery"]},"58170":{"connections":[{"id":61067,"orbit":0}],"group":650,"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"]},"58182":{"connections":[{"id":49220,"orbit":-5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":22,"skill":58182,"stats":["Gain 3 Life per enemy killed"]},"58183":{"connections":[{"id":60241,"orbit":0},{"id":21245,"orbit":0},{"id":32278,"orbit":0}],"group":501,"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"]},"58197":{"connectionArt":"CharacterPlanned","connections":[{"id":35980,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":361,"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"]},"58215":{"connections":[{"id":292,"orbit":0}],"group":438,"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"]},"58295":{"connections":[],"group":261,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"58312":{"connections":[{"id":49497,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":10,"skill":58312,"stats":["5% increased Culling Strike Threshold"]},"58329":{"connections":[{"id":56360,"orbit":0},{"id":61196,"orbit":0},{"id":56638,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"58362":{"connections":[{"id":51335,"orbit":0}],"group":747,"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"]},"58363":{"connections":[{"id":55938,"orbit":2}],"group":1102,"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"]},"58368":{"connectionArt":"CharacterPlanned","connections":[{"id":40511,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58379":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1521,"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"]},"58387":{"connections":[{"id":52454,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":6,"skill":58387,"stats":["7% increased Chaos Damage"]},"58388":{"connections":[{"id":13157,"orbit":0},{"id":17702,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":23,"skill":58388,"stats":["10% increased Life Recovery from Flasks"]},"58397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":19338,"orbit":0},{"id":31647,"orbit":0},{"id":2334,"orbit":0}],"group":1377,"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"]},"58416":{"connections":[],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Speed","orbit":2,"orbitIndex":11,"skill":58416,"stats":["10% increased Projectile Speed"]},"58426":{"connections":[{"id":34401,"orbit":0}],"group":1393,"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"]},"58496":{"connections":[{"id":9328,"orbit":-4},{"id":37187,"orbit":5}],"group":140,"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"]},"58513":{"connections":[{"id":14418,"orbit":2147483647},{"id":11774,"orbit":0}],"group":1292,"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"]},"58526":{"connections":[],"group":1261,"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"]},"58528":{"connections":[{"id":5710,"orbit":6}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":2,"skill":58528,"stats":["10% increased Melee Damage"]},"58539":{"connections":[{"id":60899,"orbit":0}],"group":1433,"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"]},"58574":{"ascendancyName":"Ritualist","connections":[],"group":1563,"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"]},"58591":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":559,"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"]},"58593":{"connections":[{"id":33463,"orbit":9},{"id":26556,"orbit":-5}],"group":1405,"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"]},"58644":{"connections":[{"id":42714,"orbit":0}],"group":1300,"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"]},"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"]},"58651":{"connections":[{"id":49357,"orbit":0},{"id":50558,"orbit":0}],"group":567,"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"]},"58674":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":1,"skill":58674,"stats":[]},"58692":{"connections":[],"group":1405,"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"]},"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"]},"58714":{"connections":[{"id":39431,"orbit":0}],"group":736,"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"]},"58718":{"connections":[{"id":35015,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":58718,"stats":["10% increased Magnitude of Bleeding you inflict"]},"58747":{"ascendancyName":"Chronomancer","connections":[],"group":369,"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"]},"58751":{"ascendancyName":"Lich","connections":[{"id":17788,"orbit":0}],"group":1173,"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"]},"58779":{"connections":[{"id":51040,"orbit":0},{"id":327,"orbit":0},{"id":23822,"orbit":0},{"id":47976,"orbit":0}],"group":1295,"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"]},"58783":{"connections":[{"id":26520,"orbit":0}],"group":896,"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"]},"58789":{"connections":[{"id":13307,"orbit":0}],"group":609,"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"]},"58814":{"connections":[{"id":55802,"orbit":0},{"id":244,"orbit":0},{"id":12465,"orbit":0},{"id":26830,"orbit":0},{"id":26952,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"58817":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"58838":{"connections":[{"id":26725,"orbit":6}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":60,"skill":58838,"stats":["12% increased Stun Threshold"]},"58848":{"connections":[{"id":22962,"orbit":2147483647},{"id":10576,"orbit":0}],"group":1300,"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"]},"58855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":240,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":58855,"stats":[]},"58884":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":891,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":58884,"stats":[]},"58894":{"connections":[],"group":179,"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","Immune to Exposure","Unaffected by Elemental Weakness"]},"58926":{"connections":[{"id":64572,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":16,"skill":58926,"stats":["15% increased Freeze Buildup"]},"58930":{"connections":[{"id":14934,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":9,"skill":58930,"stats":["3% increased Cast Speed"]},"58932":{"ascendancyName":"Lich","connections":[],"group":1120,"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"]},"58939":{"connections":[{"id":44608,"orbit":0}],"group":906,"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"]},"58971":{"connections":[{"id":12998,"orbit":-6},{"id":38678,"orbit":-7}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":11,"skill":58971,"stats":["15% increased Elemental Ailment Threshold"]},"59006":{"connections":[{"id":37956,"orbit":7}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":59006,"stats":["8% reduced Skill Effect Duration"]},"59028":{"connections":[{"id":41210,"orbit":0}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":16,"skill":59028,"stats":["10% increased Projectile Damage"]},"59039":{"connectionArt":"CharacterPlanned","connections":[{"id":28223,"orbit":4}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59053":{"connections":[{"id":54805,"orbit":-7}],"group":1077,"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"]},"59061":{"connections":[{"id":28267,"orbit":0}],"group":218,"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"]},"59064":{"connections":[],"group":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":3,"orbitIndex":21,"skill":59064,"stats":["10% increased Effect of your Mark Skills"]},"59070":{"connections":[{"id":55011,"orbit":0}],"group":550,"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"]},"59083":{"connections":[{"id":32364,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":4,"skill":59083,"stats":["10% increased Ignite Magnitude"]},"59093":{"connections":[{"id":14110,"orbit":0},{"id":5088,"orbit":0},{"id":53444,"orbit":0},{"id":4621,"orbit":0}],"group":276,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59136":{"connectionArt":"CharacterPlanned","connections":[{"id":17729,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59180":{"connections":[{"id":50023,"orbit":2147483647}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":7,"orbitIndex":15,"skill":59180,"stats":["10% increased Attack Damage"]},"59208":{"connections":[{"id":5681,"orbit":0}],"group":453,"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"]},"59213":{"connections":[{"id":48240,"orbit":3}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":2,"orbitIndex":15,"skill":59213,"stats":["20% increased Stun Recovery"]},"59214":{"connections":[{"id":26268,"orbit":0},{"id":6570,"orbit":0}],"group":1267,"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"]},"59256":{"connections":[{"id":8531,"orbit":0}],"group":561,"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"]},"59263":{"connections":[{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Ripping Blade","orbit":4,"orbitIndex":33,"skill":59263,"stats":["25% increased Damage with Swords"]},"59281":{"connections":[{"id":14394,"orbit":7},{"id":1221,"orbit":0},{"id":50124,"orbit":-7},{"id":58109,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":22,"skill":59281,"stats":["12% increased Armour and Evasion Rating"]},"59289":{"connections":[{"id":22532,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":21,"skill":59289,"stats":["15% increased Immobilisation buildup"]},"59303":{"connections":[{"id":25029,"orbit":0}],"group":1280,"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"]},"59342":{"ascendancyName":"Blood Mage","connections":[{"id":23416,"orbit":9}],"group":954,"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"]},"59355":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":59355,"stats":[]},"59356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":59356,"stats":[]},"59362":{"connections":[{"id":41669,"orbit":0},{"id":62677,"orbit":0},{"id":50720,"orbit":0}],"group":772,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59367":{"connections":[{"id":10774,"orbit":0}],"group":437,"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"]},"59368":{"connections":[{"id":61215,"orbit":4},{"id":48116,"orbit":0}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":2,"skill":59368,"stats":["12% increased Stun Threshold"]},"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"]},"59376":{"connections":[],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"59387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":930,"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"]},"59390":{"connections":[{"id":11472,"orbit":0}],"group":1203,"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"]},"59413":{"connections":[],"group":645,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59413,"stats":["8% increased speed of Recoup Effects"]},"59425":{"connections":[{"id":23939,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":16,"skill":59425,"stats":["3% of Damage taken Recouped as Life"]},"59433":{"connections":[{"id":60916,"orbit":0}],"group":223,"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"]},"59438":{"connections":[{"id":18101,"orbit":-7},{"id":15801,"orbit":0}],"group":644,"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"]},"59442":{"connections":[{"id":59413,"orbit":0}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59442,"stats":["8% increased speed of Recoup Effects"]},"59446":{"connections":[{"id":4544,"orbit":0}],"group":1166,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":5,"skill":59446,"stats":["10% increased Life Recovery from Flasks"]},"59466":{"connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":7,"orbitIndex":0,"skill":59466,"stats":["Empowered Attacks deal 16% increased Damage"]},"59480":{"connections":[{"id":3999,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":69,"skill":59480,"stats":["10% increased Attack Area Damage"]},"59498":{"connections":[{"id":54814,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":59498,"stats":["20% increased Presence Area of Effect"]},"59501":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"id":25619,"orbit":0},{"id":42354,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":59501,"stats":[]},"59503":{"connections":[{"id":22208,"orbit":0}],"group":1319,"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"]},"59538":{"connections":[{"id":34912,"orbit":0},{"id":47976,"orbit":0}],"group":1376,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"59541":{"connections":[{"id":28573,"orbit":7},{"id":56926,"orbit":0}],"group":938,"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"]},"59542":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1506,"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"]},"59589":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":52659,"orbit":0}],"group":162,"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"]},"59600":{"connections":[{"id":9411,"orbit":0}],"group":1206,"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"]},"59603":{"connections":[],"group":943,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":59603,"stats":["3% of Damage taken Recouped as Life"]},"59636":{"connections":[{"id":13769,"orbit":-4},{"id":48007,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Open Mind","orbit":7,"orbitIndex":12,"skill":59636,"stats":["25% increased Mana Regeneration Rate"]},"59644":{"connections":[{"id":42959,"orbit":-7}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":15,"skill":59644,"stats":["10% increased Magnitude of Poison you inflict"]},"59647":{"connections":[{"id":8791,"orbit":3}],"group":1083,"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"]},"59651":{"connections":[{"id":41654,"orbit":2147483647},{"id":47821,"orbit":4},{"id":25557,"orbit":0}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":11,"skill":59651,"stats":["Offering Skills have 20% increased Duration"]},"59653":{"connections":[{"id":35987,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":7,"orbitIndex":10,"skill":59653,"stats":["2% increased Movement Speed"]},"59657":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":42078,"orbit":0}],"group":1405,"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"]},"59661":{"connections":[{"id":12245,"orbit":0}],"group":1010,"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"]},"59694":{"connections":[{"id":52399,"orbit":0}],"group":1457,"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"]},"59695":{"connections":[{"id":28950,"orbit":8}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":19,"skill":59695,"stats":["10% increased Mana Regeneration Rate"]},"59710":{"connections":[{"id":52618,"orbit":5}],"group":320,"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"]},"59720":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":41163,"orbit":0}],"group":1426,"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"]},"59759":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":60251,"orbit":4}],"group":1533,"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"]},"59767":{"connections":[{"id":31292,"orbit":0},{"id":20645,"orbit":0}],"group":527,"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"]},"59775":{"connections":[{"id":20782,"orbit":-4}],"group":1275,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":59775,"stats":["7% increased Chaos Damage"]},"59777":{"connections":[{"id":10362,"orbit":0},{"id":17791,"orbit":0},{"id":13937,"orbit":0},{"id":53719,"orbit":0}],"group":149,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59779":{"connections":[{"id":50986,"orbit":0},{"id":42350,"orbit":6},{"id":97,"orbit":6},{"id":11311,"orbit":5}],"group":767,"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"]},"59781":{"connections":[{"id":39416,"orbit":0}],"group":701,"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"]},"59785":{"connections":[{"id":27296,"orbit":0},{"id":1200,"orbit":0},{"id":33452,"orbit":0},{"id":8852,"orbit":0}],"group":121,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59795":{"connections":[{"id":10156,"orbit":-3}],"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":5,"orbitIndex":33,"skill":59795,"stats":["+5 to any Attribute"]},"59798":{"connections":[{"id":5335,"orbit":-4}],"group":1270,"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"]},"59799":{"connections":[{"id":7338,"orbit":4}],"group":1270,"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"]},"59822":{"ascendancyName":"Blood Mage","connections":[{"id":8415,"orbit":0}],"group":954,"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":[]},"59881":{"connections":[{"id":54417,"orbit":0},{"id":28556,"orbit":-5}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"59886":{"connections":[{"id":4442,"orbit":0}],"group":144,"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"]},"59908":{"connectionArt":"CharacterPlanned","connections":[{"id":36197,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59909":{"connections":[{"id":30539,"orbit":4}],"group":1066,"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"]},"59913":{"ascendancyName":"Deadeye","connections":[{"id":29871,"orbit":0}],"group":1507,"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"]},"59915":{"connections":[{"id":7741,"orbit":-6},{"id":97,"orbit":-6},{"id":2455,"orbit":-6}],"group":799,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":59915,"stats":["10% increased Projectile Damage"]},"59938":{"connections":[{"id":50757,"orbit":0}],"group":295,"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"]},"59945":{"connections":[{"id":4527,"orbit":0},{"id":45327,"orbit":0},{"id":21684,"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":59945,"stats":["+5 to any Attribute"]},"60014":{"connectionArt":"CharacterPlanned","connections":[{"id":38474,"orbit":0}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":15207,"orbit":0},{"id":22208,"orbit":0}],"group":1319,"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%"]},"60064":{"connections":[{"id":47263,"orbit":0},{"id":3027,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":18,"skill":60064,"stats":["10% increased Physical Damage"]},"60068":{"connections":[{"id":55925,"orbit":7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":3,"orbitIndex":12,"skill":60068,"stats":["Gain 1 Rage on Melee Hit"]},"60083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":44239,"orbit":0}],"group":1101,"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"]},"60085":{"connections":[{"id":55802,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":15,"skill":60085,"stats":["10% increased Damage"]},"60107":{"connections":[{"id":57204,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":9,"skill":60107,"stats":["10% increased Critical Hit Chance"]},"60116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":868,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":3,"orbitIndex":10,"skill":60116,"stats":[]},"60138":{"connections":[{"id":52695,"orbit":0}],"group":1231,"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"]},"60170":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":60170,"stats":[]},"60173":{"connections":[{"id":4238,"orbit":2}],"group":1201,"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"]},"60191":{"connections":[{"id":54985,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":11,"skill":60191,"stats":["8% increased Bolt Speed"]},"60203":{"connections":[{"id":5332,"orbit":9}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":2,"skill":60203,"stats":["+8 to Strength"]},"60210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":63431,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":1,"orbitIndex":9,"skill":60210,"stats":[]},"60230":{"connections":[{"id":56935,"orbit":0},{"id":58362,"orbit":0},{"id":10192,"orbit":0},{"id":55909,"orbit":0}],"group":747,"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"]},"60239":{"connections":[{"id":15343,"orbit":5},{"id":49356,"orbit":-2}],"group":1405,"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"]},"60241":{"connections":[{"id":57178,"orbit":0}],"group":491,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":60241,"stats":["5% chance to inflict Bleeding on Hit"]},"60251":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34567,"orbit":6}],"group":1533,"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"]},"60269":{"connections":[{"id":6588,"orbit":0}],"group":861,"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"]},"60273":{"connections":[{"id":28199,"orbit":0},{"id":40626,"orbit":0}],"group":1274,"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"]},"60274":{"connections":[{"id":13293,"orbit":4},{"id":19236,"orbit":0}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":0,"skill":60274,"stats":["15% increased Armour"]},"60287":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":37397,"orbit":0},{"id":32952,"orbit":0},{"id":63259,"orbit":0}],"group":373,"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":[]},"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"]},"60313":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":711,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":60313,"stats":[]},"60323":{"connections":[{"id":9199,"orbit":0},{"id":47560,"orbit":0}],"group":1293,"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"]},"60324":{"connections":[{"id":1506,"orbit":2}],"group":1108,"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"]},"60332":{"connections":[{"id":21213,"orbit":0}],"group":159,"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"]},"60362":{"connections":[{"id":56265,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":60362,"stats":["15% increased Critical Damage Bonus"]},"60404":{"connections":[{"id":20691,"orbit":0},{"id":25011,"orbit":0}],"group":539,"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"]},"60464":{"connections":[{"id":58971,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"60480":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":4,"skill":60480,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"60483":{"connections":[{"id":7809,"orbit":0},{"id":36540,"orbit":0}],"group":1380,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":60483,"stats":["12% increased Lightning Damage"]},"60488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":865,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":60488,"stats":[]},"60505":{"connections":[{"id":28050,"orbit":0},{"id":65009,"orbit":0},{"id":19808,"orbit":0},{"id":18831,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"60515":{"connections":[{"id":19955,"orbit":-4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":4,"skill":60515,"stats":["12% increased Cold Damage"]},"60551":{"connections":[{"id":21861,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":14,"skill":60551,"stats":["20% increased Presence Area of Effect"]},"60560":{"connections":[{"id":29527,"orbit":-3}],"group":1364,"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"]},"60568":{"connections":[{"id":52348,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":3,"orbitIndex":13,"skill":60568,"stats":["20% increased Totem Placement speed"]},"60619":{"connections":[{"id":541,"orbit":-5},{"id":41609,"orbit":-5},{"id":31010,"orbit":0},{"id":27216,"orbit":0},{"id":12005,"orbit":0}],"group":205,"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"]},"60620":{"connections":[{"id":45992,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":4,"skill":60620,"stats":["+8 to Strength"]},"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"]},"60662":{"ascendancyName":"Amazon","connections":[{"id":7979,"orbit":0}],"group":1548,"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"]},"60685":{"connections":[{"id":1826,"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":60685,"stats":["+5 to any Attribute"]},"60692":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"60700":{"connections":[{"id":44974,"orbit":2147483647}],"group":1219,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60735":{"connections":[{"id":42658,"orbit":0},{"id":11825,"orbit":0}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":60735,"stats":[]},"60738":{"connections":[{"id":37408,"orbit":0}],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":19,"skill":60738,"stats":["10% increased Life Recovery from Flasks"]},"60741":{"connections":[{"id":33922,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":12,"skill":60741,"stats":["10% increased Elemental Damage"]},"60764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1461,"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"]},"60809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Channelling Mastery","orbit":0,"orbitIndex":0,"skill":60809,"stats":[]},"60829":{"connections":[{"id":36630,"orbit":2147483647}],"group":1042,"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"]},"60859":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":9}],"group":1569,"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"]},"60886":{"connections":[{"id":59213,"orbit":3}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":1,"orbitIndex":5,"skill":60886,"stats":["20% increased Stun Recovery"]},"60891":{"connections":[{"id":53185,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Accuracy Rating","orbit":1,"orbitIndex":9,"skill":60891,"stats":["8% increased Accuracy Rating"]},"60899":{"connections":[{"id":32543,"orbit":-7}],"group":1433,"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"]},"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"]},"60916":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":223,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Endurance Charge Mastery","orbit":0,"orbitIndex":0,"skill":60916,"stats":[]},"60974":{"connections":[{"id":1506,"orbit":-2}],"group":1108,"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"]},"60992":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"61026":{"connections":[{"id":34552,"orbit":0},{"id":17378,"orbit":0}],"group":475,"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"]},"61027":{"connections":[],"group":819,"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"]},"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"]},"61042":{"connections":[{"id":44344,"orbit":0}],"group":637,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61056":{"connections":[{"id":40399,"orbit":-4}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":61056,"stats":["Meta Skills gain 8% increased Energy"]},"61063":{"connections":[],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":0,"skill":61063,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"61067":{"connections":[],"group":650,"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"]},"61104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1070,"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"]},"61106":{"connections":[{"id":59653,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":2,"orbitIndex":15,"skill":61106,"stats":["2% increased Movement Speed"]},"61112":{"connections":[{"id":36071,"orbit":0},{"id":20105,"orbit":0}],"group":1386,"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"]},"61113":{"connectionArt":"CharacterPlanned","connections":[{"id":53910,"orbit":-3}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61119":{"connections":[{"id":64325,"orbit":4},{"id":63431,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":18,"skill":61119,"stats":["10% increased Poison Duration"]},"61142":{"connections":[{"id":38365,"orbit":0}],"group":207,"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"]},"61149":{"connections":[{"id":42760,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":2,"orbitIndex":13,"skill":61149,"stats":["20% increased Stun Recovery"]},"61170":{"connections":[{"id":27186,"orbit":7}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":1,"orbitIndex":3,"skill":61170,"stats":["10% increased Fire Damage"]},"61179":{"connections":[{"id":21245,"orbit":0}],"group":506,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":61179,"stats":["10% increased Critical Hit Chance for Spells"]},"61196":{"connections":[{"id":56045,"orbit":5},{"id":13419,"orbit":0}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"61215":{"connections":[{"id":37242,"orbit":3}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":8,"skill":61215,"stats":["12% increased Stun Threshold"]},"61246":{"connections":[{"id":144,"orbit":5}],"group":1200,"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"]},"61263":{"connections":[{"id":4544,"orbit":0}],"group":1166,"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"]},"61267":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"61281":{"connections":[{"id":9217,"orbit":0}],"group":804,"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"]},"61309":{"connections":[{"id":42169,"orbit":5},{"id":37434,"orbit":0}],"group":964,"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"]},"61312":{"connections":[{"id":56841,"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":4,"orbitIndex":42,"skill":61312,"stats":["+5 to any Attribute"]},"61318":{"connections":[{"id":61396,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":13,"skill":61318,"stats":["12% increased Armour and Evasion Rating"]},"61333":{"connections":[{"id":46197,"orbit":0}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":11,"skill":61333,"stats":["10% increased Critical Hit Chance"]},"61338":{"connections":[{"id":7333,"orbit":0}],"group":730,"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"]},"61347":{"connections":[{"id":64488,"orbit":3}],"group":722,"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"]},"61354":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"61355":{"connections":[{"id":29306,"orbit":2}],"group":1229,"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"]},"61356":{"connections":[{"id":12498,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":12,"skill":61356,"stats":["6% increased bonuses gained from Equipped Quiver"]},"61362":{"connections":[{"id":36737,"orbit":-2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":61362,"stats":["10% increased Area Damage"]},"61367":{"connectionArt":"CharacterPlanned","connections":[{"id":64239,"orbit":2147483647}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61373":{"connections":[{"id":63610,"orbit":-7},{"id":5988,"orbit":7}],"group":1084,"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"]},"61393":{"connections":[{"id":43941,"orbit":-7}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":61393,"stats":["12% increased Damage while Shapeshifted"]},"61396":{"connections":[{"id":10998,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":11,"skill":61396,"stats":["12% increased Armour and Evasion Rating"]},"61403":{"connections":[{"id":56349,"orbit":0},{"id":14231,"orbit":3},{"id":24150,"orbit":0},{"id":17602,"orbit":0}],"group":1239,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61404":{"connections":[{"id":51210,"orbit":2},{"id":61429,"orbit":0}],"group":196,"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"]},"61409":{"connections":[{"id":13075,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":61409,"stats":["+12 to Strength"]},"61419":{"connections":[{"id":3025,"orbit":0},{"id":5314,"orbit":0},{"id":46819,"orbit":0}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61419,"stats":[]},"61421":{"connections":[{"id":16121,"orbit":7}],"group":1440,"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"]},"61429":{"connections":[{"id":44902,"orbit":3}],"group":196,"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"]},"61432":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":6178,"orbit":0}],"group":937,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":61432,"stats":[]},"61438":{"connections":[{"id":28510,"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":6,"orbitIndex":62,"skill":61438,"stats":["+5 to any Attribute"]},"61441":{"connections":[{"id":54138,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":6,"orbitIndex":7,"skill":61441,"stats":["3% increased Attack Speed with Swords"]},"61444":{"connections":[{"id":17411,"orbit":0},{"id":34096,"orbit":0}],"group":497,"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"]},"61461":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":2147483647}],"group":1502,"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"]},"61471":{"connectionArt":"CharacterPlanned","connections":[{"id":49153,"orbit":0}],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61472":{"connections":[{"id":9417,"orbit":0},{"id":36389,"orbit":6}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":10,"skill":61472,"stats":["+8 to Strength"]},"61487":{"connections":[{"id":36596,"orbit":-4},{"id":19341,"orbit":5},{"id":11410,"orbit":0}],"group":891,"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"]},"61490":{"connections":[{"id":47429,"orbit":-8},{"id":64995,"orbit":0},{"id":8600,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":717,"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","name":"TEMPLAR","orbit":0,"orbitIndex":0,"skill":61525,"stats":[]},"61534":{"connections":[{"id":4665,"orbit":0}],"group":655,"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"]},"61586":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"61601":{"connections":[{"id":44420,"orbit":0},{"id":9586,"orbit":0}],"group":1199,"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"]},"61615":{"connections":[{"id":59442,"orbit":0}],"group":603,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":61615,"stats":["8% increased speed of Recoup Effects"]},"61632":{"connections":[{"id":34316,"orbit":0}],"group":1462,"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"]},"61657":{"connections":[{"id":17750,"orbit":6},{"id":45808,"orbit":-5}],"group":590,"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"]},"61703":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":335,"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"]},"61718":{"connections":[{"id":38342,"orbit":0}],"group":1450,"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"]},"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"]},"61741":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":40024,"orbit":2}],"group":1234,"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"]},"61768":{"connections":[],"group":936,"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"]},"61796":{"connections":[{"id":8260,"orbit":-4}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":20,"skill":61796,"stats":["20% increased Armour Break Duration"]},"61800":{"connections":[],"group":1364,"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"]},"61811":{"connectionArt":"CharacterPlanned","connections":[{"id":44452,"orbit":-8}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61834":{"connections":[{"id":17088,"orbit":0},{"id":24958,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61834,"stats":[]},"61835":{"connections":[{"id":32549,"orbit":0},{"id":56237,"orbit":-2}],"group":167,"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"]},"61836":{"connections":[{"id":65243,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":4,"skill":61836,"stats":["Aura Skills have 5% increased Magnitudes"]},"61842":{"connections":[{"id":33240,"orbit":0},{"id":14712,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":0,"skill":61842,"stats":["Minions deal 12% increased Damage"]},"61847":{"connections":[{"id":43443,"orbit":-4}],"group":165,"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"]},"61863":{"connections":[{"id":42045,"orbit":0}],"group":733,"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"]},"61896":{"connections":[{"id":53354,"orbit":-1},{"id":8850,"orbit":-3}],"group":109,"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"]},"61897":{"ascendancyName":"Witchhunter","connections":[{"id":38601,"orbit":8}],"group":277,"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"]},"61905":{"connections":[{"id":12778,"orbit":0},{"id":8938,"orbit":0},{"id":3251,"orbit":-4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":12,"skill":61905,"stats":["5% chance to inflict Bleeding on Hit"]},"61921":{"connections":[],"group":1305,"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"]},"61923":{"connections":[{"id":16256,"orbit":-6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":4,"skill":61923,"stats":["10% increased Mana Regeneration Rate"]},"61926":{"connections":[{"id":1603,"orbit":0}],"group":1142,"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"]},"61927":{"connections":[{"id":14515,"orbit":0},{"id":3698,"orbit":0}],"group":289,"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"]},"61934":{"connections":[{"id":48418,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":2,"skill":61934,"stats":["12% increased Stun Threshold"]},"61935":{"connections":[{"id":4624,"orbit":7}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":61935,"stats":["Gain 1 Rage on Melee Hit"]},"61938":{"connections":[{"id":14515,"orbit":0}],"group":289,"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"]},"61942":{"connections":[],"flavourText":"Strength begets respect. There is no simpler law.","group":160,"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"]},"61973":{"ascendancyName":"Witchhunter","connections":[{"id":40719,"orbit":0}],"group":277,"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"]},"61974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connectionArt":"CharacterPlanned","connections":[],"group":584,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Invocation Mastery","orbit":7,"orbitIndex":2,"skill":61974,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61976":{"connections":[{"id":7526,"orbit":0},{"id":36298,"orbit":6},{"id":2200,"orbit":0}],"group":1140,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61977":{"connectionArt":"CharacterPlanned","connections":[{"id":61471,"orbit":0}],"group":366,"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"],"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"]},"61985":{"ascendancyName":"Stormweaver","connections":[{"id":29398,"orbit":0}],"group":517,"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"]},"61991":{"ascendancyName":"Pathfinder","connections":[],"group":1513,"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"]},"61992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":6,"skill":61992,"stats":[]},"62001":{"connections":[],"group":1477,"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"]},"62015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":367,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":62015,"stats":[]},"62023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":62023,"stats":[]},"62034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":144,"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"]},"62039":{"connections":[{"id":49618,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":18,"skill":62039,"stats":["10% increased Melee Damage"]},"62051":{"connections":[{"id":21755,"orbit":-9}],"group":807,"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"]},"62096":{"connections":[{"id":28414,"orbit":0}],"group":1415,"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"]},"62122":{"connections":[{"id":4295,"orbit":-3}],"group":537,"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"]},"62152":{"aliasPassiveSocket":"voices_jewel_slot1","connections":[],"group":673,"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,"skill":62152,"stats":[]},"62153":{"connections":[{"id":55947,"orbit":3}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":17,"skill":62153,"stats":["15% increased Critical Spell Damage Bonus"]},"62159":{"connections":[{"id":59603,"orbit":-7}],"group":943,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":62159,"stats":["3% of Damage taken Recouped as Life"]},"62166":{"connections":[{"id":19337,"orbit":0}],"group":1180,"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"]},"62185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1287,"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"]},"62194":{"connections":[{"id":19129,"orbit":2147483647}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":0,"skill":62194,"stats":["15% increased Pin Buildup"]},"62200":{"connections":[{"id":8460,"orbit":-3},{"id":29762,"orbit":-4}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":20,"skill":62200,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"62210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":455,"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"]},"62216":{"connections":[{"id":26070,"orbit":3},{"id":38130,"orbit":-3}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":8,"skill":62216,"stats":["Empowered Attacks deal 16% increased Damage"]},"62230":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":19355,"orbit":0}],"group":1001,"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"]},"62235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":918,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":12,"skill":62235,"stats":[]},"62237":{"connections":[{"id":60116,"orbit":0}],"group":868,"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"]},"62258":{"connections":[{"id":62455,"orbit":0},{"id":21096,"orbit":0}],"group":685,"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"]},"62303":{"connections":[{"id":59938,"orbit":-4}],"group":295,"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"]},"62310":{"connections":[{"id":36325,"orbit":2},{"id":56934,"orbit":0}],"group":558,"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"]},"62313":{"connections":[],"group":144,"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"]},"62341":{"connections":[{"id":52836,"orbit":7}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":61,"skill":62341,"stats":["5% increased Block chance"]},"62350":{"connections":[],"group":1232,"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"]},"62360":{"connections":[{"id":25014,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":2,"skill":62360,"stats":["Empowered Attacks deal 16% increased Damage"]},"62376":{"connections":[{"id":54640,"orbit":-5}],"group":420,"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"]},"62378":{"connectionArt":"CharacterPlanned","connections":[{"id":47633,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"62388":{"ascendancyName":"Blood Mage","connections":[{"id":26282,"orbit":0}],"group":954,"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"]},"62424":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"62427":{"connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection Rating","orbit":2,"orbitIndex":21,"skill":62427,"stats":["4% increased Deflection Rating"]},"62431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":998,"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"]},"62436":{"connections":[{"id":3215,"orbit":0}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":5,"skill":62436,"stats":["15% increased maximum Energy Shield"]},"62439":{"connections":[{"id":24224,"orbit":0},{"id":52300,"orbit":0}],"group":176,"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"]},"62455":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":685,"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"]},"62464":{"connections":[{"id":17854,"orbit":7}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":22,"skill":62464,"stats":["15% increased Evasion Rating"]},"62496":{"connections":[{"id":34912,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":48,"skill":62496,"stats":["10% increased Trap Damage"]},"62498":{"connections":[{"id":3446,"orbit":0},{"id":51561,"orbit":0},{"id":21390,"orbit":0},{"id":41363,"orbit":0},{"id":12255,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"62505":{"connections":[{"id":32436,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":18,"skill":62505,"stats":["+8 to Intelligence"]},"62510":{"connections":[{"id":8697,"orbit":4},{"id":17118,"orbit":6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":69,"skill":62510,"stats":["12% increased Elemental Damage with Attacks"]},"62518":{"connections":[{"id":41414,"orbit":4}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Fire Resistance","orbit":3,"orbitIndex":7,"skill":62518,"stats":["+5% to Fire Resistance"]},"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"]},"62542":{"connections":[{"id":16329,"orbit":7},{"id":57821,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":3,"orbitIndex":0,"skill":62542,"stats":["10% increased Flask Charges gained"]},"62578":{"connections":[{"id":30102,"orbit":-7}],"group":1281,"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"]},"62581":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":456,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":62581,"stats":[]},"62588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":50609,"orbit":0}],"group":755,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62588,"stats":[]},"62603":{"connections":[{"id":19715,"orbit":3}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":20,"skill":62603,"stats":["Damage Penetrates 6% Fire Resistance"]},"62609":{"connections":[{"id":11014,"orbit":0},{"id":16051,"orbit":0}],"group":322,"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"]},"62624":{"connections":[],"group":1316,"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"]},"62628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":927,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":62628,"stats":[]},"62640":{"connections":[{"id":24880,"orbit":-7}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":32,"skill":62640,"stats":["3% increased Attack Speed"]},"62661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":553,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":62661,"stats":[]},"62670":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":150,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":62670,"stats":[]},"62677":{"connections":[],"group":869,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"62679":{"connections":[],"group":829,"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"]},"62702":{"ascendancyName":"Spirit Walker","connections":[{"id":27773,"orbit":-7}],"group":1542,"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"]},"62723":{"connections":[{"id":38732,"orbit":8}],"group":843,"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"]},"62732":{"connections":[{"id":64192,"orbit":0},{"id":49391,"orbit":0}],"group":582,"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"]},"62743":{"ascendancyName":"Spirit Walker","connections":[{"id":21519,"orbit":0}],"group":1542,"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"]},"62748":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":333,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62748,"stats":[]},"62757":{"connections":[{"id":46741,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":4,"skill":62757,"stats":["15% increased Stun Buildup"]},"62779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1000,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":62779,"stats":[]},"62785":{"connections":[{"id":4948,"orbit":-7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":2,"skill":62785,"stats":["Break 20% increased Armour"]},"62797":{"ascendancyName":"Lich","connections":[{"id":23352,"orbit":-4}],"group":1141,"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"]},"62803":{"connections":[{"id":25029,"orbit":0}],"group":1329,"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"]},"62804":{"ascendancyName":"Ritualist","connections":[],"group":1560,"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"]},"62841":{"connections":[{"id":17367,"orbit":-6},{"id":56045,"orbit":0},{"id":53941,"orbit":5}],"group":1109,"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"]},"62844":{"connections":[{"id":32427,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":18,"skill":62844,"stats":["Damage Penetrates 6% Cold Resistance"]},"62887":{"connections":[{"id":41225,"orbit":0}],"group":934,"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"]},"62914":{"connections":[{"id":47270,"orbit":5},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":20,"skill":62914,"stats":["12% increased Cold Damage"]},"62936":{"connections":[{"id":51891,"orbit":7}],"group":1294,"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"]},"62948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":34617,"orbit":0},{"id":64770,"orbit":0}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":62948,"stats":[]},"62963":{"connections":[{"id":14601,"orbit":0}],"group":682,"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"]},"62973":{"connections":[{"id":26070,"orbit":0}],"group":343,"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"]},"62984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":15975,"orbit":0}],"group":1003,"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"]},"62986":{"connections":[{"id":60173,"orbit":4}],"group":1201,"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"]},"62998":{"connections":[{"id":63600,"orbit":0}],"group":1427,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":62998,"stats":["15% increased Electrocute Buildup"]},"63002":{"ascendancyName":"Chronomancer","connections":[{"id":26638,"orbit":0}],"group":316,"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"]},"63009":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"63021":{"connections":[{"id":23091,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":14,"skill":63021,"stats":["12% increased Fire Damage"]},"63031":{"connections":[{"id":41821,"orbit":0}],"group":215,"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"]},"63037":{"connections":[{"id":24430,"orbit":0},{"id":44298,"orbit":0}],"group":265,"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"]},"63064":{"connections":[{"id":30634,"orbit":3},{"id":54413,"orbit":0}],"group":1020,"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"]},"63074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":926,"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"]},"63085":{"connections":[{"id":36100,"orbit":9},{"id":34490,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":63085,"stats":["12% increased Damage while Shapeshifted"]},"63114":{"connections":[{"id":26725,"orbit":0},{"id":21387,"orbit":0},{"id":26176,"orbit":0},{"id":35048,"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":3,"orbitIndex":4,"skill":63114,"stats":["+5 to any Attribute"]},"63170":{"connectionArt":"CharacterPlanned","connections":[{"id":6999,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63182":{"connections":[{"id":29930,"orbit":3}],"group":1040,"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"]},"63192":{"connections":[{"id":62096,"orbit":0},{"id":48116,"orbit":0}],"group":1425,"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"]},"63209":{"connections":[{"id":30704,"orbit":0},{"id":22045,"orbit":0},{"id":17655,"orbit":-4},{"id":36602,"orbit":-3}],"group":578,"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"]},"63236":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"63243":{"connectionArt":"CharacterPlanned","connections":[{"id":48160,"orbit":2147483647},{"id":49543,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63246":{"connections":[{"id":33585,"orbit":-7}],"group":1339,"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"]},"63254":{"ascendancyName":"Amazon","connections":[],"group":1553,"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"]},"63255":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":999,"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"]},"63259":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":383,"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"]},"63267":{"connections":[{"id":65424,"orbit":0}],"group":833,"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"]},"63268":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":502,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":6,"skill":63268,"stats":[]},"63360":{"connections":[{"id":62258,"orbit":2147483647}],"group":685,"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"]},"63393":{"connections":[{"id":7721,"orbit":3},{"id":36709,"orbit":0}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":12,"skill":63393,"stats":["12% increased Stun Threshold"]},"63400":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":22851,"orbit":-7}],"group":1171,"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"]},"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"]},"63402":{"connections":[{"id":29881,"orbit":2}],"group":403,"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"]},"63431":{"connections":[],"group":1392,"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"]},"63445":{"connections":[{"id":43562,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":6,"skill":63445,"stats":["3% increased Attack Speed"]},"63451":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44406,"orbit":0},{"id":64312,"orbit":0}],"group":409,"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"]},"63469":{"connections":[{"id":30834,"orbit":0},{"id":50216,"orbit":0}],"group":610,"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"]},"63470":{"connections":[{"id":9908,"orbit":-3}],"group":410,"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"]},"63484":{"ascendancyName":"Infernalist","connections":[{"id":18158,"orbit":7}],"group":744,"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"]},"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":1542,"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":[]},"63517":{"connections":[{"id":48974,"orbit":0},{"id":53958,"orbit":2}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":22,"skill":63517,"stats":["10% increased Mana Recovery from Flasks"]},"63525":{"connections":[{"id":53094,"orbit":0}],"group":1099,"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"]},"63526":{"connections":[{"id":28370,"orbit":6},{"id":7788,"orbit":4}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"63541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":17994,"orbit":0}],"group":808,"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"]},"63545":{"connections":[],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":6,"skill":63545,"stats":["Minions deal 10% increased Damage"]},"63566":{"connections":[{"id":42658,"orbit":0},{"id":62350,"orbit":0},{"id":30871,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"63579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":641,"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"]},"63585":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1080,"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"]},"63600":{"connections":[{"id":36364,"orbit":0}],"group":1416,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":63600,"stats":["15% increased Electrocute Buildup"]},"63608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":104,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":63608,"stats":[]},"63610":{"connections":[{"id":38459,"orbit":-7}],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Effect","orbit":2,"orbitIndex":0,"skill":63610,"stats":["10% increased Blind Effect"]},"63618":{"connections":[{"id":31129,"orbit":2147483647}],"group":1488,"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"]},"63659":{"connections":[{"id":33964,"orbit":0},{"id":37616,"orbit":0}],"group":1418,"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"]},"63668":{"connections":[{"id":9069,"orbit":0},{"id":4328,"orbit":0}],"group":1172,"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"]},"63678":{"connections":[],"group":163,"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"]},"63679":{"connections":[{"id":20008,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Stun Buildup","orbit":1,"orbitIndex":11,"skill":63679,"stats":["18% increased Projectile Stun Buildup"]},"63713":{"ascendancyName":"Invoker","connections":[{"id":57181,"orbit":-4}],"group":1505,"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"]},"63731":{"connections":[{"id":244,"orbit":0}],"group":965,"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"]},"63732":{"connections":[{"id":8440,"orbit":-3}],"group":891,"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"]},"63739":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"63759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":26565,"orbit":0}],"group":1234,"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"]},"63762":{"connections":[{"id":44522,"orbit":0}],"group":1370,"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"]},"63772":{"connectionArt":"CharacterPlanned","connections":[{"id":37888,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63790":{"connections":[{"id":48014,"orbit":0}],"group":212,"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"]},"63813":{"connections":[{"id":1169,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":20,"skill":63813,"stats":["16% increased Warcry Speed"]},"63814":{"connections":[{"id":33216,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":63814,"stats":["5% chance to inflict Bleeding on Hit"]},"63828":{"connections":[],"group":931,"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"]},"63830":{"connections":[{"id":13624,"orbit":-5},{"id":45390,"orbit":5}],"group":1338,"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"]},"63861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":13,"skill":63861,"stats":[]},"63863":{"connections":[],"group":878,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":63863,"stats":["12% increased Lightning Damage"]},"63888":{"connections":[{"id":35901,"orbit":0},{"id":61356,"orbit":0},{"id":26068,"orbit":0}],"group":1156,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"63891":{"connections":[{"id":63074,"orbit":0}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":1,"orbitIndex":7,"skill":63891,"stats":["7% increased Chaos Damage"]},"63894":{"ascendancyName":"Infernalist","connections":[{"id":61267,"orbit":-4}],"group":759,"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"]},"63926":{"connections":[],"group":953,"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"]},"63979":{"connections":[{"id":9750,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":8,"skill":63979,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"64023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":264,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":64023,"stats":[]},"64031":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"64042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":420,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":18,"skill":64042,"stats":[]},"64046":{"connections":[{"id":45522,"orbit":6},{"id":5726,"orbit":0}],"group":747,"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":["20% increased Elemental Infusion duration","Remnants can be collected from 30% further away"]},"64050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1346,"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"]},"64056":{"connections":[{"id":36931,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Daze Chance","orbit":2,"orbitIndex":6,"skill":64056,"stats":["5% chance to Daze on Hit"]},"64064":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":0,"orbitIndex":0,"skill":64064,"stats":["8% increased Accuracy Rating"]},"64083":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64119":{"connections":[{"id":33596,"orbit":0}],"group":883,"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"]},"64139":{"connectionArt":"CharacterPlanned","connections":[{"id":22221,"orbit":-5},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64140":{"connections":[{"id":51336,"orbit":-5},{"id":30905,"orbit":-4}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":10,"skill":64140,"stats":["12% increased Elemental Damage with Attacks"]},"64192":{"connections":[{"id":53373,"orbit":3}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":12,"skill":64192,"stats":["12% increased Stun Threshold"]},"64213":{"connections":[{"id":12611,"orbit":-3},{"id":61246,"orbit":3}],"group":1200,"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"]},"64223":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56857,"orbit":6}],"group":563,"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"]},"64239":{"connectionArt":"CharacterPlanned","connections":[{"id":2733,"orbit":0}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64240":{"connections":[{"id":52220,"orbit":0}],"group":216,"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"]},"64284":{"connections":[{"id":27373,"orbit":0},{"id":19011,"orbit":4}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":4,"orbitIndex":51,"skill":64284,"stats":["8% increased Melee Damage"]},"64295":{"connections":[],"group":1418,"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"]},"64299":{"connections":[{"id":17655,"orbit":2147483647}],"group":567,"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"]},"64312":{"connections":[{"id":23861,"orbit":-7},{"id":54886,"orbit":7}],"group":443,"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"]},"64318":{"connections":[{"id":61063,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":2,"skill":64318,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"64324":{"connections":[{"id":41442,"orbit":9}],"group":250,"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"]},"64325":{"connections":[{"id":45304,"orbit":-4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":11,"skill":64325,"stats":["10% increased Magnitude of Poison you inflict"]},"64327":{"connections":[{"id":39517,"orbit":0},{"id":49391,"orbit":0}],"group":582,"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"]},"64345":{"connections":[{"id":49968,"orbit":0},{"id":63679,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Attack Damage","orbit":2,"orbitIndex":16,"skill":64345,"stats":["10% increased Attack Damage"]},"64352":{"connections":[{"id":44345,"orbit":0}],"group":992,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":64352,"stats":["10% increased Lightning Damage"]},"64357":{"connections":[{"id":50062,"orbit":0},{"id":506,"orbit":0}],"group":273,"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"]},"64370":{"connections":[{"id":53396,"orbit":0}],"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":6,"orbitIndex":17,"skill":64370,"stats":["+5 to any Attribute"]},"64379":{"ascendancyName":"Infernalist","connections":[{"id":25239,"orbit":-4}],"group":759,"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"]},"64399":{"connections":[{"id":2511,"orbit":3}],"group":544,"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"]},"64405":{"connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":12,"skill":64405,"stats":["15% increased Totem Damage"]},"64415":{"connections":[{"id":22063,"orbit":0},{"id":1416,"orbit":0}],"group":1355,"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"]},"64427":{"connections":[],"group":930,"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"]},"64434":{"connections":[{"id":3893,"orbit":2}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":64434,"stats":["15% increased Evasion Rating"]},"64443":{"connections":[{"id":41126,"orbit":0},{"id":62023,"orbit":0}],"group":291,"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"]},"64462":{"connections":[{"id":53150,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":17,"skill":64462,"stats":["10% increased amount of Mana Leeched"]},"64471":{"connections":[{"id":43843,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"64474":{"connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":15,"skill":64474,"stats":["6% faster start of Energy Shield Recharge"]},"64488":{"connections":[{"id":7201,"orbit":7}],"group":722,"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"]},"64489":{"connections":[{"id":6952,"orbit":0},{"id":25162,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":14,"skill":64489,"stats":["6% increased Area of Effect for Attacks"]},"64492":{"connections":[{"id":46688,"orbit":7}],"group":1201,"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"]},"64525":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"64543":{"connections":[],"group":1305,"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"]},"64550":{"connections":[{"id":22532,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":5,"skill":64550,"stats":["20% increased Damage against Immobilised Enemies"]},"64572":{"connections":[{"id":48925,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":20,"skill":64572,"stats":["15% increased Freeze Buildup"]},"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":611,"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"]},"64601":{"connections":[],"flavourText":"The body is a weapon waiting to be mastered.","group":1289,"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"]},"64637":{"connections":[{"id":32543,"orbit":7}],"group":1433,"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"]},"64643":{"connections":[{"id":56360,"orbit":0},{"id":27176,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":3,"skill":64643,"stats":["20% increased Power Charge Duration"]},"64650":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1138,"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"]},"64653":{"connections":[{"id":47420,"orbit":7}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":15,"skill":64653,"stats":["Minions deal 16% increased Damage"]},"64659":{"connections":[{"id":3355,"orbit":0}],"group":608,"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"]},"64665":{"connections":[{"id":51847,"orbit":0},{"id":21274,"orbit":0}],"group":839,"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"]},"64683":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":655,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":64683,"stats":[]},"64700":{"connections":[{"id":61632,"orbit":0}],"group":1465,"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"]},"64724":{"connections":[],"group":178,"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"]},"64726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":46296,"orbit":0},{"id":38479,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":8,"skill":64726,"stats":[]},"64747":{"connections":[{"id":33838,"orbit":-5}],"group":1134,"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"]},"64770":{"connections":[],"group":363,"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"]},"64789":{"ascendancyName":"Stormweaver","connections":[{"id":8867,"orbit":0}],"group":517,"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"]},"64804":{"connections":[],"group":455,"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"]},"64807":{"connections":[{"id":59945,"orbit":0}],"group":239,"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"]},"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"]},"64851":{"connections":[{"id":21324,"orbit":0}],"group":1107,"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"]},"64870":{"connections":[{"id":27439,"orbit":0}],"group":368,"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"]},"64900":{"connections":[{"id":54999,"orbit":-4}],"group":122,"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"]},"64927":{"connections":[{"id":52464,"orbit":4},{"id":51741,"orbit":-4},{"id":54351,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":6,"orbitIndex":18,"skill":64927,"stats":["10% increased amount of Mana Leeched"]},"64939":{"connections":[{"id":30123,"orbit":0}],"group":401,"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"]},"64948":{"connections":[{"id":48264,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":9,"skill":64948,"stats":["Aura Skills have 5% increased Magnitudes"]},"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"]},"64990":{"connections":[{"id":60891,"orbit":0},{"id":18897,"orbit":0},{"id":27705,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":64990,"stats":["+8 to Intelligence"]},"64995":{"connections":[{"id":17924,"orbit":0}],"group":386,"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"]},"64996":{"connections":[{"id":7782,"orbit":-4},{"id":4810,"orbit":7}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":7,"orbitIndex":20,"skill":64996,"stats":["5% chance to inflict Bleeding on Hit"]},"65009":{"connections":[{"id":29517,"orbit":0},{"id":31855,"orbit":7},{"id":61373,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"65016":{"connections":[{"id":11505,"orbit":0}],"group":602,"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"]},"65023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":678,"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"]},"65042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":180,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":1,"orbitIndex":6,"skill":65042,"stats":[]},"65091":{"connections":[{"id":51707,"orbit":6}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":65091,"stats":["15% increased Evasion Rating"]},"65149":{"connections":[],"group":990,"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"]},"65154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":172,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":65154,"stats":[]},"65160":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44069,"orbit":0}],"group":151,"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"]},"65161":{"connections":[],"group":1387,"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"]},"65167":{"connections":[{"id":712,"orbit":4}],"group":1378,"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"]},"65173":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"65176":{"connections":[{"id":14045,"orbit":0},{"id":42250,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":6,"orbitIndex":48,"skill":65176,"stats":["10% increased Projectile Damage"]},"65189":{"connections":[{"id":17260,"orbit":0}],"group":335,"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"]},"65192":{"connectionArt":"CharacterPlanned","connections":[{"id":63170,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"65193":{"connections":[{"id":48714,"orbit":0},{"id":10245,"orbit":0}],"group":458,"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"]},"65204":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":30615,"orbit":0},{"id":10162,"orbit":0}],"group":1408,"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"]},"65207":{"connections":[{"id":63566,"orbit":-6}],"group":1236,"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"]},"65212":{"connections":[{"id":58539,"orbit":0},{"id":34968,"orbit":0}],"group":1433,"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"]},"65226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":65226,"stats":[]},"65228":{"ascendancyName":"Martial Artist","connections":[{"id":61586,"orbit":4}],"group":1510,"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"]},"65243":{"connections":[{"id":46421,"orbit":0}],"group":309,"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"]},"65248":{"connections":[],"group":739,"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"]},"65256":{"connections":[{"id":34845,"orbit":0},{"id":40626,"orbit":0}],"group":1257,"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"]},"65265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[{"id":31366,"orbit":0},{"id":17146,"orbit":0}],"group":1340,"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"]},"65287":{"connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":6,"skill":65287,"stats":["15% increased Totem Damage"]},"65290":{"connections":[{"id":57069,"orbit":0}],"group":1439,"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"]},"65310":{"connections":[{"id":22682,"orbit":0}],"group":1191,"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"]},"65322":{"connections":[{"id":54818,"orbit":0},{"id":13425,"orbit":0},{"id":47709,"orbit":0},{"id":58718,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":65322,"stats":["5% chance to inflict Bleeding on Hit"]},"65324":{"connections":[{"id":1861,"orbit":7},{"id":9863,"orbit":-5}],"group":590,"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"]},"65328":{"connections":[{"id":48565,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":2,"skill":65328,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"65353":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":505,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Banner Mastery","orbit":0,"orbitIndex":0,"skill":65353,"stats":[]},"65393":{"connections":[{"id":2732,"orbit":-2},{"id":11672,"orbit":0}],"group":907,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":16,"skill":65393,"stats":["8% increased Mana Cost Efficiency"]},"65413":{"ascendancyName":"Stormweaver","connections":[{"id":12882,"orbit":0}],"group":517,"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"]},"65424":{"connections":[{"id":58109,"orbit":0}],"group":833,"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"]},"65437":{"connections":[{"id":63064,"orbit":0}],"group":1020,"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"]},"65439":{"connections":[{"id":12821,"orbit":0}],"group":505,"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"]},"65468":{"connections":[{"id":61432,"orbit":0},{"id":25807,"orbit":0}],"group":877,"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"]},"65472":{"connections":[{"id":9323,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":3,"orbitIndex":21,"skill":65472,"stats":["15% increased Glory generation"]},"65493":{"connections":[{"id":43854,"orbit":2}],"group":541,"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"]},"65498":{"connections":[{"id":37026,"orbit":0}],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":10,"skill":65498,"stats":["Break 20% increased Armour"]},"65509":{"connections":[{"id":41384,"orbit":0},{"id":51821,"orbit":0}],"group":275,"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"]},"65518":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]}},"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_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/CompanionsNotable1.dds":61,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":62,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":63,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":64,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":65,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":75,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":92,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":93,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":94,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":95,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":96,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":100,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":103,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":104,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":105,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":106,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":107,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":109,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":120,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":121,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":122,"Art/2DArt/SkillIcons/passives/Harrier.dds":123,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Hearty.dds":125,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":126,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":127,"Art/2DArt/SkillIcons/passives/Hunter.dds":128,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":133,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":143,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":160,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":161,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":164,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":165,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":168,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":176,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":177,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":185,"Art/2DArt/SkillIcons/passives/Meleerange.dds":186,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":187,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":188,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":189,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":195,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":196,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":197,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":198,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":199,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":207,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":222,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":223,"Art/2DArt/SkillIcons/passives/Poison.dds":224,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":225,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":232,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":233,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":234,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":235,"Art/2DArt/SkillIcons/passives/RageNotable.dds":236,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":237,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":238,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":239,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":246,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":247,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":264,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":265,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":266,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":267,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":268,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":269,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":270,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":279,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":280,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":281,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":290,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":291,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":298,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":299,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":300,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":307,"Art/2DArt/SkillIcons/passives/Trap.dds":308,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":309,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":316,"Art/2DArt/SkillIcons/passives/Warrior.dds":317,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":318,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":326,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":327,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":334,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":335,"Art/2DArt/SkillIcons/passives/bodysoul.dds":336,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":337,"Art/2DArt/SkillIcons/passives/eagleeye.dds":338,"Art/2DArt/SkillIcons/passives/executioner.dds":339,"Art/2DArt/SkillIcons/passives/finesse.dds":340,"Art/2DArt/SkillIcons/passives/flameborn.dds":341,"Art/2DArt/SkillIcons/passives/frostborn.dds":342,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":343,"Art/2DArt/SkillIcons/passives/legstrength.dds":344,"Art/2DArt/SkillIcons/passives/lifeleech.dds":345,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":346,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":347,"Art/2DArt/SkillIcons/passives/steelspan.dds":348,"Art/2DArt/SkillIcons/passives/stormborn.dds":349,"Art/2DArt/SkillIcons/passives/strongarm.dds":350,"Art/2DArt/SkillIcons/passives/totemmax.dds":351,"Art/2DArt/SkillIcons/passives/vaalpact.dds":352},"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/ColdResistNode.dds":37,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":38,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":39,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":40,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":41,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":42,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":43,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":47,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":48,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":49,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":51,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":53,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":54,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":55,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":56,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":57,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":58,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":60,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":61,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":62,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":63,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":64,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":66,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":67,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":68,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":69,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":70,"Art/2DArt/SkillIcons/passives/MarkNode.dds":71,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":72,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":73,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":74,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":75,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":76,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":78,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":79,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":80,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":81,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":84,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":85,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":86,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":87,"Art/2DArt/SkillIcons/passives/Rage.dds":88,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":89,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":90,"Art/2DArt/SkillIcons/passives/Remnant.dds":91,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":92,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":93,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":94,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":95,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":96,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":97,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":98,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":100,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":101,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":102,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":103,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":104,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":105,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":106,"Art/2DArt/SkillIcons/passives/accuracydex.dds":107,"Art/2DArt/SkillIcons/passives/accuracystr.dds":108,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":109,"Art/2DArt/SkillIcons/passives/attackspeed.dds":110,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":111,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":112,"Art/2DArt/SkillIcons/passives/auraeffect.dds":113,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":114,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":115,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/blankInt.dds":117,"Art/2DArt/SkillIcons/passives/blankStr.dds":118,"Art/2DArt/SkillIcons/passives/blockstr.dds":119,"Art/2DArt/SkillIcons/passives/castspeed.dds":120,"Art/2DArt/SkillIcons/passives/chargedex.dds":121,"Art/2DArt/SkillIcons/passives/chargeint.dds":122,"Art/2DArt/SkillIcons/passives/chargestr.dds":123,"Art/2DArt/SkillIcons/passives/colddamage.dds":124,"Art/2DArt/SkillIcons/passives/coldresist.dds":125,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":126,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":128,"Art/2DArt/SkillIcons/passives/damage.dds":129,"Art/2DArt/SkillIcons/passives/damage_blue.dds":130,"Art/2DArt/SkillIcons/passives/damageaxe.dds":131,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":132,"Art/2DArt/SkillIcons/passives/damagespells.dds":133,"Art/2DArt/SkillIcons/passives/damagestaff.dds":134,"Art/2DArt/SkillIcons/passives/damagesword.dds":135,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":136,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":137,"Art/2DArt/SkillIcons/passives/energyshield.dds":138,"Art/2DArt/SkillIcons/passives/evade.dds":139,"Art/2DArt/SkillIcons/passives/firedamage.dds":140,"Art/2DArt/SkillIcons/passives/firedamageint.dds":141,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":142,"Art/2DArt/SkillIcons/passives/fireresist.dds":143,"Art/2DArt/SkillIcons/passives/flaskdex.dds":144,"Art/2DArt/SkillIcons/passives/flaskint.dds":145,"Art/2DArt/SkillIcons/passives/flaskstr.dds":146,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":147,"Art/2DArt/SkillIcons/passives/knockback.dds":148,"Art/2DArt/SkillIcons/passives/life1.dds":149,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":150,"Art/2DArt/SkillIcons/passives/lightningint.dds":151,"Art/2DArt/SkillIcons/passives/lightningstr.dds":152,"Art/2DArt/SkillIcons/passives/macedmg.dds":153,"Art/2DArt/SkillIcons/passives/mana.dds":154,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":155,"Art/2DArt/SkillIcons/passives/manastr.dds":156,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":157,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":158,"Art/2DArt/SkillIcons/passives/minionlife.dds":159,"Art/2DArt/SkillIcons/passives/minionstr.dds":160,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":161,"Art/2DArt/SkillIcons/passives/plusattribute.dds":162,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":163,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":164,"Art/2DArt/SkillIcons/passives/plusstrength.dds":165,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":166,"Art/2DArt/SkillIcons/passives/shieldblock.dds":167,"Art/2DArt/SkillIcons/passives/spellcritical.dds":168,"Art/2DArt/SkillIcons/passives/stun2h.dds":169,"Art/2DArt/SkillIcons/passives/stunstr.dds":170,"Art/2DArt/SkillIcons/passives/tempint.dds":171,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":172,"Art/2DArt/SkillIcons/passives/trapdamage.dds":173,"Art/2DArt/SkillIcons/passives/trapsmax.dds":174},"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/CompanionsNotable1.dds":61,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":62,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":63,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":64,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":65,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":75,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":92,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":93,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":94,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":95,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":96,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":100,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":103,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":104,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":105,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":106,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":107,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":109,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":120,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":121,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":122,"Art/2DArt/SkillIcons/passives/Harrier.dds":123,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":124,"Art/2DArt/SkillIcons/passives/Hearty.dds":125,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":126,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":127,"Art/2DArt/SkillIcons/passives/Hunter.dds":128,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":133,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":143,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":144,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":153,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":160,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":161,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":164,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":165,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":168,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":176,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":177,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":185,"Art/2DArt/SkillIcons/passives/Meleerange.dds":186,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":187,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":188,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":189,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":195,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":196,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":197,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":198,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":199,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":207,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":222,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":223,"Art/2DArt/SkillIcons/passives/Poison.dds":224,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":225,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":232,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":233,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":234,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":235,"Art/2DArt/SkillIcons/passives/RageNotable.dds":236,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":237,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":238,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":239,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":246,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":247,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":264,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":265,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":266,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":267,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":268,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":269,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":270,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":279,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":280,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":281,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":290,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":291,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":298,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":299,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":300,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":307,"Art/2DArt/SkillIcons/passives/Trap.dds":308,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":309,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":316,"Art/2DArt/SkillIcons/passives/Warrior.dds":317,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":318,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":326,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":327,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":334,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":335,"Art/2DArt/SkillIcons/passives/bodysoul.dds":336,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":337,"Art/2DArt/SkillIcons/passives/eagleeye.dds":338,"Art/2DArt/SkillIcons/passives/executioner.dds":339,"Art/2DArt/SkillIcons/passives/finesse.dds":340,"Art/2DArt/SkillIcons/passives/flameborn.dds":341,"Art/2DArt/SkillIcons/passives/frostborn.dds":342,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":343,"Art/2DArt/SkillIcons/passives/legstrength.dds":344,"Art/2DArt/SkillIcons/passives/lifeleech.dds":345,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":346,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":347,"Art/2DArt/SkillIcons/passives/steelspan.dds":348,"Art/2DArt/SkillIcons/passives/stormborn.dds":349,"Art/2DArt/SkillIcons/passives/strongarm.dds":350,"Art/2DArt/SkillIcons/passives/totemmax.dds":351,"Art/2DArt/SkillIcons/passives/vaalpact.dds":352},"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/ColdResistNode.dds":37,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":38,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":39,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":40,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":41,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":42,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":43,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":47,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":48,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":49,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":51,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":53,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":54,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":55,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":56,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":57,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":58,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":60,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":61,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":62,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":63,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":64,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":66,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":67,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":68,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":69,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":70,"Art/2DArt/SkillIcons/passives/MarkNode.dds":71,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":72,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":73,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":74,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":75,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":76,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":78,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":79,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":80,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":81,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":84,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":85,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":86,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":87,"Art/2DArt/SkillIcons/passives/Rage.dds":88,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":89,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":90,"Art/2DArt/SkillIcons/passives/Remnant.dds":91,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":92,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":93,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":94,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":95,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":96,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":97,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":98,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":99,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":100,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":101,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":102,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":103,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":104,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":105,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":106,"Art/2DArt/SkillIcons/passives/accuracydex.dds":107,"Art/2DArt/SkillIcons/passives/accuracystr.dds":108,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":109,"Art/2DArt/SkillIcons/passives/attackspeed.dds":110,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":111,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":112,"Art/2DArt/SkillIcons/passives/auraeffect.dds":113,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":114,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":115,"Art/2DArt/SkillIcons/passives/blankDex.dds":116,"Art/2DArt/SkillIcons/passives/blankInt.dds":117,"Art/2DArt/SkillIcons/passives/blankStr.dds":118,"Art/2DArt/SkillIcons/passives/blockstr.dds":119,"Art/2DArt/SkillIcons/passives/castspeed.dds":120,"Art/2DArt/SkillIcons/passives/chargedex.dds":121,"Art/2DArt/SkillIcons/passives/chargeint.dds":122,"Art/2DArt/SkillIcons/passives/chargestr.dds":123,"Art/2DArt/SkillIcons/passives/colddamage.dds":124,"Art/2DArt/SkillIcons/passives/coldresist.dds":125,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":126,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":128,"Art/2DArt/SkillIcons/passives/damage.dds":129,"Art/2DArt/SkillIcons/passives/damage_blue.dds":130,"Art/2DArt/SkillIcons/passives/damageaxe.dds":131,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":132,"Art/2DArt/SkillIcons/passives/damagespells.dds":133,"Art/2DArt/SkillIcons/passives/damagestaff.dds":134,"Art/2DArt/SkillIcons/passives/damagesword.dds":135,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":136,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":137,"Art/2DArt/SkillIcons/passives/energyshield.dds":138,"Art/2DArt/SkillIcons/passives/evade.dds":139,"Art/2DArt/SkillIcons/passives/firedamage.dds":140,"Art/2DArt/SkillIcons/passives/firedamageint.dds":141,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":142,"Art/2DArt/SkillIcons/passives/fireresist.dds":143,"Art/2DArt/SkillIcons/passives/flaskdex.dds":144,"Art/2DArt/SkillIcons/passives/flaskint.dds":145,"Art/2DArt/SkillIcons/passives/flaskstr.dds":146,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":147,"Art/2DArt/SkillIcons/passives/knockback.dds":148,"Art/2DArt/SkillIcons/passives/life1.dds":149,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":150,"Art/2DArt/SkillIcons/passives/lightningint.dds":151,"Art/2DArt/SkillIcons/passives/lightningstr.dds":152,"Art/2DArt/SkillIcons/passives/macedmg.dds":153,"Art/2DArt/SkillIcons/passives/mana.dds":154,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":155,"Art/2DArt/SkillIcons/passives/manastr.dds":156,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":157,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":158,"Art/2DArt/SkillIcons/passives/minionlife.dds":159,"Art/2DArt/SkillIcons/passives/minionstr.dds":160,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":161,"Art/2DArt/SkillIcons/passives/plusattribute.dds":162,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":163,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":164,"Art/2DArt/SkillIcons/passives/plusstrength.dds":165,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":166,"Art/2DArt/SkillIcons/passives/shieldblock.dds":167,"Art/2DArt/SkillIcons/passives/spellcritical.dds":168,"Art/2DArt/SkillIcons/passives/stun2h.dds":169,"Art/2DArt/SkillIcons/passives/stunstr.dds":170,"Art/2DArt/SkillIcons/passives/tempint.dds":171,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":172,"Art/2DArt/SkillIcons/passives/trapdamage.dds":173,"Art/2DArt/SkillIcons/passives/trapsmax.dds":174}},"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":[36025,57079,44309,44485,829,19966,43385,22221,7553,64139,15842],"orbits":[2,3,5,6,7],"x":-11682.6,"y":-5712.79},{"nodes":[18353,42762,11984,20496,3544,19953,50142,58197,35980],"orbits":[0,3,4,6,7],"x":-11664.2,"y":614.3},{"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":-11081.72,"y":-622.4},{"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":[1200],"orbits":[4],"x":-10682.77,"y":445.3},{"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":[65192,33423,15672,6999,59908,36197,27096,45400,63170,13691],"orbits":[0,3,7],"x":-10575.67,"y":-6386.37},{"nodes":[8850],"orbits":[0],"x":-10520.26,"y":-3933.98},{"nodes":[61896],"orbits":[0],"x":-10520.26,"y":-3710.82},{"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":[20989,42984,21184,20251],"orbits":[1,3,7],"x":-10401.12,"y":-377.96},{"nodes":[41768],"orbits":[0],"x":-10398.41,"y":-2166.4},{"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":[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":[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":[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":[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":[45354,64948,48264,12964],"orbits":[0,2],"x":-6563.83,"y":-4540.94},{"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":[21861,52807,61836,60551,65243,46421],"orbits":[0,2],"x":-6391.25,"y":-308.27},{"nodes":[38596],"orbits":[0],"x":-6378,"y":-8168.88},{"nodes":[3663],"orbits":[0],"x":-6370.88,"y":-1832.43},{"nodes":[43711,5544,14459],"orbits":[2],"x":-6370.69,"y":420.58},{"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":[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":[46380,21327,56876,1104],"orbits":[0,2],"x":-6249.06,"y":-4790.96},{"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":[35408,24767],"orbits":[2],"x":-6152.27,"y":-8668.35},{"nodes":[31925],"orbits":[0],"x":-6148.94,"y":-8372.25},{"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":[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":[36474],"orbits":[0],"x":-5914.3,"y":-8171.11},{"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":[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":[62948],"orbits":[0],"x":-5841.98,"y":-6866.01},{"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7],"x":-5794.96,"y":-3968.54},{"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":[25890,26863,54378,58198],"orbits":[0,2],"x":-5772.9,"y":-8770.8},{"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":[61471,61977,15580,49153],"orbits":[4],"x":-5699.67,"y":-4002.92},{"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":[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":[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":[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":[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":[1579],"orbits":[0],"x":3733.2751094136,"y":-16527.249541646},{"nodes":[32856],"orbits":[0],"x":3733.2751094136,"y":-14316.019541646},{"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":[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":[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":[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":[23825,11572,24325,32923,58215,40006,9896],"orbits":[2,3,4,7],"x":-4788.34,"y":-9175.84},{"nodes":[292],"orbits":[0],"x":-4776.07,"y":-9046.02},{"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":-10129.75},{"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":[31419,35787,42813,55491],"orbits":[1,7],"x":-4660.69,"y":223.67},{"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":[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":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3],"x":-1346.98,"y":-7376.61},{"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":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776,7333],"orbits":[0,2,3,4],"x":-949.03,"y":-5546.35},{"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":[10398,3472,56640,26682],"orbits":[7],"x":-691.9,"y":-7030.08},{"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":[13882],"orbits":[0],"x":-616.96,"y":-7619.15},{"nodes":[49512],"orbits":[0],"x":-613.84,"y":-7995.13},{"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4],"x":-612.8,"y":-8637.76},{"nodes":[51194,24060,3091,18793,33639,24087,8782],"orbits":[7,2],"x":-611.91,"y":-7670.28},{"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":[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":[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":[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":[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":[44605,2455,48588,13081],"orbits":[5],"x":-203.43,"y":2592.67},{"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":[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":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7],"x":5.06,"y":-6484.35},{"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":[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":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,2,7],"x":497.14,"y":-7601.82},{"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":[13909,31037,34866,40985,62679],"orbits":[2],"x":545.48,"y":-7039.3},{"nodes":[22691],"orbits":[0],"x":552.41,"y":-4284.19},{"nodes":[56978],"orbits":[0],"x":610.22,"y":8229.3},{"nodes":[8872],"orbits":[0],"x":615.53,"y":5034.86},{"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3],"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":[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":[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":[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":[17107],"orbits":[0],"x":1069.2,"y":-7546.83},{"nodes":[40345,42290,52254,37991],"orbits":[7],"x":1070.74,"y":-9412.83},{"nodes":[50540],"orbits":[0],"x":1073.28,"y":-9540.92},{"nodes":[17711],"orbits":[0],"x":1074.78,"y":-6113.73},{"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":[27853,59289,3365,52576,64550,22532],"orbits":[2,7],"x":1152.97,"y":4158.69},{"nodes":[33180,11788,14355,60269,8483,46989,6588],"orbits":[0,7],"x":1162.02,"y":-6821.54},{"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":[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":[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":3703.88,"y":-9989},{"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":[21080,1869,27095,48658,14890],"orbits":[0,2,7],"x":4022.98,"y":-4125.73},{"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":[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":[55938,41394,56844,40929,43633,40313,58363,10841],"orbits":[0,3,7],"x":4344.88,"y":-9579.04},{"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":[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":[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":[36623,3628,64474,31630,10729],"orbits":[0,2],"x":4939.08,"y":-9466.17},{"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":[56729,26308,27017,21349],"orbits":[2],"x":5001.21,"y":7989.42},{"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":[24210,26932,2200,35689,34543],"orbits":[0,2,7],"x":5279.5,"y":6677.73},{"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":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7],"x":5544.92,"y":8921.21},{"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":[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":[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":[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":[21801,30748,44369,24150],"orbits":[1,2,7],"x":6098.71,"y":-8410.42},{"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":[36365],"orbits":[6],"x":9688.2912025516,"y":12636.769100546},{"nodes":[4891],"orbits":[0],"x":9850.4112025516,"y":12521.869100546},{"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":1030,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":4,"stats":["15% increased chance to Shock"]},"16":{"ascendancyName":"Pathfinder","connections":[{"id":41619,"orbit":7}],"group":1522,"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"]},"30":{"ascendancyName":"Deadeye","connections":[],"group":1503,"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"]},"40":{"ascendancyName":"Pathfinder","connections":[],"group":1530,"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"]},"52":{"connections":[{"id":39131,"orbit":0}],"flavourText":"Tear my flesh and splinter my bones. You will never break my spirit.","group":184,"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"]},"55":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1098,"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"]},"59":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"60":{"connections":[{"id":58426,"orbit":0}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":2,"orbitIndex":13,"skill":60,"stats":["5% chance to Blind Enemies on Hit"]},"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"]},"71":{"connections":[{"id":62376,"orbit":0}],"group":463,"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"]},"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":1533,"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":[]},"94":{"connections":[{"id":27234,"orbit":0}],"group":907,"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"]},"95":{"connections":[{"id":8737,"orbit":0}],"group":495,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":95,"stats":["Minions deal 10% increased Damage"]},"97":{"connections":[{"id":52442,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":0,"skill":97,"stats":["3% increased Attack Speed"]},"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"]},"116":{"connections":[{"id":44359,"orbit":0}],"group":881,"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"]},"144":{"connections":[{"id":26598,"orbit":0}],"group":1200,"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"]},"151":{"connections":[{"id":34747,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":5,"skill":151,"stats":["16% increased Accuracy Rating at Close Range"]},"178":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":5,"orbitIndex":30,"skill":178,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"229":{"connections":[{"id":46365,"orbit":0}],"group":639,"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"]},"244":{"connections":[{"id":52354,"orbit":0}],"group":981,"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"]},"259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":507,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":259,"stats":[]},"261":{"connections":[{"id":1205,"orbit":0}],"group":1423,"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"]},"270":{"connections":[{"id":56219,"orbit":2}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":2,"orbitIndex":6,"skill":270,"stats":["Inherent loss of Rage is 15% slower"]},"292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":439,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":292,"stats":[]},"296":{"connections":[{"id":30959,"orbit":2},{"id":8145,"orbit":2},{"id":12992,"orbit":2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":7,"orbitIndex":18,"skill":296,"stats":["Damage Penetrates 3% of Enemy Elemental Resistances"]},"315":{"connections":[{"id":33216,"orbit":0}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":315,"stats":["10% increased Bleeding Duration"]},"326":{"connections":[{"id":31449,"orbit":0}],"group":1456,"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"]},"327":{"connections":[{"id":9652,"orbit":0}],"group":1295,"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"]},"328":{"connections":[{"id":25992,"orbit":0},{"id":60764,"orbit":0},{"id":21112,"orbit":0}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":0,"orbitIndex":0,"skill":328,"stats":["10% increased Accuracy Rating with Bows"]},"331":{"connections":[{"id":42103,"orbit":2}],"group":1261,"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"]},"336":{"connections":[{"id":4806,"orbit":-3}],"group":1305,"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"]},"338":{"connections":[{"id":20140,"orbit":0}],"group":915,"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"]},"354":{"connections":[{"id":48429,"orbit":0}],"group":736,"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"]},"364":{"connections":[{"id":2847,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":4,"skill":364,"stats":["+3 to all Attributes"]},"372":{"connections":[{"id":54340,"orbit":0}],"group":368,"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"]},"375":{"connections":[{"id":12276,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":17,"skill":375,"stats":["15% increased Damage with Maces"]},"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"]},"419":{"connections":[{"id":63400,"orbit":-7}],"group":1171,"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"]},"440":{"connections":[{"id":6133,"orbit":-5}],"group":105,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":440,"stats":["5% increased Block chance"]},"472":{"connections":[{"id":3744,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":472,"stats":["+8 to Dexterity"]},"479":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[{"id":29126,"orbit":2}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"483":{"connectionArt":"CharacterPlanned","connections":[{"id":12601,"orbit":2147483647},{"id":35745,"orbit":2147483647}],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"506":{"connections":[{"id":6416,"orbit":0}],"group":273,"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"]},"511":{"connections":[{"id":49734,"orbit":0}],"group":196,"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"]},"516":{"connections":[{"id":47157,"orbit":4}],"group":722,"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"]},"517":{"connections":[{"id":39037,"orbit":6},{"id":61027,"orbit":9}],"group":816,"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"]},"526":{"connections":[{"id":2645,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":4,"orbitIndex":4,"skill":526,"stats":["18% increased Stun Buildup with Maces"]},"528":{"ascendancyName":"Amazon","connections":[{"id":41008,"orbit":0}],"group":1540,"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"]},"535":{"connections":[{"id":34621,"orbit":0}],"group":1170,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":535,"stats":["15% increased Critical Damage Bonus"]},"541":{"connections":[],"group":205,"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"]},"558":{"connections":[],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":4,"skill":558,"stats":["12% increased Fire Damage"]},"589":{"connections":[{"id":14509,"orbit":0}],"group":106,"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"]},"630":{"connections":[{"id":13419,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":1,"orbitIndex":4,"skill":630,"stats":["15% increased Critical Damage Bonus"]},"632":{"connections":[{"id":56366,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":0,"orbitIndex":0,"skill":632,"stats":["3% increased Attack Speed with Daggers"]},"658":{"connections":[{"id":1861,"orbit":0}],"group":590,"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"]},"664":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1535,"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"]},"675":{"connections":[{"id":13489,"orbit":-9}],"group":132,"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"]},"703":{"connections":[{"id":44917,"orbit":-3}],"group":989,"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"]},"712":{"connections":[{"id":24948,"orbit":0}],"group":1384,"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"]},"722":{"connections":[{"id":3419,"orbit":0},{"id":15775,"orbit":0}],"group":1430,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":6952,"orbit":0}],"group":100,"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"]},"752":{"connections":[{"id":47420,"orbit":0}],"group":272,"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"]},"761":{"connectionArt":"CharacterPlanned","connections":[{"id":22133,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"762":{"ascendancyName":"Tactician","connections":[{"id":1988,"orbit":0}],"group":390,"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"]},"765":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"770":{"ascendancyName":"Infernalist","connections":[{"id":10694,"orbit":-7}],"group":759,"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"]},"829":{"connectionArt":"CharacterPlanned","connections":[{"id":36025,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":857,"stats":[]},"858":{"connections":[{"id":58387,"orbit":5}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":5,"orbitIndex":18,"skill":858,"stats":["7% increased Chaos Damage"]},"869":{"connections":[{"id":18959,"orbit":0}],"group":433,"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"]},"872":{"connections":[{"id":36556,"orbit":0}],"group":269,"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"]},"904":{"connections":[{"id":28578,"orbit":0}],"group":286,"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"]},"917":{"connections":[{"id":65160,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":10,"skill":917,"stats":["12% increased Stun Threshold"]},"934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"id":12526,"orbit":-4}],"group":763,"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"]},"968":{"connections":[{"id":6752,"orbit":0}],"group":602,"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"]},"989":{"connections":[{"id":26416,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":989,"stats":["15% increased Life Recovery from Flasks"]},"1019":{"connections":[{"id":45037,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1019,"stats":["12% increased Armour and Evasion Rating"]},"1020":{"connections":[{"id":54631,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":3,"skill":1020,"stats":["6% increased bonuses gained from Equipped Quiver"]},"1073":{"connections":[{"id":261,"orbit":0}],"group":1423,"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"]},"1087":{"connections":[{"id":25934,"orbit":0}],"group":401,"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"]},"1091":{"connections":[{"id":13333,"orbit":7},{"id":48699,"orbit":0}],"group":723,"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"]},"1104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":56876,"orbit":0}],"group":319,"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"]},"1130":{"connections":[{"id":29611,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":0,"orbitIndex":0,"skill":1130,"stats":["10% increased Damage with Flails"]},"1140":{"connections":[{"id":15507,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1143":{"connections":[{"id":58170,"orbit":0},{"id":50084,"orbit":0}],"group":650,"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"]},"1144":{"connections":[{"id":42070,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":1144,"stats":["8% increased Accuracy Rating"]},"1151":{"connections":[{"id":4113,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":8,"skill":1151,"stats":["15% increased Freeze Buildup"]},"1169":{"connections":[{"id":25031,"orbit":0}],"group":297,"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"]},"1170":{"connections":[{"id":58295,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":22,"skill":1170,"stats":["10% increased Attack Area Damage"]},"1200":{"connections":[{"id":53822,"orbit":-5},{"id":55190,"orbit":0},{"id":62313,"orbit":0},{"id":18353,"orbit":0}],"group":98,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":1205,"stats":[]},"1207":{"connections":[{"id":38323,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1214":{"connections":[{"id":53823,"orbit":-4}],"group":177,"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"]},"1215":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":1,"orbitIndex":5,"skill":1215,"stats":[]},"1218":{"connections":[{"id":14945,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":18,"skill":1218,"stats":["Minions have 10% increased maximum Life"]},"1220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":686,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":1220,"stats":[]},"1221":{"connections":[{"id":62237,"orbit":0},{"id":35743,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1221,"stats":["12% increased Armour and Evasion Rating"]},"1286":{"connections":[{"id":17903,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":12,"skill":1286,"stats":["16% increased Thorns damage"]},"1347":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":50098,"orbit":7}],"group":1533,"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"]},"1352":{"connections":[{"id":53216,"orbit":0}],"group":258,"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%"]},"1416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1416,"stats":[]},"1420":{"connections":[],"group":1144,"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"]},"1433":{"connections":[{"id":31238,"orbit":0},{"id":48530,"orbit":0},{"id":95,"orbit":0}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"1442":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53108,"orbit":0}],"group":520,"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"]},"1447":{"connections":[{"id":22393,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":14,"skill":1447,"stats":["Minions deal 10% increased Damage"]},"1448":{"connections":[],"group":1308,"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"]},"1459":{"connections":[{"id":47252,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":12,"skill":1459,"stats":["16% increased Mana Regeneration Rate while stationary"]},"1468":{"connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":6,"skill":1468,"stats":["10% increased Mana Regeneration Rate"]},"1477":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":11037,"orbit":0}],"group":813,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":1477,"stats":[]},"1499":{"connections":[{"id":33830,"orbit":-2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":0,"skill":1499,"stats":["10% increased Life Regeneration rate"]},"1502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":269,"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"]},"1506":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1108,"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"]},"1514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":29527,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1514,"stats":[]},"1543":{"connections":[{"id":14096,"orbit":7},{"id":59376,"orbit":0}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":1,"orbitIndex":0,"skill":1543,"stats":["3% increased Cast Speed"]},"1546":{"connections":[],"group":632,"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"]},"1579":{"ascendancyName":"Chronomancer","connections":[{"id":3605,"orbit":-9}],"group":404,"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"]},"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":1513,"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":[]},"1599":{"connections":[{"id":31286,"orbit":0}],"group":1348,"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"]},"1603":{"connections":[{"id":32040,"orbit":0}],"group":1142,"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"]},"1628":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":2147483647},{"id":9554,"orbit":-7}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1631":{"connections":[{"id":29049,"orbit":3},{"id":14001,"orbit":-3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":4,"skill":1631,"stats":["10% increased Charm Effect Duration"]},"1680":{"connections":[],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Projectile Parry Range","orbit":2,"orbitIndex":2,"skill":1680,"stats":["20% increased Parry Range"]},"1700":{"connections":[{"id":48699,"orbit":0}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":2,"orbitIndex":12,"skill":1700,"stats":["10% increased Cold Damage"]},"1723":{"connections":[{"id":53595,"orbit":0},{"id":2134,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":1723,"stats":["10% increased Poison Duration"]},"1739":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"1755":{"connections":[{"id":18845,"orbit":-4}],"group":757,"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"]},"1773":{"connections":[{"id":51213,"orbit":4}],"group":1114,"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"]},"1778":{"connections":[{"id":30408,"orbit":0},{"id":17523,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":12,"skill":1778,"stats":["20% increased Hazard Duration"]},"1801":{"connections":[{"id":60,"orbit":3}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":7,"orbitIndex":5,"skill":1801,"stats":["5% chance to Blind Enemies on Hit"]},"1823":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"1825":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":167,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1825,"stats":[]},"1826":{"connections":[{"id":39037,"orbit":0}],"group":874,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"1841":{"connections":[{"id":9405,"orbit":5}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":1841,"stats":["15% increased Evasion Rating"]},"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"]},"1861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":590,"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"]},"1865":{"connections":[{"id":54934,"orbit":0}],"group":619,"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"]},"1869":{"connections":[{"id":27095,"orbit":-4}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":1,"skill":1869,"stats":["15% increased Freeze Buildup"]},"1878":{"connections":[{"id":14328,"orbit":0}],"group":433,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1913":{"connections":[{"id":38646,"orbit":0},{"id":36709,"orbit":0}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":3,"skill":1913,"stats":["+20 to Armour"]},"1915":{"connections":[{"id":60085,"orbit":0}],"group":899,"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"]},"1922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51184,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1922,"stats":[]},"1928":{"connections":[],"group":511,"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"]},"1953":{"connections":[{"id":23905,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":1953,"stats":["15% increased Magnitude of Shock you inflict"]},"1973":{"connections":[{"id":8607,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":8,"skill":1973,"stats":["10% increased Mana Recovery from Flasks"]},"1988":{"ascendancyName":"Tactician","connections":[],"group":416,"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"]},"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"]},"1995":{"connections":[],"group":1139,"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"]},"2021":{"connections":[{"id":25857,"orbit":2147483647}],"group":1414,"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"]},"2071":{"connections":[{"id":38420,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":0,"skill":2071,"stats":["10% increased Mana Regeneration Rate"]},"2074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":419,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2074,"stats":[]},"2091":{"connections":[],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":4,"orbitIndex":18,"skill":2091,"stats":["8% chance to Poison on Hit"]},"2102":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":712,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2102,"stats":[]},"2113":{"connections":[{"id":326,"orbit":0},{"id":59694,"orbit":0}],"group":1462,"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"]},"2119":{"connections":[{"id":53505,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":0,"skill":2119,"stats":["10% increased amount of Life Leeched"]},"2128":{"connections":[{"id":65256,"orbit":0}],"group":1241,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":2128,"stats":["10% increased Hazard Area of Effect"]},"2134":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":9703,"orbit":0}],"group":1484,"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"]},"2138":{"connections":[{"id":32523,"orbit":0}],"group":632,"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"]},"2174":{"connections":[{"id":19249,"orbit":4}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":70,"skill":2174,"stats":["15% increased Totem Damage"]},"2200":{"connections":[{"id":35689,"orbit":7}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":7,"orbitIndex":20,"skill":2200,"stats":["10% increased Damage"]},"2211":{"connections":[{"id":7473,"orbit":7}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":19,"skill":2211,"stats":["Herald Skills deal 20% increased Damage"]},"2244":{"connections":[],"group":431,"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"]},"2254":{"connections":[{"id":60685,"orbit":0},{"id":43736,"orbit":5},{"id":14666,"orbit":6}],"group":821,"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"]},"2334":{"connections":[{"id":65091,"orbit":6},{"id":3209,"orbit":-6}],"group":1396,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":2334,"stats":["+8 to Dexterity"]},"2335":{"connections":[{"id":18121,"orbit":0}],"group":1191,"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"]},"2336":{"connections":[{"id":63402,"orbit":2}],"group":403,"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"]},"2344":{"connections":[{"id":34317,"orbit":0}],"group":260,"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"]},"2361":{"connections":[{"id":34316,"orbit":0}],"group":1462,"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"]},"2394":{"connections":[],"group":833,"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"]},"2397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":666,"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"]},"2408":{"connections":[{"id":35696,"orbit":0},{"id":35534,"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":2408,"stats":["+5 to any Attribute"]},"2446":{"connections":[{"id":37164,"orbit":0}],"group":1171,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Elemental Damage","orbit":3,"orbitIndex":18,"skill":2446,"stats":["10% increased Elemental Damage"]},"2455":{"connections":[],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":11,"skill":2455,"stats":["8% increased Projectile Damage"]},"2461":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":44605,"orbit":0}],"group":809,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":2461,"stats":[]},"2486":{"connections":[{"id":63732,"orbit":3},{"id":19341,"orbit":4},{"id":58884,"orbit":0}],"group":891,"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"]},"2491":{"connections":[{"id":28175,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":10,"skill":2491,"stats":[]},"2500":{"connections":[{"id":6030,"orbit":7}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":10,"skill":2500,"stats":["8% chance to Poison on Hit"]},"2508":{"connections":[{"id":47168,"orbit":0},{"id":59425,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":18,"skill":2508,"stats":["3% of Damage taken Recouped as Life"]},"2511":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":544,"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"]},"2516":{"ascendancyName":"Lich","connections":[],"group":1225,"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"]},"2559":{"connections":[{"id":62542,"orbit":7}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":22,"skill":2559,"stats":["10% increased Flask Charges gained"]},"2560":{"connections":[{"id":20044,"orbit":0}],"group":1472,"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"]},"2575":{"connections":[{"id":65154,"orbit":0}],"group":172,"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"]},"2582":{"connections":[{"id":48116,"orbit":0},{"id":41861,"orbit":0},{"id":56847,"orbit":0}],"group":1448,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2606":{"connections":[{"id":47284,"orbit":0},{"id":20388,"orbit":0},{"id":15194,"orbit":0},{"id":3414,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":1,"orbitIndex":6,"skill":2606,"stats":["Minions have 10% increased maximum Life"]},"2645":{"connections":[{"id":14832,"orbit":0},{"id":52829,"orbit":0}],"group":126,"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"]},"2653":{"connections":[{"id":19203,"orbit":0},{"id":30896,"orbit":0}],"group":448,"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"]},"2672":{"connections":[{"id":45569,"orbit":6}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":2,"skill":2672,"stats":["15% increased Critical Spell Damage Bonus"]},"2702":{"ascendancyName":"Amazon","connections":[{"id":3065,"orbit":7}],"group":1550,"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"]},"2732":{"connections":[{"id":16790,"orbit":-2}],"group":907,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":1,"orbitIndex":11,"skill":2732,"stats":["8% increased Mana Cost Efficiency"]},"2733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":2733,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"2745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1371,"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"]},"2810":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-3}],"group":611,"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"]},"2814":{"connections":[{"id":41447,"orbit":0},{"id":19749,"orbit":0}],"group":1010,"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%"]},"2841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":939,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":2841,"stats":[]},"2843":{"connections":[{"id":61396,"orbit":0},{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"2847":{"connections":[{"id":45272,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2857":{"ascendancyName":"Stormweaver","connections":[{"id":7998,"orbit":0}],"group":517,"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"]},"2863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":540,"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"]},"2864":{"connections":[{"id":54818,"orbit":0},{"id":21468,"orbit":0},{"id":33369,"orbit":0},{"id":59480,"orbit":0},{"id":63360,"orbit":0}],"group":658,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"2877":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"2888":{"connections":[{"id":8827,"orbit":0}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":15,"skill":2888,"stats":["8% increased amount of Life Leeched"]},"2936":{"connections":[{"id":13407,"orbit":-3}],"group":1485,"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"]},"2946":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Resistance Mastery","orbit":1,"orbitIndex":1,"skill":2946,"stats":[]},"2955":{"connections":[{"id":28800,"orbit":0}],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":2,"orbitIndex":0,"skill":2955,"stats":["10% increased Projectile Damage"]},"2964":{"connections":[{"id":18374,"orbit":-7}],"group":493,"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"]},"2978":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":2978,"stats":[]},"2995":{"ascendancyName":"Lich","connections":[{"id":2516,"orbit":4}],"group":1209,"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"]},"2999":{"connections":[],"group":270,"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"]},"3025":{"connections":[{"id":38732,"orbit":0},{"id":36782,"orbit":0},{"id":25594,"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":0,"orbitIndex":0,"skill":3025,"stats":["+5 to any Attribute"]},"3027":{"connections":[{"id":54228,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":22,"skill":3027,"stats":["10% increased Physical Damage"]},"3041":{"connections":[{"id":59795,"orbit":-4},{"id":858,"orbit":0},{"id":19240,"orbit":6}],"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":3,"orbitIndex":10,"skill":3041,"stats":["+5 to any Attribute"]},"3042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":51871,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":19,"skill":3042,"stats":[]},"3051":{"connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":0,"skill":3051,"stats":["Offerings have 30% increased Maximum Life"]},"3065":{"ascendancyName":"Amazon","connections":[],"group":1552,"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"]},"3084":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":30996,"orbit":2147483647}],"group":500,"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"]},"3091":{"connections":[{"id":24087,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":2,"orbitIndex":8,"skill":3091,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]},"3109":{"connections":[{"id":29514,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":6,"skill":3109,"stats":["10% increased Grenade Area of Effect"]},"3128":{"connections":[{"id":19722,"orbit":0}],"group":1251,"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"]},"3131":{"connections":[{"id":2394,"orbit":0}],"group":833,"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"]},"3165":{"ascendancyName":"Blood Mage","connections":[{"id":56162,"orbit":-4}],"group":1025,"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"]},"3170":{"connections":[{"id":65161,"orbit":0}],"group":1387,"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"]},"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"]},"3191":{"connections":[{"id":9863,"orbit":4}],"group":590,"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"]},"3203":{"connections":[{"id":30562,"orbit":-4},{"id":28464,"orbit":4}],"group":1115,"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"]},"3209":{"connections":[{"id":59720,"orbit":-6},{"id":65091,"orbit":4}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":16,"skill":3209,"stats":["15% increased Evasion Rating"]},"3215":{"connections":[{"id":44359,"orbit":0}],"group":881,"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"]},"3218":{"connections":[{"id":48171,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":17,"skill":3218,"stats":["10% increased Elemental Damage"]},"3223":{"ascendancyName":"Ritualist","connections":[{"id":7068,"orbit":-5},{"id":34785,"orbit":9}],"group":1556,"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"]},"3234":{"connections":[{"id":4447,"orbit":0},{"id":31745,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":8,"skill":3234,"stats":["15% increased Pin duration"]},"3242":{"connections":[{"id":59636,"orbit":-4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":3242,"stats":["10% increased Mana Regeneration Rate"]},"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"]},"3251":{"connections":[{"id":21984,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"3281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connectionArt":"CharacterPlanned","connections":[{"id":35720,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3282":{"connections":[{"id":52860,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":15,"skill":3282,"stats":["20% increased Ballista Immobilisation buildup"]},"3332":{"connections":[],"group":623,"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"]},"3336":{"connections":[{"id":30615,"orbit":0}],"group":1408,"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"]},"3339":{"connections":[{"id":45585,"orbit":0}],"group":453,"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"]},"3348":{"connections":[{"id":50767,"orbit":0}],"group":101,"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"]},"3355":{"connections":[{"id":25211,"orbit":0}],"group":608,"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"]},"3363":{"connections":[{"id":38433,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":11,"skill":3363,"stats":["Minions have 10% increased maximum Life"]},"3365":{"connections":[{"id":59289,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":17,"skill":3365,"stats":["15% increased Immobilisation buildup"]},"3367":{"aliasPassiveSocket":"voices_jewel_slot5","connections":[],"group":668,"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,"skill":3367,"stats":[]},"3414":{"connections":[{"id":14575,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":3414,"stats":["Minions have +20% to Lightning Resistance"]},"3419":{"connections":[{"id":20429,"orbit":0},{"id":30973,"orbit":2}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Damage","orbit":6,"orbitIndex":59,"skill":3419,"stats":["10% increased Damage with Daggers"]},"3431":{"connections":[{"id":43082,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":6,"skill":3431,"stats":["3% increased Skill Speed"]},"3438":{"connections":[{"id":18856,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":3,"skill":3438,"stats":["Invocated Spells deal 15% increased Damage"]},"3443":{"connections":[{"id":14548,"orbit":-4},{"id":63545,"orbit":-3},{"id":55180,"orbit":7}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":12,"skill":3443,"stats":["Minions deal 10% increased Damage"]},"3446":{"connections":[{"id":61938,"orbit":0},{"id":58088,"orbit":0},{"id":41147,"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":3446,"stats":["+5 to any Attribute"]},"3458":{"connections":[{"id":45609,"orbit":-4}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":23,"skill":3458,"stats":["15% increased Critical Damage Bonus"]},"3463":{"connections":[{"id":4328,"orbit":0},{"id":26885,"orbit":0},{"id":28021,"orbit":0}],"group":1211,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"3471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":676,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":3471,"stats":[]},"3472":{"connections":[{"id":26682,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":7,"orbitIndex":12,"skill":3472,"stats":["10% increased Critical Hit Chance for Spells"]},"3492":{"connections":[{"id":60313,"orbit":0},{"id":19112,"orbit":0}],"group":711,"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"]},"3516":{"connections":[{"id":62039,"orbit":0},{"id":23227,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":0,"skill":3516,"stats":["10% increased Melee Damage"]},"3543":{"connections":[{"id":31825,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":23,"skill":3543,"stats":["12% increased Attack Cold Damage"]},"3544":{"connectionArt":"CharacterPlanned","connections":[{"id":19953,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3567":{"connections":[{"id":53188,"orbit":0},{"id":10159,"orbit":0}],"group":1002,"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"]},"3601":{"connections":[{"id":47191,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":62,"skill":3601,"stats":["12% increased Fire Damage"]},"3605":{"ascendancyName":"Chronomancer","connections":[],"group":371,"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"]},"3624":{"connections":[{"id":18470,"orbit":0},{"id":10927,"orbit":0},{"id":16484,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":5,"skill":3624,"stats":["15% increased Pin Buildup"]},"3628":{"connections":[{"id":64474,"orbit":0},{"id":3251,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":19,"skill":3628,"stats":["6% faster start of Energy Shield Recharge"]},"3630":{"connections":[{"id":62624,"orbit":-5}],"group":1316,"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"]},"3640":{"connections":[{"id":37780,"orbit":2147483647},{"id":17724,"orbit":2147483647},{"id":14267,"orbit":0}],"group":1446,"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"]},"3652":{"connections":[{"id":56714,"orbit":3}],"group":483,"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"]},"3660":{"connections":[{"id":25619,"orbit":-7},{"id":57196,"orbit":0}],"group":845,"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"]},"3663":{"connections":[],"group":311,"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"]},"3665":{"connections":[{"id":32185,"orbit":-7}],"group":1009,"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"]},"3681":{"connectionArt":"CharacterPlanned","connections":[{"id":57386,"orbit":-8}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3685":{"connections":[{"id":32151,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":3685,"stats":["+3 to all Attributes"]},"3688":{"connections":[{"id":47614,"orbit":-7},{"id":32509,"orbit":0}],"group":1090,"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"]},"3698":{"connections":[{"id":33137,"orbit":0}],"group":289,"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"]},"3700":{"connections":[{"id":6842,"orbit":3}],"group":1276,"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"]},"3704":{"ascendancyName":"Witchhunter","connections":[{"id":32559,"orbit":0}],"group":281,"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"]},"3717":{"connections":[{"id":19998,"orbit":0},{"id":35653,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":3717,"stats":["12% increased Damage with Crossbows"]},"3723":{"connections":[{"id":16413,"orbit":0},{"id":17092,"orbit":0}],"group":226,"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"]},"3744":{"connections":[{"id":5332,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":10,"skill":3744,"stats":["+8 to Dexterity"]},"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"]},"3775":{"connections":[{"id":45244,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":12,"skill":3775,"stats":["15% increased Life Flask Charges gained"]},"3781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"3823":{"connections":[{"id":5726,"orbit":0}],"group":747,"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"]},"3843":{"connections":[{"id":65265,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":11,"skill":3843,"stats":["Parry has 25% increased Stun Buildup"]},"3866":{"connections":[{"id":32258,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":5,"skill":3866,"stats":["Minions have 12% increased maximum Life"]},"3893":{"connections":[{"id":28038,"orbit":-2}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":0,"skill":3893,"stats":["15% increased Evasion Rating"]},"3894":{"connections":[{"id":13307,"orbit":0},{"id":857,"orbit":0}],"group":609,"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"]},"3896":{"connectionArt":"CharacterPlanned","connections":[{"id":56320,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3918":{"connections":[{"id":59695,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":3918,"stats":["10% increased Mana Regeneration Rate"]},"3921":{"connections":[{"id":38398,"orbit":0}],"group":555,"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"]},"3936":{"connections":[{"id":13397,"orbit":0}],"group":693,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":3936,"stats":["10% increased Melee Damage"]},"3949":{"connections":[{"id":27296,"orbit":0},{"id":15247,"orbit":2}],"group":141,"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"]},"3985":{"connections":[{"id":48660,"orbit":0},{"id":64140,"orbit":3}],"group":1061,"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"]},"3987":{"ascendancyName":"Deadeye","connections":[{"id":30,"orbit":0}],"group":1502,"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"]},"3988":{"connections":[{"id":51832,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":13,"skill":3988,"stats":["Empowered Attacks deal 16% increased Damage"]},"3994":{"connections":[{"id":34908,"orbit":0}],"group":1358,"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"]},"3995":{"connections":[{"id":12311,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":13,"skill":3995,"stats":["15% increased Crossbow Reload Speed"]},"3999":{"connections":[{"id":37665,"orbit":4},{"id":57863,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":15,"skill":3999,"stats":["10% increased Attack Area Damage"]},"4015":{"connections":[{"id":47429,"orbit":3},{"id":59466,"orbit":-3}],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":4,"orbitIndex":6,"skill":4015,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"4017":{"connections":[{"id":10079,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4017,"stats":["10% increased Mana Regeneration Rate"]},"4031":{"connections":[{"id":50403,"orbit":0}],"group":1373,"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"]},"4046":{"connections":[{"id":8875,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":2,"orbitIndex":8,"skill":4046,"stats":["15% increased Electrocute Buildup"]},"4059":{"connections":[{"id":10382,"orbit":0},{"id":9510,"orbit":0},{"id":2446,"orbit":0},{"id":18744,"orbit":7},{"id":42339,"orbit":-7}],"group":1130,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4061":{"connections":[{"id":27491,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":36,"skill":4061,"stats":["15% increased maximum Energy Shield"]},"4083":{"connections":[{"id":33815,"orbit":0},{"id":43677,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":11,"skill":4083,"stats":["10% increased Magnitude of Poison you inflict"]},"4086":{"ascendancyName":"Tactician","connections":[],"group":452,"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"]},"4091":{"connections":[{"id":44316,"orbit":2147483647}],"group":271,"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"]},"4113":{"connections":[{"id":4627,"orbit":0}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":4,"skill":4113,"stats":["15% increased Freeze Buildup"]},"4128":{"connections":[{"id":54283,"orbit":3},{"id":54811,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":18,"skill":4128,"stats":["15% increased Armour"]},"4139":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":138,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":4139,"stats":[]},"4140":{"connections":[{"id":59093,"orbit":0},{"id":57273,"orbit":0},{"id":296,"orbit":0}],"group":224,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4157":{"connections":[{"id":49220,"orbit":-6}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":18,"skill":4157,"stats":["10% increased Critical Hit Chance"]},"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"]},"4203":{"connections":[{"id":30555,"orbit":4},{"id":42736,"orbit":-4},{"id":59603,"orbit":-4},{"id":49046,"orbit":0},{"id":42076,"orbit":3}],"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":4203,"stats":["+5 to any Attribute"]},"4238":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1201,"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"]},"4245":{"ascendancyName":"Tactician","connections":[{"id":54838,"orbit":0}],"group":340,"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"]},"4271":{"connections":[{"id":62887,"orbit":0},{"id":33225,"orbit":-3},{"id":61768,"orbit":-7},{"id":63926,"orbit":-2}],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":8,"skill":4271,"stats":["Minions have +8% to all Elemental Resistances"]},"4295":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":34248,"orbit":-3}],"group":537,"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"]},"4313":{"connections":[{"id":28992,"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":55896,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":7,"orbitIndex":6,"skill":4313,"stats":["8% increased Projectile Damage"]},"4328":{"connections":[{"id":21208,"orbit":0},{"id":44628,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4331":{"connections":[{"id":33590,"orbit":0}],"group":122,"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"]},"4345":{"connections":[{"id":45885,"orbit":0}],"group":701,"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"]},"4346":{"connections":[{"id":4519,"orbit":0},{"id":20677,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":4346,"stats":["10% increased Critical Hit Chance"]},"4364":{"connections":[{"id":23736,"orbit":0}],"group":1104,"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"]},"4367":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"4377":{"connections":[{"id":50273,"orbit":0}],"group":833,"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"]},"4378":{"connections":[{"id":6330,"orbit":0},{"id":59503,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":9,"skill":4378,"stats":["8% increased Accuracy Rating"]},"4407":{"connections":[],"group":581,"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"]},"4423":{"connections":[{"id":54058,"orbit":0}],"group":1477,"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"]},"4442":{"connections":[{"id":62034,"orbit":0}],"group":144,"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"]},"4447":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":984,"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"]},"4456":{"connections":[{"id":57710,"orbit":0},{"id":4776,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4467":{"connections":[{"id":42347,"orbit":-2}],"group":1469,"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"]},"4492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":795,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Attributes Mastery","orbit":0,"orbitIndex":0,"skill":4492,"stats":[]},"4519":{"connections":[{"id":13724,"orbit":0}],"group":1118,"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"]},"4527":{"connections":[{"id":54701,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"4534":{"connections":[],"group":1293,"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"]},"4536":{"connections":[{"id":37514,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":1,"skill":4536,"stats":["3% increased Attack Speed with Quarterstaves"]},"4544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1166,"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"]},"4547":{"connections":[{"id":2946,"orbit":0}],"group":243,"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"]},"4552":{"connections":[{"id":50817,"orbit":2}],"group":1229,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":4552,"stats":["10% increased Mana Regeneration Rate"]},"4577":{"connections":[{"id":3999,"orbit":4}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":8,"skill":4577,"stats":["6% increased Area of Effect for Attacks"]},"4579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":910,"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"]},"4621":{"connectionArt":"CharacterPlanned","connections":[{"id":57202,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4623":{"connections":[{"id":48524,"orbit":4}],"group":472,"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"]},"4624":{"connections":[{"id":49550,"orbit":3}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":4624,"stats":["Gain 1 Rage on Melee Hit"]},"4627":{"connections":[{"id":44179,"orbit":0},{"id":55572,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.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"]},"4661":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":505,"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"]},"4663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":388,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":0,"orbitIndex":0,"skill":4663,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4664":{"connections":[{"id":43938,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":42,"skill":4664,"stats":["6% increased Trap Throwing Speed"]},"4665":{"connections":[{"id":1913,"orbit":0}],"group":655,"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"]},"4673":{"connections":[{"id":10047,"orbit":0},{"id":51812,"orbit":0}],"group":238,"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"]},"4681":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":26228,"orbit":0}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4709":{"connections":[],"group":1310,"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"]},"4716":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":678,"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"]},"4725":{"connections":[{"id":4140,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":4,"orbitIndex":63,"skill":4725,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"4739":{"connections":[{"id":18845,"orbit":0}],"group":798,"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"]},"4748":{"connections":[{"id":2254,"orbit":6}],"group":819,"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"]},"4776":{"connections":[{"id":14363,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":4776,"stats":["Damage Penetrates 6% Lightning Resistance"]},"4806":{"connections":[{"id":32183,"orbit":-4}],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":4806,"stats":["Damage Penetrates 6% Cold Resistance"]},"4810":{"connections":[{"id":48805,"orbit":7},{"id":6161,"orbit":0}],"group":1132,"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"]},"4828":{"connections":[{"id":19044,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4828,"stats":["10% increased Mana Regeneration Rate"]},"4844":{"connections":[{"id":33053,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":1,"skill":4844,"stats":["10% increased Projectile Damage"]},"4847":{"connections":[{"id":6294,"orbit":5}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":5,"orbitIndex":66,"skill":4847,"stats":["3% increased Cast Speed"]},"4850":{"connections":[{"id":35503,"orbit":0}],"group":968,"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"]},"4873":{"connectionArt":"CharacterPlanned","connections":[{"id":12683,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4882":{"connections":[{"id":38172,"orbit":0},{"id":51921,"orbit":0}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":3,"skill":4882,"stats":["15% increased Totem Damage"]},"4891":{"ascendancyName":"Ritualist","connections":[],"group":1566,"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"]},"4921":{"connections":[{"id":13524,"orbit":0}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":11,"skill":4921,"stats":["20% increased Presence Area of Effect"]},"4925":{"connections":[{"id":19779,"orbit":7}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":4925,"stats":["7% increased Chaos Damage"]},"4931":{"connections":[{"id":21404,"orbit":0},{"id":27307,"orbit":0}],"group":487,"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"]},"4948":{"connections":[],"group":382,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":6,"skill":4948,"stats":["Break 20% increased Armour"]},"4956":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":576,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":4956,"stats":[]},"4959":{"connections":[{"id":12166,"orbit":0}],"group":1253,"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"]},"4970":{"connections":[{"id":23195,"orbit":0}],"group":333,"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"]},"4985":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"5009":{"connections":[{"id":12169,"orbit":0}],"group":1242,"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"]},"5048":{"connections":[{"id":261,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":15,"skill":5048,"stats":["10% increased Magnitude of Poison you inflict"]},"5049":{"connections":[{"id":49231,"orbit":0},{"id":42177,"orbit":3}],"group":621,"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"]},"5066":{"connections":[{"id":6714,"orbit":0}],"group":654,"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"]},"5077":{"connections":[{"id":33400,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":4,"skill":5077,"stats":["15% increased Parry Hit Area of Effect"]},"5084":{"connections":[{"id":35324,"orbit":2}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":22,"skill":5084,"stats":["30% increased Flammability Magnitude"]},"5088":{"connections":[{"id":49537,"orbit":0}],"group":353,"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"]},"5098":{"connections":[{"id":16385,"orbit":-9},{"id":41651,"orbit":2147483647}],"group":667,"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"]},"5108":{"connections":[],"group":804,"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"]},"5163":{"connections":[{"id":26726,"orbit":0}],"group":1351,"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"]},"5186":{"connections":[{"id":6800,"orbit":3}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":5186,"stats":["11% increased Chaos Damage"]},"5188":{"connections":[{"id":27671,"orbit":0},{"id":38668,"orbit":0},{"id":24165,"orbit":0}],"group":1146,"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"]},"5191":{"connections":[{"id":54198,"orbit":0}],"group":1202,"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"]},"5227":{"connections":[{"id":51708,"orbit":0}],"group":1094,"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"]},"5257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"5284":{"connections":[{"id":32278,"orbit":0}],"group":512,"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"]},"5295":{"connections":[{"id":5961,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":5295,"stats":["Damage Penetrates 6% Lightning Resistance"]},"5305":{"connections":[{"id":3431,"orbit":0},{"id":24287,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":2,"skill":5305,"stats":["3% increased Skill Speed"]},"5314":{"connections":[{"id":29009,"orbit":0}],"group":774,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"5324":{"connections":[{"id":54437,"orbit":2147483647},{"id":2397,"orbit":0}],"group":666,"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"]},"5332":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":834,"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"]},"5335":{"connections":[{"id":52060,"orbit":0}],"group":1270,"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"]},"5348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5348,"stats":[]},"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"]},"5390":{"connections":[{"id":16142,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":14,"skill":5390,"stats":["15% increased Freeze Buildup"]},"5398":{"connections":[{"id":51820,"orbit":-6}],"group":292,"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"]},"5407":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":56910,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":5407,"stats":[]},"5410":{"connections":[{"id":33590,"orbit":0}],"group":122,"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"]},"5501":{"connections":[{"id":48821,"orbit":0}],"group":778,"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"]},"5544":{"connections":[{"id":43711,"orbit":3}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":10,"skill":5544,"stats":["30% increased Thorns Critical Damage Bonus"]},"5563":{"ascendancyName":"Amazon","connections":[{"id":47312,"orbit":-7}],"group":1557,"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"]},"5564":{"connections":[{"id":48833,"orbit":0},{"id":63585,"orbit":0}],"group":1053,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":5564,"stats":["15% increased Electrocute Buildup"]},"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"]},"5580":{"connections":[{"id":42710,"orbit":0}],"group":148,"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"]},"5594":{"connections":[{"id":50107,"orbit":0},{"id":8785,"orbit":0}],"group":1033,"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"]},"5642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":57405,"orbit":0}],"group":239,"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"]},"5663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":283,"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"]},"5681":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[],"group":451,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":5681,"stats":[]},"5686":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":202,"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"]},"5692":{"connections":[{"id":41154,"orbit":0},{"id":35708,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":8,"skill":5692,"stats":["12% increased Magnitude of Chill you inflict"]},"5695":{"connections":[{"id":32309,"orbit":7},{"id":50104,"orbit":5}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":20,"skill":5695,"stats":["15% increased Archon Buff duration"]},"5702":{"connections":[{"id":13411,"orbit":-5}],"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":5702,"stats":["+5 to any Attribute"]},"5703":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"5704":{"connections":[{"id":62166,"orbit":0}],"group":1180,"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"]},"5710":{"connections":[{"id":6839,"orbit":-3},{"id":38323,"orbit":0},{"id":14923,"orbit":0},{"id":6529,"orbit":-4}],"group":636,"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"]},"5726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":747,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5726,"stats":[]},"5728":{"connections":[{"id":17349,"orbit":-3},{"id":58138,"orbit":0}],"group":116,"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"]},"5733":{"ascendancyName":"Spirit Walker","connections":[{"id":56489,"orbit":0}],"group":1542,"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"]},"5740":{"connections":[{"id":40687,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":2,"orbitIndex":6,"skill":5740,"stats":["20% increased Presence Area of Effect"]},"5766":{"connections":[{"id":51416,"orbit":-4},{"id":16705,"orbit":4}],"group":1231,"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"]},"5777":{"connections":[{"id":58651,"orbit":0}],"group":567,"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"]},"5797":{"connections":[{"id":59538,"orbit":0}],"group":1355,"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"]},"5800":{"connections":[{"id":43149,"orbit":0},{"id":22975,"orbit":0}],"group":299,"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"]},"5802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1307,"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"]},"5817":{"ascendancyName":"Deadeye","connections":[],"group":1508,"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"]},"5826":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1069,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":22,"skill":5826,"stats":[]},"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":[]},"5862":{"connections":[{"id":22697,"orbit":-2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":7,"orbitIndex":14,"skill":5862,"stats":["+5% to Lightning Resistance"]},"5920":{"connections":[{"id":52574,"orbit":-3},{"id":51921,"orbit":5}],"group":630,"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"]},"5936":{"connections":[{"id":65248,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":5936,"stats":["10% increased Elemental Damage"]},"5961":{"connections":[{"id":54675,"orbit":0},{"id":11315,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":5961,"stats":["10% increased Lightning Damage"]},"5988":{"connections":[{"id":38459,"orbit":7}],"group":1084,"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"]},"6006":{"connections":[{"id":38105,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":62,"skill":6006,"stats":["15% increased maximum Energy Shield"]},"6008":{"connections":[{"id":58096,"orbit":2}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":19,"skill":6008,"stats":["10% increased Spell Damage"]},"6010":{"connections":[{"id":13367,"orbit":0},{"id":38969,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":6010,"stats":["12% increased Accuracy Rating"]},"6015":{"connections":[{"id":35426,"orbit":6}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6030":{"connections":[],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":5,"skill":6030,"stats":["8% chance to Poison on Hit"]},"6077":{"connections":[{"id":35645,"orbit":-2}],"group":529,"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"]},"6078":{"connections":[{"id":61119,"orbit":4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":1,"skill":6078,"stats":["8% chance to Poison on Hit"]},"6079":{"connections":[{"id":10242,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":6079,"stats":["3% of Damage taken Recouped as Life"]},"6088":{"connectionArt":"CharacterPlanned","connections":[{"id":54380,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6100":{"connectionArt":"CharacterPlanned","connections":[{"id":20963,"orbit":4}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6109":{"ascendancyName":"Amazon","connections":[{"id":63254,"orbit":0}],"group":1554,"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"]},"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"]},"6133":{"connections":[{"id":33402,"orbit":0},{"id":58138,"orbit":0}],"group":116,"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"]},"6153":{"connections":[{"id":44952,"orbit":0},{"id":10362,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":14,"skill":6153,"stats":["10% increased Life Regeneration rate"]},"6161":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":0,"orbitIndex":0,"skill":6161,"stats":[]},"6178":{"connections":[{"id":33415,"orbit":0}],"group":919,"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"]},"6222":{"connections":[{"id":57608,"orbit":0},{"id":65189,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Damage","orbit":7,"orbitIndex":11,"skill":6222,"stats":["10% increased Damage while Shapeshifted"]},"6229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":26490,"orbit":7}],"group":498,"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"]},"6266":{"connections":[{"id":60085,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":9,"skill":6266,"stats":["10% increased Damage against Demons"]},"6269":{"connections":[{"id":45990,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":2,"orbitIndex":1,"skill":6269,"stats":["3% increased Attack Speed with Axes"]},"6274":{"connections":[{"id":56567,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":17,"skill":6274,"stats":["8% increased Accuracy Rating"]},"6287":{"connections":[{"id":364,"orbit":2147483647}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":6287,"stats":["+8 to Intelligence"]},"6294":{"connections":[{"id":52429,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":4,"orbitIndex":54,"skill":6294,"stats":["3% increased Cast Speed"]},"6304":{"connections":[{"id":12125,"orbit":0}],"group":381,"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"]},"6330":{"connections":[],"group":1319,"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"]},"6338":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":2254,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":6338,"stats":[]},"6355":{"connections":[{"id":14110,"orbit":-4},{"id":38124,"orbit":4}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":2,"skill":6355,"stats":["15% increased Totem Damage"]},"6356":{"connections":[{"id":27900,"orbit":0}],"group":463,"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"]},"6416":{"connections":[{"id":51821,"orbit":0}],"group":273,"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"]},"6490":{"connections":[{"id":14082,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":6490,"stats":["10% increased Physical Damage"]},"6502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":174,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"name":"Flail Mastery","orbit":0,"orbitIndex":0,"skill":6502,"stats":[]},"6505":{"connections":[{"id":55060,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":3,"orbitIndex":4,"skill":6505,"stats":["15% chance to Pierce an Enemy"]},"6514":{"connections":[{"id":47173,"orbit":0}],"group":188,"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"]},"6529":{"connections":[{"id":32416,"orbit":-3}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":0,"skill":6529,"stats":["15% increased Armour"]},"6530":{"connections":[{"id":1448,"orbit":4},{"id":11825,"orbit":5}],"group":1308,"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"]},"6544":{"connections":[{"id":56061,"orbit":6},{"id":42604,"orbit":0}],"group":422,"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"]},"6570":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1256,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":6570,"stats":[]},"6588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":861,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":6588,"stats":[]},"6596":{"connections":[{"id":41171,"orbit":0}],"group":981,"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"]},"6623":{"connections":[{"id":12821,"orbit":0}],"group":505,"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"]},"6626":{"connections":[{"id":46475,"orbit":4}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":21,"skill":6626,"stats":["12% increased Armour and Evasion Rating"]},"6655":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":687,"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"]},"6660":{"connections":[{"id":39050,"orbit":-7}],"group":1223,"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"]},"6686":{"connections":[{"id":51184,"orbit":-4}],"group":757,"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"]},"6689":{"connections":[{"id":51735,"orbit":0}],"group":709,"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"]},"6714":{"connections":[{"id":41646,"orbit":0}],"group":654,"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"]},"6715":{"connections":[{"id":116,"orbit":3},{"id":41372,"orbit":0}],"group":881,"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"]},"6735":{"connections":[{"id":41935,"orbit":4},{"id":43460,"orbit":-5}],"group":169,"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"]},"6744":{"connections":[{"id":49357,"orbit":0},{"id":483,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6748":{"connections":[{"id":48618,"orbit":7},{"id":62122,"orbit":3}],"group":537,"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"]},"6752":{"connections":[{"id":7378,"orbit":0},{"id":29148,"orbit":4}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":23,"skill":6752,"stats":["12% increased Fire Damage"]},"6772":{"connections":[{"id":60505,"orbit":0}],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"6789":{"connections":[{"id":4313,"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":22193,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":2,"orbitIndex":1,"skill":6789,"stats":["8% increased Projectile Damage"]},"6792":{"connections":[{"id":33245,"orbit":0},{"id":2408,"orbit":0}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":6,"skill":6792,"stats":["10% increased Projectile Damage"]},"6800":{"connections":[{"id":32438,"orbit":4}],"group":1306,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":6800,"stats":["11% increased Chaos Damage"]},"6839":{"connections":[{"id":39581,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":14,"skill":6839,"stats":["15% increased Stun Buildup"]},"6842":{"connections":[{"id":18472,"orbit":3}],"group":1276,"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"]},"6872":{"connections":[{"id":33939,"orbit":0}],"group":144,"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"]},"6874":{"connectionArt":"CharacterPlanned","connections":[{"id":34940,"orbit":-2}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6891":{"connections":[{"id":56265,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":22,"skill":6891,"stats":["15% increased Critical Damage Bonus"]},"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":600,"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"]},"6900":{"connections":[{"id":26479,"orbit":-6},{"id":45751,"orbit":0}],"group":250,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Maximum Block","orbit":5,"orbitIndex":0,"skill":6900,"stats":["+1% to maximum Block chance"]},"6912":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":6912,"stats":[]},"6923":{"connections":[{"id":1087,"orbit":0}],"group":401,"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"]},"6935":{"ascendancyName":"Witchhunter","connections":[],"group":302,"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"]},"6950":{"connections":[{"id":49804,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":2,"skill":6950,"stats":["10% increased Exposure Effect"]},"6951":{"connections":[{"id":23608,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":4,"orbitIndex":54,"skill":6951,"stats":["10% increased Magnitude of Poison you inflict"]},"6952":{"connections":[],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":18,"skill":6952,"stats":["6% increased Area of Effect for Attacks"]},"6988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":2,"orbitIndex":10,"skill":6988,"stats":[]},"6999":{"connectionArt":"CharacterPlanned","connections":[{"id":15672,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7023":{"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":7023,"stats":[]},"7049":{"connections":[{"id":22556,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":19,"skill":7049,"stats":["30% increased Armour while Surrounded"]},"7054":{"connections":[{"id":21142,"orbit":0},{"id":47009,"orbit":0},{"id":17088,"orbit":0}],"group":1144,"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"]},"7060":{"connections":[{"id":24339,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":7060,"stats":["10% increased Life Recovery from Flasks"]},"7062":{"connections":[{"id":16680,"orbit":0},{"id":61432,"orbit":0}],"group":919,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7068":{"ascendancyName":"Ritualist","connections":[],"group":1551,"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"]},"7104":{"connections":[{"id":54733,"orbit":-3},{"id":14258,"orbit":-3}],"group":843,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":19,"skill":7104,"stats":["15% increased Effect of Puppet Master"]},"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":277,"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":[]},"7128":{"connections":[],"group":314,"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"]},"7163":{"connections":[{"id":45100,"orbit":3},{"id":23013,"orbit":0}],"group":1232,"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"]},"7183":{"connections":[{"id":48589,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":5,"skill":7183,"stats":["10% increased Life Recovery from Flasks"]},"7201":{"connections":[{"id":516,"orbit":3}],"group":722,"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"]},"7204":{"connections":[{"id":53527,"orbit":0},{"id":4985,"orbit":0},{"id":64525,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":0,"orbitIndex":0,"skill":7204,"stats":["15% increased Stun Buildup"]},"7218":{"connections":[{"id":60203,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":22,"skill":7218,"stats":["+8 to Strength"]},"7246":{"ascendancyName":"Stormweaver","connections":[{"id":39204,"orbit":0}],"group":517,"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"]},"7251":{"connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":7251,"stats":["10% increased Attack Damage"]},"7258":{"connectionArt":"CharacterPlanned","connections":[{"id":11861,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7275":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":743,"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"]},"7294":{"connections":[{"id":65498,"orbit":0},{"id":39307,"orbit":0},{"id":41017,"orbit":0}],"group":1421,"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"]},"7302":{"connections":[{"id":52615,"orbit":0},{"id":30077,"orbit":0}],"group":1362,"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"]},"7333":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":7333,"stats":[]},"7338":{"connections":[{"id":52060,"orbit":0}],"group":1270,"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"]},"7341":{"connections":[{"id":33244,"orbit":0}],"group":347,"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"]},"7344":{"connections":[{"id":58182,"orbit":0},{"id":26931,"orbit":0}],"group":1003,"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"]},"7353":{"connections":[{"id":9046,"orbit":3}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":7353,"stats":["10% increased Critical Hit Chance"]},"7378":{"connections":[{"id":65016,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":20,"skill":7378,"stats":["12% increased Fire Damage"]},"7390":{"connections":[{"id":17150,"orbit":7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":4,"skill":7390,"stats":["12% increased Armour and Evasion Rating"]},"7392":{"connections":[{"id":10571,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":19,"skill":7392,"stats":["12% increased Stun Threshold"]},"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"]},"7405":{"connections":[{"id":4850,"orbit":0}],"group":996,"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"]},"7412":{"connections":[{"id":45709,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":15,"skill":7412,"stats":["15% increased Life Flask Charges gained"]},"7424":{"connections":[{"id":36994,"orbit":0},{"id":1823,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":0,"skill":7424,"stats":["15% increased maximum Energy Shield"]},"7449":{"connections":[{"id":53696,"orbit":0}],"group":1113,"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"]},"7465":{"connections":[{"id":17664,"orbit":0}],"group":1356,"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"]},"7473":{"connections":[{"id":64471,"orbit":-4}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":23,"skill":7473,"stats":["Herald Skills deal 20% increased Damage"]},"7488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":7488,"stats":[]},"7526":{"connections":[{"id":17447,"orbit":0},{"id":22972,"orbit":0},{"id":43044,"orbit":0},{"id":24210,"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":7526,"stats":["+5 to any Attribute"]},"7542":{"connections":[],"group":245,"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"]},"7553":{"connectionArt":"CharacterPlanned","connections":[{"id":43385,"orbit":-7},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7554":{"connections":[{"id":23039,"orbit":-7}],"group":363,"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"]},"7576":{"connections":[{"id":33866,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":7576,"stats":["8% increased Attack Damage"]},"7604":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1383,"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"]},"7621":{"ascendancyName":"Invoker","connections":[{"id":55611,"orbit":0}],"group":1505,"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"]},"7628":{"connections":[{"id":41646,"orbit":0},{"id":55231,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"7642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":463,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":8,"skill":7642,"stats":[]},"7651":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":21788,"orbit":0}],"group":1461,"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"]},"7668":{"connections":[{"id":62015,"orbit":0}],"group":367,"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"]},"7716":{"connections":[],"group":328,"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"]},"7720":{"connections":[{"id":32932,"orbit":0}],"group":502,"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"]},"7721":{"connections":[{"id":54232,"orbit":0},{"id":61534,"orbit":3},{"id":18629,"orbit":-6},{"id":64683,"orbit":0}],"group":655,"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"]},"7741":{"connections":[{"id":42500,"orbit":0}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"7777":{"connections":[{"id":26739,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"7782":{"connections":[{"id":6161,"orbit":0}],"group":1132,"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"]},"7788":{"connections":[{"id":57805,"orbit":5}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":4,"skill":7788,"stats":["8% increased Knockback Distance"]},"7793":{"ascendancyName":"Infernalist","connections":[{"id":18348,"orbit":6}],"group":759,"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"]},"7809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1367,"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"]},"7847":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1436,"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"]},"7878":{"connections":[{"id":53901,"orbit":7}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":16,"skill":7878,"stats":["5% increased Block chance"]},"7888":{"connections":[{"id":17101,"orbit":0},{"id":28963,"orbit":2}],"group":1446,"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"]},"7922":{"connections":[{"id":45962,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Flask Duration","orbit":2,"orbitIndex":17,"skill":7922,"stats":["10% increased Flask Effect Duration"]},"7947":{"connections":[{"id":26061,"orbit":2}],"group":910,"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"]},"7960":{"connections":[],"group":374,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":2,"skill":7960,"stats":[]},"7971":{"connections":[{"id":1468,"orbit":-7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":10,"skill":7971,"stats":["10% increased Mana Regeneration Rate"]},"7972":{"connections":[{"id":25229,"orbit":0},{"id":5663,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":4,"skill":7972,"stats":["20% increased Endurance Charge Duration"]},"7979":{"ascendancyName":"Amazon","connections":[{"id":19233,"orbit":0}],"group":1545,"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"]},"7998":{"ascendancyName":"Stormweaver","connections":[{"id":39640,"orbit":0}],"group":517,"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"]},"8045":{"connections":[{"id":64927,"orbit":-6},{"id":52464,"orbit":5}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":7,"skill":8045,"stats":["10% increased amount of Mana Leeched"]},"8092":{"connections":[{"id":44605,"orbit":6},{"id":59028,"orbit":0}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":11,"skill":8092,"stats":["10% increased Projectile Damage"]},"8107":{"connectionArt":"CharacterPlanned","connections":[{"id":18081,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8115":{"connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":8,"skill":8115,"stats":["15% increased Pin Buildup"]},"8143":{"ascendancyName":"Invoker","connections":[{"id":16100,"orbit":4}],"group":1505,"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"]},"8145":{"connections":[{"id":23331,"orbit":-6}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":9,"skill":8145,"stats":["Damage Penetrates 6% Fire Resistance"]},"8154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":3921,"orbit":0},{"id":38398,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":0,"orbitIndex":0,"skill":8154,"stats":[]},"8157":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":16,"skill":8157,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"8171":{"connections":[{"id":45162,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":22,"skill":8171,"stats":["20% increased Presence Area of Effect"]},"8246":{"connections":[{"id":37548,"orbit":0},{"id":64462,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":11,"skill":8246,"stats":["10% increased Attack Damage"]},"8248":{"connectionArt":"CharacterPlanned","connections":[{"id":48079,"orbit":0}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8249":{"connections":[{"id":63525,"orbit":0},{"id":16816,"orbit":0}],"group":1099,"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"]},"8260":{"connections":[{"id":21453,"orbit":0}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":0,"skill":8260,"stats":["20% increased Armour Break Duration"]},"8272":{"ascendancyName":"Witchhunter","connections":[],"group":219,"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"]},"8273":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":25565,"orbit":0}],"group":1390,"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"]},"8302":{"connections":[{"id":4467,"orbit":-3}],"group":1469,"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"]},"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":611,"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":[]},"8349":{"connections":[{"id":31644,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":19,"skill":8349,"stats":["+8 to Intelligence"]},"8357":{"connections":[{"id":10742,"orbit":0}],"group":475,"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"]},"8382":{"connections":[{"id":61863,"orbit":0}],"group":733,"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"]},"8397":{"connections":[{"id":41130,"orbit":0},{"id":1220,"orbit":0}],"group":689,"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"]},"8406":{"connections":[{"id":48305,"orbit":-4},{"id":5692,"orbit":0}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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":954,"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"]},"8421":{"connections":[{"id":35404,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":2,"orbitIndex":22,"skill":8421,"stats":["+5% to Cold Resistance"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8440":{"connections":[{"id":45013,"orbit":-7}],"group":891,"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"]},"8456":{"connections":[{"id":38329,"orbit":2147483647}],"group":1350,"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"]},"8460":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":8460,"stats":[]},"8483":{"connections":[{"id":6588,"orbit":0}],"group":861,"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"]},"8493":{"connections":[{"id":64471,"orbit":0},{"id":52860,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8509":{"connections":[{"id":59061,"orbit":9}],"group":218,"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"]},"8510":{"connections":[{"id":13030,"orbit":-3}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":8510,"stats":["Damaging Ailments deal damage 5% faster"]},"8522":{"connections":[{"id":26236,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":16,"skill":8522,"stats":["Meta Skills gain 8% increased Energy"]},"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"]},"8531":{"connections":[{"id":51534,"orbit":0},{"id":62661,"orbit":0}],"group":561,"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"]},"8535":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Spiked Whip","orbit":2,"orbitIndex":10,"skill":8535,"stats":["25% increased Damage with Flails"]},"8540":{"connections":[{"id":45230,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":10,"skill":8540,"stats":["10% increased Area of Effect of Curses"]},"8554":{"connections":[{"id":47191,"orbit":0}],"group":265,"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"]},"8556":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8556,"stats":[]},"8560":{"connections":[{"id":31273,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":1,"orbitIndex":11,"skill":8560,"stats":["10% increased Melee Damage"]},"8569":{"connections":[{"id":47177,"orbit":0},{"id":55507,"orbit":9},{"id":46034,"orbit":0},{"id":8540,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"8573":{"connections":[{"id":11526,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":26,"skill":8573,"stats":["12% increased Damage with Bows"]},"8600":{"connections":[{"id":27439,"orbit":0},{"id":40596,"orbit":8},{"id":44406,"orbit":4},{"id":43778,"orbit":0},{"id":31650,"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":8600,"stats":["+5 to any Attribute"]},"8606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1036,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8606,"stats":[]},"8607":{"connections":[{"id":46665,"orbit":0}],"group":255,"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"]},"8611":{"ascendancyName":"Lich","connections":[{"id":59,"orbit":-4}],"group":1173,"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"]},"8616":{"connections":[{"id":57710,"orbit":0},{"id":43576,"orbit":-4},{"id":36746,"orbit":4}],"group":776,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8629":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":395,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8629,"stats":[]},"8631":{"connections":[{"id":32660,"orbit":0},{"id":59256,"orbit":0},{"id":30979,"orbit":0}],"group":561,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":2,"skill":8631,"stats":["10% increased Critical Hit Chance"]},"8644":{"connections":[{"id":62496,"orbit":0},{"id":27417,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":51,"skill":8644,"stats":["10% increased Trap Damage"]},"8660":{"connections":[{"id":18846,"orbit":0}],"group":394,"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"]},"8693":{"connectionArt":"CharacterPlanned","connections":[{"id":35393,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8697":{"connections":[],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":8697,"stats":["12% increased Elemental Damage with Attacks"]},"8723":{"connectionArt":"CharacterPlanned","connections":[{"id":3681,"orbit":-5},{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8734":{"connections":[{"id":52743,"orbit":0}],"group":1370,"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"]},"8737":{"connections":[{"id":41511,"orbit":0},{"id":25927,"orbit":-7},{"id":6077,"orbit":-2},{"id":56284,"orbit":-2}],"group":531,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":8737,"stats":["Minions deal 10% increased Damage"]},"8782":{"connections":[{"id":13882,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Empowering Infusions","orbit":7,"orbitIndex":14,"recipe":["Suffering","Envy","Guilt"],"skill":8782,"stats":["30% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"8785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":8785,"stats":[]},"8789":{"connections":[{"id":63182,"orbit":3}],"group":1040,"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"]},"8791":{"connections":[{"id":32096,"orbit":0}],"group":1083,"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"]},"8800":{"connections":[{"id":28982,"orbit":0}],"group":135,"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"]},"8810":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":33751,"orbit":2}],"group":1085,"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"]},"8821":{"connections":[{"id":63863,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":8821,"stats":["12% increased Lightning Damage"]},"8827":{"connections":[{"id":16691,"orbit":0},{"id":28862,"orbit":0}],"group":435,"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"]},"8831":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":14082,"orbit":0}],"group":1194,"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"]},"8850":{"connections":[],"group":108,"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"]},"8852":{"connections":[],"group":138,"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"]},"8854":{"ascendancyName":"Infernalist","connections":[{"id":46644,"orbit":0}],"group":759,"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"]},"8867":{"ascendancyName":"Stormweaver","connections":[{"id":7246,"orbit":0}],"group":517,"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"]},"8872":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"id":2394,"orbit":0},{"id":45488,"orbit":0}],"group":832,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"name":"Dual Wielding Mastery","orbit":0,"orbitIndex":0,"skill":8872,"stats":[]},"8875":{"connections":[{"id":50687,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":1,"orbitIndex":8,"skill":8875,"stats":["15% increased Electrocute Buildup"]},"8881":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":321,"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"]},"8896":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1374,"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"]},"8904":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1337,"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"]},"8908":{"connections":[{"id":13711,"orbit":4}],"group":1115,"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"]},"8916":{"connections":[],"group":423,"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"]},"8938":{"connections":[{"id":33229,"orbit":-4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":16,"skill":8938,"stats":["5% chance to inflict Bleeding on Hit"]},"8957":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"8975":{"connections":[{"id":61196,"orbit":4}],"group":1004,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"8982":{"connections":[{"id":14952,"orbit":0},{"id":58926,"orbit":0}],"group":330,"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"]},"8983":{"connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":8983,"stats":["Minions deal 12% increased Damage"]},"9009":{"connections":[],"group":314,"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"]},"9018":{"connections":[{"id":35918,"orbit":2}],"group":541,"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"]},"9020":{"connections":[{"id":35118,"orbit":0}],"group":981,"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"]},"9037":{"connections":[{"id":32353,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Skill Speed","orbit":2,"orbitIndex":23,"skill":9037,"stats":["3% increased Skill Speed while Shapeshifted"]},"9040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":45751,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":9040,"stats":[]},"9046":{"connections":[{"id":56776,"orbit":5}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":8,"skill":9046,"stats":["10% increased Critical Hit Chance"]},"9050":{"connections":[{"id":24958,"orbit":-4},{"id":37691,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":6,"orbitIndex":36,"skill":9050,"stats":["3% increased Attack Speed"]},"9065":{"connections":[{"id":752,"orbit":5}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":4,"orbitIndex":23,"skill":9065,"stats":["Minions deal 10% increased Damage"]},"9069":{"connections":[{"id":42245,"orbit":0}],"group":1172,"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"]},"9083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":9083,"stats":[]},"9085":{"connections":[],"flavourText":"Each nick and cut brings death one step closer.","group":1103,"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"]},"9089":{"connections":[{"id":3994,"orbit":0}],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Evasion Rating","orbit":1,"orbitIndex":3,"skill":9089,"stats":["15% increased Evasion Rating"]},"9106":{"connections":[{"id":54937,"orbit":7}],"group":133,"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"]},"9112":{"connections":[{"id":44612,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":1,"orbitIndex":11,"skill":9112,"stats":["25% increased Elemental Ailment Threshold"]},"9141":{"connections":[{"id":13748,"orbit":-6},{"id":35760,"orbit":6},{"id":5703,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":12,"skill":9141,"stats":["10% increased Elemental Damage"]},"9151":{"connections":[{"id":42302,"orbit":0}],"group":1293,"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"]},"9163":{"connections":[],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":8,"skill":9163,"stats":["18% increased Armour"]},"9164":{"connections":[{"id":25513,"orbit":0}],"group":754,"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"]},"9185":{"connections":[{"id":60107,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":9185,"stats":["10% increased Critical Hit Chance"]},"9187":{"connections":[{"id":20015,"orbit":0}],"group":392,"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"]},"9199":{"connections":[],"group":1293,"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"]},"9212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":296,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Mastery","orbit":1,"orbitIndex":3,"skill":9212,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9217":{"connections":[{"id":5108,"orbit":0},{"id":16538,"orbit":0},{"id":47733,"orbit":0}],"group":804,"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"]},"9221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":268,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":9221,"stats":[]},"9226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":524,"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"]},"9227":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"9240":{"connections":[{"id":21225,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":2,"orbitIndex":16,"skill":9240,"stats":["10% increased Damage with Spears"]},"9272":{"connections":[{"id":12906,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":0,"skill":9272,"stats":["10% increased Pin duration"]},"9275":{"connections":[{"id":5704,"orbit":0},{"id":63888,"orbit":0}],"group":1180,"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"]},"9290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":750,"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"]},"9294":{"ascendancyName":"Amazon","connections":[{"id":528,"orbit":0}],"group":1544,"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"]},"9323":{"connections":[{"id":40395,"orbit":0}],"group":106,"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"]},"9324":{"connections":[],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":21,"skill":9324,"stats":["8% increased Ignite Duration on Enemies"]},"9328":{"connections":[{"id":34782,"orbit":0}],"group":139,"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"]},"9352":{"connections":[{"id":32071,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":23,"skill":9352,"stats":["6% increased Area of Effect for Attacks"]},"9393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":972,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":1,"orbitIndex":8,"skill":9393,"stats":[]},"9405":{"connections":[{"id":59720,"orbit":6}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":9405,"stats":["15% increased Evasion Rating"]},"9411":{"connections":[{"id":49466,"orbit":0},{"id":64434,"orbit":0}],"group":1207,"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"]},"9414":{"connectionArt":"CharacterPlanned","connections":[],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9417":{"connections":[{"id":48121,"orbit":-6},{"id":13171,"orbit":5}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":9417,"stats":["16% increased Totem Life"]},"9421":{"connections":[{"id":60170,"orbit":0}],"group":1248,"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"]},"9441":{"connections":[{"id":5077,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":8,"skill":9441,"stats":["15% increased Parry Hit Area of Effect"]},"9442":{"connections":[{"id":37260,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":18,"skill":9442,"stats":["16% increased Warcry Speed"]},"9444":{"connections":[],"group":1462,"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"]},"9458":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":967,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":9458,"stats":[]},"9472":{"connections":[{"id":31991,"orbit":0},{"id":41062,"orbit":0}],"group":1097,"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"]},"9485":{"connections":[{"id":60685,"orbit":0}],"group":841,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"9510":{"connections":[{"id":16695,"orbit":0}],"group":1142,"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"]},"9528":{"connections":[{"id":62200,"orbit":-4}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":15,"skill":9528,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"9532":{"connections":[{"id":59368,"orbit":2}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":22,"skill":9532,"stats":["+4 to Strength","+4 to Dexterity"]},"9535":{"connections":[{"id":37434,"orbit":0}],"group":964,"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"]},"9554":{"connectionArt":"CharacterPlanned","connections":[{"id":8723,"orbit":9}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9568":{"connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":1,"skill":9568,"stats":["16% increased Totem Life"]},"9572":{"connections":[{"id":12822,"orbit":0}],"group":1056,"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"]},"9583":{"connections":[{"id":47316,"orbit":0}],"group":435,"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"]},"9586":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1152,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":4,"orbitIndex":10,"skill":9586,"stats":[]},"9638":{"connections":[{"id":39083,"orbit":-7}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":9638,"stats":["3% increased Skill Speed"]},"9642":{"connections":[{"id":517,"orbit":6},{"id":14666,"orbit":-4}],"group":819,"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"]},"9652":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1295,"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"]},"9663":{"connections":[{"id":19359,"orbit":-5}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Resistance","orbit":2,"orbitIndex":8,"skill":9663,"stats":["+5% to Chaos Resistance"]},"9698":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":228,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":22,"skill":9698,"stats":[]},"9703":{"connections":[{"id":6030,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":9703,"stats":["10% increased Poison Duration"]},"9710":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1516,"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"]},"9736":{"connections":[{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"9737":{"connections":[{"id":36522,"orbit":0},{"id":24813,"orbit":4},{"id":59480,"orbit":0},{"id":15590,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":51,"skill":9737,"stats":["6% increased Area of Effect for Attacks"]},"9745":{"connections":[{"id":58513,"orbit":2147483647}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":12,"skill":9745,"stats":["2% increased Movement Speed"]},"9750":{"connections":[{"id":1169,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":12,"skill":9750,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"9762":{"connections":[{"id":45824,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":6,"orbitIndex":5,"skill":9762,"stats":["10% increased Damage with Swords"]},"9782":{"connections":[{"id":20677,"orbit":0}],"group":1169,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":9782,"stats":["15% increased Critical Damage Bonus"]},"9796":{"connections":[{"id":62310,"orbit":-4}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":9796,"stats":["30% increased Flammability Magnitude"]},"9798":{"ascendancyName":"Pathfinder","connections":[{"id":24868,"orbit":0}],"group":1513,"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"]},"9825":{"connections":[{"id":934,"orbit":-4},{"id":21755,"orbit":9}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":0,"skill":9825,"stats":["15% increased Elemental Ailment Threshold"]},"9843":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"9857":{"connections":[{"id":54990,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":2,"orbitIndex":8,"skill":9857,"stats":["5% chance to inflict Bleeding on Hit"]},"9863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"flavourText":"A throne is the most devious trap of them all","group":590,"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"]},"9896":{"connections":[{"id":292,"orbit":0}],"group":438,"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"]},"9908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":380,"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"]},"9918":{"connections":[{"id":16626,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":4,"skill":9918,"stats":["10% increased Attack Area Damage"]},"9928":{"connections":[{"id":50403,"orbit":0}],"group":1373,"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"]},"9941":{"connections":[{"id":38888,"orbit":0}],"group":893,"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"]},"9968":{"connections":[{"id":38678,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"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"]},"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":1505,"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":[]},"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"]},"10011":{"connections":[],"group":1243,"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"]},"10029":{"connections":[{"id":19277,"orbit":0}],"group":394,"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"]},"10041":{"connections":[{"id":32799,"orbit":0}],"group":1083,"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"]},"10047":{"connections":[{"id":62757,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":10,"skill":10047,"stats":["15% increased Stun Buildup"]},"10053":{"connections":[{"id":19470,"orbit":0},{"id":9458,"orbit":0}],"group":967,"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"]},"10055":{"connections":[{"id":30554,"orbit":0},{"id":41497,"orbit":0}],"group":150,"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"]},"10058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":55149,"orbit":0},{"id":44373,"orbit":0}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":10058,"stats":[]},"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"]},"10079":{"connections":[{"id":5314,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":10079,"stats":["10% increased Mana Regeneration Rate"]},"10100":{"connections":[{"id":47263,"orbit":0},{"id":25300,"orbit":0}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10131":{"connections":[{"id":3251,"orbit":0},{"id":44669,"orbit":0},{"id":14127,"orbit":0},{"id":55947,"orbit":0}],"group":1067,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10156":{"connections":[{"id":6744,"orbit":-6}],"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":38,"skill":10156,"stats":["+5 to any Attribute"]},"10159":{"connections":[{"id":31977,"orbit":4}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":42,"skill":10159,"stats":["10% increased Mana Regeneration Rate"]},"10162":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":10162,"stats":[]},"10169":{"connections":[],"group":408,"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"]},"10192":{"connections":[{"id":3823,"orbit":0}],"group":747,"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"]},"10242":{"connections":[{"id":38111,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":10242,"stats":["3% of Damage taken Recouped as Life"]},"10245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":458,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":10245,"stats":[]},"10247":{"connections":[{"id":28370,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"10251":{"connections":[{"id":7204,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":16,"skill":10251,"stats":["15% increased Stun Buildup"]},"10260":{"connections":[{"id":33730,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":10260,"stats":["Channelling Skills deal 12% increased Damage"]},"10265":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"10267":{"connections":[{"id":8456,"orbit":2147483647}],"group":1350,"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"]},"10271":{"connections":[{"id":58038,"orbit":0}],"group":751,"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"]},"10273":{"connections":[{"id":45272,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":2,"skill":10273,"stats":["+3 to all Attributes"]},"10277":{"connections":[{"id":64064,"orbit":0}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":10277,"stats":["8% increased Accuracy Rating"]},"10286":{"connections":[{"id":38066,"orbit":-4}],"group":209,"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"]},"10295":{"connections":[{"id":27733,"orbit":0}],"group":270,"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"]},"10305":{"connections":[{"id":45586,"orbit":0},{"id":61490,"orbit":0}],"group":426,"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"]},"10314":{"connections":[{"id":16256,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":30,"skill":10314,"stats":["10% increased Mana Regeneration Rate"]},"10315":{"connections":[{"id":44699,"orbit":0},{"id":47443,"orbit":0},{"id":37971,"orbit":0}],"group":1497,"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"]},"10320":{"connections":[{"id":14548,"orbit":3}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":18,"skill":10320,"stats":["Minions have 10% increased maximum Life"]},"10362":{"connections":[{"id":10830,"orbit":0},{"id":9163,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":10362,"stats":["15% increased Armour"]},"10364":{"connections":[{"id":44683,"orbit":0},{"id":55342,"orbit":4},{"id":42857,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":4,"orbitIndex":48,"skill":10364,"stats":["4% increased Skill Speed"]},"10371":{"ascendancyName":"Tactician","connections":[],"group":303,"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"]},"10372":{"connections":[{"id":36191,"orbit":-3},{"id":55933,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":1,"orbitIndex":1,"skill":10372,"stats":["12% increased Stun Threshold"]},"10382":{"connections":[{"id":21984,"orbit":0},{"id":33979,"orbit":0}],"group":1160,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"10398":{"connections":[{"id":3472,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Sudden Escalation","orbit":7,"orbitIndex":18,"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"]},"10423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":37905,"orbit":-7}],"group":1476,"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"]},"10429":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":916,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":11,"skill":10429,"stats":[]},"10452":{"connections":[{"id":44213,"orbit":0},{"id":1878,"orbit":0}],"group":433,"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"]},"10472":{"connections":[{"id":17687,"orbit":2},{"id":27422,"orbit":-2}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":0,"orbitIndex":0,"skill":10472,"stats":["10% increased Mana Recovery from Flasks"]},"10474":{"connections":[{"id":64443,"orbit":0},{"id":53785,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":12,"skill":10474,"stats":["6% increased Area of Effect for Attacks"]},"10484":{"connections":[{"id":42660,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":14,"skill":10484,"stats":["+2 to Maximum Rage"]},"10495":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":7,"orbitIndex":18,"skill":10495,"stats":[]},"10499":{"connections":[{"id":42583,"orbit":2147483647},{"id":51788,"orbit":8}],"group":654,"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"]},"10500":{"connections":[{"id":6900,"orbit":-6},{"id":9040,"orbit":0}],"group":250,"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"]},"10508":{"connections":[{"id":21684,"orbit":5}],"group":177,"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"]},"10534":{"connections":[{"id":46205,"orbit":-7}],"group":375,"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"]},"10552":{"connections":[{"id":703,"orbit":-3},{"id":18895,"orbit":3}],"group":989,"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"]},"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":611,"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"]},"10571":{"connections":[{"id":48240,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":17,"skill":10571,"stats":["12% increased Stun Threshold"]},"10576":{"connections":[{"id":58644,"orbit":0}],"group":1300,"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"]},"10602":{"connections":[{"id":8629,"orbit":0}],"group":398,"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"]},"10612":{"connections":[{"id":52003,"orbit":0}],"group":733,"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"]},"10635":{"connections":[{"id":31724,"orbit":0}],"group":419,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10648":{"connections":[{"id":26400,"orbit":0}],"group":1337,"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"]},"10671":{"connections":[{"id":5740,"orbit":0},{"id":23419,"orbit":0},{"id":51048,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":2,"orbitIndex":1,"skill":10671,"stats":["10% increased Attack Damage"]},"10677":{"connections":[{"id":56638,"orbit":3}],"group":995,"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"]},"10681":{"connections":[{"id":27581,"orbit":5},{"id":58138,"orbit":0}],"group":116,"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"]},"10694":{"ascendancyName":"Infernalist","connections":[],"group":805,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10727":{"connections":[{"id":1825,"orbit":0}],"group":167,"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"]},"10729":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":10729,"stats":[]},"10731":{"ascendancyName":"Chronomancer","connections":[],"group":326,"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"]},"10738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":10738,"stats":[]},"10742":{"connections":[{"id":41991,"orbit":0}],"group":475,"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"]},"10772":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":2119,"orbit":0}],"group":656,"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"]},"10774":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":35863,"orbit":0}],"group":437,"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"]},"10783":{"connections":[{"id":9762,"orbit":0},{"id":38564,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":2,"orbitIndex":16,"skill":10783,"stats":["10% increased Damage with Swords"]},"10824":{"connections":[{"id":49734,"orbit":-5}],"group":179,"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"]},"10830":{"connections":[{"id":59589,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":2,"skill":10830,"stats":["18% increased Armour"]},"10835":{"connections":[{"id":48026,"orbit":0},{"id":53367,"orbit":2147483647}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":3,"orbitIndex":16,"skill":10835,"stats":["Banner Skills have 20% increased Duration"]},"10841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":7,"orbitIndex":15,"skill":10841,"stats":[]},"10873":{"connections":[{"id":32777,"orbit":0}],"group":320,"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"]},"10881":{"connections":[{"id":36450,"orbit":3}],"group":1072,"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"]},"10909":{"connections":[{"id":16489,"orbit":9},{"id":33053,"orbit":3}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"10927":{"connections":[{"id":9272,"orbit":0},{"id":42250,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":3,"orbitIndex":3,"skill":10927,"stats":["10% increased Pin duration"]},"10944":{"connections":[],"group":1215,"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"]},"10987":{"ascendancyName":"Chronomancer","connections":[],"group":358,"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"]},"10998":{"connections":[{"id":21438,"orbit":0},{"id":62235,"orbit":0}],"group":918,"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"]},"11014":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":11014,"stats":[]},"11015":{"connections":[{"id":45329,"orbit":0}],"group":1244,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":11015,"stats":["16% increased Hazard Damage"]},"11027":{"connections":[{"id":59433,"orbit":0}],"group":223,"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"]},"11032":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":11032,"stats":[]},"11037":{"connections":[{"id":57039,"orbit":0}],"group":765,"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"]},"11048":{"connections":[],"group":272,"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"]},"11066":{"connections":[{"id":26663,"orbit":2}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":19,"skill":11066,"stats":["5% increased Cooldown Recovery Rate"]},"11087":{"connections":[{"id":42635,"orbit":0}],"group":269,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":11087,"stats":["Channelling Skills deal 12% increased Damage"]},"11094":{"connections":[{"id":59303,"orbit":-6}],"group":1280,"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"]},"11153":{"connections":[{"id":5049,"orbit":0}],"group":621,"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"]},"11160":{"connectionArt":"CharacterPlanned","connections":[{"id":43721,"orbit":5},{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11178":{"connections":[{"id":24224,"orbit":0}],"group":176,"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"]},"11184":{"aliasPassiveSocket":"DeliriumAnoint_ZarokhsGift_","connections":[],"group":607,"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"],"skill":11184,"stats":["Jewel Socket"]},"11230":{"connections":[{"id":17672,"orbit":0}],"flavourText":"A properly disciplined mind gives rise to structured thought.","group":912,"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"]},"11248":{"connections":[{"id":35831,"orbit":0},{"id":21568,"orbit":0},{"id":46380,"orbit":0},{"id":48387,"orbit":0},{"id":22270,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"11252":{"connections":[{"id":39911,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":23,"skill":11252,"stats":["6% increased Area of Effect for Attacks"]},"11257":{"connections":[{"id":10271,"orbit":0},{"id":54282,"orbit":4}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":11,"skill":11257,"stats":["30% increased Evasion Rating while Surrounded"]},"11275":{"connections":[{"id":13893,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":12,"skill":11275,"stats":["Damage Penetrates 6% Fire Resistance"]},"11284":{"connections":[{"id":31697,"orbit":0},{"id":30985,"orbit":0},{"id":50104,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":7,"orbitIndex":7,"skill":11284,"stats":["10% increased Elemental Infusion duration"]},"11292":{"connections":[{"id":2575,"orbit":7},{"id":56757,"orbit":-7}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":0,"skill":11292,"stats":["20% increased Totem Placement speed"]},"11306":{"connections":[{"id":57880,"orbit":0}],"group":176,"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"]},"11311":{"connections":[{"id":38057,"orbit":0}],"group":802,"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"]},"11315":{"connections":[{"id":48846,"orbit":0}],"group":929,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":11315,"stats":["12% increased Lightning Damage"]},"11329":{"connections":[{"id":54676,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":22,"skill":11329,"stats":["10% increased Life Regeneration rate"]},"11330":{"connections":[{"id":22185,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":6,"skill":11330,"stats":["Debuffs on you expire 10% faster"]},"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"]},"11337":{"connections":[{"id":23427,"orbit":5},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":3,"orbitIndex":16,"skill":11337,"stats":["15% increased Magnitude of Chill you inflict"]},"11366":{"connections":[{"id":34927,"orbit":0},{"id":558,"orbit":6}],"group":718,"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"]},"11376":{"connections":[{"id":35492,"orbit":0}],"group":769,"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"]},"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"]},"11410":{"connections":[{"id":21755,"orbit":0}],"group":891,"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"]},"11428":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":244,"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% Critical Damage Bonus","Archon Buffs also grant +30% Critical Hit Chance"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11433":{"connections":[{"id":24630,"orbit":-6},{"id":44753,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":7,"orbitIndex":0,"skill":11433,"stats":["12% increased Fire Damage"]},"11463":{"connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":23,"skill":11463,"stats":["25% reduced Presence Area of Effect"]},"11464":{"connectionArt":"CharacterPlanned","connections":[{"id":27405,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11472":{"connections":[{"id":19880,"orbit":0},{"id":40270,"orbit":0}],"group":1203,"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"]},"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":1510,"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":[]},"11504":{"connections":[{"id":30839,"orbit":7},{"id":35696,"orbit":0}],"group":1303,"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"]},"11505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":602,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":11505,"stats":[]},"11509":{"connections":[{"id":7465,"orbit":0}],"group":1356,"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"]},"11525":{"connections":[{"id":64724,"orbit":0}],"group":178,"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"]},"11526":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":38993,"orbit":0}],"group":1461,"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"]},"11572":{"connections":[{"id":32923,"orbit":-7}],"group":438,"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"]},"11578":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1048,"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"]},"11580":{"connectionArt":"CharacterPlanned","connections":[{"id":34769,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11598":{"connections":[{"id":4536,"orbit":0},{"id":44516,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":0,"orbitIndex":0,"skill":11598,"stats":["3% increased Attack Speed with Quarterstaves"]},"11604":{"connections":[{"id":17088,"orbit":0},{"id":29408,"orbit":0},{"id":52765,"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":0,"orbitIndex":0,"skill":11604,"stats":["+5 to any Attribute"]},"11641":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":45248,"orbit":0},{"id":55582,"orbit":0}],"group":414,"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"]},"11656":{"connections":[{"id":53822,"orbit":0},{"id":9106,"orbit":-3}],"group":133,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11667":{"connections":[{"id":60085,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Immobilisation Buildup","orbit":1,"orbitIndex":10,"skill":11667,"stats":["10% increased Immobilisation buildup against Constructs"]},"11672":{"connections":[{"id":47177,"orbit":0},{"id":48030,"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":11672,"stats":["+5 to any Attribute"]},"11679":{"connections":[{"id":29148,"orbit":0},{"id":7424,"orbit":8},{"id":61042,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"11722":{"connections":[{"id":62431,"orbit":2}],"group":998,"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"]},"11736":{"connections":[{"id":62677,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":11736,"stats":["12% increased Lightning Damage"]},"11741":{"connections":[{"id":17282,"orbit":0},{"id":31159,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"11752":{"connections":[{"id":62455,"orbit":0},{"id":62258,"orbit":0},{"id":57616,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":2,"skill":11752,"stats":["Banner Skills have 20% increased Duration"]},"11764":{"connections":[{"id":38878,"orbit":7}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":7,"orbitIndex":11,"skill":11764,"stats":["Debuffs on you expire 10% faster"]},"11771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":52395,"orbit":0}],"group":1533,"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"]},"11774":{"connections":[],"group":1292,"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"]},"11776":{"ascendancyName":"Ritualist","connections":[{"id":37046,"orbit":6}],"group":1572,"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"]},"11786":{"connections":[{"id":7716,"orbit":2147483647}],"group":328,"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"]},"11788":{"connections":[{"id":14355,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":0,"skill":11788,"stats":["10% increased Spell Area Damage"]},"11813":{"connections":[{"id":30456,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":11813,"stats":["15% increased Evasion Rating"]},"11825":{"connections":[{"id":42794,"orbit":4},{"id":54984,"orbit":0},{"id":47374,"orbit":0},{"id":10648,"orbit":0}],"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":11825,"stats":["+5 to any Attribute"]},"11826":{"connections":[{"id":17726,"orbit":0}],"group":928,"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"]},"11836":{"connections":[{"id":32721,"orbit":0}],"group":1243,"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"]},"11838":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":33112,"orbit":-4}],"group":1072,"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"]},"11855":{"connections":[{"id":30829,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":11855,"stats":["8% increased Accuracy Rating"]},"11861":{"connectionArt":"CharacterPlanned","connections":[{"id":59795,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11871":{"connections":[{"id":47235,"orbit":0},{"id":53471,"orbit":0},{"id":24958,"orbit":0}],"group":1243,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":1,"skill":11871,"stats":["5% chance to Blind Enemies on Hit"]},"11873":{"connections":[{"id":50150,"orbit":0},{"id":62677,"orbit":0}],"group":840,"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"]},"11882":{"connections":[{"id":63888,"orbit":-5}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":3,"skill":11882,"stats":["10% increased chance to inflict Ailments"]},"11886":{"connections":[],"group":423,"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"]},"11916":{"connections":[],"group":801,"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"]},"11938":{"connections":[{"id":39964,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":0,"orbitIndex":0,"skill":11938,"stats":["10% increased Mana Regeneration Rate"]},"11980":{"connections":[{"id":20504,"orbit":-5}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":71,"skill":11980,"stats":["5% increased Block chance"]},"11984":{"connectionArt":"CharacterPlanned","connections":[{"id":42762,"orbit":2147483647}],"group":89,"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"],"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"]},"12005":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":23,"skill":12005,"stats":[]},"12033":{"ascendancyName":"Deadeye","connections":[],"group":1502,"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"]},"12054":{"ascendancyName":"Tactician","connections":[{"id":37523,"orbit":0}],"group":406,"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"]},"12066":{"connections":[{"id":48734,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":8,"skill":12066,"stats":["Aura Skills have 5% increased Magnitudes"]},"12078":{"connections":[{"id":53771,"orbit":-6},{"id":41877,"orbit":-4}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":39,"skill":12078,"stats":["10% increased Projectile Damage"]},"12116":{"connections":[{"id":42036,"orbit":0},{"id":52410,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":4,"orbitIndex":22,"skill":12116,"stats":["20% increased Parry Hit Area of Effect"]},"12120":{"connections":[{"id":51606,"orbit":-7}],"group":1236,"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"]},"12125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":381,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":12125,"stats":[]},"12166":{"connections":[],"group":1251,"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"]},"12169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":60138,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":2,"orbitIndex":13,"skill":12169,"stats":[]},"12174":{"connections":[{"id":18864,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":22,"skill":12174,"stats":["10% increased Magnitude of Ailments you inflict"]},"12183":{"ascendancyName":"Pathfinder","connections":[{"id":16433,"orbit":0}],"group":1526,"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"]},"12189":{"connections":[{"id":32859,"orbit":-4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":17,"skill":12189,"stats":["12% increased Damage with Plant Skills"]},"12208":{"connections":[{"id":32813,"orbit":-7}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":3,"skill":12208,"stats":["10% increased Life Recovery from Flasks"]},"12232":{"connections":[{"id":872,"orbit":0},{"id":11087,"orbit":0}],"group":269,"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"]},"12239":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":39881,"orbit":0},{"id":41811,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":12239,"stats":[]},"12245":{"connections":[{"id":13610,"orbit":0},{"id":19749,"orbit":0}],"group":1010,"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"]},"12249":{"connections":[{"id":12761,"orbit":-3}],"group":1109,"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"]},"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":1333,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"12255":{"connections":[{"id":989,"orbit":0},{"id":27740,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":12255,"stats":["10% increased Life Recovery from Flasks"]},"12276":{"connections":[{"id":13980,"orbit":0}],"group":126,"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"]},"12311":{"connections":[{"id":64119,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":16,"skill":12311,"stats":["15% increased Crossbow Reload Speed"]},"12322":{"connections":[{"id":53196,"orbit":0}],"group":972,"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"]},"12324":{"connections":[{"id":24764,"orbit":0}],"group":442,"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"]},"12329":{"connections":[{"id":17523,"orbit":4}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":0,"skill":12329,"stats":["16% increased Hazard Damage"]},"12337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":5295,"orbit":0}],"group":994,"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"]},"12367":{"connections":[],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":0,"skill":12367,"stats":["7% increased Chaos Damage"]},"12382":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":35849,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":11,"skill":12382,"stats":[]},"12412":{"connections":[],"group":608,"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"]},"12418":{"connections":[{"id":51832,"orbit":0},{"id":3988,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":21,"skill":12418,"stats":["Empowered Attacks deal 16% increased Damage"]},"12419":{"connections":[{"id":56063,"orbit":-1}],"group":950,"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"]},"12430":{"connections":[{"id":17584,"orbit":0}],"group":650,"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"]},"12451":{"connections":[{"id":24922,"orbit":-9}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":12451,"stats":["5% increased Cooldown Recovery Rate"]},"12462":{"connections":[{"id":64299,"orbit":0}],"group":567,"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"]},"12465":{"connections":[{"id":30040,"orbit":0}],"group":990,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":14,"skill":12465,"stats":["Break 20% increased Armour"]},"12471":{"connections":[{"id":19942,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":19,"skill":12471,"stats":["12% increased Elemental Damage with Attacks"]},"12488":{"ascendancyName":"Stormweaver","connections":[{"id":49189,"orbit":0}],"group":517,"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"]},"12498":{"connections":[{"id":30341,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":12498,"stats":["6% increased bonuses gained from Equipped Quiver"]},"12526":{"connections":[{"id":54818,"orbit":-9}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":12526,"stats":["15% increased Elemental Ailment Threshold"]},"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"]},"12601":{"connectionArt":"CharacterPlanned","connections":[{"id":50908,"orbit":0},{"id":35745,"orbit":2147483647}],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12610":{"connectionArt":"CharacterPlanned","connections":[{"id":4873,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12611":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":32155,"orbit":3},{"id":44204,"orbit":3}],"group":1200,"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"]},"12661":{"connections":[{"id":34984,"orbit":0}],"group":989,"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"]},"12683":{"connectionArt":"CharacterPlanned","connections":[{"id":33618,"orbit":0},{"id":61974,"orbit":0}],"group":584,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1017,"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"]},"12751":{"connections":[],"group":498,"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"]},"12761":{"connections":[],"group":1109,"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"]},"12777":{"connections":[{"id":28950,"orbit":-8}],"group":674,"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"]},"12778":{"connections":[],"group":1132,"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"]},"12786":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"id":5777,"orbit":0},{"id":18465,"orbit":0},{"id":64299,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":12786,"stats":[]},"12795":{"ascendancyName":"Pathfinder","connections":[{"id":44871,"orbit":0},{"id":4739,"orbit":0}],"group":1529,"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"]},"12800":{"connections":[{"id":8896,"orbit":0}],"group":1363,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":12800,"stats":["25% increased Evasion Rating while Sprinting"]},"12817":{"connections":[{"id":22967,"orbit":-7}],"group":313,"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"]},"12821":{"connections":[],"group":505,"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"]},"12822":{"connections":[{"id":5826,"orbit":0}],"group":1056,"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"]},"12851":{"connections":[{"id":32507,"orbit":0},{"id":32727,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":5,"skill":12851,"stats":["10% increased Physical Damage"]},"12876":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"12882":{"ascendancyName":"Stormweaver","connections":[{"id":25618,"orbit":0}],"group":517,"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"]},"12890":{"connections":[{"id":2091,"orbit":0},{"id":42118,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"12893":{"connections":[{"id":65167,"orbit":3}],"group":1366,"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"]},"12906":{"connections":[{"id":3234,"orbit":0}],"group":984,"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"]},"12918":{"connections":[{"id":4017,"orbit":0}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":12918,"stats":["10% increased Mana Regeneration Rate"]},"12925":{"connections":[{"id":61196,"orbit":5}],"group":979,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":2,"skill":12925,"stats":["15% increased chance to Shock"]},"12940":{"connectionArt":"CharacterPlanned","connections":[{"id":20637,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12964":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":301,"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"]},"12992":{"connections":[{"id":16485,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":22,"skill":12992,"stats":["Damage Penetrates 6% Lightning Resistance"]},"12998":{"connections":[{"id":30463,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"13030":{"connections":[{"id":55,"orbit":-3}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":13030,"stats":["Damaging Ailments deal damage 5% faster"]},"13065":{"ascendancyName":"Invoker","connections":[{"id":63236,"orbit":0}],"group":1505,"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"]},"13075":{"connections":[{"id":50392,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":0,"orbitIndex":0,"skill":13075,"stats":["+12 to Strength"]},"13081":{"connections":[{"id":14254,"orbit":-5}],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":17,"skill":13081,"stats":["10% increased Projectile Damage"]},"13108":{"connectionArt":"CharacterPlanned","connections":[],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13123":{"connections":[{"id":62723,"orbit":4}],"group":843,"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"]},"13157":{"connections":[{"id":30392,"orbit":3}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":1,"skill":13157,"stats":["10% increased Life Recovery from Flasks"]},"13171":{"connections":[{"id":24438,"orbit":5}],"group":464,"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"]},"13174":{"ascendancyName":"Infernalist","connections":[{"id":770,"orbit":0}],"group":759,"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"]},"13228":{"connectionArt":"CharacterPlanned","connections":[{"id":43486,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":593,"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"]},"13241":{"connections":[{"id":51921,"orbit":0},{"id":55746,"orbit":0},{"id":39732,"orbit":0}],"group":647,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13279":{"connections":[{"id":2864,"orbit":0},{"id":61657,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":611,"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"]},"13293":{"connections":[{"id":30457,"orbit":4}],"group":153,"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"]},"13294":{"connections":[{"id":20718,"orbit":2}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":1,"orbitIndex":7,"skill":13294,"stats":["10% increased Skill Effect Duration"]},"13307":{"connections":[],"group":609,"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"]},"13333":{"connections":[{"id":1700,"orbit":7}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":1,"orbitIndex":9,"skill":13333,"stats":["10% increased Cold Damage"]},"13341":{"connections":[{"id":63255,"orbit":0},{"id":56841,"orbit":0},{"id":18451,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":13341,"stats":["20% increased Frenzy Charge Duration"]},"13352":{"connections":[{"id":59180,"orbit":2147483647},{"id":38010,"orbit":0}],"group":508,"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"]},"13356":{"connections":[{"id":6229,"orbit":7}],"group":498,"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"]},"13359":{"connections":[{"id":31943,"orbit":0}],"group":733,"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"]},"13367":{"connections":[{"id":38969,"orbit":0},{"id":21713,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":14,"skill":13367,"stats":["8% increased Accuracy Rating"]},"13379":{"connections":[{"id":27761,"orbit":0}],"group":1078,"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"]},"13387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":659,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":5,"orbitIndex":0,"skill":13387,"stats":[]},"13397":{"connections":[{"id":1207,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13407":{"connections":[{"id":23040,"orbit":-3},{"id":51583,"orbit":0}],"group":1485,"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"]},"13411":{"connections":[{"id":34136,"orbit":7}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"13419":{"connections":[{"id":14958,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":13419,"stats":["15% increased Critical Damage Bonus"]},"13425":{"connections":[{"id":315,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":13425,"stats":["10% increased Bleeding Duration"]},"13457":{"connections":[{"id":3630,"orbit":5},{"id":52445,"orbit":0}],"group":1316,"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"]},"13468":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13474":{"connections":[{"id":16084,"orbit":0}],"group":397,"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"]},"13482":{"connections":[{"id":30136,"orbit":0},{"id":15892,"orbit":0}],"group":197,"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"]},"13489":{"connections":[{"id":47517,"orbit":0}],"group":132,"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"]},"13500":{"connections":[{"id":41044,"orbit":-3},{"id":44733,"orbit":0}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":3,"orbitIndex":2,"skill":13500,"stats":["3% of Damage taken Recouped as Mana"]},"13505":{"connections":[{"id":4956,"orbit":0}],"group":578,"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"]},"13515":{"connections":[{"id":14601,"orbit":0}],"group":699,"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"]},"13524":{"connections":[{"id":54923,"orbit":0},{"id":259,"orbit":0}],"group":508,"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"]},"13537":{"connections":[{"id":49455,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":10,"skill":13537,"stats":["15% increased maximum Energy Shield"]},"13542":{"connections":[{"id":27492,"orbit":2147483647}],"group":835,"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"]},"13562":{"connections":[{"id":23650,"orbit":3}],"group":587,"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"]},"13576":{"connections":[{"id":17024,"orbit":0}],"group":991,"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"]},"13610":{"connections":[{"id":41447,"orbit":0}],"group":1010,"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"]},"13619":{"connections":[{"id":12208,"orbit":0},{"id":59600,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":0,"skill":13619,"stats":["15% increased Life Flask Charges gained"]},"13624":{"connections":[{"id":28258,"orbit":-2}],"group":1338,"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"]},"13634":{"connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":18,"skill":13634,"stats":["Offering Skills have 30% increased Duration"]},"13673":{"ascendancyName":"Stormweaver","connections":[{"id":61985,"orbit":-8}],"group":517,"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"]},"13691":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connectionArt":"CharacterPlanned","connections":[],"group":107,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":13691,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13701":{"connections":[{"id":17871,"orbit":0},{"id":59538,"orbit":0}],"group":1373,"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"]},"13708":{"connections":[],"group":754,"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"]},"13711":{"connections":[{"id":30562,"orbit":4}],"group":1115,"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"]},"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"]},"13724":{"connections":[{"id":20236,"orbit":0},{"id":33823,"orbit":0}],"group":1147,"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"]},"13738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":974,"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"]},"13748":{"connections":[{"id":38338,"orbit":-6},{"id":41029,"orbit":9}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":0,"skill":13748,"stats":["10% increased Elemental Damage"]},"13769":{"connections":[{"id":2254,"orbit":-4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":13769,"stats":["10% increased Mana Regeneration Rate"]},"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"]},"13777":{"connections":[{"id":38532,"orbit":0}],"group":210,"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"]},"13783":{"connections":[{"id":28992,"orbit":0}],"group":1015,"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"]},"13799":{"connections":[{"id":36576,"orbit":-3}],"group":1379,"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"]},"13823":{"connections":[{"id":63861,"orbit":0},{"id":32054,"orbit":0}],"group":1064,"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"]},"13828":{"connections":[{"id":1140,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":13828,"stats":["+16 to Evasion Rating"]},"13839":{"connections":[{"id":65287,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":6,"skill":13839,"stats":["15% increased Totem Damage"]},"13844":{"connections":[],"group":985,"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"]},"13845":{"connections":[{"id":28408,"orbit":-7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":13845,"stats":["Gain 1 Rage on Melee Hit"]},"13855":{"connections":[{"id":50626,"orbit":0},{"id":64370,"orbit":0}],"group":705,"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"]},"13856":{"connections":[{"id":18496,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":9,"skill":13856,"stats":["12% increased Magnitude of Ailments you inflict"]},"13862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":13862,"stats":[]},"13882":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":737,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":13882,"stats":[]},"13893":{"connections":[{"id":42390,"orbit":-5}],"group":104,"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"]},"13895":{"connections":[{"id":36071,"orbit":0}],"group":1386,"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"]},"13909":{"connections":[{"id":31037,"orbit":0},{"id":62679,"orbit":0}],"group":829,"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"]},"13937":{"connections":[{"id":17791,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":7,"skill":13937,"stats":["14% increased Damage with Maces"]},"13942":{"connections":[{"id":65023,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":13942,"stats":["15% increased Armour"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13980":{"connections":[{"id":14832,"orbit":0},{"id":14693,"orbit":0}],"group":126,"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"]},"13987":{"connections":[{"id":7604,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":2,"orbitIndex":8,"skill":13987,"stats":["3% increased Melee Attack Speed"]},"14001":{"connections":[{"id":56893,"orbit":-3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":2,"orbitIndex":22,"skill":14001,"stats":["6% reduced Charm Charges used"]},"14026":{"connections":[],"group":146,"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"]},"14033":{"connections":[{"id":34553,"orbit":0}],"group":689,"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"]},"14045":{"connections":[{"id":33848,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":48,"skill":14045,"stats":["10% increased Projectile Damage"]},"14048":{"connections":[{"id":34717,"orbit":7}],"group":1297,"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"]},"14082":{"connections":[{"id":43964,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":7,"orbitIndex":8,"skill":14082,"stats":["10% increased Physical Damage"]},"14091":{"connections":[{"id":28860,"orbit":0},{"id":36449,"orbit":0},{"id":23993,"orbit":0}],"group":664,"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"]},"14096":{"connections":[{"id":44293,"orbit":7}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":14096,"stats":["3% increased Cast Speed"]},"14110":{"connections":[{"id":22484,"orbit":-4},{"id":35974,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":22,"skill":14110,"stats":["15% increased Totem Damage"]},"14113":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":10029,"orbit":0},{"id":8660,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":14113,"stats":[]},"14127":{"connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":13,"skill":14127,"stats":["8% reduced Skill Effect Duration"]},"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":611,"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"]},"14176":{"connections":[{"id":18004,"orbit":0}],"group":321,"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"]},"14205":{"connections":[{"id":25753,"orbit":0}],"group":502,"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"]},"14211":{"connections":[{"id":44540,"orbit":0}],"group":1158,"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"]},"14226":{"connections":[],"flavourText":"You circle the black scorpion with enmity, daring it time and again.","group":1398,"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"]},"14231":{"connections":[{"id":40453,"orbit":-7}],"group":1233,"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"]},"14254":{"connections":[{"id":97,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":4,"skill":14254,"stats":["3% increased Attack Speed"]},"14258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":13123,"orbit":-7}],"group":843,"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"]},"14262":{"connections":[{"id":32763,"orbit":0},{"id":21945,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14267":{"connections":[{"id":32763,"orbit":0},{"id":28976,"orbit":0},{"id":38212,"orbit":0},{"id":1499,"orbit":0}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14272":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":2,"orbitIndex":7,"skill":14272,"stats":[]},"14294":{"connections":[{"id":43818,"orbit":0}],"group":472,"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"]},"14324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":1468,"orbit":-2}],"group":793,"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"]},"14328":{"connections":[{"id":18959,"orbit":0}],"group":433,"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"]},"14340":{"connections":[{"id":26786,"orbit":0},{"id":26319,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14342":{"connections":[{"id":49256,"orbit":4}],"group":116,"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"]},"14343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1086,"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"]},"14355":{"connections":[{"id":8483,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":3,"skill":14355,"stats":["10% increased Spell Area Damage"]},"14363":{"connections":[{"id":61338,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":3,"orbitIndex":2,"skill":14363,"stats":["Damage Penetrates 6% Lightning Resistance"]},"14383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46601,"orbit":0}],"group":1227,"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"]},"14394":{"connections":[{"id":35743,"orbit":0}],"group":868,"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"]},"14418":{"connections":[{"id":16602,"orbit":2147483647}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":6,"skill":14418,"stats":["15% increased Evasion Rating"]},"14428":{"connections":[{"id":6287,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":14428,"stats":["+8 to Intelligence"]},"14429":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":393,"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"]},"14432":{"connectionArt":"CharacterPlanned","connections":[],"group":113,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14439":{"connections":[{"id":5728,"orbit":3}],"group":116,"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"]},"14446":{"connections":[{"id":61403,"orbit":0},{"id":22713,"orbit":0},{"id":58022,"orbit":9},{"id":45702,"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":0,"orbitIndex":0,"skill":14446,"stats":["+5 to any Attribute"]},"14459":{"connections":[{"id":5544,"orbit":3}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":2,"skill":14459,"stats":["30% increased Thorns Critical Damage Bonus"]},"14505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":14505,"stats":[]},"14508":{"ascendancyName":"Pathfinder","connections":[{"id":29074,"orbit":0}],"group":1513,"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"]},"14509":{"connections":[{"id":9323,"orbit":0}],"group":106,"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"]},"14511":{"connections":[{"id":18207,"orbit":-3},{"id":53719,"orbit":0}],"group":122,"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"]},"14515":{"connections":[{"id":43778,"orbit":0}],"group":289,"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"]},"14539":{"connections":[{"id":44776,"orbit":5}],"group":1426,"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"]},"14540":{"connections":[{"id":31903,"orbit":0}],"flavourText":"Stand your ground, child, keep your senses.\\nThe pain is fleeting, but victory is forever.","group":459,"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"]},"14548":{"connections":[{"id":59541,"orbit":7}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":0,"skill":14548,"stats":["Minions have 10% increased maximum Life"]},"14572":{"connections":[{"id":49657,"orbit":-6},{"id":11037,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":8,"skill":14572,"stats":["5% increased Cooldown Recovery Rate"]},"14575":{"connections":[],"group":604,"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"]},"14598":{"connections":[{"id":4345,"orbit":0}],"group":701,"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"]},"14601":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":0,"skill":14601,"stats":[]},"14602":{"connections":[{"id":42737,"orbit":0}],"group":568,"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"]},"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":338,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14655":{"connections":[{"id":372,"orbit":7}],"group":368,"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"]},"14658":{"connections":[{"id":12253,"orbit":0},{"id":22517,"orbit":0},{"id":52053,"orbit":0},{"id":1631,"orbit":0},{"id":57945,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"14666":{"connections":[],"group":819,"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"]},"14686":{"connections":[{"id":48552,"orbit":0},{"id":53795,"orbit":-3}],"group":455,"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"]},"14693":{"connections":[{"id":13937,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":4,"orbitIndex":27,"skill":14693,"stats":["14% increased Damage with Maces"]},"14712":{"connections":[{"id":3866,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":2,"skill":14712,"stats":["Minions have 12% increased maximum Life"]},"14724":{"connections":[{"id":62185,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":14724,"stats":["20% increased Shock Duration"]},"14725":{"connections":[{"id":49220,"orbit":-5},{"id":34233,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":18,"skill":14725,"stats":["3% increased Skill Speed"]},"14739":{"connections":[{"id":49235,"orbit":0}],"group":712,"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"]},"14761":{"connections":[{"id":45215,"orbit":0},{"id":57775,"orbit":0}],"group":426,"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"]},"14769":{"connections":[{"id":40471,"orbit":-2}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":14769,"stats":["+8 to Dexterity"]},"14777":{"connections":[{"id":59466,"orbit":5},{"id":20015,"orbit":0}],"group":392,"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"]},"14832":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":126,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":14832,"stats":[]},"14882":{"connections":[{"id":5048,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":18,"skill":14882,"stats":["10% increased Magnitude of Poison you inflict"]},"14890":{"connections":[{"id":21080,"orbit":-4}],"group":1089,"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"]},"14923":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":636,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":14923,"stats":[]},"14926":{"connections":[{"id":50609,"orbit":0},{"id":56910,"orbit":-6}],"group":801,"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"]},"14934":{"connections":[{"id":32523,"orbit":0}],"group":632,"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"]},"14945":{"connections":[{"id":34552,"orbit":0},{"id":1447,"orbit":0}],"group":475,"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"]},"14952":{"connections":[{"id":21985,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":8,"skill":14952,"stats":["10% increased Skill Effect Duration"]},"14958":{"connections":[{"id":17548,"orbit":0}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":1,"orbitIndex":10,"skill":14958,"stats":["10% increased Critical Hit Chance"]},"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"]},"14980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":282,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":14980,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14996":{"connections":[{"id":41620,"orbit":-7}],"group":354,"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"]},"14997":{"connections":[{"id":47856,"orbit":0},{"id":28370,"orbit":0}],"group":756,"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"]},"15030":{"connections":[{"id":45693,"orbit":0},{"id":21324,"orbit":0}],"group":1107,"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"]},"15044":{"ascendancyName":"Tactician","connections":[{"id":32560,"orbit":0},{"id":42845,"orbit":0}],"group":307,"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"]},"15083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":844,"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"]},"15114":{"connections":[{"id":6356,"orbit":5},{"id":71,"orbit":-5},{"id":7642,"orbit":0}],"group":463,"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"]},"15141":{"connectionArt":"CharacterPlanned","connections":[],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15180":{"connections":[{"id":61444,"orbit":-2}],"group":497,"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"]},"15182":{"connections":[{"id":54818,"orbit":0}],"group":741,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15194":{"connections":[{"id":25303,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":15194,"stats":["Minions have +20% to Fire Resistance"]},"15207":{"connections":[{"id":6330,"orbit":0}],"group":1319,"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"]},"15247":{"connections":[{"id":46683,"orbit":0}],"group":141,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":7,"skill":15247,"stats":["Empowered Attacks deal 16% increased Damage"]},"15270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":15270,"stats":[]},"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"]},"15301":{"connections":[{"id":4709,"orbit":0},{"id":64064,"orbit":0}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":15301,"stats":["8% increased Accuracy Rating"]},"15304":{"connections":[{"id":16466,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":15304,"stats":["3% increased Cast Speed"]},"15343":{"connections":[{"id":58692,"orbit":5}],"group":1405,"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"]},"15356":{"connections":[{"id":18815,"orbit":0}],"group":1394,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":15356,"stats":["Damage Penetrates 6% Lightning Resistance"]},"15358":{"connections":[{"id":10320,"orbit":7},{"id":44255,"orbit":-7}],"group":938,"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"]},"15374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":48035,"orbit":0}],"group":557,"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"]},"15408":{"connections":[{"id":2254,"orbit":4},{"id":6338,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":23,"skill":15408,"stats":["15% increased maximum Energy Shield"]},"15424":{"connections":[{"id":58157,"orbit":0},{"id":35151,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":15424,"stats":["15% increased Stun Threshold"]},"15427":{"connections":[{"id":57379,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":6,"skill":15427,"stats":["12% increased Melee Damage"]},"15443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1052,"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"]},"15494":{"connections":[{"id":1865,"orbit":0},{"id":43584,"orbit":0}],"group":619,"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"]},"15507":{"connections":[{"id":48401,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"15522":{"connections":[{"id":17348,"orbit":6},{"id":24630,"orbit":-6}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":3,"orbitIndex":21,"skill":15522,"stats":["12% increased Ignite Magnitude"]},"15580":{"connectionArt":"CharacterPlanned","connections":[{"id":61977,"orbit":0}],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15590":{"connections":[{"id":26356,"orbit":0}],"group":684,"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"]},"15606":{"connections":[{"id":41821,"orbit":0}],"group":215,"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%"]},"15617":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":522,"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"]},"15618":{"connections":[{"id":57710,"orbit":0}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":0,"skill":15618,"stats":["15% increased Critical Spell Damage Bonus"]},"15625":{"connections":[{"id":65161,"orbit":0},{"id":24287,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":12,"skill":15625,"stats":["15% increased Evasion Rating"]},"15628":{"connections":[{"id":36880,"orbit":3}],"group":431,"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"]},"15644":{"connections":[{"id":41538,"orbit":6},{"id":44612,"orbit":0}],"group":1081,"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"]},"15672":{"connectionArt":"CharacterPlanned","connections":[{"id":45400,"orbit":2147483647}],"group":107,"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"],"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"]},"15775":{"connections":[{"id":30808,"orbit":0},{"id":11598,"orbit":0},{"id":29959,"orbit":0},{"id":15343,"orbit":-5}],"group":1445,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15782":{"connections":[{"id":1433,"orbit":0},{"id":46628,"orbit":0},{"id":53675,"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":15782,"stats":["+5 to any Attribute"]},"15801":{"connections":[],"group":629,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":15801,"stats":["8% increased speed of Recoup Effects"]},"15809":{"connections":[{"id":31175,"orbit":0},{"id":26945,"orbit":7},{"id":18485,"orbit":0}],"group":669,"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"]},"15814":{"connections":[{"id":12800,"orbit":0}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":15814,"stats":["25% increased Evasion Rating while Sprinting"]},"15825":{"connections":[{"id":26592,"orbit":-3}],"group":179,"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"]},"15829":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46146,"orbit":0}],"group":1088,"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"]},"15838":{"connections":[{"id":15969,"orbit":0}],"group":659,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":2,"skill":15838,"stats":["10% increased chance to inflict Ailments"]},"15839":{"connections":[{"id":60085,"orbit":0}],"group":899,"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"]},"15842":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":88,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":3,"orbitIndex":10,"skill":15842,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15855":{"connections":[{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":41,"skill":15855,"stats":["10% increased Damage with Swords"]},"15876":{"connections":[{"id":7947,"orbit":2},{"id":46554,"orbit":0}],"group":910,"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"]},"15885":{"connections":[{"id":12367,"orbit":3},{"id":22783,"orbit":0},{"id":11679,"orbit":0},{"id":42680,"orbit":0}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"15892":{"connections":[],"group":183,"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"]},"15899":{"connections":[{"id":21627,"orbit":9}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":6,"skill":15899,"stats":["10% increased Magnitude of Bleeding you inflict"]},"15913":{"connections":[{"id":32599,"orbit":2},{"id":61362,"orbit":-2},{"id":49734,"orbit":0}],"group":245,"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"]},"15969":{"connections":[{"id":41129,"orbit":0},{"id":59376,"orbit":0}],"group":659,"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"]},"15975":{"connections":[{"id":48198,"orbit":5}],"group":1003,"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"]},"15984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":838,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":15984,"stats":[]},"15986":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":6030,"orbit":0}],"group":1484,"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"]},"15991":{"connections":[{"id":15984,"orbit":0}],"group":840,"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"]},"16013":{"connections":[{"id":41811,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":7,"orbitIndex":6,"skill":16013,"stats":["5% chance to Daze on Hit"]},"16024":{"connections":[{"id":29288,"orbit":2}],"group":1172,"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"]},"16051":{"connections":[],"group":322,"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"]},"16084":{"connections":[{"id":57552,"orbit":0}],"group":396,"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"]},"16090":{"connections":[{"id":50302,"orbit":0}],"group":410,"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"]},"16100":{"ascendancyName":"Invoker","connections":[{"id":65173,"orbit":7}],"group":1505,"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"]},"16111":{"connections":[{"id":46268,"orbit":9},{"id":2397,"orbit":0},{"id":54099,"orbit":0}],"group":666,"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"]},"16114":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":16114,"stats":[]},"16121":{"connections":[{"id":56334,"orbit":7}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":16121,"stats":["Meta Skills gain 8% increased Energy"]},"16123":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":983,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":3,"orbitIndex":22,"skill":16123,"stats":[]},"16140":{"connections":[{"id":16013,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":2,"orbitIndex":10,"skill":16140,"stats":["5% chance to Daze on Hit"]},"16142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1458,"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"]},"16150":{"connections":[{"id":37971,"orbit":0}],"group":1493,"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"]},"16168":{"connections":[{"id":54232,"orbit":-5},{"id":25374,"orbit":0},{"id":45916,"orbit":0}],"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":6,"orbitIndex":48,"skill":16168,"stats":["+5 to any Attribute"]},"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"]},"16249":{"ascendancyName":"Tactician","connections":[],"group":294,"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"]},"16256":{"connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"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"]},"16311":{"connections":[{"id":32600,"orbit":0},{"id":14654,"orbit":0}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":20,"skill":16311,"stats":["10% increased Life Regeneration rate"]},"16329":{"connections":[{"id":39607,"orbit":-2}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Used","orbit":2,"orbitIndex":2,"skill":16329,"stats":["5% reduced Flask Charges used"]},"16332":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":-7},{"id":11160,"orbit":-9}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16347":{"connections":[{"id":52373,"orbit":0}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":2,"skill":16347,"stats":["+2 to Maximum Rage"]},"16367":{"connections":[],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":16367,"stats":["10% increased Elemental Damage"]},"16385":{"connections":[{"id":53320,"orbit":2147483647}],"group":667,"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"]},"16401":{"connections":[{"id":44490,"orbit":0}],"group":1352,"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"]},"16413":{"connections":[{"id":42660,"orbit":0}],"group":226,"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"]},"16433":{"ascendancyName":"Pathfinder","connections":[{"id":12795,"orbit":0},{"id":57253,"orbit":0},{"id":36676,"orbit":0}],"group":1525,"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":[]},"16460":{"connections":[{"id":28992,"orbit":0},{"id":6772,"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":6,"orbitIndex":18,"skill":16460,"stats":["+5 to any Attribute"]},"16466":{"connections":[{"id":40196,"orbit":0}],"group":1151,"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"]},"16484":{"connections":[{"id":25100,"orbit":0},{"id":18923,"orbit":0}],"group":1039,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16485":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":16485,"stats":["Damage Penetrates 6% Lightning Resistance"]},"16489":{"connections":[{"id":28556,"orbit":6},{"id":49799,"orbit":7}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16499":{"connections":[{"id":36814,"orbit":0}],"group":856,"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"]},"16506":{"connections":[{"id":35417,"orbit":-2}],"group":354,"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"]},"16538":{"connections":[{"id":44330,"orbit":0}],"group":804,"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"]},"16568":{"connections":[{"id":60992,"orbit":-2}],"group":1339,"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"]},"16596":{"connections":[{"id":38535,"orbit":7},{"id":5088,"orbit":0}],"group":353,"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"]},"16602":{"connections":[{"id":29285,"orbit":2},{"id":30657,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":23,"skill":16602,"stats":["15% increased Evasion Rating"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16618":{"connections":[{"id":24511,"orbit":0},{"id":4492,"orbit":0}],"group":795,"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"]},"16620":{"connections":[{"id":21161,"orbit":4}],"group":250,"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"]},"16626":{"connections":[{"id":53089,"orbit":0},{"id":62023,"orbit":0}],"group":291,"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"]},"16647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":545,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":16647,"stats":[]},"16680":{"connections":[{"id":48137,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":15,"skill":16680,"stats":["15% increased Crossbow Reload Speed"]},"16691":{"connections":[{"id":21716,"orbit":-5}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech Speed","orbit":7,"orbitIndex":6,"skill":16691,"stats":["Leech Life 15% faster"]},"16695":{"connections":[{"id":61926,"orbit":0}],"group":1142,"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"]},"16705":{"connections":[{"id":25851,"orbit":4},{"id":34621,"orbit":0},{"id":61834,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"16721":{"connections":[{"id":32239,"orbit":4},{"id":34187,"orbit":6},{"id":18270,"orbit":6}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":0,"orbitIndex":0,"skill":16721,"stats":["12% increased Damage with Plant Skills"]},"16725":{"connections":[{"id":27373,"orbit":6},{"id":36629,"orbit":-6},{"id":54811,"orbit":0},{"id":36163,"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":16725,"stats":["+5 to any Attribute"]},"16744":{"connections":[{"id":24009,"orbit":-5},{"id":24748,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":12,"skill":16744,"stats":["15% increased Evasion Rating"]},"16784":{"connections":[{"id":31650,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":68,"skill":16784,"stats":["16% increased Totem Life"]},"16786":{"connections":[{"id":20467,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":14,"skill":16786,"stats":["15% increased Immobilisation buildup"]},"16790":{"connections":[{"id":27234,"orbit":0}],"group":907,"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"]},"16816":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1099,"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"]},"16861":{"connections":[{"id":27303,"orbit":-5}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":22,"skill":16861,"stats":["10% increased Critical Hit Chance"]},"16871":{"connections":[{"id":9532,"orbit":2}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":18,"skill":16871,"stats":["+4 to Strength","+4 to Dexterity"]},"16938":{"connections":[{"id":8789,"orbit":3}],"group":1040,"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"]},"16940":{"connections":[{"id":25446,"orbit":0}],"group":403,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17024":{"connections":[{"id":37372,"orbit":0}],"group":971,"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"]},"17025":{"connections":[{"id":13515,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":18,"skill":17025,"stats":["10% increased Lightning Damage"]},"17026":{"connections":[{"id":23373,"orbit":0}],"group":635,"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"]},"17029":{"connections":[{"id":45992,"orbit":0}],"group":467,"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"]},"17045":{"connections":[{"id":55131,"orbit":6}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":4,"orbitIndex":42,"skill":17045,"stats":["2% increased Movement Speed"]},"17057":{"connections":[{"id":17025,"orbit":2}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":1,"orbitIndex":0,"skill":17057,"stats":["10% increased Lightning Damage"]},"17058":{"ascendancyName":"Ritualist","connections":[],"group":1561,"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"]},"17059":{"connectionArt":"CharacterPlanned","connections":[{"id":6874,"orbit":-7}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17061":{"connections":[{"id":31773,"orbit":2}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":3,"orbitIndex":4,"skill":17061,"stats":["Archon recovery period expires 10% faster"]},"17077":{"connections":[{"id":51463,"orbit":0},{"id":36114,"orbit":0}],"group":1104,"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"]},"17088":{"connections":[{"id":51416,"orbit":4}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17092":{"connections":[{"id":10484,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":18,"skill":17092,"stats":["+2 to Maximum Rage"]},"17101":{"connections":[{"id":25362,"orbit":-2}],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":17,"skill":17101,"stats":["10% increased Attack Damage"]},"17107":{"connections":[{"id":11788,"orbit":3}],"group":852,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":0,"orbitIndex":0,"skill":17107,"stats":["10% increased Spell Area Damage"]},"17112":{"connections":[{"id":64900,"orbit":-7},{"id":4331,"orbit":2}],"group":122,"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"]},"17118":{"connections":[{"id":38814,"orbit":0},{"id":20049,"orbit":0},{"id":8789,"orbit":4}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17138":{"connections":[{"id":51903,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":17138,"stats":["10% increased Melee Damage"]},"17146":{"connections":[{"id":3843,"orbit":4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":17,"skill":17146,"stats":["20% increased Parry Damage"]},"17150":{"connections":[{"id":53647,"orbit":7},{"id":19750,"orbit":0}],"group":708,"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"]},"17215":{"connections":[{"id":4552,"orbit":2}],"group":1229,"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"]},"17229":{"connections":[{"id":34493,"orbit":0},{"id":47242,"orbit":0},{"id":29985,"orbit":0}],"group":262,"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"]},"17248":{"connections":[{"id":53960,"orbit":-5}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17254":{"connections":[{"id":14272,"orbit":0},{"id":26596,"orbit":0}],"group":1178,"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"]},"17260":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":335,"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"]},"17268":{"ascendancyName":"Invoker","connections":[{"id":7621,"orbit":3}],"group":1505,"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"]},"17282":{"connections":[{"id":47252,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":20,"skill":17282,"stats":["16% increased Mana Regeneration Rate while stationary"]},"17283":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":17283,"stats":[]},"17294":{"connections":[{"id":19330,"orbit":-5},{"id":27501,"orbit":4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":17294,"stats":["10% increased Life Regeneration rate"]},"17303":{"connections":[{"id":17026,"orbit":0},{"id":27992,"orbit":0}],"group":635,"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"]},"17316":{"connections":[{"id":40244,"orbit":-4},{"id":62986,"orbit":5}],"group":1201,"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"]},"17330":{"connections":[{"id":61927,"orbit":0}],"group":289,"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"]},"17340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62051,"orbit":-4}],"group":807,"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"]},"17348":{"connections":[{"id":11275,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":17,"skill":17348,"stats":["12% increased Ignite Magnitude"]},"17349":{"connections":[{"id":23940,"orbit":-3},{"id":58138,"orbit":0}],"group":116,"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"]},"17356":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"17366":{"connections":[{"id":29361,"orbit":0}],"group":923,"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"]},"17367":{"connections":[{"id":53941,"orbit":-6},{"id":12761,"orbit":0}],"group":1109,"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"]},"17372":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1383,"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"]},"17378":{"connections":[{"id":40894,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":22,"skill":17378,"stats":["Minions have 10% increased maximum Life"]},"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":783,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":6,"skill":17380,"stats":[]},"17394":{"connections":[{"id":45530,"orbit":-3}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":0,"skill":17394,"stats":["Minions cause 15% increased Stun Buildup"]},"17411":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":497,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":17411,"stats":[]},"17417":{"connections":[{"id":3652,"orbit":3},{"id":27999,"orbit":0}],"group":483,"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"]},"17420":{"connections":[{"id":18717,"orbit":0},{"id":25565,"orbit":0},{"id":15356,"orbit":0}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":17420,"stats":["12% increased Lightning Damage"]},"17447":{"connections":[{"id":24843,"orbit":-7},{"id":29320,"orbit":7}],"group":1213,"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"]},"17468":{"connections":[],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"17501":{"connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":2,"orbitIndex":7,"skill":17501,"stats":["Minions deal 10% increased Damage"]},"17505":{"connections":[{"id":52106,"orbit":0},{"id":28774,"orbit":0},{"id":23382,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":30,"skill":17505,"stats":["3% increased Cast Speed"]},"17517":{"connections":[{"id":13233,"orbit":-4},{"id":17655,"orbit":9}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":12,"skill":17517,"stats":["5% increased Area of Effect"]},"17523":{"connections":[{"id":42032,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":17523,"stats":["16% increased Hazard Damage"]},"17532":{"connections":[{"id":61934,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":17532,"stats":["12% increased Stun Threshold"]},"17548":{"connections":[{"id":630,"orbit":0},{"id":31039,"orbit":0}],"group":1057,"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"]},"17553":{"connections":[],"group":920,"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"]},"17584":{"connections":[],"group":650,"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"]},"17587":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":166,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":9,"skill":17587,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17589":{"connections":[{"id":36085,"orbit":0},{"id":64462,"orbit":7}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":23,"skill":17589,"stats":["10% increased Attack Damage"]},"17600":{"connections":[{"id":18519,"orbit":3},{"id":32096,"orbit":0},{"id":10041,"orbit":-2}],"group":1083,"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"]},"17602":{"connections":[{"id":59799,"orbit":4},{"id":59798,"orbit":-4}],"group":1270,"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"]},"17625":{"connections":[{"id":10873,"orbit":-5}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":9,"skill":17625,"stats":["Gain 1 Rage on Melee Hit"]},"17646":{"ascendancyName":"Witchhunter","connections":[],"group":246,"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"]},"17655":{"connections":[],"group":567,"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"]},"17664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":11463,"orbit":0},{"id":33348,"orbit":0}],"group":1356,"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"]},"17668":{"connections":[{"id":17215,"orbit":2}],"group":1229,"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"]},"17672":{"connections":[{"id":38732,"orbit":0},{"id":64427,"orbit":0}],"group":911,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17686":{"connections":[{"id":53996,"orbit":0},{"id":43575,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":19,"skill":17686,"stats":["10% increased Melee Damage"]},"17687":{"connections":[{"id":2021,"orbit":-5}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges","orbit":7,"orbitIndex":0,"skill":17687,"stats":["15% increased Mana Flask Charges gained"]},"17696":{"connections":[],"group":710,"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"]},"17702":{"connections":[{"id":46882,"orbit":0},{"id":27262,"orbit":-3},{"id":20467,"orbit":2147483647}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"17706":{"connections":[{"id":46972,"orbit":-2}],"group":894,"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"]},"17711":{"connections":[{"id":46989,"orbit":3}],"group":855,"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"]},"17724":{"connections":[{"id":17101,"orbit":-4}],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":13,"skill":17724,"stats":["10% increased Attack Damage"]},"17725":{"connections":[{"id":9221,"orbit":0}],"group":268,"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"]},"17726":{"connections":[{"id":33053,"orbit":7}],"group":928,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Stun Buildup","orbit":7,"orbitIndex":5,"skill":17726,"stats":["15% increased Stun Buildup"]},"17729":{"connectionArt":"CharacterPlanned","connections":[{"id":56466,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":478,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":17745,"stats":[]},"17750":{"connections":[{"id":658,"orbit":4}],"group":590,"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"]},"17754":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"17762":{"connections":[{"id":2964,"orbit":-7},{"id":28476,"orbit":0}],"group":493,"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"]},"17788":{"ascendancyName":"Lich","connections":[],"containJewelSocket":true,"group":1173,"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"]},"17791":{"connections":[{"id":526,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":7,"orbitIndex":3,"skill":17791,"stats":["18% increased Stun Buildup with Maces"]},"17792":{"connections":[{"id":48734,"orbit":3}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Presence Area","orbit":2,"orbitIndex":9,"skill":17792,"stats":["20% increased Presence Area of Effect"]},"17796":{"connections":[{"id":12412,"orbit":2147483647}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Cooldown Recovery Rate","orbit":2,"orbitIndex":12,"skill":17796,"stats":["5% increased Cooldown Recovery Rate"]},"17825":{"connections":[{"id":45585,"orbit":-7},{"id":46931,"orbit":-7},{"id":5681,"orbit":0}],"group":453,"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"]},"17854":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":55275,"orbit":7}],"group":1236,"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"]},"17867":{"connections":[{"id":37092,"orbit":0}],"group":665,"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"]},"17871":{"connections":[{"id":32672,"orbit":0}],"group":1373,"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"]},"17882":{"connections":[{"id":33596,"orbit":0}],"group":883,"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"]},"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17903":{"connections":[{"id":40117,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":8,"skill":17903,"stats":["16% increased Thorns damage"]},"17906":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":17906,"stats":[]},"17923":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":18826,"orbit":0}],"group":1533,"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"]},"17924":{"connections":[{"id":51867,"orbit":-7}],"group":386,"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"]},"17955":{"connections":[{"id":51708,"orbit":0}],"group":1094,"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"]},"17973":{"connections":[{"id":4748,"orbit":4},{"id":22691,"orbit":-6}],"group":819,"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"]},"17994":{"connections":[{"id":22565,"orbit":0}],"group":808,"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"]},"17999":{"connections":[{"id":51561,"orbit":0},{"id":42026,"orbit":0},{"id":63979,"orbit":0}],"group":297,"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"]},"18004":{"connections":[{"id":8881,"orbit":0}],"group":321,"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"]},"18049":{"connections":[{"id":5802,"orbit":0}],"group":1307,"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"]},"18073":{"connections":[{"id":49952,"orbit":7},{"id":63114,"orbit":4}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":2,"skill":18073,"stats":["12% increased Attack Damage"]},"18081":{"connectionArt":"CharacterPlanned","connections":[{"id":52993,"orbit":0},{"id":14980,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18086":{"connections":[{"id":62844,"orbit":0},{"id":7333,"orbit":0}],"group":730,"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"]},"18101":{"connections":[{"id":61615,"orbit":3},{"id":59413,"orbit":-3}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":18101,"stats":["8% increased speed of Recoup Effects"]},"18115":{"connections":[{"id":48856,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":7,"skill":18115,"stats":["12% increased Grenade Damage"]},"18121":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":18121,"stats":[]},"18146":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":57819,"orbit":2147483647}],"group":485,"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"]},"18157":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":29447,"orbit":-8}],"group":328,"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"]},"18158":{"ascendancyName":"Infernalist","connections":[],"group":735,"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"]},"18160":{"connections":[{"id":26945,"orbit":0}],"group":669,"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"]},"18167":{"connections":[{"id":49150,"orbit":-2}],"group":1172,"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"]},"18186":{"connections":[{"id":13942,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":18186,"stats":["15% increased Armour"]},"18207":{"connections":[{"id":53261,"orbit":-3}],"group":122,"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"]},"18245":{"connections":[{"id":30554,"orbit":0},{"id":21164,"orbit":0}],"group":150,"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"]},"18270":{"connections":[{"id":45874,"orbit":3}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":55,"skill":18270,"stats":["12% increased Damage with Plant Skills"]},"18280":{"ascendancyName":"Ritualist","connections":[],"group":1559,"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"]},"18308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":750,"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"]},"18314":{"connections":[{"id":60239,"orbit":-4},{"id":58593,"orbit":-6}],"group":1405,"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"]},"18348":{"ascendancyName":"Infernalist","connections":[{"id":19482,"orbit":5},{"id":8854,"orbit":0},{"id":46016,"orbit":8}],"group":759,"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"]},"18353":{"connectionArt":"CharacterPlanned","connections":[{"id":20496,"orbit":0},{"id":3544,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18374":{"connections":[],"group":493,"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"]},"18397":{"connections":[{"id":55063,"orbit":0},{"id":4139,"orbit":0}],"group":138,"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"]},"18407":{"connections":[],"group":732,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"18419":{"connections":[{"id":11014,"orbit":0},{"id":16784,"orbit":0},{"id":23667,"orbit":0}],"group":322,"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"]},"18441":{"connectionArt":"CharacterPlanned","connections":[{"id":34181,"orbit":0}],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18448":{"connections":[{"id":30141,"orbit":0},{"id":6872,"orbit":0},{"id":30457,"orbit":0},{"id":59039,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"18451":{"connections":[],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":12,"skill":18451,"stats":["20% increased Frenzy Charge Duration"]},"18465":{"connections":[{"id":39540,"orbit":0}],"group":567,"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"]},"18470":{"connections":[{"id":4447,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":1,"orbitIndex":4,"skill":18470,"stats":["15% increased Pin Buildup"]},"18472":{"connections":[{"id":46533,"orbit":0}],"group":1276,"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"]},"18485":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"18489":{"connections":[{"id":13356,"orbit":7},{"id":12751,"orbit":-7},{"id":37258,"orbit":0}],"group":498,"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"]},"18496":{"connections":[{"id":50616,"orbit":0}],"group":254,"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"]},"18505":{"connections":[{"id":45090,"orbit":0},{"id":50616,"orbit":0}],"group":254,"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"]},"18519":{"connections":[{"id":30910,"orbit":-7}],"group":1083,"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"]},"18548":{"connections":[{"id":28992,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":8,"skill":18548,"stats":["3% increased Attack Speed"]},"18568":{"connections":[{"id":46887,"orbit":-5}],"group":1227,"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"]},"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"]},"18624":{"connections":[{"id":39608,"orbit":-2},{"id":12329,"orbit":2}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":3,"orbitIndex":22,"skill":18624,"stats":["16% increased Hazard Damage"]},"18629":{"connections":[{"id":64327,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":0,"skill":18629,"stats":["5% increased Block chance"]},"18651":{"connections":[{"id":11736,"orbit":0},{"id":63863,"orbit":0}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18651,"stats":["12% increased Lightning Damage"]},"18678":{"ascendancyName":"Chronomancer","connections":[{"id":28153,"orbit":9}],"group":315,"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"]},"18684":{"connections":[],"flavourText":"\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"","group":127,"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"]},"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":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18717":{"connections":[{"id":60483,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18717,"stats":["12% increased Lightning Damage"]},"18737":{"connections":[{"id":17725,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":6,"skill":18737,"stats":["10% increased Critical Hit Chance"]},"18742":{"connections":[{"id":7721,"orbit":-6},{"id":62732,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":6,"skill":18742,"stats":["12% increased Stun Threshold"]},"18744":{"connections":[{"id":60324,"orbit":2}],"group":1108,"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"]},"18746":{"connections":[],"group":128,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":18746,"stats":["5% increased Block chance"]},"18793":{"connections":[{"id":33639,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":20,"skill":18793,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"18801":{"connections":[{"id":11752,"orbit":2147483647},{"id":63360,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":10,"skill":18801,"stats":["Banner Skills have 20% increased Duration"]},"18815":{"connections":[{"id":40990,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":18815,"stats":["Damage Penetrates 6% Lightning Resistance"]},"18818":{"connections":[{"id":29517,"orbit":0},{"id":49461,"orbit":2},{"id":21314,"orbit":-2}],"group":1123,"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"]},"18822":{"connections":[{"id":21567,"orbit":-3},{"id":47790,"orbit":3}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Damage","orbit":1,"orbitIndex":7,"skill":18822,"stats":["10% increased Damage"]},"18826":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":47344,"orbit":0}],"group":1533,"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"]},"18831":{"connections":[{"id":49545,"orbit":7}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":2,"orbitIndex":19,"skill":18831,"stats":["5% increased Block chance"]},"18845":{"connections":[{"id":55807,"orbit":-5}],"group":757,"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"]},"18846":{"connections":[],"group":394,"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"]},"18849":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"18856":{"connections":[{"id":24491,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":0,"skill":18856,"stats":["Invocated Spells deal 15% increased Damage"]},"18864":{"connections":[{"id":2745,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":2,"skill":18864,"stats":["10% increased Magnitude of Ailments you inflict"]},"18882":{"connections":[{"id":24045,"orbit":-2},{"id":26786,"orbit":0},{"id":30047,"orbit":0},{"id":29941,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"18895":{"connections":[{"id":12661,"orbit":3}],"group":989,"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"]},"18897":{"connections":[{"id":53185,"orbit":5}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Evasion Rating","orbit":2,"orbitIndex":4,"skill":18897,"stats":["15% increased Evasion Rating"]},"18910":{"connections":[{"id":10265,"orbit":0}],"group":1386,"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"]},"18913":{"connections":[{"id":12419,"orbit":-2}],"group":950,"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"]},"18923":{"connections":[{"id":61976,"orbit":0},{"id":17118,"orbit":0},{"id":39570,"orbit":0},{"id":9085,"orbit":0}],"group":1087,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"18940":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1517,"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"]},"18959":{"connections":[{"id":55843,"orbit":0}],"group":433,"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"]},"18969":{"connections":[],"group":1466,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":0,"orbitIndex":0,"skill":18969,"stats":["3% increased Attack Speed with Bows"]},"18970":{"connections":[{"id":17366,"orbit":-3},{"id":11938,"orbit":0}],"group":923,"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"]},"18972":{"connectionArt":"CharacterPlanned","connections":[{"id":34782,"orbit":0}],"group":155,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19001":{"connections":[{"id":16786,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":18,"skill":19001,"stats":["15% increased Immobilisation buildup"]},"19003":{"connections":[{"id":12166,"orbit":0},{"id":3128,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":19003,"stats":["10% increased Cold Damage"]},"19006":{"connections":[{"id":39461,"orbit":0}],"group":639,"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"]},"19011":{"connections":[{"id":45363,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":20,"skill":19011,"stats":["10% increased Melee Damage"]},"19027":{"connections":[{"id":21156,"orbit":-2},{"id":7847,"orbit":0}],"group":1436,"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"]},"19044":{"connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"19074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":7,"orbitIndex":6,"skill":19074,"stats":[]},"19104":{"connections":[{"id":29582,"orbit":0}],"group":986,"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"]},"19112":{"connections":[{"id":36358,"orbit":0}],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":19112,"stats":["7% increased Chaos Damage"]},"19122":{"connections":[{"id":28432,"orbit":0}],"group":440,"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"]},"19125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":760,"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"]},"19129":{"connections":[{"id":55066,"orbit":0},{"id":9290,"orbit":0}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":21,"skill":19129,"stats":["15% increased Pin Buildup"]},"19156":{"connections":[{"id":12249,"orbit":-7},{"id":17283,"orbit":0}],"group":1109,"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"]},"19162":{"connectionArt":"CharacterPlanned","connections":[{"id":34143,"orbit":0},{"id":31554,"orbit":5},{"id":15141,"orbit":2147483647}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19203":{"connections":[{"id":10260,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":21,"skill":19203,"stats":["Channelling Skills deal 12% increased Damage"]},"19223":{"connections":[{"id":21755,"orbit":0},{"id":53166,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":18,"skill":19223,"stats":["10% increased Attack Damage"]},"19224":{"connections":[{"id":32555,"orbit":0}],"group":964,"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"]},"19233":{"ascendancyName":"Amazon","connections":[{"id":42441,"orbit":0}],"group":1541,"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"]},"19236":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":153,"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"]},"19240":{"connections":[{"id":46358,"orbit":-6},{"id":4847,"orbit":5}],"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":19240,"stats":["+5 to any Attribute"]},"19249":{"connections":[{"id":33209,"orbit":4},{"id":40550,"orbit":0}],"group":375,"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"]},"19277":{"connections":[{"id":44783,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":12,"skill":19277,"stats":["10% increased Spell Area Damage"]},"19288":{"connections":[],"flavourText":"Utter trust in your defence unleashes ultimate potential.","group":961,"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"]},"19318":{"connections":[{"id":53795,"orbit":5}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":13,"skill":19318,"stats":["20% increased Effect of Puppet Master"]},"19330":{"connections":[],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":52,"skill":19330,"stats":["10% increased Life Regeneration rate"]},"19337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1180,"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"]},"19338":{"connections":[{"id":60,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":0,"skill":19338,"stats":["+8 to Dexterity"]},"19341":{"connections":[],"group":891,"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"]},"19342":{"connections":[{"id":17553,"orbit":-3},{"id":46296,"orbit":0},{"id":27493,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":8,"skill":19342,"stats":["10% increased Projectile Damage"]},"19355":{"connections":[],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":4,"skill":19355,"stats":["15% increased maximum Energy Shield"]},"19359":{"connections":[{"id":35095,"orbit":4},{"id":52245,"orbit":0}],"group":1431,"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"]},"19370":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"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"]},"19426":{"connections":[{"id":15443,"orbit":0}],"group":1052,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":4,"skill":19426,"stats":["10% increased Physical Damage"]},"19442":{"connections":[{"id":25170,"orbit":-3},{"id":8606,"orbit":0}],"group":1036,"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"]},"19461":{"connections":[{"id":64415,"orbit":0}],"group":1355,"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"]},"19470":{"connections":[],"group":967,"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"]},"19482":{"ascendancyName":"Infernalist","connections":[{"id":36564,"orbit":0}],"group":759,"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"]},"19542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":1448,"orbit":0}],"group":1308,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":19542,"stats":[]},"19546":{"connections":[{"id":5681,"orbit":0}],"group":453,"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"]},"19563":{"connections":[{"id":47931,"orbit":0},{"id":58496,"orbit":-7},{"id":6735,"orbit":7}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":19563,"stats":["12% increased Damage while Shapeshifted"]},"19573":{"connections":[{"id":38479,"orbit":-5},{"id":19342,"orbit":-3}],"group":920,"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"]},"19644":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"19674":{"connections":[{"id":41493,"orbit":0}],"group":325,"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"]},"19715":{"connections":[{"id":34927,"orbit":0}],"group":718,"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"]},"19722":{"connections":[],"group":1253,"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"]},"19749":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19749,"stats":[]},"19750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":19750,"stats":[]},"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"]},"19767":{"connections":[{"id":35223,"orbit":0},{"id":13895,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":10,"skill":19767,"stats":["3% increased Attack Speed with Spears"]},"19779":{"connections":[{"id":63891,"orbit":2}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":2,"orbitIndex":22,"skill":19779,"stats":["7% increased Chaos Damage"]},"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"]},"19796":{"connections":[{"id":18308,"orbit":0}],"group":750,"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"]},"19802":{"connections":[{"id":64399,"orbit":2}],"group":544,"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"]},"19808":{"connections":[],"group":1043,"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"]},"19820":{"connections":[{"id":5686,"orbit":0}],"group":202,"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"]},"19846":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":357,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19846,"stats":[]},"19873":{"connections":[{"id":13233,"orbit":4},{"id":17655,"orbit":-9}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":4,"skill":19873,"stats":["5% increased Area of Effect"]},"19880":{"connections":[{"id":59390,"orbit":0}],"group":1203,"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"]},"19942":{"connections":[{"id":1144,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":1,"skill":19942,"stats":["12% increased Elemental Damage with Attacks"]},"19953":{"connectionArt":"CharacterPlanned","connections":[{"id":50142,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19955":{"connections":[],"group":783,"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"]},"19966":{"connectionArt":"CharacterPlanned","connections":[{"id":829,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19998":{"connections":[{"id":44430,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":19998,"stats":["12% increased Damage with Crossbows"]},"20008":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1164,"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"]},"20015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":402,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":20015,"stats":[]},"20024":{"connections":[{"id":44223,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":22,"skill":20024,"stats":["15% increased Critical Damage Bonus"]},"20032":{"connections":[{"id":28680,"orbit":0},{"id":56762,"orbit":0}],"group":415,"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"]},"20044":{"connections":[{"id":30736,"orbit":0}],"group":1472,"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"]},"20049":{"connections":[{"id":32818,"orbit":5}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":0,"skill":20049,"stats":["10% increased Charm Charges gained"]},"20091":{"connections":[{"id":46565,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":43,"skill":20091,"stats":["10% increased Damage with Swords"]},"20105":{"connections":[{"id":13895,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Accuracy","orbit":0,"orbitIndex":0,"skill":20105,"stats":["10% increased Accuracy Rating with Spears"]},"20115":{"connections":[{"id":49734,"orbit":0},{"id":24420,"orbit":0},{"id":63243,"orbit":0},{"id":30258,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"20119":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":20119,"stats":[]},"20140":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":914,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":20140,"stats":[]},"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"]},"20205":{"connections":[{"id":33059,"orbit":0}],"group":939,"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"]},"20236":{"connections":[{"id":4346,"orbit":0}],"group":1119,"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"]},"20251":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":114,"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"]},"20289":{"connections":[{"id":61896,"orbit":0},{"id":50767,"orbit":0}],"group":112,"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"]},"20303":{"connections":[{"id":9908,"orbit":0}],"group":380,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":20303,"stats":["10% increased Life Regeneration rate"]},"20350":{"connections":[{"id":4948,"orbit":0},{"id":47006,"orbit":0},{"id":28304,"orbit":0}],"group":382,"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"]},"20387":{"connections":[{"id":57810,"orbit":0}],"group":963,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":20387,"stats":["15% increased chance to Shock"]},"20388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":597,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20397":{"connections":[{"id":4577,"orbit":3},{"id":8556,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Authority","orbit":7,"orbitIndex":11,"recipe":["Greed","Envy","Suffering"],"skill":20397,"stats":["15% increased Area of Effect for Attacks","10% increased Cooldown Recovery Rate"]},"20414":{"connections":[{"id":35043,"orbit":0},{"id":52410,"orbit":0},{"id":50146,"orbit":0}],"group":1442,"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"]},"20416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":440,"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"]},"20429":{"connections":[{"id":28797,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":62,"skill":20429,"stats":["3% increased Attack Speed with Daggers"]},"20437":{"ascendancyName":"Martial Artist","connections":[{"id":39552,"orbit":5}],"group":1510,"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"]},"20467":{"connections":[{"id":58312,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":3,"orbitIndex":12,"skill":20467,"stats":["5% increased Culling Strike Threshold"]},"20495":{"connections":[],"group":720,"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"]},"20496":{"connectionArt":"CharacterPlanned","connections":[{"id":11984,"orbit":2147483647}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20499":{"connections":[{"id":34327,"orbit":0},{"id":2336,"orbit":-2}],"group":403,"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"]},"20504":{"connections":[{"id":62341,"orbit":-5}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":0,"orbitIndex":0,"skill":20504,"stats":["Recover 5 Life when you Block"]},"20511":{"connections":[{"id":53804,"orbit":-7},{"id":49259,"orbit":0}],"group":227,"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"]},"20547":{"connections":[{"id":33340,"orbit":0},{"id":34412,"orbit":-2}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":11,"skill":20547,"stats":["15% increased Stun Buildup"]},"20558":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":225,"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"]},"20582":{"connections":[{"id":55329,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":6,"orbitIndex":21,"skill":20582,"stats":["15% increased Parried Debuff Duration"]},"20637":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":536,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Damage Mastery","orbit":0,"orbitIndex":0,"skill":20637,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51934,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":1,"orbitIndex":1,"skill":20641,"stats":[]},"20645":{"connections":[{"id":64284,"orbit":4}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":14,"skill":20645,"stats":["10% increased Attack Area Damage"]},"20649":{"connections":[{"id":62998,"orbit":0},{"id":2582,"orbit":0},{"id":65290,"orbit":0}],"group":1437,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":20649,"stats":["10% increased Lightning Damage"]},"20677":{"connections":[{"id":9586,"orbit":0},{"id":535,"orbit":0}],"group":1161,"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"]},"20686":{"connections":[],"group":875,"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"]},"20691":{"connections":[{"id":41739,"orbit":0}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":8,"skill":20691,"stats":["15% increased Stun Buildup"]},"20701":{"ascendancyName":"Disciple of Varashta","connections":[{"id":35880,"orbit":3}],"group":611,"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"]},"20718":{"connections":[{"id":30979,"orbit":-3}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":7,"orbitIndex":12,"skill":20718,"stats":["10% increased Skill Effect Duration"]},"20744":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":1,"orbitIndex":3,"skill":20744,"stats":[]},"20772":{"ascendancyName":"Lich","connections":[{"id":2877,"orbit":-4}],"group":1173,"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"]},"20779":{"connections":[{"id":43431,"orbit":9},{"id":50239,"orbit":5}],"group":964,"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"]},"20782":{"connections":[{"id":52191,"orbit":-3},{"id":42361,"orbit":0}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":20782,"stats":["7% increased Chaos Damage"]},"20787":{"connections":[{"id":5390,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":21,"skill":20787,"stats":["15% increased Freeze Buildup"]},"20791":{"connections":[{"id":13777,"orbit":0},{"id":11741,"orbit":0}],"group":210,"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"]},"20820":{"connections":[{"id":40166,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":20820,"stats":["3% increased Attack Speed"]},"20830":{"ascendancyName":"Witchhunter","connections":[{"id":37078,"orbit":8}],"group":318,"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"]},"20831":{"connections":[{"id":29843,"orbit":0},{"id":44875,"orbit":0}],"group":980,"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"]},"20837":{"connections":[{"id":61104,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":0,"orbitIndex":0,"skill":20837,"stats":["8% increased Knockback Distance"]},"20842":{"connections":[{"id":48026,"orbit":0},{"id":4661,"orbit":2147483647}],"group":505,"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"]},"20848":{"connections":[{"id":16721,"orbit":2147483647}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":7,"orbitIndex":8,"skill":20848,"stats":["12% increased Damage with Plant Skills"]},"20861":{"connections":[{"id":8522,"orbit":0},{"id":45350,"orbit":0},{"id":17672,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":12,"skill":20861,"stats":["Invocated Spells deal 15% increased Damage"]},"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"]},"20909":{"connections":[{"id":44891,"orbit":2147483647}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":1,"skill":20909,"stats":["Damage Penetrates 6% Cold Resistance"]},"20916":{"connections":[{"id":59355,"orbit":0}],"group":1168,"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"]},"20963":{"connectionArt":"CharacterPlanned","connections":[{"id":17587,"orbit":0}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20989":{"connections":[{"id":42984,"orbit":0},{"id":30141,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":3,"orbitIndex":9,"skill":20989,"stats":["6% increased Area of Effect"]},"21017":{"connections":[{"id":26969,"orbit":-7},{"id":55789,"orbit":7}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":5,"orbitIndex":0,"skill":21017,"stats":["10% increased Critical Hit Chance"]},"21070":{"connections":[{"id":57388,"orbit":0}],"group":228,"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"]},"21077":{"connections":[{"id":354,"orbit":0}],"group":736,"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"]},"21080":{"connections":[{"id":1869,"orbit":-4}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":19,"skill":21080,"stats":["15% increased Freeze Buildup"]},"21081":{"connections":[{"id":25745,"orbit":5}],"group":632,"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"]},"21089":{"connections":[{"id":31848,"orbit":7}],"group":264,"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"]},"21096":{"connections":[{"id":56388,"orbit":0}],"group":685,"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"]},"21111":{"connections":[{"id":33099,"orbit":-5}],"group":1268,"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"]},"21112":{"connections":[{"id":31055,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":4,"orbitIndex":57,"skill":21112,"stats":["10% increased Damage with Bows"]},"21127":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":292,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":30,"skill":21127,"stats":[]},"21142":{"connections":[{"id":55829,"orbit":7}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":5,"skill":21142,"stats":["6% increased Area of Effect for Attacks"]},"21156":{"connections":[{"id":34623,"orbit":0}],"group":1436,"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"]},"21161":{"connections":[{"id":10500,"orbit":5}],"group":250,"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"]},"21164":{"connections":[{"id":62670,"orbit":0}],"group":150,"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"]},"21184":{"connections":[{"id":20251,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":7,"orbitIndex":3,"skill":21184,"stats":["6% increased Area of Effect"]},"21205":{"connections":[{"id":44176,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":60,"skill":21205,"stats":["+3 to all Attributes"]},"21206":{"connections":[{"id":45899,"orbit":0},{"id":11505,"orbit":0}],"group":602,"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"]},"21208":{"connections":[],"group":1245,"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"]},"21213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":159,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21225":{"connections":[{"id":38369,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":3,"orbitIndex":16,"skill":21225,"stats":["10% increased Damage with Spears"]},"21227":{"connections":[{"id":36290,"orbit":-2}],"group":1294,"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"]},"21245":{"connections":[],"group":518,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":21245,"stats":["10% increased Critical Hit Chance for Spells"]},"21251":{"connections":[],"group":476,"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"]},"21274":{"connections":[{"id":39298,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21279":{"connections":[{"id":35534,"orbit":-3}],"group":1357,"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"]},"21280":{"connections":[{"id":28050,"orbit":0},{"id":61312,"orbit":0},{"id":40630,"orbit":0}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"21286":{"connections":[{"id":4128,"orbit":4},{"id":45992,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":14,"skill":21286,"stats":["15% increased Armour"]},"21291":{"connections":[{"id":59785,"orbit":0},{"id":32836,"orbit":-7}],"group":132,"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"]},"21314":{"connections":[{"id":50912,"orbit":-4}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":17,"skill":21314,"stats":["10% increased Attack Damage"]},"21324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":2,"orbitIndex":7,"skill":21324,"stats":[]},"21327":{"connections":[{"id":56876,"orbit":0}],"group":319,"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"]},"21336":{"connections":[{"id":62984,"orbit":0}],"group":1003,"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"]},"21349":{"connections":[],"group":1159,"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"]},"21374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":233,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":7,"orbitIndex":21,"skill":21374,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21380":{"connections":[],"group":1218,"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"]},"21387":{"connections":[{"id":53719,"orbit":0},{"id":3988,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21390":{"connections":[{"id":7972,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":12,"skill":21390,"stats":["20% increased Endurance Charge Duration"]},"21404":{"connections":[{"id":42825,"orbit":0}],"group":487,"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"]},"21413":{"connections":[{"id":28408,"orbit":0}],"group":180,"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"]},"21438":{"connections":[{"id":1019,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":21438,"stats":["12% increased Armour and Evasion Rating"]},"21453":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":10286,"orbit":0}],"group":220,"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"]},"21468":{"connections":[{"id":39274,"orbit":6}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":3,"orbitIndex":12,"skill":21468,"stats":["8% increased amount of Life Leeched"]},"21495":{"connections":[],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":14,"skill":21495,"stats":["12% increased Elemental Damage with Attacks"]},"21519":{"ascendancyName":"Spirit Walker","connections":[{"id":765,"orbit":0}],"group":1542,"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"]},"21537":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1474,"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"]},"21540":{"connections":[{"id":27658,"orbit":-3}],"group":836,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":21540,"stats":["3% of Damage taken Recouped as Life"]},"21549":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21567":{"connections":[{"id":59710,"orbit":0}],"group":320,"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"]},"21568":{"connections":[{"id":26196,"orbit":0},{"id":26300,"orbit":-5},{"id":41105,"orbit":0}],"group":290,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21572":{"connections":[{"id":6660,"orbit":-7},{"id":7526,"orbit":0}],"group":1223,"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"]},"21606":{"connections":[{"id":2606,"orbit":0},{"id":29148,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":12,"skill":21606,"stats":["Minions have 10% increased maximum Life"]},"21627":{"connections":[{"id":19796,"orbit":0}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":12,"skill":21627,"stats":["10% increased Magnitude of Bleeding you inflict"]},"21670":{"connections":[{"id":29358,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":1,"orbitIndex":7,"skill":21670,"stats":["15% increased Stun Buildup"]},"21684":{"connections":[{"id":1214,"orbit":5}],"group":177,"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"]},"21713":{"connections":[{"id":11604,"orbit":0},{"id":50588,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":20,"skill":21713,"stats":["8% increased Accuracy Rating"]},"21716":{"connections":[{"id":9583,"orbit":-5}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":4,"orbitIndex":9,"skill":21716,"stats":["8% increased amount of Life Leeched"]},"21721":{"connections":[{"id":15899,"orbit":0},{"id":55066,"orbit":0},{"id":62194,"orbit":2147483647}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":3,"orbitIndex":4,"skill":21721,"stats":["5% chance to inflict Bleeding on Hit"]},"21746":{"connections":[{"id":46782,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"21748":{"connections":[{"id":54725,"orbit":0},{"id":6570,"orbit":0}],"group":1245,"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"]},"21755":{"connections":[{"id":54127,"orbit":0},{"id":48635,"orbit":0},{"id":61281,"orbit":0},{"id":52274,"orbit":0}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"21779":{"connections":[{"id":57204,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":19,"skill":21779,"stats":["15% increased Critical Damage Bonus"]},"21784":{"connections":[{"id":50118,"orbit":0},{"id":34443,"orbit":0}],"group":203,"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%"]},"21788":{"connections":[{"id":8573,"orbit":0},{"id":34612,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":21,"skill":21788,"stats":["12% increased Damage with Bows"]},"21792":{"connections":[{"id":29899,"orbit":2}],"group":1136,"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"]},"21801":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1226,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":1,"orbitIndex":10,"skill":21801,"stats":[]},"21809":{"connectionArt":"CharacterPlanned","connections":[{"id":19162,"orbit":-6}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21861":{"connections":[{"id":65243,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":18,"skill":21861,"stats":["20% increased Presence Area of Effect"]},"21871":{"connections":[{"id":51847,"orbit":0},{"id":37872,"orbit":0},{"id":25213,"orbit":0}],"group":839,"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"]},"21885":{"connections":[{"id":1352,"orbit":0}],"group":258,"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"]},"21945":{"connections":[{"id":61718,"orbit":0},{"id":26572,"orbit":0},{"id":39128,"orbit":0},{"id":54545,"orbit":0}],"group":1450,"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"]},"21982":{"connections":[{"id":47371,"orbit":0}],"group":367,"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"]},"21984":{"connections":[{"id":61403,"orbit":0}],"group":1190,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":4,"skill":21984,"stats":[]},"21985":{"connections":[{"id":48925,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":4,"skill":21985,"stats":["10% increased Skill Effect Duration"]},"22045":{"connections":[{"id":13505,"orbit":3}],"group":578,"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"]},"22049":{"connections":[{"id":60505,"orbit":0}],"group":1059,"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"]},"22057":{"connections":[{"id":30143,"orbit":2},{"id":36808,"orbit":4}],"group":1197,"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"]},"22063":{"connections":[{"id":5797,"orbit":0}],"group":1355,"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"]},"22115":{"connections":[{"id":61263,"orbit":0},{"id":59446,"orbit":0}],"group":1166,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Intelligence","orbit":1,"orbitIndex":10,"skill":22115,"stats":["+8 to Intelligence"]},"22133":{"connectionArt":"CharacterPlanned","connections":[{"id":39857,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22141":{"connections":[{"id":54521,"orbit":0},{"id":51797,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":6,"skill":22141,"stats":["3% of Damage taken Recouped as Life"]},"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":359,"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":[]},"22152":{"connections":[{"id":10382,"orbit":0},{"id":15304,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":10,"skill":22152,"stats":["3% increased Cast Speed"]},"22185":{"connections":[{"id":17796,"orbit":5}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":9,"skill":22185,"stats":["Debuffs on you expire 10% faster"]},"22188":{"connections":[{"id":38763,"orbit":-4},{"id":21274,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":0,"skill":22188,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"22208":{"connections":[{"id":15207,"orbit":0}],"group":1319,"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"]},"22219":{"connections":[{"id":52351,"orbit":-7}],"group":1090,"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"]},"22221":{"connectionArt":"CharacterPlanned","connections":[{"id":57079,"orbit":-7}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22270":{"connections":[{"id":1144,"orbit":0},{"id":12471,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":22270,"stats":["8% increased Accuracy Rating"]},"22271":{"connections":[{"id":15083,"orbit":0}],"group":848,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":22271,"stats":["15% increased chance to Shock"]},"22290":{"connections":[{"id":48821,"orbit":-6},{"id":36302,"orbit":0}],"group":778,"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"]},"22314":{"connections":[{"id":51184,"orbit":0},{"id":51968,"orbit":5}],"group":745,"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"]},"22329":{"connections":[{"id":58526,"orbit":-2}],"group":1261,"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"]},"22331":{"connections":[{"id":8983,"orbit":0},{"id":40200,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Resistances","orbit":1,"orbitIndex":3,"skill":22331,"stats":["Minions have +8% to all Elemental Resistances"]},"22359":{"connections":[{"id":60692,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":22359,"stats":["10% increased Elemental Damage"]},"22368":{"connections":[{"id":63182,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1040,"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"]},"22393":{"connections":[{"id":28458,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":22393,"stats":["Minions deal 10% increased Damage"]},"22419":{"connections":[{"id":18407,"orbit":0},{"id":4739,"orbit":0}],"group":749,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"22439":{"connections":[{"id":5936,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":22439,"stats":["10% increased Elemental Damage"]},"22484":{"connections":[{"id":5398,"orbit":-4}],"group":292,"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"]},"22517":{"connections":[{"id":59644,"orbit":4},{"id":32896,"orbit":-4}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":0,"skill":22517,"stats":["8% chance to Poison on Hit"]},"22532":{"connections":[{"id":60488,"orbit":0}],"group":860,"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"]},"22533":{"connections":[{"id":26663,"orbit":-2},{"id":21274,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":23,"skill":22533,"stats":["5% increased Cooldown Recovery Rate"]},"22538":{"connections":[{"id":64659,"orbit":0}],"group":608,"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"]},"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"]},"22556":{"connections":[{"id":11257,"orbit":0},{"id":35028,"orbit":7}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":15,"skill":22556,"stats":["30% increased Evasion Rating while Surrounded"]},"22558":{"connections":[{"id":55933,"orbit":0},{"id":20547,"orbit":0},{"id":62378,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22565":{"connections":[{"id":26648,"orbit":0}],"group":808,"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"]},"22616":{"connections":[{"id":51052,"orbit":0},{"id":17468,"orbit":0},{"id":48631,"orbit":0},{"id":19122,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22626":{"connections":[{"id":45227,"orbit":0},{"id":48717,"orbit":0}],"group":198,"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"]},"22661":{"ascendancyName":"Ritualist","connections":[{"id":30233,"orbit":8}],"group":1571,"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"]},"22682":{"connections":[],"group":1191,"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"]},"22691":{"connections":[{"id":39037,"orbit":-6},{"id":61027,"orbit":-9}],"group":830,"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"]},"22697":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":2,"orbitIndex":10,"skill":22697,"stats":["+5% to Lightning Resistance"]},"22710":{"connections":[{"id":45111,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":8,"skill":22710,"stats":["20% increased Curse Duration"]},"22713":{"connections":[{"id":19722,"orbit":0},{"id":4959,"orbit":0},{"id":19003,"orbit":0}],"group":1251,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":6,"skill":22713,"stats":["10% increased Cold Damage"]},"22726":{"connections":[],"group":1413,"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"]},"22783":{"connections":[{"id":18160,"orbit":0},{"id":17501,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":10,"skill":22783,"stats":["Minions deal 10% increased Damage"]},"22784":{"connections":[{"id":17057,"orbit":7},{"id":13515,"orbit":0}],"group":699,"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"]},"22795":{"connections":[{"id":28992,"orbit":0},{"id":42781,"orbit":0}],"group":1015,"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"]},"22811":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":3170,"orbit":0}],"group":1387,"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"]},"22817":{"connections":[{"id":55724,"orbit":0},{"id":29065,"orbit":0}],"group":1300,"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"]},"22821":{"connections":[{"id":3823,"orbit":0},{"id":22314,"orbit":0}],"group":745,"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"]},"22851":{"connections":[{"id":50268,"orbit":2147483647}],"group":1171,"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"]},"22864":{"connections":[{"id":57966,"orbit":0}],"group":1038,"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"]},"22873":{"connections":[{"id":7777,"orbit":7},{"id":64318,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":4,"skill":22873,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"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"]},"22927":{"connections":[{"id":20582,"orbit":0}],"group":1410,"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"]},"22928":{"connections":[{"id":27373,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"22949":{"connections":[{"id":35171,"orbit":0}],"group":394,"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"]},"22959":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":960,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":22959,"stats":[]},"22962":{"connections":[{"id":22817,"orbit":0}],"group":1300,"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"]},"22967":{"connections":[{"id":49198,"orbit":-7},{"id":38921,"orbit":0}],"group":313,"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"]},"22972":{"connections":[{"id":43238,"orbit":0},{"id":50879,"orbit":0}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":22972,"stats":["16% increased Hazard Damage"]},"22975":{"connections":[{"id":27439,"orbit":0},{"id":26725,"orbit":0},{"id":51702,"orbit":0}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"22976":{"connections":[{"id":42250,"orbit":0}],"group":891,"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"]},"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"]},"23013":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":42,"skill":23013,"stats":[]},"23036":{"connections":[{"id":3339,"orbit":0},{"id":59208,"orbit":2}],"group":453,"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"]},"23039":{"connections":[{"id":64770,"orbit":-5}],"group":363,"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"]},"23040":{"connections":[{"id":38493,"orbit":4}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":23040,"stats":["15% increased Critical Damage Bonus"]},"23046":{"connections":[{"id":47976,"orbit":5}],"group":1294,"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"]},"23062":{"connections":[{"id":19122,"orbit":0}],"group":440,"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"]},"23078":{"connections":[{"id":47242,"orbit":0}],"group":262,"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"]},"23091":{"connections":[{"id":45885,"orbit":0},{"id":39515,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":23091,"stats":["12% increased Fire Damage"]},"23105":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1447,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":23105,"stats":[]},"23153":{"connections":[{"id":23996,"orbit":0},{"id":39298,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":14,"skill":23153,"stats":["15% increased Ballista damage"]},"23192":{"connections":[],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":42,"skill":23192,"stats":["5% increased Block chance"]},"23195":{"connections":[{"id":55375,"orbit":0}],"group":333,"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"]},"23221":{"connections":[],"group":1293,"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"]},"23227":{"connections":[],"group":613,"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"]},"23244":{"connections":[{"id":21792,"orbit":2},{"id":6912,"orbit":0}],"group":1136,"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"]},"23253":{"connections":[{"id":15625,"orbit":0},{"id":22811,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":6,"skill":23253,"stats":["15% increased Evasion Rating"]},"23259":{"connections":[{"id":22864,"orbit":0}],"group":1038,"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"]},"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":611,"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"]},"23305":{"connections":[{"id":21279,"orbit":-3},{"id":51602,"orbit":0}],"group":1357,"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"]},"23307":{"connections":[{"id":10100,"orbit":0},{"id":59945,"orbit":0},{"id":59886,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"23331":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":3,"skill":23331,"stats":["Damage Penetrates 6% Fire Resistance"]},"23343":{"connections":[{"id":58388,"orbit":3}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":21,"skill":23343,"stats":["10% increased Life Recovery from Flasks"]},"23352":{"ascendancyName":"Lich","connections":[{"id":8611,"orbit":-4}],"group":1173,"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"]},"23360":{"connections":[{"id":53566,"orbit":0}],"group":1104,"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"]},"23362":{"connections":[{"id":32672,"orbit":0},{"id":50403,"orbit":0}],"group":1373,"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"]},"23364":{"connections":[{"id":33781,"orbit":2},{"id":48614,"orbit":2}],"group":541,"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"]},"23373":{"connections":[{"id":23428,"orbit":0},{"id":8493,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":22,"skill":23373,"stats":["12% increased Grenade Damage"]},"23374":{"connections":[{"id":2500,"orbit":0}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":0,"orbitIndex":0,"skill":23374,"stats":["8% chance to Poison on Hit"]},"23382":{"connections":[{"id":59093,"orbit":0},{"id":7960,"orbit":0},{"id":9065,"orbit":0},{"id":54297,"orbit":0},{"id":26863,"orbit":0},{"id":8982,"orbit":0}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"23415":{"ascendancyName":"Invoker","connections":[{"id":8143,"orbit":9}],"group":1505,"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"]},"23416":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"23419":{"connections":[{"id":55930,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":20,"skill":23419,"stats":["15% increased Glory generation"]},"23427":{"connections":[{"id":62914,"orbit":5}],"group":783,"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"]},"23428":{"connections":[{"id":47623,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":18,"skill":23428,"stats":["12% increased Grenade Damage"]},"23436":{"connectionArt":"CharacterPlanned","connections":[{"id":29197,"orbit":-3}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23450":{"connections":[{"id":558,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":6,"skill":23450,"stats":["12% increased Fire Damage"]},"23455":{"connections":[{"id":49740,"orbit":0},{"id":55847,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":23455,"stats":["10% increased Cold Damage"]},"23508":{"ascendancyName":"Deadeye","connections":[],"group":1511,"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"]},"23547":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":23547,"stats":[]},"23570":{"connections":[{"id":41031,"orbit":0}],"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":4,"orbitIndex":18,"skill":23570,"stats":["+5 to any Attribute"]},"23587":{"ascendancyName":"Invoker","connections":[{"id":25434,"orbit":7},{"id":29133,"orbit":0}],"group":1505,"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"]},"23608":{"connections":[{"id":61741,"orbit":2},{"id":24401,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":20,"skill":23608,"stats":["10% increased Magnitude of Poison you inflict"]},"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"]},"23650":{"connections":[{"id":43895,"orbit":3}],"group":588,"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"]},"23667":{"connections":[{"id":25312,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":40,"skill":23667,"stats":["16% increased Totem Life"]},"23702":{"connections":[{"id":55802,"orbit":0},{"id":57196,"orbit":0},{"id":63445,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":10,"skill":23702,"stats":["3% increased Attack Speed"]},"23708":{"connectionArt":"CharacterPlanned","connections":[{"id":3896,"orbit":2147483647}],"group":413,"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"],"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":1173,"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":[]},"23724":{"connections":[{"id":7275,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":7,"orbitIndex":22,"skill":23724,"stats":["10% increased Lightning Damage"]},"23736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1104,"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"]},"23738":{"connections":[{"id":34520,"orbit":0}],"group":970,"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"]},"23764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":958,"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"]},"23786":{"connections":[{"id":33391,"orbit":0}],"group":1128,"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"]},"23797":{"connections":[{"id":31370,"orbit":2147483647}],"group":232,"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"]},"23822":{"connections":[{"id":9652,"orbit":0}],"group":1295,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":0,"skill":23822,"stats":["3% of Damage taken Recouped as Life"]},"23825":{"connections":[{"id":24325,"orbit":7},{"id":11572,"orbit":0}],"group":438,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate","orbit":7,"orbitIndex":15,"skill":23825,"stats":["10% increased Life Regeneration rate"]},"23839":{"connections":[{"id":51006,"orbit":-2}],"group":1288,"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"]},"23861":{"connections":[],"group":443,"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"]},"23879":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":354,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":23879,"stats":[]},"23880":{"ascendancyName":"Infernalist","connections":[{"id":13174,"orbit":3}],"group":759,"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"]},"23888":{"connections":[{"id":7390,"orbit":7},{"id":54099,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":0,"skill":23888,"stats":["12% increased Armour and Evasion Rating"]},"23905":{"connections":[{"id":27875,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":23905,"stats":["15% increased Magnitude of Shock you inflict"]},"23915":{"connections":[{"id":41529,"orbit":-1}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":23915,"stats":["15% increased Critical Damage Bonus"]},"23930":{"connections":[{"id":46024,"orbit":0},{"id":58295,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":40,"skill":23930,"stats":["10% increased Elemental Damage"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23939":{"connections":[{"id":857,"orbit":0}],"group":609,"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"]},"23940":{"connections":[{"id":14342,"orbit":3},{"id":58138,"orbit":0}],"group":116,"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"]},"23960":{"aliasPassiveSocket":"voices_jewel_slot3__","connections":[],"group":671,"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,"skill":23960,"stats":[]},"23961":{"connections":[{"id":8791,"orbit":-2}],"group":1083,"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"]},"23993":{"connections":[{"id":42981,"orbit":0},{"id":52684,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":23993,"stats":["12% increased Physical Damage"]},"23996":{"connections":[{"id":63828,"orbit":0},{"id":57785,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":23996,"stats":["15% increased Ballista damage"]},"24009":{"connections":[{"id":34433,"orbit":-4},{"id":21755,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":27,"skill":24009,"stats":["12% increased Armour and Evasion Rating"]},"24035":{"connections":[{"id":60741,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":18,"skill":24035,"stats":["10% increased Elemental Damage"]},"24039":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"24045":{"connections":[],"group":956,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":9,"skill":24045,"stats":["10% increased Mana Recovery from Flasks"]},"24060":{"connections":[{"id":3091,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":2,"orbitIndex":4,"skill":24060,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"]},"24062":{"connections":[{"id":54351,"orbit":0}],"group":1231,"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"]},"24070":{"connections":[{"id":58397,"orbit":0}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":24070,"stats":["+8 to Dexterity"]},"24087":{"connections":[{"id":13882,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Everlasting Infusions","orbit":7,"orbitIndex":10,"recipe":["Guilt","Suffering","Despair"],"skill":24087,"stats":["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"]},"24120":{"connections":[{"id":10495,"orbit":0}],"group":1297,"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"]},"24129":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":24129,"stats":[]},"24135":{"ascendancyName":"Infernalist","connections":[{"id":34419,"orbit":0}],"group":759,"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"]},"24150":{"connections":[{"id":44369,"orbit":-7}],"group":1226,"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"]},"24165":{"connections":[{"id":8908,"orbit":0},{"id":25557,"orbit":0},{"id":4328,"orbit":-6},{"id":6079,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24178":{"connections":[{"id":32655,"orbit":-9}],"group":1291,"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"]},"24210":{"connections":[{"id":26932,"orbit":-7}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":7,"orbitIndex":0,"skill":24210,"stats":["20% increased Frenzy Charge Duration"]},"24224":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":176,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"name":"Axe Mastery","orbit":0,"orbitIndex":0,"skill":24224,"stats":[]},"24226":{"ascendancyName":"Deadeye","connections":[],"group":1501,"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"]},"24239":{"connections":[{"id":34136,"orbit":0}],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":9,"skill":24239,"stats":["Gain 5 Life per enemy killed"]},"24240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"id":11764,"orbit":-7}],"group":1217,"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"]},"24256":{"connections":[{"id":63541,"orbit":0}],"group":808,"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"]},"24259":{"connections":[{"id":62609,"orbit":0}],"group":322,"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"]},"24269":{"connections":[{"id":1448,"orbit":-4},{"id":42118,"orbit":-5}],"group":1308,"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"]},"24287":{"connections":[{"id":34015,"orbit":0},{"id":14226,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24295":{"ascendancyName":"Deadeye","connections":[{"id":37336,"orbit":2147483647}],"group":1502,"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"]},"24325":{"connections":[{"id":40006,"orbit":7}],"group":438,"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"]},"24338":{"connections":[{"id":48581,"orbit":0}],"group":659,"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"]},"24339":{"connections":[{"id":58295,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":24339,"stats":["10% increased Life Recovery from Flasks"]},"24368":{"connections":[{"id":37302,"orbit":0},{"id":40597,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":0,"skill":24368,"stats":["15% increased Ballista damage"]},"24401":{"connections":[{"id":63759,"orbit":0}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":24401,"stats":["10% increased Poison Duration"]},"24420":{"connections":[{"id":33829,"orbit":0},{"id":9442,"orbit":-2}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":22,"skill":24420,"stats":["10% increased Critical Hit Chance"]},"24430":{"connections":[{"id":3601,"orbit":0},{"id":38707,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":66,"skill":24430,"stats":["10% increased Elemental Damage"]},"24438":{"connections":[{"id":46748,"orbit":0},{"id":17745,"orbit":0}],"group":489,"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"]},"24475":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":59759,"orbit":-9}],"group":1533,"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"]},"24477":{"connections":[{"id":17532,"orbit":0}],"group":570,"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"]},"24481":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":24481,"stats":[]},"24483":{"connections":[{"id":32660,"orbit":0},{"id":62661,"orbit":0}],"group":561,"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"]},"24491":{"connections":[{"id":20140,"orbit":0}],"group":915,"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"]},"24511":{"connections":[{"id":49696,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":6,"skill":24511,"stats":["+3 to all Attributes"]},"24551":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":286,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":24551,"stats":[]},"24570":{"connections":[{"id":28441,"orbit":0}],"group":1243,"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"]},"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"]},"24646":{"connections":[{"id":61409,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":24646,"stats":["+12 to Strength"]},"24647":{"connections":[{"id":5702,"orbit":4},{"id":43691,"orbit":0},{"id":30634,"orbit":4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24655":{"connections":[{"id":7333,"orbit":0}],"group":730,"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"]},"24656":{"connections":[{"id":54152,"orbit":0},{"id":15814,"orbit":0}],"group":1361,"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"]},"24696":{"ascendancyName":"Tactician","connections":[{"id":4086,"orbit":0}],"group":441,"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"]},"24736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":3191,"orbit":3}],"group":590,"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"]},"24748":{"connections":[{"id":4716,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":15,"skill":24748,"stats":["15% increased Evasion Rating"]},"24753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":34747,"orbit":0},{"id":56567,"orbit":0},{"id":151,"orbit":0}],"group":586,"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"]},"24764":{"connections":[{"id":65226,"orbit":0}],"group":442,"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"]},"24766":{"connections":[{"id":11257,"orbit":-3},{"id":31566,"orbit":-7},{"id":51974,"orbit":0}],"group":751,"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"]},"24767":{"connections":[{"id":36474,"orbit":-3}],"group":331,"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"]},"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":1343,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24801":{"connections":[{"id":40736,"orbit":7}],"group":215,"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"]},"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"]},"24812":{"connections":[{"id":64643,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":11,"skill":24812,"stats":["20% increased Power Charge Duration"]},"24813":{"connections":[{"id":20397,"orbit":3}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":14,"skill":24813,"stats":["6% increased Area of Effect for Attacks"]},"24825":{"connections":[{"id":16460,"orbit":-3},{"id":29479,"orbit":-3},{"id":60738,"orbit":-3}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24843":{"connections":[{"id":1680,"orbit":-7},{"id":56860,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Evasion during Parry","orbit":7,"orbitIndex":20,"skill":24843,"stats":["25% increased Evasion Rating while Parrying"]},"24855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":39347,"orbit":0},{"id":48014,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":58,"skill":24855,"stats":[]},"24868":{"ascendancyName":"Pathfinder","connections":[{"id":33736,"orbit":0}],"group":1513,"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"]},"24871":{"connections":[{"id":10602,"orbit":0}],"group":398,"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"]},"24880":{"connections":[{"id":38501,"orbit":-7}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":5,"orbitIndex":36,"skill":24880,"stats":["3% increased Attack Speed"]},"24883":{"connections":[{"id":44573,"orbit":1}],"group":1318,"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"]},"24889":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1339,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":7,"orbitIndex":2,"skill":24889,"stats":[]},"24922":{"connections":[{"id":18923,"orbit":0},{"id":64345,"orbit":0},{"id":17077,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"24929":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":192,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":2,"orbitIndex":19,"skill":24929,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"24948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1385,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":24948,"stats":[]},"24958":{"connections":[{"id":52464,"orbit":-4},{"id":41877,"orbit":6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"24963":{"connections":[{"id":39298,"orbit":0},{"id":19224,"orbit":0}],"group":964,"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"]},"24993":{"connectionArt":"CharacterPlanned","connections":[{"id":54297,"orbit":6}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":539,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":25011,"stats":[]},"25014":{"connections":[{"id":50228,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":6,"skill":25014,"stats":["16% increased Warcry Speed"]},"25026":{"connections":[{"id":3567,"orbit":6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":25026,"stats":["10% increased Mana Regeneration Rate"]},"25029":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Charms Mastery","orbit":5,"orbitIndex":51,"skill":25029,"stats":[]},"25031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":25031,"stats":[]},"25055":{"connections":[{"id":41580,"orbit":3}],"group":1379,"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"]},"25058":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":4681,"orbit":2147483647}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25070":{"connections":[{"id":32903,"orbit":0},{"id":11252,"orbit":0},{"id":57821,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":19,"skill":25070,"stats":["6% increased Area of Effect for Attacks"]},"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"]},"25100":{"connections":[],"flavourText":"The fewer there are, the less you have to share.","group":1065,"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"]},"25101":{"connections":[{"id":22439,"orbit":5},{"id":52199,"orbit":0},{"id":44498,"orbit":-5}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":4,"skill":25101,"stats":["10% increased Exposure Effect"]},"25162":{"connections":[{"id":59785,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":10,"skill":25162,"stats":["6% increased Area of Effect for Attacks"]},"25170":{"connections":[{"id":30820,"orbit":3}],"group":1036,"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"]},"25172":{"ascendancyName":"Witchhunter","connections":[{"id":3704,"orbit":0}],"group":278,"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"]},"25211":{"connections":[{"id":11330,"orbit":0}],"group":608,"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"]},"25213":{"connections":[{"id":19223,"orbit":0}],"group":839,"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"]},"25229":{"connections":[{"id":21390,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":20,"skill":25229,"stats":["20% increased Endurance Charge Duration"]},"25239":{"ascendancyName":"Infernalist","connections":[{"id":63894,"orbit":-3}],"group":759,"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"]},"25281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":10,"skill":25281,"stats":[]},"25300":{"connections":[{"id":61796,"orbit":0}],"group":200,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":0,"orbitIndex":0,"skill":25300,"stats":["Break 20% increased Armour"]},"25303":{"connections":[],"group":572,"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"]},"25304":{"connections":[{"id":61056,"orbit":-2}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":5,"skill":25304,"stats":["Meta Skills gain 8% increased Energy"]},"25312":{"connections":[{"id":24259,"orbit":0},{"id":64405,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":36,"skill":25312,"stats":["15% increased Totem Damage"]},"25315":{"connections":[{"id":19820,"orbit":0}],"group":202,"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"]},"25337":{"connectionArt":"CharacterPlanned","connections":[{"id":34990,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25361":{"connections":[],"group":1382,"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"]},"25362":{"connections":[{"id":23105,"orbit":0}],"group":1446,"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%"]},"25363":{"connections":[{"id":44098,"orbit":0},{"id":1823,"orbit":0},{"id":34531,"orbit":0}],"group":676,"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"]},"25374":{"connections":[{"id":45969,"orbit":6}],"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":6,"orbitIndex":42,"skill":25374,"stats":["+5 to any Attribute"]},"25429":{"connections":[{"id":38103,"orbit":-8},{"id":34084,"orbit":0}],"group":622,"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"]},"25434":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"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"]},"25446":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":403,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":25446,"stats":[]},"25458":{"connections":[{"id":37568,"orbit":3}],"group":1238,"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"]},"25482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":61472,"orbit":0},{"id":51702,"orbit":0},{"id":60620,"orbit":0}],"group":385,"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"]},"25503":{"connections":[{"id":27068,"orbit":0},{"id":45632,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":25503,"stats":["10% increased Mana Regeneration Rate"]},"25513":{"connections":[],"group":754,"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"]},"25520":{"connections":[],"flavourText":"The notes may change, but the song remains the same.","group":1220,"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"]},"25528":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":3,"orbitIndex":15,"skill":25528,"stats":[]},"25557":{"connections":[{"id":29763,"orbit":0},{"id":4059,"orbit":0},{"id":26804,"orbit":0}],"group":1045,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"25565":{"connections":[{"id":722,"orbit":0}],"group":1401,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":2,"skill":25565,"stats":["12% increased Lightning Damage"]},"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":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25586":{"connections":[{"id":38993,"orbit":0}],"group":1461,"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"]},"25591":{"connections":[{"id":25315,"orbit":0},{"id":4527,"orbit":0}],"group":202,"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"]},"25594":{"connections":[{"id":34030,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":7,"orbitIndex":0,"skill":25594,"stats":["Offerings have 15% increased Maximum Life"]},"25618":{"ascendancyName":"Stormweaver","connections":[{"id":38578,"orbit":0}],"group":517,"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"]},"25619":{"connections":[{"id":43562,"orbit":3}],"group":845,"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"]},"25620":{"connections":[{"id":9083,"orbit":0}],"group":1066,"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"]},"25648":{"connections":[{"id":10824,"orbit":-4},{"id":58894,"orbit":5},{"id":45736,"orbit":-7}],"group":179,"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"]},"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":611,"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"]},"25678":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":2147483647}],"group":233,"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"],"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":611,"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"]},"25700":{"connections":[{"id":41096,"orbit":4}],"group":1200,"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"]},"25711":{"connections":[{"id":58038,"orbit":-7}],"group":751,"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"]},"25729":{"connections":[{"id":33093,"orbit":0}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":12,"skill":25729,"stats":["3% increased Cast Speed"]},"25745":{"connections":[{"id":31890,"orbit":4}],"group":632,"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"]},"25753":{"connections":[{"id":63268,"orbit":0},{"id":25990,"orbit":0}],"group":502,"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"]},"25763":{"connections":[{"id":61170,"orbit":7},{"id":62963,"orbit":0}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":25763,"stats":["10% increased Fire Damage"]},"25779":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":41076,"orbit":0}],"group":1533,"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"]},"25781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"25807":{"connections":[{"id":53683,"orbit":0}],"group":901,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":25807,"stats":["15% increased Crossbow Reload Speed"]},"25827":{"connections":[{"id":55241,"orbit":0}],"group":1011,"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"]},"25829":{"connections":[{"id":57791,"orbit":0}],"group":662,"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"]},"25851":{"connections":[{"id":52695,"orbit":-6},{"id":36270,"orbit":5}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":6,"orbitIndex":0,"skill":25851,"stats":["5% chance to Daze on Hit"]},"25857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":4,"orbitIndex":68,"skill":25857,"stats":[]},"25885":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":31116,"orbit":0}],"group":1533,"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"]},"25890":{"connections":[{"id":54378,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":5,"skill":25890,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"25893":{"connections":[{"id":51169,"orbit":-2}],"group":793,"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"]},"25915":{"connections":[{"id":8916,"orbit":2}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":2,"skill":25915,"stats":["12% increased Damage while Shapeshifted"]},"25927":{"connections":[{"id":32847,"orbit":-2}],"group":535,"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"]},"25934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":401,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":7,"orbitIndex":12,"skill":25934,"stats":[]},"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"]},"25971":{"connections":[],"group":1216,"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"]},"25990":{"connections":[{"id":43461,"orbit":0}],"group":502,"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"]},"25992":{"connections":[],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":6,"orbitIndex":7,"skill":25992,"stats":["10% increased Accuracy Rating with Bows"]},"26034":{"connections":[{"id":45631,"orbit":-5}],"group":1316,"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"]},"26061":{"connections":[{"id":4579,"orbit":2}],"group":910,"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"]},"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"]},"26068":{"connections":[{"id":37389,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":4,"skill":26068,"stats":["10% increased Attack Damage"]},"26070":{"connections":[{"id":35977,"orbit":0}],"group":343,"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"]},"26085":{"ascendancyName":"Lich","connections":[{"id":20772,"orbit":-4}],"group":1173,"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"]},"26092":{"connections":[{"id":52392,"orbit":0}],"group":401,"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"]},"26104":{"connections":[{"id":43282,"orbit":5},{"id":55672,"orbit":4},{"id":32186,"orbit":0},{"id":27611,"orbit":0},{"id":12005,"orbit":0}],"group":205,"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"]},"26107":{"connections":[{"id":33713,"orbit":7},{"id":56023,"orbit":0}],"group":1326,"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"]},"26135":{"connections":[{"id":2335,"orbit":0}],"group":1191,"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"]},"26148":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":308,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":26148,"stats":[]},"26176":{"connections":[{"id":43650,"orbit":0}],"group":228,"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"]},"26178":{"aliasPassiveSocket":"voices_jewel_slot2","connections":[],"group":672,"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,"skill":26178,"stats":[]},"26194":{"connections":[{"id":37872,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":0,"skill":26194,"stats":["20% increased Presence Area of Effect"]},"26196":{"connections":[{"id":11741,"orbit":0},{"id":39710,"orbit":0}],"group":263,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26196,"stats":[]},"26211":{"connections":[{"id":24883,"orbit":0}],"group":1318,"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"]},"26214":{"connections":[],"group":1021,"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"]},"26228":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26236":{"connections":[{"id":38069,"orbit":-2}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":20,"skill":26236,"stats":["Meta Skills gain 8% increased Energy"]},"26268":{"connections":[{"id":22710,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":12,"skill":26268,"stats":["20% increased Curse Duration"]},"26282":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"26283":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1537,"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"]},"26291":{"connections":[{"id":48935,"orbit":0}],"group":274,"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"]},"26294":{"ascendancyName":"Spirit Walker","connections":[{"id":41401,"orbit":5}],"group":1542,"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"]},"26300":{"connectionArt":"CharacterPlanned","connections":[{"id":23436,"orbit":-4}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26308":{"connections":[{"id":27017,"orbit":-9}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":10,"skill":26308,"stats":["20% increased Evasion Rating while moving"]},"26319":{"connections":[{"id":30990,"orbit":-7}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":0,"skill":26319,"stats":["10% increased Critical Hit Chance"]},"26324":{"connections":[{"id":46023,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":26324,"stats":["15% increased Armour"]},"26331":{"connections":[{"id":3128,"orbit":0},{"id":12166,"orbit":0}],"group":1253,"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"]},"26339":{"connections":[{"id":64405,"orbit":0},{"id":11014,"orbit":0}],"group":322,"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"]},"26356":{"connections":[{"id":8556,"orbit":0}],"group":684,"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"]},"26363":{"connections":[{"id":49291,"orbit":0},{"id":52803,"orbit":0}],"group":1249,"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"]},"26383":{"ascendancyName":"Blood Mage","connections":[{"id":48551,"orbit":8}],"group":954,"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%"]},"26400":{"connections":[{"id":8904,"orbit":0}],"group":1337,"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"]},"26416":{"connections":[{"id":35792,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":16,"skill":26416,"stats":["15% increased Life Recovery from Flasks"]},"26432":{"connections":[{"id":12890,"orbit":0},{"id":60735,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26437":{"connections":[{"id":51129,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":26437,"stats":["Break 20% increased Armour"]},"26447":{"connections":[{"id":12918,"orbit":0},{"id":49633,"orbit":0}],"group":815,"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"]},"26479":{"connections":[{"id":64324,"orbit":4},{"id":9040,"orbit":0}],"group":250,"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"]},"26490":{"connections":[{"id":12751,"orbit":0}],"group":498,"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"]},"26518":{"connections":[],"group":249,"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"]},"26520":{"connections":[{"id":14340,"orbit":0},{"id":37190,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":11,"skill":26520,"stats":["8% increased amount of Life Leeched"]},"26532":{"connections":[{"id":46023,"orbit":-3},{"id":41657,"orbit":3},{"id":36629,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":6,"skill":26532,"stats":["15% increased Armour"]},"26556":{"connections":[{"id":58692,"orbit":4},{"id":59657,"orbit":-2}],"group":1405,"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"]},"26563":{"connections":[{"id":12778,"orbit":-4},{"id":6161,"orbit":0}],"group":1132,"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"]},"26565":{"connections":[{"id":40024,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":26565,"stats":["10% increased Poison Duration"]},"26568":{"connections":[{"id":59367,"orbit":0},{"id":37258,"orbit":0}],"group":437,"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"]},"26572":{"connections":[{"id":47514,"orbit":0}],"group":1450,"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"]},"26592":{"connections":[{"id":58894,"orbit":-3}],"group":179,"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"]},"26596":{"connections":[{"id":5766,"orbit":5},{"id":51416,"orbit":-5}],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":19,"skill":26596,"stats":["3% increased Cast Speed"]},"26598":{"connections":[{"id":33366,"orbit":3},{"id":19880,"orbit":0},{"id":14658,"orbit":0},{"id":23915,"orbit":0},{"id":52501,"orbit":0}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26614":{"connections":[{"id":44344,"orbit":0},{"id":46275,"orbit":0}],"group":609,"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"]},"26638":{"ascendancyName":"Chronomancer","connections":[],"group":351,"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"]},"26648":{"connections":[{"id":24256,"orbit":0},{"id":52125,"orbit":0}],"group":808,"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"]},"26663":{"connections":[{"id":44765,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":0,"orbitIndex":0,"skill":26663,"stats":["5% increased Cooldown Recovery Rate"]},"26682":{"connections":[{"id":46819,"orbit":0},{"id":56640,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":7,"orbitIndex":6,"skill":26682,"stats":["15% increased Critical Spell Damage Bonus"]},"26697":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"id":59263,"orbit":0},{"id":27290,"orbit":0},{"id":46565,"orbit":0}],"group":551,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"name":"Sword Mastery","orbit":0,"orbitIndex":0,"skill":26697,"stats":[]},"26725":{"connections":[{"id":57703,"orbit":0}],"group":287,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26725,"stats":[]},"26726":{"connections":[{"id":48103,"orbit":0}],"group":1351,"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"]},"26739":{"connections":[{"id":43893,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":26739,"stats":["10% increased Elemental Damage"]},"26762":{"connections":[{"id":35380,"orbit":-2}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":0,"orbitIndex":0,"skill":26762,"stats":["10% increased Withered Magnitude"]},"26772":{"connections":[{"id":24240,"orbit":2},{"id":45774,"orbit":3}],"group":1217,"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"]},"26786":{"connections":[{"id":64352,"orbit":0},{"id":48568,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"26798":{"connections":[{"id":9638,"orbit":-7}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":26798,"stats":["3% increased Skill Speed"]},"26804":{"connections":[{"id":55405,"orbit":0},{"id":59909,"orbit":0}],"group":1066,"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"]},"26830":{"connections":[],"group":990,"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"]},"26863":{"connections":[{"id":25890,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":21,"skill":26863,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"26885":{"connections":[{"id":59775,"orbit":-4}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":60,"skill":26885,"stats":["7% increased Chaos Damage"]},"26895":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":26895,"stats":[]},"26905":{"connections":[{"id":8821,"orbit":0}],"group":870,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":2,"skill":26905,"stats":["12% increased Lightning Damage"]},"26926":{"connections":[{"id":39416,"orbit":0},{"id":45333,"orbit":-7}],"group":701,"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"]},"26931":{"connections":[{"id":48198,"orbit":5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":10,"skill":26931,"stats":["Gain 3 Life per enemy killed"]},"26932":{"connections":[{"id":34543,"orbit":-2}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":6,"skill":26932,"stats":["20% increased Frenzy Charge Duration"]},"26945":{"connections":[],"group":669,"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"]},"26952":{"connections":[{"id":59661,"orbit":0},{"id":31626,"orbit":0}],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":20,"skill":26952,"stats":["20% increased Flammability Magnitude"]},"26969":{"connections":[{"id":16861,"orbit":2}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":4,"orbitIndex":69,"skill":26969,"stats":["10% increased Critical Hit Chance"]},"27009":{"connections":[{"id":30459,"orbit":0}],"group":817,"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"]},"27017":{"connections":[{"id":21349,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":22,"skill":27017,"stats":["20% increased Evasion Rating while moving"]},"27048":{"connections":[{"id":47375,"orbit":8}],"group":1475,"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"]},"27068":{"connections":[{"id":35831,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":14,"skill":27068,"stats":["10% increased Mana Regeneration Rate"]},"27082":{"connections":[{"id":3446,"orbit":0},{"id":24646,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27095":{"connections":[{"id":14890,"orbit":-4},{"id":48658,"orbit":0}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":7,"skill":27095,"stats":["15% increased Freeze Buildup"]},"27096":{"connectionArt":"CharacterPlanned","connections":[{"id":33423,"orbit":2147483647},{"id":13691,"orbit":0}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27108":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":47796,"orbit":0}],"group":691,"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"]},"27176":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1054,"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"]},"27186":{"connections":[{"id":62963,"orbit":0}],"group":682,"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"]},"27216":{"connections":[{"id":30546,"orbit":-7}],"group":205,"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"]},"27234":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":903,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":27234,"stats":[]},"27262":{"connections":[{"id":49110,"orbit":7}],"group":1121,"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"]},"27274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":2,"skill":27274,"stats":[]},"27290":{"connections":[{"id":38564,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Heavy Blade","orbit":0,"orbitIndex":0,"skill":27290,"stats":["25% increased Damage with Swords"]},"27296":{"connections":[{"id":59777,"orbit":0},{"id":11275,"orbit":-9},{"id":18684,"orbit":0},{"id":21670,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27303":{"connections":[{"id":43142,"orbit":0}],"group":337,"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"]},"27307":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":487,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":27307,"stats":[]},"27373":{"connections":[{"id":53405,"orbit":-6},{"id":51369,"orbit":-6}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"27388":{"connections":[{"id":28578,"orbit":0},{"id":24551,"orbit":0}],"group":286,"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"]},"27405":{"connectionArt":"CharacterPlanned","connections":[{"id":30781,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27417":{"connections":[{"id":64295,"orbit":0},{"id":37616,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Destructive Apparatus","orbit":6,"orbitIndex":54,"skill":27417,"stats":["25% increased Trap Damage"]},"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"]},"27422":{"connections":[{"id":2021,"orbit":5}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":7,"orbitIndex":21,"skill":27422,"stats":["10% increased Mana Recovery from Flasks"]},"27434":{"connections":[{"id":15984,"orbit":0}],"group":840,"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"]},"27439":{"connections":[{"id":21982,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27491":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"27492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":827,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":27492,"stats":[]},"27493":{"connections":[{"id":17118,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":24,"skill":27493,"stats":["10% increased Projectile Damage"]},"27501":{"connections":[],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":44,"skill":27501,"stats":["10% increased Life Regeneration rate"]},"27513":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1421,"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"]},"27540":{"connections":[{"id":62973,"orbit":0}],"group":343,"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"]},"27572":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27581":{"connections":[{"id":50510,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":12,"skill":27581,"stats":["5% increased Block chance"]},"27611":{"connections":[{"id":30546,"orbit":7},{"id":28489,"orbit":8}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":7,"orbitIndex":18,"skill":27611,"stats":["12% increased Elemental Damage while Shapeshifted"]},"27626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":15628,"orbit":0}],"group":431,"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"]},"27638":{"connections":[{"id":38010,"orbit":0}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":3,"skill":27638,"stats":["15% increased Glory generation"]},"27658":{"connections":[{"id":13542,"orbit":-3}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":27658,"stats":["3% of Damage taken Recouped as Life"]},"27662":{"connections":[],"group":1011,"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"]},"27667":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]},"27671":{"connections":[{"id":32681,"orbit":2147483647}],"group":1146,"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"]},"27674":{"connections":[{"id":44082,"orbit":0}],"group":487,"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"]},"27686":{"ascendancyName":"Invoker","connections":[{"id":12876,"orbit":0}],"group":1505,"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"]},"27687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":177,"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"]},"27704":{"connections":[],"group":1397,"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"]},"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":1454,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"27726":{"connections":[{"id":7721,"orbit":-4}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":8,"skill":27726,"stats":["15% increased Armour"]},"27733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":44005,"orbit":0},{"id":2999,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":4,"orbitIndex":30,"skill":27733,"stats":[]},"27740":{"connections":[{"id":35792,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":2,"orbitIndex":6,"skill":27740,"stats":["Gain 1 Rage on Melee Hit"]},"27761":{"connections":[{"id":5826,"orbit":0}],"group":1069,"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"]},"27773":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"27779":{"connections":[],"group":803,"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"]},"27785":{"connections":[{"id":63863,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":10,"skill":27785,"stats":["Damage Penetrates 6% Lightning Resistance"]},"27834":{"connections":[{"id":63659,"orbit":0},{"id":34449,"orbit":0}],"group":1418,"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"]},"27853":{"connections":[{"id":52576,"orbit":0},{"id":3365,"orbit":0},{"id":58109,"orbit":0}],"group":860,"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"]},"27859":{"connections":[{"id":38694,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":12,"skill":27859,"stats":["Herald Skills deal 20% increased Damage"]},"27875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":32123,"orbit":0}],"group":1221,"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"]},"27900":{"connections":[{"id":54640,"orbit":5}],"group":420,"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"]},"27910":{"connections":[{"id":64056,"orbit":0},{"id":53938,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":0,"skill":27910,"stats":["10% increased Attack Damage"]},"27950":{"connections":[{"id":26324,"orbit":0},{"id":52462,"orbit":0}],"group":466,"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"]},"27980":{"connections":[{"id":270,"orbit":-2},{"id":28981,"orbit":2}],"group":186,"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"]},"27990":{"ascendancyName":"Chronomancer","connections":[{"id":49049,"orbit":-3}],"group":387,"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"]},"27992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":634,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":27992,"stats":[]},"27999":{"connections":[{"id":45777,"orbit":0}],"group":483,"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"]},"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":417,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28021":{"connections":[{"id":9782,"orbit":0}],"group":1181,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":28021,"stats":["15% increased Critical Damage Bonus"]},"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"]},"28038":{"connections":[{"id":56488,"orbit":0}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":28038,"stats":["15% increased Evasion Rating"]},"28044":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1455,"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"]},"28050":{"connections":[{"id":63888,"orbit":0},{"id":53539,"orbit":0}],"group":1051,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28061":{"connections":[{"id":35878,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":8,"skill":28061,"stats":["12% increased Elemental Damage with Attacks"]},"28086":{"connections":[{"id":57088,"orbit":-6},{"id":144,"orbit":0}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":28086,"stats":["Damage Penetrates 6% Cold Resistance"]},"28092":{"connections":[{"id":17061,"orbit":7}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":7,"orbitIndex":8,"skill":28092,"stats":["Archon recovery period expires 10% faster"]},"28101":{"connections":[{"id":57571,"orbit":0},{"id":43867,"orbit":-7}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":12,"skill":28101,"stats":["Damage Penetrates 6% Fire Resistance"]},"28106":{"connections":[{"id":3775,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":8,"skill":28106,"stats":["15% increased Life Flask Charges gained"]},"28142":{"connections":[{"id":17702,"orbit":0},{"id":44684,"orbit":0},{"id":46961,"orbit":0}],"group":1165,"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"]},"28153":{"ascendancyName":"Chronomancer","connections":[{"id":63002,"orbit":9}],"group":342,"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"]},"28175":{"connections":[{"id":64471,"orbit":0},{"id":21716,"orbit":0},{"id":48026,"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":28175,"stats":["+5 to any Attribute"]},"28199":{"connections":[{"id":46431,"orbit":0}],"group":1263,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Immobilisation Buildup","orbit":0,"orbitIndex":0,"skill":28199,"stats":["20% increased Hazard Immobilisation buildup"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28214":{"connections":[{"id":1973,"orbit":0},{"id":58295,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":4,"skill":28214,"stats":["10% increased Mana Recovery from Flasks"]},"28223":{"connectionArt":"CharacterPlanned","connections":[{"id":6100,"orbit":3}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28229":{"connections":[{"id":50485,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":0,"skill":28229,"stats":["10% increased Area of Effect of Curses"]},"28254":{"ascendancyName":"Spirit Walker","connectionArt":"CharacterPlanned","connections":[],"group":1542,"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"],"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":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":0,"orbitIndex":0,"skill":28258,"stats":["10% increased Effect of your Mark Skills"]},"28267":{"connections":[{"id":2672,"orbit":0},{"id":35085,"orbit":0}],"group":218,"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"]},"28268":{"connections":[{"id":36630,"orbit":0},{"id":20837,"orbit":0}],"group":1042,"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"]},"28304":{"connections":[{"id":37258,"orbit":0},{"id":2491,"orbit":0}],"group":412,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28329":{"connections":[{"id":36723,"orbit":3}],"group":1276,"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"]},"28361":{"connections":[],"group":792,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":16,"skill":28361,"stats":["12% increased Stun Threshold"]},"28370":{"connections":[{"id":7628,"orbit":0},{"id":11916,"orbit":-6},{"id":37450,"orbit":-6}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28371":{"connections":[{"id":60560,"orbit":-3}],"group":1364,"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"]},"28408":{"connections":[{"id":65042,"orbit":0}],"group":180,"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"]},"28414":{"connections":[{"id":47853,"orbit":0}],"group":1428,"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"]},"28431":{"ascendancyName":"Lich","connections":[],"group":1173,"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"]},"28432":{"connections":[{"id":20416,"orbit":0},{"id":23062,"orbit":0}],"group":440,"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"]},"28441":{"connections":[{"id":10011,"orbit":0}],"group":1243,"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"]},"28446":{"connections":[{"id":12430,"orbit":0},{"id":50084,"orbit":0}],"group":650,"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"]},"28458":{"connections":[{"id":38972,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":10,"skill":28458,"stats":["Minions deal 10% increased Damage"]},"28464":{"connections":[{"id":8908,"orbit":0}],"group":1124,"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"]},"28476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":493,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":28476,"stats":[]},"28482":{"connections":[{"id":19846,"orbit":0}],"group":357,"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"]},"28489":{"connectionArt":"CharacterPlanned","connections":[{"id":27216,"orbit":8},{"id":56890,"orbit":0}],"group":205,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28492":{"connections":[{"id":54099,"orbit":0}],"flavourText":"Why should I dodge blows that I do not fear?","group":725,"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"]},"28510":{"connections":[{"id":45969,"orbit":-5},{"id":10247,"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":6,"orbitIndex":56,"skill":28510,"stats":["+5 to any Attribute"]},"28516":{"connections":[{"id":7542,"orbit":2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":8,"skill":28516,"stats":["6% increased Area of Effect"]},"28542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":62785,"orbit":7}],"group":382,"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"]},"28556":{"connections":[],"group":887,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"28564":{"connections":[{"id":8460,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":2,"orbitIndex":8,"skill":28564,"stats":["16% increased Warcry Speed"]},"28573":{"connections":[],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":6,"skill":28573,"stats":["Minions Revive 5% faster"]},"28578":{"connections":[],"group":286,"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"]},"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"]},"28613":{"connections":[{"id":39598,"orbit":0},{"id":30553,"orbit":0}],"group":141,"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"]},"28623":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":28623,"stats":[]},"28625":{"connections":[{"id":32135,"orbit":5},{"id":35848,"orbit":0}],"group":972,"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"]},"28638":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"id":37514,"orbit":0},{"id":2113,"orbit":0}],"group":1464,"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"name":"Quarterstaff Mastery","orbit":0,"orbitIndex":0,"skill":28638,"stats":[]},"28680":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":28680,"stats":[]},"28693":{"connections":[{"id":49280,"orbit":7}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":1,"skill":28693,"stats":["12% increased Armour and Evasion Rating"]},"28718":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":651,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":28718,"stats":[]},"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"]},"28770":{"connectionArt":"CharacterPlanned","connections":[{"id":479,"orbit":-7}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28774":{"connections":[{"id":2999,"orbit":0},{"id":10295,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":26,"skill":28774,"stats":["3% increased Cast Speed"]},"28797":{"connections":[{"id":632,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":65,"skill":28797,"stats":["3% increased Attack Speed with Daggers"]},"28800":{"connections":[{"id":55308,"orbit":0}],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":28800,"stats":["10% increased Projectile Damage"]},"28823":{"connections":[{"id":21111,"orbit":4},{"id":59303,"orbit":5}],"group":1280,"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"]},"28835":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":56847,"orbit":0},{"id":60480,"orbit":0},{"id":8157,"orbit":0}],"group":1455,"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"]},"28839":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":16,"skill":28839,"stats":["3% increased Cast Speed"]},"28859":{"connections":[{"id":45382,"orbit":0}],"group":1429,"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"]},"28860":{"connections":[{"id":56104,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":18,"skill":28860,"stats":["Break 20% increased Armour"]},"28862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":435,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":28862,"stats":[]},"28863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":839,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":28863,"stats":[]},"28892":{"connections":[{"id":13845,"orbit":7},{"id":65042,"orbit":0}],"group":180,"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"]},"28903":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":28903,"stats":[]},"28950":{"connections":[{"id":63469,"orbit":0},{"id":10156,"orbit":0},{"id":19873,"orbit":9},{"id":44948,"orbit":0},{"id":41838,"orbit":-8}],"group":642,"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"]},"28963":{"connections":[{"id":23105,"orbit":0}],"group":1446,"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"]},"28975":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":26905,"orbit":0}],"group":871,"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"]},"28976":{"connections":[{"id":23374,"orbit":0},{"id":29458,"orbit":0}],"group":1481,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":0,"orbitIndex":0,"skill":28976,"stats":["10% increased Magnitude of Poison you inflict"]},"28981":{"connections":[{"id":34871,"orbit":-2}],"group":186,"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"]},"28982":{"connections":[{"id":31295,"orbit":0},{"id":55190,"orbit":0},{"id":32845,"orbit":0},{"id":45226,"orbit":0}],"group":99,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"28992":{"connections":[{"id":62628,"orbit":0},{"id":43923,"orbit":0}],"group":927,"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"]},"29009":{"connections":[{"id":59362,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29041":{"connections":[{"id":31388,"orbit":0},{"id":52298,"orbit":0}],"group":288,"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"]},"29049":{"connections":[{"id":56893,"orbit":3}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":10,"skill":29049,"stats":["10% increased Charm Effect Duration"]},"29065":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":1,"orbitIndex":7,"skill":29065,"stats":[]},"29074":{"ascendancyName":"Pathfinder","connections":[],"group":1513,"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"]},"29098":{"connections":[{"id":43588,"orbit":0},{"id":10727,"orbit":-2}],"group":167,"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"]},"29126":{"connectionArt":"CharacterPlanned","connections":[{"id":32353,"orbit":-7}],"group":336,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29133":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":2}],"group":1505,"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"]},"29148":{"connections":[{"id":34840,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29162":{"ascendancyName":"Tactician","connections":[{"id":15044,"orbit":0}],"group":329,"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"]},"29197":{"connectionArt":"CharacterPlanned","connections":[{"id":11428,"orbit":-7}],"group":244,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29240":{"connections":[{"id":55668,"orbit":0},{"id":10881,"orbit":0},{"id":31977,"orbit":0},{"id":57513,"orbit":0}],"group":1035,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"29246":{"connections":[{"id":22927,"orbit":0},{"id":35043,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":6,"orbitIndex":27,"skill":29246,"stats":["10% increased Parried Debuff Magnitude"]},"29270":{"connections":[{"id":7251,"orbit":-2}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":20,"skill":29270,"stats":["10% increased Attack Damage"]},"29285":{"connections":[{"id":9745,"orbit":2147483647},{"id":38463,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":19,"skill":29285,"stats":["2% increased Movement Speed"]},"29288":{"connections":[{"id":36759,"orbit":0}],"group":1172,"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"]},"29306":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":17668,"orbit":1}],"group":1229,"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"]},"29320":{"connections":[{"id":1680,"orbit":7},{"id":56860,"orbit":0}],"group":1213,"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"]},"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"]},"29328":{"connections":[{"id":43201,"orbit":0}],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":61,"skill":29328,"stats":["10% increased chance to inflict Ailments"]},"29358":{"connections":[{"id":917,"orbit":-7}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":7,"skill":29358,"stats":["15% increased Stun Buildup"]},"29361":{"connections":[],"group":923,"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"]},"29369":{"connections":[{"id":11337,"orbit":5},{"id":41669,"orbit":-4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":4,"orbitIndex":42,"skill":29369,"stats":["15% increased Magnitude of Chill you inflict"]},"29372":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[{"id":7720,"orbit":0},{"id":63268,"orbit":0}],"group":502,"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"]},"29391":{"connections":[{"id":29009,"orbit":-3},{"id":5314,"orbit":3},{"id":50715,"orbit":3},{"id":61354,"orbit":0},{"id":29800,"orbit":-3}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":6,"skill":29391,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"29398":{"ascendancyName":"Stormweaver","connections":[{"id":18849,"orbit":0}],"group":517,"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"]},"29399":{"connections":[{"id":23888,"orbit":7},{"id":51446,"orbit":-7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":20,"skill":29399,"stats":["12% increased Armour and Evasion Rating"]},"29402":{"connections":[{"id":4046,"orbit":0},{"id":54282,"orbit":0},{"id":38270,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":7,"orbitIndex":3,"skill":29402,"stats":["15% increased Electrocute Buildup"]},"29408":{"connections":[{"id":31888,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":8,"skill":29408,"stats":["8% increased Mana Cost Efficiency"]},"29432":{"connections":[{"id":4061,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":48,"skill":29432,"stats":["15% increased maximum Energy Shield"]},"29447":{"connections":[{"id":11786,"orbit":2147483647}],"group":328,"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"]},"29458":{"connections":[],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":14,"skill":29458,"stats":["10% increased Magnitude of Poison you inflict"]},"29479":{"connections":[{"id":50469,"orbit":0}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"29502":{"connections":[{"id":36302,"orbit":4}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":29502,"stats":["3% increased Cast Speed"]},"29514":{"connections":[{"id":39431,"orbit":0}],"group":736,"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"]},"29517":{"connections":[{"id":32701,"orbit":0},{"id":37695,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"29527":{"connections":[{"id":61800,"orbit":0}],"group":1364,"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"]},"29582":{"connections":[{"id":35987,"orbit":0}],"group":967,"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"]},"29611":{"connections":[{"id":41768,"orbit":0},{"id":61393,"orbit":0},{"id":28201,"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":29611,"stats":["+5 to any Attribute"]},"29652":{"connections":[{"id":15180,"orbit":0},{"id":6008,"orbit":0},{"id":32194,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":11,"skill":29652,"stats":["10% increased Spell Damage"]},"29663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connectionArt":"CharacterPlanned","connections":[],"group":298,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Movement Mastery","orbit":2,"orbitIndex":6,"skill":29663,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29695":{"connections":[],"group":811,"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"]},"29762":{"connections":[{"id":8460,"orbit":0},{"id":40328,"orbit":-2}],"group":193,"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"]},"29763":{"connections":[{"id":39423,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":29763,"stats":["Damage Penetrates 6% Lightning Resistance"]},"29788":{"connections":[{"id":46060,"orbit":-2}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":4,"skill":29788,"stats":["8% increased amount of Life Leeched"]},"29800":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"29843":{"connections":[{"id":35987,"orbit":0}],"group":980,"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"]},"29871":{"ascendancyName":"Deadeye","connections":[{"id":24226,"orbit":0}],"group":1504,"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"]},"29881":{"connections":[{"id":25446,"orbit":0}],"group":403,"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"]},"29899":{"connections":[{"id":19001,"orbit":0},{"id":6912,"orbit":0}],"group":1136,"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"]},"29914":{"connections":[{"id":46931,"orbit":0}],"group":453,"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"]},"29930":{"connections":[{"id":16938,"orbit":3},{"id":47088,"orbit":0}],"group":1040,"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"]},"29941":{"connections":[{"id":60829,"orbit":0},{"id":57517,"orbit":0}],"group":1042,"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"]},"29959":{"connections":[{"id":6891,"orbit":3},{"id":60362,"orbit":-3}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":14,"skill":29959,"stats":["15% increased Critical Damage Bonus"]},"29985":{"connectionArt":"CharacterPlanned","connections":[{"id":61113,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29990":{"connections":[{"id":36217,"orbit":0},{"id":47477,"orbit":-9},{"id":30808,"orbit":0}],"group":1438,"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"]},"29993":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":288,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":8,"skill":29993,"stats":[]},"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"]},"30040":{"connections":[{"id":56016,"orbit":0}],"group":990,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":7,"skill":30040,"stats":["Break 20% increased Armour"]},"30047":{"connections":[{"id":21280,"orbit":0},{"id":18451,"orbit":0},{"id":45650,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30061":{"connections":[{"id":31908,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":4,"skill":30061,"stats":["6% increased Curse Magnitudes"]},"30071":{"ascendancyName":"Blood Mage","connections":[{"id":27667,"orbit":-9}],"group":954,"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"]},"30077":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":30077,"stats":[]},"30082":{"connections":[{"id":43155,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":30082,"stats":["15% increased Crossbow Reload Speed"]},"30102":{"connections":[{"id":43944,"orbit":2147483647},{"id":53177,"orbit":0}],"group":1281,"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"]},"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"]},"30117":{"ascendancyName":"Blood Mage","connections":[{"id":26383,"orbit":5},{"id":8415,"orbit":-5}],"group":900,"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"]},"30123":{"connections":[{"id":6923,"orbit":0},{"id":26092,"orbit":0}],"group":401,"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"]},"30132":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":58416,"orbit":2147483647},{"id":49130,"orbit":2147483647}],"group":1312,"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"]},"30136":{"connections":[{"id":22626,"orbit":0}],"group":198,"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"]},"30141":{"connections":[{"id":55190,"orbit":0}],"group":120,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30143":{"connections":[{"id":34201,"orbit":9}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":0,"skill":30143,"stats":["5% increased Block chance"]},"30151":{"ascendancyName":"Tactician","connections":[{"id":32637,"orbit":0}],"group":378,"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"]},"30197":{"connections":[{"id":52415,"orbit":0}],"group":1291,"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"]},"30210":{"connections":[{"id":64650,"orbit":0}],"group":1138,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Evasion Rating","orbit":2,"orbitIndex":6,"skill":30210,"stats":["15% increased Evasion Rating"]},"30219":{"connections":[{"id":45177,"orbit":-2}],"group":589,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":1,"orbitIndex":10,"skill":30219,"stats":["8% increased Accuracy Rating"]},"30233":{"ascendancyName":"Ritualist","connections":[],"group":1570,"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"]},"30252":{"connections":[{"id":20049,"orbit":4},{"id":48135,"orbit":-4}],"group":1017,"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"]},"30258":{"connections":[{"id":40105,"orbit":0}],"group":225,"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"]},"30265":{"ascendancyName":"Disciple of Varashta","connections":[],"group":580,"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"]},"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"]},"30334":{"connections":[{"id":9324,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":0,"skill":30334,"stats":["8% increased Ignite Duration on Enemies"]},"30341":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":1995,"orbit":0},{"id":37946,"orbit":0}],"group":1155,"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"]},"30346":{"connections":[{"id":44871,"orbit":0},{"id":29695,"orbit":-5},{"id":34006,"orbit":6}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":13,"skill":30346,"stats":["+10 to maximum Energy Shield"]},"30371":{"connections":[{"id":27687,"orbit":-4}],"group":177,"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"]},"30372":{"connections":[{"id":42065,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":23,"skill":30372,"stats":["Damage Penetrates 6% Lightning Resistance"]},"30390":{"connections":[{"id":33978,"orbit":3}],"group":456,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":30390,"stats":["5% increased Block chance"]},"30392":{"connections":[{"id":28106,"orbit":0},{"id":41016,"orbit":0}],"group":1148,"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"]},"30393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":58894,"orbit":0},{"id":15825,"orbit":0}],"group":179,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":30393,"stats":[]},"30395":{"connections":[{"id":9221,"orbit":0}],"group":268,"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"]},"30408":{"connections":[{"id":17906,"orbit":0}],"group":1443,"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"]},"30456":{"connections":[{"id":38044,"orbit":-5}],"group":1176,"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"]},"30457":{"connections":[{"id":54416,"orbit":4}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":12,"skill":30457,"stats":["15% increased Armour"]},"30459":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":3,"skill":30459,"stats":[]},"30463":{"connections":[{"id":58971,"orbit":-7},{"id":9968,"orbit":-6}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":3,"skill":30463,"stats":["15% increased Elemental Ailment Threshold"]},"30523":{"connections":[{"id":35492,"orbit":0}],"group":769,"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"]},"30539":{"connections":[{"id":25620,"orbit":0}],"group":1066,"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"]},"30546":{"connections":[{"id":12005,"orbit":0}],"group":205,"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"]},"30553":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":152,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":30553,"stats":[]},"30554":{"connections":[{"id":29611,"orbit":0}],"group":150,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":20,"skill":30554,"stats":["Minions have 10% increased maximum Life"]},"30555":{"connections":[{"id":53960,"orbit":3}],"group":902,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30562":{"connections":[{"id":11032,"orbit":0}],"group":1115,"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"]},"30615":{"connections":[],"group":1408,"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"]},"30634":{"connections":[],"group":1020,"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"]},"30657":{"connections":[{"id":38463,"orbit":0},{"id":6842,"orbit":0},{"id":59064,"orbit":0},{"id":58848,"orbit":0},{"id":32891,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30662":{"connections":[{"id":26291,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":32,"skill":30662,"stats":["12% increased Lightning Damage"]},"30695":{"connections":[{"id":13783,"orbit":0},{"id":19808,"orbit":0},{"id":56472,"orbit":0}],"group":1015,"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"]},"30701":{"connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":8,"skill":30701,"stats":["6% reduced Projectile Speed"]},"30704":{"connections":[{"id":22045,"orbit":0}],"group":578,"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"]},"30720":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"30736":{"connections":[{"id":52180,"orbit":-2}],"group":1472,"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"]},"30748":{"connections":[{"id":21801,"orbit":0}],"group":1226,"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"]},"30780":{"connections":[{"id":17112,"orbit":-2},{"id":5410,"orbit":-2}],"group":122,"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"]},"30781":{"connectionArt":"CharacterPlanned","connections":[{"id":63772,"orbit":2147483647}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"30808":{"connections":[{"id":14267,"orbit":0},{"id":28101,"orbit":-4},{"id":28859,"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":30808,"stats":["+5 to any Attribute"]},"30820":{"connections":[{"id":26786,"orbit":0}],"group":1036,"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"]},"30829":{"connections":[{"id":56999,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":0,"skill":30829,"stats":["8% increased Accuracy Rating"]},"30834":{"connections":[{"id":50216,"orbit":0},{"id":57967,"orbit":0}],"group":610,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":2,"skill":30834,"stats":["10% increased Mana Regeneration Rate"]},"30839":{"connections":[{"id":35671,"orbit":-3}],"group":1303,"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"]},"30871":{"connections":[{"id":12208,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":9,"skill":30871,"stats":["10% increased Life Recovery from Flasks"]},"30896":{"connections":[{"id":49172,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":13,"skill":30896,"stats":["3% increased Skill Speed with Channelling Skills"]},"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"]},"30905":{"connections":[{"id":8697,"orbit":5},{"id":34201,"orbit":6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":21,"skill":30905,"stats":["12% increased Elemental Damage with Attacks"]},"30910":{"connections":[{"id":59647,"orbit":-7}],"group":1083,"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"]},"30959":{"connections":[{"id":31778,"orbit":2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":30959,"stats":["Damage Penetrates 6% Cold Resistance"]},"30973":{"connections":[{"id":49320,"orbit":0}],"group":1444,"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"]},"30979":{"connections":[{"id":46358,"orbit":0},{"id":44733,"orbit":0},{"id":12610,"orbit":0}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"30985":{"connections":[{"id":12324,"orbit":0}],"group":442,"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"]},"30990":{"connections":[{"id":58939,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":16,"skill":30990,"stats":["10% increased Critical Hit Chance"]},"30996":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53762,"orbit":0},{"id":18146,"orbit":0}],"group":513,"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"]},"31010":{"connections":[],"group":205,"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"]},"31017":{"connections":[{"id":26339,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":31017,"stats":["15% increased Totem Damage"]},"31037":{"connections":[{"id":34866,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":22,"skill":31037,"stats":["Remnants you create have 10% increased effect"]},"31039":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":31039,"stats":[]},"31055":{"connections":[{"id":18969,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":2,"orbitIndex":19,"skill":31055,"stats":["3% increased Attack Speed with Bows"]},"31112":{"connections":[],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike","orbit":7,"orbitIndex":2,"skill":31112,"stats":["10% increased Ballista Critical Hit Chance"]},"31116":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"31129":{"connections":[{"id":37971,"orbit":0}],"group":1496,"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"]},"31159":{"connections":[{"id":46017,"orbit":0}],"group":248,"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"]},"31172":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1303,"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"]},"31175":{"connections":[{"id":20119,"orbit":0}],"group":669,"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"]},"31189":{"connections":[{"id":28863,"orbit":0}],"group":839,"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"]},"31223":{"ascendancyName":"Blood Mage","connections":[],"group":976,"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"]},"31238":{"connections":[{"id":48552,"orbit":0},{"id":45918,"orbit":0},{"id":10452,"orbit":0}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"31273":{"connections":[{"id":17372,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":2,"orbitIndex":4,"skill":31273,"stats":["10% increased Melee Damage"]},"31284":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":21380,"orbit":0}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":3,"skill":31284,"stats":[]},"31286":{"connections":[{"id":16140,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical","orbit":3,"orbitIndex":14,"skill":31286,"stats":["10% increased Physical Damage"]},"31290":{"connections":[{"id":32474,"orbit":0},{"id":60332,"orbit":0},{"id":32764,"orbit":0},{"id":37609,"orbit":0}],"group":159,"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"]},"31292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":31292,"stats":[]},"31295":{"connections":[{"id":9352,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":21,"skill":31295,"stats":["6% increased Area of Effect for Attacks"]},"31326":{"connections":[{"id":44092,"orbit":0},{"id":11505,"orbit":0}],"group":602,"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"]},"31345":{"connections":[{"id":55400,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":11,"skill":31345,"stats":["Damage Penetrates 6% Lightning Resistance"]},"31364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1391,"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"]},"31366":{"connections":[{"id":57518,"orbit":4},{"id":3843,"orbit":-4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":5,"skill":31366,"stats":["Parry has 20% increased Stun Buildup"]},"31370":{"connections":[{"id":32448,"orbit":2147483647}],"group":232,"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"]},"31373":{"connections":[{"id":50561,"orbit":0},{"id":47173,"orbit":0}],"group":188,"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"]},"31388":{"connections":[{"id":51394,"orbit":0}],"group":288,"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"]},"31409":{"connections":[{"id":50437,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":3,"skill":31409,"stats":["15% increased Evasion Rating"]},"31419":{"connections":[{"id":35787,"orbit":3},{"id":53405,"orbit":4}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":9,"skill":31419,"stats":["10% increased Skill Effect Duration"]},"31433":{"connections":[{"id":21495,"orbit":-4},{"id":5348,"orbit":0}],"group":1271,"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"]},"31449":{"connections":[{"id":9444,"orbit":0}],"group":1462,"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"]},"31517":{"connections":[{"id":11722,"orbit":0},{"id":46034,"orbit":0}],"group":998,"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"]},"31545":{"connections":[{"id":8171,"orbit":0},{"id":3446,"orbit":0}],"group":215,"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"]},"31554":{"connectionArt":"CharacterPlanned","connections":[{"id":49929,"orbit":0}],"group":137,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31566":{"connections":[{"id":7049,"orbit":0},{"id":54818,"orbit":9}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":23,"skill":31566,"stats":["30% increased Armour while Surrounded"]},"31609":{"connections":[{"id":36163,"orbit":-4}],"group":456,"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"]},"31626":{"connections":[{"id":50516,"orbit":0}],"group":1010,"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"]},"31630":{"connections":[{"id":64474,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":7,"skill":31630,"stats":["6% faster start of Energy Shield Recharge"]},"31644":{"connections":[{"id":14739,"orbit":0},{"id":34058,"orbit":0}],"group":712,"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"]},"31647":{"connections":[{"id":23305,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":12,"skill":31647,"stats":["+8 to Dexterity"]},"31650":{"connections":[{"id":16051,"orbit":0},{"id":31017,"orbit":0}],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":0,"skill":31650,"stats":["15% increased Totem Damage"]},"31673":{"connections":[{"id":48649,"orbit":0}],"group":515,"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"]},"31692":{"connections":[{"id":46197,"orbit":0}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":3,"skill":31692,"stats":["10% increased Critical Hit Chance"]},"31697":{"connections":[{"id":51303,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":4,"skill":31697,"stats":["10% increased Elemental Infusion duration"]},"31724":{"connections":[{"id":2074,"orbit":0}],"group":419,"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"]},"31745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":984,"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"]},"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"]},"31757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connectionArt":"CharacterPlanned","connections":[],"group":137,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":6,"orbitIndex":9,"skill":31757,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31763":{"connections":[{"id":43155,"orbit":0}],"group":919,"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"]},"31765":{"connections":[{"id":59538,"orbit":0},{"id":722,"orbit":0},{"id":41886,"orbit":0},{"id":61421,"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":31765,"stats":["+5 to any Attribute"]},"31773":{"connections":[{"id":55011,"orbit":0}],"group":550,"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"]},"31778":{"connections":[{"id":2344,"orbit":-2}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":31778,"stats":["Damage Penetrates 6% Cold Resistance"]},"31779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":210,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":31779,"stats":[]},"31805":{"connections":[{"id":44461,"orbit":-3}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":15,"skill":31805,"stats":["10% increased Skill Effect Duration"]},"31825":{"connections":[{"id":16142,"orbit":2147483647}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":6,"skill":31825,"stats":["12% increased Attack Cold Damage"]},"31826":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"31848":{"connections":[{"id":40117,"orbit":7}],"group":264,"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"]},"31855":{"connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":7,"skill":31855,"stats":["10% increased Life Recovery from Flasks"]},"31888":{"connections":[{"id":34300,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":4,"skill":31888,"stats":["8% increased Mana Cost Efficiency"]},"31890":{"connections":[{"id":38827,"orbit":7}],"group":632,"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"]},"31898":{"connections":[{"id":3921,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":7,"skill":31898,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"31903":{"connections":[{"id":37612,"orbit":0},{"id":56605,"orbit":0},{"id":38010,"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":0,"orbitIndex":0,"skill":31903,"stats":["+5 to any Attribute"]},"31908":{"connections":[{"id":5594,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":8,"skill":31908,"stats":["6% increased Curse Magnitudes"]},"31918":{"connections":[{"id":4534,"orbit":-3},{"id":60323,"orbit":-9}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":7,"orbitIndex":15,"skill":31918,"stats":["15% chance to Pierce an Enemy"]},"31925":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":38596,"orbit":3}],"group":332,"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"]},"31928":{"connections":[{"id":50574,"orbit":0},{"id":15443,"orbit":0}],"group":1052,"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"]},"31943":{"connections":[{"id":8382,"orbit":0}],"group":733,"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"]},"31950":{"connections":[{"id":58329,"orbit":0},{"id":8569,"orbit":0},{"id":21080,"orbit":0},{"id":7405,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"31955":{"connections":[{"id":37641,"orbit":0}],"group":275,"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"]},"31977":{"connections":[{"id":4828,"orbit":0},{"id":10314,"orbit":6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":5,"orbitIndex":36,"skill":31977,"stats":["10% increased Mana Regeneration Rate"]},"31991":{"connections":[{"id":36070,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":15,"skill":31991,"stats":["6% increased Area of Effect for Attacks"]},"32009":{"connections":[{"id":36814,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":32009,"stats":["20% increased Curse Duration"]},"32016":{"connections":[{"id":5766,"orbit":-6},{"id":49984,"orbit":0}],"group":1231,"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"]},"32040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":32040,"stats":[]},"32054":{"connections":[{"id":62153,"orbit":0}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":15,"skill":32054,"stats":["15% increased Critical Spell Damage Bonus"]},"32071":{"connections":[{"id":15427,"orbit":0},{"id":49111,"orbit":0}],"group":135,"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"]},"32078":{"connections":[{"id":16940,"orbit":0}],"group":403,"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"]},"32096":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1083,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":32096,"stats":[]},"32123":{"connections":[{"id":54678,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":4,"skill":32123,"stats":["15% increased chance to Shock"]},"32128":{"connections":[{"id":18101,"orbit":7},{"id":15801,"orbit":0}],"group":605,"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"]},"32135":{"connections":[{"id":12322,"orbit":5},{"id":16484,"orbit":-9}],"group":972,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":4,"orbitIndex":12,"skill":32135,"stats":["10% increased Flask Charges gained"]},"32148":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Rattling Ball","orbit":2,"orbitIndex":2,"skill":32148,"stats":["25% increased Damage with Flails"]},"32151":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":679,"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"]},"32155":{"connections":[{"id":25700,"orbit":4}],"group":1200,"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"]},"32183":{"connections":[{"id":28371,"orbit":4}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"32185":{"connections":[{"id":17118,"orbit":0}],"group":1019,"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"]},"32186":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":4,"orbitIndex":43,"skill":32186,"stats":["10% increased Accuracy Rating while Shapeshifted"]},"32194":{"connections":[{"id":55933,"orbit":0},{"id":36478,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"32233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":826,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":21,"skill":32233,"stats":[]},"32239":{"connections":[{"id":9009,"orbit":-3}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":1,"skill":32239,"stats":["12% increased Damage with Plant Skills"]},"32241":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":32241,"stats":[]},"32258":{"connections":[{"id":19644,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":8,"skill":32258,"stats":["Minions have 12% increased maximum Life"]},"32271":{"connections":[{"id":54311,"orbit":-2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":15,"skill":32271,"stats":["30% increased Flammability Magnitude"]},"32274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":908,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":32274,"stats":[]},"32278":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":501,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":11,"skill":32278,"stats":[]},"32301":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50277,"orbit":0}],"group":1309,"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"]},"32309":{"connections":[{"id":59070,"orbit":2}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":16,"skill":32309,"stats":["15% increased Archon Buff duration"]},"32319":{"connections":[{"id":33542,"orbit":0}],"group":1492,"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"]},"32349":{"connections":[{"id":3446,"orbit":0}],"flavourText":"The Titans did not vanish from this world. Their might lives on - in you.","group":208,"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"]},"32353":{"connections":[{"id":41180,"orbit":0}],"group":335,"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"]},"32354":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":6626,"orbit":-2}],"group":678,"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"]},"32364":{"connections":[{"id":32858,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":7,"skill":32364,"stats":["10% increased Ignite Magnitude"]},"32399":{"connections":[{"id":46857,"orbit":-7}],"group":1246,"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"]},"32404":{"connections":[{"id":15618,"orbit":6},{"id":5501,"orbit":0},{"id":22290,"orbit":-6}],"group":778,"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"]},"32416":{"connections":[{"id":27726,"orbit":-3}],"group":595,"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"]},"32427":{"connections":[{"id":4456,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":18,"skill":32427,"stats":["Damage Penetrates 6% Cold Resistance"]},"32436":{"connections":[{"id":5332,"orbit":2147483647}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":14,"skill":32436,"stats":["+8 to Intelligence"]},"32438":{"connections":[{"id":55149,"orbit":4}],"group":1277,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":32438,"stats":["11% increased Chaos Damage"]},"32442":{"connections":[{"id":2361,"orbit":0}],"group":1471,"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"]},"32448":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":232,"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"]},"32474":{"connections":[{"id":29611,"orbit":0},{"id":47931,"orbit":0},{"id":55888,"orbit":0},{"id":36025,"orbit":-9},{"id":61942,"orbit":0}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"32507":{"connections":[],"group":683,"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"]},"32509":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32509,"stats":[]},"32523":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":1546,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32523,"stats":[]},"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":[]},"32543":{"connections":[],"group":1433,"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"]},"32545":{"connections":[{"id":61196,"orbit":4}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":2,"skill":32545,"stats":["3% increased Skill Speed"]},"32549":{"connections":[{"id":29098,"orbit":-2},{"id":32474,"orbit":3}],"group":167,"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"]},"32555":{"connections":[{"id":9535,"orbit":2147483647}],"group":964,"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"]},"32559":{"ascendancyName":"Witchhunter","connections":[{"id":46535,"orbit":0}],"group":280,"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"]},"32560":{"ascendancyName":"Tactician","connections":[{"id":16249,"orbit":0}],"group":300,"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"]},"32561":{"connections":[{"id":51825,"orbit":0}],"group":754,"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"]},"32564":{"connections":[{"id":37519,"orbit":0},{"id":39207,"orbit":0},{"id":2864,"orbit":0}],"group":641,"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"]},"32597":{"connections":[{"id":12777,"orbit":0}],"group":674,"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"]},"32599":{"connections":[{"id":28516,"orbit":2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":12,"skill":32599,"stats":["6% increased Area of Effect"]},"32600":{"connections":[{"id":6304,"orbit":0},{"id":20303,"orbit":-7}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":12,"skill":32600,"stats":["10% increased Life Regeneration rate"]},"32637":{"ascendancyName":"Tactician","connections":[],"group":377,"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%"]},"32655":{"connections":[{"id":33514,"orbit":0}],"group":1291,"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"]},"32660":{"connections":[],"group":561,"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"]},"32664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1146,"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"]},"32672":{"connections":[{"id":4031,"orbit":0},{"id":9928,"orbit":0}],"group":1373,"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"]},"32681":{"connections":[{"id":32664,"orbit":0},{"id":38668,"orbit":2147483647}],"group":1146,"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"]},"32683":{"connections":[{"id":53149,"orbit":0},{"id":54413,"orbit":0}],"group":1023,"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"]},"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":759,"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":[]},"32701":{"connections":[{"id":21746,"orbit":0},{"id":26598,"orbit":0},{"id":22115,"orbit":0},{"id":43877,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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":611,"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"]},"32721":{"connections":[{"id":10011,"orbit":0}],"group":1243,"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"]},"32727":{"connections":[],"group":683,"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"]},"32745":{"connections":[{"id":50104,"orbit":0},{"id":61179,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":0,"orbitIndex":0,"skill":32745,"stats":["10% increased Physical Damage"]},"32763":{"connections":[],"group":1473,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":6,"skill":32763,"stats":[]},"32764":{"connections":[{"id":21213,"orbit":0},{"id":37609,"orbit":0}],"group":159,"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"]},"32768":{"connectionArt":"CharacterPlanned","connections":[{"id":8107,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"32771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34817,"orbit":0}],"group":1533,"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"]},"32777":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":320,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":15,"skill":32777,"stats":[]},"32799":{"connections":[{"id":23961,"orbit":0},{"id":32096,"orbit":0}],"group":1083,"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"]},"32813":{"connections":[{"id":59600,"orbit":-7},{"id":35809,"orbit":0}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":12,"skill":32813,"stats":["10% increased Life Recovery from Flasks"]},"32818":{"connections":[{"id":48135,"orbit":4}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":6,"skill":32818,"stats":["10% increased Charm Charges gained"]},"32836":{"connections":[{"id":675,"orbit":3}],"group":132,"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"]},"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"]},"32847":{"connections":[],"group":516,"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"]},"32856":{"ascendancyName":"Chronomancer","connections":[{"id":58747,"orbit":0},{"id":3605,"orbit":9}],"group":405,"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"]},"32858":{"connections":[{"id":1073,"orbit":0},{"id":1205,"orbit":0}],"group":1423,"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"]},"32859":{"connections":[{"id":15114,"orbit":-4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":9,"skill":32859,"stats":["12% increased Damage with Plant Skills"]},"32885":{"connections":[{"id":6689,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":33,"skill":32885,"stats":["5% increased Block chance"]},"32891":{"connections":[{"id":331,"orbit":-2},{"id":22329,"orbit":-7}],"group":1261,"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"]},"32896":{"connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":9,"skill":32896,"stats":["8% chance to Poison on Hit"]},"32903":{"connections":[{"id":25361,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":15,"skill":32903,"stats":["6% increased Area of Effect for Attacks"]},"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"]},"32923":{"connections":[{"id":58215,"orbit":4}],"group":438,"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"]},"32932":{"connections":[{"id":14205,"orbit":0},{"id":63268,"orbit":0}],"group":502,"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"]},"32943":{"connections":[{"id":16938,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1040,"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"]},"32951":{"connections":[{"id":39280,"orbit":0},{"id":41522,"orbit":0}],"group":1071,"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"]},"32952":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":365,"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"]},"32964":{"connections":[{"id":34617,"orbit":5}],"group":363,"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"]},"32976":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":14428,"orbit":0},{"id":38776,"orbit":0},{"id":34202,"orbit":0}],"group":758,"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"]},"33037":{"connections":[{"id":47683,"orbit":0}],"group":828,"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"]},"33045":{"connections":[{"id":62303,"orbit":-4}],"group":295,"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"]},"33053":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":33053,"stats":["10% increased Projectile Damage"]},"33059":{"connections":[{"id":2841,"orbit":0}],"group":939,"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"]},"33080":{"connections":[{"id":43254,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":18,"skill":33080,"stats":["10% increased Parried Debuff Magnitude"]},"33093":{"connections":[{"id":30077,"orbit":0}],"group":1362,"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"]},"33099":{"connections":[{"id":25029,"orbit":0}],"group":1268,"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"]},"33112":{"connections":[{"id":10881,"orbit":-7}],"group":1072,"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"]},"33137":{"connections":[{"id":36894,"orbit":0},{"id":17330,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Damage","orbit":2,"orbitIndex":17,"skill":33137,"stats":["10% increased Magnitude of Bleeding you inflict"]},"33141":{"ascendancyName":"Lich","connections":[{"id":33570,"orbit":4}],"group":1173,"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"]},"33180":{"connections":[{"id":46989,"orbit":0},{"id":60269,"orbit":0}],"group":861,"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"]},"33203":{"connectionArt":"CharacterPlanned","connections":[{"id":55033,"orbit":-8},{"id":38707,"orbit":6}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33209":{"connections":[],"group":375,"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"]},"33216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":729,"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"]},"33221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":26331,"orbit":0},{"id":19722,"orbit":0},{"id":4959,"orbit":0}],"group":1252,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":33221,"stats":[]},"33225":{"connections":[],"group":924,"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"]},"33229":{"connections":[{"id":64996,"orbit":0},{"id":6161,"orbit":0}],"group":1132,"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"]},"33240":{"connections":[{"id":14505,"orbit":0}],"group":474,"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"]},"33242":{"connections":[{"id":15838,"orbit":0}],"group":659,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":5,"orbitIndex":2,"skill":33242,"stats":["10% increased chance to inflict Ailments"]},"33244":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":376,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":33244,"stats":[]},"33245":{"connections":[{"id":9151,"orbit":0},{"id":31918,"orbit":-7},{"id":45331,"orbit":7}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":1,"orbitIndex":3,"skill":33245,"stats":["10% increased Projectile Damage"]},"33254":{"connections":[],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":1,"skill":33254,"stats":["10% increased Spell Damage"]},"33340":{"connections":[{"id":51267,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":15,"skill":33340,"stats":["15% increased Stun Buildup"]},"33345":{"connections":[{"id":61923,"orbit":0},{"id":10131,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":14,"skill":33345,"stats":["10% increased Mana Regeneration Rate"]},"33348":{"connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":7,"skill":33348,"stats":["25% increased Presence Area of Effect"]},"33366":{"connections":[{"id":10944,"orbit":-3}],"group":1215,"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"]},"33369":{"connections":[],"flavourText":"My ancestral pact was sealed. Forevermore, I would gain sustenance\\nonly from the ravaged flesh of my enemies.","group":681,"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"]},"33391":{"connections":[{"id":56330,"orbit":0},{"id":49661,"orbit":0}],"group":1128,"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"]},"33393":{"connections":[{"id":41747,"orbit":-3}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":5,"orbitIndex":15,"skill":33393,"stats":["10% increased Damage with Flails"]},"33397":{"connections":[{"id":39594,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":21,"skill":33397,"stats":["12% increased Fire Damage"]},"33400":{"connections":[],"group":1047,"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"]},"33402":{"connections":[{"id":58125,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":54,"skill":33402,"stats":["5% increased Block chance"]},"33404":{"connections":[{"id":57821,"orbit":0}],"flavourText":"Burn the spirit to vitalise the flesh.","group":1323,"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"]},"33408":{"connections":[],"group":119,"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"]},"33415":{"connections":[{"id":31763,"orbit":0}],"group":919,"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"]},"33423":{"connectionArt":"CharacterPlanned","connections":[{"id":65192,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33445":{"connections":[{"id":30143,"orbit":-2}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":3,"skill":33445,"stats":["5% increased Block chance"]},"33452":{"connections":[{"id":23192,"orbit":-6},{"id":52796,"orbit":9}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":5,"orbitIndex":54,"skill":33452,"stats":["5% increased Block chance"]},"33463":{"connections":[{"id":41877,"orbit":6},{"id":31286,"orbit":0},{"id":45304,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"33514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":33514,"stats":[]},"33518":{"connections":[{"id":63579,"orbit":6}],"group":641,"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"]},"33542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1492,"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"]},"33556":{"connections":[{"id":55473,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":2,"skill":33556,"stats":["8% increased Melee Damage"]},"33562":{"connections":[{"id":27216,"orbit":0},{"id":27611,"orbit":0}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":33562,"stats":["12% increased Damage while Shapeshifted"]},"33570":{"ascendancyName":"Lich","connections":[{"id":36696,"orbit":5}],"group":1173,"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"]},"33585":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"33590":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":131,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33590,"stats":[]},"33596":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":33596,"stats":[]},"33601":{"connections":[{"id":35708,"orbit":-2},{"id":2863,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":20,"skill":33601,"stats":["15% increased Freeze Buildup"]},"33604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":630,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33604,"stats":[]},"33612":{"connections":[{"id":8983,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":1,"orbitIndex":8,"skill":33612,"stats":["Minions deal 12% increased Damage"]},"33618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":39990,"orbit":0}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":10,"skill":33618,"stats":[]},"33639":{"connections":[{"id":8782,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":16,"skill":33639,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"33713":{"connections":[{"id":57462,"orbit":-2}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":2,"orbitIndex":17,"skill":33713,"stats":["8% increased Projectile Speed"]},"33722":{"connections":[{"id":4140,"orbit":0},{"id":55048,"orbit":0},{"id":27980,"orbit":0},{"id":61811,"orbit":0}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"33729":{"connections":[{"id":45712,"orbit":4}],"group":1200,"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"]},"33730":{"connections":[{"id":60809,"orbit":0}],"group":448,"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"]},"33736":{"ascendancyName":"Pathfinder","connections":[{"id":61991,"orbit":0}],"group":1513,"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"]},"33751":{"connections":[{"id":12451,"orbit":7}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":18,"skill":33751,"stats":["5% increased Cooldown Recovery Rate"]},"33781":{"connections":[{"id":65493,"orbit":2}],"group":541,"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"]},"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":[]},"33815":{"connections":[{"id":35644,"orbit":6}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":5,"skill":33815,"stats":["10% increased Poison Duration"]},"33823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":33823,"stats":[]},"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"]},"33829":{"connections":[{"id":18737,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":33829,"stats":["10% increased Critical Hit Chance"]},"33830":{"connections":[{"id":35031,"orbit":-2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":5,"skill":33830,"stats":["10% increased Life Regeneration rate"]},"33838":{"connections":[{"id":46182,"orbit":-4}],"group":1134,"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"]},"33848":{"connections":[{"id":47677,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":4,"orbitIndex":51,"skill":33848,"stats":["8% increased Projectile Speed"]},"33866":{"connections":[{"id":49220,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":33866,"stats":["8% increased Attack Damage"]},"33887":{"connections":[{"id":61432,"orbit":0}],"group":919,"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"]},"33922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":6950,"orbit":0}],"group":886,"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%"]},"33939":{"connections":[{"id":62034,"orbit":0}],"group":144,"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"]},"33946":{"connections":[{"id":34074,"orbit":0},{"id":57227,"orbit":0}],"group":1038,"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"]},"33964":{"connections":[{"id":64295,"orbit":0}],"group":1418,"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"]},"33974":{"connections":[{"id":31189,"orbit":0}],"group":839,"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"]},"33978":{"connections":[{"id":31609,"orbit":7},{"id":62581,"orbit":0}],"group":456,"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"]},"33979":{"connections":[],"flavourText":"To me, brave companions! Feel my radiance flow through you!","group":1126,"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"]},"34006":{"connections":[{"id":15408,"orbit":3}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":19,"skill":34006,"stats":["15% increased maximum Energy Shield"]},"34015":{"connections":[{"id":22927,"orbit":0},{"id":59083,"orbit":0},{"id":14882,"orbit":0},{"id":10472,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34030":{"connections":[{"id":47441,"orbit":0},{"id":13634,"orbit":0},{"id":42614,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":0,"orbitIndex":0,"skill":34030,"stats":["Offerings have 15% increased Maximum Life"]},"34058":{"connections":[{"id":59376,"orbit":-6},{"id":4456,"orbit":0}],"group":700,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34061":{"connections":[{"id":52442,"orbit":5},{"id":38057,"orbit":0}],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":55,"skill":34061,"stats":["12% increased Armour and Evasion Rating"]},"34074":{"connections":[{"id":23259,"orbit":4}],"group":1038,"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"]},"34076":{"connections":[{"id":37244,"orbit":3}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Recovery","orbit":7,"orbitIndex":12,"skill":34076,"stats":["25% increased Block Recovery"]},"34081":{"ascendancyName":"Martial Artist","connections":[{"id":19370,"orbit":9}],"group":1510,"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"]},"34084":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":622,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":4,"skill":34084,"stats":[]},"34090":{"connections":[{"id":14655,"orbit":7},{"id":64870,"orbit":-7}],"group":368,"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"]},"34096":{"connections":[{"id":58096,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":3,"orbitIndex":23,"skill":34096,"stats":["12% increased Spell Damage"]},"34136":{"connections":[{"id":29479,"orbit":-5}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"34143":{"connectionArt":"CharacterPlanned","connections":[{"id":36408,"orbit":0}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34168":{"connections":[{"id":16123,"orbit":0},{"id":4157,"orbit":0},{"id":55088,"orbit":0}],"group":977,"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"]},"34181":{"connectionArt":"CharacterPlanned","connections":[{"id":45422,"orbit":0}],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34187":{"connections":[{"id":7128,"orbit":-5}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":60,"skill":34187,"stats":["12% increased Damage with Plant Skills"]},"34199":{"connections":[],"group":769,"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"]},"34201":{"connections":[{"id":24922,"orbit":0},{"id":46882,"orbit":0},{"id":17316,"orbit":0}],"group":1145,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34202":{"connections":[{"id":49285,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":34202,"stats":["+8 to Strength"]},"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":611,"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"]},"34210":{"connections":[{"id":54811,"orbit":0},{"id":64939,"orbit":0}],"group":400,"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"]},"34233":{"connections":[{"id":16123,"orbit":0},{"id":32545,"orbit":0}],"group":983,"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"]},"34248":{"connections":[{"id":37327,"orbit":7}],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":34248,"stats":["10% increased Mana Regeneration Rate"]},"34290":{"connections":[{"id":57832,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":4,"skill":34290,"stats":["10% increased Ignite Magnitude"]},"34300":{"connections":[{"id":45481,"orbit":0},{"id":13862,"orbit":0}],"group":1110,"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"]},"34305":{"connections":[{"id":31545,"orbit":0}],"group":215,"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"]},"34308":{"connections":[{"id":37414,"orbit":0},{"id":10245,"orbit":0}],"group":458,"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"]},"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"]},"34316":{"connections":[],"group":1462,"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"]},"34317":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":260,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":34317,"stats":[]},"34324":{"connections":[{"id":56838,"orbit":-5},{"id":52445,"orbit":0}],"group":1316,"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"]},"34327":{"connections":[{"id":32078,"orbit":0}],"group":403,"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"]},"34340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":17294,"orbit":0}],"group":691,"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"]},"34367":{"connections":[{"id":48774,"orbit":3}],"group":810,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":34367,"stats":["3% of Damage taken Recouped as Life"]},"34375":{"connections":[{"id":48745,"orbit":-2}],"group":460,"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"]},"34401":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":34401,"stats":[]},"34412":{"connections":[{"id":25915,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":7,"skill":34412,"stats":["12% increased Damage while Shapeshifted"]},"34415":{"connections":[{"id":55422,"orbit":4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":4,"orbitIndex":61,"skill":34415,"stats":["12% increased Physical Damage"]},"34419":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"34425":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":47021,"orbit":2}],"group":1438,"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"]},"34433":{"connections":[{"id":32354,"orbit":7}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":9,"skill":34433,"stats":["12% increased Armour and Evasion Rating"]},"34443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":203,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":34443,"stats":[]},"34449":{"connections":[{"id":37688,"orbit":0}],"group":1418,"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"]},"34473":{"connections":[{"id":42361,"orbit":0}],"group":1266,"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"]},"34478":{"connections":[{"id":43064,"orbit":0},{"id":56701,"orbit":0}],"group":1402,"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"]},"34487":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":526,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":34487,"stats":[]},"34490":{"connectionArt":"CharacterPlanned","connections":[{"id":18972,"orbit":0}],"group":155,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34493":{"connections":[{"id":65328,"orbit":0},{"id":54964,"orbit":0},{"id":49593,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":9,"skill":34493,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"34497":{"connections":[],"flavourText":"Skip a beat, hold your breath. Too slow a poison, only death.","group":1321,"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"]},"34501":{"ascendancyName":"Witchhunter","connections":[{"id":6935,"orbit":0}],"group":277,"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"]},"34520":{"connections":[{"id":55575,"orbit":0},{"id":14548,"orbit":4},{"id":63545,"orbit":-4}],"group":970,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":15,"skill":34520,"stats":["10% increased Physical Damage"]},"34531":{"connections":[{"id":3471,"orbit":0}],"group":676,"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"]},"34541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":63762,"orbit":0}],"group":1370,"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"]},"34543":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1175,"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"]},"34552":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":475,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":34552,"stats":[]},"34553":{"connections":[{"id":1220,"orbit":0}],"group":689,"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"]},"34567":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"34612":{"connections":[{"id":60764,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":16,"skill":34612,"stats":["12% increased Damage with Bows"]},"34617":{"connections":[],"group":363,"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"]},"34621":{"connections":[{"id":38541,"orbit":0}],"group":1182,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":34621,"stats":["15% increased Critical Damage Bonus"]},"34623":{"connections":[{"id":14769,"orbit":0},{"id":14262,"orbit":0}],"group":1436,"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"]},"34626":{"connections":[{"id":61142,"orbit":0},{"id":4527,"orbit":0}],"group":207,"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"]},"34671":{"connections":[{"id":24477,"orbit":0},{"id":48418,"orbit":0}],"group":570,"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"]},"34702":{"connections":[{"id":55664,"orbit":-4},{"id":63246,"orbit":-4},{"id":16568,"orbit":-7}],"group":1339,"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"]},"34717":{"connections":[{"id":24120,"orbit":4}],"group":1297,"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"]},"34747":{"connections":[{"id":6274,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":23,"skill":34747,"stats":["8% increased Accuracy Rating"]},"34769":{"connectionArt":"CharacterPlanned","connections":[{"id":52115,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34782":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":155,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":7,"orbitIndex":0,"skill":34782,"stats":[]},"34785":{"ascendancyName":"Ritualist","connections":[{"id":58574,"orbit":-9},{"id":42017,"orbit":0},{"id":17058,"orbit":9}],"group":1558,"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"]},"34813":{"connections":[{"id":7218,"orbit":0},{"id":62505,"orbit":0},{"id":472,"orbit":0},{"id":2847,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":4,"orbitIndex":60,"skill":34813,"stats":["+3 to all Attributes"]},"34817":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1533,"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"]},"34818":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":1,"skill":34818,"stats":["+5% to Fire Resistance"]},"34840":{"connections":[{"id":1433,"orbit":0},{"id":27674,"orbit":0},{"id":48618,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"34845":{"connections":[{"id":60273,"orbit":0}],"group":1259,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":34845,"stats":["10% increased Hazard Area of Effect"]},"34853":{"connections":[{"id":25458,"orbit":-2},{"id":43044,"orbit":0}],"group":1238,"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"]},"34866":{"connections":[{"id":40985,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":2,"skill":34866,"stats":["Remnants you create have 10% increased effect"]},"34871":{"connections":[{"id":52764,"orbit":2}],"group":186,"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"]},"34882":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":11641,"orbit":2147483647}],"group":428,"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"]},"34892":{"connections":[{"id":12066,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":11,"skill":34892,"stats":["Aura Skills have 5% increased Magnitudes"]},"34898":{"connections":[{"id":38463,"orbit":0}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":5,"orbitIndex":31,"skill":34898,"stats":["Debuffs on you expire 10% faster"]},"34908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Staunch Deflection","orbit":3,"orbitIndex":23,"recipe":["Guilt","Despair","Fear"],"skill":34908,"stats":["Deflected Hits cannot inflict Maim on you","Deflected Hits cannot inflict Bleeding on you"]},"34912":{"connections":[{"id":4664,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":45,"skill":34912,"stats":["10% increased Trap Damage"]},"34927":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":718,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":34927,"stats":[]},"34940":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connectionArt":"CharacterPlanned","connections":[],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34968":{"connections":[{"id":64637,"orbit":0}],"group":1433,"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"]},"34984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":989,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":34984,"stats":[]},"34990":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35011":{"connections":[{"id":10305,"orbit":0}],"group":426,"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"]},"35015":{"connections":[{"id":6655,"orbit":0}],"group":688,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":35015,"stats":["10% increased Magnitude of Bleeding you inflict"]},"35028":{"connections":[{"id":51974,"orbit":0}],"group":751,"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"]},"35031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1479,"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"]},"35033":{"ascendancyName":"Amazon","connections":[{"id":55796,"orbit":0}],"group":1547,"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"]},"35043":{"connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":4,"orbitIndex":36,"skill":35043,"stats":["10% increased Parried Debuff Magnitude"]},"35046":{"connections":[],"group":862,"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"]},"35048":{"connections":[{"id":43650,"orbit":0}],"group":228,"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"]},"35058":{"connections":[{"id":64650,"orbit":0}],"group":1138,"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"]},"35085":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":218,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":35085,"stats":[]},"35095":{"connections":[{"id":41886,"orbit":2}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage","orbit":2,"orbitIndex":20,"skill":35095,"stats":["10% increased Chaos Damage"]},"35118":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":981,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":35118,"stats":[]},"35151":{"connections":[{"id":44453,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":7,"orbitIndex":23,"skill":35151,"stats":["15% increased Stun Threshold"]},"35171":{"connections":[{"id":18846,"orbit":0}],"group":394,"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"]},"35173":{"connections":[{"id":1599,"orbit":0}],"group":1348,"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"]},"35187":{"ascendancyName":"Amazon","connections":[],"group":1532,"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"]},"35223":{"connections":[{"id":55680,"orbit":0},{"id":9227,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":3,"orbitIndex":4,"skill":35223,"stats":["3% increased Attack Speed with Spears"]},"35234":{"connections":[{"id":35660,"orbit":0},{"id":6789,"orbit":0},{"id":56651,"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":14623,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":7,"orbitIndex":19,"skill":35234,"stats":["10% increased Projectile Damage"]},"35265":{"connections":[{"id":31903,"orbit":0},{"id":48589,"orbit":0},{"id":18374,"orbit":0},{"id":6274,"orbit":0}],"group":533,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"35284":{"connections":[{"id":31898,"orbit":-2},{"id":64471,"orbit":-7}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":3,"skill":35284,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"35324":{"connections":[{"id":34927,"orbit":0},{"id":34290,"orbit":4}],"group":718,"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"]},"35369":{"connections":[{"id":1459,"orbit":0}],"group":242,"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"]},"35380":{"connections":[{"id":44373,"orbit":-2}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":2,"orbitIndex":20,"skill":35380,"stats":["10% increased Withered Magnitude"]},"35393":{"connectionArt":"CharacterPlanned","connections":[{"id":23708,"orbit":0}],"group":413,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35404":{"connections":[{"id":43250,"orbit":2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":7,"orbitIndex":2,"skill":35404,"stats":["+5% to Cold Resistance"]},"35408":{"connections":[{"id":24767,"orbit":7},{"id":23382,"orbit":0}],"group":331,"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"]},"35417":{"connections":[{"id":28770,"orbit":3},{"id":23879,"orbit":0}],"group":354,"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"]},"35426":{"connections":[{"id":8406,"orbit":6}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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"]},"35477":{"connections":[{"id":10277,"orbit":0}],"group":1310,"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"]},"35492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":769,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":21,"skill":35492,"stats":[]},"35503":{"connections":[{"id":23764,"orbit":0}],"group":982,"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"]},"35534":{"connections":[{"id":44280,"orbit":-3}],"group":1357,"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"]},"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":[]},"35560":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":577,"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"]},"35564":{"connections":[{"id":18121,"orbit":0},{"id":65310,"orbit":0}],"group":1191,"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"]},"35581":{"connections":[{"id":26895,"orbit":0}],"group":514,"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"]},"35594":{"connections":[],"group":990,"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"]},"35602":{"connections":[],"group":817,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":12,"skill":35602,"stats":["Offerings have 30% reduced Maximum Life"]},"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"]},"35623":{"connections":[{"id":24736,"orbit":0}],"group":590,"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"]},"35644":{"connections":[{"id":45193,"orbit":6},{"id":65009,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":23,"skill":35644,"stats":["10% increased Magnitude of Poison you inflict"]},"35645":{"connections":[],"group":510,"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"]},"35653":{"connections":[{"id":35653,"orbit":0},{"id":65468,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":0,"orbitIndex":0,"skill":35653,"stats":["12% increased Grenade Damage"]},"35660":{"connections":[{"id":18548,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":13,"skill":35660,"stats":["3% increased Attack Speed"]},"35671":{"connections":[{"id":31172,"orbit":3}],"group":1303,"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"]},"35688":{"connections":[{"id":16618,"orbit":0}],"group":795,"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"]},"35689":{"connections":[{"id":34543,"orbit":2}],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":2,"orbitIndex":14,"skill":35689,"stats":["10% increased Damage"]},"35696":{"connections":[{"id":24070,"orbit":0},{"id":64064,"orbit":0},{"id":1020,"orbit":0},{"id":10267,"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":35696,"stats":["+5 to any Attribute"]},"35708":{"connections":[{"id":2863,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":2,"skill":35708,"stats":["12% increased Magnitude of Chill you inflict"]},"35720":{"connectionArt":"CharacterPlanned","connections":[{"id":7258,"orbit":0}],"group":694,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35739":{"connections":[{"id":42410,"orbit":3},{"id":8556,"orbit":0}],"group":684,"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"]},"35743":{"connections":[{"id":60116,"orbit":0}],"group":868,"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"]},"35745":{"connectionArt":"CharacterPlanned","connections":[],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35755":{"connections":[{"id":54058,"orbit":0}],"group":1477,"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"]},"35760":{"connections":[{"id":22359,"orbit":6}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":35760,"stats":["10% increased Elemental Damage"]},"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"]},"35787":{"connections":[{"id":42813,"orbit":7}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":1,"orbitIndex":0,"skill":35787,"stats":["10% increased Skill Effect Duration"]},"35792":{"connections":[],"group":285,"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"]},"35801":{"ascendancyName":"Deadeye","connections":[{"id":23508,"orbit":0}],"group":1512,"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"]},"35809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1206,"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"]},"35831":{"connections":[{"id":904,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":9,"skill":35831,"stats":["10% increased Mana Regeneration Rate"]},"35848":{"connections":[],"group":972,"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"]},"35849":{"connections":[],"group":248,"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"]},"35855":{"connections":[{"id":48583,"orbit":0},{"id":35859,"orbit":0}],"group":896,"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"]},"35859":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":896,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":35859,"stats":[]},"35863":{"connections":[{"id":51732,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":35863,"stats":["3% increased Attack Speed"]},"35876":{"connections":[{"id":53194,"orbit":4},{"id":35977,"orbit":0},{"id":27540,"orbit":0}],"group":343,"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"]},"35878":{"connections":[{"id":50884,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":11,"skill":35878,"stats":["12% increased Elemental Damage with Attacks"]},"35880":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"35896":{"connections":[{"id":55668,"orbit":0},{"id":53266,"orbit":0},{"id":17672,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"35901":{"connections":[{"id":12120,"orbit":-6},{"id":62464,"orbit":6},{"id":60735,"orbit":0},{"id":6951,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"35918":{"connections":[{"id":52038,"orbit":0}],"group":541,"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"]},"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"]},"35921":{"connections":[{"id":5642,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":35921,"stats":["6% increased Area of Effect for Attacks"]},"35966":{"connections":[{"id":44316,"orbit":2147483647}],"group":271,"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"]},"35974":{"connections":[{"id":51105,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":22,"skill":35974,"stats":["16% increased Totem Life"]},"35977":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":35977,"stats":[]},"35980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":89,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":35980,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35985":{"connections":[],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":5,"orbitIndex":18,"skill":35985,"stats":["10% increased Melee Damage"]},"35987":{"connections":[{"id":32274,"orbit":0},{"id":19470,"orbit":0},{"id":55397,"orbit":0}],"group":908,"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"]},"36025":{"connectionArt":"CharacterPlanned","connections":[{"id":44309,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36027":{"connections":[{"id":18073,"orbit":2}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":36027,"stats":["12% increased Attack Damage"]},"36070":{"connections":[{"id":14045,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":45,"skill":36070,"stats":["6% increased Area of Effect for Attacks"]},"36071":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern","connections":[],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"name":"Spear Mastery","orbit":5,"orbitIndex":12,"skill":36071,"stats":[]},"36085":{"connections":[{"id":37548,"orbit":0},{"id":15270,"orbit":0}],"group":1403,"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"]},"36100":{"connections":[{"id":34782,"orbit":0}],"group":157,"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"]},"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":611,"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"]},"36114":{"connections":[{"id":23360,"orbit":0}],"group":1104,"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"]},"36163":{"connections":[{"id":30390,"orbit":-4}],"group":456,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":2,"orbitIndex":9,"skill":36163,"stats":["5% increased Block chance"]},"36169":{"connections":[{"id":29514,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":23,"skill":36169,"stats":["10% increased Grenade Area of Effect"]},"36170":{"connections":[{"id":53853,"orbit":-3},{"id":7628,"orbit":-4}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":13,"skill":36170,"stats":["12% increased Armour and Evasion Rating"]},"36191":{"connections":[{"id":40325,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":21,"skill":36191,"stats":["12% increased Stun Threshold"]},"36197":{"connectionArt":"CharacterPlanned","connections":[{"id":27096,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36217":{"connections":[],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":2,"skill":36217,"stats":["15% increased Volatility Explosion delay"]},"36231":{"connections":[{"id":3336,"orbit":0},{"id":31765,"orbit":0}],"group":1408,"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"]},"36250":{"connections":[{"id":56368,"orbit":-7},{"id":49214,"orbit":3},{"id":55897,"orbit":3}],"group":123,"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"]},"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":360,"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":[]},"36270":{"connections":[{"id":5009,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":3,"orbitIndex":1,"skill":36270,"stats":["5% chance to Daze on Hit"]},"36286":{"connections":[{"id":41130,"orbit":0},{"id":14033,"orbit":0},{"id":34058,"orbit":0}],"group":689,"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"]},"36290":{"connections":[{"id":23046,"orbit":-2}],"group":1294,"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"]},"36293":{"connections":[{"id":27785,"orbit":0},{"id":55708,"orbit":0}],"group":879,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":36293,"stats":["Damage Penetrates 6% Lightning Resistance"]},"36298":{"connections":[{"id":8510,"orbit":3},{"id":40918,"orbit":6}],"group":1116,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect","orbit":0,"orbitIndex":0,"skill":36298,"stats":["10% increased Magnitude of Ailments you inflict"]},"36302":{"connections":[{"id":47307,"orbit":6}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Practiced Signs","orbit":7,"orbitIndex":0,"skill":36302,"stats":["6% increased Cast Speed"]},"36325":{"connections":[{"id":54148,"orbit":-5}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":4,"orbitIndex":71,"skill":36325,"stats":["Damage Penetrates 6% Fire Resistance"]},"36333":{"connections":[{"id":62360,"orbit":0},{"id":49259,"orbit":0}],"group":227,"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"]},"36341":{"connections":[{"id":35118,"orbit":0}],"group":981,"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"]},"36358":{"connections":[{"id":12367,"orbit":0}],"group":711,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":36358,"stats":["7% increased Chaos Damage"]},"36364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1406,"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"]},"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":1565,"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":[]},"36379":{"connections":[{"id":25026,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":58,"skill":36379,"stats":["10% increased Mana Regeneration Rate"]},"36389":{"connections":[{"id":53989,"orbit":8}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":8,"orbitIndex":59,"skill":36389,"stats":["Gain 1 Rage on Melee Hit"]},"36408":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36449":{"connections":[{"id":8115,"orbit":0}],"group":664,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":6,"skill":36449,"stats":["15% increased Pin Buildup"]},"36450":{"connections":[{"id":11838,"orbit":-4}],"group":1072,"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"]},"36474":{"connections":[{"id":31925,"orbit":3}],"group":352,"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"]},"36478":{"connections":[{"id":43014,"orbit":2147483647},{"id":48714,"orbit":2147483647}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":36478,"stats":["10% increased Attack Damage"]},"36479":{"connections":[{"id":12925,"orbit":0}],"group":979,"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"]},"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"]},"36507":{"connections":[{"id":60313,"orbit":0}],"group":711,"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"]},"36522":{"connections":[{"id":3999,"orbit":0},{"id":54099,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":33,"skill":36522,"stats":["6% increased Area of Effect for Attacks"]},"36540":{"connections":[{"id":56988,"orbit":0}],"group":1381,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Resistance","orbit":0,"orbitIndex":0,"skill":36540,"stats":["+5% to Lightning Resistance"]},"36556":{"connections":[{"id":1502,"orbit":0}],"group":269,"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"]},"36564":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"36576":{"connections":[{"id":25055,"orbit":-3},{"id":54984,"orbit":0}],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":14,"skill":36576,"stats":["10% increased Attack Damage"]},"36596":{"connections":[{"id":45013,"orbit":-3},{"id":56118,"orbit":-5}],"group":891,"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"]},"36602":{"connections":[{"id":18465,"orbit":0}],"group":567,"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"]},"36623":{"connections":[{"id":10729,"orbit":0},{"id":31630,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Convalescence","orbit":2,"orbitIndex":3,"recipe":["Disgust","Suffering","Greed"],"skill":36623,"stats":["10% reduced Energy Shield Recharge Rate","20% faster start of Energy Shield Recharge"]},"36629":{"connections":[{"id":44659,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"36630":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[{"id":49473,"orbit":0}],"group":1042,"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"]},"36639":{"connections":[{"id":62677,"orbit":-6},{"id":32009,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":22,"skill":36639,"stats":["20% increased Curse Duration"]},"36643":{"ascendancyName":"Martial Artist","connections":[{"id":1739,"orbit":9}],"group":1510,"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"]},"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"]},"36676":{"ascendancyName":"Pathfinder","connections":[{"id":46454,"orbit":0}],"group":1528,"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"]},"36677":{"connections":[{"id":9240,"orbit":0},{"id":36071,"orbit":0},{"id":9227,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":0,"orbitIndex":0,"skill":36677,"stats":["10% increased Damage with Spears"]},"36696":{"ascendancyName":"Lich","connections":[{"id":28431,"orbit":4}],"group":1173,"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"]},"36709":{"connections":[],"group":655,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":6,"skill":36709,"stats":["12% increased Stun Threshold"]},"36723":{"connections":[{"id":3700,"orbit":0}],"group":1276,"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"]},"36728":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":534,"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"]},"36737":{"connections":[{"id":7542,"orbit":-2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":0,"skill":36737,"stats":["10% increased Area Damage"]},"36746":{"connections":[{"id":40691,"orbit":-3}],"group":793,"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"]},"36759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1184,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":36759,"stats":[]},"36778":{"connections":[{"id":36479,"orbit":0}],"group":979,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":58,"skill":36778,"stats":["15% increased chance to Shock"]},"36782":{"connections":[{"id":1151,"orbit":0}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":12,"skill":36782,"stats":["15% increased Freeze Buildup"]},"36788":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":25781,"orbit":0}],"group":1533,"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"]},"36808":{"connections":[{"id":34076,"orbit":3},{"id":37795,"orbit":0}],"group":1197,"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"]},"36814":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":6,"skill":36814,"stats":["20% increased Curse Duration"]},"36822":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":58591,"orbit":0}],"group":543,"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"]},"36880":{"connections":[{"id":43036,"orbit":3}],"group":431,"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"]},"36891":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56783,"orbit":9}],"group":611,"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"]},"36894":{"connections":[{"id":61938,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":20,"skill":36894,"stats":["5% chance to inflict Bleeding on Hit"]},"36927":{"connections":[{"id":44756,"orbit":5}],"group":1338,"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"]},"36931":{"connections":[],"group":1075,"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"]},"36976":{"connections":[],"group":1338,"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"]},"36994":{"connections":[{"id":27491,"orbit":0}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":12,"skill":36994,"stats":["15% increased maximum Energy Shield"]},"36997":{"connections":[{"id":27761,"orbit":0}],"group":1055,"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"]},"37026":{"connections":[{"id":27513,"orbit":0}],"group":1421,"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"]},"37046":{"ascendancyName":"Ritualist","connections":[],"group":1568,"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"]},"37078":{"ascendancyName":"Witchhunter","connections":[],"group":345,"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"]},"37092":{"connections":[{"id":55817,"orbit":0}],"group":665,"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"]},"37164":{"connections":[{"id":419,"orbit":2147483647}],"group":1171,"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"]},"37187":{"connections":[{"id":14026,"orbit":-4},{"id":63085,"orbit":5}],"group":147,"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"]},"37190":{"connections":[{"id":35855,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":7,"skill":37190,"stats":["8% increased amount of Life Leeched"]},"37220":{"connections":[{"id":17955,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":9,"skill":37220,"stats":["15% increased Evasion Rating"]},"37226":{"connections":[{"id":4015,"orbit":2},{"id":9187,"orbit":-6}],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":4,"skill":37226,"stats":["16% increased Warcry Speed"]},"37242":{"connections":[{"id":16871,"orbit":2},{"id":54031,"orbit":0}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":14,"skill":37242,"stats":["12% increased Stun Threshold"]},"37244":{"connections":[{"id":33445,"orbit":3},{"id":37795,"orbit":0}],"group":1197,"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"]},"37250":{"connections":[{"id":1420,"orbit":0}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":2,"orbitIndex":16,"skill":37250,"stats":["10% increased Attack Area Damage"]},"37258":{"connections":[{"id":31903,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"37260":{"connections":[{"id":30395,"orbit":2}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":13,"skill":37260,"stats":["16% increased Warcry Speed"]},"37266":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":29930,"orbit":0}],"group":1040,"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"]},"37276":{"connections":[{"id":33244,"orbit":0}],"group":376,"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"]},"37279":{"connections":[{"id":41159,"orbit":0}],"group":840,"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"]},"37290":{"connections":[{"id":28892,"orbit":0}],"group":180,"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"]},"37302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"37304":{"connections":[{"id":336,"orbit":4},{"id":61921,"orbit":-4},{"id":64543,"orbit":0}],"group":1305,"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"]},"37327":{"connections":[],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":37327,"stats":["10% increased Mana Regeneration Rate"]},"37336":{"ascendancyName":"Deadeye","connections":[{"id":35801,"orbit":0}],"group":1514,"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"]},"37361":{"connections":[{"id":40043,"orbit":2147483647}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":37361,"stats":["10% increased Magnitude of Bleeding you inflict"]},"37372":{"connections":[{"id":13738,"orbit":0}],"group":993,"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"]},"37389":{"connections":[{"id":37644,"orbit":0},{"id":28061,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":37389,"stats":["10% increased Attack Damage"]},"37397":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":372,"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"]},"37408":{"connections":[{"id":31855,"orbit":7},{"id":46761,"orbit":0}],"group":1082,"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"]},"37414":{"connections":[{"id":65193,"orbit":0}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":37414,"stats":["10% increased Accuracy Rating"]},"37434":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":964,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":10,"skill":37434,"stats":[]},"37450":{"connections":[],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":46,"skill":37450,"stats":["10% increased chance to inflict Ailments"]},"37484":{"connections":[],"flavourText":"The irrepressible spirit of the wilds burns within you, roaring to be let loose.","group":134,"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"]},"37509":{"connections":[{"id":57921,"orbit":-2}],"group":354,"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"]},"37514":{"connections":[{"id":32442,"orbit":0},{"id":64700,"orbit":0}],"group":1462,"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"]},"37519":{"connections":[{"id":17045,"orbit":0}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":7,"orbitIndex":14,"skill":37519,"stats":["2% increased Movement Speed"]},"37523":{"ascendancyName":"Tactician","connections":[{"id":24696,"orbit":0}],"group":430,"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"]},"37532":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":37532,"stats":[]},"37543":{"connections":[{"id":16647,"orbit":0}],"group":545,"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"]},"37548":{"connections":[{"id":37742,"orbit":0},{"id":17589,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":5,"skill":37548,"stats":["10% increased amount of Mana Leeched"]},"37568":{"connections":[{"id":45370,"orbit":0}],"group":1238,"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"]},"37593":{"connections":[],"group":849,"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"]},"37594":{"connections":[{"id":8983,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":5,"orbitIndex":38,"skill":37594,"stats":["Minions deal 12% increased Damage"]},"37604":{"ascendancyName":"Martial Artist","connections":[{"id":51546,"orbit":9}],"group":1510,"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"]},"37608":{"connections":[{"id":53524,"orbit":0},{"id":61042,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":4,"orbitIndex":51,"skill":37608,"stats":["10% increased Physical Damage"]},"37609":{"connections":[{"id":21213,"orbit":0},{"id":60332,"orbit":0}],"group":159,"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"]},"37612":{"connections":[{"id":13279,"orbit":0},{"id":17532,"orbit":0},{"id":60191,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"37616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":5,"orbitIndex":45,"skill":37616,"stats":[]},"37629":{"connections":[{"id":55933,"orbit":0},{"id":41338,"orbit":-7},{"id":8248,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"37641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":273,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":37641,"stats":[]},"37644":{"connections":[{"id":46874,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":0,"skill":37644,"stats":["12% increased Attack Physical Damage"]},"37665":{"connections":[{"id":35739,"orbit":3}],"group":684,"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"]},"37688":{"connections":[{"id":37616,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Devestating Devices","orbit":6,"orbitIndex":36,"skill":37688,"stats":["25% increased Trap Damage"]},"37691":{"connections":[{"id":42750,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":13,"skill":37691,"stats":["10% increased Attack Damage"]},"37694":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37695":{"connections":[{"id":11813,"orbit":-5}],"group":1157,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":37695,"stats":["15% increased Evasion Rating"]},"37742":{"connections":[{"id":15270,"orbit":0},{"id":8246,"orbit":0}],"group":1403,"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"]},"37746":{"connections":[{"id":6544,"orbit":-2}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":19,"skill":37746,"stats":["30% increased Flammability Magnitude"]},"37767":{"connections":[{"id":9020,"orbit":0},{"id":6596,"orbit":0},{"id":63731,"orbit":0}],"group":981,"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"]},"37769":{"ascendancyName":"Spirit Walker","connections":[{"id":62743,"orbit":0}],"group":1542,"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"]},"37778":{"connectionArt":"CharacterPlanned","connections":[{"id":24929,"orbit":0},{"id":13108,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37780":{"connections":[{"id":7888,"orbit":0}],"group":1446,"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"]},"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"]},"37795":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":37795,"stats":[]},"37806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1012,"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"]},"37813":{"connections":[{"id":14724,"orbit":0},{"id":50701,"orbit":0}],"group":1313,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":37813,"stats":["20% increased Shock Duration"]},"37846":{"connections":[],"group":171,"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"]},"37869":{"connections":[{"id":60068,"orbit":-2},{"id":21413,"orbit":0}],"group":180,"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"]},"37872":{"connections":[{"id":28863,"orbit":0}],"group":839,"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"]},"37876":{"connections":[{"id":52615,"orbit":3},{"id":25729,"orbit":-3}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":4,"orbitIndex":45,"skill":37876,"stats":["10% increased Spell Damage"]},"37888":{"connectionArt":"CharacterPlanned","connections":[{"id":29663,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37905":{"connections":[],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":3,"orbitIndex":2,"skill":37905,"stats":["30% increased Flammability Magnitude"]},"37946":{"connections":[],"group":1167,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Stun Buildup","orbit":0,"orbitIndex":0,"skill":37946,"stats":["20% increased Projectile Stun Buildup"]},"37951":{"connections":[{"id":41020,"orbit":0},{"id":9089,"orbit":0}],"group":1358,"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"]},"37956":{"connections":[{"id":35581,"orbit":3}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":37956,"stats":["8% reduced Skill Effect Duration"]},"37963":{"connections":[],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":13,"skill":37963,"stats":["10% increased Damage with Swords"]},"37967":{"connections":[],"group":617,"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"]},"37971":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":37971,"stats":[]},"37972":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":-4},{"id":18280,"orbit":5}],"group":1564,"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"]},"37974":{"connections":[{"id":62230,"orbit":0}],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":68,"skill":37974,"stats":["15% increased maximum Energy Shield"]},"37991":{"connections":[{"id":52254,"orbit":0}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":18,"skill":37991,"stats":["6% increased Curse Magnitudes"]},"38003":{"connections":[{"id":63526,"orbit":4}],"group":792,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":20,"skill":38003,"stats":["12% increased Stun Threshold"]},"38004":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1515,"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"]},"38010":{"connections":[],"group":508,"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"]},"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"]},"38044":{"connections":[{"id":37695,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":38044,"stats":["15% increased Evasion Rating"]},"38053":{"connections":[{"id":28564,"orbit":5},{"id":8460,"orbit":0},{"id":9528,"orbit":-2}],"group":193,"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"]},"38057":{"connections":[],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":58,"skill":38057,"stats":["12% increased Armour and Evasion Rating"]},"38066":{"connections":[{"id":25300,"orbit":0}],"group":209,"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"]},"38068":{"connections":[],"group":739,"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"]},"38069":{"connections":[{"id":338,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":0,"skill":38069,"stats":["Meta Skills gain 8% increased Energy"]},"38103":{"connections":[{"id":6898,"orbit":-8}],"group":622,"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"]},"38105":{"connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":67,"skill":38105,"stats":["15% increased maximum Energy Shield"]},"38111":{"connections":[{"id":32241,"orbit":0}],"group":1214,"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"]},"38124":{"connections":[{"id":51820,"orbit":8}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":26,"skill":38124,"stats":["15% increased Totem Damage"]},"38130":{"connections":[],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":12,"skill":38130,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"38138":{"connections":[{"id":35688,"orbit":0}],"group":795,"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"]},"38143":{"connections":[],"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":2,"orbitIndex":18,"skill":38143,"stats":["+5 to any Attribute"]},"38172":{"connections":[{"id":60568,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":5,"skill":38172,"stats":["20% increased Totem Placement speed"]},"38212":{"connections":[{"id":57683,"orbit":0}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":38212,"stats":["3% of Damage taken Recouped as Life"]},"38215":{"connections":[{"id":61921,"orbit":-3}],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":4,"skill":38215,"stats":["Damage Penetrates 6% Lightning Resistance"]},"38235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":570,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":38235,"stats":[]},"38270":{"connections":[{"id":23724,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":38270,"stats":["10% increased Lightning Damage"]},"38292":{"connections":[{"id":33397,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":15,"skill":38292,"stats":["30% increased Flammability Magnitude"]},"38300":{"connections":[{"id":39716,"orbit":-7},{"id":57373,"orbit":-7}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":38300,"stats":["30% increased Flammability Magnitude"]},"38313":{"connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Speed","orbit":2,"orbitIndex":16,"skill":38313,"stats":["10% increased Projectile Speed"]},"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":[]},"38323":{"connections":[{"id":6015,"orbit":-6},{"id":22928,"orbit":-5}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38329":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1350,"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"]},"38338":{"connections":[{"id":5257,"orbit":-2}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":60,"skill":38338,"stats":["10% increased Elemental Damage"]},"38342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1450,"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"]},"38365":{"connections":[{"id":34626,"orbit":0},{"id":46499,"orbit":0}],"group":207,"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"]},"38368":{"connections":[{"id":35966,"orbit":-2},{"id":4091,"orbit":2}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":38368,"stats":["3% of Damage taken Recouped as Life"]},"38369":{"connections":[{"id":18910,"orbit":0}],"group":1386,"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"]},"38398":{"connections":[{"id":2211,"orbit":7}],"group":555,"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"]},"38420":{"connections":[{"id":37543,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":20,"skill":38420,"stats":["10% increased Mana Regeneration Rate"]},"38430":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[{"id":10499,"orbit":0}],"group":657,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":38430,"stats":[]},"38433":{"connections":[{"id":55375,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":17,"skill":38433,"stats":["Minions have 10% increased maximum Life"]},"38459":{"connections":[{"id":38568,"orbit":0}],"group":1084,"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"]},"38463":{"connections":[{"id":46882,"orbit":0},{"id":21111,"orbit":-6},{"id":43522,"orbit":5},{"id":22329,"orbit":0}],"group":1260,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38474":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connectionArt":"CharacterPlanned","connections":[],"group":530,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleed Mastery","orbit":7,"orbitIndex":13,"skill":38474,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38479":{"connections":[{"id":17553,"orbit":-5}],"group":920,"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"]},"38493":{"connections":[{"id":55621,"orbit":4}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":45,"skill":38493,"stats":["15% increased Critical Damage Bonus"]},"38497":{"connections":[{"id":62803,"orbit":-5}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":19,"skill":38497,"stats":["6% reduced Charm Charges used"]},"38501":{"connections":[{"id":47796,"orbit":-4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":40,"skill":38501,"stats":["3% increased Attack Speed"]},"38532":{"connections":[{"id":31779,"orbit":0}],"group":210,"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"]},"38535":{"connections":[{"id":61063,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"38537":{"connections":[{"id":54983,"orbit":-3},{"id":51583,"orbit":0}],"group":1485,"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"]},"38541":{"connections":[{"id":61601,"orbit":0}],"group":1193,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":38541,"stats":["10% increased Critical Hit Chance"]},"38564":{"connections":[{"id":20091,"orbit":0}],"group":564,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":15,"skill":38564,"stats":["10% increased Damage with Swords"]},"38568":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":1,"orbitIndex":2,"skill":38568,"stats":[]},"38570":{"connections":[{"id":53895,"orbit":2},{"id":27992,"orbit":0}],"group":635,"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"]},"38578":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"38596":{"connections":[{"id":35408,"orbit":-3}],"group":310,"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"]},"38601":{"ascendancyName":"Witchhunter","connections":[{"id":34501,"orbit":0}],"group":277,"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"]},"38614":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":27662,"orbit":0},{"id":44201,"orbit":0}],"group":1011,"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"]},"38628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1484,"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%"]},"38646":{"connections":[{"id":23570,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":38646,"stats":["+20 to Armour"]},"38663":{"connections":[{"id":3516,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Critical Chance","orbit":7,"orbitIndex":6,"skill":38663,"stats":["10% increased Melee Critical Hit Chance"]},"38668":{"connections":[],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion","orbit":7,"orbitIndex":7,"skill":38668,"stats":["15% increased Evasion Rating"]},"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"]},"38676":{"connections":[{"id":27910,"orbit":-8},{"id":56045,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":6,"skill":38676,"stats":["10% increased Attack Damage"]},"38678":{"connections":[{"id":30463,"orbit":-7},{"id":60464,"orbit":-6}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":19,"skill":38678,"stats":["15% increased Elemental Ailment Threshold"]},"38694":{"connections":[{"id":22188,"orbit":-4}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":8,"skill":38694,"stats":["Herald Skills deal 20% increased Damage"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38703":{"connections":[{"id":8249,"orbit":0}],"group":1099,"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"]},"38707":{"connections":[{"id":49734,"orbit":0},{"id":28564,"orbit":0},{"id":11464,"orbit":0},{"id":3723,"orbit":0}],"group":211,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38728":{"connections":[{"id":14539,"orbit":5}],"group":1426,"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"]},"38732":{"connections":[{"id":17107,"orbit":-3}],"group":851,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38763":{"connections":[{"id":27859,"orbit":0}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":16,"skill":38763,"stats":["6% increased Reservation Efficiency of Herald Skills"]},"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"]},"38776":{"connections":[{"id":57816,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":38776,"stats":["+8 to Dexterity"]},"38779":{"connections":[{"id":44605,"orbit":5},{"id":44836,"orbit":0}],"group":788,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":8,"skill":38779,"stats":["12% increased Armour and Evasion Rating"]},"38814":{"connections":[{"id":19288,"orbit":0},{"id":62341,"orbit":0},{"id":11980,"orbit":0}],"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":0,"orbitIndex":0,"skill":38814,"stats":["+5 to any Attribute"]},"38827":{"connections":[{"id":1546,"orbit":7}],"group":632,"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"]},"38835":{"connections":[{"id":4091,"orbit":-7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":7,"orbitIndex":16,"skill":38835,"stats":["8% increased speed of Recoup Effects"]},"38856":{"connections":[{"id":49357,"orbit":0},{"id":2071,"orbit":0},{"id":21081,"orbit":5},{"id":56090,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"38876":{"connections":[{"id":61490,"orbit":0},{"id":31903,"orbit":0}],"group":450,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"38878":{"connections":[{"id":34898,"orbit":-7}],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":4,"orbitIndex":35,"skill":38878,"stats":["Debuffs on you expire 10% faster"]},"38888":{"connections":[{"id":39116,"orbit":0}],"group":893,"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"]},"38895":{"connections":[{"id":8697,"orbit":3},{"id":48660,"orbit":0}],"group":1061,"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"]},"38921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":2,"orbitIndex":1,"skill":38921,"stats":[]},"38923":{"connections":[{"id":61429,"orbit":3},{"id":511,"orbit":-3}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Skill Speed","orbit":7,"orbitIndex":14,"skill":38923,"stats":["3% increased Skill Speed"]},"38944":{"connections":[{"id":43338,"orbit":0},{"id":59538,"orbit":0}],"group":1355,"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"]},"38965":{"connections":[{"id":65226,"orbit":0}],"group":442,"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"]},"38966":{"connections":[{"id":30210,"orbit":0},{"id":35058,"orbit":0},{"id":61976,"orbit":0}],"group":1138,"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"]},"38969":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":50588,"orbit":0}],"group":1154,"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"]},"38972":{"connections":[{"id":34552,"orbit":0},{"id":8357,"orbit":0}],"group":475,"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"]},"38993":{"connections":[{"id":21112,"orbit":0}],"group":1470,"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"]},"39037":{"connections":[{"id":11672,"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":39037,"stats":["+5 to any Attribute"]},"39050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1223,"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"]},"39083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":454,"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"]},"39087":{"aliasPassiveSocket":"voices_jewel_slot4","connections":[],"group":670,"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,"skill":39087,"stats":[]},"39102":{"connectionArt":"CharacterPlanned","connections":[{"id":13228,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":893,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":3,"orbitIndex":14,"skill":39116,"stats":[]},"39128":{"connections":[{"id":47514,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":4,"skill":39128,"stats":["15% increased Magnitude of Daze"]},"39130":{"connections":[{"id":14294,"orbit":-5}],"group":472,"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"]},"39131":{"connections":[{"id":11741,"orbit":0},{"id":55596,"orbit":0}],"group":185,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39190":{"connections":[{"id":8800,"orbit":0}],"group":135,"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"]},"39204":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"39207":{"connections":[{"id":33518,"orbit":0}],"group":641,"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"]},"39228":{"connections":[{"id":62603,"orbit":0},{"id":63021,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":18,"skill":39228,"stats":["Damage Penetrates 6% Fire Resistance"]},"39237":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":39237,"stats":[]},"39241":{"ascendancyName":"Lich","connections":[{"id":58932,"orbit":-4}],"group":1150,"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"]},"39274":{"connections":[{"id":2119,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":6,"skill":39274,"stats":["Leech Life 8% slower"]},"39280":{"connections":[{"id":44669,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":1,"skill":39280,"stats":["10% increased Skill Effect Duration"]},"39292":{"ascendancyName":"Pathfinder","connections":[{"id":40,"orbit":-7}],"group":1531,"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"]},"39298":{"connections":[{"id":38814,"orbit":0},{"id":3995,"orbit":0},{"id":18115,"orbit":0},{"id":1019,"orbit":0}],"group":917,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39307":{"connections":[{"id":37026,"orbit":0}],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":1,"orbitIndex":6,"skill":39307,"stats":["10% increased Physical Damage"]},"39347":{"connections":[],"group":212,"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"]},"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"]},"39369":{"connections":[{"id":2936,"orbit":3},{"id":51583,"orbit":0}],"group":1485,"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"]},"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"]},"39416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":695,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":39416,"stats":[]},"39423":{"connections":[{"id":53207,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":20,"skill":39423,"stats":["Damage Penetrates 6% Lightning Resistance"]},"39431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":39431,"stats":[]},"39448":{"connections":[{"id":11178,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":21,"skill":39448,"stats":["3% increased Attack Speed with Axes"]},"39461":{"connections":[{"id":229,"orbit":0}],"group":639,"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"]},"39470":{"ascendancyName":"Infernalist","connections":[{"id":17754,"orbit":-6}],"group":759,"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"]},"39495":{"connections":[{"id":46386,"orbit":2147483647},{"id":27048,"orbit":9}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39495,"stats":["Companions deal 12% increased Damage"]},"39515":{"connections":[{"id":23450,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":8,"skill":39515,"stats":["12% increased Fire Damage"]},"39517":{"connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":39517,"stats":["5% increased Block chance"]},"39540":{"connections":[{"id":55933,"orbit":0},{"id":50558,"orbit":0}],"group":567,"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"]},"39552":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"39564":{"connections":[{"id":62039,"orbit":0},{"id":38663,"orbit":0},{"id":13279,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":12,"skill":39564,"stats":["10% increased Melee Damage"]},"39567":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":53188,"orbit":0}],"group":1002,"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"]},"39568":{"connections":[],"group":1235,"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"]},"39569":{"connections":[{"id":35901,"orbit":0},{"id":3458,"orbit":-4},{"id":7353,"orbit":3}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":2,"skill":39569,"stats":["15% increased Critical Damage Bonus"]},"39570":{"connections":[{"id":49394,"orbit":6}],"group":1128,"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"]},"39581":{"connections":[{"id":46325,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":8,"skill":39581,"stats":["15% increased Stun Buildup"]},"39594":{"connections":[{"id":51248,"orbit":0},{"id":53294,"orbit":0}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":3,"skill":39594,"stats":["Damage Penetrates 6% Fire Resistance"]},"39595":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"39598":{"connections":[{"id":3949,"orbit":0}],"group":141,"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"]},"39607":{"connections":[{"id":2559,"orbit":-2},{"id":45713,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":12,"skill":39607,"stats":["10% increased Flask Charges gained"]},"39608":{"connections":[{"id":1778,"orbit":-3}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":20,"skill":39608,"stats":["20% increased Hazard Duration"]},"39621":{"connections":[{"id":14176,"orbit":0},{"id":57703,"orbit":0}],"group":321,"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"]},"39640":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"39658":{"connections":[{"id":18831,"orbit":7},{"id":15030,"orbit":-2}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":7,"orbitIndex":1,"skill":39658,"stats":["5% increased Block chance"]},"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"]},"39710":{"connections":[{"id":51821,"orbit":0},{"id":12232,"orbit":0},{"id":33045,"orbit":-4}],"group":256,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39716":{"connections":[{"id":31326,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":12,"skill":39716,"stats":["30% increased Flammability Magnitude"]},"39723":{"ascendancyName":"Deadeye","connections":[{"id":5817,"orbit":0}],"group":1502,"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"]},"39732":{"connections":[{"id":30219,"orbit":-2}],"group":589,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":10,"skill":39732,"stats":["8% increased Accuracy Rating"]},"39752":{"connections":[{"id":5936,"orbit":0},{"id":38068,"orbit":0}],"group":739,"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"]},"39759":{"connections":[{"id":48035,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":10,"skill":39759,"stats":["10% increased Life Regeneration rate"]},"39839":{"connections":[{"id":20205,"orbit":0},{"id":14340,"orbit":0}],"group":939,"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"]},"39857":{"connectionArt":"CharacterPlanned","connections":[{"id":4663,"orbit":0}],"group":388,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39881":{"connections":[{"id":16013,"orbit":0},{"id":35173,"orbit":0}],"group":1353,"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"]},"39884":{"connections":[{"id":40271,"orbit":0}],"group":1005,"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"]},"39886":{"connections":[{"id":56935,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"39887":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"39911":{"connections":[],"group":1382,"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"]},"39935":{"connections":[{"id":44344,"orbit":0}],"flavourText":"I give you everything, my pets. Do not disappoint me.","group":573,"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"]},"39964":{"connections":[{"id":48198,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":4,"skill":39964,"stats":["10% increased Mana Regeneration Rate"]},"39986":{"connections":[{"id":57933,"orbit":0}],"group":1483,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39986,"stats":["Companions deal 12% increased Damage"]},"39987":{"connections":[{"id":18913,"orbit":-3},{"id":47177,"orbit":-5}],"group":950,"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"]},"39990":{"connections":[{"id":13294,"orbit":2},{"id":61974,"orbit":0}],"group":584,"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"]},"40006":{"connections":[{"id":9896,"orbit":-7},{"id":292,"orbit":0}],"group":438,"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"]},"40024":{"connections":[{"id":2091,"orbit":-2}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":4,"skill":40024,"stats":["8% chance to Poison on Hit"]},"40043":{"connections":[{"id":54990,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":0,"skill":40043,"stats":["10% increased Magnitude of Bleeding you inflict"]},"40068":{"connections":[{"id":32683,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":38,"skill":40068,"stats":["15% increased Freeze Buildup"]},"40073":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":951,"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"]},"40105":{"connections":[{"id":20558,"orbit":0}],"group":225,"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"]},"40110":{"connections":[{"id":42347,"orbit":3}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":7,"orbitIndex":8,"skill":40110,"stats":["10% increased Blind Effect"]},"40117":{"connections":[{"id":64023,"orbit":0}],"group":264,"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"]},"40166":{"connections":[{"id":32399,"orbit":-3}],"group":1230,"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"]},"40196":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":40196,"stats":[]},"40200":{"connections":[{"id":33612,"orbit":0},{"id":61842,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":2,"orbitIndex":0,"skill":40200,"stats":["Minions deal 12% increased Damage"]},"40213":{"connections":[{"id":55846,"orbit":0},{"id":24481,"orbit":0}],"group":1060,"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"]},"40244":{"connections":[{"id":43263,"orbit":-3}],"group":1201,"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"]},"40270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1203,"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"]},"40271":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":2,"skill":40271,"stats":[]},"40276":{"connections":[{"id":32745,"orbit":0},{"id":60241,"orbit":0}],"group":490,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":40276,"stats":["5% chance to inflict Bleeding on Hit"]},"40292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":299,"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"]},"40313":{"connections":[{"id":58363,"orbit":2},{"id":56844,"orbit":-2},{"id":3251,"orbit":0}],"group":1102,"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"]},"40325":{"connections":[{"id":7392,"orbit":0},{"id":48505,"orbit":0}],"group":462,"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"]},"40328":{"connections":[{"id":28564,"orbit":-5}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":3,"skill":40328,"stats":["16% increased Warcry Speed"]},"40333":{"connections":[{"id":24178,"orbit":2}],"group":1291,"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"]},"40336":{"connections":[{"id":6655,"orbit":0}],"group":702,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":40336,"stats":["5% chance to inflict Bleeding on Hit"]},"40341":{"connections":[{"id":17340,"orbit":-3},{"id":21274,"orbit":9}],"group":807,"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"]},"40345":{"connections":[{"id":37991,"orbit":0},{"id":50540,"orbit":0}],"group":853,"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"]},"40377":{"connections":[{"id":46318,"orbit":7},{"id":7554,"orbit":-3},{"id":46628,"orbit":0}],"group":363,"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"]},"40395":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":40395,"stats":[]},"40399":{"connections":[{"id":20641,"orbit":0}],"group":1233,"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"]},"40453":{"connections":[{"id":25304,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":9,"skill":40453,"stats":["Meta Skills gain 8% increased Energy"]},"40471":{"connections":[{"id":19027,"orbit":-2},{"id":7847,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":40471,"stats":["+8 to Dexterity"]},"40480":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":1953,"orbit":0}],"group":1186,"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"]},"40511":{"connectionArt":"CharacterPlanned","connections":[{"id":55375,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"40550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":375,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":0,"skill":40550,"stats":[]},"40596":{"connections":[],"group":305,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":36,"skill":40596,"stats":["12% increased Stun Threshold"]},"40597":{"connections":[{"id":53607,"orbit":0},{"id":58817,"orbit":0}],"group":601,"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"]},"40626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1258,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":40626,"stats":[]},"40630":{"connections":[{"id":44527,"orbit":0}],"group":1014,"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"]},"40632":{"connections":[{"id":48889,"orbit":-2}],"group":1174,"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"]},"40687":{"connections":[],"group":1058,"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"]},"40691":{"connections":[{"id":25893,"orbit":7}],"group":793,"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"]},"40719":{"ascendancyName":"Witchhunter","connections":[{"id":17646,"orbit":0}],"group":277,"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"]},"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":517,"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":[]},"40736":{"connections":[{"id":34305,"orbit":0},{"id":15606,"orbit":2}],"group":215,"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"]},"40760":{"connections":[{"id":21779,"orbit":0},{"id":9185,"orbit":0},{"id":47177,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":1,"skill":40760,"stats":["10% increased Critical Hit Chance"]},"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":850,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"40803":{"connections":[{"id":3218,"orbit":0},{"id":44298,"orbit":0}],"group":249,"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"]},"40894":{"connections":[{"id":1218,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":20,"skill":40894,"stats":["Minions have 10% increased maximum Life"]},"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"]},"40918":{"connections":[{"id":1773,"orbit":-4}],"group":1112,"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"]},"40929":{"connections":[{"id":43633,"orbit":-7}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":21,"skill":40929,"stats":["15% increased Archon Buff duration"]},"40975":{"connections":[{"id":24368,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":40975,"stats":["15% increased Ballista damage"]},"40985":{"connections":[{"id":62679,"orbit":0}],"group":829,"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"]},"40990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1395,"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"]},"41008":{"ascendancyName":"Amazon","connections":[],"group":1534,"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"]},"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"]},"41016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":41016,"stats":[]},"41017":{"connections":[{"id":14262,"orbit":0},{"id":1801,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41020":{"connections":[{"id":3994,"orbit":0}],"group":1358,"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"]},"41029":{"connections":[{"id":25827,"orbit":0},{"id":44563,"orbit":-4},{"id":25557,"orbit":0},{"id":22219,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41031":{"connections":[{"id":54232,"orbit":0}],"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":4,"orbitIndex":27,"skill":41031,"stats":["+5 to any Attribute"]},"41033":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":55872,"orbit":0}],"group":1095,"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"]},"41044":{"connections":[{"id":47591,"orbit":-7}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":7,"orbitIndex":10,"skill":41044,"stats":["3% of Damage taken Recouped as Mana"]},"41062":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":4,"orbitIndex":48,"skill":41062,"stats":[]},"41076":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":32771,"orbit":0}],"group":1533,"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"]},"41085":{"ascendancyName":"Spirit Walker","connections":[{"id":4367,"orbit":0},{"id":46070,"orbit":0}],"group":1542,"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"]},"41096":{"connections":[{"id":35901,"orbit":0},{"id":31345,"orbit":5}],"group":1200,"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"]},"41105":{"connections":[{"id":38835,"orbit":0},{"id":54288,"orbit":7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":12,"skill":41105,"stats":["3% of Damage taken Recouped as Life"]},"41126":{"connections":[{"id":1170,"orbit":0},{"id":9918,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":4,"skill":41126,"stats":["10% increased Attack Area Damage"]},"41129":{"connections":[{"id":24338,"orbit":0}],"group":659,"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"]},"41130":{"connections":[],"group":689,"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"]},"41147":{"connections":[{"id":23797,"orbit":-6}],"group":232,"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"]},"41154":{"connections":[{"id":33601,"orbit":0}],"group":540,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":14,"skill":41154,"stats":["20% increased Freeze Buildup"]},"41159":{"connections":[{"id":27434,"orbit":0}],"group":840,"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"]},"41163":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":41163,"stats":[]},"41171":{"connections":[{"id":36341,"orbit":0}],"group":981,"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"]},"41180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":335,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":41180,"stats":[]},"41186":{"connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":5,"orbitIndex":0,"skill":41186,"stats":["20% increased Totem Placement speed"]},"41210":{"connections":[{"id":1477,"orbit":0},{"id":43578,"orbit":0}],"group":800,"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"]},"41225":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":41225,"stats":[]},"41298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41298,"stats":[]},"41338":{"connections":[{"id":31673,"orbit":0}],"group":515,"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"]},"41363":{"connections":[{"id":62518,"orbit":-5}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Lightning Resistance","orbit":4,"orbitIndex":9,"skill":41363,"stats":["+5% to Lightning Resistance"]},"41372":{"connections":[{"id":48030,"orbit":0}],"group":881,"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"]},"41384":{"connections":[{"id":51672,"orbit":0}],"group":275,"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"]},"41394":{"connections":[{"id":10841,"orbit":0}],"group":1102,"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"]},"41401":{"ascendancyName":"Spirit Walker","connections":[{"id":62702,"orbit":0}],"group":1542,"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"]},"41414":{"connections":[{"id":4547,"orbit":-7}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Cold Resistance","orbit":7,"orbitIndex":23,"skill":41414,"stats":["+5% to Cold Resistance"]},"41415":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":588,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":41415,"stats":[]},"41442":{"connections":[{"id":58088,"orbit":5}],"group":250,"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"]},"41447":{"connections":[],"group":1010,"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"]},"41493":{"connections":[{"id":50253,"orbit":9}],"group":334,"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"]},"41497":{"connections":[{"id":21164,"orbit":0}],"group":150,"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"]},"41511":{"connections":[{"id":35560,"orbit":0}],"group":552,"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"]},"41512":{"connections":[],"group":884,"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"]},"41522":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":41522,"stats":[]},"41529":{"connections":[{"id":21380,"orbit":-2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":5,"skill":41529,"stats":["15% increased Critical Damage Bonus"]},"41538":{"connections":[{"id":9112,"orbit":3},{"id":30047,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":41538,"stats":["15% increased Elemental Ailment Threshold"]},"41573":{"connections":[{"id":24655,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":10,"skill":41573,"stats":["Damage Penetrates 6% Fire Resistance"]},"41580":{"connections":[{"id":13799,"orbit":3},{"id":41298,"orbit":0}],"group":1379,"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"]},"41609":{"connections":[],"group":205,"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"]},"41615":{"connections":[{"id":10534,"orbit":4},{"id":22616,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":10,"skill":41615,"stats":["20% increased Totem Placement speed"]},"41619":{"ascendancyName":"Pathfinder","connections":[],"group":1523,"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"]},"41620":{"connections":[{"id":23879,"orbit":0}],"group":354,"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"]},"41645":{"connections":[{"id":6490,"orbit":0},{"id":10382,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":20,"skill":41645,"stats":["10% increased Physical Damage"]},"41646":{"connections":[{"id":48670,"orbit":0},{"id":14091,"orbit":0},{"id":17867,"orbit":0}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41651":{"connections":[{"id":43791,"orbit":0},{"id":53320,"orbit":-5}],"group":667,"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"]},"41654":{"connections":[{"id":41033,"orbit":2147483647}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":5,"skill":41654,"stats":["Offerings have 15% increased Maximum Life"]},"41657":{"connections":[],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":10,"skill":41657,"stats":["15% increased Armour"]},"41665":{"connections":[{"id":50562,"orbit":6}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":2,"skill":41665,"stats":["15% increased Critical Damage Bonus"]},"41669":{"connections":[],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":12,"skill":41669,"stats":["12% increased Cold Damage"]},"41701":{"connections":[{"id":11741,"orbit":0},{"id":11027,"orbit":0}],"group":223,"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"]},"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":1549,"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":[]},"41739":{"connections":[{"id":35265,"orbit":0}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":2,"skill":41739,"stats":["15% increased Stun Buildup"]},"41747":{"connections":[{"id":61847,"orbit":3}],"group":175,"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"]},"41751":{"ascendancyName":"Martial Artist","connections":[{"id":65228,"orbit":3}],"group":1510,"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"]},"41753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1440,"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"]},"41768":{"connections":[{"id":28982,"orbit":0},{"id":53123,"orbit":0},{"id":46399,"orbit":0},{"id":37484,"orbit":0}],"group":115,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41770":{"connections":[{"id":33080,"orbit":0},{"id":9441,"orbit":0},{"id":16484,"orbit":0}],"group":1047,"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"]},"41811":{"connections":[{"id":35173,"orbit":0}],"group":1348,"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"]},"41821":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":214,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41821,"stats":[]},"41838":{"connections":[{"id":25429,"orbit":-8}],"group":622,"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"]},"41861":{"connections":[],"flavourText":"Bonds forged in battle surpass ties of blood.","group":1435,"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"]},"41873":{"connections":[],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":22,"skill":41873,"stats":["20% increased Frenzy Charge Duration"]},"41875":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1509,"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"]},"41877":{"connections":[{"id":53958,"orbit":0},{"id":64601,"orbit":0}],"group":1290,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"41886":{"connections":[{"id":9663,"orbit":7}],"group":1431,"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"]},"41905":{"connections":[{"id":56926,"orbit":0},{"id":44255,"orbit":7}],"group":938,"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"]},"41935":{"connections":[{"id":34782,"orbit":0}],"group":168,"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"]},"41965":{"connections":[{"id":1755,"orbit":-6}],"group":757,"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"]},"41972":{"connections":[{"id":56649,"orbit":4},{"id":60515,"orbit":-4}],"group":783,"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"]},"41991":{"connections":[{"id":61026,"orbit":0}],"group":475,"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"]},"42017":{"ascendancyName":"Ritualist","connections":[],"group":1562,"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"]},"42026":{"connections":[{"id":63813,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":0,"skill":42026,"stats":["16% increased Warcry Speed"]},"42032":{"connections":[{"id":17906,"orbit":0}],"group":1443,"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%"]},"42035":{"ascendancyName":"Chronomancer","connections":[],"group":358,"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"]},"42036":{"connections":[{"id":50146,"orbit":0}],"group":1442,"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"]},"42045":{"connections":[{"id":50535,"orbit":7},{"id":52003,"orbit":0}],"group":733,"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"]},"42059":{"connections":[{"id":36333,"orbit":3}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":4,"orbitIndex":60,"skill":42059,"stats":["Empowered Attacks deal 16% increased Damage"]},"42065":{"connections":[{"id":37532,"orbit":0}],"group":1224,"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"]},"42070":{"connections":[{"id":26148,"orbit":0}],"group":308,"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"]},"42076":{"connections":[{"id":17706,"orbit":-7}],"group":894,"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"]},"42077":{"connections":[{"id":56564,"orbit":0},{"id":2102,"orbit":0}],"group":712,"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"]},"42078":{"connectionArt":"CharacterPlanned","connections":[],"group":1405,"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"],"unlockConstraint":{"nodes":[59657,49356]}},"42103":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62427,"orbit":-2}],"group":1261,"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"]},"42111":{"connections":[{"id":21387,"orbit":0},{"id":26437,"orbit":0}],"group":199,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":42111,"stats":["Break 20% increased Armour"]},"42118":{"connections":[{"id":2408,"orbit":0},{"id":57518,"orbit":0},{"id":11509,"orbit":0},{"id":43102,"orbit":0},{"id":49485,"orbit":0}],"group":1336,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42127":{"connections":[{"id":4456,"orbit":0},{"id":41573,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":10,"skill":42127,"stats":["Damage Penetrates 6% Fire Resistance"]},"42169":{"connections":[{"id":24963,"orbit":-4}],"group":964,"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"]},"42177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":11153,"orbit":3}],"group":621,"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"]},"42205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":353,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":42205,"stats":[]},"42226":{"connections":[{"id":34892,"orbit":0},{"id":17792,"orbit":9}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":42226,"stats":["+10 to Intelligence"]},"42245":{"connections":[{"id":16024,"orbit":2},{"id":18167,"orbit":-2}],"group":1172,"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"]},"42250":{"connections":[{"id":26786,"orbit":0},{"id":16484,"orbit":0},{"id":44014,"orbit":0},{"id":45137,"orbit":0}],"group":1013,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"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"]},"42280":{"connections":[{"id":21205,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":22,"skill":42280,"stats":["+3 to all Attributes"]},"42290":{"connections":[{"id":38732,"orbit":-8}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":10,"skill":42290,"stats":["6% increased Curse Magnitudes"]},"42302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":45331,"orbit":4},{"id":31918,"orbit":-4}],"group":1293,"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"]},"42339":{"connections":[{"id":60974,"orbit":-2}],"group":1108,"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"]},"42347":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1469,"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"]},"42350":{"connections":[{"id":61438,"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":6,"orbitIndex":67,"skill":42350,"stats":["+5 to any Attribute"]},"42354":{"connections":[{"id":43562,"orbit":2},{"id":3660,"orbit":7}],"group":845,"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"]},"42361":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":42361,"stats":[]},"42379":{"connections":[{"id":16705,"orbit":0},{"id":25520,"orbit":0},{"id":3463,"orbit":0},{"id":4552,"orbit":0}],"group":1212,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42390":{"connections":[{"id":11433,"orbit":3},{"id":63608,"orbit":0}],"group":104,"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"]},"42410":{"connections":[{"id":9737,"orbit":4}],"group":684,"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"]},"42416":{"ascendancyName":"Deadeye","connections":[],"group":1502,"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":[]},"42441":{"ascendancyName":"Amazon","connections":[],"group":1536,"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"]},"42452":{"connections":[{"id":51743,"orbit":3}],"group":354,"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"]},"42460":{"connections":[{"id":11882,"orbit":5}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":7,"orbitIndex":3,"skill":42460,"stats":["10% increased chance to inflict Ailments"]},"42500":{"connections":[{"id":59881,"orbit":0}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"42522":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"42578":{"connections":[{"id":23192,"orbit":-6}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":11,"skill":42578,"stats":["5% increased Block chance"]},"42583":{"connections":[{"id":6714,"orbit":2147483647}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Life Regeneration Rate","orbit":2,"orbitIndex":18,"skill":42583,"stats":["10% increased Life Regeneration rate"]},"42604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":422,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":42604,"stats":[]},"42614":{"connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":6,"skill":42614,"stats":["Offering Skills have 30% reduced Duration"]},"42635":{"connections":[{"id":1502,"orbit":0}],"group":269,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":6,"skill":42635,"stats":["Channelling Skills deal 12% increased Damage"]},"42658":{"connections":[],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42660":{"connections":[{"id":54849,"orbit":0}],"group":226,"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"]},"42680":{"connections":[],"flavourText":"Let the Darkness consume you.\\nBeyond the veil of death,\\nthere burns a black fire.","group":706,"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"]},"42710":{"connections":[{"id":41186,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":20,"skill":42710,"stats":["20% increased Totem Placement speed"]},"42714":{"connections":[{"id":29065,"orbit":0}],"group":1300,"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"]},"42736":{"connections":[{"id":60685,"orbit":-3}],"group":885,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"42737":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":568,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":7,"orbitIndex":4,"skill":42737,"stats":[]},"42750":{"connections":[{"id":17088,"orbit":4},{"id":9050,"orbit":-4}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":6,"orbitIndex":42,"skill":42750,"stats":["10% increased Attack Damage"]},"42760":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1296,"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"]},"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":[]},"42762":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"42781":{"connections":[{"id":55429,"orbit":0},{"id":56472,"orbit":0}],"group":1015,"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"]},"42794":{"connections":[{"id":31433,"orbit":-5}],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":42794,"stats":["12% increased Elemental Damage with Attacks"]},"42802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":42802,"stats":[]},"42805":{"connections":[{"id":26034,"orbit":-5}],"group":1316,"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"]},"42813":{"connections":[{"id":55491,"orbit":0}],"group":446,"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"]},"42825":{"connections":[{"id":31238,"orbit":0}],"group":487,"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"]},"42845":{"ascendancyName":"Tactician","connections":[{"id":10371,"orbit":0}],"group":317,"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"]},"42857":{"connections":[{"id":20024,"orbit":3},{"id":7576,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":7,"orbitIndex":16,"skill":42857,"stats":["4% increased Skill Speed"]},"42914":{"connections":[{"id":33393,"orbit":0},{"id":50847,"orbit":0}],"group":142,"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"]},"42959":{"connections":[{"id":32896,"orbit":-2},{"id":28903,"orbit":0}],"group":1283,"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"]},"42974":{"connections":[{"id":46152,"orbit":3},{"id":8302,"orbit":-7},{"id":30808,"orbit":0}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Chance","orbit":2,"orbitIndex":18,"skill":42974,"stats":["5% chance to Blind Enemies on Hit"]},"42981":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":56104,"orbit":0}],"group":664,"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"]},"42984":{"connections":[{"id":21184,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":1,"orbitIndex":8,"skill":42984,"stats":["6% increased Area of Effect"]},"42998":{"connections":[{"id":40333,"orbit":2}],"group":1291,"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"]},"42999":{"connections":[{"id":4925,"orbit":3}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":10,"skill":42999,"stats":["7% increased Chaos Damage"]},"43014":{"connections":[{"id":34308,"orbit":0}],"group":458,"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"]},"43036":{"connections":[{"id":2244,"orbit":4}],"group":431,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":18,"skill":43036,"stats":["10% increased Mana Regeneration Rate"]},"43044":{"connections":[{"id":63566,"orbit":0},{"id":38678,"orbit":0},{"id":21495,"orbit":-6}],"group":1237,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"43064":{"connections":[{"id":47853,"orbit":0}],"group":1407,"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"]},"43077":{"connections":[{"id":26592,"orbit":-2},{"id":43250,"orbit":3}],"group":179,"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"]},"43082":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1359,"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"]},"43088":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1455,"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"]},"43090":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1372,"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"]},"43095":{"ascendancyName":"Amazon","connections":[{"id":35187,"orbit":0}],"group":1538,"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"]},"43102":{"connections":[{"id":30197,"orbit":0},{"id":42998,"orbit":-9}],"group":1291,"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"]},"43128":{"ascendancyName":"Chronomancer","connections":[{"id":10731,"orbit":4}],"group":362,"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"]},"43131":{"ascendancyName":"Witchhunter","connections":[{"id":61973,"orbit":-9}],"group":277,"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"]},"43139":{"connections":[{"id":38068,"orbit":0}],"group":739,"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"]},"43142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":337,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":43142,"stats":[]},"43149":{"connections":[{"id":40292,"orbit":0}],"group":299,"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"]},"43155":{"connections":[{"id":7062,"orbit":0}],"group":919,"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"]},"43164":{"connections":[{"id":5710,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":20,"skill":43164,"stats":["8% increased Melee Damage"]},"43174":{"connections":[{"id":28542,"orbit":-7}],"group":382,"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"]},"43183":{"connections":[{"id":11153,"orbit":0}],"group":621,"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"]},"43201":{"connections":[{"id":43383,"orbit":0}],"group":766,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":56,"skill":43201,"stats":["10% increased chance to inflict Ailments"]},"43238":{"connections":[{"id":14211,"orbit":-7}],"group":1158,"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"]},"43250":{"connections":[],"group":145,"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"]},"43254":{"connections":[{"id":33400,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":22,"skill":43254,"stats":["10% increased Parried Debuff Magnitude"]},"43263":{"connections":[{"id":64492,"orbit":-2}],"group":1201,"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"]},"43281":{"connections":[{"id":47359,"orbit":0},{"id":51934,"orbit":7}],"group":1233,"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"]},"43282":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":6,"orbitIndex":49,"skill":43282,"stats":["12% increased Elemental Damage while Shapeshifted"]},"43324":{"connectionArt":"CharacterPlanned","connections":[{"id":57596,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43338":{"connections":[{"id":56767,"orbit":0}],"group":1355,"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"]},"43366":{"connections":[{"id":2606,"orbit":0},{"id":4407,"orbit":0}],"group":583,"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"]},"43383":{"connections":[{"id":62588,"orbit":0},{"id":37450,"orbit":0}],"group":766,"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"]},"43385":{"connectionArt":"CharacterPlanned","connections":[{"id":64139,"orbit":-5}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43396":{"connections":[{"id":40550,"orbit":0}],"group":375,"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"]},"43423":{"connections":[{"id":48660,"orbit":0}],"group":1061,"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"]},"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":611,"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"]},"43431":{"connections":[{"id":38814,"orbit":0},{"id":19224,"orbit":0}],"group":964,"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"]},"43443":{"connections":[{"id":32148,"orbit":0},{"id":49370,"orbit":0},{"id":8535,"orbit":0}],"group":173,"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"]},"43444":{"connections":[],"group":791,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":8,"skill":43444,"stats":["8% increased Knockback Distance"]},"43453":{"connections":[{"id":64050,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":43453,"stats":["3% increased Movement Speed while Sprinting"]},"43460":{"connections":[{"id":63678,"orbit":4},{"id":63085,"orbit":-5}],"group":164,"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"]},"43461":{"connections":[{"id":51299,"orbit":0}],"group":502,"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"]},"43486":{"connectionArt":"CharacterPlanned","connections":[{"id":54289,"orbit":0},{"id":39102,"orbit":2147483647}],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43507":{"connections":[{"id":40292,"orbit":0}],"group":299,"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"]},"43522":{"connections":[{"id":38497,"orbit":4},{"id":33099,"orbit":6}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":7,"skill":43522,"stats":["6% reduced Charm Charges used"]},"43557":{"connections":[],"group":769,"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"]},"43562":{"connections":[{"id":3660,"orbit":0}],"group":845,"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"]},"43575":{"connections":[{"id":41512,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":16,"skill":43575,"stats":["10% increased Melee Damage"]},"43576":{"connections":[{"id":7971,"orbit":3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":8,"skill":43576,"stats":["10% increased Mana Regeneration Rate"]},"43578":{"connections":[],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":26,"skill":43578,"stats":["10% increased Projectile Damage"]},"43579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":35369,"orbit":0}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":9,"skill":43579,"stats":[]},"43584":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":619,"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"]},"43588":{"connections":[{"id":61835,"orbit":-2},{"id":39131,"orbit":3}],"group":167,"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"]},"43633":{"connections":[{"id":10841,"orbit":0}],"group":1102,"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"]},"43647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":32507,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":2,"orbitIndex":17,"skill":43647,"stats":[]},"43650":{"connections":[{"id":21070,"orbit":0},{"id":53386,"orbit":0}],"group":228,"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"]},"43653":{"connections":[{"id":26518,"orbit":0},{"id":48171,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":9,"skill":43653,"stats":["12% increased Cold Damage"]},"43677":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1125,"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"]},"43691":{"connections":[{"id":21746,"orbit":0},{"id":55270,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"43711":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":312,"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"]},"43713":{"connections":[{"id":3051,"orbit":0},{"id":27009,"orbit":0},{"id":35602,"orbit":0}],"group":817,"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"]},"43720":{"connections":[],"group":1227,"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"]},"43721":{"connectionArt":"CharacterPlanned","connections":[{"id":24993,"orbit":8}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43736":{"connections":[{"id":29695,"orbit":4}],"group":811,"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"]},"43746":{"connections":[{"id":16460,"orbit":0},{"id":38143,"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":3,"orbitIndex":6,"skill":43746,"stats":["+5 to any Attribute"]},"43778":{"connections":[{"id":36894,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":2,"skill":43778,"stats":["5% chance to inflict Bleeding on Hit"]},"43791":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":667,"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"]},"43818":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":473,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":43818,"stats":[]},"43829":{"connections":[{"id":51944,"orbit":0},{"id":45576,"orbit":0}],"group":828,"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"]},"43842":{"connections":[{"id":5695,"orbit":2},{"id":28092,"orbit":2}],"group":550,"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"]},"43843":{"connections":[{"id":17417,"orbit":0}],"group":483,"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"]},"43854":{"connections":[{"id":52038,"orbit":0}],"group":541,"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"]},"43867":{"connections":[{"id":10423,"orbit":2}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":23,"skill":43867,"stats":["Damage Penetrates 6% Fire Resistance"]},"43877":{"connections":[{"id":51522,"orbit":-2},{"id":47895,"orbit":-2}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":1,"orbitIndex":7,"skill":43877,"stats":["3% increased Attack Speed"]},"43893":{"connections":[{"id":55101,"orbit":0},{"id":1433,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":10,"skill":43893,"stats":["10% increased Elemental Damage"]},"43895":{"connections":[{"id":48670,"orbit":-5}],"group":587,"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"]},"43923":{"connections":[{"id":19104,"orbit":0}],"group":967,"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"]},"43938":{"connections":[{"id":37688,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":39,"skill":43938,"stats":["6% increased Trap Throwing Speed"]},"43939":{"connections":[{"id":48267,"orbit":0},{"id":56214,"orbit":0}],"group":178,"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%"]},"43941":{"connections":[{"id":48314,"orbit":-7}],"group":103,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":43941,"stats":["3% increased Skill Speed while Shapeshifted"]},"43944":{"connections":[{"id":23547,"orbit":0}],"group":1281,"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"]},"43964":{"connections":[{"id":41645,"orbit":0}],"group":1194,"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"]},"43979":{"connections":[{"id":50837,"orbit":0},{"id":26926,"orbit":0}],"group":701,"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"]},"44005":{"connections":[],"group":270,"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"]},"44014":{"connections":[{"id":11855,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":44014,"stats":["8% increased Accuracy Rating"]},"44017":{"connections":[{"id":4527,"orbit":0}],"flavourText":"Great tacticians learn that consistency often trumps potential.","group":231,"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"]},"44069":{"connections":[{"id":29358,"orbit":-7}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":4,"skill":44069,"stats":["15% increased Stun Buildup"]},"44082":{"connections":[{"id":4931,"orbit":0}],"group":487,"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"]},"44092":{"connections":[{"id":54911,"orbit":0}],"group":602,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":0,"skill":44092,"stats":["12% increased Ignite Magnitude"]},"44098":{"connections":[{"id":4061,"orbit":0},{"id":34531,"orbit":0}],"group":676,"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"]},"44141":{"connections":[{"id":18969,"orbit":0},{"id":21788,"orbit":0}],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":3,"orbitIndex":7,"skill":44141,"stats":["3% increased Attack Speed with Bows"]},"44176":{"connections":[{"id":57047,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":44176,"stats":["+3 to all Attributes"]},"44179":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":44179,"stats":[]},"44188":{"connections":[{"id":64427,"orbit":0}],"group":930,"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"]},"44201":{"connections":[],"group":1011,"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"]},"44204":{"connections":[{"id":33729,"orbit":3}],"group":1200,"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"]},"44213":{"connections":[{"id":869,"orbit":0}],"group":433,"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"]},"44223":{"connections":[],"group":916,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":1,"skill":44223,"stats":["15% increased Critical Damage Bonus"]},"44239":{"connections":[{"id":29479,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":16,"skill":44239,"stats":["15% increased Pin Buildup"]},"44255":{"connections":[{"id":28573,"orbit":-3}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":12,"skill":44255,"stats":["Minions Revive 5% faster"]},"44280":{"connections":[{"id":23305,"orbit":-3}],"group":1357,"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"]},"44293":{"connections":[],"group":660,"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"]},"44298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":46024,"orbit":0}],"group":267,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":44298,"stats":[]},"44299":{"connections":[{"id":38105,"orbit":0},{"id":49455,"orbit":0},{"id":857,"orbit":0}],"group":609,"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"]},"44309":{"connectionArt":"CharacterPlanned","connections":[{"id":44485,"orbit":2147483647}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44316":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":271,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":6,"skill":44316,"stats":[]},"44330":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":804,"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"]},"44343":{"connections":[{"id":55276,"orbit":5}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44344":{"connections":[{"id":28092,"orbit":4}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"44345":{"connections":[{"id":48833,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44345,"stats":["10% increased Lightning Damage"]},"44357":{"ascendancyName":"Invoker","connections":[{"id":63713,"orbit":-9}],"group":1505,"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"]},"44359":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":881,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":44359,"stats":[]},"44369":{"connections":[{"id":30748,"orbit":0}],"group":1226,"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"]},"44371":{"ascendancyName":"Tactician","connections":[{"id":30151,"orbit":0}],"group":379,"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"]},"44372":{"connections":[{"id":11679,"orbit":0},{"id":25829,"orbit":0}],"group":662,"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"]},"44373":{"connections":[],"group":1304,"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"]},"44406":{"connections":[],"group":409,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":0,"skill":44406,"stats":["15% increased Stun Buildup"]},"44419":{"connections":[{"id":7251,"orbit":7},{"id":29788,"orbit":-7}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":10,"skill":44419,"stats":["8% increased amount of Life Leeched"]},"44420":{"connections":[{"id":28021,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":44420,"stats":["10% increased Critical Hit Chance"]},"44423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":25971,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":2,"orbitIndex":1,"skill":44423,"stats":[]},"44430":{"connections":[{"id":7062,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":44430,"stats":["12% increased Damage with Crossbows"]},"44452":{"connectionArt":"CharacterPlanned","connections":[{"id":21809,"orbit":-6}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44453":{"connections":[{"id":42760,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":3,"skill":44453,"stats":["15% increased Stun Threshold"]},"44455":{"connections":[{"id":41669,"orbit":0},{"id":60515,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44455,"stats":["12% increased Cold Damage"]},"44461":{"connections":[{"id":54998,"orbit":-7}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":21,"skill":44461,"stats":["10% increased Skill Effect Duration"]},"44484":{"ascendancyName":"Stormweaver","connections":[{"id":42522,"orbit":0}],"group":517,"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"]},"44485":{"connectionArt":"CharacterPlanned","connections":[{"id":7553,"orbit":-3}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44487":{"connections":[{"id":39884,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":5,"skill":44487,"stats":["10% increased Ignite Magnitude"]},"44490":{"connections":[{"id":43090,"orbit":0}],"group":1344,"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"]},"44498":{"connections":[{"id":22439,"orbit":-5},{"id":38068,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":20,"skill":44498,"stats":["10% increased Exposure Effect"]},"44516":{"connections":[{"id":2113,"orbit":0}],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":13,"skill":44516,"stats":["3% increased Attack Speed with Quarterstaves"]},"44522":{"connections":[{"id":47831,"orbit":0}],"group":1370,"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"]},"44527":{"connections":[{"id":44875,"orbit":0}],"group":980,"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"]},"44540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":4,"skill":44540,"stats":[]},"44560":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44563":{"connections":[{"id":59053,"orbit":7}],"group":1077,"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"]},"44566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":876,"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"]},"44573":{"connections":[],"group":1318,"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"]},"44605":{"connections":[{"id":59881,"orbit":-6},{"id":13081,"orbit":0}],"group":764,"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"]},"44608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":906,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":44608,"stats":[]},"44612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":44612,"stats":[]},"44628":{"connections":[{"id":20820,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":44628,"stats":["3% increased Attack Speed"]},"44659":{"connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44669":{"connections":[],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":9,"skill":44669,"stats":["10% increased Skill Effect Duration"]},"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":872,"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","name":"SIX","orbit":0,"orbitIndex":0,"skill":44683,"stats":[]},"44684":{"connections":[{"id":5191,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":44684,"stats":["Companions have 10% increased Attack Speed"]},"44690":{"connections":[{"id":14127,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":5,"skill":44690,"stats":["8% reduced Skill Effect Duration"]},"44699":{"connections":[{"id":16150,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":44699,"stats":["8% increased Reservation Efficiency of Companion Skills"]},"44707":{"connections":[{"id":54785,"orbit":0},{"id":7628,"orbit":0}],"group":709,"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"]},"44733":{"connections":[{"id":10742,"orbit":0},{"id":29432,"orbit":-9},{"id":1433,"orbit":0},{"id":49363,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"44746":{"ascendancyName":"Tactician","connections":[{"id":4245,"orbit":0}],"group":341,"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"]},"44753":{"connections":[{"id":63608,"orbit":0}],"group":104,"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"]},"44756":{"connections":[{"id":44841,"orbit":5}],"group":1338,"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"]},"44765":{"connections":[{"id":32233,"orbit":0}],"group":826,"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"]},"44776":{"connections":[{"id":48773,"orbit":0},{"id":1841,"orbit":5}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":5,"orbitIndex":18,"skill":44776,"stats":["15% increased Evasion Rating"]},"44783":{"connections":[{"id":22949,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":44783,"stats":["10% increased Spell Area Damage"]},"44787":{"connections":[{"id":14654,"orbit":0},{"id":49192,"orbit":0},{"id":51683,"orbit":-4}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":14,"skill":44787,"stats":["20% increased Totem Placement speed"]},"44836":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":47150,"orbit":0}],"group":788,"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"]},"44841":{"connections":[{"id":36927,"orbit":0},{"id":28258,"orbit":2}],"group":1338,"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"]},"44850":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[{"id":59438,"orbit":2147483647},{"id":32128,"orbit":-3}],"group":628,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":44850,"stats":[]},"44871":{"connections":[{"id":54447,"orbit":0},{"id":56216,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":3,"orbitIndex":2,"skill":44871,"stats":["+10 to maximum Energy Shield"]},"44872":{"connections":[{"id":11248,"orbit":0},{"id":22949,"orbit":0},{"id":4970,"orbit":0},{"id":3363,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"44875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":980,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":44875,"stats":[]},"44891":{"connections":[{"id":52537,"orbit":2147483647},{"id":15775,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":7,"skill":44891,"stats":["Damage Penetrates 6% Cold Resistance"]},"44902":{"connections":[{"id":511,"orbit":3}],"group":196,"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"]},"44917":{"connections":[{"id":34984,"orbit":0}],"group":989,"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"]},"44932":{"connections":[{"id":54984,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":3,"orbitIndex":4,"skill":44932,"stats":["15% increased Magnitude of Shock you inflict"]},"44948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":675,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":44948,"stats":[]},"44951":{"connections":[{"id":5777,"orbit":0}],"group":567,"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"]},"44952":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":9163,"orbit":0}],"group":162,"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"]},"44974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1219,"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"]},"44983":{"connections":[{"id":3685,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":22,"skill":44983,"stats":["+3 to all Attributes"]},"45012":{"connections":[{"id":8246,"orbit":0},{"id":64462,"orbit":0},{"id":41017,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":12,"skill":45012,"stats":["10% increased Attack Damage"]},"45013":{"connections":[{"id":58884,"orbit":0}],"group":891,"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"]},"45019":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":956,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":45019,"stats":[]},"45037":{"connections":[{"id":9736,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":17,"skill":45037,"stats":["12% increased Armour and Evasion Rating"]},"45075":{"connections":[{"id":43507,"orbit":0},{"id":27439,"orbit":0}],"group":299,"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"]},"45086":{"connections":[{"id":34520,"orbit":0}],"group":970,"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"]},"45090":{"connections":[{"id":36027,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":19,"skill":45090,"stats":["12% increased Attack Damage"]},"45100":{"connections":[{"id":56928,"orbit":-3}],"group":1232,"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"]},"45111":{"connections":[{"id":14446,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":45111,"stats":["20% increased Curse Duration"]},"45137":{"connections":[{"id":44487,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":8,"skill":45137,"stats":["10% increased Ignite Magnitude"]},"45162":{"connections":[{"id":24801,"orbit":7},{"id":63031,"orbit":-2}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":18,"skill":45162,"stats":["20% increased Presence Area of Effect"]},"45177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":589,"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"]},"45193":{"connections":[{"id":4083,"orbit":0}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":17,"skill":45193,"stats":["10% increased Magnitude of Poison you inflict"]},"45202":{"connections":[{"id":59093,"orbit":0}],"flavourText":"A wooden construct, mute and blind.\\nBut fear the wrath of shackled mind.","group":259,"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"]},"45215":{"connections":[{"id":53187,"orbit":0}],"group":426,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45227":{"connections":[{"id":42111,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":1,"skill":45227,"stats":["Break 20% increased Armour"]},"45228":{"ascendancyName":"Spirit Walker","connections":[{"id":39887,"orbit":4}],"group":1542,"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"]},"45230":{"connections":[{"id":28229,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":4,"skill":45230,"stats":["10% increased Area of Effect of Curses"]},"45244":{"connections":[{"id":23343,"orbit":0},{"id":41016,"orbit":0}],"group":1148,"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"]},"45248":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":14429,"orbit":2147483647}],"group":407,"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"]},"45272":{"connections":[{"id":42280,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":0,"skill":45272,"stats":["+3 to all Attributes"]},"45278":{"connections":[{"id":38138,"orbit":0}],"group":795,"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"]},"45301":{"connections":[{"id":31724,"orbit":0}],"group":419,"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"]},"45304":{"connections":[{"id":6078,"orbit":-4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":18,"skill":45304,"stats":["10% increased Poison Duration"]},"45319":{"connections":[{"id":55041,"orbit":0},{"id":26135,"orbit":0},{"id":3251,"orbit":0}],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage","orbit":3,"orbitIndex":16,"skill":45319,"stats":["8% increased Spell Damage"]},"45327":{"connections":[{"id":10251,"orbit":0}],"group":241,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":16,"skill":45327,"stats":["15% increased Stun Buildup"]},"45329":{"connections":[{"id":2128,"orbit":0},{"id":40626,"orbit":0}],"group":1228,"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"]},"45331":{"connections":[{"id":23221,"orbit":7},{"id":60323,"orbit":9}],"group":1293,"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"]},"45333":{"connections":[{"id":59781,"orbit":-2}],"group":701,"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"]},"45343":{"connections":[{"id":50483,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":7,"orbitIndex":19,"skill":45343,"stats":["Minions have 8% increased Area of Effect"]},"45350":{"connections":[{"id":3438,"orbit":0}],"group":915,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":6,"skill":45350,"stats":["Invocated Spells deal 15% increased Damage"]},"45354":{"connections":[{"id":64948,"orbit":0},{"id":21568,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":18,"skill":45354,"stats":["Aura Skills have 5% increased Magnitudes"]},"45363":{"connections":[{"id":31292,"orbit":0},{"id":58528,"orbit":0}],"group":527,"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"]},"45370":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1238,"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"]},"45382":{"connections":[{"id":53265,"orbit":0}],"group":1429,"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"]},"45383":{"connections":[{"id":23930,"orbit":0},{"id":30662,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":45383,"stats":["12% increased Lightning Damage"]},"45390":{"connections":[{"id":13624,"orbit":0},{"id":28258,"orbit":2}],"group":1338,"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"]},"45400":{"connectionArt":"CharacterPlanned","connections":[{"id":59908,"orbit":2147483647},{"id":13691,"orbit":0}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45422":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connectionArt":"CharacterPlanned","connections":[],"group":421,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45481":{"connections":[{"id":52765,"orbit":0}],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":45481,"stats":["10% increased Mana Regeneration Rate"]},"45488":{"connections":[{"id":4377,"orbit":0}],"group":833,"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"]},"45494":{"connections":[],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":9,"skill":45494,"stats":["20% increased Ballista Immobilisation buildup"]},"45497":{"connections":[{"id":13333,"orbit":-7},{"id":17057,"orbit":0},{"id":61170,"orbit":7}],"group":698,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":45497,"stats":["10% increased Elemental Damage"]},"45503":{"connections":[{"id":37746,"orbit":4}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":0,"skill":45503,"stats":["30% increased Flammability Magnitude"]},"45522":{"connections":[{"id":22314,"orbit":5}],"group":747,"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":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"45530":{"connections":[{"id":55180,"orbit":-7}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":18,"skill":45530,"stats":["Minions cause 15% increased Stun Buildup"]},"45569":{"connections":[{"id":55596,"orbit":0}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":45569,"stats":["15% increased Critical Spell Damage Bonus"]},"45570":{"connections":[{"id":43713,"orbit":0},{"id":29009,"orbit":0}],"group":817,"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"]},"45576":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":828,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":7,"orbitIndex":3,"skill":45576,"stats":[]},"45585":{"connections":[{"id":55617,"orbit":0},{"id":37258,"orbit":5}],"group":453,"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"]},"45586":{"connections":[{"id":14761,"orbit":0}],"group":426,"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"]},"45599":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":6689,"orbit":0},{"id":32885,"orbit":0}],"group":709,"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"]},"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":611,"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"]},"45609":{"connections":[],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":20,"skill":45609,"stats":["15% increased Critical Damage Bonus"]},"45612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":53901,"orbit":0}],"group":460,"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"]},"45631":{"connections":[{"id":3630,"orbit":-5}],"group":1316,"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"]},"45632":{"connections":[{"id":24551,"orbit":0}],"group":286,"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"]},"45650":{"connections":[{"id":9572,"orbit":0},{"id":36997,"orbit":0}],"group":1056,"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"]},"45693":{"connections":[{"id":64851,"orbit":0}],"group":1107,"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"]},"45702":{"connections":[{"id":61333,"orbit":-3},{"id":31692,"orbit":3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":19,"skill":45702,"stats":["10% increased Critical Hit Chance"]},"45709":{"connections":[{"id":52803,"orbit":0}],"group":1249,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":21,"skill":45709,"stats":["15% increased Life Flask Charges gained"]},"45712":{"connections":[{"id":65009,"orbit":0}],"group":1200,"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"]},"45713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1342,"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"]},"45736":{"connections":[{"id":15825,"orbit":-3}],"group":179,"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"]},"45751":{"connections":[],"group":250,"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"]},"45774":{"connections":[{"id":54975,"orbit":3}],"group":1217,"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"]},"45777":{"connections":[{"id":47212,"orbit":0}],"group":483,"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"]},"45798":{"connections":[{"id":62578,"orbit":-7},{"id":46615,"orbit":7}],"group":1281,"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"]},"45808":{"connections":[{"id":35623,"orbit":0}],"group":590,"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"]},"45824":{"connections":[{"id":61441,"orbit":0},{"id":8493,"orbit":0}],"group":599,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":0,"orbitIndex":0,"skill":45824,"stats":["10% increased Damage with Swords"]},"45874":{"connections":[],"group":314,"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"]},"45885":{"connections":[{"id":54521,"orbit":0},{"id":59362,"orbit":0},{"id":45497,"orbit":4},{"id":13359,"orbit":9}],"group":726,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"45899":{"connections":[{"id":968,"orbit":0}],"group":602,"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"]},"45916":{"connections":[{"id":27501,"orbit":-4},{"id":19330,"orbit":4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":5,"orbitIndex":48,"skill":45916,"stats":["10% increased Life Regeneration rate"]},"45918":{"connections":[],"flavourText":"While the mind endures, so too will the body.","group":424,"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"]},"45923":{"connections":[{"id":50084,"orbit":0},{"id":52319,"orbit":0}],"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":6,"orbitIndex":31,"skill":45923,"stats":["+5 to any Attribute"]},"45962":{"connections":[{"id":7183,"orbit":-6},{"id":15617,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":3,"orbitIndex":23,"skill":45962,"stats":["10% increased Life Recovery from Flasks"]},"45969":{"connections":[{"id":28693,"orbit":-7},{"id":24880,"orbit":0}],"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":6,"orbitIndex":36,"skill":45969,"stats":["+5 to any Attribute"]},"45990":{"connections":[{"id":39448,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":23,"skill":45990,"stats":["4% increased Attack Speed with Axes"]},"45992":{"connections":[{"id":41657,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":12,"skill":45992,"stats":["15% increased Armour"]},"46016":{"ascendancyName":"Infernalist","connections":[{"id":24039,"orbit":7}],"group":759,"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"]},"46017":{"connections":[{"id":54962,"orbit":0}],"group":248,"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"]},"46023":{"connections":[],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":46023,"stats":["15% increased Armour"]},"46024":{"connections":[],"group":274,"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"]},"46034":{"connections":[{"id":41029,"orbit":0},{"id":10552,"orbit":0}],"group":1031,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":[]},"46060":{"connections":[{"id":29270,"orbit":-2},{"id":7488,"orbit":0}],"group":566,"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"]},"46069":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"46070":{"ascendancyName":"Spirit Walker","connections":[{"id":62424,"orbit":0}],"group":1542,"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"]},"46071":{"ascendancyName":"Amazon","connections":[{"id":9294,"orbit":0}],"group":1546,"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"]},"46088":{"connections":[{"id":13823,"orbit":0}],"group":1064,"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"]},"46091":{"ascendancyName":"Disciple of Varashta","connections":[{"id":30265,"orbit":-9},{"id":64223,"orbit":6}],"group":611,"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"]},"46124":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"46146":{"connections":[{"id":43691,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":4,"skill":46146,"stats":["10% increased amount of Mana Leeched"]},"46152":{"connections":[{"id":40110,"orbit":4}],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":1,"orbitIndex":6,"skill":46152,"stats":["10% increased Blind Effect"]},"46157":{"connections":[{"id":37806,"orbit":0}],"group":1008,"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"]},"46171":{"connections":[{"id":61421,"orbit":7}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Critical Chance","orbit":7,"orbitIndex":13,"skill":46171,"stats":["10% increased Critical Hit Chance"]},"46182":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":42460,"orbit":4}],"group":1134,"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"]},"46197":{"connections":[{"id":39237,"orbit":0}],"group":1311,"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"]},"46205":{"connections":[{"id":2174,"orbit":7},{"id":33209,"orbit":-7},{"id":51683,"orbit":-7}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":46205,"stats":["15% increased Totem Damage"]},"46224":{"connections":[{"id":24045,"orbit":0},{"id":45019,"orbit":0}],"group":956,"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"]},"46268":{"connections":[{"id":5324,"orbit":-5},{"id":2397,"orbit":0}],"group":666,"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"]},"46275":{"connections":[{"id":3894,"orbit":0}],"group":609,"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"]},"46296":{"connections":[],"group":920,"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"]},"46300":{"connections":[{"id":63021,"orbit":0},{"id":52774,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":14,"skill":46300,"stats":["30% increased Flammability Magnitude"]},"46318":{"connections":[{"id":32964,"orbit":3}],"group":363,"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"]},"46325":{"connections":[{"id":3936,"orbit":0},{"id":33556,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":5,"skill":46325,"stats":["10% increased Melee Damage"]},"46343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"id":13708,"orbit":0},{"id":25513,"orbit":0},{"id":47363,"orbit":0}],"group":731,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":46343,"stats":[]},"46358":{"connections":[{"id":50423,"orbit":0},{"id":59376,"orbit":0},{"id":59442,"orbit":-5}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"46365":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":639,"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"]},"46380":{"connections":[{"id":21327,"orbit":0}],"group":319,"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"]},"46384":{"connections":[{"id":18746,"orbit":-5},{"id":58138,"orbit":0}],"group":116,"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"]},"46386":{"connections":[{"id":39986,"orbit":0}],"group":1486,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":46386,"stats":["Companions deal 12% increased Damage"]},"46399":{"connections":[{"id":589,"orbit":0},{"id":50820,"orbit":0}],"group":106,"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"]},"46402":{"connections":[{"id":18923,"orbit":0},{"id":37220,"orbit":0},{"id":50342,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":13,"skill":46402,"stats":["15% increased Evasion Rating"]},"46421":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":309,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":46421,"stats":[]},"46431":{"connections":[{"id":11015,"orbit":0},{"id":38463,"orbit":0}],"group":1255,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":46431,"stats":["16% increased Hazard Damage"]},"46454":{"ascendancyName":"Pathfinder","connections":[],"group":1527,"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"]},"46475":{"connections":[{"id":18186,"orbit":5},{"id":51299,"orbit":0},{"id":16385,"orbit":0}],"group":678,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":63,"skill":46475,"stats":["12% increased Armour and Evasion Rating"]},"46499":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":207,"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"]},"46522":{"ascendancyName":"Tactician","connections":[{"id":44746,"orbit":0}],"group":349,"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"]},"46533":{"connections":[{"id":28329,"orbit":3}],"group":1276,"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"]},"46535":{"ascendancyName":"Witchhunter","connections":[],"group":279,"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"]},"46554":{"connections":[{"id":62677,"orbit":0},{"id":36379,"orbit":0},{"id":10131,"orbit":0},{"id":42999,"orbit":-3}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"46561":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":943,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":2,"orbitIndex":6,"skill":46561,"stats":[]},"46565":{"connections":[{"id":15855,"orbit":0}],"group":525,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Stance Breaker","orbit":0,"orbitIndex":0,"skill":46565,"stats":["25% increased Damage with Swords"]},"46601":{"connections":[{"id":18568,"orbit":0},{"id":43720,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":18,"skill":46601,"stats":["10% increased amount of Mana Leeched"]},"46604":{"connections":[{"id":2138,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":17,"skill":46604,"stats":["7% increased Chaos Damage"]},"46615":{"connections":[{"id":53177,"orbit":7}],"group":1281,"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"]},"46628":{"connections":[{"id":40894,"orbit":0},{"id":44872,"orbit":0},{"id":50184,"orbit":0},{"id":25337,"orbit":0},{"id":20848,"orbit":-8}],"group":429,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"46644":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"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"]},"46665":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":253,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46665,"stats":[]},"46674":{"connections":[{"id":35921,"orbit":0},{"id":64807,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":16,"skill":46674,"stats":["6% increased Area of Effect for Attacks"]},"46683":{"connections":[{"id":30553,"orbit":0}],"group":141,"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"]},"46688":{"connections":[{"id":4238,"orbit":-2}],"group":1201,"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"]},"46692":{"connections":[{"id":9393,"orbit":0}],"group":972,"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"]},"46696":{"connections":[{"id":8629,"orbit":0}],"group":398,"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"]},"46705":{"connections":[{"id":12822,"orbit":0}],"group":1056,"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"]},"46741":{"connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":22,"skill":46741,"stats":["15% increased Stun Buildup"]},"46742":{"connections":[],"flavourText":"Balance is good in all things, but especially in the realm of magic.","group":494,"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"]},"46748":{"connections":[{"id":51206,"orbit":5},{"id":60568,"orbit":-5}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":46748,"stats":["16% increased Totem Life"]},"46760":{"connections":[{"id":51534,"orbit":0},{"id":8631,"orbit":0}],"group":561,"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"]},"46761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46761,"stats":[]},"46782":{"connections":[{"id":53698,"orbit":3}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":46782,"stats":["10% increased Attack Damage"]},"46819":{"connections":[{"id":8616,"orbit":0},{"id":13909,"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":46819,"stats":["+5 to any Attribute"]},"46854":{"ascendancyName":"Deadeye","connections":[{"id":12033,"orbit":0},{"id":42416,"orbit":0}],"group":1502,"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"]},"46857":{"connections":[{"id":52971,"orbit":-2}],"group":1269,"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"]},"46874":{"connections":[{"id":7449,"orbit":0},{"id":53696,"orbit":0}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":21,"skill":46874,"stats":["12% increased Attack Physical Damage"]},"46882":{"connections":[],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":8,"skill":46882,"stats":[]},"46887":{"connections":[{"id":43720,"orbit":-6},{"id":38463,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":6,"skill":46887,"stats":["10% increased amount of Mana Leeched"]},"46931":{"connections":[{"id":23036,"orbit":0},{"id":28175,"orbit":5}],"group":453,"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"]},"46961":{"connections":[{"id":5191,"orbit":0}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":46961,"stats":["3% increased Attack Speed"]},"46972":{"connections":[{"id":54783,"orbit":0}],"group":894,"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"]},"46989":{"connections":[],"group":861,"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"]},"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":1502,"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":[]},"47006":{"connections":[{"id":43174,"orbit":7}],"group":382,"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"]},"47009":{"connections":[{"id":37250,"orbit":-7}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":7,"orbitIndex":11,"skill":47009,"stats":["10% increased Attack Area Damage"]},"47021":{"connections":[{"id":36217,"orbit":1}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":0,"skill":47021,"stats":["15% increased Volatility Explosion delay"]},"47088":{"connections":[],"group":1040,"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"]},"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"]},"47150":{"connections":[{"id":56910,"orbit":-5}],"group":788,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":47150,"stats":["12% increased Armour and Evasion Rating"]},"47155":{"connections":[{"id":35896,"orbit":0},{"id":63545,"orbit":2},{"id":17394,"orbit":-2}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":3,"skill":47155,"stats":["Minions deal 10% increased Damage"]},"47157":{"connections":[{"id":61347,"orbit":4},{"id":54818,"orbit":0}],"group":722,"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"]},"47168":{"connections":[{"id":6006,"orbit":-4},{"id":54521,"orbit":0},{"id":55412,"orbit":-4},{"id":25570,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47173":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":47173,"stats":[]},"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":716,"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","name":"MARAUDER","orbit":0,"orbitIndex":0,"skill":47175,"stats":[]},"47177":{"connections":[],"group":935,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"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"]},"47191":{"connections":[],"group":265,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":58,"skill":47191,"stats":["12% increased Fire Damage"]},"47212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":483,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":47212,"stats":[]},"47235":{"connections":[{"id":24570,"orbit":0}],"group":1243,"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"]},"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"]},"47242":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":47242,"stats":[]},"47252":{"connections":[],"group":242,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":47252,"stats":["16% increased Mana Regeneration Rate while stationary"]},"47263":{"connections":[{"id":38707,"orbit":0},{"id":18448,"orbit":0},{"id":58295,"orbit":0},{"id":60068,"orbit":0}],"group":194,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47270":{"connections":[],"group":783,"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"]},"47284":{"connections":[{"id":3332,"orbit":0}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":47284,"stats":["Minions have +20% to Cold Resistance"]},"47307":{"connections":[{"id":2254,"orbit":5}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":4,"skill":47307,"stats":["3% increased Cast Speed"]},"47312":{"ascendancyName":"Amazon","connections":[],"group":1555,"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"]},"47316":{"connections":[{"id":2888,"orbit":0},{"id":28862,"orbit":0}],"group":435,"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"]},"47344":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":3781,"orbit":0}],"group":1533,"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"]},"47359":{"connections":[{"id":14231,"orbit":-7}],"group":1233,"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"]},"47363":{"connections":[],"group":754,"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"]},"47371":{"connections":[{"id":7668,"orbit":0}],"group":367,"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"]},"47374":{"connections":[{"id":18049,"orbit":0}],"group":1307,"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"]},"47375":{"connections":[{"id":63618,"orbit":5}],"group":1482,"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"]},"47418":{"connections":[{"id":23839,"orbit":0},{"id":10738,"orbit":0}],"group":1288,"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"]},"47420":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":11048,"orbit":0},{"id":52676,"orbit":7}],"group":272,"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"]},"47429":{"connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":6,"orbitIndex":6,"skill":47429,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"47441":{"connections":[{"id":61992,"orbit":0}],"group":825,"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"]},"47442":{"ascendancyName":"Blood Mage","connections":[{"id":65518,"orbit":0}],"group":954,"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"]},"47443":{"connections":[{"id":31129,"orbit":0}],"group":1494,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":47443,"stats":["8% increased Reservation Efficiency of Companion Skills"]},"47477":{"connections":[{"id":51774,"orbit":1}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":6,"skill":47477,"stats":["15% reduced Volatility Explosion delay"]},"47514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1450,"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"]},"47517":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":47517,"stats":[]},"47555":{"connections":[{"id":51184,"orbit":0},{"id":18407,"orbit":0},{"id":39886,"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":22,"skill":47555,"stats":["+5 to any Attribute"]},"47560":{"connections":[],"group":1293,"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"]},"47591":{"connections":[{"id":9226,"orbit":-2}],"group":524,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":2,"orbitIndex":16,"skill":47591,"stats":["3% of Damage taken Recouped as Mana"]},"47606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":186,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":47606,"stats":[]},"47614":{"connections":[{"id":22219,"orbit":-7}],"group":1090,"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"]},"47623":{"connections":[{"id":38570,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":2,"orbitIndex":14,"skill":47623,"stats":["12% increased Grenade Damage"]},"47633":{"connectionArt":"CharacterPlanned","connections":[{"id":57002,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"47635":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1177,"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"]},"47677":{"connections":[{"id":9472,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":7,"orbitIndex":17,"skill":47677,"stats":["8% increased Projectile Speed"]},"47683":{"connections":[],"group":828,"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"]},"47709":{"connections":[{"id":63814,"orbit":0},{"id":40336,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":47709,"stats":["5% chance to inflict Bleeding on Hit"]},"47722":{"connections":[{"id":6514,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":3,"orbitIndex":4,"skill":47722,"stats":["16% increased Damage with Warcries"]},"47733":{"connections":[],"group":804,"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"]},"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"]},"47754":{"connections":[{"id":23455,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":16,"skill":47754,"stats":["10% increased Cold Damage"]},"47759":{"connections":[{"id":62677,"orbit":2147483647}],"flavourText":"Your grandchildren will awaken screaming in memory of what I utter today.","group":882,"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"]},"47782":{"connections":[{"id":38003,"orbit":4},{"id":28361,"orbit":-4}],"group":792,"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"]},"47790":{"connections":[{"id":17625,"orbit":0}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":47790,"stats":["Gain 1 Rage on Melee Hit"]},"47796":{"connections":[{"id":62640,"orbit":-4}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":47796,"stats":["3% increased Attack Speed"]},"47821":{"connections":[{"id":41033,"orbit":9}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":2,"orbitIndex":17,"skill":47821,"stats":["Offering Skills have 15% increased Buff effect"]},"47831":{"connections":[{"id":8734,"orbit":0},{"id":49996,"orbit":0}],"group":1370,"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"]},"47833":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":925,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":47833,"stats":[]},"47853":{"connections":[],"group":1420,"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"]},"47856":{"connections":[{"id":32561,"orbit":0}],"group":754,"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"]},"47893":{"connections":[{"id":57774,"orbit":0}],"group":833,"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"]},"47895":{"connections":[{"id":56493,"orbit":-2}],"group":1162,"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"]},"47931":{"connections":[{"id":33722,"orbit":0},{"id":39131,"orbit":0},{"id":9324,"orbit":0},{"id":53329,"orbit":0},{"id":63170,"orbit":0}],"group":156,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"47976":{"connections":[{"id":14446,"orbit":0},{"id":37876,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48006":{"connections":[{"id":33604,"orbit":0}],"group":630,"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"]},"48007":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":36302,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":48007,"stats":[]},"48014":{"connections":[],"group":212,"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"]},"48026":{"connections":[{"id":65439,"orbit":0},{"id":6623,"orbit":0}],"group":505,"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"]},"48030":{"connections":[{"id":62436,"orbit":0}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":1,"skill":48030,"stats":["15% increased maximum Energy Shield"]},"48035":{"connections":[{"id":11329,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":3,"skill":48035,"stats":["10% increased Life Regeneration rate"]},"48079":{"connectionArt":"CharacterPlanned","connections":[{"id":60014,"orbit":-7}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48103":{"connections":[{"id":52875,"orbit":0}],"group":1351,"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"]},"48116":{"connections":[{"id":21112,"orbit":0},{"id":34015,"orbit":0},{"id":18624,"orbit":0}],"group":1434,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48121":{"connections":[{"id":24438,"orbit":-5}],"group":486,"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"]},"48135":{"connections":[{"id":12750,"orbit":0}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":12,"skill":48135,"stats":["10% increased Charm Charges gained"]},"48137":{"connections":[{"id":33887,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":11,"skill":48137,"stats":["15% increased Crossbow Reload Speed"]},"48160":{"connectionArt":"CharacterPlanned","connections":[{"id":37778,"orbit":2147483647}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48171":{"connections":[],"group":249,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":13,"skill":48171,"stats":["12% increased Cold Damage"]},"48198":{"connections":[{"id":29361,"orbit":3},{"id":65437,"orbit":-5},{"id":40068,"orbit":-6},{"id":1215,"orbit":0},{"id":13411,"orbit":6}],"group":923,"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"]},"48215":{"connections":[{"id":516,"orbit":0},{"id":7201,"orbit":0},{"id":64488,"orbit":0},{"id":61347,"orbit":0}],"group":722,"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"]},"48240":{"connections":[{"id":48505,"orbit":0}],"group":462,"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"]},"48264":{"connections":[{"id":12964,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":1,"skill":48264,"stats":["Aura Skills have 5% increased Magnitudes"]},"48267":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":178,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":48267,"stats":[]},"48290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"id":55180,"orbit":0},{"id":49088,"orbit":0}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":15,"skill":48290,"stats":[]},"48305":{"connections":[{"id":37629,"orbit":6}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48314":{"connections":[{"id":61896,"orbit":5},{"id":3348,"orbit":-7},{"id":55897,"orbit":-3}],"group":102,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":48314,"stats":["3% increased Skill Speed while Shapeshifted"]},"48387":{"connections":[{"id":34415,"orbit":-4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":5,"orbitIndex":56,"skill":48387,"stats":["12% increased Physical Damage"]},"48401":{"connections":[{"id":35987,"orbit":0},{"id":61312,"orbit":0},{"id":10909,"orbit":5}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"48418":{"connections":[{"id":38235,"orbit":0}],"group":570,"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"]},"48429":{"connections":[{"id":58714,"orbit":0},{"id":36169,"orbit":0}],"group":736,"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"]},"48462":{"connections":[{"id":11094,"orbit":5},{"id":62803,"orbit":5}],"group":1329,"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"]},"48505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":462,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":18,"skill":48505,"stats":[]},"48524":{"connections":[{"id":43818,"orbit":0}],"group":472,"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"]},"48530":{"connections":[{"id":39130,"orbit":0},{"id":4623,"orbit":0}],"group":472,"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"]},"48531":{"connections":[{"id":13987,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":1,"orbitIndex":7,"skill":48531,"stats":["3% increased Melee Attack Speed"]},"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"]},"48544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":40166,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":48544,"stats":[]},"48551":{"ascendancyName":"Blood Mage","connections":[{"id":52703,"orbit":9}],"group":909,"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"]},"48552":{"connections":[{"id":43036,"orbit":0},{"id":7960,"orbit":0},{"id":23825,"orbit":0}],"group":432,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48565":{"connections":[{"id":47242,"orbit":0}],"group":262,"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"]},"48568":{"connections":[{"id":16489,"orbit":0}],"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":48568,"stats":["+5 to any Attribute"]},"48581":{"connections":[{"id":33242,"orbit":0},{"id":13387,"orbit":0}],"group":659,"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"]},"48583":{"connections":[{"id":58783,"orbit":0}],"group":896,"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"]},"48585":{"connections":[{"id":20831,"orbit":0},{"id":56325,"orbit":0}],"group":997,"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"]},"48588":{"connections":[{"id":2455,"orbit":0},{"id":13081,"orbit":0}],"group":764,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":14,"skill":48588,"stats":["8% increased Projectile Damage"]},"48589":{"connections":[{"id":7922,"orbit":-6}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":11,"skill":48589,"stats":["10% increased Life Recovery from Flasks"]},"48611":{"connections":[{"id":4271,"orbit":0},{"id":46554,"orbit":0}],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":0,"skill":48611,"stats":["Minions have +8% to all Elemental Resistances"]},"48614":{"connections":[{"id":9018,"orbit":2}],"group":541,"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"]},"48617":{"connections":[{"id":1915,"orbit":0},{"id":11667,"orbit":0},{"id":15839,"orbit":0},{"id":6266,"orbit":0},{"id":2978,"orbit":0}],"group":899,"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"]},"48618":{"connections":[{"id":37327,"orbit":7}],"group":537,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":12,"skill":48618,"stats":["10% increased Mana Regeneration Rate"]},"48631":{"connections":[{"id":35426,"orbit":0},{"id":59006,"orbit":-4}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48635":{"connections":[{"id":63526,"orbit":0},{"id":28361,"orbit":4},{"id":43444,"orbit":-4}],"group":789,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48649":{"connections":[{"id":51485,"orbit":0}],"group":515,"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"]},"48658":{"connections":[],"group":1089,"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"]},"48660":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":48660,"stats":[]},"48670":{"connections":[{"id":13241,"orbit":0},{"id":53589,"orbit":0},{"id":51299,"orbit":0},{"id":49231,"orbit":0},{"id":1865,"orbit":0}],"group":653,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"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"]},"48699":{"connections":[{"id":14601,"orbit":0}],"group":723,"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"]},"48714":{"connections":[],"group":458,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Speed","orbit":2,"orbitIndex":10,"skill":48714,"stats":["3% increased Attack Speed"]},"48717":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":199,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":7,"orbitIndex":16,"skill":48717,"stats":[]},"48734":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":1452,"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"]},"48745":{"connections":[{"id":22558,"orbit":0},{"id":7878,"orbit":-2}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":48745,"stats":["5% increased Block chance"]},"48761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connectionArt":"CharacterPlanned","connections":[],"group":479,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":48761,"stats":[],"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":1460,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"48774":{"connections":[{"id":27492,"orbit":2147483647}],"group":814,"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"]},"48805":{"connections":[{"id":7782,"orbit":4},{"id":26563,"orbit":0}],"group":1132,"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"]},"48821":{"connections":[{"id":15618,"orbit":-6}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":48821,"stats":["15% increased Critical Spell Damage Bonus"]},"48828":{"connectionArt":"CharacterPlanned","connections":[{"id":34840,"orbit":0}],"group":481,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48833":{"connections":[{"id":4,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48833,"stats":["10% increased Lightning Damage"]},"48836":{"connections":[{"id":33542,"orbit":0}],"group":1492,"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"]},"48846":{"connections":[{"id":44566,"orbit":0}],"group":897,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48846,"stats":["12% increased Lightning Damage"]},"48856":{"connections":[{"id":17882,"orbit":0}],"group":883,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":4,"skill":48856,"stats":["12% increased Grenade Damage"]},"48889":{"connections":[{"id":28038,"orbit":0},{"id":56488,"orbit":0}],"group":1174,"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"]},"48925":{"connections":[{"id":54887,"orbit":0}],"group":330,"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%"]},"48935":{"connectionArt":"CharacterPlanned","connections":[{"id":61367,"orbit":2147483647}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48974":{"connections":[{"id":47418,"orbit":0},{"id":10738,"orbit":0}],"group":1288,"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"]},"48979":{"connections":[{"id":51820,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":3,"orbitIndex":10,"skill":48979,"stats":["16% increased Totem Life"]},"49023":{"connections":[{"id":12817,"orbit":3},{"id":22975,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":1,"orbitIndex":6,"skill":49023,"stats":["5% increased Block chance"]},"49046":{"connections":[{"id":8569,"orbit":0}],"group":942,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49049":{"ascendancyName":"Chronomancer","connections":[],"group":391,"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%"]},"49088":{"connections":[{"id":17394,"orbit":7}],"group":913,"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"]},"49107":{"connections":[{"id":54562,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":14,"skill":49107,"stats":["10% increased Critical Hit Chance"]},"49110":{"connections":[{"id":54746,"orbit":-7}],"group":1106,"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"]},"49111":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":135,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":49111,"stats":[]},"49130":{"connections":[],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":19,"skill":49130,"stats":["6% reduced Projectile Speed"]},"49150":{"connections":[{"id":36759,"orbit":0}],"group":1172,"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"]},"49153":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49165":{"ascendancyName":"Deadeye","connections":[{"id":59913,"orbit":0}],"group":1502,"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"]},"49172":{"connections":[{"id":33730,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":9,"skill":49172,"stats":["3% increased Skill Speed with Channelling Skills"]},"49189":{"ascendancyName":"Stormweaver","connections":[],"group":517,"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"]},"49192":{"connections":[{"id":43396,"orbit":0},{"id":41615,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":12,"skill":49192,"stats":["20% increased Totem Placement speed"]},"49198":{"connections":[{"id":49023,"orbit":3}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":7,"orbitIndex":22,"skill":49198,"stats":["5% increased Block chance"]},"49214":{"connections":[{"id":50767,"orbit":0}],"group":125,"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"]},"49220":{"connections":[{"id":10429,"orbit":0},{"id":44223,"orbit":-3},{"id":53960,"orbit":-6},{"id":21336,"orbit":5},{"id":36778,"orbit":6}],"group":916,"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"]},"49231":{"connections":[{"id":43183,"orbit":0}],"group":621,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":0,"skill":49231,"stats":["3% increased Attack Speed"]},"49235":{"connections":[{"id":42077,"orbit":0}],"group":712,"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"]},"49256":{"connections":[{"id":14439,"orbit":4}],"group":116,"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"]},"49258":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":49259,"stats":[]},"49280":{"connections":[{"id":36170,"orbit":3}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":49280,"stats":["12% increased Armour and Evasion Rating"]},"49285":{"connections":[{"id":364,"orbit":9}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":22,"skill":49285,"stats":["+8 to Strength"]},"49291":{"connections":[{"id":57945,"orbit":0}],"group":1250,"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"]},"49320":{"connections":[{"id":52215,"orbit":0}],"group":1444,"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"]},"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"]},"49356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1405,"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"]},"49357":{"connections":[{"id":32194,"orbit":0},{"id":51618,"orbit":-9}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"49363":{"connections":[],"flavourText":"The world is a pattern, moving in natural waves.\\nWith enough force, those waves can be made to converge...","group":548,"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"]},"49370":{"connections":[{"id":6502,"orbit":0}],"group":173,"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"]},"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"]},"49388":{"connections":[{"id":37304,"orbit":0},{"id":38215,"orbit":-7},{"id":4806,"orbit":7}],"group":1305,"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"]},"49391":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":582,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":49391,"stats":[]},"49394":{"connections":[{"id":23786,"orbit":0}],"group":1128,"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"]},"49406":{"connections":[{"id":52125,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":45,"skill":49406,"stats":["10% increased Projectile Damage"]},"49455":{"connections":[],"group":609,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":5,"skill":49455,"stats":["15% increased maximum Energy Shield"]},"49461":{"connections":[{"id":50912,"orbit":2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Speed","orbit":2,"orbitIndex":23,"skill":49461,"stats":["3% increased Attack Speed"]},"49466":{"connections":[{"id":30871,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":12,"skill":49466,"stats":["10% increased Life Recovery from Flasks"]},"49473":{"connections":[{"id":61104,"orbit":0}],"group":1062,"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"]},"49485":{"connections":[{"id":12174,"orbit":-9},{"id":49107,"orbit":9}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Dexterity","orbit":2,"orbitIndex":18,"skill":49485,"stats":["+8 to Dexterity"]},"49497":{"connections":[{"id":23244,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":6,"skill":49497,"stats":["5% increased Culling Strike Threshold"]},"49503":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1519,"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"]},"49512":{"connections":[{"id":61419,"orbit":0},{"id":15885,"orbit":0},{"id":5936,"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":49512,"stats":["+5 to any Attribute"]},"49537":{"connections":[],"group":353,"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"]},"49543":{"connectionArt":"CharacterPlanned","connections":[{"id":13108,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49545":{"connections":[{"id":64851,"orbit":2}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":7,"orbitIndex":13,"skill":49545,"stats":["20% increased Parry Damage"]},"49547":{"connections":[],"flavourText":"Hope is a mistake. Pain is the only truth.","group":425,"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"]},"49550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":549,"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"]},"49593":{"connections":[{"id":4725,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":7,"orbitIndex":21,"skill":49593,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"49618":{"connections":[{"id":38663,"orbit":0},{"id":55348,"orbit":0}],"group":614,"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"]},"49633":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":815,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":49633,"stats":[]},"49642":{"connections":[{"id":4882,"orbit":0}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":1,"skill":49642,"stats":["15% increased Totem Damage"]},"49657":{"connections":[{"id":54417,"orbit":0},{"id":63526,"orbit":6},{"id":43578,"orbit":6},{"id":58109,"orbit":0}],"group":784,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"49661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1128,"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"]},"49691":{"connections":[{"id":13828,"orbit":0},{"id":31409,"orbit":0},{"id":61106,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":21,"skill":49691,"stats":["+16 to Evasion Rating"]},"49696":{"connections":[{"id":10273,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":12,"skill":49696,"stats":["+3 to all Attributes"]},"49734":{"connections":[{"id":46741,"orbit":0},{"id":9414,"orbit":0},{"id":32768,"orbit":0}],"group":229,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49740":{"connections":[{"id":27274,"orbit":0}],"group":1063,"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"]},"49759":{"ascendancyName":"Stormweaver","connections":[{"id":2857,"orbit":6}],"group":517,"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"]},"49769":{"connectionArt":"CharacterPlanned","connections":[{"id":21374,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49799":{"connections":[{"id":46224,"orbit":0}],"group":956,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":20,"skill":49799,"stats":["10% increased Mana Recovery from Flasks"]},"49804":{"connections":[{"id":24035,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":22,"skill":49804,"stats":["10% increased Exposure Effect"]},"49929":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":137,"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"],"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":348,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"49952":{"connections":[{"id":13856,"orbit":0}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":6,"skill":49952,"stats":["12% increased Magnitude of Ailments you inflict"]},"49968":{"connections":[{"id":20008,"orbit":0}],"group":1164,"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"]},"49976":{"connections":[{"id":62936,"orbit":7},{"id":47976,"orbit":-3}],"group":1294,"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"]},"49984":{"connections":[],"group":1231,"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"]},"49993":{"connections":[{"id":40632,"orbit":2},{"id":64434,"orbit":0},{"id":7526,"orbit":0}],"group":1174,"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"]},"49996":{"connections":[{"id":32183,"orbit":0},{"id":38215,"orbit":-4},{"id":5163,"orbit":3},{"id":33463,"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":49996,"stats":["+5 to any Attribute"]},"50023":{"connections":[{"id":4921,"orbit":0},{"id":259,"orbit":0}],"group":508,"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"]},"50062":{"connections":[{"id":37641,"orbit":0}],"group":273,"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"]},"50084":{"connections":[{"id":61525,"orbit":0}],"group":692,"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"]},"50098":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":11771,"orbit":0}],"group":1533,"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"]},"50104":{"connections":[{"id":47168,"orbit":0},{"id":37594,"orbit":0},{"id":7960,"orbit":0},{"id":46742,"orbit":0}],"group":482,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"50107":{"connections":[{"id":50881,"orbit":0}],"group":1033,"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"]},"50118":{"connections":[{"id":55450,"orbit":0}],"group":203,"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"]},"50121":{"connections":[{"id":3128,"orbit":0}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":50121,"stats":["10% increased Cold Damage"]},"50124":{"connections":[{"id":62237,"orbit":0}],"group":868,"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"]},"50142":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50146":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":3,"orbitIndex":8,"skill":50146,"stats":[]},"50150":{"connections":[{"id":37279,"orbit":0}],"group":840,"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"]},"50184":{"connectionArt":"CharacterPlanned","connections":[{"id":46069,"orbit":0}],"group":434,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50192":{"ascendancyName":"Blood Mage","connections":[{"id":31223,"orbit":-9}],"group":1018,"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"]},"50216":{"connections":[{"id":44951,"orbit":3},{"id":17655,"orbit":4}],"group":610,"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"]},"50219":{"ascendancyName":"Chronomancer","connections":[{"id":42035,"orbit":0}],"group":358,"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"]},"50228":{"connections":[{"id":20511,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":50228,"stats":["10% increased Fire Damage"]},"50239":{"connections":[{"id":37434,"orbit":0}],"group":964,"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"]},"50253":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":350,"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"]},"50268":{"connections":[{"id":2446,"orbit":0}],"group":1171,"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"]},"50273":{"connections":[{"id":47893,"orbit":0},{"id":63267,"orbit":0},{"id":3131,"orbit":0}],"group":833,"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"]},"50277":{"connections":[{"id":50701,"orbit":0}],"group":1324,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50277,"stats":["15% increased Magnitude of Shock you inflict"]},"50302":{"connections":[{"id":63470,"orbit":0}],"group":410,"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"]},"50328":{"connections":[{"id":28992,"orbit":0},{"id":10053,"orbit":0}],"group":967,"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"]},"50342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":5227,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":17,"skill":50342,"stats":["15% increased Evasion Rating"]},"50383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":752,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":50383,"stats":[]},"50392":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":206,"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"]},"50403":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1373,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50403,"stats":[]},"50420":{"connections":[{"id":51241,"orbit":-2},{"id":31364,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":2,"skill":50420,"stats":["10% increased Charm Charges gained"]},"50423":{"connections":[{"id":38856,"orbit":0},{"id":23364,"orbit":0},{"id":56547,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"50437":{"connections":[{"id":35987,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":50437,"stats":["15% increased Evasion Rating"]},"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":873,"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","name":"RANGER","orbit":0,"orbitIndex":0,"skill":50459,"stats":[]},"50469":{"connections":[{"id":32701,"orbit":0}],"group":1105,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"50483":{"connections":[{"id":61842,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":22,"skill":50483,"stats":["Minions have 8% increased Area of Effect"]},"50485":{"connections":[{"id":22959,"orbit":0}],"group":960,"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"]},"50510":{"connections":[{"id":46384,"orbit":0}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":18,"skill":50510,"stats":["5% increased Block chance"]},"50516":{"connections":[{"id":2814,"orbit":0}],"group":1010,"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"]},"50535":{"connections":[{"id":10612,"orbit":2}],"group":733,"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"]},"50540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"id":16499,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":50540,"stats":[]},"50558":{"connections":[{"id":32194,"orbit":0},{"id":12462,"orbit":0}],"group":567,"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"]},"50561":{"connections":[{"id":12418,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":18,"skill":50561,"stats":["Empowered Attacks deal 16% increased Damage"]},"50562":{"connections":[{"id":43142,"orbit":0}],"group":337,"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"]},"50574":{"connections":[{"id":19426,"orbit":0},{"id":46034,"orbit":0}],"group":1052,"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"]},"50588":{"connections":[{"id":6010,"orbit":0}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":2,"skill":50588,"stats":["8% increased Accuracy Rating"]},"50609":{"connections":[{"id":11916,"orbit":0}],"group":801,"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"]},"50616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":252,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":50616,"stats":[]},"50626":{"connections":[{"id":32597,"orbit":0}],"group":674,"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"]},"50629":{"connections":[{"id":3218,"orbit":0},{"id":23930,"orbit":0},{"id":24430,"orbit":0}],"group":266,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":50629,"stats":["10% increased Elemental Damage"]},"50635":{"connections":[{"id":25971,"orbit":0},{"id":42750,"orbit":5},{"id":9050,"orbit":-5}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":13,"skill":50635,"stats":["3% increased Attack Speed"]},"50673":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":58526,"orbit":-2},{"id":62427,"orbit":-2}],"group":1261,"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"]},"50687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":743,"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"]},"50701":{"connections":[{"id":44932,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50701,"stats":["15% increased Magnitude of Shock you inflict"]},"50715":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"50720":{"connections":[{"id":43557,"orbit":0},{"id":11376,"orbit":-3},{"id":34199,"orbit":3},{"id":30523,"orbit":3}],"group":769,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":23,"skill":50720,"stats":["Minions deal 10% increased Damage"]},"50755":{"connections":[{"id":10131,"orbit":9},{"id":39567,"orbit":0},{"id":19355,"orbit":8}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":5,"skill":50755,"stats":["+8 to Intelligence"]},"50757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":295,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":50757,"stats":[]},"50767":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":112,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":0,"skill":50767,"stats":[]},"50795":{"connections":[{"id":58013,"orbit":0},{"id":20744,"orbit":0}],"group":952,"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"]},"50816":{"connections":[{"id":46554,"orbit":-9},{"id":39567,"orbit":0},{"id":37974,"orbit":-5}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":67,"skill":50816,"stats":["+8 to Intelligence"]},"50817":{"connections":[{"id":61355,"orbit":2}],"group":1229,"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"]},"50820":{"connections":[{"id":65472,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":17,"skill":50820,"stats":["15% increased Glory generation"]},"50837":{"connections":[{"id":14598,"orbit":0}],"group":701,"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"]},"50847":{"connections":[{"id":1130,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":7,"orbitIndex":5,"skill":50847,"stats":["10% increased Damage with Flails"]},"50879":{"connections":[{"id":14211,"orbit":7}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":4,"skill":50879,"stats":["16% increased Hazard Damage"]},"50881":{"connections":[{"id":55420,"orbit":0}],"group":1033,"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"]},"50884":{"connections":[{"id":53696,"orbit":0}],"group":1113,"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"]},"50908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":633,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50912":{"connections":[],"group":1123,"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"]},"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":786,"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","name":"DUELIST","orbit":0,"orbitIndex":0,"skill":50986,"stats":[]},"51006":{"connections":[{"id":41877,"orbit":0}],"group":1288,"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"]},"51040":{"connections":[{"id":9652,"orbit":0}],"group":1295,"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"]},"51048":{"connections":[{"id":17702,"orbit":0},{"id":58814,"orbit":0},{"id":33946,"orbit":0},{"id":30910,"orbit":0}],"group":1068,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"51052":{"connections":[{"id":22558,"orbit":0},{"id":761,"orbit":-8},{"id":51183,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51105":{"connections":[{"id":48979,"orbit":0},{"id":21127,"orbit":0}],"group":292,"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"]},"51129":{"connections":[{"id":15892,"orbit":0},{"id":48717,"orbit":0}],"group":183,"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"]},"51142":{"ascendancyName":"Lich","connections":[{"id":26085,"orbit":-4}],"group":1173,"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"]},"51169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":793,"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"]},"51183":{"connections":[{"id":45301,"orbit":0},{"id":10635,"orbit":0}],"group":419,"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"]},"51184":{"connections":[{"id":41965,"orbit":-4},{"id":29502,"orbit":6},{"id":3242,"orbit":-4}],"group":746,"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"]},"51194":{"connections":[{"id":24060,"orbit":4},{"id":18793,"orbit":-5},{"id":49512,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":0,"skill":51194,"stats":["10% increased Elemental Infusion duration"]},"51206":{"connections":[{"id":49642,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":17,"skill":51206,"stats":["15% increased Totem Damage"]},"51210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":195,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":51210,"stats":[]},"51213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":64747,"orbit":5}],"group":1122,"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"]},"51234":{"connections":[{"id":15991,"orbit":-2},{"id":27434,"orbit":7}],"group":840,"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"]},"51241":{"connections":[{"id":55118,"orbit":-2}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":10,"skill":51241,"stats":["10% increased Charm Charges gained"]},"51248":{"connections":[{"id":38292,"orbit":0},{"id":6015,"orbit":4}],"group":546,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":9,"skill":51248,"stats":["10% increased Fire Damage"]},"51267":{"connections":[{"id":11886,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":19,"skill":51267,"stats":["15% increased Stun Buildup"]},"51299":{"connections":[{"id":35265,"orbit":0},{"id":19802,"orbit":0},{"id":44419,"orbit":0}],"group":565,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51303":{"connections":[{"id":38965,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":1,"orbitIndex":11,"skill":51303,"stats":["10% increased Elemental Infusion duration"]},"51335":{"connections":[{"id":51968,"orbit":-6},{"id":5726,"orbit":0}],"group":747,"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"]},"51336":{"connections":[{"id":56818,"orbit":4},{"id":53965,"orbit":0}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":45,"skill":51336,"stats":["12% increased Elemental Damage with Attacks"]},"51369":{"connections":[{"id":56061,"orbit":0},{"id":45503,"orbit":0}],"group":422,"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"]},"51394":{"connections":[{"id":29993,"orbit":0}],"group":288,"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"]},"51416":{"connections":[{"id":32016,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":54,"skill":51416,"stats":["3% increased Cast Speed"]},"51446":{"connections":[{"id":53647,"orbit":-7},{"id":19750,"orbit":0}],"group":708,"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"]},"51454":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":492,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":51454,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51463":{"connections":[{"id":4364,"orbit":0}],"group":1104,"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"]},"51485":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":515,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":51485,"stats":[]},"51509":{"connections":[{"id":35848,"orbit":7},{"id":9393,"orbit":0}],"group":972,"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"]},"51522":{"connections":[{"id":56493,"orbit":-7}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":22,"skill":51522,"stats":["3% increased Attack Speed"]},"51534":{"connections":[{"id":24483,"orbit":0}],"group":561,"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"]},"51535":{"connections":[{"id":8852,"orbit":0}],"group":138,"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"]},"51546":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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 if","you have the Way of the Mountain Ascendancy Passive Skill"]},"51561":{"connections":[{"id":25312,"orbit":0},{"id":2491,"orbit":0},{"id":7716,"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":51561,"stats":["+5 to any Attribute"]},"51565":{"connections":[{"id":2335,"orbit":0},{"id":22682,"orbit":0}],"group":1191,"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"]},"51583":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":51583,"stats":[]},"51602":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1357,"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"]},"51606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":65207,"orbit":-7}],"group":1236,"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"]},"51618":{"connectionArt":"CharacterPlanned","connections":[{"id":11580,"orbit":0},{"id":43324,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51672":{"connections":[{"id":31955,"orbit":0}],"group":275,"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"]},"51683":{"connections":[],"group":375,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":22,"skill":51683,"stats":["15% increased Totem Damage"]},"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"]},"51702":{"connections":[],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":16,"skill":51702,"stats":["+8 to Strength"]},"51707":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":38728,"orbit":5},{"id":41163,"orbit":0}],"group":1426,"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"]},"51708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":51708,"stats":[]},"51728":{"connections":[{"id":6505,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":2,"orbitIndex":7,"skill":51728,"stats":["15% chance to Pierce an Enemy"]},"51732":{"connections":[{"id":26568,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":16,"skill":51732,"stats":["3% increased Attack Speed"]},"51735":{"connections":[{"id":44707,"orbit":0}],"group":709,"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"]},"51737":{"ascendancyName":"Witchhunter","connections":[{"id":8272,"orbit":-8}],"group":235,"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"]},"51741":{"connections":[{"id":61834,"orbit":0},{"id":57230,"orbit":-4},{"id":57821,"orbit":0},{"id":45798,"orbit":0},{"id":15424,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51743":{"connections":[{"id":57617,"orbit":3}],"group":354,"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"]},"51749":{"connections":[{"id":30141,"orbit":0}],"flavourText":"Lay open your veins, and draw power from your own spilled life.","group":129,"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"]},"51774":{"connections":[{"id":34425,"orbit":2}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":16,"skill":51774,"stats":["15% reduced Volatility Explosion delay"]},"51788":{"connections":[{"id":5066,"orbit":-2}],"group":654,"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"]},"51795":{"connections":[{"id":32271,"orbit":-2},{"id":53632,"orbit":7}],"group":357,"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"]},"51797":{"connections":[{"id":23939,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":51797,"stats":["3% of Damage taken Recouped as Life"]},"51807":{"connections":[{"id":57089,"orbit":0}],"group":203,"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"]},"51812":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":51812,"stats":[]},"51820":{"connections":[{"id":21127,"orbit":0}],"group":292,"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"]},"51821":{"connections":[{"id":20115,"orbit":0},{"id":25014,"orbit":0},{"id":39102,"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":51821,"stats":["+5 to any Attribute"]},"51825":{"connections":[{"id":47363,"orbit":0},{"id":9164,"orbit":0},{"id":13708,"orbit":0}],"group":754,"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"]},"51832":{"connections":[{"id":47722,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":2,"orbitIndex":6,"skill":51832,"stats":["16% increased Damage with Warcries"]},"51847":{"connections":[{"id":33974,"orbit":0}],"group":839,"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"]},"51850":{"connectionArt":"CharacterPlanned","connections":[{"id":9535,"orbit":0},{"id":37434,"orbit":0}],"group":964,"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"],"unlockConstraint":{"nodes":[50239,9535,61309]}},"51867":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":386,"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"]},"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"]},"51871":{"connections":[{"id":8045,"orbit":0}],"group":1279,"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"]},"51891":{"connections":[{"id":25528,"orbit":0}],"group":1294,"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"]},"51892":{"connections":[{"id":59387,"orbit":0},{"id":64427,"orbit":0},{"id":44188,"orbit":0}],"group":930,"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"]},"51903":{"connections":[{"id":55058,"orbit":0},{"id":39347,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":17,"skill":51903,"stats":["10% increased Melee Damage"]},"51921":{"connections":[{"id":36629,"orbit":-4}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"51934":{"connections":[],"group":1233,"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"]},"51944":{"connections":[{"id":49406,"orbit":0},{"id":51728,"orbit":0},{"id":47683,"orbit":0}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":15,"skill":51944,"stats":["10% increased Projectile Damage"]},"51968":{"connections":[],"group":747,"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"]},"51974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"id":25711,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":51974,"stats":[]},"52003":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":742,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":2,"orbitIndex":18,"skill":52003,"stats":[]},"52038":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":542,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":52038,"stats":[]},"52053":{"connections":[{"id":14048,"orbit":3},{"id":24120,"orbit":-4}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":16,"skill":52053,"stats":["10% increased Mana Regeneration Rate"]},"52060":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52060,"stats":[]},"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%"]},"52106":{"connections":[{"id":44005,"orbit":0},{"id":10295,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":34,"skill":52106,"stats":["3% increased Cast Speed"]},"52115":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"52125":{"connections":[{"id":2847,"orbit":0},{"id":21721,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"52126":{"connections":[{"id":21885,"orbit":3}],"group":258,"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"]},"52180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1472,"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"]},"52191":{"connections":[{"id":57724,"orbit":-7}],"group":1247,"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"]},"52199":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":44498,"orbit":0}],"group":739,"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"]},"52215":{"connections":[{"id":56366,"orbit":0}],"group":1467,"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"]},"52220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":216,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":52220,"stats":[]},"52229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":662,"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"]},"52241":{"connections":[{"id":94,"orbit":2}],"group":907,"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"]},"52245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1431,"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"]},"52254":{"connections":[{"id":42290,"orbit":0}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":14,"skill":52254,"stats":["6% increased Curse Magnitudes"]},"52257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1412,"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"]},"52260":{"connections":[{"id":3688,"orbit":-2}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":8,"skill":52260,"stats":["Meta Skills gain 8% increased Energy"]},"52274":{"connections":[{"id":3109,"orbit":0},{"id":21077,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":9,"skill":52274,"stats":["12% increased Grenade Damage"]},"52295":{"ascendancyName":"Martial Artist","connections":[{"id":39595,"orbit":7}],"group":1510,"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"]},"52298":{"connections":[{"id":4527,"orbit":0},{"id":26725,"orbit":0},{"id":53308,"orbit":0},{"id":31805,"orbit":0},{"id":52126,"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":52298,"stats":["+5 to any Attribute"]},"52300":{"connections":[{"id":53440,"orbit":0}],"group":176,"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"]},"52319":{"connections":[{"id":48305,"orbit":-6}],"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":6,"orbitIndex":36,"skill":52319,"stats":["+5 to any Attribute"]},"52348":{"connections":[{"id":51206,"orbit":-5},{"id":34487,"orbit":0}],"group":526,"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"]},"52351":{"connections":[{"id":52260,"orbit":0}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":12,"skill":52351,"stats":["Meta Skills gain 8% increased Energy"]},"52354":{"connections":[{"id":41171,"orbit":0}],"group":975,"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"]},"52361":{"connections":[{"id":26107,"orbit":7}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":2,"orbitIndex":9,"skill":52361,"stats":["10% increased Projectile Damage"]},"52373":{"connections":[{"id":37276,"orbit":-2},{"id":56342,"orbit":7}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":20,"skill":52373,"stats":["+2 to Maximum Rage"]},"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"]},"52392":{"connections":[{"id":25934,"orbit":0}],"group":401,"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"]},"52395":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":56331,"orbit":0},{"id":26283,"orbit":0},{"id":664,"orbit":0}],"group":1533,"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":[]},"52399":{"connections":[{"id":9444,"orbit":0}],"group":1462,"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"]},"52410":{"connections":[],"group":1442,"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"]},"52415":{"connections":[{"id":32655,"orbit":0}],"group":1291,"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"]},"52429":{"connections":[{"id":58930,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":13,"skill":52429,"stats":["3% increased Cast Speed"]},"52440":{"connections":[{"id":53893,"orbit":0}],"group":203,"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"]},"52442":{"connections":[],"group":787,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":52442,"stats":["3% increased Attack Speed"]},"52445":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52445,"stats":[]},"52448":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"52454":{"connections":[{"id":46604,"orbit":3}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":21,"skill":52454,"stats":["7% increased Chaos Damage"]},"52462":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":466,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":52462,"stats":[]},"52464":{"connections":[],"group":1231,"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"]},"52501":{"connections":[{"id":60700,"orbit":2147483647}],"group":1219,"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"]},"52537":{"connections":[],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Penetration","orbit":2,"orbitIndex":13,"skill":52537,"stats":["10% increased Magnitude of Chill you inflict"]},"52556":{"connections":[{"id":16347,"orbit":-7},{"id":28304,"orbit":0}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":8,"skill":52556,"stats":["+2 to Maximum Rage"]},"52568":{"connections":[{"id":3665,"orbit":-7},{"id":62779,"orbit":0}],"group":987,"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"]},"52574":{"connections":[{"id":55478,"orbit":-7}],"group":630,"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"]},"52576":{"connections":[{"id":64550,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":9,"skill":52576,"stats":["20% increased Damage against Immobilised Enemies"]},"52615":{"connections":[],"group":1362,"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"]},"52618":{"connections":[{"id":32777,"orbit":0}],"group":320,"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"]},"52630":{"connections":[{"id":61800,"orbit":0},{"id":28371,"orbit":0}],"group":1364,"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"]},"52659":{"connections":[{"id":10362,"orbit":0}],"group":162,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":20,"skill":52659,"stats":["10% increased Life Regeneration rate"]},"52676":{"connections":[],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":7,"orbitIndex":3,"skill":52676,"stats":["16% increased Minion Duration"]},"52684":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":8115,"orbit":0}],"group":664,"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"]},"52695":{"connections":[{"id":57230,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":1,"skill":52695,"stats":["10% increased Physical Damage"]},"52703":{"ascendancyName":"Blood Mage","connections":[],"group":940,"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"]},"52743":{"connections":[{"id":34541,"orbit":0}],"group":1370,"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"]},"52746":{"connections":[{"id":9796,"orbit":0},{"id":64471,"orbit":3}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":52746,"stats":["12% increased Fire Damage"]},"52764":{"connections":[{"id":47606,"orbit":0}],"group":186,"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"]},"52765":{"connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":52765,"stats":["10% increased Mana Regeneration Rate"]},"52774":{"connections":[{"id":5084,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":52774,"stats":["30% increased Flammability Magnitude"]},"52796":{"connections":[{"id":30371,"orbit":-6}],"group":177,"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"]},"52799":{"connections":[{"id":47270,"orbit":-4},{"id":19955,"orbit":4},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":3,"orbitIndex":0,"skill":52799,"stats":["15% increased Freeze Buildup"]},"52800":{"connections":[{"id":57615,"orbit":0}],"group":1492,"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"]},"52803":{"connections":[{"id":59356,"orbit":0}],"group":1249,"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"]},"52807":{"connections":[{"id":60551,"orbit":0},{"id":61836,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":52807,"stats":["15% increased Presence Area of Effect"]},"52829":{"connections":[{"id":375,"orbit":0}],"group":126,"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"]},"52836":{"connections":[{"id":11980,"orbit":7},{"id":56806,"orbit":0}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":66,"skill":52836,"stats":["5% increased Block chance"]},"52860":{"connections":[{"id":45494,"orbit":0},{"id":40975,"orbit":0}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":12,"skill":52860,"stats":["15% increased Ballista damage"]},"52875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1351,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":52875,"stats":[]},"52971":{"connections":[{"id":21227,"orbit":-2},{"id":25528,"orbit":0}],"group":1294,"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"]},"52973":{"connections":[{"id":12851,"orbit":0},{"id":57555,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":2,"orbitIndex":11,"skill":52973,"stats":["15% chance to Impale on Spell Hit"]},"52980":{"connections":[{"id":18970,"orbit":0},{"id":44343,"orbit":-4}],"group":923,"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"]},"52993":{"connectionArt":"CharacterPlanned","connections":[{"id":9414,"orbit":0}],"group":282,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53030":{"connections":[{"id":11525,"orbit":0},{"id":48267,"orbit":0}],"group":178,"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"]},"53089":{"connections":[{"id":9918,"orbit":0},{"id":10474,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":53089,"stats":["6% increased Area of Effect for Attacks"]},"53094":{"connections":[{"id":38703,"orbit":0},{"id":51048,"orbit":0}],"group":1099,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":20,"skill":53094,"stats":["8% increased Accuracy Rating"]},"53108":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36822,"orbit":0}],"group":532,"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"]},"53123":{"connections":[{"id":8421,"orbit":-2},{"id":54982,"orbit":-2},{"id":5862,"orbit":-2}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","name":"Shaman","orbit":7,"orbitIndex":18,"skill":53123,"stats":["+3% to all Elemental Resistances"]},"53131":{"connections":[{"id":7060,"orbit":0},{"id":46665,"orbit":0}],"group":255,"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"]},"53149":{"connections":[{"id":24647,"orbit":-5}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":22,"skill":53149,"stats":["15% increased Freeze Buildup"]},"53150":{"connections":[{"id":15270,"orbit":0},{"id":17589,"orbit":0}],"group":1403,"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"]},"53166":{"connections":[{"id":26194,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":21,"skill":53166,"stats":["20% increased Presence Area of Effect"]},"53177":{"connections":[{"id":43944,"orbit":2147483647}],"group":1281,"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"]},"53185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1449,"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"]},"53187":{"connections":[{"id":35011,"orbit":0},{"id":57775,"orbit":0}],"group":426,"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"]},"53188":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":53188,"stats":[]},"53194":{"connections":[{"id":38130,"orbit":3}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":16,"skill":53194,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"53196":{"connections":[{"id":46692,"orbit":0}],"group":972,"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"]},"53207":{"connections":[{"id":47635,"orbit":0},{"id":56914,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":1,"orbitIndex":4,"skill":53207,"stats":["Damage Penetrates 6% Lightning Resistance"]},"53216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":258,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":53216,"stats":[]},"53261":{"connections":[{"id":30780,"orbit":-2}],"group":122,"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"]},"53265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1429,"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"]},"53266":{"connections":[{"id":13576,"orbit":0},{"id":20387,"orbit":0},{"id":53560,"orbit":0}],"group":955,"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"]},"53272":{"connections":[{"id":2560,"orbit":0},{"id":2582,"orbit":0}],"group":1472,"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"]},"53280":{"ascendancyName":"Martial Artist","connections":[{"id":41751,"orbit":3}],"group":1510,"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"]},"53294":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":33397,"orbit":0}],"group":546,"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"]},"53308":{"connections":[{"id":17138,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":5,"skill":53308,"stats":["10% increased Melee Damage"]},"53320":{"connections":[{"id":43791,"orbit":0}],"group":667,"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"]},"53324":{"connections":[],"group":455,"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"]},"53329":{"connections":[{"id":64724,"orbit":0}],"group":178,"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"]},"53354":{"connections":[{"id":36250,"orbit":4},{"id":33408,"orbit":5},{"id":20289,"orbit":0}],"group":118,"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"]},"53367":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":505,"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"]},"53373":{"connections":[{"id":39517,"orbit":3},{"id":36629,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":4,"orbitIndex":45,"skill":53373,"stats":["12% increased Stun Threshold"]},"53386":{"connections":[{"id":57388,"orbit":0}],"group":228,"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"]},"53396":{"connections":[{"id":10156,"orbit":6}],"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":6,"orbitIndex":12,"skill":53396,"stats":["+5 to any Attribute"]},"53405":{"connections":[{"id":17468,"orbit":0},{"id":16090,"orbit":6},{"id":26798,"orbit":4},{"id":8693,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"53440":{"connections":[{"id":11306,"orbit":0}],"group":176,"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"]},"53443":{"connections":[{"id":5710,"orbit":-6},{"id":59767,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":8,"skill":53443,"stats":["10% increased Attack Area Damage"]},"53444":{"connections":[{"id":752,"orbit":5}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":4,"orbitIndex":31,"skill":53444,"stats":["12% increased Minion Duration"]},"53471":{"connections":[{"id":11836,"orbit":0}],"group":1243,"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"]},"53505":{"connections":[{"id":21468,"orbit":6}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":18,"skill":53505,"stats":["Leech Life 8% faster"]},"53524":{"connections":[{"id":32727,"orbit":0}],"group":683,"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"]},"53527":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"53539":{"connections":[{"id":46705,"orbit":0},{"id":13379,"orbit":0}],"group":1056,"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"]},"53560":{"connections":[{"id":46157,"orbit":0}],"group":988,"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"]},"53566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1104,"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"]},"53589":{"connections":[{"id":25374,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"53595":{"connections":[{"id":29458,"orbit":7},{"id":38628,"orbit":0}],"group":1484,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":19,"skill":53595,"stats":["10% increased Magnitude of Poison you inflict"]},"53607":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"53632":{"connections":[{"id":28482,"orbit":3}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":2,"orbitIndex":8,"skill":53632,"stats":["12% increased Fire Damage"]},"53647":{"connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":12,"skill":53647,"stats":["12% increased Armour and Evasion Rating"]},"53675":{"connections":[{"id":59498,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":0,"skill":53675,"stats":["15% increased Presence Area of Effect"]},"53683":{"connections":[{"id":30082,"orbit":0},{"id":61432,"orbit":0}],"group":921,"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"]},"53696":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":53696,"stats":[]},"53697":{"connections":[{"id":47555,"orbit":7},{"id":3041,"orbit":-3}],"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":5,"orbitIndex":26,"skill":53697,"stats":["+5 to any Attribute"]},"53698":{"connections":[{"id":20916,"orbit":-3},{"id":59355,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":53698,"stats":["10% increased Attack Damage"]},"53719":{"connections":[{"id":27082,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"53762":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36728,"orbit":2147483647}],"group":521,"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"]},"53771":{"connections":[{"id":52361,"orbit":-2}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":9,"skill":53771,"stats":["10% increased Projectile Damage"]},"53785":{"connections":[{"id":1170,"orbit":0},{"id":23307,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":18,"skill":53785,"stats":["6% increased Area of Effect for Attacks"]},"53795":{"connections":[{"id":62210,"orbit":5},{"id":53324,"orbit":-4},{"id":64804,"orbit":-5}],"group":455,"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"]},"53804":{"connections":[{"id":56112,"orbit":7}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":4,"orbitIndex":48,"skill":53804,"stats":["10% increased Fire Damage"]},"53822":{"connections":[],"group":133,"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"]},"53823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":10508,"orbit":-3}],"group":177,"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"]},"53853":{"connections":[{"id":57320,"orbit":0}],"group":697,"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"]},"53893":{"connections":[{"id":21784,"orbit":0}],"group":203,"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"]},"53895":{"connections":[{"id":17303,"orbit":2}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Fuse Duration","orbit":3,"orbitIndex":8,"skill":53895,"stats":["15% reduced Grenade Detonation Time"]},"53901":{"connections":[{"id":34375,"orbit":7}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":3,"orbitIndex":12,"skill":53901,"stats":["5% increased Block chance"]},"53910":{"connectionArt":"CharacterPlanned","connections":[{"id":9212,"orbit":0},{"id":58368,"orbit":7}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":58838,"orbit":0},{"id":40596,"orbit":0}],"group":305,"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"]},"53935":{"connections":[{"id":10677,"orbit":2},{"id":25281,"orbit":0}],"group":995,"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"]},"53938":{"connections":[{"id":36931,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":18,"skill":53938,"stats":["10% increased Attack Damage"]},"53941":{"connections":[{"id":17283,"orbit":0}],"group":1109,"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"]},"53958":{"connections":[{"id":51006,"orbit":2}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":53958,"stats":["10% increased Mana Recovery from Flasks"]},"53960":{"connections":[{"id":8975,"orbit":-5}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"53965":{"connections":[{"id":12337,"orbit":0}],"group":1026,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":53965,"stats":["Damage Penetrates 6% Lightning Resistance"]},"53975":{"connections":[{"id":33254,"orbit":0}],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":8,"skill":53975,"stats":["10% increased Spell Damage"]},"53989":{"connections":[{"id":29372,"orbit":8}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":6,"orbitIndex":59,"skill":53989,"stats":["Gain 1 Rage on Melee Hit"]},"53996":{"connections":[{"id":9941,"orbit":7},{"id":28556,"orbit":3}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":22,"skill":53996,"stats":["8% increased Melee Damage"]},"54031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1409,"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"]},"54036":{"connections":[{"id":30720,"orbit":0},{"id":15809,"orbit":-7},{"id":17501,"orbit":-7},{"id":18485,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":3,"orbitIndex":2,"skill":54036,"stats":["Minions deal 10% increased Damage"]},"54058":{"connections":[{"id":62001,"orbit":0}],"group":1477,"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"]},"54067":{"connections":[{"id":27626,"orbit":0},{"id":2244,"orbit":-4}],"group":431,"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"]},"54099":{"connections":[{"id":8493,"orbit":0},{"id":2847,"orbit":0},{"id":55700,"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":0,"orbitIndex":0,"skill":54099,"stats":["+5 to any Attribute"]},"54127":{"connections":[{"id":54282,"orbit":0},{"id":15182,"orbit":0},{"id":56978,"orbit":0}],"group":796,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":54127,"stats":[]},"54138":{"connections":[{"id":38564,"orbit":0},{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":2,"orbitIndex":12,"skill":54138,"stats":["3% increased Attack Speed with Swords"]},"54148":{"connections":[{"id":52746,"orbit":0},{"id":56934,"orbit":0}],"group":558,"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"]},"54152":{"connections":[{"id":43453,"orbit":0}],"group":1347,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":54152,"stats":["3% increased Movement Speed while Sprinting"]},"54176":{"connections":[{"id":55463,"orbit":0},{"id":26598,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54176,"stats":["15% increased chance to Shock"]},"54194":{"ascendancyName":"Chronomancer","connections":[{"id":10987,"orbit":0}],"group":358,"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"]},"54198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":54198,"stats":[]},"54228":{"connections":[{"id":64240,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":2,"skill":54228,"stats":["10% increased Physical Damage"]},"54232":{"connections":[{"id":44659,"orbit":5}],"group":661,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54282":{"connections":[{"id":52125,"orbit":0},{"id":11066,"orbit":2147483647}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"54283":{"connections":[{"id":26324,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":21,"skill":54283,"stats":["15% increased Armour"]},"54288":{"connections":[{"id":35966,"orbit":7}],"group":271,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":54288,"stats":["3% of Damage taken Recouped as Life"]},"54289":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":230,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54297":{"connectionArt":"CharacterPlanned","connections":[{"id":25678,"orbit":0}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54311":{"connections":[{"id":28482,"orbit":7}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":54311,"stats":["30% increased Flammability Magnitude"]},"54340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":368,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":2,"orbitIndex":3,"skill":54340,"stats":[]},"54351":{"connections":[{"id":52464,"orbit":-6}],"group":1231,"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"]},"54378":{"connections":[{"id":26863,"orbit":0},{"id":58198,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":13,"skill":54378,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"]},"54380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":434,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":54380,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54413":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":3,"orbitIndex":10,"skill":54413,"stats":[]},"54416":{"connections":[{"id":60274,"orbit":4}],"group":153,"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"]},"54417":{"connections":[],"group":784,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"54437":{"connections":[{"id":16111,"orbit":-5},{"id":2397,"orbit":0},{"id":8493,"orbit":0}],"group":666,"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"]},"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":780,"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","name":"WITCH","orbit":0,"orbitIndex":0,"skill":54447,"stats":[]},"54453":{"connections":[{"id":19006,"orbit":0},{"id":61042,"orbit":0}],"group":639,"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"]},"54485":{"connections":[{"id":25482,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":54485,"stats":["+8 to Strength"]},"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"]},"54521":{"connections":[{"id":13537,"orbit":5},{"id":58789,"orbit":0},{"id":22185,"orbit":4}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54545":{"connections":[{"id":38342,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":0,"skill":54545,"stats":["15% increased Magnitude of Daze"]},"54557":{"connections":[{"id":9421,"orbit":-6}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":2,"skill":54557,"stats":["Damage Penetrates 6% Cold Resistance"]},"54562":{"connections":[{"id":2745,"orbit":0}],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":10,"skill":54562,"stats":["10% increased Critical Hit Chance"]},"54631":{"connections":[{"id":30132,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":54631,"stats":["6% increased bonuses gained from Equipped Quiver"]},"54632":{"connections":[{"id":36507,"orbit":0}],"group":711,"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"]},"54640":{"connections":[{"id":64042,"orbit":0}],"group":420,"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"]},"54675":{"connections":[{"id":58814,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":54675,"stats":["10% increased Lightning Damage"]},"54676":{"connections":[{"id":39759,"orbit":0},{"id":37612,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":15,"skill":54676,"stats":["10% increased Life Regeneration rate"]},"54678":{"connections":[{"id":41877,"orbit":0}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54678,"stats":["15% increased chance to Shock"]},"54701":{"connections":[{"id":21089,"orbit":2},{"id":1286,"orbit":-7}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":16,"skill":54701,"stats":["16% increased Thorns damage"]},"54708":{"connections":[{"id":13855,"orbit":0},{"id":3918,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":11,"skill":54708,"stats":["10% increased Mana Regeneration Rate"]},"54725":{"connections":[{"id":56336,"orbit":0}],"group":1245,"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"]},"54733":{"connections":[{"id":5314,"orbit":-4}],"group":843,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":55,"skill":54733,"stats":["15% increased Effect of Puppet Master"]},"54746":{"connections":[{"id":14343,"orbit":7}],"group":1096,"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"]},"54783":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":895,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":10,"skill":54783,"stats":[]},"54785":{"connections":[{"id":32885,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":7,"skill":54785,"stats":["5% increased Block chance"]},"54805":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":1077,"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"]},"54811":{"connections":[{"id":13474,"orbit":0}],"group":399,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54814":{"connections":[{"id":16114,"orbit":0}],"group":445,"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"]},"54818":{"connections":[{"id":18801,"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":0,"orbitIndex":0,"skill":54818,"stats":["+5 to any Attribute"]},"54838":{"ascendancyName":"Tactician","connections":[],"group":339,"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"]},"54849":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":226,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":54849,"stats":[]},"54883":{"connections":[{"id":34473,"orbit":-2}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":54883,"stats":["7% increased Chaos Damage"]},"54886":{"connections":[{"id":56997,"orbit":-4}],"group":443,"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"]},"54887":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":330,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":54887,"stats":[]},"54892":{"ascendancyName":"Tactician","connections":[{"id":44371,"orbit":0}],"group":370,"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"]},"54911":{"connections":[{"id":11505,"orbit":0},{"id":39716,"orbit":0}],"group":602,"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"]},"54923":{"connections":[{"id":27638,"orbit":2147483647}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":7,"skill":54923,"stats":["15% increased Glory generation"]},"54934":{"connections":[{"id":15494,"orbit":0}],"group":619,"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"]},"54937":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":133,"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"]},"54962":{"connections":[{"id":35849,"orbit":0}],"group":248,"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"]},"54964":{"connections":[{"id":23078,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":16,"skill":54964,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"54975":{"connections":[{"id":7526,"orbit":-9}],"group":1217,"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"]},"54982":{"connections":[{"id":34818,"orbit":-9}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":7,"skill":54982,"stats":["+5% to Fire Resistance"]},"54983":{"connections":[{"id":39369,"orbit":3}],"group":1485,"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"]},"54984":{"connections":[{"id":34015,"orbit":0},{"id":34702,"orbit":-4},{"id":55118,"orbit":0},{"id":37951,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"54985":{"connections":[{"id":14602,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":7,"skill":54985,"stats":["8% increased Bolt Speed"]},"54990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":727,"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"]},"54998":{"connections":[{"id":29993,"orbit":0}],"group":288,"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"]},"54999":{"connections":[{"id":14511,"orbit":-3}],"group":122,"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"]},"55011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":550,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":55011,"stats":[]},"55033":{"connectionArt":"CharacterPlanned","connections":[{"id":17059,"orbit":-3}],"group":170,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55041":{"connections":[{"id":35564,"orbit":0}],"group":1191,"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"]},"55048":{"connections":[],"flavourText":"Embrace the pain, drink it in.\\nYour enemies will know your agony tenfold.","group":201,"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"]},"55058":{"connections":[{"id":63790,"orbit":0}],"group":212,"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"]},"55060":{"connections":[{"id":33037,"orbit":0},{"id":45576,"orbit":0}],"group":828,"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"]},"55063":{"connections":[{"id":51535,"orbit":4}],"group":138,"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"]},"55066":{"connections":[{"id":19796,"orbit":0}],"group":750,"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"]},"55088":{"connections":[{"id":61196,"orbit":5}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":55088,"stats":["10% increased Critical Hit Chance"]},"55101":{"connections":[{"id":58016,"orbit":7}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":55101,"stats":["10% increased Elemental Damage"]},"55104":{"connections":[{"id":33254,"orbit":-7},{"id":19125,"orbit":7}],"group":760,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":22,"skill":55104,"stats":["10% increased Spell Damage"]},"55118":{"connections":[{"id":50420,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":18,"skill":55118,"stats":["10% increased Charm Charges gained"]},"55131":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":641,"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"]},"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"]},"55149":{"connections":[],"group":1284,"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"]},"55152":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":3,"orbitIndex":1,"skill":55152,"stats":[]},"55180":{"connections":[],"group":913,"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"]},"55190":{"connections":[],"group":95,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":0,"skill":55190,"stats":[]},"55193":{"connections":[{"id":10944,"orbit":-2}],"group":1215,"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"]},"55227":{"connections":[{"id":29479,"orbit":0},{"id":15829,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":13,"skill":55227,"stats":["10% increased amount of Mana Leeched"]},"55231":{"connections":[{"id":37361,"orbit":0},{"id":9857,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":7,"orbitIndex":13,"skill":55231,"stats":["5% chance to inflict Bleeding on Hit"]},"55235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":63830,"orbit":0},{"id":44756,"orbit":0},{"id":36976,"orbit":0}],"group":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"name":"Mark Mastery","orbit":1,"orbitIndex":4,"skill":55235,"stats":[]},"55241":{"connections":[{"id":38614,"orbit":0}],"group":1011,"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"]},"55250":{"connections":[{"id":56649,"orbit":-4},{"id":41669,"orbit":4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":4,"orbitIndex":30,"skill":55250,"stats":["Damage Penetrates 6% Cold Resistance"]},"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"]},"55270":{"connections":[{"id":60083,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":1,"skill":55270,"stats":["15% increased Pin Buildup"]},"55275":{"connections":[{"id":12890,"orbit":6}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":2,"skill":55275,"stats":["15% increased Evasion Rating"]},"55276":{"connections":[{"id":13411,"orbit":5}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":38313,"orbit":0},{"id":30701,"orbit":0}],"group":418,"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"]},"55329":{"connections":[{"id":42036,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":4,"orbitIndex":12,"skill":55329,"stats":["15% increased Parried Debuff Duration"]},"55342":{"connections":[{"id":17248,"orbit":-5}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":23227,"orbit":0}],"group":615,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":55348,"stats":[]},"55375":{"connections":[{"id":62748,"orbit":0}],"group":333,"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%"]},"55377":{"connections":[{"id":26211,"orbit":0},{"id":33463,"orbit":0}],"group":1318,"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"]},"55397":{"connections":[{"id":44527,"orbit":0}],"group":980,"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"]},"55400":{"connections":[{"id":30372,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":5,"skill":55400,"stats":["Damage Penetrates 6% Lightning Resistance"]},"55405":{"connections":[{"id":25620,"orbit":0}],"group":1066,"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"]},"55412":{"connections":[{"id":22538,"orbit":0},{"id":17796,"orbit":-4}],"group":608,"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"]},"55420":{"connections":[{"id":30061,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":0,"skill":55420,"stats":["6% increased Curse Magnitudes"]},"55422":{"connections":[{"id":54640,"orbit":4}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":17,"skill":55422,"stats":["12% increased Physical Damage"]},"55429":{"connections":[{"id":22049,"orbit":0}],"group":1041,"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"]},"55450":{"connections":[{"id":57089,"orbit":0},{"id":34443,"orbit":0}],"group":203,"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"]},"55463":{"connections":[{"id":27875,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":14,"skill":55463,"stats":["15% increased chance to Shock"]},"55473":{"connections":[{"id":43164,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":23,"skill":55473,"stats":["8% increased Melee Damage"]},"55478":{"connections":[{"id":48006,"orbit":4},{"id":16168,"orbit":-3}],"group":630,"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"]},"55491":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":446,"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"name":"Reservation Mastery","orbit":1,"orbitIndex":7,"skill":55491,"stats":[]},"55507":{"connections":[{"id":22359,"orbit":-6},{"id":38338,"orbit":6}],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":16,"skill":55507,"stats":["10% increased Elemental Damage"]},"55536":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":34882,"orbit":2147483647},{"id":1442,"orbit":0},{"id":3084,"orbit":2147483647}],"group":457,"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":[]},"55554":{"connections":[{"id":8821,"orbit":0},{"id":22271,"orbit":0}],"group":859,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":55554,"stats":["15% increased chance to Shock"]},"55568":{"connections":[{"id":41522,"orbit":0},{"id":44690,"orbit":0}],"group":1071,"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"]},"55572":{"connections":[{"id":57626,"orbit":0}],"group":822,"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"]},"55575":{"connections":[{"id":58002,"orbit":0}],"group":970,"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"]},"55582":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":60287,"orbit":2147483647}],"group":384,"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"]},"55596":{"connections":[{"id":8509,"orbit":0}],"group":218,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":16,"skill":55596,"stats":["15% increased Critical Damage Bonus"]},"55598":{"connections":[{"id":15644,"orbit":4},{"id":9112,"orbit":-3},{"id":28050,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":2,"skill":55598,"stats":["15% increased Elemental Ailment Threshold"]},"55611":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":-2}],"group":1505,"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"]},"55617":{"connections":[{"id":29914,"orbit":0},{"id":19546,"orbit":2}],"group":453,"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"]},"55621":{"connections":[{"id":38537,"orbit":-3}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":16,"skill":55621,"stats":["10% increased Critical Hit Chance"]},"55635":{"connections":[{"id":52440,"orbit":0},{"id":51807,"orbit":0},{"id":33722,"orbit":0}],"group":203,"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"]},"55664":{"connections":[{"id":31826,"orbit":-3}],"group":1339,"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"]},"55668":{"connections":[{"id":25557,"orbit":0},{"id":47754,"orbit":0},{"id":55420,"orbit":0}],"group":1032,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"55672":{"connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":5,"orbitIndex":46,"skill":55672,"stats":["10% increased Accuracy Rating while Shapeshifted"]},"55680":{"connections":[{"id":61112,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":14,"skill":55680,"stats":["3% increased Attack Speed with Spears"]},"55700":{"connections":[{"id":44983,"orbit":2147483647}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":8,"skill":55700,"stats":["+3 to all Attributes"]},"55708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":879,"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"]},"55724":{"connections":[{"id":42714,"orbit":0}],"group":1300,"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"]},"55746":{"connections":[{"id":61935,"orbit":-2}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":4,"skill":55746,"stats":["Gain 1 Rage on Melee Hit"]},"55789":{"connections":[{"id":41665,"orbit":-2}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":3,"skill":55789,"stats":["15% increased Critical Damage Bonus"]},"55796":{"ascendancyName":"Amazon","connections":[{"id":43095,"orbit":0}],"group":1543,"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"]},"55802":{"connections":[{"id":2847,"orbit":0},{"id":3717,"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":55802,"stats":["+5 to any Attribute"]},"55807":{"connections":[{"id":6686,"orbit":-4}],"group":757,"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"]},"55817":{"connections":[{"id":58674,"orbit":0}],"group":665,"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"]},"55829":{"connections":[{"id":1420,"orbit":2147483647}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":0,"skill":55829,"stats":["6% increased Area of Effect for Attacks"]},"55835":{"connections":[{"id":52537,"orbit":2147483647},{"id":20909,"orbit":-9},{"id":7023,"orbit":0}],"group":1422,"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"]},"55843":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":433,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":55843,"stats":[]},"55846":{"connections":[{"id":24239,"orbit":0}],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":5,"skill":55846,"stats":["Gain 5 Life per enemy killed"]},"55847":{"connections":[{"id":27274,"orbit":0}],"group":1063,"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"]},"55872":{"connections":[],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":3,"orbitIndex":23,"skill":55872,"stats":["Offering Skills have 15% increased Buff effect"]},"55888":{"connections":[{"id":18746,"orbit":0},{"id":49256,"orbit":0},{"id":440,"orbit":0}],"group":117,"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"]},"55897":{"connectionArt":"CharacterPlanned","connections":[{"id":14432,"orbit":0}],"group":111,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55909":{"connections":[{"id":64046,"orbit":0}],"group":747,"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":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"]},"55925":{"connections":[{"id":37290,"orbit":0}],"group":180,"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"]},"55930":{"connections":[{"id":40687,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":16,"skill":55930,"stats":["15% increased Glory generation"]},"55931":{"connections":[{"id":62034,"orbit":0},{"id":62313,"orbit":0}],"group":144,"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"]},"55933":{"connections":[{"id":60886,"orbit":0}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"55938":{"connections":[{"id":41394,"orbit":7}],"group":1102,"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"]},"55947":{"connections":[{"id":46088,"orbit":3}],"group":1064,"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"]},"55995":{"connections":[{"id":41873,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":55995,"stats":["20% increased Frenzy Charge Duration"]},"56016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":65149,"orbit":-8},{"id":35594,"orbit":2147483647}],"group":990,"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"]},"56023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1322,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56023,"stats":[]},"56045":{"connections":[{"id":24647,"orbit":4},{"id":11604,"orbit":0}],"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":0,"orbitIndex":0,"skill":56045,"stats":["+5 to any Attribute"]},"56061":{"connections":[],"group":422,"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"]},"56063":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":950,"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"]},"56090":{"connectionArt":"CharacterPlanned","connections":[{"id":59136,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56104":{"connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":16,"skill":56104,"stats":["Break 20% increased Armour"]},"56112":{"connections":[{"id":42059,"orbit":-2},{"id":49259,"orbit":0}],"group":227,"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"]},"56118":{"connections":[{"id":19341,"orbit":-5},{"id":22976,"orbit":0}],"group":891,"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"]},"56162":{"ascendancyName":"Blood Mage","connections":[{"id":50192,"orbit":-9}],"group":954,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56214":{"connections":[{"id":30334,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":3,"skill":56214,"stats":["8% increased Ignite Duration on Enemies"]},"56216":{"connections":[{"id":9485,"orbit":0}],"group":818,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56219":{"connections":[{"id":52764,"orbit":-2}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":7,"orbitIndex":2,"skill":56219,"stats":["Inherent loss of Rage is 15% slower"]},"56237":{"connections":[{"id":1825,"orbit":0}],"group":167,"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"]},"56265":{"connections":[{"id":42802,"orbit":0}],"group":1451,"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"]},"56284":{"connections":[{"id":1928,"orbit":-2}],"group":523,"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"]},"56320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connectionArt":"CharacterPlanned","connections":[],"group":413,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":56320,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56325":{"connections":[{"id":21280,"orbit":0}],"group":1024,"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"]},"56330":{"connections":[{"id":39570,"orbit":2147483647}],"group":1128,"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"]},"56331":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1539,"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"]},"56334":{"connections":[{"id":46171,"orbit":7},{"id":41753,"orbit":0}],"group":1440,"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"]},"56336":{"connections":[{"id":21208,"orbit":0}],"group":1245,"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"]},"56342":{"connections":[{"id":7341,"orbit":3}],"group":346,"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"]},"56349":{"connections":[],"flavourText":"Give up everything in pursuit of greatness - even life itself.","group":1240,"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"]},"56360":{"connections":[{"id":24812,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":19,"skill":56360,"stats":["20% increased Power Charge Duration"]},"56366":{"connections":[{"id":35755,"orbit":0}],"group":1477,"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"]},"56368":{"connections":[{"id":61393,"orbit":-4}],"group":124,"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"]},"56388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":685,"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"]},"56409":{"connections":[{"id":25101,"orbit":0},{"id":43139,"orbit":0},{"id":65248,"orbit":0}],"group":739,"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"]},"56453":{"connections":[{"id":37691,"orbit":0}],"group":1231,"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"]},"56466":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56472":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56472,"stats":[]},"56488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1174,"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"]},"56489":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"56493":{"connections":[],"group":1162,"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"]},"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"]},"56547":{"connections":[{"id":12189,"orbit":4}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":21,"skill":56547,"stats":["12% increased Damage with Plant Skills"]},"56564":{"connections":[{"id":8349,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":15,"skill":56564,"stats":["+8 to Intelligence"]},"56567":{"connections":[{"id":151,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":11,"skill":56567,"stats":["8% increased Accuracy Rating"]},"56595":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":443,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":56595,"stats":[]},"56605":{"connections":[],"flavourText":"In battle, certainty is worth a little pain.","group":484,"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"]},"56616":{"connections":[{"id":13562,"orbit":3},{"id":41415,"orbit":0}],"group":588,"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"]},"56618":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1520,"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"]},"56638":{"connections":[],"group":995,"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"]},"56640":{"connections":[{"id":10398,"orbit":-3}],"group":734,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":7,"orbitIndex":0,"skill":56640,"stats":["15% increased Critical Spell Damage Bonus"]},"56649":{"connections":[{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":8,"skill":56649,"stats":["Damage Penetrates 6% Cold Resistance"]},"56651":{"connections":[{"id":38143,"orbit":0}],"group":888,"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"]},"56666":{"connections":[],"group":703,"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"]},"56701":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":56701,"stats":[]},"56703":{"connections":[{"id":15782,"orbit":0},{"id":28839,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":8,"skill":56703,"stats":["3% increased Cast Speed"]},"56714":{"connections":[{"id":47212,"orbit":0}],"group":483,"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"]},"56729":{"connections":[{"id":26308,"orbit":0},{"id":34201,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":16,"skill":56729,"stats":["20% increased Evasion Rating while moving"]},"56757":{"connections":[{"id":10100,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":10,"skill":56757,"stats":["20% increased Totem Placement speed"]},"56761":{"connections":[{"id":8560,"orbit":0},{"id":48531,"orbit":0},{"id":2408,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":18,"skill":56761,"stats":["8% increased Melee Damage"]},"56762":{"connections":[{"id":28839,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":56762,"stats":["3% increased Cast Speed"]},"56767":{"connections":[{"id":19461,"orbit":0},{"id":1416,"orbit":0}],"group":1355,"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"]},"56776":{"connections":[{"id":45609,"orbit":5},{"id":24129,"orbit":0}],"group":1188,"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"]},"56783":{"ascendancyName":"Disciple of Varashta","connections":[],"group":648,"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"]},"56806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":1007,"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"]},"56818":{"connections":[{"id":43423,"orbit":-3},{"id":62510,"orbit":-6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":18,"skill":56818,"stats":["12% increased Elemental Damage with Attacks"]},"56838":{"connections":[{"id":42805,"orbit":-4},{"id":62624,"orbit":5}],"group":1316,"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"]},"56841":{"connections":[{"id":18451,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":20,"skill":56841,"stats":["20% increased Frenzy Charge Duration"]},"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"]},"56844":{"connections":[{"id":40929,"orbit":-2}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":0,"skill":56844,"stats":["15% increased Archon Buff duration"]},"56847":{"connections":[],"group":1455,"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"]},"56857":{"ascendancyName":"Disciple of Varashta","connections":[],"group":611,"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"]},"56860":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1213,"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"]},"56876":{"connections":[{"id":46380,"orbit":0}],"group":319,"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"]},"56890":{"connectionArt":"CharacterPlanned","connections":[{"id":12005,"orbit":0}],"group":205,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56893":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1262,"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"]},"56897":{"connections":[],"group":931,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Damage","orbit":7,"orbitIndex":10,"skill":56897,"stats":["10% increased Ballista Critical Damage Bonus"]},"56910":{"connections":[{"id":28510,"orbit":6},{"id":34061,"orbit":0},{"id":29328,"orbit":6}],"group":802,"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"]},"56914":{"connections":[{"id":50121,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":5,"skill":56914,"stats":["Damage Penetrates 6% Lightning Resistance"]},"56926":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":938,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":3,"skill":56926,"stats":[]},"56928":{"connections":[{"id":62350,"orbit":7}],"group":1232,"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"]},"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"]},"56934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":558,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":56934,"stats":[]},"56935":{"connections":[{"id":57710,"orbit":0},{"id":34058,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56956":{"connections":[{"id":15885,"orbit":-4},{"id":54632,"orbit":0}],"group":711,"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"]},"56978":{"connections":[{"id":21274,"orbit":0}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"56988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1369,"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"]},"56996":{"connections":[{"id":9568,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":4,"orbitIndex":3,"skill":56996,"stats":["16% increased Totem Life"]},"56997":{"connections":[{"id":23861,"orbit":-5},{"id":56595,"orbit":0}],"group":443,"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"]},"56999":{"connections":[],"group":969,"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"]},"57002":{"connectionArt":"CharacterPlanned","connections":[{"id":48761,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57021":{"connections":[{"id":8957,"orbit":0},{"id":45343,"orbit":0},{"id":14505,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":16,"skill":57021,"stats":["Minions have 8% increased Area of Effect"]},"57039":{"connections":[{"id":44605,"orbit":6}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":4,"skill":57039,"stats":["5% increased Cooldown Recovery Rate"]},"57047":{"connections":[{"id":45278,"orbit":0},{"id":4492,"orbit":0}],"group":795,"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"]},"57069":{"connections":[{"id":52257,"orbit":0}],"group":1424,"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"]},"57079":{"connectionArt":"CharacterPlanned","connections":[{"id":19966,"orbit":-3},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57088":{"connections":[{"id":54557,"orbit":-5}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":20,"skill":57088,"stats":["Damage Penetrates 6% Cold Resistance"]},"57089":{"connections":[],"group":203,"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"]},"57110":{"connections":[{"id":62159,"orbit":-2},{"id":46561,"orbit":0}],"group":943,"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"]},"57141":{"ascendancyName":"Pathfinder","connections":[],"group":1518,"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":[]},"57178":{"connections":[{"id":21245,"orbit":0},{"id":5284,"orbit":0}],"group":519,"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"]},"57181":{"ascendancyName":"Invoker","connections":[{"id":52448,"orbit":-7}],"group":1505,"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"]},"57190":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":27859,"orbit":0}],"group":867,"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"]},"57196":{"connections":[],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":14,"skill":57196,"stats":["3% increased Attack Speed"]},"57202":{"connectionArt":"CharacterPlanned","connections":[{"id":1628,"orbit":2147483647}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57204":{"connections":[{"id":47833,"orbit":0}],"group":925,"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"]},"57227":{"connections":[{"id":23259,"orbit":-5}],"group":1038,"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"]},"57230":{"connections":[{"id":25851,"orbit":-4},{"id":36270,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":6,"orbitIndex":6,"skill":57230,"stats":["10% increased Physical Damage"]},"57253":{"ascendancyName":"Pathfinder","connections":[{"id":38646,"orbit":0},{"id":3936,"orbit":0}],"group":1524,"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"]},"57273":{"connections":[{"id":33562,"orbit":0}],"group":205,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":4,"orbitIndex":33,"skill":57273,"stats":["12% increased Damage while Shapeshifted"]},"57320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":697,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":57320,"stats":[]},"57373":{"connections":[{"id":44733,"orbit":4}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":57373,"stats":["30% increased Flammability Magnitude"]},"57379":{"connections":[{"id":39190,"orbit":0},{"id":49111,"orbit":0}],"group":135,"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"]},"57386":{"connectionArt":"CharacterPlanned","connections":[{"id":4621,"orbit":-6}],"group":233,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57388":{"connections":[{"id":9698,"orbit":0}],"group":228,"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"]},"57405":{"connections":[{"id":64807,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":2,"skill":57405,"stats":["10% increased Attack Area Damage"]},"57449":{"ascendancyName":"Martial Artist","connections":[{"id":17356,"orbit":9},{"id":19370,"orbit":-9}],"group":1510,"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"]},"57462":{"connections":[{"id":12078,"orbit":-6}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":3,"orbitIndex":17,"skill":57462,"stats":["8% increased Projectile Speed"]},"57471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":42578,"orbit":-4}],"group":177,"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"]},"57513":{"connections":[],"flavourText":"What need have I for defence when my enemies\\nare reduced to ash and splinters?","group":1044,"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"]},"57517":{"connections":[{"id":28268,"orbit":0}],"group":1029,"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"]},"57518":{"connections":[{"id":17146,"orbit":4}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":23,"skill":57518,"stats":["20% increased Parry Damage"]},"57552":{"connections":[{"id":24871,"orbit":0},{"id":46696,"orbit":0}],"group":398,"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"]},"57555":{"connections":[{"id":37608,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":7,"orbitIndex":15,"skill":57555,"stats":["15% chance to Impale on Spell Hit"]},"57571":{"connections":[{"id":37905,"orbit":-3}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":6,"skill":57571,"stats":["30% increased Flammability Magnitude"]},"57596":{"connectionArt":"CharacterPlanned","connections":[{"id":13468,"orbit":0}],"group":492,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57608":{"connections":[{"id":61703,"orbit":0}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Physical Damage","orbit":2,"orbitIndex":15,"skill":57608,"stats":["12% increased Physical Damage while Shapeshifted"]},"57615":{"connections":[{"id":32319,"orbit":0},{"id":48836,"orbit":0}],"group":1492,"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"]},"57616":{"connections":[{"id":56388,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":4,"orbitIndex":3,"skill":57616,"stats":["Banner Skills have 20% increased Duration"]},"57617":{"connections":[{"id":14996,"orbit":-2},{"id":16506,"orbit":-2},{"id":37509,"orbit":-2},{"id":23879,"orbit":0}],"group":354,"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"]},"57626":{"connections":[{"id":36782,"orbit":0}],"group":823,"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"]},"57683":{"connections":[{"id":35031,"orbit":2}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":11,"skill":57683,"stats":["3% of Damage taken Recouped as Life"]},"57703":{"connections":[{"id":54811,"orbit":0},{"id":54485,"orbit":0},{"id":38130,"orbit":0},{"id":19674,"orbit":0}],"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":57703,"stats":["+5 to any Attribute"]},"57710":{"connections":[{"id":39037,"orbit":0},{"id":40783,"orbit":0},{"id":53975,"orbit":0},{"id":58090,"orbit":2147483647}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"57724":{"connections":[{"id":54883,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":20,"skill":57724,"stats":["7% increased Chaos Damage"]},"57774":{"connections":[{"id":49657,"orbit":0}],"group":833,"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"]},"57775":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":427,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":57775,"stats":[]},"57785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":31112,"orbit":0},{"id":56897,"orbit":0}],"group":931,"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"]},"57791":{"connections":[{"id":52229,"orbit":0}],"group":662,"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"]},"57805":{"connections":[{"id":43444,"orbit":4}],"group":791,"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"]},"57810":{"connections":[{"id":40073,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":57810,"stats":["15% increased chance to Shock"]},"57816":{"connections":[{"id":364,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":8,"skill":57816,"stats":["+8 to Dexterity"]},"57819":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":503,"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"]},"57821":{"connections":[{"id":31765,"orbit":0},{"id":26034,"orbit":0}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"57832":{"connections":[{"id":46300,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":9,"skill":57832,"stats":["10% increased Ignite Magnitude"]},"57846":{"connections":[{"id":63451,"orbit":0},{"id":38876,"orbit":6}],"group":409,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":12,"skill":57846,"stats":["15% increased Stun Buildup"]},"57863":{"connections":[{"id":26356,"orbit":0}],"group":684,"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"]},"57880":{"connections":[{"id":27082,"orbit":0},{"id":6269,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Damage","orbit":3,"orbitIndex":3,"skill":57880,"stats":["12% increased Damage with Axes"]},"57921":{"connections":[{"id":23879,"orbit":0}],"group":354,"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"]},"57933":{"connections":[{"id":16150,"orbit":0}],"group":1490,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":57933,"stats":["Companions deal 12% increased Damage"]},"57945":{"connections":[{"id":7412,"orbit":0}],"group":1250,"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"]},"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"]},"57966":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":57966,"stats":[]},"57967":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":610,"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"]},"57970":{"connections":[{"id":55995,"orbit":0},{"id":21537,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":10,"skill":57970,"stats":["20% increased Frenzy Charge Duration"]},"58002":{"connections":[{"id":45086,"orbit":0},{"id":55668,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":3,"orbitIndex":3,"skill":58002,"stats":["10% increased Physical Damage"]},"58013":{"connections":[{"id":4844,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":4,"skill":58013,"stats":["10% increased Projectile Damage"]},"58016":{"connections":[{"id":49537,"orbit":7},{"id":42205,"orbit":0}],"group":353,"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"]},"58022":{"connections":[{"id":5186,"orbit":3},{"id":26762,"orbit":-7}],"group":1314,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":58022,"stats":["11% increased Chaos Damage"]},"58038":{"connections":[{"id":31566,"orbit":0}],"group":751,"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"]},"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":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58088":{"connections":[{"id":16620,"orbit":5}],"group":250,"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"]},"58090":{"connections":[{"id":21540,"orbit":4},{"id":34367,"orbit":3}],"group":812,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":58090,"stats":["3% of Damage taken Recouped as Life"]},"58096":{"connections":[{"id":17411,"orbit":0}],"group":497,"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"]},"58109":{"connections":[{"id":14340,"orbit":0}],"group":847,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"58115":{"connections":[{"id":52241,"orbit":2},{"id":11672,"orbit":0}],"group":907,"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"]},"58117":{"connections":[{"id":41186,"orbit":0},{"id":13839,"orbit":0},{"id":56996,"orbit":0},{"id":53719,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":3,"skill":58117,"stats":["15% increased Totem Damage"]},"58125":{"connections":[{"id":10681,"orbit":5}],"group":116,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":60,"skill":58125,"stats":["5% increased Block chance"]},"58138":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":116,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":1,"orbitIndex":6,"skill":58138,"stats":[]},"58149":{"ascendancyName":"Ritualist","connections":[{"id":62804,"orbit":8}],"group":1567,"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"]},"58157":{"connections":[{"id":61149,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":7,"orbitIndex":17,"skill":58157,"stats":["20% increased Stun Recovery"]},"58170":{"connections":[{"id":61067,"orbit":0}],"group":650,"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"]},"58182":{"connections":[{"id":49220,"orbit":-5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":22,"skill":58182,"stats":["Gain 3 Life per enemy killed"]},"58183":{"connections":[{"id":60241,"orbit":0},{"id":21245,"orbit":0},{"id":32278,"orbit":0}],"group":501,"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"]},"58197":{"connectionArt":"CharacterPlanned","connections":[{"id":35980,"orbit":0}],"group":89,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":361,"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"]},"58215":{"connections":[{"id":292,"orbit":0}],"group":438,"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"]},"58295":{"connections":[],"group":261,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"58312":{"connections":[{"id":49497,"orbit":0}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":10,"skill":58312,"stats":["5% increased Culling Strike Threshold"]},"58329":{"connections":[{"id":56360,"orbit":0},{"id":61196,"orbit":0},{"id":56638,"orbit":0}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"58362":{"connections":[{"id":51335,"orbit":0}],"group":747,"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"]},"58363":{"connections":[{"id":55938,"orbit":2}],"group":1102,"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"]},"58368":{"connectionArt":"CharacterPlanned","connections":[{"id":40511,"orbit":0}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58379":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1521,"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"]},"58387":{"connections":[{"id":52454,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":6,"skill":58387,"stats":["7% increased Chaos Damage"]},"58388":{"connections":[{"id":13157,"orbit":0},{"id":17702,"orbit":0}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":23,"skill":58388,"stats":["10% increased Life Recovery from Flasks"]},"58397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":19338,"orbit":0},{"id":31647,"orbit":0},{"id":2334,"orbit":0}],"group":1377,"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"]},"58416":{"connections":[],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Speed","orbit":2,"orbitIndex":11,"skill":58416,"stats":["10% increased Projectile Speed"]},"58426":{"connections":[{"id":34401,"orbit":0}],"group":1393,"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"]},"58496":{"connections":[{"id":9328,"orbit":-4},{"id":37187,"orbit":5}],"group":140,"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"]},"58513":{"connections":[{"id":14418,"orbit":2147483647},{"id":11774,"orbit":0}],"group":1292,"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"]},"58526":{"connections":[],"group":1261,"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"]},"58528":{"connections":[{"id":5710,"orbit":6}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":2,"skill":58528,"stats":["10% increased Melee Damage"]},"58539":{"connections":[{"id":60899,"orbit":0}],"group":1433,"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"]},"58574":{"ascendancyName":"Ritualist","connections":[],"group":1563,"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"]},"58591":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":559,"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"]},"58593":{"connections":[{"id":33463,"orbit":9},{"id":26556,"orbit":-5}],"group":1405,"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"]},"58644":{"connections":[{"id":42714,"orbit":0}],"group":1300,"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"]},"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"]},"58651":{"connections":[{"id":49357,"orbit":0},{"id":50558,"orbit":0}],"group":567,"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"]},"58674":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":1,"skill":58674,"stats":[]},"58692":{"connections":[],"group":1405,"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"]},"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"]},"58714":{"connections":[{"id":39431,"orbit":0}],"group":736,"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"]},"58718":{"connections":[{"id":35015,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":58718,"stats":["10% increased Magnitude of Bleeding you inflict"]},"58747":{"ascendancyName":"Chronomancer","connections":[],"group":369,"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"]},"58751":{"ascendancyName":"Lich","connections":[{"id":17788,"orbit":0}],"group":1173,"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"]},"58779":{"connections":[{"id":51040,"orbit":0},{"id":327,"orbit":0},{"id":23822,"orbit":0},{"id":47976,"orbit":0}],"group":1295,"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"]},"58783":{"connections":[{"id":26520,"orbit":0}],"group":896,"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"]},"58789":{"connections":[{"id":13307,"orbit":0}],"group":609,"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"]},"58814":{"connections":[{"id":55802,"orbit":0},{"id":244,"orbit":0},{"id":12465,"orbit":0},{"id":26830,"orbit":0},{"id":26952,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"58817":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":601,"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"]},"58838":{"connections":[{"id":26725,"orbit":6}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":60,"skill":58838,"stats":["12% increased Stun Threshold"]},"58848":{"connections":[{"id":22962,"orbit":2147483647},{"id":10576,"orbit":0}],"group":1300,"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"]},"58855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":240,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":58855,"stats":[]},"58884":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":891,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":58884,"stats":[]},"58894":{"connections":[],"group":179,"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","Immune to Exposure","Unaffected by Elemental Weakness"]},"58926":{"connections":[{"id":64572,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":16,"skill":58926,"stats":["15% increased Freeze Buildup"]},"58930":{"connections":[{"id":14934,"orbit":7}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":9,"skill":58930,"stats":["3% increased Cast Speed"]},"58932":{"ascendancyName":"Lich","connections":[],"group":1120,"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"]},"58939":{"connections":[{"id":44608,"orbit":0}],"group":906,"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"]},"58971":{"connections":[{"id":12998,"orbit":-6},{"id":38678,"orbit":-7}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":11,"skill":58971,"stats":["15% increased Elemental Ailment Threshold"]},"59006":{"connections":[{"id":37956,"orbit":7}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":59006,"stats":["8% reduced Skill Effect Duration"]},"59028":{"connections":[{"id":41210,"orbit":0}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":16,"skill":59028,"stats":["10% increased Projectile Damage"]},"59039":{"connectionArt":"CharacterPlanned","connections":[{"id":28223,"orbit":4}],"group":166,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59053":{"connections":[{"id":54805,"orbit":-7}],"group":1077,"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"]},"59061":{"connections":[{"id":28267,"orbit":0}],"group":218,"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"]},"59064":{"connections":[],"group":1338,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":3,"orbitIndex":21,"skill":59064,"stats":["10% increased Effect of your Mark Skills"]},"59070":{"connections":[{"id":55011,"orbit":0}],"group":550,"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"]},"59083":{"connections":[{"id":32364,"orbit":0}],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":4,"skill":59083,"stats":["10% increased Ignite Magnitude"]},"59093":{"connections":[{"id":14110,"orbit":0},{"id":5088,"orbit":0},{"id":53444,"orbit":0},{"id":4621,"orbit":0}],"group":276,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59136":{"connectionArt":"CharacterPlanned","connections":[{"id":17729,"orbit":0}],"group":606,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59180":{"connections":[{"id":50023,"orbit":2147483647}],"group":508,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":7,"orbitIndex":15,"skill":59180,"stats":["10% increased Attack Damage"]},"59208":{"connections":[{"id":5681,"orbit":0}],"group":453,"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"]},"59213":{"connections":[{"id":48240,"orbit":3}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":2,"orbitIndex":15,"skill":59213,"stats":["20% increased Stun Recovery"]},"59214":{"connections":[{"id":26268,"orbit":0},{"id":6570,"orbit":0}],"group":1267,"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"]},"59256":{"connections":[{"id":8531,"orbit":0}],"group":561,"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"]},"59263":{"connections":[{"id":37963,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Ripping Blade","orbit":4,"orbitIndex":33,"skill":59263,"stats":["25% increased Damage with Swords"]},"59281":{"connections":[{"id":14394,"orbit":7},{"id":1221,"orbit":0},{"id":50124,"orbit":-7},{"id":58109,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":22,"skill":59281,"stats":["12% increased Armour and Evasion Rating"]},"59289":{"connections":[{"id":22532,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":21,"skill":59289,"stats":["15% increased Immobilisation buildup"]},"59303":{"connections":[{"id":25029,"orbit":0}],"group":1280,"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"]},"59342":{"ascendancyName":"Blood Mage","connections":[{"id":23416,"orbit":9}],"group":954,"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"]},"59355":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":59355,"stats":[]},"59356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":59356,"stats":[]},"59362":{"connections":[{"id":41669,"orbit":0},{"id":62677,"orbit":0},{"id":50720,"orbit":0}],"group":772,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59367":{"connections":[{"id":10774,"orbit":0}],"group":437,"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"]},"59368":{"connections":[{"id":61215,"orbit":4},{"id":48116,"orbit":0}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":2,"skill":59368,"stats":["12% increased Stun Threshold"]},"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"]},"59376":{"connections":[],"group":643,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"59387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":930,"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"]},"59390":{"connections":[{"id":11472,"orbit":0}],"group":1203,"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"]},"59413":{"connections":[],"group":645,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59413,"stats":["8% increased speed of Recoup Effects"]},"59425":{"connections":[{"id":23939,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":16,"skill":59425,"stats":["3% of Damage taken Recouped as Life"]},"59433":{"connections":[{"id":60916,"orbit":0}],"group":223,"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"]},"59438":{"connections":[{"id":18101,"orbit":-7},{"id":15801,"orbit":0}],"group":644,"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"]},"59442":{"connections":[{"id":59413,"orbit":0}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59442,"stats":["8% increased speed of Recoup Effects"]},"59446":{"connections":[{"id":4544,"orbit":0}],"group":1166,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":5,"skill":59446,"stats":["10% increased Life Recovery from Flasks"]},"59466":{"connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":7,"orbitIndex":0,"skill":59466,"stats":["Empowered Attacks deal 16% increased Damage"]},"59480":{"connections":[{"id":3999,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":69,"skill":59480,"stats":["10% increased Attack Area Damage"]},"59498":{"connections":[{"id":54814,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":59498,"stats":["20% increased Presence Area of Effect"]},"59501":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"id":25619,"orbit":0},{"id":42354,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":59501,"stats":[]},"59503":{"connections":[{"id":22208,"orbit":0}],"group":1319,"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"]},"59538":{"connections":[{"id":34912,"orbit":0},{"id":47976,"orbit":0}],"group":1376,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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"]},"59541":{"connections":[{"id":28573,"orbit":7},{"id":56926,"orbit":0}],"group":938,"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"]},"59542":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1506,"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"]},"59589":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":52659,"orbit":0}],"group":162,"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"]},"59600":{"connections":[{"id":9411,"orbit":0}],"group":1206,"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"]},"59603":{"connections":[],"group":943,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":59603,"stats":["3% of Damage taken Recouped as Life"]},"59636":{"connections":[{"id":13769,"orbit":-4},{"id":48007,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Open Mind","orbit":7,"orbitIndex":12,"skill":59636,"stats":["25% increased Mana Regeneration Rate"]},"59644":{"connections":[{"id":42959,"orbit":-7}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":15,"skill":59644,"stats":["10% increased Magnitude of Poison you inflict"]},"59647":{"connections":[{"id":8791,"orbit":3}],"group":1083,"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"]},"59651":{"connections":[{"id":41654,"orbit":2147483647},{"id":47821,"orbit":4},{"id":25557,"orbit":0}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":11,"skill":59651,"stats":["Offering Skills have 20% increased Duration"]},"59653":{"connections":[{"id":35987,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":7,"orbitIndex":10,"skill":59653,"stats":["2% increased Movement Speed"]},"59657":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":42078,"orbit":0}],"group":1405,"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"]},"59661":{"connections":[{"id":12245,"orbit":0}],"group":1010,"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"]},"59694":{"connections":[{"id":52399,"orbit":0}],"group":1457,"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"]},"59695":{"connections":[{"id":28950,"orbit":8}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":19,"skill":59695,"stats":["10% increased Mana Regeneration Rate"]},"59710":{"connections":[{"id":52618,"orbit":5}],"group":320,"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"]},"59720":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":41163,"orbit":0}],"group":1426,"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"]},"59759":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":60251,"orbit":4}],"group":1533,"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"]},"59767":{"connections":[{"id":31292,"orbit":0},{"id":20645,"orbit":0}],"group":527,"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"]},"59775":{"connections":[{"id":20782,"orbit":-4}],"group":1275,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":59775,"stats":["7% increased Chaos Damage"]},"59777":{"connections":[{"id":10362,"orbit":0},{"id":17791,"orbit":0},{"id":13937,"orbit":0},{"id":53719,"orbit":0}],"group":149,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59779":{"connections":[{"id":50986,"orbit":0},{"id":42350,"orbit":6},{"id":97,"orbit":6},{"id":11311,"orbit":5}],"group":767,"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"]},"59781":{"connections":[{"id":39416,"orbit":0}],"group":701,"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"]},"59785":{"connections":[{"id":27296,"orbit":0},{"id":1200,"orbit":0},{"id":33452,"orbit":0},{"id":8852,"orbit":0}],"group":121,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"59795":{"connections":[{"id":10156,"orbit":-3}],"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":5,"orbitIndex":33,"skill":59795,"stats":["+5 to any Attribute"]},"59798":{"connections":[{"id":5335,"orbit":-4}],"group":1270,"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"]},"59799":{"connections":[{"id":7338,"orbit":4}],"group":1270,"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"]},"59822":{"ascendancyName":"Blood Mage","connections":[{"id":8415,"orbit":0}],"group":954,"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":[]},"59881":{"connections":[{"id":54417,"orbit":0},{"id":28556,"orbit":-5}],"group":806,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"59886":{"connections":[{"id":4442,"orbit":0}],"group":144,"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"]},"59908":{"connectionArt":"CharacterPlanned","connections":[{"id":36197,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59909":{"connections":[{"id":30539,"orbit":4}],"group":1066,"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"]},"59913":{"ascendancyName":"Deadeye","connections":[{"id":29871,"orbit":0}],"group":1507,"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"]},"59915":{"connections":[{"id":7741,"orbit":-6},{"id":97,"orbit":-6},{"id":2455,"orbit":-6}],"group":799,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":59915,"stats":["10% increased Projectile Damage"]},"59938":{"connections":[{"id":50757,"orbit":0}],"group":295,"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"]},"59945":{"connections":[{"id":4527,"orbit":0},{"id":45327,"orbit":0},{"id":21684,"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":59945,"stats":["+5 to any Attribute"]},"60014":{"connectionArt":"CharacterPlanned","connections":[{"id":38474,"orbit":0}],"group":530,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":15207,"orbit":0},{"id":22208,"orbit":0}],"group":1319,"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%"]},"60064":{"connections":[{"id":47263,"orbit":0},{"id":3027,"orbit":0}],"group":216,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":18,"skill":60064,"stats":["10% increased Physical Damage"]},"60068":{"connections":[{"id":55925,"orbit":7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":3,"orbitIndex":12,"skill":60068,"stats":["Gain 1 Rage on Melee Hit"]},"60083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":44239,"orbit":0}],"group":1101,"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"]},"60085":{"connections":[{"id":55802,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":15,"skill":60085,"stats":["10% increased Damage"]},"60107":{"connections":[{"id":57204,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":9,"skill":60107,"stats":["10% increased Critical Hit Chance"]},"60116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":868,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":3,"orbitIndex":10,"skill":60116,"stats":[]},"60138":{"connections":[{"id":52695,"orbit":0}],"group":1231,"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"]},"60170":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":60170,"stats":[]},"60173":{"connections":[{"id":4238,"orbit":2}],"group":1201,"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"]},"60191":{"connections":[{"id":54985,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":11,"skill":60191,"stats":["8% increased Bolt Speed"]},"60203":{"connections":[{"id":5332,"orbit":9}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":2,"skill":60203,"stats":["+8 to Strength"]},"60210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":63431,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":1,"orbitIndex":9,"skill":60210,"stats":[]},"60230":{"connections":[{"id":56935,"orbit":0},{"id":58362,"orbit":0},{"id":10192,"orbit":0},{"id":55909,"orbit":0}],"group":747,"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"]},"60239":{"connections":[{"id":15343,"orbit":5},{"id":49356,"orbit":-2}],"group":1405,"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"]},"60241":{"connections":[{"id":57178,"orbit":0}],"group":491,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":60241,"stats":["5% chance to inflict Bleeding on Hit"]},"60251":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34567,"orbit":6}],"group":1533,"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"]},"60269":{"connections":[{"id":6588,"orbit":0}],"group":861,"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"]},"60273":{"connections":[{"id":28199,"orbit":0},{"id":40626,"orbit":0}],"group":1274,"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"]},"60274":{"connections":[{"id":13293,"orbit":4},{"id":19236,"orbit":0}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":0,"skill":60274,"stats":["15% increased Armour"]},"60287":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":37397,"orbit":0},{"id":32952,"orbit":0},{"id":63259,"orbit":0}],"group":373,"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":[]},"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"]},"60313":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":711,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":60313,"stats":[]},"60323":{"connections":[{"id":9199,"orbit":0},{"id":47560,"orbit":0}],"group":1293,"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"]},"60324":{"connections":[{"id":1506,"orbit":2}],"group":1108,"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"]},"60332":{"connections":[{"id":21213,"orbit":0}],"group":159,"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"]},"60362":{"connections":[{"id":56265,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":60362,"stats":["15% increased Critical Damage Bonus"]},"60404":{"connections":[{"id":20691,"orbit":0},{"id":25011,"orbit":0}],"group":539,"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"]},"60464":{"connections":[{"id":58971,"orbit":-6},{"id":28623,"orbit":0}],"group":1278,"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"]},"60480":{"connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":4,"skill":60480,"stats":["8% increased Reservation Efficiency of Herald Skills"]},"60483":{"connections":[{"id":7809,"orbit":0},{"id":36540,"orbit":0}],"group":1380,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":60483,"stats":["12% increased Lightning Damage"]},"60488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":865,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":60488,"stats":[]},"60505":{"connections":[{"id":28050,"orbit":0},{"id":65009,"orbit":0},{"id":19808,"orbit":0},{"id":18831,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"60515":{"connections":[{"id":19955,"orbit":-4}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":4,"skill":60515,"stats":["12% increased Cold Damage"]},"60551":{"connections":[{"id":21861,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":14,"skill":60551,"stats":["20% increased Presence Area of Effect"]},"60560":{"connections":[{"id":29527,"orbit":-3}],"group":1364,"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"]},"60568":{"connections":[{"id":52348,"orbit":-6}],"group":526,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":3,"orbitIndex":13,"skill":60568,"stats":["20% increased Totem Placement speed"]},"60619":{"connections":[{"id":541,"orbit":-5},{"id":41609,"orbit":-5},{"id":31010,"orbit":0},{"id":27216,"orbit":0},{"id":12005,"orbit":0}],"group":205,"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"]},"60620":{"connections":[{"id":45992,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":4,"skill":60620,"stats":["+8 to Strength"]},"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"]},"60662":{"ascendancyName":"Amazon","connections":[{"id":7979,"orbit":0}],"group":1548,"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"]},"60685":{"connections":[{"id":1826,"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":60685,"stats":["+5 to any Attribute"]},"60692":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":16367,"orbit":2}],"group":1073,"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"]},"60700":{"connections":[{"id":44974,"orbit":2147483647}],"group":1219,"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"]},"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60735":{"connections":[{"id":42658,"orbit":0},{"id":11825,"orbit":0}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":60735,"stats":[]},"60738":{"connections":[{"id":37408,"orbit":0}],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":19,"skill":60738,"stats":["10% increased Life Recovery from Flasks"]},"60741":{"connections":[{"id":33922,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":12,"skill":60741,"stats":["10% increased Elemental Damage"]},"60764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1461,"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"]},"60809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":448,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Channelling Mastery","orbit":0,"orbitIndex":0,"skill":60809,"stats":[]},"60829":{"connections":[{"id":36630,"orbit":2147483647}],"group":1042,"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"]},"60859":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":9}],"group":1569,"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"]},"60886":{"connections":[{"id":59213,"orbit":3}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":1,"orbitIndex":5,"skill":60886,"stats":["20% increased Stun Recovery"]},"60891":{"connections":[{"id":53185,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Accuracy Rating","orbit":1,"orbitIndex":9,"skill":60891,"stats":["8% increased Accuracy Rating"]},"60899":{"connections":[{"id":32543,"orbit":-7}],"group":1433,"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"]},"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"]},"60916":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":223,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Endurance Charge Mastery","orbit":0,"orbitIndex":0,"skill":60916,"stats":[]},"60974":{"connections":[{"id":1506,"orbit":-2}],"group":1108,"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"]},"60992":{"connections":[{"id":24889,"orbit":0}],"group":1339,"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"]},"61026":{"connections":[{"id":34552,"orbit":0},{"id":17378,"orbit":0}],"group":475,"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"]},"61027":{"connections":[],"group":819,"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"]},"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"]},"61042":{"connections":[{"id":44344,"orbit":0}],"group":637,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61056":{"connections":[{"id":40399,"orbit":-4}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":61056,"stats":["Meta Skills gain 8% increased Energy"]},"61063":{"connections":[],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":0,"skill":61063,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"61067":{"connections":[],"group":650,"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"]},"61104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1070,"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"]},"61106":{"connections":[{"id":59653,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":2,"orbitIndex":15,"skill":61106,"stats":["2% increased Movement Speed"]},"61112":{"connections":[{"id":36071,"orbit":0},{"id":20105,"orbit":0}],"group":1386,"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"]},"61113":{"connectionArt":"CharacterPlanned","connections":[{"id":53910,"orbit":-3}],"group":296,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61119":{"connections":[{"id":64325,"orbit":4},{"id":63431,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":18,"skill":61119,"stats":["10% increased Poison Duration"]},"61142":{"connections":[{"id":38365,"orbit":0}],"group":207,"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"]},"61149":{"connections":[{"id":42760,"orbit":0}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":2,"orbitIndex":13,"skill":61149,"stats":["20% increased Stun Recovery"]},"61170":{"connections":[{"id":27186,"orbit":7}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":1,"orbitIndex":3,"skill":61170,"stats":["10% increased Fire Damage"]},"61179":{"connections":[{"id":21245,"orbit":0}],"group":506,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":61179,"stats":["10% increased Critical Hit Chance for Spells"]},"61196":{"connections":[{"id":56045,"orbit":5},{"id":13419,"orbit":0}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"61215":{"connections":[{"id":37242,"orbit":3}],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":8,"skill":61215,"stats":["12% increased Stun Threshold"]},"61246":{"connections":[{"id":144,"orbit":5}],"group":1200,"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"]},"61263":{"connections":[{"id":4544,"orbit":0}],"group":1166,"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"]},"61267":{"ascendancyName":"Infernalist","connections":[],"group":759,"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"]},"61281":{"connections":[{"id":9217,"orbit":0}],"group":804,"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"]},"61309":{"connections":[{"id":42169,"orbit":5},{"id":37434,"orbit":0}],"group":964,"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"]},"61312":{"connections":[{"id":56841,"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":4,"orbitIndex":42,"skill":61312,"stats":["+5 to any Attribute"]},"61318":{"connections":[{"id":61396,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":13,"skill":61318,"stats":["12% increased Armour and Evasion Rating"]},"61333":{"connections":[{"id":46197,"orbit":0}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":11,"skill":61333,"stats":["10% increased Critical Hit Chance"]},"61338":{"connections":[{"id":7333,"orbit":0}],"group":730,"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"]},"61347":{"connections":[{"id":64488,"orbit":3}],"group":722,"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"]},"61354":{"connections":[{"id":50383,"orbit":0}],"group":753,"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"]},"61355":{"connections":[{"id":29306,"orbit":2}],"group":1229,"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"]},"61356":{"connections":[{"id":12498,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":12,"skill":61356,"stats":["6% increased bonuses gained from Equipped Quiver"]},"61362":{"connections":[{"id":36737,"orbit":-2}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":61362,"stats":["10% increased Area Damage"]},"61367":{"connectionArt":"CharacterPlanned","connections":[{"id":64239,"orbit":2147483647}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61373":{"connections":[{"id":63610,"orbit":-7},{"id":5988,"orbit":7}],"group":1084,"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"]},"61393":{"connections":[{"id":43941,"orbit":-7}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":61393,"stats":["12% increased Damage while Shapeshifted"]},"61396":{"connections":[{"id":10998,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":11,"skill":61396,"stats":["12% increased Armour and Evasion Rating"]},"61403":{"connections":[{"id":56349,"orbit":0},{"id":14231,"orbit":3},{"id":24150,"orbit":0},{"id":17602,"orbit":0}],"group":1239,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61404":{"connections":[{"id":51210,"orbit":2},{"id":61429,"orbit":0}],"group":196,"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"]},"61409":{"connections":[{"id":13075,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":61409,"stats":["+12 to Strength"]},"61419":{"connections":[{"id":3025,"orbit":0},{"id":5314,"orbit":0},{"id":46819,"orbit":0}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61419,"stats":[]},"61421":{"connections":[{"id":16121,"orbit":7}],"group":1440,"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"]},"61429":{"connections":[{"id":44902,"orbit":3}],"group":196,"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"]},"61432":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":6178,"orbit":0}],"group":937,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":61432,"stats":[]},"61438":{"connections":[{"id":28510,"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":6,"orbitIndex":62,"skill":61438,"stats":["+5 to any Attribute"]},"61441":{"connections":[{"id":54138,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":6,"orbitIndex":7,"skill":61441,"stats":["3% increased Attack Speed with Swords"]},"61444":{"connections":[{"id":17411,"orbit":0},{"id":34096,"orbit":0}],"group":497,"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"]},"61461":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":2147483647}],"group":1502,"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"]},"61471":{"connectionArt":"CharacterPlanned","connections":[{"id":49153,"orbit":0}],"group":366,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61472":{"connections":[{"id":9417,"orbit":0},{"id":36389,"orbit":6}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":10,"skill":61472,"stats":["+8 to Strength"]},"61487":{"connections":[{"id":36596,"orbit":-4},{"id":19341,"orbit":5},{"id":11410,"orbit":0}],"group":891,"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"]},"61490":{"connections":[{"id":47429,"orbit":-8},{"id":64995,"orbit":0},{"id":8600,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"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":717,"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","name":"TEMPLAR","orbit":0,"orbitIndex":0,"skill":61525,"stats":[]},"61534":{"connections":[{"id":4665,"orbit":0}],"group":655,"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"]},"61586":{"ascendancyName":"Martial Artist","connections":[],"group":1510,"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"]},"61601":{"connections":[{"id":44420,"orbit":0},{"id":9586,"orbit":0}],"group":1199,"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"]},"61615":{"connections":[{"id":59442,"orbit":0}],"group":603,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":61615,"stats":["8% increased speed of Recoup Effects"]},"61632":{"connections":[{"id":34316,"orbit":0}],"group":1462,"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"]},"61657":{"connections":[{"id":17750,"orbit":6},{"id":45808,"orbit":-5}],"group":590,"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"]},"61703":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":335,"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"]},"61718":{"connections":[{"id":38342,"orbit":0}],"group":1450,"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"]},"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"]},"61741":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":40024,"orbit":2}],"group":1234,"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"]},"61768":{"connections":[],"group":936,"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"]},"61796":{"connections":[{"id":8260,"orbit":-4}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":20,"skill":61796,"stats":["20% increased Armour Break Duration"]},"61800":{"connections":[],"group":1364,"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"]},"61811":{"connectionArt":"CharacterPlanned","connections":[{"id":44452,"orbit":-8}],"group":181,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61834":{"connections":[{"id":17088,"orbit":0},{"id":24958,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61834,"stats":[]},"61835":{"connections":[{"id":32549,"orbit":0},{"id":56237,"orbit":-2}],"group":167,"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"]},"61836":{"connections":[{"id":65243,"orbit":0}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":4,"skill":61836,"stats":["Aura Skills have 5% increased Magnitudes"]},"61842":{"connections":[{"id":33240,"orbit":0},{"id":14712,"orbit":0}],"group":474,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":0,"skill":61842,"stats":["Minions deal 12% increased Damage"]},"61847":{"connections":[{"id":43443,"orbit":-4}],"group":165,"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"]},"61863":{"connections":[{"id":42045,"orbit":0}],"group":733,"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"]},"61896":{"connections":[{"id":53354,"orbit":-1},{"id":8850,"orbit":-3}],"group":109,"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"]},"61897":{"ascendancyName":"Witchhunter","connections":[{"id":38601,"orbit":8}],"group":277,"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"]},"61905":{"connections":[{"id":12778,"orbit":0},{"id":8938,"orbit":0},{"id":3251,"orbit":-4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":12,"skill":61905,"stats":["5% chance to inflict Bleeding on Hit"]},"61921":{"connections":[],"group":1305,"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"]},"61923":{"connections":[{"id":16256,"orbit":-6}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":4,"skill":61923,"stats":["10% increased Mana Regeneration Rate"]},"61926":{"connections":[{"id":1603,"orbit":0}],"group":1142,"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"]},"61927":{"connections":[{"id":14515,"orbit":0},{"id":3698,"orbit":0}],"group":289,"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"]},"61934":{"connections":[{"id":48418,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":2,"skill":61934,"stats":["12% increased Stun Threshold"]},"61935":{"connections":[{"id":4624,"orbit":7}],"group":549,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":61935,"stats":["Gain 1 Rage on Melee Hit"]},"61938":{"connections":[{"id":14515,"orbit":0}],"group":289,"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"]},"61942":{"connections":[],"flavourText":"Strength begets respect. There is no simpler law.","group":160,"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"]},"61973":{"ascendancyName":"Witchhunter","connections":[{"id":40719,"orbit":0}],"group":277,"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"]},"61974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connectionArt":"CharacterPlanned","connections":[],"group":584,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Invocation Mastery","orbit":7,"orbitIndex":2,"skill":61974,"stats":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61976":{"connections":[{"id":7526,"orbit":0},{"id":36298,"orbit":6},{"id":2200,"orbit":0}],"group":1140,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"61977":{"connectionArt":"CharacterPlanned","connections":[{"id":61471,"orbit":0}],"group":366,"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"],"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"]},"61985":{"ascendancyName":"Stormweaver","connections":[{"id":29398,"orbit":0}],"group":517,"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"]},"61991":{"ascendancyName":"Pathfinder","connections":[],"group":1513,"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"]},"61992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":825,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":6,"skill":61992,"stats":[]},"62001":{"connections":[],"group":1477,"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"]},"62015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":367,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":62015,"stats":[]},"62023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":291,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":62023,"stats":[]},"62034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":144,"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"]},"62039":{"connections":[{"id":49618,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":18,"skill":62039,"stats":["10% increased Melee Damage"]},"62051":{"connections":[{"id":21755,"orbit":-9}],"group":807,"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"]},"62096":{"connections":[{"id":28414,"orbit":0}],"group":1415,"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"]},"62122":{"connections":[{"id":4295,"orbit":-3}],"group":537,"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"]},"62152":{"aliasPassiveSocket":"voices_jewel_slot1","connections":[],"group":673,"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,"skill":62152,"stats":[]},"62153":{"connections":[{"id":55947,"orbit":3}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":17,"skill":62153,"stats":["15% increased Critical Spell Damage Bonus"]},"62159":{"connections":[{"id":59603,"orbit":-7}],"group":943,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":62159,"stats":["3% of Damage taken Recouped as Life"]},"62166":{"connections":[{"id":19337,"orbit":0}],"group":1180,"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"]},"62185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1287,"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"]},"62194":{"connections":[{"id":19129,"orbit":2147483647}],"group":750,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":0,"skill":62194,"stats":["15% increased Pin Buildup"]},"62200":{"connections":[{"id":8460,"orbit":-3},{"id":29762,"orbit":-4}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":20,"skill":62200,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"62210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":455,"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"]},"62216":{"connections":[{"id":26070,"orbit":3},{"id":38130,"orbit":-3}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":8,"skill":62216,"stats":["Empowered Attacks deal 16% increased Damage"]},"62230":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":19355,"orbit":0}],"group":1001,"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"]},"62235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":918,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":12,"skill":62235,"stats":[]},"62237":{"connections":[{"id":60116,"orbit":0}],"group":868,"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"]},"62258":{"connections":[{"id":62455,"orbit":0},{"id":21096,"orbit":0}],"group":685,"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"]},"62303":{"connections":[{"id":59938,"orbit":-4}],"group":295,"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"]},"62310":{"connections":[{"id":36325,"orbit":2},{"id":56934,"orbit":0}],"group":558,"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"]},"62313":{"connections":[],"group":144,"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"]},"62341":{"connections":[{"id":52836,"orbit":7}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":61,"skill":62341,"stats":["5% increased Block chance"]},"62350":{"connections":[],"group":1232,"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"]},"62360":{"connections":[{"id":25014,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":2,"skill":62360,"stats":["Empowered Attacks deal 16% increased Damage"]},"62376":{"connections":[{"id":54640,"orbit":-5}],"group":420,"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"]},"62378":{"connectionArt":"CharacterPlanned","connections":[{"id":47633,"orbit":0}],"group":479,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"62388":{"ascendancyName":"Blood Mage","connections":[{"id":26282,"orbit":0}],"group":954,"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"]},"62424":{"ascendancyName":"Spirit Walker","connections":[],"group":1542,"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"]},"62427":{"connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection Rating","orbit":2,"orbitIndex":21,"skill":62427,"stats":["4% increased Deflection Rating"]},"62431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":998,"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"]},"62436":{"connections":[{"id":3215,"orbit":0}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":5,"skill":62436,"stats":["15% increased maximum Energy Shield"]},"62439":{"connections":[{"id":24224,"orbit":0},{"id":52300,"orbit":0}],"group":176,"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"]},"62455":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":685,"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"]},"62464":{"connections":[{"id":17854,"orbit":7}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":22,"skill":62464,"stats":["15% increased Evasion Rating"]},"62496":{"connections":[{"id":34912,"orbit":0}],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":48,"skill":62496,"stats":["10% increased Trap Damage"]},"62498":{"connections":[{"id":3446,"orbit":0},{"id":51561,"orbit":0},{"id":21390,"orbit":0},{"id":41363,"orbit":0},{"id":12255,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"62505":{"connections":[{"id":32436,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":18,"skill":62505,"stats":["+8 to Intelligence"]},"62510":{"connections":[{"id":8697,"orbit":4},{"id":17118,"orbit":6}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":69,"skill":62510,"stats":["12% increased Elemental Damage with Attacks"]},"62518":{"connections":[{"id":41414,"orbit":4}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Fire Resistance","orbit":3,"orbitIndex":7,"skill":62518,"stats":["+5% to Fire Resistance"]},"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"]},"62542":{"connections":[{"id":16329,"orbit":7},{"id":57821,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":3,"orbitIndex":0,"skill":62542,"stats":["10% increased Flask Charges gained"]},"62578":{"connections":[{"id":30102,"orbit":-7}],"group":1281,"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"]},"62581":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":456,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":62581,"stats":[]},"62588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":50609,"orbit":0}],"group":755,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62588,"stats":[]},"62603":{"connections":[{"id":19715,"orbit":3}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":20,"skill":62603,"stats":["Damage Penetrates 6% Fire Resistance"]},"62609":{"connections":[{"id":11014,"orbit":0},{"id":16051,"orbit":0}],"group":322,"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"]},"62624":{"connections":[],"group":1316,"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"]},"62628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":927,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":62628,"stats":[]},"62640":{"connections":[{"id":24880,"orbit":-7}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":32,"skill":62640,"stats":["3% increased Attack Speed"]},"62661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":553,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":62661,"stats":[]},"62670":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":150,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":62670,"stats":[]},"62677":{"connections":[],"group":869,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"62679":{"connections":[],"group":829,"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"]},"62702":{"ascendancyName":"Spirit Walker","connections":[{"id":27773,"orbit":-7}],"group":1542,"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"]},"62723":{"connections":[{"id":38732,"orbit":8}],"group":843,"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"]},"62732":{"connections":[{"id":64192,"orbit":0},{"id":49391,"orbit":0}],"group":582,"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"]},"62743":{"ascendancyName":"Spirit Walker","connections":[{"id":21519,"orbit":0}],"group":1542,"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"]},"62748":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":333,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62748,"stats":[]},"62757":{"connections":[{"id":46741,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":4,"skill":62757,"stats":["15% increased Stun Buildup"]},"62779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1000,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":62779,"stats":[]},"62785":{"connections":[{"id":4948,"orbit":-7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":2,"skill":62785,"stats":["Break 20% increased Armour"]},"62797":{"ascendancyName":"Lich","connections":[{"id":23352,"orbit":-4}],"group":1141,"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"]},"62803":{"connections":[{"id":25029,"orbit":0}],"group":1329,"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"]},"62804":{"ascendancyName":"Ritualist","connections":[],"group":1560,"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"]},"62841":{"connections":[{"id":17367,"orbit":-6},{"id":56045,"orbit":0},{"id":53941,"orbit":5}],"group":1109,"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"]},"62844":{"connections":[{"id":32427,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":18,"skill":62844,"stats":["Damage Penetrates 6% Cold Resistance"]},"62887":{"connections":[{"id":41225,"orbit":0}],"group":934,"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"]},"62914":{"connections":[{"id":47270,"orbit":5},{"id":44455,"orbit":0}],"group":783,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":20,"skill":62914,"stats":["12% increased Cold Damage"]},"62936":{"connections":[{"id":51891,"orbit":7}],"group":1294,"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"]},"62948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":34617,"orbit":0},{"id":64770,"orbit":0}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":62948,"stats":[]},"62963":{"connections":[{"id":14601,"orbit":0}],"group":682,"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"]},"62973":{"connections":[{"id":26070,"orbit":0}],"group":343,"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"]},"62984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":15975,"orbit":0}],"group":1003,"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"]},"62986":{"connections":[{"id":60173,"orbit":4}],"group":1201,"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"]},"62998":{"connections":[{"id":63600,"orbit":0}],"group":1427,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":62998,"stats":["15% increased Electrocute Buildup"]},"63002":{"ascendancyName":"Chronomancer","connections":[{"id":26638,"orbit":0}],"group":316,"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"]},"63009":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"63021":{"connections":[{"id":23091,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":14,"skill":63021,"stats":["12% increased Fire Damage"]},"63031":{"connections":[{"id":41821,"orbit":0}],"group":215,"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"]},"63037":{"connections":[{"id":24430,"orbit":0},{"id":44298,"orbit":0}],"group":265,"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"]},"63064":{"connections":[{"id":30634,"orbit":3},{"id":54413,"orbit":0}],"group":1020,"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"]},"63074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":926,"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"]},"63085":{"connections":[{"id":36100,"orbit":9},{"id":34490,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":63085,"stats":["12% increased Damage while Shapeshifted"]},"63114":{"connections":[{"id":26725,"orbit":0},{"id":21387,"orbit":0},{"id":26176,"orbit":0},{"id":35048,"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":3,"orbitIndex":4,"skill":63114,"stats":["+5 to any Attribute"]},"63170":{"connectionArt":"CharacterPlanned","connections":[{"id":6999,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63182":{"connections":[{"id":29930,"orbit":3}],"group":1040,"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"]},"63192":{"connections":[{"id":62096,"orbit":0},{"id":48116,"orbit":0}],"group":1425,"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"]},"63209":{"connections":[{"id":30704,"orbit":0},{"id":22045,"orbit":0},{"id":17655,"orbit":-4},{"id":36602,"orbit":-3}],"group":578,"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"]},"63236":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"63243":{"connectionArt":"CharacterPlanned","connections":[{"id":48160,"orbit":2147483647},{"id":49543,"orbit":0}],"group":192,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63246":{"connections":[{"id":33585,"orbit":-7}],"group":1339,"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"]},"63254":{"ascendancyName":"Amazon","connections":[],"group":1553,"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"]},"63255":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":999,"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"]},"63259":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":383,"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"]},"63267":{"connections":[{"id":65424,"orbit":0}],"group":833,"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"]},"63268":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":502,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":6,"skill":63268,"stats":[]},"63360":{"connections":[{"id":62258,"orbit":2147483647}],"group":685,"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"]},"63393":{"connections":[{"id":7721,"orbit":3},{"id":36709,"orbit":0}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":12,"skill":63393,"stats":["12% increased Stun Threshold"]},"63400":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":22851,"orbit":-7}],"group":1171,"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"]},"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"]},"63402":{"connections":[{"id":29881,"orbit":2}],"group":403,"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"]},"63431":{"connections":[],"group":1392,"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"]},"63445":{"connections":[{"id":43562,"orbit":0}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":6,"skill":63445,"stats":["3% increased Attack Speed"]},"63451":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44406,"orbit":0},{"id":64312,"orbit":0}],"group":409,"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"]},"63469":{"connections":[{"id":30834,"orbit":0},{"id":50216,"orbit":0}],"group":610,"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"]},"63470":{"connections":[{"id":9908,"orbit":-3}],"group":410,"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"]},"63484":{"ascendancyName":"Infernalist","connections":[{"id":18158,"orbit":7}],"group":744,"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"]},"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":1542,"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":[]},"63517":{"connections":[{"id":48974,"orbit":0},{"id":53958,"orbit":2}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":22,"skill":63517,"stats":["10% increased Mana Recovery from Flasks"]},"63525":{"connections":[{"id":53094,"orbit":0}],"group":1099,"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"]},"63526":{"connections":[{"id":28370,"orbit":6},{"id":7788,"orbit":4}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"63541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":17994,"orbit":0}],"group":808,"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"]},"63545":{"connections":[],"group":913,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":6,"skill":63545,"stats":["Minions deal 10% increased Damage"]},"63566":{"connections":[{"id":42658,"orbit":0},{"id":62350,"orbit":0},{"id":30871,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"63579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":641,"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"]},"63585":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1080,"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"]},"63600":{"connections":[{"id":36364,"orbit":0}],"group":1416,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":63600,"stats":["15% increased Electrocute Buildup"]},"63608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":104,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":63608,"stats":[]},"63610":{"connections":[{"id":38459,"orbit":-7}],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Effect","orbit":2,"orbitIndex":0,"skill":63610,"stats":["10% increased Blind Effect"]},"63618":{"connections":[{"id":31129,"orbit":2147483647}],"group":1488,"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"]},"63659":{"connections":[{"id":33964,"orbit":0},{"id":37616,"orbit":0}],"group":1418,"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"]},"63668":{"connections":[{"id":9069,"orbit":0},{"id":4328,"orbit":0}],"group":1172,"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"]},"63678":{"connections":[],"group":163,"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"]},"63679":{"connections":[{"id":20008,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Stun Buildup","orbit":1,"orbitIndex":11,"skill":63679,"stats":["18% increased Projectile Stun Buildup"]},"63713":{"ascendancyName":"Invoker","connections":[{"id":57181,"orbit":-4}],"group":1505,"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"]},"63731":{"connections":[{"id":244,"orbit":0}],"group":965,"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"]},"63732":{"connections":[{"id":8440,"orbit":-3}],"group":891,"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"]},"63739":{"connections":[{"id":37593,"orbit":0}],"group":849,"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"]},"63759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":26565,"orbit":0}],"group":1234,"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"]},"63762":{"connections":[{"id":44522,"orbit":0}],"group":1370,"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"]},"63772":{"connectionArt":"CharacterPlanned","connections":[{"id":37888,"orbit":0}],"group":298,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63790":{"connections":[{"id":48014,"orbit":0}],"group":212,"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"]},"63813":{"connections":[{"id":1169,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":20,"skill":63813,"stats":["16% increased Warcry Speed"]},"63814":{"connections":[{"id":33216,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":63814,"stats":["5% chance to inflict Bleeding on Hit"]},"63828":{"connections":[],"group":931,"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"]},"63830":{"connections":[{"id":13624,"orbit":-5},{"id":45390,"orbit":5}],"group":1338,"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"]},"63861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":13,"skill":63861,"stats":[]},"63863":{"connections":[],"group":878,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":63863,"stats":["12% increased Lightning Damage"]},"63888":{"connections":[{"id":35901,"orbit":0},{"id":61356,"orbit":0},{"id":26068,"orbit":0}],"group":1156,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","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"]},"63891":{"connections":[{"id":63074,"orbit":0}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":1,"orbitIndex":7,"skill":63891,"stats":["7% increased Chaos Damage"]},"63894":{"ascendancyName":"Infernalist","connections":[{"id":61267,"orbit":-4}],"group":759,"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"]},"63926":{"connections":[],"group":953,"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"]},"63979":{"connections":[{"id":9750,"orbit":0}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":8,"skill":63979,"stats":["10% increased Warcry Cooldown Recovery Rate"]},"64023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":264,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":64023,"stats":[]},"64031":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"64042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":420,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":18,"skill":64042,"stats":[]},"64046":{"connections":[{"id":45522,"orbit":6},{"id":5726,"orbit":0}],"group":747,"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":["20% increased Elemental Infusion duration","Remnants can be collected from 30% further away"]},"64050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1346,"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"]},"64056":{"connections":[{"id":36931,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Daze Chance","orbit":2,"orbitIndex":6,"skill":64056,"stats":["5% chance to Daze on Hit"]},"64064":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":0,"orbitIndex":0,"skill":64064,"stats":["8% increased Accuracy Rating"]},"64083":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":536,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64119":{"connections":[{"id":33596,"orbit":0}],"group":883,"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"]},"64139":{"connectionArt":"CharacterPlanned","connections":[{"id":22221,"orbit":-5},{"id":15842,"orbit":0}],"group":88,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64140":{"connections":[{"id":51336,"orbit":-5},{"id":30905,"orbit":-4}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":10,"skill":64140,"stats":["12% increased Elemental Damage with Attacks"]},"64192":{"connections":[{"id":53373,"orbit":3}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":12,"skill":64192,"stats":["12% increased Stun Threshold"]},"64213":{"connections":[{"id":12611,"orbit":-3},{"id":61246,"orbit":3}],"group":1200,"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"]},"64223":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56857,"orbit":6}],"group":563,"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"]},"64239":{"connectionArt":"CharacterPlanned","connections":[{"id":2733,"orbit":0}],"group":293,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64240":{"connections":[{"id":52220,"orbit":0}],"group":216,"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"]},"64284":{"connections":[{"id":27373,"orbit":0},{"id":19011,"orbit":4}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":4,"orbitIndex":51,"skill":64284,"stats":["8% increased Melee Damage"]},"64295":{"connections":[],"group":1418,"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"]},"64299":{"connections":[{"id":17655,"orbit":2147483647}],"group":567,"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"]},"64312":{"connections":[{"id":23861,"orbit":-7},{"id":54886,"orbit":7}],"group":443,"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"]},"64318":{"connections":[{"id":61063,"orbit":0}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":2,"skill":64318,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"]},"64324":{"connections":[{"id":41442,"orbit":9}],"group":250,"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"]},"64325":{"connections":[{"id":45304,"orbit":-4}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":11,"skill":64325,"stats":["10% increased Magnitude of Poison you inflict"]},"64327":{"connections":[{"id":39517,"orbit":0},{"id":49391,"orbit":0}],"group":582,"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"]},"64345":{"connections":[{"id":49968,"orbit":0},{"id":63679,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Attack Damage","orbit":2,"orbitIndex":16,"skill":64345,"stats":["10% increased Attack Damage"]},"64352":{"connections":[{"id":44345,"orbit":0}],"group":992,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":64352,"stats":["10% increased Lightning Damage"]},"64357":{"connections":[{"id":50062,"orbit":0},{"id":506,"orbit":0}],"group":273,"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"]},"64370":{"connections":[{"id":53396,"orbit":0}],"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":6,"orbitIndex":17,"skill":64370,"stats":["+5 to any Attribute"]},"64379":{"ascendancyName":"Infernalist","connections":[{"id":25239,"orbit":-4}],"group":759,"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"]},"64399":{"connections":[{"id":2511,"orbit":3}],"group":544,"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"]},"64405":{"connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":12,"skill":64405,"stats":["15% increased Totem Damage"]},"64415":{"connections":[{"id":22063,"orbit":0},{"id":1416,"orbit":0}],"group":1355,"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"]},"64427":{"connections":[],"group":930,"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"]},"64434":{"connections":[{"id":3893,"orbit":2}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":64434,"stats":["15% increased Evasion Rating"]},"64443":{"connections":[{"id":41126,"orbit":0},{"id":62023,"orbit":0}],"group":291,"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"]},"64462":{"connections":[{"id":53150,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":17,"skill":64462,"stats":["10% increased amount of Mana Leeched"]},"64471":{"connections":[{"id":43843,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"64474":{"connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":15,"skill":64474,"stats":["6% faster start of Energy Shield Recharge"]},"64488":{"connections":[{"id":7201,"orbit":7}],"group":722,"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"]},"64489":{"connections":[{"id":6952,"orbit":0},{"id":25162,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":14,"skill":64489,"stats":["6% increased Area of Effect for Attacks"]},"64492":{"connections":[{"id":46688,"orbit":7}],"group":1201,"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"]},"64525":{"connections":[{"id":58855,"orbit":0}],"group":241,"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"]},"64543":{"connections":[],"group":1305,"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"]},"64550":{"connections":[{"id":22532,"orbit":0}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":5,"skill":64550,"stats":["20% increased Damage against Immobilised Enemies"]},"64572":{"connections":[{"id":48925,"orbit":0}],"group":330,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":20,"skill":64572,"stats":["15% increased Freeze Buildup"]},"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":611,"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"]},"64601":{"connections":[],"flavourText":"The body is a weapon waiting to be mastered.","group":1289,"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"]},"64637":{"connections":[{"id":32543,"orbit":7}],"group":1433,"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"]},"64643":{"connections":[{"id":56360,"orbit":0},{"id":27176,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":3,"skill":64643,"stats":["20% increased Power Charge Duration"]},"64650":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1138,"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"]},"64653":{"connections":[{"id":47420,"orbit":7}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":15,"skill":64653,"stats":["Minions deal 16% increased Damage"]},"64659":{"connections":[{"id":3355,"orbit":0}],"group":608,"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"]},"64665":{"connections":[{"id":51847,"orbit":0},{"id":21274,"orbit":0}],"group":839,"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"]},"64683":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":655,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":64683,"stats":[]},"64700":{"connections":[{"id":61632,"orbit":0}],"group":1465,"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"]},"64724":{"connections":[],"group":178,"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"]},"64726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":46296,"orbit":0},{"id":38479,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":8,"skill":64726,"stats":[]},"64747":{"connections":[{"id":33838,"orbit":-5}],"group":1134,"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"]},"64770":{"connections":[],"group":363,"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"]},"64789":{"ascendancyName":"Stormweaver","connections":[{"id":8867,"orbit":0}],"group":517,"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"]},"64804":{"connections":[],"group":455,"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"]},"64807":{"connections":[{"id":59945,"orbit":0}],"group":239,"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"]},"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"]},"64851":{"connections":[{"id":21324,"orbit":0}],"group":1107,"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"]},"64870":{"connections":[{"id":27439,"orbit":0}],"group":368,"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"]},"64900":{"connections":[{"id":54999,"orbit":-4}],"group":122,"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"]},"64927":{"connections":[{"id":52464,"orbit":4},{"id":51741,"orbit":-4},{"id":54351,"orbit":-6}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":6,"orbitIndex":18,"skill":64927,"stats":["10% increased amount of Mana Leeched"]},"64939":{"connections":[{"id":30123,"orbit":0}],"group":401,"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"]},"64948":{"connections":[{"id":48264,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":9,"skill":64948,"stats":["Aura Skills have 5% increased Magnitudes"]},"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"]},"64990":{"connections":[{"id":60891,"orbit":0},{"id":18897,"orbit":0},{"id":27705,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":64990,"stats":["+8 to Intelligence"]},"64995":{"connections":[{"id":17924,"orbit":0}],"group":386,"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"]},"64996":{"connections":[{"id":7782,"orbit":-4},{"id":4810,"orbit":7}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":7,"orbitIndex":20,"skill":64996,"stats":["5% chance to inflict Bleeding on Hit"]},"65009":{"connections":[{"id":29517,"orbit":0},{"id":31855,"orbit":7},{"id":61373,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","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"]},"65016":{"connections":[{"id":11505,"orbit":0}],"group":602,"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"]},"65023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":678,"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"]},"65042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":180,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":1,"orbitIndex":6,"skill":65042,"stats":[]},"65091":{"connections":[{"id":51707,"orbit":6}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":65091,"stats":["15% increased Evasion Rating"]},"65149":{"connections":[],"group":990,"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"]},"65154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":172,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":65154,"stats":[]},"65160":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44069,"orbit":0}],"group":151,"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"]},"65161":{"connections":[],"group":1387,"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"]},"65167":{"connections":[{"id":712,"orbit":4}],"group":1378,"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"]},"65173":{"ascendancyName":"Invoker","connections":[],"group":1505,"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"]},"65176":{"connections":[{"id":14045,"orbit":0},{"id":42250,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":6,"orbitIndex":48,"skill":65176,"stats":["10% increased Projectile Damage"]},"65189":{"connections":[{"id":17260,"orbit":0}],"group":335,"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"]},"65192":{"connectionArt":"CharacterPlanned","connections":[{"id":63170,"orbit":2147483647}],"group":107,"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"],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"65193":{"connections":[{"id":48714,"orbit":0},{"id":10245,"orbit":0}],"group":458,"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"]},"65204":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":30615,"orbit":0},{"id":10162,"orbit":0}],"group":1408,"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"]},"65207":{"connections":[{"id":63566,"orbit":-6}],"group":1236,"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"]},"65212":{"connections":[{"id":58539,"orbit":0},{"id":34968,"orbit":0}],"group":1433,"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"]},"65226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":65226,"stats":[]},"65228":{"ascendancyName":"Martial Artist","connections":[{"id":61586,"orbit":4}],"group":1510,"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"]},"65243":{"connections":[{"id":46421,"orbit":0}],"group":309,"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"]},"65248":{"connections":[],"group":739,"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"]},"65256":{"connections":[{"id":34845,"orbit":0},{"id":40626,"orbit":0}],"group":1257,"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"]},"65265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[{"id":31366,"orbit":0},{"id":17146,"orbit":0}],"group":1340,"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"]},"65287":{"connections":[{"id":5580,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":6,"skill":65287,"stats":["15% increased Totem Damage"]},"65290":{"connections":[{"id":57069,"orbit":0}],"group":1439,"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"]},"65310":{"connections":[{"id":22682,"orbit":0}],"group":1191,"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"]},"65322":{"connections":[{"id":54818,"orbit":0},{"id":13425,"orbit":0},{"id":47709,"orbit":0},{"id":58718,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":65322,"stats":["5% chance to inflict Bleeding on Hit"]},"65324":{"connections":[{"id":1861,"orbit":7},{"id":9863,"orbit":-5}],"group":590,"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"]},"65328":{"connections":[{"id":48565,"orbit":0}],"group":262,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":2,"skill":65328,"stats":["10% increased Damage","Minions deal 10% increased Damage"]},"65353":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":505,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Banner Mastery","orbit":0,"orbitIndex":0,"skill":65353,"stats":[]},"65393":{"connections":[{"id":2732,"orbit":-2},{"id":11672,"orbit":0}],"group":907,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":16,"skill":65393,"stats":["8% increased Mana Cost Efficiency"]},"65413":{"ascendancyName":"Stormweaver","connections":[{"id":12882,"orbit":0}],"group":517,"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"]},"65424":{"connections":[{"id":58109,"orbit":0}],"group":833,"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"]},"65437":{"connections":[{"id":63064,"orbit":0}],"group":1020,"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"]},"65439":{"connections":[{"id":12821,"orbit":0}],"group":505,"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"]},"65468":{"connections":[{"id":61432,"orbit":0},{"id":25807,"orbit":0}],"group":877,"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"]},"65472":{"connections":[{"id":9323,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":3,"orbitIndex":21,"skill":65472,"stats":["15% increased Glory generation"]},"65493":{"connections":[{"id":43854,"orbit":2}],"group":541,"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"]},"65498":{"connections":[{"id":37026,"orbit":0}],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":10,"skill":65498,"stats":["Break 20% increased Armour"]},"65509":{"connections":[{"id":41384,"orbit":0},{"id":51821,"orbit":0}],"group":275,"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"]},"65518":{"ascendancyName":"Blood Mage","connections":[],"group":954,"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"]}},"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 1976a32ce0..f1e189785c 100644 --- a/src/TreeData/0_5/tree.lua +++ b/src/TreeData/0_5/tree.lua @@ -1763,14 +1763,6 @@ return { ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern"]=59, ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern"]=60 }, - ["monster-categories_36_36_BC7.dds.zst"]={ - Beast=1, - Construct=2, - Demon=3, - Eldritch=4, - Humanoid=5, - Undead=6 - }, ["oils_108_108_RGBA.dds.zst"]={ Contempt=11, Despair=7, @@ -1786,9 +1778,6 @@ return { Paranoia=10, Suffering=3 }, - ["skills-disabled_-1723783960_-163230_.dds.zst"]={ - [""]=1 - }, ["skills-disabled_128_128_BC1.dds.zst"]={ ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds"]=1, ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds"]=2, @@ -2325,9 +2314,6 @@ return { ["Art/2DArt/SkillIcons/passives/trapdamage.dds"]=173, ["Art/2DArt/SkillIcons/passives/trapsmax.dds"]=174 }, - ["skills_0_0_.dds.zst"]={ - [""]=1 - }, ["skills_128_128_BC1.dds.zst"]={ ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds"]=1, ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds"]=2,